@charset "UTF-8";
/*
Theme Name: 2025 Kiyome-mochi
Author: STEP Inc.
Author URI: http://www.step-cr.com/
Description: 2025.9作成「きよめ餅総本家」用のテーマ。
Version: 1.0.0
*/
a {
  text-decoration-thickness: 1px !important;
  text-underline-offset: 0.1em;
}

/* Focus styles */
:where(.wp-site-blocks *:focus) {
  outline-width: 2px;
  outline-style: solid;
}

/* Increase the bottom margin on submenus, so that the outline is visible. */
.wp-block-navigation .wp-block-navigation-submenu .wp-block-navigation-item:not(:last-child) {
  margin-bottom: 3px;
}

/* Increase the outline offset on the parent menu items, so that the outline does not touch the text. */
.wp-block-navigation .wp-block-navigation-item .wp-block-navigation-item__content {
  outline-offset: 4px;
}

/* Remove outline offset from the submenus, otherwise the outline is visible outside the submenu container. */
.wp-block-navigation .wp-block-navigation-item ul.wp-block-navigation__submenu-container .wp-block-navigation-item__content {
  outline-offset: 0;
}

/*
 * Progressive enhancement to reduce widows and orphans
 * https://github.com/WordPress/gutenberg/issues/55190
 */
h1,
h2,
h3,
h4,
h5,
h6,
blockquote,
caption,
figcaption,
p {
  text-wrap: pretty;
}

/*
 * Change the position of the more block on the front, by making it a block level element.
 * https://github.com/WordPress/gutenberg/issues/65934
*/
.more-link {
  display: block;
}

/* CSSくずれ対応 */
.wp-caption {
  max-width: 100%;
  margin: 1em auto;
  text-align: center;
}

.wp-caption img {
  height: auto;
  max-width: 100%;
}

.alignleft {
  float: left;
  margin-right: 1em;
}

.alignright {
  float: right;
  margin-left: 1em;
}

.aligncenter {
  display: block;
  margin: 0 auto;
}

blockquote {
  border-left: 4px solid #ccc;
  margin: 1em 0;
  padding: 0.5em 1em;
  color: #555;
}

pre,
code {
  font-family: monospace;
  background: #f5f5f5;
  padding: 0.25em 0.5em;
}

table {
  border-collapse: collapse;
  width: 100%;
  margin: 1em 0;
}

table th,
table td {
  padding: 0.5em;
}

.comment-list {
  list-style: none;
  padding: 0;
}

.comment {
  margin-bottom: 1.5em;
  border-bottom: 1px solid #eee;
  padding-bottom: 1em;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  line-height: 2;
}

body {
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  font-size: 1rem;
  position: relative;
  background: url("images/common/backpattern.jpg") repeat 0 0;
  background-size: 100% auto;
}
@media screen and (max-width: 767px) {
  body {
    font-family: sans-serif;
  }
}

img {
  width: 100%;
  vertical-align: bottom;
  backface-visibility: hidden;
}

a {
  text-decoration: none;
  color: #333333;
}

ul {
  list-style: none;
}

/* Fonts */
.f-jp {
  font-family: "Noto Serif JP", serif;
}

/* PC.SP切り替え */
.spNoDisplay {
  display: block;
}

