@charset "UTF-8";

.hoverLayer {
  --btn-size: 280px;
  --mask-color: var(--blue-hover-color);
  will-change: transform;
  overflow: hidden;
}

.hoverLayer * {
  transition: all 0.32s cubic-bezier(0.39, 0.575, 0.565, 1);
}

@media only screen and (min-width: 768px) {
  .hoverLayer::before {
    --size: calc(var(--btn-size) * 1.2);
    content: "";
    position: absolute;
    top: calc(50% - max(var(--size)) / 2);
    left: calc(50% - max(var(--size)) / 2);
    width: max(var(--size));
    height: max(var(--size));
    -webkit-clip-path: circle(50% at 50% 50%);
    clip-path: circle(50% at 50% 50%);
    background-color: var(--mask-color);
    transform: scale(0);
    transition: transform 0.32s cubic-bezier(0.39, 0.575, 0.565, 1);
  }

  .hoverLayer:hover::before {
    transform: scale(1);
  }
}

:root {
  --header-height: 80px;
  --step: 1.06;
  --font-size: 16px;
  --line-height: 1.8;
  --trigger-size: 3em;
  --small: 0.6em;
  --large: 1.4em;
  --transition: 0.2s;
  --header-offset: 100px;
  --gap: 20px;
  --radius: 0.6em;
  --radius-inner: 0.3em;
  --width-limit: 1380px;
  --section-space: 40px;
  --margin: 1em;
  --padding: 20px;
  --shadow: -2px -2px 5px -4px rgba(3, 2, 2, 0.1),
    4px 4px 20px -4px rgba(3, 2, 2, 0.3);
  --shadow-2: 0 0 50px rgba(3, 2, 2, 0.3);
  --shadow3: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  --transition: 0.2s;
  --transition-cubic: all .32s cubic-bezier(0.39, 0.575, 0.565, 1);
  --color-white: #ffffff;
  --color-red: #e73c54;
  --color-black: #303031;
  --color-gray-border: #858585;
  --color-hover: #930691;
  --blue-hover-color: #001f56;
  --gray-hover-color: #e6e6e6;
  --store-button-hover-color: #1f1f1f;
  --color-gray-input: #efefef;
  --color-gray-header: #f2f2f2;
  --color-gray-footer: #f1f1f1;
  --color-gray-bg: #707070;
  --color-blue-dark: #011b47;
  --color-blue-light: #00275b;
  --primary-color: var(--color-blue-dark);
  --color-text: var(--color-black);
  --color-input: var(--color-gray-input);
  --color-border: var(--color-gray-border);
  --light-gray-border: var(--color-gray-input);
  --gray-title: #d0d0d0;
  --color-light-glass: rgba(255, 254, 254, 0.8);
  --color-dark-glass: rgba(38, 32, 32, 0.8);
  --noto-sans: "Noto Sans JP",
    sans-serif;
  --noto-serif: "Noto Serif JP",
    serif;
  --concert-one: "Concert One",
    "Noto Sans JP",
    serif;
  --shippori-mincho: "Shippori Mincho",
    serif;
  --roboto: "Roboto",
    sans-serif;
  --garamond: "Cormorant Garamond",
    serif;
  --zen: "Zen Old Mincho",
    serif;
  --yuGothic: "Yu Gothic Medium",
    "游ゴシック Medium",
    YuGothic,
    "游ゴシック体",
    "ヒラギノ角ゴ Pro W3",
    "メイリオ",
    "yuGothic-b",
    "yu-gothic-pr6n",
    "Noto Sans JP",
    sans-serif;
}

@media only screen and (max-width: 640px) {
  :root {
    --header-height: 70px;
  }
}

body {
  font-feature-settings: 'palt';
  overflow-x: hidden;
}

.hoverLayer {
  --btn-size: 280px;
  --mask-color: var(--blue-hover-color);
  will-change: transform;
  overflow: hidden;
}

.hoverLayer * {
  transition: all 0.32s cubic-bezier(0.39, 0.575, 0.565, 1);
}

@media only screen and (min-width: 768px) {
  .hoverLayer::before {
    --size: calc(var(--btn-size) * 1.2);
    content: "";
    position: absolute;
    top: calc(50% - max(var(--size)) / 2);
    left: calc(50% - max(var(--size)) / 2);
    width: max(var(--size));
    height: max(var(--size));
    -webkit-clip-path: circle(50% at 50% 50%);
    clip-path: circle(50% at 50% 50%);
    background-color: var(--mask-color);
    transform: scale(0);
    transition: transform 0.32s cubic-bezier(0.39, 0.575, 0.565, 1);
  }

  .hoverLayer:hover::before {
    transform: scale(1);
  }
}

.hoverLayer {
  --btn-size: 280px;
  --mask-color: var(--blue-hover-color);
  will-change: transform;
  overflow: hidden;
}

.hoverLayer * {
  transition: all 0.32s cubic-bezier(0.39, 0.575, 0.565, 1);
}

@media only screen and (min-width: 768px) {
  .hoverLayer::before {
    --size: calc(var(--btn-size) * 1.2);
    content: "";
    position: absolute;
    top: calc(50% - max(var(--size)) / 2);
    left: calc(50% - max(var(--size)) / 2);
    width: max(var(--size));
    height: max(var(--size));
    -webkit-clip-path: circle(50% at 50% 50%);
    clip-path: circle(50% at 50% 50%);
    background-color: var(--mask-color);
    transform: scale(0);
    transition: transform 0.32s cubic-bezier(0.39, 0.575, 0.565, 1);
  }

  .hoverLayer:hover::before {
    transform: scale(1);
  }
}

#headerNav nav {
  position: static;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

#headerNav nav .logo {
  padding: 0.5em;
  z-index: 99;
}

#headerNav nav .logo a {
  padding-left: 30px;
  display: block;
}

#headerNav nav .logo a img {
  display: block;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

#headerNav nav .links {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: min(100dvh, 100vh);
  padding-top: var(--header-height);
  background-color: var(--color-white);
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  min-height: unset;
}

#headerNav nav .links .navContainer {
  width: 100%;
  height: 100%;
  padding-top: 2em;
  display: flex;
  /* flex-direction: column; */
  justify-content: space-between;
}

@media only screen and (min-width: 769px) and (min-height: 1024px) and (orientation: portrait) {
  #headerNav nav .links .navContainer {
    justify-content: center;
  }
}

@media only screen and (min-width: 769px) and (min-height: 1024px) and (orientation: landscape) {
  #headerNav nav .links .navContainer {
    justify-content: flex-end;
  }
}

@media only screen and (max-width: 640px) {
  #headerNav nav .links .navContainer {
    padding-top: 2vmin;
  }
}

#headerNav nav .links .navContainer .leftmenu {
  width: 50%;
}

#headerNav nav .links .navContainer ul.l1 {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* flex-flow: row wrap; */
  /* justify-content: flex-end;
  width: min(100%, 1000px); */
  width: 100%;
}

#headerNav nav .links .navContainer ul.l1 li {
  /* flex-basis: 33%; */
  width: 100%;
}

#headerNav nav .links .navContainer ul.l1 li a {
  font-weight: 500;
  position: relative;
  color: var(--color-black);
  display: inline-block;
  padding: 0.5em 0;
  margin-top: 2em;
  width: 80%;
  border-bottom: 1px solid #e6e6e6;
}

#headerNav nav .links .navContainer ul.l1 li a {
  font-size: 16px;
}

