@charset "UTF-8";
/*
Theme Name: nousan-sh
Version: 1.1
Author: OWNDMEDIA.LAB
*/
/*--------------------------------------------------------------

## mixin

--------------------------------------------------------------*/
/*--------------------------------------------------------------

## 共通

--------------------------------------------------------------*/
:root {
  /* font */
  --theme-font-jp: "Noto Sans JP", sans-serif;
  --theme-font-en: "Poppins", sans-serif;
  /* color */
  --color-text: #333;
  --color-accent: #40298C;
  --color-sub: #E8E5F1;
  --color-gray1: #b1b0b3;
  --color-gray2: #ecebef;
  --color-hover: #7C7B7E;
  --color-bg: #F5F5FA;
  --color-border: #ddd;
}

html,
body {
  width: 100%;
  height: 100%;
  font-size: 62.5%;
  /*(=1rem)*/
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 1.8px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

html,
body,
#page #scroll__contents {
  margin: 0 auto;
}

.wrapper {
  width: 100%;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 3rem;
}

h3 {
  font-size: 2.5rem;
}

h4 {
  font-size: 2.2rem;
}

p {
  font-size: 1.6rem;
}

a {
  font-size: 1.6rem;
  text-decoration: none;
  color: #333333;
}

ul,
ol,
li {
  list-style: none;
}

li,
th,
td {
  font-size: 1.6rem;
}

a:hover,
a:focus {
  color: var(--color-hover);
}

em {
  font-style: normal;
  font-weight: 600;
  color: var(--color-accent);
}

/**** フォント ****/
.en {
  font-family: var(--theme-font-en);
}

/**** 改行 ****/
.br_pc {
  display: block;
}

/*PCだけ改行 */
.br_1024 {
  display: none;
}

/*幅1024以下で改行 */
.br_960 {
  display: none;
}

/*幅960以下で改行 */
.br_560 {
  display: none;
}

/*幅560以下で改行 */
/**** 画像 ****/
img {
  max-width: 100%;
  height: auto;
}

.p-footer_sns {
  max-width: 20px;
}

/*** サムネイル画像 ***/
.post_thum_images {
  position: relative;
  overflow: hidden;
  height: 360px;
  margin-bottom: 1rem;
}

.post_thum_images img.wp-post-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: 0.8s;
  transition: 0.8s;
}

.post_thum_images:hover img.wp-post-image {
  -webkit-transform: scale(1.1, 1.1);
          transform: scale(1.1, 1.1);
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  opacity: 0.7;
}