@media screen and (min-width: 768px) {
  .pcNoDisplay {
    display: none !important;
  }
}
@media print {
  .pcNoDisplay {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .spNoDisplay {
    display: none !important;
  }
}
#wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
/* フェード処理
--------------------------------------------- */
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 3s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeUpTrigger {
  opacity: 0;
}

/*順にフェードイン*/
.box {
  opacity: 0;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* パンくずリスト */
.breadcrumb {
  margin-bottom: 1.5rem;
}
.breadcrumb ul {
  list-style: none;
}
.breadcrumb ul li {
  display: inline;
  font-size: 0.75rem;
  font-family: inherit;
}
.breadcrumb ul li a {
  color: inherit;
  text-decoration: none;
}
.breadcrumb ul li a:hover {
  text-decoration: underline;
}
.breadcrumb ul li + li:before {
  content: ">";
  margin: 0.5em;
}

/* ヘッダー（トップ）
--------------------------------------------- */
body.home header {
  width: 45%;
  padding: 5% 10%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  body.home header {
    display: flex;
    width: 100%;
    height: 100lvh;
    padding: 5rem 0;
    z-index: 1;
    flex-direction: column;
    justify-content: space-between;
  }
}
body.home header .title {
  width: 100%;
  margin-bottom: 5em;
}
@media screen and (max-width: 767px) {
  body.home header .title {
    margin-bottom: 0;
  }
}
body.home header .title p {
  font-size: 1.25rem;
  text-align: center;
  margin-bottom: 1vw;
}
@media screen and (max-width: 767px) {
  body.home header .title p {
    color: #FFFFFF;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 200;
    line-height: 1.2;
  }
}
body.home header .title img {
  width: 100%;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  body.home header .title img {
    width: 80%;
    /* 白にする */
    filter: invert(97%) sepia(8%) saturate(165%) hue-rotate(179deg) brightness(121%) contrast(100%);
  }
}
body.home header .nav-set {
  width: 100%;
}
@media screen and (max-width: 767px) {
  body.home header .nav-set {
    display: none;
  }
}
body.home header .nav-set .nav {
  font-size: 1.125rem;
  margin-bottom: 3em;
}
@media screen and (max-width: 767px) {
  body.home header .nav-set .nav {
    display: none;
  }
}
body.home header .nav-set .nav ul li {
  position: relative;
  /* 準備中 */
}
body.home header .nav-set .nav ul li span {
  display: block;
  font-size: 0.625em;
  color: #B58E30;
}
body.home header .nav-set .nav ul li + li {
  margin-top: 1em;
}
body.home header .nav-set .nav ul li:nth-child(3) a::after {
  content: "";
  display: block;
  width: 30px;
  height: 29px;
  position: absolute;
  left: 8.5em;
  top: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("images/common/icon_shop.png");
}
body.home header .nav-set .nav ul li a {
  transition: 0.3s;
}
body.home header .nav-set .nav ul li a:hover {
  opacity: 0.3;
  transition: 0.3s;
}
body.home header .nav-set .nav ul li:first-child a {
  pointer-events: none;
  color: #ccc;
}
body.home header .nav-set .nav ul li:first-child a span {
  color: #ccc;
}
body.home header .nav-set .sns {
  width: 100%;
}
body.home header .nav-set .sns ul {
  display: flex;
  flex-wrap: nowrap;
}
@media screen and (max-width: 767px) {
  body.home header .nav-set .sns ul {
    justify-content: center;
  }
}
body.home header .nav-set .sns ul li {
  width: 10%;
  min-width: 40px;
}
@media screen and (max-width: 767px) {
  body.home header .nav-set .sns ul li {
    width: 11%;
  }
}
body.home header .nav-set .sns ul li img {
  display: block;
}
body.home header .nav-set .sns ul li + li {
  margin-left: 0.5em;
}
@media screen and (max-width: 767px) {
  body.home header .nav-set .sns ul li + li {
    margin-left: 1em;
  }
}
body.home header .nav-set .sns ul li a {
  transition: 0.3s;
}
body.home header .nav-set .sns ul li a:hover {
  opacity: 0.3;
  transition: 0.3s;
}

/* ヘッダー（中面）
--------------------------------------------- */
body.archive header,
body.single header,
body.page header {
  width: 100%;
  position: fixed;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  transition: background-color 0.3s ease;
  /* スクロール後に付与するクラス */
  /* 中面はフェードなし */
}
body.archive header.scrolled,
body.single header.scrolled,
body.page header.scrolled {
  background: rgba(255, 255, 255, 0.9);
  padding-bottom: 1rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
body.archive header.fadeIn,
body.single header.fadeIn,
body.page header.fadeIn {
  animation-name: none !important;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  body.archive header,
  body.single header,
  body.page header {
    display: flex;
    height: 60px;
    padding: 0;
    z-index: 1;
    flex-direction: row;
    width: calc(100% - 60px);
    justify-content: flex-start;
    background-color: #FFFFFF;
  }
}
body.archive header .title,
body.single header .title,
body.page header .title {
  width: auto;
  margin: 15px 0 0 30px;
}
@media screen and (max-width: 767px) {
  body.archive header .title,
  body.single header .title,
  body.page header .title {
    width: 60%;
    margin: 0;
  }
}
body.archive header .title p,
body.single header .title p,
body.page header .title p {
  font-size: 0.75rem;
  text-align: center;
  margin-bottom: 0.5vw;
}
@media screen and (max-width: 767px) {
  body.archive header .title p,
  body.single header .title p,
  body.page header .title p {
    display: none;
  }
}
body.archive header .title p br,
body.single header .title p br,
body.page header .title p br {
  display: none;
}
body.archive header .title img,
body.single header .title img,
body.page header .title img {
  width: 250px;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  body.archive header .title img,
  body.single header .title img,
  body.page header .title img {
    width: 80%;
  }
}
body.archive header .nav-set,
body.single header .nav-set,
body.page header .nav-set {
  width: 60%;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  flex-direction: column-reverse;
  margin: 15px 30px 0 0;
}
@media screen and (max-width: 767px) {
  body.archive header .nav-set,
  body.single header .nav-set,
  body.page header .nav-set {
    display: none;
  }
}
body.archive header .nav-set .nav,
body.single header .nav-set .nav,
body.page header .nav-set .nav {
  width: auto;
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  body.archive header .nav-set .nav,
  body.single header .nav-set .nav,
  body.page header .nav-set .nav {
    display: none;
  }
}
body.archive header .nav-set .nav ul,
body.single header .nav-set .nav ul,
body.page header .nav-set .nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
body.archive header .nav-set .nav ul li,
body.single header .nav-set .nav ul li,
body.page header .nav-set .nav ul li {
  position: relative;
  text-align: center;
  /* 準備中 */
}
body.archive header .nav-set .nav ul li span,
body.single header .nav-set .nav ul li span,
body.page header .nav-set .nav ul li span {
  display: block;
  font-size: 0.625rem;
  color: #B58E30;
  letter-spacing: 0.1em;
}
body.archive header .nav-set .nav ul li:nth-child(3) a::after,
body.single header .nav-set .nav ul li:nth-child(3) a::after,
body.page header .nav-set .nav ul li:nth-child(3) a::after {
  content: "";
  display: block;
  width: 30px;
  height: 29px;
  position: absolute;
  left: calc(50% - 15px);
  top: -1.5rem;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("images/common/icon_shop.png");
}
body.archive header .nav-set .nav ul li a,
body.single header .nav-set .nav ul li a,
body.page header .nav-set .nav ul li a {
  font-size: 1rem;
  line-height: 1.2;
  transition: 0.3s;
}
body.archive header .nav-set .nav ul li a:hover,
body.single header .nav-set .nav ul li a:hover,
body.page header .nav-set .nav ul li a:hover {
  opacity: 0.3;
  transition: 0.3s;
}
body.archive header .nav-set .nav ul li:first-child a,
body.single header .nav-set .nav ul li:first-child a,
body.page header .nav-set .nav ul li:first-child a {
  pointer-events: none;
  color: #ccc;
}
body.archive header .nav-set .nav ul li:first-child a span,
body.single header .nav-set .nav ul li:first-child a span,
body.page header .nav-set .nav ul li:first-child a span {
  color: #ccc;
}
body.archive header .nav-set .sns,
body.single header .nav-set .sns,
body.page header .nav-set .sns {
  width: auto;
  margin-bottom: 1em;
}
@media screen and (max-width: 767px) {
  body.archive header .nav-set .sns,
  body.single header .nav-set .sns,
  body.page header .nav-set .sns {
    display: none;
    width: 100%;
    margin-bottom: 0;
  }
}
body.archive header .nav-set .sns ul,
body.single header .nav-set .sns ul,
body.page header .nav-set .sns ul {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  body.archive header .nav-set .sns ul,
  body.single header .nav-set .sns ul,
  body.page header .nav-set .sns ul {
    justify-content: space-between;
  }
}
body.archive header .nav-set .sns ul li,
body.single header .nav-set .sns ul li,
body.page header .nav-set .sns ul li {
  width: 35px;
}
@media screen and (max-width: 767px) {
  body.archive header .nav-set .sns ul li,
  body.single header .nav-set .sns ul li,
  body.page header .nav-set .sns ul li {
    min-width: 35px;
  }
}
body.archive header .nav-set .sns ul li img,
body.single header .nav-set .sns ul li img,
body.page header .nav-set .sns ul li img {
  display: block;
}
body.archive header .nav-set .sns ul li + li,
body.single header .nav-set .sns ul li + li,
body.page header .nav-set .sns ul li + li {
  margin-left: 0.5em;
}
@media screen and (max-width: 767px) {
  body.archive header .nav-set .sns ul li + li,
  body.single header .nav-set .sns ul li + li,
  body.page header .nav-set .sns ul li + li {
    margin-left: 0;
  }
}
body.archive header .nav-set .sns ul li a,
body.single header .nav-set .sns ul li a,
body.page header .nav-set .sns ul li a {
  transition: 0.3s;
}
body.archive header .nav-set .sns ul li a:hover,
body.single header .nav-set .sns ul li a:hover,
body.page header .nav-set .sns ul li a:hover {
  opacity: 0.3;
  transition: 0.3s;
}

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

     SP GLOBAL NAV

---------------------------------------------------*/
.drawer_menu {
  display: none;
}

.drawer_menu .drawer_button {
  color: #FFFFFF;
  display: none;
}

.drawer_menu .drawer_button .drawer_bar {
  background-color: #B58E30;
}

@media screen and (max-width: 767px) {
  .drawer_menu {
    display: block;
  }
  .drawer_menu .drawer_bg {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 999;
    background-color: rgba(51, 51, 51, 0);
    display: none;
    top: 0;
    left: 0;
  }
  .drawer_menu .drawer_button {
    display: block;
    background-color: #FFFFFF;
    color: #FFFFFF;
    border: none;
    width: 60px;
    height: 60px;
    letter-spacing: 0.1em;
    cursor: pointer;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1001;
    text-align: center;
    outline: none;
  }
  .drawer_menu .drawer_bar {
    display: block;
    width: 30px;
    height: 1px;
    transition: all 0.2s;
    transform-origin: center;
    position: absolute;
    left: 15px;
  }
  .drawer_menu .drawer_button.active .drawer_bar {
    /*width: 28px;*/
  }
  .drawer_menu .drawer_button .drawer_bar1 {
    top: 18px;
  }
  .drawer_menu .drawer_button .drawer_bar2 {
    top: 29px;
  }
  .drawer_menu .drawer_button .drawer_bar3 {
    opacity: 0;
    top: 29px;
  }
  .drawer_menu .drawer_button .drawer_bar4 {
    top: 40px;
  }
  .drawer_menu .drawer_button.active .drawer_bar1 {
    opacity: 0;
  }
  .drawer_menu .drawer_button.active .drawer_bar2 {
    transform: rotate(137deg);
  }
  .drawer_menu .drawer_button.active .drawer_bar3 {
    opacity: 1;
    transform: rotate(-137deg);
  }
  .drawer_menu .drawer_button.active .drawer_bar4 {
    opacity: 0;
  }
  .drawer_menu .drawer_button.active .drawer_menu_text {
    display: none;
  }
  .drawer_menu .drawer_button.active .drawer_close {
    display: block;
  }
  .drawer_menu .drawer_text {
    text-align: center;
    font-size: 10px;
  }
  .drawer_menu .drawer_close {
    letter-spacing: 0.08em;
    display: none;
  }
  .drawer_menu .drawer_menu_text {
    display: block;
  }
  .drawer_menu .drawer_nav_wrapper {
    /*width: 300px;*/
    width: 96vw;
    height: 94vh;
    transition: all 0.2s;
    transform: translate(100vw);
    position: fixed;
    top: 1lvh;
    right: 2lvw;
    z-index: 1000;
    background-color: #FFFFFF;
    overflow-x: hidden;
    overflow-y: auto;
    border-radius: 15px;
    /*margin-top: 50px;*/
  }
  /*Recruit*/
  .drawer_menu.recruit .drawer_nav_wrapper {
    background-color: #009FD2;
  }
  .drawer_menu .drawer_nav {
    display: block;
    position: relative;
    /*margin-top: 50px;*/
    /*border-top:2px #FFFFFF solid;*/
    margin-top: 3em;
  }
  .drawer_menu .drawer_nav li {
    height: auto;
    position: relative;
    border-bottom: 1px solid #DDDDDD;
    position: relative;
  }
  .drawer_menu .drawer_nav li:first-child a {
    pointer-events: none;
    color: #ccc;
  }
  .drawer_menu .drawer_nav li:first-child a span {
    color: #ccc;
  }
  .drawer_menu .drawer_nav li a {
    display: block;
    text-align: left;
    padding: 1em 0 1em 2em;
  }
  /* ひし形 */
  .drawer_menu .drawer_nav li a:before {
    content: "";
    width: 6px;
    height: 6px;
    background-color: #B58E30;
    position: absolute;
    top: 1.75em;
    left: 1em;
    transform: rotate(45deg);
  }
  .drawer_menu .drawer_nav li a span {
    color: #B58E30;
    font-size: 0.625rem;
    margin-left: 1em;
    letter-spacing: 0.1em;
  }
  .drawer_menu .drawer_nav li.sub a {
    font-size: 0.875rem;
  }
  /* サブひし形 */
  .drawer_menu .drawer_nav li.sub a:before {
    display: none;
    content: "";
    width: 6px;
    height: 6px;
    background-color: #000000;
    position: absolute;
    top: 1.75em;
    left: 1em;
    transform: rotate(45deg);
  }
  .drawer_menu .drawer_nav li.eng a {
    background: none;
  }
  .drawer_menu .drawer_nav li a:hover {
    text-decoration: none;
  }
  /* 2階層目 */
  .drawer_menu .drawer_nav li ul.second-level {
    display: none;
    position: relative;
    padding: 0;
    z-index: 1001;
  }
  .drawer_menu .drawer_nav li ul.second-level li a {
    padding-left: 40px;
    background-color: #008dc7;
  }
  .drawer_menu .drawer_nav li ul.second-level li + li {
    border-bottom: none;
  }
  .drawer_menu .drawer_nav_wrapper.open {
    transform: translate(0);
  }
  .drawer_menu.left .drawer_button {
    right: auto;
    left: 32px;
  }
  .drawer_menu.left .drawer_nav_wrapper {
    transform: translate(-250px);
    right: auto;
    left: 0;
  }
  .drawer_menu.left .drawer_nav_wrapper.open {
    transform: translate(0);
  }
  .touch-btn {
    color: #555;
    position: absolute;
    top: 0.25rem;
    right: 0;
    display: block;
    z-index: 10;
    width: 100%;
    height: 50px;
    text-align: center;
    vertical-align: middle;
  }
  /*矢印*/
  span.arrow {
    display: block;
    position: absolute;
    top: 0;
    right: 5%;
  }
  span.arrow::after {
    content: "❯";
    color: #FFFFFF;
    font-size: 16px;
  }
  .rotate {
    transform: rotate(90deg);
    transition: all 0.35s;
  }
}
/* トップメインビジュアル
--------------------------------------------- */
.index-main {
  width: 55%;
  height: 100vh;
  background: url(images/index/main_visual01.jpg) no-repeat center bottom;
  background-size: cover;
  margin-left: 45%;
  margin-bottom: 10em;
}
@media screen and (max-width: 767px) {
  .index-main {
    width: 100%;
    height: 100lvh;
    background: url(images/index/main_visual01.jpg) no-repeat center center;
    background-size: cover;
    margin-left: 0;
    margin-bottom: 0;
  }
}

.slide {
  position: relative;
  width: 55%;
  height: 100vh;
  overflow: hidden;
  margin-left: 45%;
  margin-bottom: 10em;
}
@media screen and (max-width: 767px) {
  .slide {
    width: 100%;
    height: 100lvh;
    margin-left: 0;
    margin-bottom: 0;
  }
}

.slide-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  animation: slider-1 24s linear infinite;
}

.slide-image:nth-child(1) {
  background-image: url("images/index/main_visual01.jpg");
  animation-delay: -2s;
}

.slide-image:nth-child(2) {
  background-image: url("images/index/main_visual02.jpg");
  animation-delay: 6s;
}

.slide-image:nth-child(3) {
  background-image: url("images/index/main_visual03.jpg");
  animation-delay: 14s;
}

@keyframes slider-1 {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  4.16% {
    opacity: 1;
  }
  33.33% {
    opacity: 1;
  }
  41.66% {
    opacity: 0;
    transform: scale(1.2);
  }
  100% {
    opacity: 0;
  }
}
/* トップページ
--------------------------------------------- */
/* 見出し */
h2 {
  font-size: 3.125rem;
  display: block;
  margin: 0 auto;
  text-align: center;
  font-weight: 200;
  letter-spacing: 0.1em;
  margin-bottom: 2em;
}
@media screen and (max-width: 767px) {
  h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
}
h2 span {
  display: block;
  color: #B58E30;
  font-size: 1rem;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  h2 span {
    font-size: 0.625rem;
  }
}

/* 背景サークル */
.circle {
  opacity: 0.4;
  width: 52%;
  height: auto;
  z-index: -1;
}
.circle.about {
  position: absolute;
  top: -20%;
  left: -10%;
}
@media screen and (max-width: 767px) {
  .circle.about {
    position: absolute;
    top: -12%;
    left: -25%;
  }
}
.circle.sweets {
  position: absolute;
  top: -20%;
  right: -10%;
}
@media screen and (max-width: 767px) {
  .circle.sweets {
    position: absolute;
    top: -12%;
    right: -25%;
  }
}
.circle.sweets img {
  transform: scale(-1, 1);
}
.circle.company {
  position: absolute;
  top: -20%;
  left: -10%;
}
@media screen and (max-width: 767px) {
  .circle.company {
    position: absolute;
    top: -12%;
    left: -25%;
  }
}

/* ボタン */
a.btn {
  display: block;
  font-size: 1.125rem;
  text-align: center;
  padding: 0.75em 5em;
  background-color: #000000;
  border-radius: 29px;
  color: #FFFFFF;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  /* センター揃え */
  /* ストア用 */
}
@media screen and (max-width: 767px) {
  a.btn {
    width: 100%;
    font-size: 0.875rem;
  }
}
a.btn:hover {
  opacity: 0.6;
  transition: 0.3s;
}
a.btn.center {
  margin: 0 auto;
}
a.btn.off {
  cursor: default;
}
a.btn.off:hover {
  opacity: 1;
}
a.btn.store {
  display: block;
  border-radius: 30px;
  cursor: pointer;
  background-color: #CD4A37;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
a.btn.store::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 27px;
  width: 9px;
  height: 9px;
  margin: auto;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  box-sizing: border-box;
}
a.btn.store:hover {
  opacity: 0.6;
  transition: 0.3s;
}

/* お知らせ ------------------------------------------------------*/
.infomation {
  position: relative;
  margin-bottom: 10em;
  padding: 3rem;
}
@media screen and (max-width: 767px) {
  .infomation {
    width: 100%;
    margin: 0 auto;
    padding: 0;
    padding-top: 2em;
    margin-bottom: 5em;
  }
}
.infomation .info-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.7;
}
.infomation .info-back::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, white 10%, white 90%, transparent 100%);
  pointer-events: none;
}
.infomation > h2 {
  font-size: 2.125rem;
}
@media screen and (max-width: 767px) {
  .infomation > h2 {
    font-size: 1.6rem;
  }
}
.infomation .container {
  width: 60%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .infomation .container {
    width: 100%;
    padding: 0 2rem;
  }
}
.infomation .container dl dt {
  display: flex;
  flex-direction: row;
  align-items: center;
  line-height: 1;
  margin-bottom: 0.6rem;
  font-size: 0.875rem;
}
.infomation .container dl dt span.cat {
  margin-left: 1rem;
  border: 1px #B58E30 solid;
  border-radius: 3px;
  font-size: 0.75rem;
  padding: 0.2rem 0.4rem;
  line-height: 1;
  color: #B58E30;
}
.infomation .container dl dd a:hover {
  text-decoration: underline;
}
.infomation .container dl dd .important-news {
  color: red;
}
.infomation .container dl + dl {
  border-top: 1px #B58E30 dashed;
  margin-top: 2rem;
  padding-top: 2rem;
}
@media screen and (max-width: 767px) {
  .infomation .container dl + dl {
    margin-top: 1rem;
    padding-top: 1rem;
  }
}
.infomation .container a.btn {
  margin-top: 3rem;
  border: 1px #B58E30 solid;
  background-color: transparent;
  color: #B58E30;
}
@media screen and (max-width: 767px) {
  .infomation .container a.btn {
    width: 100%;
    font-size: 0.875rem;
  }
}
.infomation .container a.btn:hover {
  opacity: 0.6;
  transition: 0.3s;
}