#headerNav nav .links .navContainer ul.l1 li a img {
  width: 100%;
  height: 200px;
  margin-bottom: 10px;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  #headerNav nav .links .navContainer ul.l1 li a img {
    display: none;
  }

  #headerNav nav .links .navContainer ul.l1 li {
    flex-basis: 50%;
  }
}

@media screen and (min-width: 320px) {
  #headerNav nav .links .navContainer ul.l1 li a {
    font-size: calc(16px + 2 * ((100vw - 320px) / 980));
  }
}

@media screen and (min-width: 1300px) {
  #headerNav nav .links .navContainer ul.l1 li a {
    font-size: 18px;
  }
}

#headerNav nav .links .navContainer ul.l1 li a::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: #c2c2c2;
  transition: var(--transition);
}

#headerNav nav .links .navContainer ul.l1 li a:hover::after {
  width: 100%;
}

@media only screen and (min-width: 641px) {
  #headerNav nav .links .navContainer ul.l1 li:nth-of-type(2) {
    order: 3;
  }

  #headerNav nav .links .navContainer ul.l1 li:nth-of-type(3) {
    order: 5;
  }

  #headerNav nav .links .navContainer ul.l1 li:nth-of-type(4) {
    order: 6;
  }

  #headerNav nav .links .navContainer ul.l1 li:nth-of-type(5) {
    order: 2;
  }

  #headerNav nav .links .navContainer ul.l1 li:nth-of-type(6) {
    order: 4;
  }
}

@media only screen and (max-width: 640px) {
  #headerNav nav .links .navContainer ul.l1 li {
    flex-basis: 100%;
  }

  #headerNav nav .links .navContainer ul.l1 li a {
    width: 96%;
    margin-top: 0.5em;
  }
}

#headerNav nav .links .navContainer .webShop {
  padding: 4em 0;
}

#headerNav nav .links .navContainer .webShop a {
  margin-top: 0;
}

@media only screen and (max-width: 640px) {
  #headerNav nav .links .navContainer .webShop {
    padding: 2em 0;
  }
}

#headerNav nav .links .navContainer ul.l1,
#headerNav nav .links .navContainer .webShop {
  padding-left: 4em;
}

@media only screen and (max-width: 640px) {

  #headerNav nav .links .navContainer ul.l1,
  #headerNav nav .links .navContainer .webShop {
    padding-left: 4%;
  }
}

#headerNav nav .links.active {
  opacity: 1;
  visibility: visible;
  z-index: 98;
  transform: translateX(0) !important;
}

.headerBody {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
}

.headerBody #headerNav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* height: var(--header-height); */
}

.headerBody #headerNav .menuButton {
  /* --btn-size: 80px;
  border-radius: 50%;
  height: var(--btn-size);
  width: var(--btn-size);
  border: none;
  background-color: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 99;
  margin-right: 1em;
  transform-origin: center center;
  transition: var(--transition); */
  height: 70px;
  width: 80px;
  border: none;
  background-color: var(--blue-hover-color);
  ;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 99;
  /* margin-right: 1em; */
  transform-origin: center center;
  position: absolute;
  top: 0;
  right: 0;
  padding-top: 7px;
  display: none;
}


.headerBody #headerNav.active .menuButton {
  background-color: var(--blue-hover-color);
}

.headerBody #headerNav nav .logo a img {
  /* filter: invert(100%);
  -webkit-filter: invert(100%); */
  filter: none;
}

.headerBody #headerNav.active nav .logo a img {
  filter: none;
}

.headerBody #headerNav .menuButton div {
  width: 100%;
  height: 21px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.headerBody #headerNav .menuButton div span {
  width: 41px;
  height: 1px;
  border: 1px solid var(--color-white);
  background-color: var(--color-white);
  transform-origin: center center;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}

.headerBody #headerNav .menuButton div span:not(:last-child) {
  margin-bottom: 8px;
}

.headerBody #headerNav .menuButton p {
  font-size: 15px;
  font-family: var(--garamond);
  margin-top: 5px;
  color: var(--color-white);
}

.headerBody #headerNav .menuButton:hover {
  transform: scale(1.05);
}

.headerBody #headerNav .menuButton.opened div span {
  margin: 0;
}

.headerBody #headerNav .menuButton.opened div span:nth-of-type(1) {
  transform: rotate(45deg);
}

.headerBody #headerNav .menuButton.opened div span:nth-of-type(2) {
  display: none;
}

.headerBody #headerNav .menuButton.opened div span:nth-of-type(3) {
  margin-top: -2px;
  transform: rotate(-45deg);
}

.headerBody #headerNav .menuButton.opened p {
  /* display: none; */
}

.hoverLayer {
  --btn-size: 280px;
  --mask-color: var(--blue-hover-color);
  will-change: transform;
  overflow: hidden;
}

.hoverLayer * {
  transition: all 0.32s cubic-bezier(0.39, 0.575, 0.565, 1);
}

@media only screen and (min-width: 768px) {
  .hoverLayer::before {
    --size: calc(var(--btn-size) * 1.2);
    content: "";
    position: absolute;
    top: calc(50% - max(var(--size)) / 2);
    left: calc(50% - max(var(--size)) / 2);
    width: max(var(--size));
    height: max(var(--size));
    -webkit-clip-path: circle(50% at 50% 50%);
    clip-path: circle(50% at 50% 50%);
    background-color: var(--mask-color);
    transform: scale(0);
    transition: transform 0.32s cubic-bezier(0.39, 0.575, 0.565, 1);
  }

  .hoverLayer:hover::before {
    transform: scale(1);
  }
}

@keyframes bounce {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(4px);
    -webkit-transform: translateY(4px);
    -moz-transform: translateY(4px);
    -ms-transform: translateY(4px);
    -o-transform: translateY(4px);
  }
}

#pageTop {
  display: none;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

#pageTop button {
  cursor: pointer;
  border: none;
  background: transparent;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  width: 80px;
  height: 80px;
}

#pageTop button img {
  width: 30px;
  animation: bounce 0.3s ease-in-out infinite alternate;
  -webkit-animation: bounce 0.3s ease-in-out infinite alternate;
  animation-play-state: running;
}

#pageTop button:hover img {
  animation-play-state: paused;
}



.footerBody {
  margin: 6em 0 2em;
  margin-top: 75px;
  margin-bottom: 0;
}

body#omoi .footerBody {
  margin-top: 0;
}

.footerBody .f_bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 90px 0px 70px 0px;
  max-width: 1100px;
  margin: 0 auto;
  gap: 50px;
}

.footerBody .f_bottom .f_l {
  flex: 1;
  width: 100%;
  display: flex;
  /* justify-content: center; */
}

.footerBody .f_bottom .f_l .inner {
  display: flex;
  flex-direction: column;
  align-items: baseline;
}

/* .footerBody .f_bottom .f_l .inner .logo a img {
  filter: invert(1);
} */

@media screen and (max-width:500px) {
  .footerBody .f_bottom .f_l .inner .logo a img {
    max-width: 215px !important;
  }
}


.footerBody .f_bottom .f_r {
  /* flex: 1;
  display: table; */
  display: flex;
}

.footerBody .f_bottom .f_r ul {
  display: table-cell;
}

.footerBody .f_bottom .f_r ul li {
  margin-bottom: 1em;
  text-align: left;
}

.footerBody .f_bottom .f_r ul li a {
  display: inline-block;
}

.footerBody .f_bottom .f_r ul li a::before {
  display: inline-block;
  transition: transform var(--transition) ease-in-out;
  content: ">";
  color: #1e4a89;
  font-size: 1em;
}