/**** ボタン01 ****/
.btn01 {
  margin-top: 28px;
  font-family: "Hind", sans-serif;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.btn01 a {
  display: block;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  position: relative;
  z-index: 1;
  text-decoration: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 300px;
  height: 70px;
  padding-left: 42px;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
  background-color: var(--color-bg);
  line-height: 70px;
}

.btn01 a span {
  position: absolute;
  top: 30px;
  right: 30px;
  display: block;
  width: 62px;
  height: 10px;
  background: url("../img/common/yajirushi02.png") 0 0 no-repeat;
  background-size: 62px 10px;
  overflow: hidden;
}

/**** カラーボタン01 ****/
.btn01--color a {
  -webkit-transition: background-color 300ms ease;
  transition: background-color 300ms ease;
  color: #fff;
  background-color: var(--color-accent);
  border: 1px solid var(--color-accent);
}

.btn01--color a:hover {
  color: #40298C;
  background-color: var(--color-bg);
}

.btn01--color a span {
  background: url("../img/common/yajirushi01.png") 0 0 no-repeat;
  background-size: 62px 10px;
}

.btn01--color a:hover span {
  background: url("../img/common/yajirushi02.png") 0 0 no-repeat;
  background-size: 62px 10px;
}

/***** ミニボタン01 *****/
.btn01--mini a {
  width: 200px;
  height: 60px;
  padding-left: 32px;
  line-height: 65px;
}

.btn01--mini a span {
  top: 25px;
}

/**** その他共通 ****/
.flex {
  display: -ms-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.flex--space-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flex--space-around {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.flex--center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

/**** パンくずリスト ****/
.breadcrumb {
  margin-bottom: 10rem;
}

.breadcrumb li {
  display: inline-block;
  position: relative;
  margin-right: 3rem;
}

.breadcrumb li::after {
  position: absolute;
  content: "";
  width: 4px;
  height: 4px;
  border-top: 2px solid #ababab;
  border-right: 2px solid #ababab;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  right: -1.8rem;
  bottom: 1.2rem;
}

.breadcrumb li:last-child::after {
  content: none;
}

.breadcrumb li a {
  color: var(--color-text);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.breadcrumb li a:hover {
  color: var(--color-hover);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

/**** ページャー ****/
.archive_pagination {
  text-align: center;
  margin-top: 7rem;
}

.page-numbers li {
  display: inline;
  margin: 0 0.6rem 0;
}

.page-numbers.current {
  color: var(--color-accent);
  border-bottom: 1px solid var(--color-accent);
  padding-bottom: 0.5rem;
  font-size: 1.5rem;
}

/**** スクロールバーデザイン ****/
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #fff;
  border-left: solid 1px #eee;
}

::-webkit-scrollbar-thumb {
  background: var(--color-accent);
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 0 2px #fff;
          box-shadow: inset 0 0 0 2px #fff;
}

/**** ページトップに戻るボタン ****/
#page_top {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
}

#page_top a img {
  padding: 0 4rem;
}

/**** マウスドラッグした時の文字色 ****/
::-moz-selection {
  background: var(--color-hover);
}
::selection {
  background: var(--color-hover);
}

/**** ページ全体の余白など ****/
#page {
  overflow: hidden;
  width: 100%;
}

/*--------------------------------------------------------------

## main

--------------------------------------------------------------*/
.contents {
  margin: 0 auto 12vw;
}

.contents--small {
  margin: 0 auto 4vw;
}

.contents--full {
  width: 100%;
}

.contents--type01 {
  width: 1180px;
  padding: 0 3rem;
}

.contents--type01.flex {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contents--type02 {
  max-width: 1800px;
}

.contents--type03 {
  max-width: 1800px;
}

/*--------------------------------------------------------------

## footer

--------------------------------------------------------------*/
/********************   コンタクトボタン    **********************/
.index-contact__btn {
  margin: 0 auto -200px;
}

.contact-btn {
  width: 100%;
  height: 260px;
  color: #fff;
  background-color: var(--color-hover);
  position: relative;
  z-index: 90;
  overflow: hidden;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-weight: 700;
  line-height: 0.9;
  overflow: hidden;
}

.contact-btn::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  content: "";
  background: var(--color-gray1);
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.contact-btn:hover {
  color: #fff;
}

.contact-btn:hover::before {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.contact-btn p {
  text-align: center;
}

.contact-btn--en {
  z-index: 96;
  font-size: 5rem;
  line-height: 1.8;
  opacity: 0.8;
}

.contact-btn--ja {
  z-index: 96;
  font-size: 1.6rem;
}

/********************   フッターアクセス    **********************/
.access-container {
  padding: 0 10rem 5rem;
  position: relative;
}

.access-container__bg {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.access__images {
  background-image: url("../img/access_bg.jpg");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: 0 0;
  min-height: 964px;
  width: 100%;
}

.access-container__bg::after {
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.access-container__box {
  position: relative;
  z-index: 1;
  color: #fff;
  text-align: left;
  margin: 0 auto;
  padding: 20rem 0 10rem;
}

.access-container__logo {
  margin-bottom: 2rem;
}
.access-container__logo a {
  display: block;
}

.access-container__map {
  position: relative;
  z-index: 1;
  margin: 0 auto;
}

.access-container__txt {
  font-size: 1.6rem;
  position: relative;
  z-index: 1;
  color: #fff;
}

.access-container__sns {
  position: relative;
  z-index: 1;
  margin-top: 2rem;
}
.access-container__sns .footer-sns__list li {
  display: inline-block;
  margin-right: 0.5rem;
}
.access-container__sns .footer-sns__list li a {
  display: block;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.access-container__sns .footer-sns__list li a:hover {
  opacity: 0.7;
}

.access-container__menu {
  width: min(360px, 50%);
  position: relative;
  z-index: 1;
}
.access-container__menu .footer-menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem;
}
.access-container__menu .footer-menu__list .menu-item {
  width: calc(50% - 1rem);
}
.access-container__menu .footer-menu__list .menu-item a {
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.access-container__menu .footer-menu__list .menu-item .menu-subtitle {
  font-family: var(--theme-font-en);
  display: block;
  font-weight: normal;
  font-size: 1.2rem;
}

.access-container__copyright {
  text-align: center;
  font-size: 1.2rem;
  margin-top: 2rem;
  position: relative;
  z-index: 1;
  color: #fff;
}

/*--------------------------------------------------------------

## front-page.php

--------------------------------------------------------------*/
/***** index-contents1 *****/
.contents1__ttl {
  letter-spacing: 2px;
  margin-bottom: 3rem;
}

.contents1__txt {
  letter-spacing: 1.4px;
  margin-bottom: 3rem;
}

/***** index-contents-list *****/
.index-contents-list {
  display: block;
}

.index-contents-list__box {
  margin-bottom: 8rem;
}

.index-contents-list__img {
  display: inline-block;
  width: 64%;
  margin-bottom: 0;
  padding-top: 0;
  opacity: 1;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

.index-contents-list li:nth-child(odd) .index-contents-list__img {
  margin: 0 0 0 36%;
}

.index-contents-list li:nth-child(even) .index-contents-list__img {
  margin: 0 36% 0 0;
}

.index-contents-list__txt {
  position: relative;
  width: 25%;
  margin-top: -25%;
  padding: 8% 11% 5%;
  background-color: #fff;
  opacity: 1;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.index-contents-list li:nth-child(even) .index-contents-list__txt {
  position: relative;
  width: 25%;
  margin: -25% 0 0 53%;
  padding: 8% 11% 5%;
  background-color: #fff;
}

.index-contents-list__ttl {
  position: relative;
  margin-bottom: 20px;
}
.index-contents-list__ttl::before {
  content: "";
  width: 100%;
  height: 1px;
  background: var(--color-accent);
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 0;
}
.index-contents-list__ttl span {
  position: relative;
  padding-right: 0.5em;
  background: #fff;
  font-weight: 600;
  z-index: 1;
}

.index-contents-list__lead {
  font-size: 1.5rem;
  line-height: 2;
}

.index-contents-list__lead .btn01 {
  margin-top: 5rem;
}

/***** index-contents3 *****/
.index-contents3 {
  background-color: #fff;
  padding: 10rem 0 6rem;
  color: var(--color-text);
}

.index-contents3__ttl {
  text-align: center;
}

.index-contents3__ttl--ja,
.index-contents3__ttl--en {
  text-align: center;
  display: block;
  line-height: 1.8;
}

.index-contents3__ttl--ja {
  font-size: 4rem;
  font-weight: 600;
}

.index-contents3__ttl--en {
  font-size: 1.4rem;
}

.index-contents3__ttl--under {
  content: "";
  width: 80px;
  height: 1px;
  margin: 0.5em auto;
  background: var(--color-accent);
  display: block;
}

.index-contents3__lead {
  text-align: center;
  margin: 6rem auto 4rem;
}

.index-contents3__item {
  text-align: center;
  margin-top: 4rem;
  width: 47%;
}

.index-contents3__txt h3 {
  font-size: 2.2rem;
  text-align: left;
  margin: 1rem 0 2rem;
}

.index-contents3__txt h3:hover {
  color: var(--color-hover);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.index-contents3__txt--category {
  margin: 1.5rem 0 0;
}

.category-btn01 a {
  color: var(--color-accent);
  background: var(--color-bg);
  font-size: 1.4rem;
  border: 1px solid var(--color-accent);
  padding: 0.5rem 1.3rem;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.category-btn01 a:hover {
  background: var(--color-accent);
  color: #fff;
}

.index-contents3__btn {
  margin: 0 auto;
}

.index-contents3__btn .btn01 a {
  margin: 8rem auto 0;
}

.index-contents4 {
  margin-bottom: 10rem;
}
.index-contents4 a {
  position: relative;
  padding: 15rem 0;
  display: block;
}
.index-contents4 a:hover .index-contents4__img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.index-contents4 a::before {
  content: "";
  position: absolute;
  inset: 10px 10px 10px 10px;
  border: 1px solid #fff;
  pointer-events: none;
  z-index: 1;
}

.index-contents4__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  margin: 0 auto;
}
.index-contents4__wrap .index-contents4__desc {
  position: relative;
  width: min(770px, 65%);
  z-index: 1;
}
.index-contents4__wrap .index-contents4__ttl {
  font-size: 3.6rem;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.index-contents4__wrap .arrow-btn {
  position: relative;
  width: 100px;
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #fff;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  z-index: 1;
}
.index-contents4__wrap .arrow-btn:hover {
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
}
.index-contents4__wrap .arrow-btn span {
  color: #fff;
}
.index-contents4__wrap .index-contents4__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}
.index-contents4__wrap .index-contents4__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  display: block;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.index-contents4__wrap .index-contents4__img .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
  pointer-events: none;
}

/***** index-news *****/
.index-news {
  padding: 10rem 0 6rem;
}

.index-news__head {
  margin: 0 auto 10rem;
  width: 70%;
}

.index-news__ttl--ja,
.index-news__ttl--en {
  text-align: center;
  display: block;
  line-height: 1.8;
}

.index-news__ttl--en {
  font-size: 1.4rem;
  text-align: left;
}

.index-news__head .btn01 {
  margin-top: 1rem;
}

.index-news__item {
  margin: 0 auto;
}

.index-news-list {
  width: 70%;
  margin: 0 auto;
}

.index-news-list__box {
  margin-bottom: 3rem;
  text-align: left;
}

.index-news-list__box a:hover {
  color: #a3cb64;
}

.index-news-list__date {
  position: relative;
  left: 0;
  top: 0;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.875;
  margin-bottom: 0;
}

.index-news-list__date::after {
  position: absolute;
  top: 1rem;
  left: 12rem;
  width: 8rem;
  height: 1px;
  background-color: #7dcc00;
  content: "";
}

.index-news-list__ttl {
  padding-left: 14rem;
}

/* 投稿が見つからない */
.not-found__txt {
  color: #f72503;
  text-align: center;
}

/*--------------------------------------------------------------

## index.php / archive.php

--------------------------------------------------------------*/
/***** products *****/
.products {
  padding: 10rem 0 6rem;
}

.products__item {
  text-align: center;
  margin-top: 4rem;
  width: 47%;
}
.products__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  display: block;
}

.products__txt h3 {
  color: #333333;
  font-size: 2.2rem;
  text-align: left;
  margin: 1rem 0 2rem;
}

.products__txt h3:hover {
  color: var(--color-hover);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.products__txt--category {
  margin: 1.5rem 0 0;
}

.category-btn02 a {
  color: var(--color-accent);
  background: #fff;
  font-size: 1.4rem;
  border: 1px solid var(--color-accent);
  padding: 0.5rem 1.3rem;
}

.category-btn02 a:hover {
  color: #fff;
  background: var(--color-accent);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.products__btn {
  margin: 0 auto;
}

.products__btn .btn01 a {
  margin: 8rem auto 0;
}

/*--------------------------------------------------------------

## single.php

--------------------------------------------------------------*/
/***** .products-single *****/
.products-single__item {
  margin-bottom: 3rem;
  width: calc(70% - 4rem);
  padding-right: 4rem;
}

.products-single__ttl {
  text-align: left;
  margin: 0rem 0 3rem;
}

.products-single__info {
  margin: 2rem auto 0;
}

.products-single__date {
  color: var(--color-text);
}

.products-single__txt {
  margin: 4rem 0 0rem;
}

.widget_category .wp-block-heading {
  padding: 1rem 2rem;
  border-bottom: 3px solid var(--color-accent);
  color: var(--color-accent);
}
.widget_category .wp-block-categories-list li a {
  padding: 2rem 2rem;
  display: block;
  border-bottom: 1px solid var(--color-gray1);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.widget_category .wp-block-categories-list li a:hover {
  color: var(--color-accent);
}

.widget-container {
  width: calc(340px - 4rem);
  margin-left: 4rem;
  margin-bottom: 3rem;
}

label.screen-reader-text {
  display: none;
}

.widget-container_title {
  background-color: #a3cb64;
  font-size: 1.8rem;
  color: #fff;
  margin: 0 auto 1rem;
  padding: 0.5rem 2rem;
}

.searchform {
  position: relative;
}

.searchfield {
  font-size: 14px;
  width: 90%;
  margin: 1rem auto;
  padding: 1.2rem 1rem;
  border: solid 1px #bbb;
  background-color: #efefef;
}

.searchsubmit {
  font-family: "FontAwesome";
  font-size: 2rem;
  position: absolute;
  top: 0;
  right: 8%;
  margin-top: 2rem;
  padding: 0;
  cursor: pointer;
  color: #a3cb64;
  border: none;
  background: transparent;
}

.searchsubmit:hover {
  opacity: 0.6;
}

/*--------------------------------------------------------------

## search.php

--------------------------------------------------------------*/
.search_ttl {
  margin: 7rem 0 0;
}

.search_none {
  margin: 4rem 0 0;
}

/*--------------------------------------------------------------

## archive-news.php

--------------------------------------------------------------*/
/***** news *****/
.news {
  padding: 10rem 0 6rem;
}

.news__item {
  margin: 0 auto;
}

.news__box {
  max-width: 600px;
  margin: 4rem auto 0;
}

.news-list__box {
  margin-bottom: 3rem;
  text-align: left;
}

.news-list__box a:hover {
  color: #a3cb64;
}

.news-list__date {
  position: relative;
  left: 0;
  top: 0;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.875;
  margin-bottom: 0;
}

.news-list__date::after {
  position: absolute;
  top: 1rem;
  left: 11rem;
  width: 6rem;
  height: 1px;
  background-color: #7dcc00;
  content: "";
}

.news-list__ttl {
  padding-left: 10rem;
}

/*--------------------------------------------------------------

## single-news.php

--------------------------------------------------------------*/
/***** .news-single *****/
.news-single {
  padding: 10rem 0 6rem;
}

.news-single__item {
  text-align: center;
}

.news-single__ttl {
  text-align: center;
  margin: 0 auto 1rem;
}

.news-single__date {
  text-align: center;
  color: #a3cb64;
  margin: 0 auto 7rem;
}

.news-single .wp-post-image {
  max-width: 100%;
  margin: 0 auto 3rem;
}

.news-single__txt {
  text-align: left;
  margin: 0 auto;
  max-width: 70%;
}

.news-btn {
  margin: 10rem auto 0;
}

.news-btn a {
  margin: 0 auto;
}

/*--------------------------------------------------------------

## その他の下層ページ page.php

--------------------------------------------------------------*/
.page-company,
.page-business,
.page-store-design,
.page-product,
.page-recruit,
.page-contact {
  padding: 10rem 0;
}

.page-sub {
  padding: 10rem 0 7rem;
}

.page-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem;
}
.page-nav__list li {
  width: calc(50% - 1rem);
}
.page-nav__list li a {
  display: block;
  background: #fff;
  padding: 1rem 2rem;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.page-nav__list li a::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: 10px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.8em;
}
.page-nav__list li a:hover {
  -webkit-transform: translateX(1rem);
          transform: translateX(1rem);
}

.page-content {
  margin-bottom: 20rem;
}

.page-content__ttl {
  margin-bottom: 4rem;
}
.page-content__ttl .en {
  display: block;
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--color-accent);
}
.page-content__ttl .en::before {
  content: "";
  width: 15px;
  height: 3px;
  background: var(--color-accent);
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.6em;
  border-radius: 20px;
}
.page-content__ttl .ja {
  font-size: 4rem;
  font-weight: 600;
  line-height: 1.8;
}

.page-content__table {
  width: 100%;
}
.page-content__table th {
  width: 20%;
  font-weight: 600;
  text-align: left;
}
.page-content__table th,
.page-content__table td {
  padding: 40px 0;
  border-bottom: 1px solid var(--color-border);
}

/*--------------------------------------------------------------

## 事業内容 page-business.php

--------------------------------------------------------------*/
.business-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin-bottom: 10rem;
}
.business-content .business-content__btn {
  margin-top: 6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4rem;
}

.business-content__img {
  overflow: hidden;
  width: 50%;
}
.business-content__img:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.business-content__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  display: block;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.business-content__desc {
  width: 50%;
  background: #fff;
  padding: 8rem;
}

/*--------------------------------------------------------------

## 店舗デザイン設計施工 page-store-design.php

--------------------------------------------------------------*/
.store-design-message {
  margin-bottom: 8rem;
}
.store-design-message p {
  width: min(860px, 100%);
  font-size: 1.8rem;
  line-height: 2.2;
}

.store-design-content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10rem;
  z-index: 1;
}
.store-design-content::before {
  content: "";
  background: #fff;
  width: 90%;
  height: calc(100% - 2rem);
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  z-index: 0;
}

.store-design-content__desc {
  position: relative;
  width: min(500px, 45%);
  padding: 4rem 2rem 4rem 6rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 1;
}

.store-design-content__ttl {
  color: var(--color-accent);
  font-size: 2.8rem;
  font-weight: 600;
  padding-bottom: 0.3em;
  margin-bottom: 0.5em;
  border-bottom: 1px var(--color-bg) solid;
}

.store-design-content__img {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 2rem 4rem;
  aspect-ratio: 3/2;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 1;
}
.store-design-content__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  display: block;
  -webkit-transform: rotate(4deg);
          transform: rotate(4deg);
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.store-design-content__img img:hover {
  -webkit-transform: rotate(0deg) scale(1.05);
          transform: rotate(0deg) scale(1.05);
}

.store-design-works a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: var(--color-sub);
  padding: 6rem 4rem;
}
.store-design-works a:hover {
  color: var(--color-text);
}
.store-design-works a:hover .arrow-btn {
  background: var(--color-accent);
}
.store-design-works a:hover .arrow-btn span {
  color: #fff;
}
.store-design-works a .arrow-btn {
  width: 100px;
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50px;
  border: 1px solid var(--color-accent);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.store-design-works a .arrow-btn span {
  color: var(--color-accent);
}

.store-design-works__desc {
  width: calc(100% - 150px);
}

.store-design-works__ttl {
  margin-bottom: 2rem;
}
.store-design-works__ttl .en {
  display: block;
  color: var(--color-accent);
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.2;
}
.store-design-works__ttl .ja {
  font-size: 2.8rem;
  font-weight: 600;
}

/*--------------------------------------------------------------

## 製品紹介 page-product.php

--------------------------------------------------------------*/
.product-message {
  margin-bottom: 8rem;
}
.product-message p {
  font-size: 1.8rem;
  line-height: 2.2;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  border-top: 1px solid var(--color-accent);
  border-left: 1px solid var(--color-accent);
}

.product-grid__item {
  padding: 6rem 4rem;
  overflow: hidden;
  text-align: center;
  border-right: 1px solid var(--color-accent);
  border-bottom: 1px solid var(--color-accent);
}
.product-grid__item:hover .product-grid__item-img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.product-grid__item-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.product-grid__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  display: block;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.product-grid__item-ttl {
  color: var(--color-accent);
  background: #fff;
  border: 1px solid;
  padding: 0.3em 2em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 4rem auto 0;
}

/*--------------------------------------------------------------

## 会社概要 page-company.php

--------------------------------------------------------------*/
.company-content__table-list--normal h3 {
  color: var(--color-accent);
  font-size: 1.6rem;
  font-weight: 600;
}
.company-content__table-list--normal li:not(:last-child) {
  margin-bottom: 2rem;
}

.company-content__table-list--design {
  margin-top: 1rem;
}
.company-content__table-list--design li:not(:last-child) {
  margin-bottom: 1rem;
}
.company-content__table-list--design li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: 10px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.8em;
}

/*--------------------------------------------------------------

## 求人情報 page-company.php

--------------------------------------------------------------*/
.page-recruit .recruit-content__btn {
  margin-top: 10rem;
}
.page-recruit .recruit-content__btn a {
  margin-inline: auto;
}

/*--------------------------------------------------------------

## お問い合わせ page-contact.php

--------------------------------------------------------------*/
.contact-content__message {
  font-size: 1.8rem;
}

.contact-content__notes {
  background: var(--color-gray2);
  padding: 2rem 3rem;
  margin-top: 4rem;
}

.contact-content__tel {
  margin: 15rem 0;
}
.contact-content__tel a {
  color: var(--color-accent);
  font-size: 4rem;
  font-weight: bold;
  line-height: 4rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.contact-content__tel a:hover {
  color: var(--color-hover);
}
.contact-content__tel p {
  background: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 3rem 6rem;
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.contact-content__tel span {
  display: block;
}

.contact-form__policy {
  background-color: #fff;
  width: auto;
  max-width: 100%;
  height: 30rem;
  overflow: auto;
  border-radius: 6px;
}

.contact-form__policy-inner {
  font-size: 0.9em;
  line-height: 1.8;
  padding: 5%;
}

.required {
  background-color: #f72503;
  color: #fff;
  font-size: 1.2rem;
  padding: 0.2em 0.7em;
  margin-left: 1em;
  border-radius: 3px;
}

.any {
  background-color: #1096cf;
  color: #fff;
  font-size: 1.2rem;
  padding: 0.2em 0.7em;
  margin-left: 1em;
  border-radius: 3px;
}

.contact-form {
  margin: 6rem auto 6rem 0;
  width: 70%;
}

.contact-form p {
  margin: 0 0 3rem;
  line-height: 3;
}

.contact-form input.wpcf7-form-control.wpcf7-text {
  width: -webkit-fill-available;
  height: 2rem;
  padding: 1.6rem;
  background: #fff;
  border-radius: 6px;
}

.contact-form textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: -webkit-fill-available;
  padding: 1.6rem;
  background: #fff;
  border-radius: 6px;
}

.wpcf7 .wpcf7-list-item {
  display: block;
  margin: 0;
}

.wpcf7-submit {
  width: 160px;
  height: 50px;
  text-align: center;
  display: block;
  margin: 4rem auto 0 0;
  background: var(--color-accent);
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.wpcf7-submit:hover {
  background: var(--color-hover);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.contact-form__policy-inner h4 {
  font-size: 2.2rem;
  margin: 0 auto 2rem;
  font-weight: 600;
}

.contact-form__policy-inner h5 {
  font-size: 1.8rem;
  font-weight: 600;
}

.contact-form__check {
  padding: 3rem 0 0;
}

.screen-reader-response {
  display: none;
}

#autozip {
  display: none !important;
}

/*--------------------------------------------------------------

## 微調整

--------------------------------------------------------------*/
@media screen and (max-width: 1440px) {
  /* フッター */
  .access__images {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 1259px) {
  .contents--type01 {
    width: calc(100% - 165px);
  }
  /* フッター */
  .index-contact__btn {
    margin: 0 auto -160px;
  }
  .contact-btn {
    width: 90%;
    height: 160px;
    margin: 0 auto;
  }
  .contact-btn--en {
    font-size: 4rem;
    line-height: 1.6;
  }
}
/*--------------------------------------------------------------

## 1025px

--------------------------------------------------------------*/
@media screen and (max-width: 1024px) {
  /* 改行 */
  .br_pc {
    display: none;
  }
  .br_1024 {
    display: block;
  }
  /* 共通 */
  .contents {
    margin-bottom: 20vw;
  }
  .contents--small {
    margin-bottom: 10vw;
  }
  .contents--type03 {
    width: 100%;
  }
  /* .products-single */
  .products {
    padding: 7rem 0 6rem;
  }
  .products-single__box {
    display: block;
  }
  .products-single__item {
    margin-bottom: 3rem;
    width: 100%;
    padding-right: 0;
  }
  .widget-container {
    width: 100%;
    margin-left: 0rem;
  }
  .products-single__ttl {
    margin: 4rem 0 2rem;
  }
  .products-single__txt {
    margin: 4rem 0 7rem;
  }
  /* フッター */
  .access-container {
    padding: 0 5rem 5rem;
  }
  /* page-business.php */
  .business-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .business-content__desc {
    width: auto;
  }
  .business-content__img {
    width: auto;
  }
}
/*--------------------------------------------------------------

## 960px

--------------------------------------------------------------*/
@media screen and (max-width: 959px) {
  /* 改行 */
  .br_960 {
    display: block;
  }
  /* 共通 */
  .contents--type01 {
    width: calc(100% - 10vw);
    margin-right: auto;
  }
  .breadcrumb {
    margin-bottom: 5rem;
  }
  /* サムネイル画像 @960px */
  .post_thum_images {
    height: 60vw;
  }
  /* フッター */
  /* .access__images {
      background-image: url("../img/common/access_bg_sp.jpg");
  } */
  /* index.php @960px */
  .index-contents-list__img {
    position: relative;
    display: inline-block;
    width: 84%;
    margin-bottom: 40px;
    padding-top: 0;
    opacity: 1;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
  }
  .index-contents-list li:nth-child(odd) .index-contents-list__img {
    margin: 0 0 0 0%;
  }
  .index-contents-list li:nth-child(even) .index-contents-list__img {
    margin-left: 16%;
  }
  .index-contents-list__txt {
    width: auto;
    margin-top: 5%;
    padding: 50px 16% 50px 120px;
  }
  .index-contents-list li:nth-child(even) .index-contents-list__txt {
    width: auto;
    margin: 5% 0 0 0;
    padding: 50px 16% 50px 120px;
  }
  .index-contents3__item {
    width: 100%;
  }
  .index-contents4 {
    margin-bottom: 5rem;
  }
  .index-contents4 a {
    padding: 10rem 0;
  }
  .index-contents4__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 4rem;
  }
  .index-contents4__wrap .index-contents4__desc {
    width: 100%;
  }
  .index-contents4__wrap .arrow-btn {
    margin-left: auto;
  }
  .index-news__head {
    width: 100%;
    margin: 0 auto 7rem;
  }
  .index-news-list {
    width: 100%;
    margin: 0 auto;
  }
  .index-news-list__ttl {
    padding-left: 6rem;
  }
  .index-news-list__date::after {
    width: 5rem;
    left: 12.3rem;
  }
  /* archive.php */
  .products__item {
    width: 100%;
  }
  .products__item:first-child {
    margin-top: 0;
  }
  /* .news-single */
  .news-single__txt {
    max-width: 90%;
  }
  /* 下層ページ共通 */
  .page-nav__list li {
    width: 100%;
  }
  .page-content__ttl .ja {
    font-size: 3rem;
  }
  /* page-business.php */
  .business-content__desc {
    padding: 6rem;
  }
  /* page-store-design.php */
  .store-design-message {
    margin-bottom: 5rem;
  }
  .store-design-message p {
    font-size: 1.6rem;
  }
  .store-design-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 4rem;
    padding: 4rem 3rem;
  }
  .store-design-content::before {
    width: 100%;
    height: 100%;
  }
  .store-design-content__desc {
    width: auto;
    padding: 0;
  }
  .store-design-content__img {
    width: 100%;
    padding: 0;
  }
  .store-design-content__img img {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  /* page-product.php */
  .product-message {
    margin-bottom: 5rem;
  }
  .product-message p {
    font-size: 1.6rem;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  /* page-contact.php */
  .contact-content__message {
    font-size: 1.6rem;
  }
  .contact-content__notes {
    font-size: 1.4rem;
    margin-top: 2rem;
  }
  .contact-content__tel {
    margin: 10rem 0;
  }
  .contact-content__tel p {
    padding: 2rem 4rem;
  }
  .contact-content__tel a {
    font-size: 3rem;
  }
  .contact-content__tel span {
    font-size: 1.4rem;
  }
  .contact-form {
    width: 100%;
  }
}
/*--------------------------------------------------------------

## 768px

--------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  /* index.php */
  .index-news {
    padding: 7rem 0 0rem;
  }
  .index-news-list__ttl {
    font-size: 1.4rem;
    padding-left: 0rem;
  }
  .index-news-list__date {
    display: block;
    color: #a3cb64;
  }
  .index-news-list__date::after {
    display: none;
  }
  /* フッター */
  .index-contact__btn {
    margin: 0 auto -120px;
  }
  .contact-btn {
    width: 100%;
    height: 130px;
    margin: 0 auto;
  }
  .contact-btn--en {
    font-size: 3rem;
    line-height: 1.4;
  }
  .contact-btn--ja {
    font-size: 1.2rem;
  }
  .access-container__box {
    display: block;
    padding: 12rem 0 5rem;
  }
  .access-container__item {
    line-height: 2.4;
  }
  .access-container__menu {
    margin-top: 4rem;
  }
  .access-container__sns {
    margin-top: 4rem;
  }
  /***** .archive-news *****/
  .news {
    padding: 7rem 0 6rem;
  }
  .news-list__ttl {
    padding-left: 0rem;
  }
  .news-list__date {
    display: block;
    color: #a3cb64;
  }
  .news-list__date::after {
    display: none;
  }
  /***** .news-single *****/
  .news-single {
    padding: 7rem 0 6rem;
  }
  .news-single__ttl {
    margin: 4rem auto 0rem;
  }
  .news-single__date {
    margin: 0 auto 4rem;
  }
  .news-single__txt {
    max-width: 100%;
  }
  .news-btn {
    margin: 7rem auto 0;
  }
  /***** page.php *****/
  .page-sub {
    padding: 7rem 0 6rem;
  }
}
/*--------------------------------------------------------------

## 560px

--------------------------------------------------------------*/
@media screen and (max-width: 559px) {
  /* 改行 */
  .br_560 {
    display: block;
  }
  .br_560_none {
    display: none;
  }
  /* 共通 */
  h1 {
    font-size: 3rem;
  }
  h2 {
    font-size: 2.5rem;
  }
  h3 {
    font-size: 2rem;
  }
  h4 {
    font-size: 1.8rem;
  }
  p {
    font-size: 1.4rem;
  }
  a {
    font-size: 1.4rem;
  }
  li,
  th,
  td {
    font-size: 1.4rem;
  }
  .contents--type01,
  .contents--type02 {
    width: calc(100% - 6rem);
  }
  /***** ボタン01 *****/
  .btn01 a {
    width: 240px;
    height: 65px;
    padding-left: 22px;
    line-height: 65px;
  }
  .btn01 a span {
    top: 25px;
    right: 0px;
    width: 40%;
  }
  /***** ミニボタン01 *****/
  .btn01--mini a {
    width: 150px;
    height: 50px;
    padding-left: 20px;
    line-height: 55px;
  }
  .btn01--mini a span {
    top: 20px;
    right: 0px;
    width: 50%;
  }
  /* トップに戻るボタン */
  #page_top {
    bottom: 1rem;
  }
  #page_top a img {
    padding: 0 1rem 0 0;
  }
  /* パンくずリスト */
  .breadcrumb li {
    margin-right: 2rem;
  }
  .breadcrumb li::after {
    right: -1.1rem;
    bottom: 1.1rem;
  }
  /* index.php @560px */
  .index-contents-list__lead .btn01 {
    margin-top: 3rem;
  }
  .index-contents-list__txt {
    position: relative;
    padding: 4rem 4rem 4rem 6rem;
    opacity: 0;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
  }
  .index-contents-list li:nth-child(even) .index-contents-list__txt {
    padding: 4rem 4rem 4rem 6rem;
  }
  .index-contents3 {
    padding: 6rem 0 6rem;
  }
  .index-contents3__ttl--ja {
    font-size: 3rem;
  }
  .index-contents3__lead {
    margin: 3rem auto 2rem;
  }
  .index-contents3__txt h3 {
    font-size: 1.6rem;
    margin: 1rem 0 0;
  }
  .index-contents4 a {
    padding: 8rem 0;
  }
  .index-contents4__wrap {
    gap: 2rem;
  }
  .index-contents4__wrap .index-contents4__ttl {
    font-size: 2.6rem;
  }
  .index-contents4__wrap .arrow-btn {
    width: 80px;
    height: 80px;
  }
  .category-btn01 a {
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
  }
  /* フッター @560px */
  .access-container {
    padding: 0 3rem 3rem;
  }
  .access-container__logo img {
    max-width: 180px;
  }
  .access-container__menu {
    width: 100%;
  }
  .contact-btn {
    height: 100px;
  }
  .contact-btn--en {
    font-size: 2rem;
  }
  .contact-btn--ja {
    font-size: 1rem;
  }
  /* archive.php */
  .products {
    padding: 6rem 0 0rem;
  }
  .products__lead {
    margin: 4rem auto 4rem;
  }
  .products__txt h3 {
    font-size: 1.6rem;
  }
  .category-btn02 a {
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
  }
  .header-sub__bg--pc {
    display: none;
  }
  .header-sub__bg--sp {
    display: block;
  }
  .widget-container_title {
    font-size: 1.6rem;
  }
  /* archive-news.php */
  .news {
    padding: 7rem 0 0rem;
  }
  /* 下層ページ共通 */
  .page-company,
  .page-business,
  .page-store-design,
  .page-product,
  .page-recruit,
  .page-contact {
    padding: 7rem 0 5rem;
  }
  .page-content {
    margin-bottom: 10rem;
  }
  .page-content__ttl {
    margin-bottom: 2rem;
  }
  .page-content__ttl .en {
    font-size: 1.4rem;
  }
  .page-content__ttl .ja {
    font-size: 2.4rem;
  }
  .page-content__table tr:first-child {
    border-top: 1px solid var(--color-border);
  }
  .page-content__table th {
    width: auto;
    padding: 20px 0;
  }
  .page-content__table th,
  .page-content__table td {
    display: block;
  }
  /* page-business.php */
  .business-content__desc {
    padding: 4rem;
  }
  .business-content .business-content__btn {
    margin-top: 4rem;
    gap: 2rem;
  }
  /* page-store-design.php */
  .store-design-message p {
    font-size: 1.4rem;
  }
  .store-design-content__ttl {
    font-size: 2.4rem;
  }
  .store-design-works a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 2rem;
    padding: 4rem 3rem;
  }
  .store-design-works a .arrow-btn {
    margin-left: auto;
    width: 70px;
    height: 70px;
  }
  .store-design-works__desc {
    width: 100%;
  }
  .store-design-works__ttl .ja {
    font-size: 2.4rem;
  }
  .store-design-works__ttl .en {
    font-size: 1.4rem;
  }
  /* page-product.php */
  .product-message p {
    font-size: 1.4rem;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .product-grid__item {
    padding: 4rem 3rem;
  }
  .product-grid__item-ttl {
    margin: 2rem auto 0;
  }
  /* page-recruit.php */
  .page-recruit .recruit-content__btn {
    margin-top: 6rem;
  }
  /* page-contact.php */
  .contact-content__message {
    font-size: 1.4rem;
  }
  .contact-content__tel a {
    font-size: 2.6rem;
  }
  .contact-content__tel p {
    padding: 2rem 3rem;
  }
  .contact-form__policy-inner h4 {
    font-size: 1.8rem;
  }
  .contact-form__policy-inner h5 {
    font-size: 1.6rem;
  }
}/*# sourceMappingURL=style.css.map */