/* お知らせ一覧 */
.archive-contents {
  display: flex;
  margin: 0 auto;
  width: 1024px;
  max-width: 100%;
  justify-content: space-between;
  margin-bottom: 5rem;
}
.archive-contents .infomation {
  width: 75%;
  margin: 0;
  padding: 0;
}
.archive-contents .infomation .container {
  width: 100%;
}

/* サイドバー */
#sidebar h2 {
  font-size: 1rem;
  color: #B58E30;
  border-bottom: 1px #B58E30 solid;
  margin-bottom: 0.5rem;
  text-align: left;
}
#sidebar ul li {
  font-size: 0.875rem;
}
#sidebar ul li a {
  position: relative;
  display: inline-block;
  padding-left: 1rem;
}
#sidebar ul li a:before {
  content: "";
  width: 4px;
  height: 4px;
  border: 0;
  border-top: solid 1px #B58E30;
  border-right: solid 1px #B58E30;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
#sidebar ul li a:hover {
  text-decoration: underline;
}
#sidebar ul li + li {
  margin-top: 0.5rem;
}

/* お知らせ詳細 */
body.single .archive-contents {
  display: block;
}
body.single .archive-contents .article {
  width: 80%;
  margin: 0 auto;
}
body.single .archive-contents .article .entry-header {
  padding-top: 13rem;
  margin-bottom: 5em;
}
body.single .archive-contents .article .entry-header .entry-data {
  display: flex;
  flex-wrap: nowrap;
}
body.single .archive-contents .article .entry-header .entry-data ul {
  display: flex;
  flex-wrap: nowrap;
}
body.single .archive-contents .article .entry-header .entry-data ul li a {
  margin-left: 1rem;
  border: 1px #B58E30 solid;
  border-radius: 3px;
  font-size: 0.75rem;
  padding: 0.2rem 0.4rem;
  line-height: 1;
  color: #B58E30;
}
body.single .archive-contents .article .entry-header h2 {
  font-size: 1.9rem;
  display: block;
  margin: 0 auto;
  text-align: left;
  font-weight: 200;
  letter-spacing: 0.1em;
  margin-bottom: 2em;
  border-bottom: 1px #B58E30 solid;
  padding-bottom: 1rem;
}
body.single .archive-contents .post-navigation {
  width: 80%;
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  border-top: 1px #999 solid;
  border-bottom: 1px #999 solid;
  margin-top: 5rem;
  padding: 1rem;
}
body.single .archive-contents .post-navigation a:hover {
  text-decoration: underline;
}