.footerBody .f_bottom .f_r ul li a span {
  display: inline-block;
  transition: transform var(--transition) ease-in-out;
  color: var(--color-text);
  font-size: 14px;
  font-weight: 500;
  margin-left: 5px;
}

.footerBody .f_bottom .f_r ul li a:hover::before {
  transform: translateX(5px);
}

.footerBody .f_bottom .f_r ul li a:hover span {
  transform: translateX(10px);
}

.footerBody .f_bottom .f_r ul:last-child {
  padding-left: 4em;
}

/* .footerBody .f_bottom .f_r ul:last-child li:not(:first-child) a::before {
  content: "－";
} */

@media only screen and (max-width: 768px) {
  .footerBody .f_bottom {
    padding: 4%;
    padding-bottom: 20px;
  }

  .footerBody .f_bottom .f_l {
    max-width: 100%;
    margin: 1em 0 3em;
    justify-content: flex-start;
    margin-top: 40px;
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 768px) {
  .footerBody .f_bottom {
    flex-direction: column;
  }

  .footerBody .f_bottom .f_r nav {
    display: flex;
  }

  .footerBody .f_bottom .f_r nav ul {
    width: 50%;
  }

  .footerBody .f_bottom .f_r nav ul:first-child {
    padding-right: 5px;
  }

  .footerBody .f_bottom .f_r nav ul:last-child {
    padding-left: 0;
  }
}

@media only screen and (max-width: 390px) {
  .footerBody .f_bottom .f_r nav {
    display: flex;
    flex-direction: column;
  }

  .footerBody .f_bottom .f_r nav ul {
    width: 100%;
  }
}

* {
  list-style: none;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
  word-break: break-all;
}

p,
span,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
li,
th,
td,
a {
  color: var(--color-text);
}


:root {
  font-size: 16px;
  font-family: var(--shippori-mincho);
}

.animateList * {
  transition: var(--transition-cubic);
  transition-duration: 1s;
}

.animateList li {
  opacity: 0;
  transform: translate(-50px, 100px);
}

.animateList .text {
  opacity: 0;
  transition-delay: 0.5s;
  transform: translate(0, 50px);
}

.animateList .image {
  opacity: 0;
  transition-delay: 0.5s;
  transform: translate(-50px, 0);
}

.animateList li.fadeIn {
  opacity: 1;
  transform: translate(0, 0);
}

.animateList .fadeIn .text {
  opacity: 1;
  transform: translate(0, 0);
}

.animateList .fadeIn .image {
  opacity: 1;
  transform: translate(0, 0);
}

body .webShop a {
  --mask-color: #e6e6e6;
  text-align: left;
  display: inline-block;
  margin-top: 25px;
  border: none;
  background-color: #f1f1f1;
}

body .webShop a:hover {
  background-color: #e6e6e6 !important;
}

body .webShop a span {
  display: inline-block;
  max-width: 400px;
  /* color: var(--primary-color);
  padding: 17px 23px;
  line-height: 1;
  font-family: var(--garamond);
  letter-spacing: 0.18em;
  font-size: 20px; */
}


body footer .webShop a span {

  display: inline-block;
  max-width: 250px;
}

body .webShop a:hover span {
  color: var(--color-white);
}

body .headerFooterNavButtons {
  display: flex;
  flex-direction: row;
  /* flex-direction: row;
  align-items: stretch;
  --btn-size: 50vw; */
}

body .headerFooterNavButtons a {
  flex: 1;
  display: block;
}

body .headerFooterNavButtons .call,
body .headerFooterNavButtons .mail {
  --btn-size: 50vw;
  padding: 3em 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

body .headerFooterNavButtons .call img,
body .headerFooterNavButtons .mail img {
  margin-bottom: 1em;
}

body .headerFooterNavButtons .call p,
body .headerFooterNavButtons .mail p {
  font-weight: 500;
  padding: 0.5em 0 0.25em;
}

body .headerFooterNavButtons .call p,
body .headerFooterNavButtons .mail p {
  font-size: 21px;
  font-family: var(--zen);
}

@media screen and (min-width: 320px) {

  body .headerFooterNavButtons .call p,
  body .headerFooterNavButtons .mail p {
    font-size: calc(21px + 3 * ((100vw - 320px) / 980));
  }
}

@media screen and (min-width: 1300px) {

  body .headerFooterNavButtons .call p,
  body .headerFooterNavButtons .mail p {
    font-size: 24px;
  }
}

body .headerFooterNavButtons .call h4,
body .headerFooterNavButtons .mail h4 {
  font-family: var(--zen);
}

body .headerFooterNavButtons .call h4,
body .headerFooterNavButtons .mail h4 {
  font-size: 40px;
}

@media screen and (min-width: 320px) {

  body .headerFooterNavButtons .call h4,
  body .headerFooterNavButtons .mail h4 {
    font-size: calc(40px + 6 * ((100vw - 320px) / 980));
  }
}

@media screen and (min-width: 1300px) {

  body .headerFooterNavButtons .call h4,
  body .headerFooterNavButtons .mail h4 {
    font-size: 46px;
  }
}

body .headerFooterNavButtons a:hover .call,
body .headerFooterNavButtons a:hover .mail {
  padding: 3em 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

body .headerFooterNavButtons .call {
  --mask-color: var(--gray-hover-color);
  background-color: var(--color-gray-footer);
}

body .headerFooterNavButtons .call p {
  color: var(--primary-color);
  line-height: 1;
  letter-spacing: 0.05em;
}

body .headerFooterNavButtons .call p:last-child {
  padding: 0;
  font-size: 15px;
  font-family: var(--shippori-mincho);
  letter-spacing: 0.1em;
  color: var(--color-text);
}

body .headerFooterNavButtons .call h4 {
  color: var(--primary-color);
  letter-spacing: 0.05em;
}

body .headerFooterNavButtons .mail {
  --mask-color: var(--blue-hover-color);
  background-color: var(--primary-color);
}

body .headerFooterNavButtons .mail p,
body .headerFooterNavButtons .mail h4 {
  color: var(--color-white);
}

@media only screen and (max-width: 768px) {
  body .headerFooterNavButtons {
    flex-direction: column;
  }

  body .headerFooterNavButtons .call,
  body .headerFooterNavButtons .mail {
    padding: 0;
    height: 200px;
  }
}

body .headerFooterNavButtons .mail p {
  font-size: 27px;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 2000px) {
  body .headerFooterNavButtons .mail p {
    font-size: 27px;
  }

  body .headerFooterNavButtons .call h4 {
    font-size: 41px;
    line-height: 1;
  }

  body .headerFooterNavButtons .call p {
    font-size: 21px;
  }

  body .headerFooterNavButtons .call p:last-child {
    font-size: 15px;
    margin-top: 10px
  }
}

@media screen and (max-width: 768px) {
  body .headerFooterNavButtons .mail p {
    font-size: 18px;
  }

  body .headerFooterNavButtons .call p {
    font-size: 14px;
  }

  body .headerFooterNavButtons .call h4 {
    font-size: 27px;
    letter-spacing: 0.05em;
  }

  body .headerFooterNavButtons .call p {
    font-size: 18px;
  }

  body .headerFooterNavButtons .call p:last-child {
    font-size: 12px;
  }
}

body main {
  /*会社概要ページ・まるくにの品質ページ*/
  /* --------------------------- */
}

body main .mainHeader {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 457px;
  /* background-image: url("https://picsum.photos/id/69/1280/853"); */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  /* padding-top: 174px; */
}

body main .mainHeader.aaa {}

body main .mainHeader h1 {
  text-align: center;
  font-family: var(--zen);
  color: var(--color-white);
  font-weight: 500;
}

@media screen and (min-width: 320px) {
  body main .mainHeader h1 {
    font-size: calc(32px + 16 * ((100vw - 320px) / 980));
  }
}

@media screen and (min-width: 1300px) {
  body main .mainHeader h1 {
    font-size: 48px;
  }
}

body main .mainHeader h1 {
  font-size: 24px;
  letter-spacing: 0.2em;
  /* border: 1px solid #fff;
  width: 375px;
  height: 72px; */
  display: flex;
  justify-content: center;
  align-items: center;

}

body main section {
  margin-bottom: calc(var(--section-space));
  padding: 2em var(--padding) 4em;
}

body main section .d-title {
  padding: 2em 0;
}

body main section .d-title hgroup {
  text-align: center;
  display: block;
}

body main section .d-title hgroup span {
  color: var(--primary-color);
  font-weight: 500;
  font-family: var(--yuGothic);
}

body main section .d-title hgroup>span {
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 320px) {
  body main section .d-title hgroup span {
    font-size: calc(18px + 6 * ((100vw - 320px) / 980));
  }
}

@media screen and (min-width: 1300px) {
  body main section .d-title hgroup span {
    font-size: 19px;
  }
}



body main section .d-title hgroup span {
  font-size: 21px;
  letter-spacing: 0.1em;
}

body main section .d-title hgroup h2 {
  font-weight: 400;
  font-family: var(--roboto);
  color: var(--gray-title);
}

body main section .d-title hgroup h2 {
  font-size: 60px;
}

@media screen and (min-width: 320px) {
  body main section .d-title hgroup h2 {
    font-size: calc(60px + 12 * ((100vw - 320px) / 980));
  }
}

@media screen and (min-width: 1300px) {
  body main section .d-title hgroup h2 {
    font-size: 72px;
  }
}

body main section .d-title hgroup h2 span {
  font-weight: 400;
  font-family: var(--roboto);
  color: var(--gray-title);
}

body main section .d-title hgroup h2 span {
  font-size: 60px;
}

@media screen and (min-width: 320px) {
  body main section .d-title hgroup h2 span {
    font-size: calc(60px + 12 * ((100vw - 320px) / 980));
  }
}

@media screen and (min-width: 1300px) {
  body main section .d-title hgroup h2 span {
    font-size: 72px;
  }
}

@media only screen and (max-width: 380px) {
  body main section .d-title hgroup h2 {
    font-size: 55px;
  }
}

@media only screen and (max-width: 380px) and (min-width: 320px) {
  body main section .d-title hgroup h2 {
    font-size: calc(55px + 17 * ((100vw - 320px) / 980));
  }
}

@media only screen and (max-width: 380px) and (min-width: 1300px) {
  body main section .d-title hgroup h2 {
    font-size: 72px;
  }
}

body main section article {
  max-width: 1400px;
  margin: 0 auto;
}

body main .showroom {
  padding: 0;
}

body main .showroom article .content {
  max-width: 1227px;
  margin: 0 auto;
  padding-bottom: 80px;
}

body main .showroom article .content h3 {
  margin: 1em 0;
}

body main .showroom article .content h3 {
  font-size: 24px;
}

@media screen and (min-width: 320px) {
  body main .showroom article .content h3 {
    font-size: calc(24px + 12 * ((100vw - 320px) / 980));
  }
}

@media screen and (min-width: 1300px) {
  body main .showroom article .content h3 {
    font-size: 36px;
  }
}

body main .showroom article .content .imageList {
  display: flex;
  flex-flow: row wrap;
  -moz-column-gap: 4%;
  column-gap: 4%;
  max-width: 667px;
  width: 100%;
  padding-left: 50px;
  margin-top: -70px;
  position: relative;
  z-index: 2;
}

body main .showroom article .content .imageList .imageItem {
  flex-basis: 48%;
}

body main .showroom article .content .imageList .imageItem img {
  width: 100%;
}

body main .showroom article .content .animateList li.imageItem {
  transform: translate(-50px, 0);
}

body main .showroom article .content .animateList li.imageItem:nth-of-type(1) {
  transition-delay: 0s;
}

body main .showroom article .content .animateList li.imageItem:nth-of-type(2) {
  transition-delay: 0.2s;
}

body main .showroom article .content .animateList li.imageItem.fadeIn {
  transform: translate(0, 0);
}

body main .showroom article .content p {
  font-weight: 500;
  line-height: 2;
}

body main .showroom article .content p {
  font-size: 15px;
}

/* @media screen and (min-width: 320px) {
  body main .showroom article .content p {
    font-size: calc(15px + 2 * ((100vw - 320px) / 980));
  }
} */

@media screen and (min-width: 1300px) {
  body main .showroom article .content p {
    font-size: 17px;
  }
}

@media only screen and (max-width: 640px) {
  body main .showroom article .content h3 {
    margin-bottom: 0;
  }

  body main .showroom article .content .imageList .imageItem {
    flex-basis: 100%;
    padding-bottom: var(--padding);
  }
}

body main .headerContext {
  text-align: center;
}

body main .headerContext article {
  max-width: 900px;
  margin: 0 auto;
  padding-top: 6em;
}

body main .headerContext article h2 {
  font-family: var(--shippori-mincho);
  font-weight: 500;
}

body main .headerContext article h2 {
  font-size: 39px;
}

@media screen and (min-width: 320px) {
  body main .headerContext article h2 {
    font-size: calc(39px + 6 * ((100vw - 320px) / 980));
  }
}

body main .headerContext article h2 {
  font-size: 25px;
  letter-spacing: 0.1em;
  line-height: 2.424;
  margin-top: 130px;
  margin-bottom: 98px;
}

body#reien main .headerContext article {
  margin-bottom: 140px;
}

body#reien main .headerContext article h5 {
  margin-top: 0;
}

/* @media screen and (min-width: 600px) {
  body#reien main .headerContext article h2 {
    font-size: 36px;
  }
} */

@media only screen and (max-width: 640px) and (min-width: 320px) {
  body main .headerContext article h2 {
    font-size: calc(26px + 19 * ((100vw - 320px) / 980));
  }
}

@media only screen and (max-width: 640px) {
  body main .headerContext article h2 {
    font-size: 23px;
    word-break: break-all;
    text-align: left;
  }
}


body main .headerContext article h5 {
  line-height: 2;
  margin-top: 2em;
  font-weight: 500;
}


@media screen and (min-width: 320px) {
  body main .headerContext article h5 {
    font-size: calc(16px + 2 * ((100vw - 320px) / 980));
  }
}

@media screen and (min-width: 1300px) {
  body main .headerContext article h5 {
    font-size: 18px;
  }
}

@media screen and (max-width: 520px) {
  body main .headerContext article h5 {
    text-align: left;
  }
}

body main .headerContext article h5 {
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 2.722;
}

body.navOpen {
  overflow: hidden;
}

body#news main .mainHeader,
body#voice main .mainHeader,
body.singlePost main .mainHeader,
body#contact main .mainHeader {
  background-position: 90% 100%;
  background-size: min(258px, 100%);
  background-color: var(--primary-color);
  height: 250px;
}