/* きよめ餅について（トップ） ------------------------------------------------------*/
.about {
  position: relative;
  margin-bottom: 10em;
}
@media screen and (max-width: 767px) {
  .about {
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    padding-top: 2em;
    margin-bottom: 5em;
  }
}
.about .container {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .about .container {
    flex-direction: column;
  }
}
.about .container .image {
  width: 40%;
}
@media screen and (max-width: 767px) {
  .about .container .image {
    width: 80%;
    margin: 0 auto;
    margin-bottom: 1em;
  }
}
.about .container .image img {
  display: block;
  width: 100%;
  height: auto;
}
.about .container .contents {
  width: 40%;
  margin-left: 2%;
}
@media screen and (max-width: 767px) {
  .about .container .contents {
    width: 100%;
    margin: 0;
  }
}
.about .container .contents p {
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 2;
  margin-bottom: 2em;
}
@media screen and (max-width: 767px) {
  .about .container .contents p {
    font-size: 1rem;
  }
}
.about .container .contents ul {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .about .container .contents ul {
    margin-top: 1em;
  }
}
.about .container .contents ul li {
  display: block;
  width: 30%;
  height: 27vw;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .about .container .contents ul li {
    width: 33%;
    height: 50vw;
  }
}
.about .container .contents ul li:nth-child(1) {
  background: url("images/index/about_image02.jpg") no-repeat center 0;
  background-size: cover;
  margin-top: 10em;
}
@media screen and (max-width: 767px) {
  .about .container .contents ul li:nth-child(1) {
    margin-top: 0;
  }
}
.about .container .contents ul li:nth-child(2) {
  background: url("images/index/about_image03.jpg") no-repeat center 0;
  background-size: cover;
  margin-top: 5em;
}
@media screen and (max-width: 767px) {
  .about .container .contents ul li:nth-child(2) {
    margin-top: 0;
  }
}
.about .container .contents ul li:nth-child(3) {
  background: url("images/index/about_image04.jpg") no-repeat center 0;
  background-size: cover;
}