body#news main .mainHeader h1,
body#voice main .mainHeader h1,
body.singlePost main .mainHeader h1,
body#contact main .mainHeader h1 {
  /* color: var(--primary-color); */
  color: #fff;
}


#headerNav .headerFooterNavButtons {
  display: block;
}

#headerNav nav .links .navContainer {
  justify-content: unset;
}

#headerNav .headerFooterNavButtons .call {
  --mask-color: transparent;
  background-color: transparent;
  text-align: left;
}

#headerNav .headerFooterNavButtons .call {
  --btn-size: unset;
  padding: 0;
  height: 100%;
  display: block;
}

#headerNav .headerFooterNavButtons .call p:last-child {
  color: #062656;
  font-size: 1vw;
}

#headerNav .headerFooterNavButtons .call img {
  display: none;
}

#headerNav .headerFooterNavButtons .mail img {
  display: block !important;
  margin-bottom: 0;
  margin-right: 10px;
}

#headerNav .headerFooterNavButtons .mail {
  flex-direction: unset;
  padding: 15px 0;
  margin-top: 3vh;
}

#headerNav .headerFooterNavButtons .mail p {
  padding: 0;
  font-size: 1.4vw;
}

#headerNav .headerFooterNavButtons .call h4 {
  font-size: 2.7vw;
}

#headerNav .headerFooterNavButtons .storearea {
  margin-top: 40px;
}

#headerNav .headerFooterNavButtons .storearea:last-child {
  margin-top: 6vh;
}

#headerNav .headerFooterNavButtons .storearea .access {
  font-size: 1.5vw;
  font-family: var(--zen);
  font-weight: 500;
}

#headerNav .headerFooterNavButtons .storearea .address {
  font-size: 16px;
  letter-spacing: 0.1em;
  margin-top: 1vh;
  font-family: var(--shippori-mincho);
  font-weight: 500;
}

#headerNav nav .links .navContainer ul.l1 li {}

#headerNav nav .links .navContainer ul.l1 li:first-child {
  order: 1;
}

#headerNav nav .links .navContainer ul.l1 li:first-child a {
  margin-top: 0;
}

#headerNav nav .links .navContainer ul.l1 li:nth-child(2) {
  order: 2;
}

#headerNav nav .links .navContainer ul.l1 li:nth-child(3) {
  order: 3;
}

#headerNav nav .links .navContainer ul.l1 li:nth-child(4) {
  order: 4;
}

#headerNav nav .links .navContainer ul.l1 li:nth-child(5) {
  order: 5;
}

#headerNav nav .links .navContainer ul.l1 li:nth-child(6) {
  order: 6;
}

@media screen and (max-width:3000px) {
  body .headerFooterNavButtons .call p {
    font-size: 24px;
  }

  #headerNav .headerFooterNavButtons .call p:last-child {
    font-size: 18px;
  }

  #headerNav .headerFooterNavButtons .call h4 {
    font-size: 32px;
  }

  #headerNav .headerFooterNavButtons .mail p {
    font-size: 16px;
  }

  #headerNav .headerFooterNavButtons .storearea .access {
    font-size: 21px;
  }

  #headerNav .headerFooterNavButtons .storearea .address {
    font-size: 18px;
  }
}

@media screen and (max-width:1400px) {
  body .headerFooterNavButtons .call p {
    font-size: 21px;
  }

  #headerNav .headerFooterNavButtons .call p:last-child {
    font-size: 17px;
  }

  #headerNav .headerFooterNavButtons .call h4 {
    font-size: 26px;
  }
}

@media screen and (max-width:768px) {
  #headerNav .headerFooterNavButtons .mail {
    height: auto;
    max-width: 250px;
  }

  #headerNav nav .links .navContainer {
    flex-direction: column;
  }

  #headerNav nav .links .navContainer ul.l1 {
    padding-left: 2em;
  }

  #headerNav .headerFooterNavButtons {
    padding-left: 2em;
  }

  #headerNav nav .links .navContainer .leftmenu {
    width: 100%;
  }

  #headerNav nav .links .navContainer ul.l1 li a {
    width: 90%;
  }

  #headerNav nav .links .navContainer .webShop {
    padding-left: 2em;
  }
}

@media screen and (max-width:500px) {
  #headerNav nav .links .navContainer ul.l1 {
    padding-left: 1em;
  }

  #headerNav .headerFooterNavButtons {
    padding-left: 0;
    margin: 0 20px;
    margin-top: 30px;
  }

  #headerNav nav .links .navContainer .webShop {
    padding-left: 1em;
  }

  #headerNav .headerFooterNavButtons .storearea {
    margin-top: 5vh;
  }

  #headerNav .headerFooterNavButtons .storearea:last-child {
    margin-top: 5vh;
    margin-bottom: 5vh;
  }

  body .headerFooterNavButtons .call p {
    font-size: 19px;
  }

  #headerNav .headerFooterNavButtons .call p:last-child {
    font-size: 16px;
  }

  #headerNav .headerFooterNavButtons .call h4 {
    font-size: 23px;
  }

  #headerNav .headerFooterNavButtons .storearea .access {
    font-size: 18px;
  }

  #headerNav .headerFooterNavButtons .storearea .address {
    font-size: 16px;
    white-space: nowrap;
  }
}

.headerBody #headerNav .menuButton.opened {
  background-color: #001f56;
}

.line-animetion {
  /*線の基点とするためrelativeを指定*/
  position: relative;
  display: block;
}

.line-animetion,
.line-animetion:hover {
  color: #fff;
}

.line-animetion::before {
  content: '';
  /*絶対配置で線の位置を決める*/
  position: absolute;
  display: block;
  width: 7px;
  height: 6px;
  color: #000;
  background: #fff;
  left: 50%;
  top: 50%;
  clip-path: polygon(25% 0%, 74% 0, 100% 51%, 75% 100%, 25% 100%, 0 50%);
  transform: translate(-50%, -50%);
}

.line-animetion::after {
  content: '';
  /*絶対配置で線の位置を決める*/
  position: absolute;
  bottom: 50%;
  left: 50%;
  /*線の形状*/
  width: 137px;
  height: 1px;
  background: #fff;
  /*アニメーションの指定*/
  transition: all .8s;
  transform: translateX(-50%) scale(0, 1);
  /*X方向0、Y方向1*/
  transform-origin: center top;
  /*上部中央基点*/
}

/*現在地とhoverの設定*/
.line-animetion.active::after {
  transform: translateX(-50%) scale(1, 1);
}


.line-animetion02 {
  /*線の基点とするためrelativeを指定*/
  position: relative;
  display: block;
}

.line-animetion02,
.line-animetion02:hover {
  color: #000;
}

.line-animetion02::before {
  content: '';
  /*絶対配置で線の位置を決める*/
  position: absolute;
  display: block;
  width: 7px;
  height: 6px;
  color: #000;
  background: #000;
  left: 50%;
  top: 50%;
  clip-path: polygon(25% 0%, 74% 0, 100% 51%, 75% 100%, 25% 100%, 0 50%);
  transform: translate(-50%, -50%);
}

.line-animetion02::after {
  content: '';
  /*絶対配置で線の位置を決める*/
  position: absolute;
  bottom: 50%;
  left: 50%;
  /*線の形状*/
  width: 137px;
  height: 1px;
  background: #000;
  /*アニメーションの指定*/
  transition: all .8s;
  transform: translateX(-50%) scale(0, 1);
  /*X方向0、Y方向1*/
  transform-origin: center top;
  /*上部中央基点*/
}

/*現在地とhoverの設定*/
.line-animetion02.active::after {
  transform: translateX(-50%) scale(1, 1);
}

.store {
  position: relative;
  display: block;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s;
  user-select: none;
  border: 1px solid #282828;
}

.store>span {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
}

.store.active {
  color: #fff;
  /* letter-spacing: 2px; */
  box-shadow: none;
}