/* お菓子のご案内（トップ） ------------------------------------------------------*/
.sweets {
  position: relative;
  margin-bottom: 10em;
}
@media screen and (max-width: 767px) {
  .sweets {
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    margin-bottom: 5em;
  }
}
.sweets h2 {
  margin-bottom: 1em;
}
.sweets h2 + p {
  text-align: center;
  margin-bottom: 2em;
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .sweets h2 + p {
    font-size: 1rem;
    text-align: left;
  }
}
.sweets .container {
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .sweets .container {
    width: 100%;
  }
}
.sweets .container ul {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  margin-bottom: 3em;
}
@media screen and (max-width: 767px) {
  .sweets .container ul {
    flex-direction: column;
    margin-bottom: 1em;
  }
}
.sweets .container ul li {
  display: block;
  width: 18%;
  height: 32vw;
  border-radius: 10px;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .sweets .container ul li {
    width: 100%;
    height: 25vw;
  }
}
.sweets .container ul li:hover {
  opacity: 0.6;
  transition: 0.3s;
}
.sweets .container ul li:nth-child(even) {
  margin-top: 5em;
}
.sweets .container ul li:nth-child(1) {
  background: url(images/index/sweets_image01.jpg) no-repeat 60% 80%;
  background-size: 250%;
}
@media screen and (max-width: 767px) {
  .sweets .container ul li:nth-child(1) {
    background: url(images/index/sweets_image01.jpg) no-repeat center 65%;
    background-size: cover;
  }
}
.sweets .container ul li:nth-child(1) > a {
  color: #FFFFFF;
}

.sweets .container ul li:nth-child(2) {
  background: url(images/index/sweets_image02.jpg) no-repeat 25% 90%;
  background-size: 600%;
}
@media screen and (max-width: 767px) {
  .sweets .container ul li:nth-child(2) {
    background: url(images/index/sweets_image02.jpg) no-repeat 10% 72%;
    background-size: 250%;
  }
}

.sweets .container ul li:nth-child(3) {
  background: url(images/index/sweets_image03.jpg) no-repeat 30% 70%;
  background-size: 300%;
}
@media screen and (max-width: 767px) {
  .sweets .container ul li:nth-child(3) {
    background: url("images/index/sweets_image03.jpg") no-repeat center center;
    background-size: cover;
    margin-top: 0;
  }
}
.sweets .container ul li:nth-child(3) > a {
  color: #FFFFFF;
}
.sweets .container ul li:nth-child(4) {
  background: url(images/index/sweets_image04.jpg) no-repeat 50% center #FFFFFF;
  background-size: 350%;
}
@media screen and (max-width: 767px) {
  .sweets .container ul li:nth-child(4) {
    background: url(images/index/sweets_image04.jpg) no-repeat center 70% #FFFFFF;
    background-size: cover;
  }
}
.sweets .container ul li:nth-child(4) > a {
  color: #FFFFFF;
}
.sweets .container ul li:nth-child(5) {
  background: url(images/index/sweets_image05.jpg) no-repeat 55% bottom #FFFFFF;
  background-size: 350%;
}
@media screen and (max-width: 767px) {
  .sweets .container ul li:nth-child(5) {
    background: url(images/index/sweets_image05.jpg) no-repeat center center #FFFFFF;
    background-size: 60%;
    margin-top: 0.5em;
    margin-top: 0;
  }
}
.sweets .container ul li:nth-child(6) {
  background: url(images/index/sweets_image06.jpg) no-repeat 10% 100%;
  background-size: 150%;
}
@media screen and (max-width: 767px) {
  .sweets .container ul li:nth-child(6) {
    background: url(images/index/sweets_image06.jpg) no-repeat 10% 72%;
    background-size: 250%;
  }
}
.sweets .container ul li a {
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: flex-end;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .sweets .container ul li a {
    justify-content: flex-start;
    align-items: center;
  }
}
.sweets .container ul li a p {
  text-align: center;
  font-size: 1.125rem;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 767px) {
  .sweets .container ul li a p {
    font-size: 1rem;
    margin-bottom: 0;
    margin-left: 1em;
  }
}
@media screen and (max-width: 767px) {
  .sweets .container ul li + li {
    margin-top: 0.5em !important;
  }
}
.sweets .container a.btn {
  width: 30%;
  max-width: 480px;
  min-width: 380px;
}
@media screen and (max-width: 767px) {
  .sweets .container a.btn {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
  }
}
.sweets .container a.btn + a {
  margin-top: 10px;
}