.store>span::after,
.store>span::before,
.store::after,
.store::before {
  content: "";
  position: absolute;
  transition: all 0.3s;
  background-color: #303030;
}

.store::before {
  height: 1px;
  width: 0;
  top: 0;
  left: 0;
  transition-delay: 1s;
  z-index: 1;
}

.store::after {
  width: 1px;
  height: 0;
  top: 0;
  right: 0;
  transition-delay: 1s;
  z-index: 1;
}

.store>span::before {
  height: 1px;
  width: 0;
  bottom: 0;
  right: 0;
  transition-delay: 1s;
  z-index: 1;
}

.store>span::after {
  width: 1px;
  height: 0;
  bottom: 0;
  left: 0;
  transition-delay: 1s;
  z-index: 1;
}

.store.active>span::before,
.store.active::before {
  width: 100%;
  transition: all 1s;
}

.store.active>span::after,
.store.active::after {
  height: 100%;
  transition: all 1s;
}

.store.active::after {
  transition-delay: 1s;
}

.store.active>span::before {
  transition-delay: 1.8s;
}

.store.active>span::after {
  transition-delay: 2.8s;
}

.box-border {
  position: relative;
  display: block;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: bold;
  transition: all 0.3s;
  user-select: none;
  letter-spacing: 2px;
}

.box-border>span {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
}

.box-border.active {
  color: #fff;
  letter-spacing: 2px;
  box-shadow: none;
}

.box-border>span::after,
.box-border>span::before,
.box-border::after,
.box-border::before {
  content: "";
  position: absolute;
  transition: all 0.3s;
  background-color: #000;
}

.box-border::before {
  height: 1px;
  width: 0;
  top: 0;
  left: 0;
  transition-delay: 1.3s;
  z-index: 1;
}

.box-border::after {
  width: 1px;
  height: 0;
  top: 0;
  right: 0;
  transition-delay: 1.2s;
  z-index: 1;
}

.box-border>span::before {
  height: 1px;
  width: 0;
  bottom: 0;
  right: 0;
  transition-delay: 1.1s;
  z-index: 1;
}

.box-border>span::after {
  width: 1px;
  height: 0;
  bottom: 0;
  left: 0;
  transition-delay: 1s;
  z-index: 1;
}

.box-border.active>span::before,
.box-border.active::before {
  width: 100%;
  transition: all 1s;
}

.box-border.active>span::after,
.box-border.active::after {
  height: 100%;
  transition: all 1s;
}

.box-border.active::after {
  transition-delay: 1s;
}

.box-border.active>span::before {
  transition-delay: 2s;
}

.box-border.active>span::after {
  transition-delay: 3s;
}



@media screen and (max-width:500px) {
  body main .mainHeader {
    height: 280px;
  }

  body main .mainHeader h1 {
    font-size: 21px;
    letter-spacing: 0.1em;
    /* border: 1px solid #fff; */
    width: 260px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  body main .headerContext article h2 {
    font-size: 17px;
  }

  #headerNav nav .logo {
    display: none;
  }

  body#home #headerNav nav .logo {
    display: block;
  }

}

/* .showroom.active .store::before {
  width: 85%;

} */

.letersmall {
  letter-spacing: -.3em !important;
  color: #fff !important;
}

.letersmall02 {
  letter-spacing: -1em !important;
}

.letersmall03 {
  color: #fff !important;
}

.fadein10 {
  opacity: 0;
  /* animation-name: test;
  animation-duration: 1s;
  -webkit-transition: all 1s;
  animation-fill-mode: forwards;
  transition: all 1s;
  animation-delay: 1s; */
  display: none;
}
.fadein11 {
  opacity: 0;
  animation-name: test;
  animation-duration: 1s;
  -webkit-transition: all 1s;
  animation-fill-mode: forwards;
  transition: all 1s;
  animation-delay: 1s;
}

/* 最初の画像のキーフレームアニメーション */
@keyframes test {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#headerNav nav .links .navContainer .webShop {
  padding: 1.5em 0;
  padding-left: 0;
  order: 6;
}

@media screen and (max-width:500px) {
  #headerNav nav .links .navContainer .webShop {
    width: 90%;
    margin-right: auto;
  }
}


.header__nav .header_top a img.icon-memo {
  max-width: 13px;
}

.header__nav .header_top a img.icon-contact {
  max-width: 20px;
}

.header__nav .header_top a img.icon-tel {
  max-width: 21px;
  margin-right: 15px;
}

.header__nav {
  width: 100%;
  position: fixed;
  z-index: 100;
  background: transparent;
  display: flex;
  justify-content: space-between;
  background: #fff;
  /* background-color: var(--primary-color); */
  /* background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.72) 35.14%, rgba(255, 255, 255, 0.42)63%, rgba(255, 255, 255, 0) 100%); */
  padding-top: 15px;
  padding-bottom: 15px;
  /* padding-top: 55px;
  padding-bottom: 65px; */
  color: #000;
}

@media screen and (max-width: 1050px) {
  .header__nav .sp-block {
    display: block;
    max-width: 850px;
    margin: 0 auto;
    width: 100%;
    line-height: 1;
  }
}

@media screen and (max-width: 850px) {
  .header__nav .sp-block {
    width: auto;
    margin: 0 20px;
  }
}

.header__nav .sp-block a {
  font-size: 37px;
}

.header__nav .sp-block a span {
  font-size: 32px;
  margin-right: 10px;
}

.header__nav .header_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 40px;
  padding-right: 40px;
  width: 100%;
}

@media screen and (max-width: 1050px) {
  .header__nav .header_top {
    flex-direction: column;
    align-items: unset;
    padding: 0;
    margin: 0 20px;
  }
}

@media screen and (max-width: 850px) {
  .header__nav .header_top {
    margin: 0 20px;
    width: auto;
  }
}

.header__nav .header_top>a {
  display: block;
  max-width: 244px;
  width: 100%;
}

.header__nav .header_top a img {
  max-width: 180px;
  width: 100%;
  /* filter: invert(1); */
}

.header__nav .header_top nav {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: end;
}

.header__nav .header_top .nav-socialLInk {
  display: flex;
  align-items: center;
}

.header__nav .header_top .nav-socialLInk>div.nav-btn {
  margin-right: 10px;
}

.header__nav .header_top .nav-socialLInk>div.nav-btn a {
  display: flex;
  align-items: center;
  font-family: var(--zen);
  font-weight: 500;
  background-color: #fff;
  padding: 12.25px 13.8px;
  max-width: 176px;
  width: 100%;
}

.header__nav .header_top .nav-socialLInk>div.navbtn02 a {
  padding: 12.5px 13.8px;
  padding-right: 20px;
}

.header__nav .header_top .nav-socialLInk>div.nav-btn a img.icon-memo {
  margin-right: 15px;
}

.header__nav .header_top .nav-socialLInk>div.nav-btn a img.icon-contact {
  margin-right: 18px;
}

.header__nav .header_top .nav-socialLInk>div.nav-btn a p {
  color: #062656;
  line-height: 1;
  letter-spacing: 0.075em;
  font-weight: 700;
}

.header__nav .header_top .nav-socialLInk>div.nav-btn-tell a p {
  color: #fff;
  line-height: 1;
  letter-spacing: 0.075em;
  font-family: var(--zen);
  font-weight: 500;
}

.header__nav .header_top .nav-socialLInk>div.nav-btn-tell a p .call-txt {
  font-size: 14px;
  color: #fff;
}

.header__nav .header_top .nav-socialLInk>div.nav-btn-tell a p .holiday {
  font-size: 11px;
  color: #fff;
}

.header__nav .header_top .nav-socialLInk>div.nav-btn-tell a p:last-child {
  font-size: 35px;
}

.header__nav .header_top nav ul {
  height: 100%;
}

.header__nav .header_top nav ul li {
  height: 100%;
}

.header__nav .header_top nav ul li a {
  display: flex;
  align-items: center;
  height: 100%;
  color: #000;
  font-family: var(--zen);
  padding: 0 10px;
}

@media screen and (max-width: 1050px) {
  .header__nav .header_top nav {
    flex-direction: column-reverse;
    margin-top: 100px;
  }

  .header__nav .header_top nav ul li a {
    justify-content: center;
    padding: 25px 0;
  }
}

.header__nav .header_top .nav__items {
  display: flex;
  align-items: center;
  /* margin-top: 20px; */
}

@media screen and (max-width: 1050px) {
  .header__nav .header_top .nav__items {
    align-items: baseline;
    width: 100%;
  }
}

@media screen and (max-width: 1050px) {
  .header__nav .header_top .nav__items li {
    width: 100%;
    border-bottom: 1px solid #fff;
    display: flex;
    justify-content: center;
  }
}

@media screen and (max-width: 850px) {
  .header__nav .header_top .nav__items li {
    margin: 0;
  }
}

.header__nav .header_top .nav__items li a {
  font-size: 15px;
  font-weight: 700;
  padding: 0 28px;
  border-right: 1px solid #000;
  height: 20px;
  letter-spacing: 0.05em;
}

.header__nav .header_top .nav__items li:first-child a {
  border-left: 1px solid #000;
}

@media screen and (max-width: 1050px) {
  .header__nav .header_top a img {
    max-width: 250px;
    margin: 30px 0;
  }

  .header__nav .header_top>a img {
    display: none;
  }

  .header__nav .header_top .nav__items li a {
    border: none;
  }

  .header__nav .header_top .nav__items li a:first-child {
    border: none;
  }
}

@media screen and (max-width: 500px) {
  .header__nav .header_top a img {
    max-width: 210px;
    margin: 15px 0;
  }
}


.js-header.is-hidden {
  transition: 0.5s;
  transform: translateY(-100%);
}

@media screen and (max-width: 1050px) {
  .js-header.is-hidden {
    transform: translate(100%, -100%);
  }
}


@media screen and (max-width: 1050px) {
  .header__nav {
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100dvh;
    transform: translateX(0);
    opacity: 0 !important;
    margin-left: auto;
    justify-content: center;
    display: none;
  }
}

.navtop {
  opacity: 0;
  animation: topnav 3s ease-in-out forwards;
}

@keyframes topnav {
  0% {
    opacity: 0;
  }

  90% {
    opacity: 0;
    transform: translateY(10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.sp-block-logo {
  display: none;
}

@media screen and (max-width: 1050px) {
  .sp-block-logo {
    display: block;
    position: fixed;
    z-index: 100;
    width: 100%;
    top: 0;
    background-color: var(--primary-color);
    z-index: 20;
  }

  .sp-block-logo img {
    max-width: 200px;
    margin: 15px 0;
    margin-left: 20px;
  }
}

@media screen and (max-width: 500px) {
  .sp-block-logo {
    display: block;
    position: fixed;
    z-index: 101;
    width: 100%;
    top: 0;
  }

  .sp-block-logo img {
    max-width: 210px;
    margin: 15px 0;
    margin-left: 20px;
  }
}

@media screen and (max-width: 1050px) {
  .nav-items {
    position: unset;
    top: unset;
    left: unset;
    transform: unset;
    flex-direction: column;
  }
}

@media screen and (max-width: 1050px) {
  .nav-items__item a {
    color: black;
    width: 100%;
    display: block;
    text-align: left;
    padding: 25px 0;
  }
}

.nav-items__item:last-child a {
  /* margin-bottom: 0; */
  
}

.nav-items__item.currentlink a{
  position: relative;
}

.nav-items__item.currentlink a::before{
  position: absolute;
  width: 75%;
  content: '';
  height: 1px;
  background-color: #000;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
}

.nav-items__item.currentlink02 a::before{
  position: absolute;
  width: 70%;
  content: '';
  height: 1px;
  background-color: #000;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
}

.nav-items__item.currentlink03 a::before{
  position: absolute;
  width: 80%;
  content: '';
  height: 1px;
  background-color: #000;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
}


@media screen and (min-width: 1050px) {
  .nav-items__item a {
    /* margin-bottom: 0; */
    ;
  }
}


.hamburger {
  z-index: 9999;
  position: fixed;
  top: 25px;
  right: 25px;
  border: none;
  background: transparent;
}

@media screen and (max-width: 500px) {
  .hamburger {
    top: 28px;
  }
}

@media screen and (min-width: 1050px) {
  .hamburger {
    display: none;
  }
}

.hamburger span {
  width: 35px;
  height: 2px;
  background-color: #fff;
  position: relative;
  transition: ease 0.4s;
  display: block;
  margin: 0 auto;
  border-radius: 5px;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  margin: 8px auto;
}

.hamburger span:nth-child(3) {
  top: 0;
}

/* ハンバーガーメニュークリック後のスタイル */
.header__nav.active {
  transform: translateX(0);
  opacity: 1 !important;
  transition: 0.2s;
  display: block;
}

.hamburger.active span:nth-child(1) {
  top: 10px;
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  top: -10px;
  transform: rotate(-45deg);
}

.header__nav {
  display: none;
  transform: translateY(-100px);
}

.header__nav.headernottop {
  display: block;
  transform: translateY(0);
  position: sticky;
  top: 0;
}

body#home .header__nav.headernottop {
  position: fixed;
}

.header__nav {
  display: none;
}

body#home .headerBody {
  display: block;
}

.fade-in {
  display: block;
  opacity: 1;
  transform: translateY(0);
  transition: opacity .3s ease-in, transform .3s ease-in;
  z-index: -5;
  visibility: visible;
}

.fade-in.active {
  z-index: 15;
}

.fade-out {
  display: none;
  opacity: 0;
  transform: translateY(-50px);
  transition: opacity .3s ease-out, transform .3s ease-out;
  z-index: -1;
  visibility: hidden;
}


@media screen and (max-width: 1050px) {
  .header__nav .header_top a img {
    margin: 0;
  }

  .header__nav .header_top .nav__items li a:first-child {
    padding: 25px 0;
  }
}

@media screen and (max-width: 1050px) {
  .header__nav .header_top nav {
    justify-content: center;
    align-items: center;
  }

  .header__nav .header_top a img {
    margin: 0;
  }

  .header__nav .header_top .nav__items li a:first-child {
    padding: 25px 0;
  }

  .header__nav .header_top .nav-socialLInk {
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-btn-tell {
    width: 100%;
    text-align: center;
    margin-top: 30px;
  }

  .header__nav .header_top .nav-socialLInk>div.nav-btn {
    margin-top: 30px;
  }

  .fade-out {
    z-index: 5;
  }

  .fade-out.active {
    z-index: 5;
    visibility: visible;

  }

  .header__nav.headernottop {
    display: block;
    transform: translateY(0);
    position: fixed;
    transition: .5s;
    z-index: -1;
  }

  .header__nav.headernottop.active {
    display: block;
    transform: translateY(0);
    position: fixed;
    transition: .5s;
    z-index: 15;
  }

  .headernottop .header_top {
    visibility: hidden;
  }

  .headernottop.active .header_top {
    visibility: visible;
  }

  .mainHeader {
    margin-top: 70px;
  }

  body#home .headerBody {
    display: none;
  }
}


#headerNav nav .links.active {
  transform: translateX(0) !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.sp-link-service {
  display: none;
}

@media screen and (max-width:1050px) {

  .sp-link-service {
    position: fixed;
    bottom: 0;
    display: flex;
    width: 100%;
    z-index: 15;
    visibility: hidden;
    opacity: 0;
    transition: .5s;
  }

  .sp-link-service.visible {
    position: fixed;
    bottom: 0;
    display: flex;
    width: 100%;
    z-index: 15;
    visibility: visible;
    opacity: 1;
    transition: .5s;
  }

  .sp-link-service a {
    width: 50%;
    text-align: center;
    height: 50px;
    color: #fff;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .sp-link-service a:first-child {
    background-color: #725e23;
  }

  .sp-link-service a:last-child {
    background-color: #c6a042;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    color: #fff;
  }

  .sp-link-service a:last-child span {
    color: #fff;
    font-size: 12px;
  }

  .js-header .header_top {
    display: none;
  }

  .js-header.active .header_top {
    /* display: none; */
    display: block;
  }

  .js-header.active #headerNav nav .links {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }

  .js-header.active+.sp-block-logo {
    background-color: #fff;
  }

  /* .js-header.active+.sp-block-logo img {
    filter: invert(1);
  } */

  .hamburger.active span {
    background-color: var(--primary-color);
    ;
  }

  .js-header.active #headerNav nav .links .webShop a {
    background: #fff;
  }

  body#home .js-header.active .headerBody {
    display: block;
  }

  body .js-header.active .headerBody {
    display: block;
  }

  #headerNav nav .links .navContainer .webShop {
    padding: 10px 0;
    padding-bottom: 0;
    padding-top: 40px;
  }

  #headerNav .headerFooterNavButtons .mail {
    margin-top: 30px;
  }

  #headerNav .headerFooterNavButtons .storearea {
    margin-top: 20px;
  }

  #headerNav .headerFooterNavButtons .storearea:last-child {
    margin-top: 20px;
    margin-bottom: 100px;
  }

  #headerNav .headerFooterNavButtons .storearea .address {
    margin-top: 5px;
  }

  #headerNav .headerFooterNavButtons .storearea .access {
    font-size: 17px;
  }

  #headerNav .headerFooterNavButtons .storearea .address {
    font-size: 15px;
  }

  body#home .header__nav.headernottop {
    position: fixed;
  }
}