/* 店舗のご案内（トップ） ------------------------------------------------------*/
.company {
  position: relative;
  margin-bottom: 10em;
}
@media screen and (max-width: 767px) {
  .company {
    width: 100%;
    padding: 0 2rem;
    margin: 0 auto;
    margin-bottom: 5em;
  }
}
.company h2 {
  margin-bottom: 1em;
}
.company h2 + p {
  text-align: center;
  margin-bottom: 2em;
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .company h2 + p {
    font-size: 1rem;
    text-align: left;
  }
}
.company .container {
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .company .container {
    width: 100%;
  }
}
.company .container ul {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  margin-bottom: 3em;
}
@media screen and (max-width: 767px) {
  .company .container ul {
    flex-direction: column;
    margin-bottom: 1em;
  }
}
.company .container ul li {
  display: block;
  width: 49.9%;
}
@media screen and (max-width: 767px) {
  .company .container ul li {
    width: 100%;
  }
}
.company .container ul li .image {
  width: 100%;
  height: auto;
  position: relative;
  background-color: #000000;
  margin-bottom: 1em;
}
.company .container ul li .image img {
  width: 100%;
  height: auto;
  opacity: 0.75;
}
.company .container ul li .image p {
  display: block;
  font-size: 1.25rem;
  text-align: center;
  border: 1px #FFFFFF solid;
  color: #FFFFFF;
  padding: 0.5em 2em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.65);
}
@media screen and (max-width: 767px) {
  .company .container ul li .image p {
    font-size: 1rem;
    white-space: nowrap;
  }
}
.company .container ul li .image + p {
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .company .container ul li .image + p {
    font-size: 0.875rem;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .company .container ul li + li {
    margin-top: 1em;
  }
}

/* 中面
--------------------------------------------- */
/* 共通ページタイトル */
.inner-title {
  width: 100%;
  position: relative;
  padding-top: 180px;
  margin-bottom: 5em;
}
@media screen and (max-width: 767px) {
  .inner-title {
    width: 90%;
    margin: 0 auto;
    margin-bottom: 2em;
    padding-top: 100px;
  }
}
.inner-title h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
}
.inner-title p {
  font-size: 1.125rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .inner-title p {
    font-size: 1.6rem;
    text-align: left;
  }
}

/* お菓子のご案内 */
.sweets-cont {
  width: 100%;
  min-height: 500px;
  margin-bottom: 5em;
}
@media screen and (max-width: 767px) {
  .sweets-cont {
    width: 90%;
    margin: 0 auto;
    margin-bottom: 3em;
  }
}
.sweets-cont.p01 {
  background: url("images/sweets/kiyome01.png") no-repeat center bottom;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .sweets-cont.p01 {
    background: none;
  }
}
.sweets-cont.p02 {
  background: url("images/sweets/02kiyome_pan.png") no-repeat center center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .sweets-cont.p02 {
    background: none;
  }
}
.sweets-cont.p03 {
  background: url("images/sweets/03tou.png") no-repeat center center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .sweets-cont.p03 {
    background: none;
  }
}
.sweets-cont.p04 {
  display: flex;
}
.sweets-cont.p04 li {
  display: block;
  width: 33.33%;
}
.sweets-cont.p04 li div.images {
  height: 30vh;
  margin-bottom: 1em;
}
.sweets-cont.p04 li:nth-child(1) div.images {
  background: url("images/sweets/04wa.png") no-repeat center center;
  background-size: cover;
}
.sweets-cont.p04 li:nth-child(2) div.images {
  background: url("images/sweets/05yo.png") no-repeat center center;
  background-size: cover;
}
.sweets-cont.p04 li:nth-child(3) div.images {
  background: url("images/sweets/06cele.png") no-repeat center center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .sweets-cont.p04 {
    background: none;
  }
}
/* .sweets-cont.p05 {
  background: url("images/sweets/other01.png") no-repeat center center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .sweets-cont.p05 {
    background: none;
  }
} */
.sweets-cont .text {
  max-width: 1024px;
  min-height: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .sweets-cont .text {
    width: 100%;
  }
}
.sweets-cont .text h3{
  font-size: 2.2rem;
  font-weight: 200;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 767px) {
  .sweets-cont .text h3 {
    font-size: 2.4rem;
  }
}
.sweets-cont li h3 {
  font-size: 2rem;
  font-weight: 200;
  margin-bottom: 0.5em;
  text-align: center;
}
.sweets-cont .text p {
  margin-bottom: 2em;
}
@media screen and (max-width: 767px) {
  .sweets-cont .text p {
    margin-bottom: 1em;
  }
}
@media screen and (max-width: 767px) {
  .sweets-cont .text img {
    width: 100%;
    height: auto;
    margin-bottom: 1em;
    border-radius: 6px;
  }
}
.sweets-cont .text.left {
  padding-right: 550px;
}
@media screen and (max-width: 767px) {
  .sweets-cont .text.left {
    padding-right: 0;
  }
}
.sweets-cont .text.right {
  padding-left: 550px;
}
@media screen and (max-width: 767px) {
  .sweets-cont .text.right {
    padding-left: 0;
  }
}
.sweets-cont .text a {
  margin: 0;
}
@media screen and (max-width: 767px) {
  .sweets-cont .text a {
    width: 100%;
  }
}