body#home .fade-in {
  z-index: 15;
}

video {
  /* スムーズな再生のための推奨設定 */
  will-change: auto;
  transform: none;
}

.pc-lock {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 5;
  writing-mode: vertical-lr;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
}

.noScroll .pc-lock {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 5;
  writing-mode: vertical-lr;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
}

.pc-lock a {
  color: #fff;
  padding: 20px 15px;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  display: inline-block;
  line-height: 1;
}

.pc-lock a:hover {
  background: var(--blue-hover-color);
}

@media screen and (max-width: 1050px) {
  .pc-lock {
    display: none;
  }


}


.pc-lock a::before {
  --size: calc(var(--btn-size) * 1.2);
  content: "";
  position: absolute;
  top: calc(50% - max(var(--size)) / 2);
  left: calc(50% - max(var(--size)) / 2);
  width: max(var(--size));
  height: max(var(--size));
  -webkit-clip-path: circle(50% at 50% 50%);
  clip-path: circle(50% at 50% 50%);
  background-color: var(--mask-color);
  transform: scale(0);
  transition: transform 0.32s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.pc-lock a:hover::before {
  transform: scale(1);
}



body#home .header__nav.headernottop {
  opacity: 0;
  transition: opacity 0.5s ease;
}
body#home.splash-end .header__nav.headernottop {
  opacity: 1;
}

@media screen and (max-width: 1050px) {
    body#home .sp-block-logo ,
    body#home .header__hamburger {
        opacity: 0;
        transition: opacity 0.5s ease;
    }
    body#home.splash-end .sp-block-logo ,
    body#home.splash-end .header__hamburger {
        opacity: 1;
    }
}

.footerBody .f_bottom .f_l .inner .storearea{
  text-align: left;
  margin-top: 20px;
}

.footerBody .f_bottom .f_l .inner .storearea img{
  max-width: 220px;
}

.storearea_footer{
  display: flex;
  margin-top: 20px;
  gap: 15px;
}
.storearea_footer .storearea{
  text-align: left;
  /* margin-right: 20px; */
  margin-top: 14px;
/*  max-width: 220px; */
  width: 100%;
}
/* .storearea_footer .storearea:first-child{
  margin-right: 40px;
} */

.storearea_footer .storearea p {
  font-size: 13px;
  letter-spacing: 0.05em;
  line-height: 1;
  font-weight: 500;
  text-decoration: none;
  pointer-events: none;
  margin-top: 10px;
}

.storearea_footer .storearea p.address {
  text-decoration: none;
  pointer-events: none;
  border: none;
  margin-top: 5px;
  line-height: 1.5;
}

.storearea_footer .storearea p.address a{
  text-decoration: none;
  pointer-events: none;
  border: none;
}


.footerBody .webShop{
  text-align: left;
}

.web-link {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width:1100px;
  margin: 0 auto;
}



.web-link > p {
  text-align: left;
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
  margin-top: 52px;
}

.web-link a img{
  max-width: 320px;
  width: 100%;
}

.border-area{
  width: 100%;
  max-width: 1100px;
  height: 1px;
  background: #000;
  margin: 0 auto;
}

@media screen and (max-width:1100px) {
  .web-link {
    flex-wrap: wrap;
  }

  .web-link a {
    max-width: 320px;
  }

  .web-link a img {
    max-width: 100%;
  }
}

@media screen and (max-width:768px) {
  .top-hinshitsu-tit img.pc-img {
    max-width: 500px;
  }

  .web-link {
    flex-direction: column;
    align-items: baseline;
    padding: 4%;
    margin: 0;
  }

  .web-link a {
    max-width: 100%;
    width: 400px;
    margin: 0;
  }

  /* .web-link a img {
    margin: 15px 0;
  } */

  .border-area{
    width: calc(100% - 40px);
  }
}

@media screen and (max-width:500px) {
  .top-hinshitsu-tit img.pc-img {
    max-width: 500px;
  }
  .storearea_footer .storearea{
    margin-top: 20px;
  }
  

  .web-link {
    flex-direction: column;
    align-items: baseline;
    padding: 4%;
    margin: 0;
  }

  .web-link a {
    max-width: 100%;
    width: 100%;
    margin: 0;
  }

  /* .web-link a img {
    margin: 15px 0;
  } */
}

@media screen and (max-width:850px){
  .footerBody .f_bottom {
    flex-direction: column ;
  }
  .web-link {
    margin: 0;
    margin-top: 30px;
  }
  /* .web-link a img {
    margin-bottom: 15px;
  } */
}

@media screen and (max-width:550px){
  .web-link {
    padding: 0;
  }
  .web-link a {
    width: 100%;
  }
  .storearea_footer {
    flex-direction: column;
  }
  .footerBody .f_bottom .f_l .inner .storearea img {
    max-width: 100%;
  }
  .footerBody .f_bottom .f_l .inner .storearea img {
    width: 100%;
    margin-right: 0;
  }
  .storearea_footer .storearea {
    margin-right: 0;
  }
  .storearea_footer .storearea:first-child{
    margin-right: 0;
  }
}