/* 店舗のご案内 */
.company-cont {
  max-width: 1024px;
  margin: 0 auto;
  margin-bottom: 5em;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .company-cont {
    width: 90%;
    flex-direction: column-reverse;
    margin: 0 auto;
    margin-bottom: 3em;
  }
}
.company-cont img {
  width: 50%;
  height: auto;
  margin-bottom: 1em;
}
@media screen and (max-width: 767px) {
  .company-cont img {
    width: 100%;
  }
}
.company-cont .text {
  width: 45%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .company-cont .text {
    width: 100%;
  }
}
.company-cont .text h3 {
  font-size: 1.25rem;
  font-weight: 200;
  margin-bottom: 0.5em;
  border: 1px #000000 solid;
  padding: 0.25em 0.5em;
}
@media screen and (max-width: 767px) {
  .company-cont .text h3 {
    font-size: 2rem;
  }
}
.company-cont .text p {
  margin-bottom: 2em;
}
@media screen and (max-width: 767px) {
  .company-cont .text p {
    margin-bottom: 1em;
  }
}
.company-cont.last .text {
  width: 80%;
}
@media screen and (max-width: 767px) {
  .company-cont.last .text {
    width: 100%;
  }
}
.company-cont.last .text h4 {
  font-size: 2.4rem;
  font-weight: 200;
  text-align: center;
  letter-spacing: 0.25rem;
}
@media screen and (max-width: 767px) {
  .company-cont.last .text h4 {
    font-size: 2rem;
  }
}
.company-cont.last .text h4 + p {
  font-size: 0.75rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .company-cont.last .text h4 + p {
    font-size: 1.6rem;
  }
}
.company-cont.last .text .list {
  width: 100%;
}
.company-cont.last .text .list table {
  width: 100%;
  border-collapse: collapse;
}
.company-cont.last .text .list table th,
.company-cont.last .text .list table td {
  padding: 1rem;
  border-bottom: 1px solid #ccc;
}
.company-cont.last .text .list table th {
  border-bottom: 1px solid #B58E30;
  font-weight: bold;
  text-align: left;
  min-width: 4em;
  color: #B58E30;
}
.company-cont.last .text .list table ul li {
  margin-left: 1rem;
  list-style: disc;
}
.company-cont.last .text .list p {
  margin: 0;
}
.company-cont.last .text .list p + p {
  margin-top: 1em;
}

/* プライバシーポリシー */
.privacy-cont {
  max-width: 1024px;
  margin: 0 auto;
  margin-bottom: 5em;
}
@media screen and (max-width: 767px) {
  .privacy-cont {
    width: 90%;
    margin: 0 auto;
    margin-bottom: 2em;
  }
}
.privacy-cont h3 {
  font-size: 1.6rem;
  font-weight: 200;
  margin-bottom: 0.5em;
  border-bottom: 1px #000000 solid;
}
.privacy-cont p + h3 {
  margin-top: 3em;
}
@media screen and (max-width: 767px) {
  .privacy-cont p + h3 {
    margin-top: 2em;
  }
}
.privacy-cont ul li {
  list-style: disc;
  margin-left: 1em;
}
.privacy-cont ul + h3 {
  margin-top: 3em;
}
@media screen and (max-width: 767px) {
  .privacy-cont ul + h3 {
    margin-top: 2em;
  }
}

/* ページトップボタン
--------------------------------------------- */
.pagetop {
  height: 50px;
  width: 50px;
  position: fixed;
  right: 15px;
  bottom: 60px;
  background: #000000;
  border: solid 2px #ffffff;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2;
  cursor: pointer;
  /* お申込みボタン無しは以下をコメントアウト */
}
@media screen and (max-width: 767px) {
  .pagetop {
    right: 1.2%;
    bottom: 40px;
  }
}

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

/* フッター（トップ）
--------------------------------------------- */
footer.index {
  width: 100%;
}
footer.index .footer-wave {
  width: 100%;
}
footer.index .footer-wave img {
  display: block;
  width: 100%;
  height: auto;
}
footer.index .container {
  width: 100%;
  background-color: #FFFFFF;
  margin: 0 auto;
  padding-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  footer.index .container {
    padding-bottom: 1em;
  }
}
footer.index .container .inner {
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  footer.index .container .inner {
    width: 90%;
  }
}
footer.index .container .inner .logo-v {
  width: 3%;
  margin: 0 auto;
  margin-bottom: 2em;
}
@media screen and (max-width: 767px) {
  footer.index .container .inner .logo-v {
    width: 8%;
    margin: 0 auto;
    margin-bottom: 1em;
  }
}
footer.index .container .inner .logo-v img {
  width: 100%;
  height: auto;
  display: block;
}
footer.index .container .inner .footer-sns {
  width: 100%;
  margin: 0 auto;
  margin-bottom: 3em;
}
@media screen and (max-width: 767px) {
  footer.index .container .inner .footer-sns {
    margin-bottom: 1.5em;
  }
}
footer.index .container .inner .footer-sns ul {
  width: 31%;
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  footer.index .container .inner .footer-sns ul {
    width: auto;
  }
}
footer.index .container .inner .footer-sns ul li {
  width: 12%;
  min-width: 40px;
}
footer.index .container .inner .footer-sns ul li img {
  display: block;
}
footer.index .container .inner .footer-sns ul li + li {
  margin-left: 1em;
}
footer.index .container .inner .footer-sns ul li a {
  transition: 0.3s;
}
footer.index .container .inner .footer-sns ul li a:hover {
  opacity: 0.3;
  transition: 0.3s;
}
footer.index .container .inner .footer-nav {
  font-size: 1.125rem;
  width: 80%;
  margin: 0 auto;
  margin-bottom: 1.5em;
}
@media screen and (max-width: 767px) {
  footer.index .container .inner .footer-nav {
    display: none;
  }
}
footer.index .container .inner .footer-nav ul {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  footer.index .container .inner .footer-nav ul {
    flex-wrap: wrap;
    flex-direction: row;
    align-content: flex-start;
  }
}
footer.index .container .inner .footer-nav ul li {
  position: relative;
  text-align: center;
  /* 準備中 */
}
@media screen and (max-width: 767px) {
  footer.index .container .inner .footer-nav ul li {
    width: 49%;
  }
}
footer.index .container .inner .footer-nav ul li span {
  display: block;
  font-size: 0.625rem;
  color: #B58E30;
}
@media screen and (max-width: 767px) {
  footer.index .container .inner .footer-nav ul li span {
    font-size: 0.9rem;
  }
}
footer.index .container .inner .footer-nav ul li a {
  transition: 0.3s;
}
footer.index .container .inner .footer-nav ul li a:hover {
  opacity: 0.3;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  footer.index .container .inner .footer-nav ul li + li:nth-child(n+3) {
    margin-top: 1em;
  }
}
footer.index .container .inner .footer-nav ul li:first-child a {
  pointer-events: none;
  color: #ccc;
}
footer.index .container .inner .footer-nav ul li:first-child a span {
  color: #ccc;
}
footer.index .container .inner .footer-sub-nav {
  font-size: 1rem;
  width: 75%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  footer.index .container .inner .footer-sub-nav {
    display: none;
  }
}
footer.index .container .inner .footer-sub-nav ul {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  footer.index .container .inner .footer-sub-nav ul {
    flex-direction: column;
  }
}
footer.index .container .inner .footer-sub-nav ul li {
  font-size: 0.75rem;
}
@media screen and (max-width: 767px) {
  footer.index .container .inner .footer-sub-nav ul li {
    width: 100%;
  }
}
footer.index .container .inner .footer-sub-nav ul li + li {
  margin-left: 1.5em;
  border-left: 1px #000000 solid;
  padding-left: 1.5em;
}
@media screen and (max-width: 767px) {
  footer.index .container .inner .footer-sub-nav ul li + li {
    margin-left: 0;
    border-left: none;
    padding-left: 0;
    margin-top: 0.5em;
  }
}
footer.index .container .inner .footer-sub-nav ul li a {
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  footer.index .container .inner .footer-sub-nav ul li a {
    display: block;
    width: 100%;
    border: 1px #999999 solid;
    padding: 1em 0;
    text-align: center;
  }
}
footer.index .container .inner .footer-sub-nav ul li a:hover {
  opacity: 0.3;
  transition: 0.3s;
}
footer.index p.copyright {
  display: block;
  background-color: #B58E30;
  text-align: center;
  font-size: 0.75em;
  color: #FFFFFF;
  padding: 1em 0;
  height: 70px;
}
@media screen and (max-width: 767px) {
  footer.index p.copyright {
    font-size: 0.625rem;
  }
}

/* お問い合わせフォーム
--------------------------------------------- */
.contact {
  width: 830px;
  max-width: 100%;
  margin: 0 auto;
  margin-bottom: 5rem;
}

.contact table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 50px;
}

.contact table tr {
  display: flex;
  align-items: center;
}

.contact table tr:last-child {
  align-items: flex-start;
}

.contact table th,
.contact table td {
  padding: 1rem 0;
}

.contact table th {
  width: 13rem;
  font-weight: normal;
  text-align: left;
  position: relative;
}

.contact table td {
  width: calc(100% - 13rem);
  margin-left: 2rem;
}

/*必須*/
.contact table th > span.need {
  color: #FFFFFF;
  background-color: #FF004D;
  font-size: 0.75rem;
  text-align: center;
  padding: 0.05rem 0.3rem;
  position: absolute;
  top: calc(50% - 0.75rem);
  right: 0px;
  border-radius: 3px;
}

.contact table select,
.contact table input[type=text],
.contact table input[type=email],
.contact textarea {
  padding: 0.8rem 1rem;
  outline: none;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  width: 30%;
}

.contact table select,
.contact table input[type=email],
.contact table input[type=text],
.contact textarea {
  width: 100%;
}

.contact table .tel {
  width: 10% !important;
}

.contact td.radio-btn label {
  display: block;
}

.contact td.radio-btn span + span > label {
  margin-top: 10px;
}

.contact td.radio-btn label input {
  margin-right: 0.5em;
}

::-moz-placeholder {
  color: #999999;
}

::placeholder {
  color: #999999;
}

/*プライバシーポリシー同意*/
.contact .consent {
  width: 100%;
  text-align: center;
  margin-bottom: 50px;
}

.contact .consent input {
  transform: scale(1.4);
  margin-right: 0.5em;
}

/*入力内容確認メッセージ（内容を確認してください）*/
.contact .wpcf7c-elm-step2 {
  font-size: 18px;
  margin-bottom: 30px;
}

/*ボタン*/
.contact .form-btn {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
}

.contact .confirm-btn {
  display: block;
  font-size: 1.125rem;
  text-align: center;
  padding: 0.75em 5em;
  background-color: #000000;
  border-radius: 29px;
  color: #FFFFFF;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  transition: 0.3s;
  border: none;
  outline: none;
}

.contact .confirm-btn.send {
  margin-left: 1rem;
}

.contact .confirm-btn:hover {
  opacity: 0.6;
}

.contact input[type=button]:hover {
  background-color: #666666;
}

.contact input[type=submit]:hover {
  background-color: #FF004D;
}

.contact input[type=button] + input[type=submit] {
  margin-left: 20px;
}

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

/* 完了画面 */
.mw_wp_form_complete p {
  font-size: 1.2rem;
  text-align: center;
}
.mw_wp_form_complete p a {
  margin: 0 auto;
  margin-top: 5rem;
}

/*送信成功*/
div.wpcf7-mail-sent-ok {
  background: #d5edda;
  color: #185626;
  border: 1px solid #c4e5cc;
  padding: 10px;
  font-size: 18px;
  margin: 0;
  margin-bottom: 20px;
}

/*送信NG -入力内容に問題があります。確認して再度お試しください。*/
div.wpcf7-validation-errors,
div.wpcf7-acceptance-missing {
  background: #f7d7da;
  color: #711d26;
  border: 1px solid #f4c6cb;
  padding: 10px;
}

.wpcf7-not-valid-tip {
  color: #FF0000;
  display: block;
  margin-top: 5px;
}

/*送信失敗*/
div.wpcf7-mail-sent-ng {
  background: #f7d7da;
  color: #711d26;
  border: 1px solid #f4c6cb;
  padding: 10px;
}

/*スパムなどで送信ブロックされた場合*/
div.wpcf7-spam-blocked {
  background: #fff2cf;
  color: #846314;
  border: 1px solid #feedbd;
  padding: 10px;
}

@media screen and (max-width: 959px) {
  .contact {
    width: 90%;
    margin-bottom: 30px;
  }
  .contact h3 {
    margin-bottom: 5px;
  }
  .contact p.tell a {
    font-size: 24px;
  }
  /*フォーム*/
  .contact table th,
  .contact table td {
    width: 100%;
    display: block;
    padding: 10px;
  }
  .contact table th {
    padding: 10px 0 5px 0;
  }
  .contact table td {
    padding: 0px 0 10px 0;
  }
  .contact input[type=submit],
  .contact input[type=button] {
    width: 100%;
    height: 50px;
    border-radius: 25px;
    font-size: 16px;
  }
  .contact table select,
  .contact table input[type=email],
  .contact table input[type=text],
  .contact textarea {
    width: 100%;
  }
  .contact table .tel {
    width: 25% !important;
  }
  /*必須*/
  .contact table th > span.need {
    position: relative;
    margin-left: 2em;
  }
  /*ボタン*/
  .contact .form-btn {
    width: 100%;
    display: block;
  }
  .contact .confirm-btn {
    width: 100%;
    padding: 15px 0;
  }
  .contact button + button {
    margin-top: 15px;
  }
}
/*電話番号 PC時クリック不可*/
@media screen and (min-width: 959px) {
  .contact p.tell a {
    pointer-events: none;
  }
}/*# sourceMappingURL=style.css.map */
