html {
  font-size: 62.5%; /* 10px */
}
body, body *, body *::before, body *::after {
  outline: none;
}
/* =root
-------------------------------------------------------------- */
:root {
	--color-1: #666464;
	--color-2: #373737;
	--color-3: #fffffe;
  --color-4: #8f2d12;
  --color-5: #fffffc;
  --color-header:#FFF;
	--easing: cubic-bezier(.2, 1, .2, 1);
	--transition: .8s var(--easing);
}
.black {
  --color-header:#373737;
}
/* =body
-------------------------------------------------------------- */
body {
	background:var(--color-5);
	color:var(--color-1);
	font-family:"游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
	position: relative;
}
.crim {
  font-family: "times-new-roman", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight:400;
}
.crim_b {
  font-family: "times-new-roman", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight:700;
}
#container *, #container *::after, #container *::before {
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
img, video {
	display: block;
	width:100%;
	height:auto;
}
/* =responsive
-------------------------------------------------------------- */
.pc {
	display:none;
}
.sp {
	display:none;
}
/* =structure
-------------------------------------------------------------- */
#container {
  overflow: hidden;
  width: 100%;
  position: relative;
}
.contents {
  width: 100%;
  max-width: 1725px;
  padding: 0 10%;
  margin: 0 auto;
}
.pagewrap {
  padding: 100px 0 0 0;
}
.sidebar {
  width: 300px;
  padding: 60px 0;
}
.flex {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  -webkit-align-items: ﬂex-start;
  -moz-align-items: ﬂex-start;
  -ms-align-items: ﬂex-start;
  align-items: ﬂex-start;
}
.menuback {
  display: none;
  position: fixed;
  z-index: 102;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background: #000;
}
.menuback.active {
  display: block;
  opacity: 0.3;
}
/* =ローディング
-------------------------------------------------------------- */
#loading-screen {
  position: fixed;
  inset: 0;
  background:url(../img/bg_sp.webp) no-repeat center center;
  background-size: cover;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s 0.3s ease;
}
#loading-screen .logo-anime {
  display: flex;
  justify-content: center;
  align-items: center;
}
#loading-screen .logo-anime img {
    width:fit-content;
    height:3.2rem;
    opacity: 0;
  filter: blur(1rem);
	animation:load 2s ease forwards;
}
@keyframes load {
  to { opacity: 1; filter: blur(0); }
}
#loading-screen.hide {
  opacity: 0;
  pointer-events: none;
}
#loading-screen.hide .logo-anime img {
  opacity: 1;
  animation: loadOut 1s ease forwards;
}
@keyframes loadOut {
  to { opacity: 0; filter:blur(2rem);}
}

.run {
  opacity:0;
  filter: blur(1.75rem);
  transition:opacity 1s ease, filter 1s ease;
}
.run.active {
  opacity:1;
  filter: blur(0);
}

/* =ヘッダー
-------------------------------------------------------------- */
header {
  position: fixed;
  top:0;
  left:0;
  width: 100%;
  display: grid;
  grid-template-columns: 8rem 6rem 1fr;
  align-items: center;
  gap:4rem;
  padding:3rem 5rem;
  z-index:100;
  transition: background .5s ease;
}
header .logo {
  opacity:0;
  transition: opacity 1s ease;
  width:clamp(8rem, 6vw, 11rem);
  position: relative;
  z-index:3;
}
header .logo svg {
  fill:var(--color-header);
  transition: fill .5s ease;
}
header.active .logo svg {
  fill:var(--color-2);
}
header .hamburger {
  width:5rem;
  height:3rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  justify-self:right;
  position: relative;
  z-index:3;
}
header .hamburger .line {
  width:5rem;
  height: 1px;
  background: var(--color-header);
  transition: opacity .2s ease, transform .5s ease, margin .5s ease, background .5s ease;
}
header .hamburger.active .line {
  background: var(--color-2);
}
header .hamburger.active .line2 {
  opacity: 0;
}
header .hamburger.active .line1 {
  transform: rotate(30deg);
  margin:1.2rem 0 0 0;
}
header .hamburger.active .line3 {
  transform: rotate(-30deg);
  margin:-2.4rem 0 0 0;
}
header .globalnav {
  position: absolute;
  top:0;
  left:0;
  z-index:1;
  opacity:0;
  background: #FFF;
  visibility: hidden;
  pointer-events: none;
  width:100%;
  height:100dvh;
  padding:15rem 7%;
  transition: opacity .5s ease, visibility .5s ease;
}
header .globalnav.show {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
header .globalnav a,
header .globalnav .navp {
  color:var(--color-2);
  font-size:2.8rem;
  line-height: 1.8em;
  letter-spacing: 0.02em;
  transition:opacity .4s ease;
}
header .globalnav a:hover,
header .globalnav .navp:hover {
  opacity:0.5;
} 
header.loaded .logo,
header.loaded .globalnav {
  opacity: 1;
}
header.hover {
  background: #FFF;
}
header.hover .logo svg {
  fill:var(--color-2);
}
header.hover .globalnav a,
header.hover .globalnav .navp {
  color:var(--color-2);
}
header .has_child {
  position: relative;
}
/* childmenu */
header .childmenu {
  width:100%;
  height: 0;
  background: #FFF;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap:1rem;
  visibility: hidden;
  pointer-events: none;
  user-select: none;
  opacity:0;
  transition: height .25s ease, opacity .5s ease, visibility .5s ease;
}
header .childmenu.is-open {
  visibility: visible;
  pointer-events: all;
  opacity: 1;
}
header .has_child.list_about .childmenu,
header .has_child.list_category .childmenu {
  overflow-x:auto;
}
header .childmenu .inner {
  width:100%;
  height:100%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap:1rem;
}
header .has_child.list_about .childmenu .inner {
  width:118rem;
}
header .has_child.list_category .childmenu .inner {
  width:118rem;
}
header .childmenu a {
  width:16rem;
} 
header .childmenu figure {
  display: flex;
  justify-content: center;
  align-items: center;
  width:100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}
header .childmenu figure img {
  width:100%;
  height:auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
header .childmenu .store_name {
  width:100%;
  text-align: center;
  font-size:1.6rem;
  line-height: 1em;
  padding: 1.5rem 0;
}
header .childmenu .store_name span {
  display: block;
  font-size: 1.2rem;
  padding: 0.5rem 0 0 0;
}
header .childmenu .close {
  position: absolute;
  top:1.2rem;
  right:0;
  width:3.6rem;
  height:3.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border:none;
  background:transparent;
}
header .childmenu .close svg {
  fill:#000;
}

.language-switcher {
	position: relative;
	display: block;
	z-index: 2;
  opacity:0;
  transition: opacity 1s ease;
}
header.loaded .language-switcher {
  opacity: 1;
}
.language-switcher::after {
	content:'';
	position: absolute;
	top:50%;
	right:1rem;
	margin:-3px 0 0 0;
	width: 0;
	height: 0;
	border-style: solid;
	border-right: 4px solid transparent;
	border-left: 4px solid transparent;
	border-top: 6px solid var(--color-header);
	border-bottom: 0;
	transition: border .4s ease;
  transition:border .4s ease;
}
header.active .language-switcher::after {
  border-right: 4px solid transparent;
	border-left: 4px solid transparent;
  border-top: 6px solid var(--color-2);
}
.lang-toggle {
	width: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	cursor: pointer;
	border:none;
	background: transparent;
}
.lang-toggle .word {
	display: block;
	font-size:2.4rem;
	color: var(--color-header);
	text-transform:uppercase;
	margin:0 2rem 0 0;
	transition: color .4s ease;
}
header.active .lang-toggle .word {
  color:var(--color-2);
}
.lang-dropdown {
	display: none;
	position: absolute;
	top: 150%;
	left: 0;
	list-style: none;
	margin: 0;
	padding: 0;
	border: 1px solid var(--color-header);
	z-index: 1000;
  transition: border .4s ease;
}
header.active .lang-dropdown {
  border: 1px solid var(--color-2);
}
.lang-dropdown li a {
	text-decoration: none;
	color: var(--color-header);
	display: block;
	font-size:2.4rem;
	text-align: center;
	padding: 1rem 2rem;
	background: transparent;
	transition:opacity .4s ease, color .4s ease;
}
header.active .lang-dropdown li a {
  color:var(--color-2);
}
.lang-dropdown li a:hover {
	opacity: 0.5;
}
.language-switcher.open .lang-dropdown {
	display: block;
}


/* レイヤーの見た目 */
/* BRANDのchildmenuを画面固定レイヤーにする */
header .has_child.list_brand .childmenu{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background: #fff;
  z-index: 9999;

  /* ここが重要：デフォの「非表示状態」を潰す */
  visibility: visible;
  opacity: 1;
  pointer-events: none;
  user-select: none;

  /* アコーディオンのheightアニメは使わない */
  height: 100dvh !important;
  transition: transform .35s ease;
  transform: translateX(100%);
}

/* 開いた状態 */
header .has_child.list_brand .childmenu.layer-open{
  transform: translateX(0);
  pointer-events: all;
}

/* 中身は縦に流す */
header .has_child.list_brand .childmenu .inner{
  width: 100%;
  height: 100%;
  overflow-y: auto;
  display: block;
  padding: 12rem 3% 4rem; /* globalnavのpaddingと合わせると自然 */
}

/* レイヤー中は親メニューを触れなくする（任意） */
header .globalnav.layer-on > .glink{
  pointer-events: none;
}
header .globalnav.layer-on > .glink.has_child.list_brand{
  pointer-events: all;
}

header .has_child.list_brand .menu_nav li a {
  display: block;
  width: 100%;
  padding:1.5rem 0;
  font-size: 2rem;
  border-bottom: 1px solid var(--color-1);
}

/* BRANDの close を「戻る」っぽく見せたいなら（任意） */
header .has_child.list_brand .childmenu .close {
  position: absolute;
  top: 8rem;
  left: 2%;
}

/* =head
-------------------------------------------------------------- */
.title {
  font-size:3.2rem;
  color:#FFF;
  letter-spacing: 0.05em;
  text-align: center;
}

/* =index
-------------------------------------------------------------- */
.top_wrap {
  position: relative;
}
.top_wrap_inner {
  position: relative;
}
.mv {
  display: flex;
  justify-content: center;
  align-items: center;
  width:100%;
  height:100svh;
  position: relative;
  z-index: 1;
}
.mv video {
  width:100%;
  height:100%;
  object-fit: cover;
}

.top_journal {
  position: absolute;
  top:0;
  left:0;
  height:100svh;
  width:100%;
  z-index: 2;
}
.top_journal .inner {
  position: absolute;
  bottom:0;
  left:0;
  height:100svh;
  width:100%;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(4rem);
  overflow: hidden;
}
.top_journal .title {
  padding:3rem 0 0;
}
.post_top_archive {
  width:100%;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  column-gap: 3rem;
  row-gap: 5rem;
  padding:3rem 10%;
}
.post_top_archive .post_card {
  color:#FFF;
}
.post_top_archive .post_card figure {
  width:100%;
  height:auto;
  overflow: hidden;
  aspect-ratio: 373 / 224;
}
.post_top_archive .post_card figure img {
  width:100%;
  height:auto;
  aspect-ratio: 373 / 224;
  object-fit: cover;
}
.post_top_archive .post_card .post_card_text {
  padding:2.5rem 0 0 0;
}
.post_top_archive .post_card .post_card_text time {
  color:#FFF;
  font-size:1.2rem;
  letter-spacing: 0.05em;
}
.post_top_archive .post_card .post_card_date {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.post_top_archive .post_card .post_card_date p {
  padding:0 1.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.post_top_archive .post_card .post_card_date p svg {
  width:1.5rem;
  height:auto;
  fill:#FFF;
}
.post_top_archive .post_card .post_card_date .post_card_cat {
  color:#FFF;
  font-size:1.2rem;
  letter-spacing: 0.05em;
}
.post_top_archive .post_card .post_card_text .post_card_title {
  color:#FFF;
  font-size:1.4rem;
  letter-spacing: 0.05em;
  line-height: 1.5em;
  padding:1rem 0 0 0;
}
.js-top-spacer {
  height:0;
}

/* =page
-------------------------------------------------------------- */
.page_wrap {
  width:100%;
}
/* about */
.page_wrap.page_about {
  min-height: 300dvh;
  background: url(../img/bg3_sp.webp) no-repeat top center;
  background-size: cover;
  background-attachment: fixed;
}
.about_sec2, .about_sec3, .about_sec4 {
  padding:10rem 0 0 0;
}
.wrap_inner {
  width:min(86%,130rem);
  margin:0 auto;
}
.wrap_inner h2 {
  color:#FFF;
  letter-spacing: 0.25em;
}
.wrap_inner h2 {
  color:#FFF;
  letter-spacing: 0.25em;
}
.wrap_inner .text {
  color:#FFF;
  font-size:1.6rem;
  line-height: 2em;
  padding:7rem 0 0 0;
  text-wrap: balance;
  hyphens: auto;
  overflow-wrap: anywhere;
  text-align: justify;
}
.wrap_inner .cite {
  text-align: right;
  padding:3rem 0 0 0;
}
.wrap_inner .cite cite {
  color:#FFF;
  font-size:1.6rem;
  line-height: 2em;
  font-style: normal;
}

.about_sec1 {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  align-content: center;
  width: 100%;
  height:100dvh;
  position: relative;
}
.about_sec1 .about_sec1_txt {
  width: min(70%, 90rem);
  position: absolute;
  bottom:4rem;
  right:3%;
}
.about_sec2 {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  align-content: start;
  width: 100%;
}
.about_sec2_inner {
  width:90%;
  padding:75% 0 0 0;
  margin:0 auto;
}
.about_sec2_inner h3 {
  color:var(--color-3);
  font-size:2rem;
  padding:0 0 15rem;
}
.about_sec2_inner .text {
  font-size:1.2rem;
  line-height: 3em;
  color:var(--color-3);
}
.about_sec2_inner .text2 {
  padding:0 0 15rem;
}
.about_sec3 {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  padding:50% 0 0 0;
}
.about_sec3_inner {
  display: grid;
  grid-template-columns: 4fr 6fr;
  gap:4rem;
  width:90%;
  margin: 0 auto;
}
.about_sec3 .text1 {
  color:var(--color-3);
  font-size:2.4rem;
  padding:0 0 3rem;
}
.about_sec3 .outline {
  width:100%;
  display: grid;
  grid-template-columns: 15fr 85fr;
  color:#FFF;
  font-size:1.5rem;
  line-height: 1.7em;
}
.about_sec3 .outline dt,
.about_sec3 .outline dd {
  padding:2rem 0;
}
.about_sec3 .outline a {
  display: inline-block;
  color:var(--color-3);
  text-decoration: underline;
  padding:0 0 0 2rem;
}

.about_sec4 {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  padding:50% 0;
}
.about_sec4_inner {
  width:90%;
  margin: 0 auto;
}
.about_sec4_inner .title {
  text-align: left;
}
.about_staff {
  width:100%;
  font-size:1.4rem;
  color:#FFF;
  line-height: 2em;
  padding:7rem 0 0 0;
}
.about_staff li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin:0 0 3rem 0;
}
.about_staff li strong {
  display: inline-block;
  font-weight: normal !important;
  margin:0 2rem 0 0;
}
.about_staff li span {
  display: block;
  width: fit-content;
}
.about_staff li a {
  color:#FFF;
}
.about_staff li a:hover {
  text-decoration: underline;
}

.about_project_wrap {
  width:100%;
  padding:50% 0 0 0;
}
.about_project {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100lvh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.about_onlinestore {
  background-image: url(../img/about/onlinestore2.webp);
}
.about_reuse {
  background-image: url(../img/about/reuse2.webp);
}

.about_project .centerbox .hyodai {
  display: block;
  width: fit-content;
  margin: 0 auto;
  font-size:2rem;
  letter-spacing: 0.1em;
  color:var(--color-3);
  text-align: center;
  padding:1rem 5rem;
  border:1px solid var(--color-3);
  transition: background .5s ease, color .5s ease;
}
.about_project .centerbox .hyodai:hover {
  background: var(--color-3);
  color:var(--color-2);
}
.about_project .centerbox .desc {
  font-size:1.4rem;
  color:var(--color-3);
  text-align: center;
  line-height: 2em;
  padding:5rem 0 0;
}
.store_links {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  padding:4rem 0 0;
}
.store_links a {
  font-size:1.4rem;
  color:var(--color-3);
  text-align: center;
  text-decoration: underline;
}
.store_links a:hover {
  text-decoration: none;
}

.about_store_slide {
  width: 100%;
  height:100%;
  position: relative;
  overflow: hidden;
}
.about_store_context {
  background: url(../img/about/about_store_context.webp) no-repeat center center;
  background-size: cover;
}
.about_store_otsukei {
  background: url(../img/about/about_store_otsukei.webp) no-repeat center center;
  background-size: cover;
}
.about_store_kune {
  background: url(../img/about/about_store_kune.webp) no-repeat center center;
  background-size: cover;
}
.about_store_slide .swiper-slide {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
}
.about_store_pagination {
  position: absolute;
  z-index:10;
  bottom:4rem;
  left:0;
  width:100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap:1rem;
}
.about_store_pagination .swiper-pagination-bullet {
  background: var(--color-3);
  opacity: 0.2;
  border-radius: 2px;
  width:3rem;
  height:3px;
}
.about_store_pagination .swiper-pagination-bullet-active {
  background: var(--color-3);
  opacity: 1;
}
.about_store_next {
  position: absolute;
  z-index: 10;
  top:50%;
  right:3%;
  width:3rem;
  height:3rem;
  margin:-1.5rem 0 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.about_store_prev {
  position: absolute;
  z-index: 10;
  top:50%;
  left:3%;
  width:3rem;
  height:3rem;
  margin:-1.5rem 0 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.about_store_next svg,
.about_store_prev svg {
  width:2.4rem;
  stroke: var(--color-3);
}

/* project */
.page_wrap.page_project {
  min-height: 200dvh;
  background: url(../img/bg2.webp) no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
}
.project_sec1, .project_sec2, .project_sec3 {
  height:100dvh;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  align-content: center;
}
.page_project .inner {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap:5rem;
  height:100%;
}
.page_project .inner .textbox {
  order:1;
  width:100%;
}
.page_project .inner .textbox h2 a {
  display: block;
  width:fit-content;
  padding:1rem 2.5rem;
  border:2px solid #FFF;
  color:#FFF;
  font-size:1.6rem;
  font-weight: bold;
  margin:0 auto;
  transition: color .5s ease, background .5s ease;
}
.page_project .inner .textbox h2 a:hover {
  color:var(--color-2);
  background: #FFF;
}
.page_project .inner .textbox .text {
  color:#FFF;
  font-size:1.5rem;
  padding:5rem 0 0 0;
  line-height: 2em;
  text-align: center;
}
.page_project .inner .textbox .text a {
  color:#FFF;
}
.page_project .inner .textbox .text a:hover {
  text-decoration: underline;
}
.page_project .inner .thumb {
  order:0;
  width:50%;
  margin:0 auto;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.page_project .inner .thumb img {
  width:100%;
  height:auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: opacity .5s ease;
}
.page_project .inner .thumb:hover img {
  opacity: 0.5;
}

/* reuse */
.page_wrap.reuse_system {
  background: url(../img/bg2.webp) no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
}
.page_wrap.reuse_system .wrap_inner {
  position: relative;
  inset:0;
  transform: none;
}
.reuse_sec1 {
  height:60dvh;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  align-content: center;
}
.reuse_sec2 {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  align-content: center;
}
.reuse_sec1 h2 {
  font-weight: bold;
  text-align: center;
  padding:7rem 0 2rem;
}
.reuse_sec1 .text {
  text-align: center;
  font-size:1.6rem;
  line-height: 2em;
  padding:0;
}
.reuse_sec2 h2 {
  padding:0 0 4rem 0;
}
.reuse_sec3 {
  padding:0 0 15rem 0
}

/* contact */
.page_wrap.contact_page {
  background: url(../img/bg2.webp) no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
}
.page_wrap.contact_page .wrap_inner {
  position: relative;
  inset:0;
  transform: none;
}
.contact_sec1 {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  align-content: center;
  padding:15rem 0;
}
.contact_sec1 .text {
  font-size:1.4rem;
  padding:0;
}
.contact_layout {
  display: grid;
  grid-template-columns: 1fr;
  gap:8rem;
  padding:5rem 0 0 0;
}
.contact_layout .form {
  display: grid;
  grid-template-columns: 1fr;
  gap:1.5rem;
}
.contact_layout input[type=text],
.contact_layout input[type=email],
.contact_layout textarea {
  display: block;
  width:100%;
  font-family:"Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  background:#FFF;
  padding:1.4rem;
  font-size:1.6rem;
  border:none;
}
.contact_layout input[type=submit] {
  display: block;
  width:50%;
  font-family:"Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  background:var(--color-2);
  color:#FFF;
  border:none;
  font-size:1.6rem;
  padding:1.5rem 0;
  cursor: pointer;
}
.wpcf7 form .wpcf7-response-output {
  color:#FFF;
  font-size:1.2rem;
  padding:1rem;
  margin:0 auto;
}
.wpcf7-not-valid-tip {
  font-size:1.2rem;
  padding:0.5rem 0 0 0;
  color:#FFF;
}


/* =archive
-------------------------------------------------------------- */
.page_wrap.archive_page {
  background: url(../img/bg_sp.webp) no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
}
.archive_page .wrap_inner {
  width: min(90%,150rem);
  position: relative;
  inset:0;
  transform: none;
}
.archive_sec1 {
  padding:15rem 0 0 0;
}
.post_archive {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap:5rem;
  margin:6rem auto 0;
}
.post_archive a {
  display: block;
  width:100%;
  color: #FFF;
}
.post_archive a figure {
  width:100%;
  height:auto;
  overflow: hidden;
  aspect-ratio: 373 / 224;
}
.post_archive .post_card figure img {
  width:100%;
  height:auto;
  aspect-ratio: 373 / 224;
  object-fit: cover;
}
.post_archive .post_card .post_card_text {
  padding:2.5rem 0 0 0;
}
.post_archive .post_card .post_card_text time {
  color:#FFF;
  font-size:1.2rem;
  letter-spacing: 0.05em;
}
.post_archive .post_card .post_card_date {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.post_archive .post_card .post_card_date p {
  padding:0 1.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.post_archive .post_card .post_card_date p svg {
  width:1.5rem;
  height:auto;
  fill:#FFF;
}
.post_archive .post_card .post_card_date .post_card_cat {
  color:#FFF;
  font-size:1.2rem;
  letter-spacing: 0.05em;
}
.post_archive .post_card .post_card_text .post_card_title {
  color:#FFF;
  font-size:1.4rem;
  letter-spacing: 0.05em;
  line-height: 1.5em;
  padding:1rem 0 0 0;
}
a.topbtn {
    width: 240px;
    display: block;
    margin: 6rem auto 0;
    line-height: 1.6;
    text-align: center;
}
.text-link {
  font-size:1.6rem;
    color: #FFF;
    border-bottom: 1px solid #FFF;
    padding-bottom: 2px;
}
.tablenav .pagenav {
	display: flex;
	justify-content: center;
	align-items: center;
	padding:10rem 0 0 0;
}
.tablenav .pagenav .page-numbers {
	display: flex;
	justify-content: center;
	align-items: center;
	width:4rem;
	height:4rem;
	font-size:1.8rem;
	border-radius: 50%;
  border:1px solid transparent;
	color:#FFF;
	margin:0 0.5rem;
}
.tablenav .pagenav .page-numbers.current {
	border:1px solid #FFF;
}
.tablenav .pagenav .page-numbers.prev,
.tablenav .pagenav .page-numbers.next {
	display: none;
}
/* author */
.author_profile {
  display: flex;
  justify-content: flex-start;
  gap:5rem;
  padding:0 0 5rem 0;
}
.author_profile .author_thumb {
  width:18rem;
  height:18rem;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.author_profile .author_thumb img {
  display: block;
  width:100%;
  height:auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.author_profile .author_prof {
  width:calc(100% - 35rem);
}
.author_profile .author_prof .author_name {
  font-size:1.5rem;
  color:#FFF;
}
.author_profile .author_prof .author_name span {
  font-size:1.8rem;
}
.author_profile .author_prof .author_name a {
  color:#FFF;
  transition: opacity 0.5s ease;
}
.author_profile .author_prof .author_name a:hover {
  opacity: 0.5;
}
.author_profile .author_prof .author_description {
  padding:3rem 0 0 0;
  font-size:1.4rem;
  color:#FFF;
  line-height:2em;
}

/* =breadcrumb
-------------------------------------------------------------- */
#breadcrumbs {
  width:100%;
  font-family: 'Crimson Text', "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  padding: 40px 0;
  max-width: 100% !important;
  font-size: 12px !important;
  line-height: 1em !important;
  margin: 0 auto !important;
  color: #FFF;
}
#breadcrumbs a {
  font-family: 'Crimson Text', "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  text-decoration: none !important;
  color: #FFF !important;
}
.store_bread #breadcrumbs {
  color:var(--color-2) !important;
}
.store_bread #breadcrumbs a {
  color: var(--color-2) !important;
}

/* =footer
-------------------------------------------------------------- */
.footblc {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem;
  max-width: 100%;
}
.footblc .crim {
  font-size: 2rem;
}
.footbtnlist {
  padding: 30px 0;
}
.footbtnlist li {
  position: relative;
}
.footbtnlist li.flex {
  justify-content: flex-start;
}
.footbtnlist li a {
  display: block;
  width: auto;
  font-size: 1.5rem;
  letter-spacing: 0em;
  padding: 8px 0;
  color: #240e03;
}
.footbtnlist li a:hover, .footicon a:hover {
  opacity: 0.5;
}
.footsns {
  font-size: 2.4rem;
  color: #9fa0a0;
  padding: 0 0 0 20px;
}
.copyright {
  padding: 80px 0;
}
.copyright a {
  font-size: 1.4rem;
  color: #9fa0a0;
}
.fixedmenu {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
}
.fixedmenu.flex {
  justify-content: center;
}
.fixedmenu .fixedmenulist .fixedbtn {
  display: block;
  padding: 20px 40px;
  color: #240E03;
  font-size: 1.6rem;
}

/* =single
-------------------------------------------------------------- */
.page_wrap.single_page {
  background: url(../img/bg_sp.webp) no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
}
.single_page .wrap_inner {
  width: min(90%,120rem);
  position: relative;
  inset:0;
  transform: none;
}
.single_sec1 {
  padding:15rem 0 0 0;
  color:#FFF;
}
.page_store .sin_cat {
  text-align: center;
  padding:4rem 0;
}
.single_page .wrap_inner .sin_cat {
  color:#FFF;
  font-size:2rem;
  font-weight: normal;
  text-align: left;
}
.single_page .wrap_inner .single_title {
  font-size:3rem;
  font-weight: bold;
  line-height: 1.75em;
  padding:4rem 0;
  text-align: left;
}
#ez-toc-container {
  width:100%;
  margin:0 !important;
  background: transparent;
  border:1px solid rgba(255,255,255,0.4);
  padding:4rem;
}
#ez-toc-container .ez-toc-title-container .ez-toc-title {
  font-family: "Crimson Pro", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight:400;
  color:#FFF;
  font-size:2.5rem;
}
#ez-toc-container nav {
  color:#FFF;
  font-size:1.8rem;
}
#ez-toc-container nav a {
  color:#FFF;
  padding:0.6rem 0;
}
#ez-toc-container .ez-toc-js-icon-con, #ez-toc-container .ez-toc-toggle label, .ez-toc-cssicon {
  border:1px solid rgba(255,255,255,0.4);
}
#ez-toc-container .ez-toc-icon-toggle-span svg {
  color:#FFF !important;
  fill:#FFF !important;
}
#single h2 {
  display: block;
  max-width: 800px;
  font-weight: bold;
  font-size: 2.8rem;
  letter-spacing: 0;
  padding: 0;
  margin: 50px auto;
}
#single h3 {
  display: block;
  max-width: 800px;
  font-style: normal;
  font-size: 2.4rem;
  margin: 40px auto;
}
#single h4 {
  display: block;
  max-width: 800px;
  font-style: normal;
  font-size: 2rem;
  margin: 40px auto;
}
#single p {
  font-style: normal;
  max-width: 800px;
  font-size: 1.5rem;
  line-height: 2.0em;
  margin: 40px auto;
}
#single p.has-large-font-size {
  margin: 0 auto;
}
#single .wp-block-image.size-full {
  display: block;
  margin: 20px auto;
}
#single .wp-block-image.size-full img {
  display: block;
  max-width: 100%;
  height: auto;
}
#single .wp-block-media-text {
  max-width: 900px;
  margin: 20px auto;
}
#single .wp-block-blockgallery-carousel {
  margin: 20px auto;
}
.wp-block-jetpack-slideshow .wp-block-jetpack-slideshow_pagination.swiper-pagination-bullets, .wp-block-jetpack-slideshow .wp-block-jetpack-slideshow_pagination.swiper-pagination-custom {
  justify-content: center !important;
  padding:3rem 0 !important;
}
.wp-block-jetpack-slideshow .amp-carousel-button, .wp-block-jetpack-slideshow .wp-block-jetpack-slideshow_button-next, .wp-block-jetpack-slideshow .wp-block-jetpack-slideshow_button-pause, .wp-block-jetpack-slideshow .wp-block-jetpack-slideshow_button-play, .wp-block-jetpack-slideshow .wp-block-jetpack-slideshow_button-prev {
 background-color: rgba(255,255,255,0.2) !important;
 border-radius: 50% !important;
}
#single ul.list, #single ol.list {
  max-width: 800px;
  margin: 20px auto;
}
#single ul.list li {
  position: relative;
  line-height: 1.5;
  padding: 8px 0 8px 34px;
  background-size: 24px auto;
  list-style-type: none !important;
}
#single ul.list li:before {
  content: '\f00c';
  position: absolute;
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  top: 10px;
  left: 5px;
  width: 24px;
  height: 24px;
  color: #000;
  font-size: 12px;
}
#single ol.list {
  counter-reset: number; /*数字をリセット*/
}
#single ol.list li {
  position: relative;
  line-height: 1.5;
  padding: 8px 0 8px 34px;
  background-size: 24px auto;
  list-style-type: none !important;
}
#single ol.list li:before {
  content: '';
  position: absolute;
  top: 8px;
  left: 0;
  width: 24px;
  height: 24px;
  counter-increment: number;
  content: counter(number);
  text-align: center;
  color: #000;
  font-size: 12px;
  padding: 3px 0;
}
#single a {
  color: var(--color-5);
  text-decoration: underline;
}
#single a.more:hover {
  opacity: 0.5;
  text-decoration: none;
}
#single a.more {
  color: #000;
  text-decoration: none;
}
#single .wp-element-caption a {
  font-size:1.4rem;
}
#single .spfix {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 0 0 15px 0;
}
#single p.shipdesc {
  width:86%;
  margin: 0 auto;
  font-size: 12px;
  padding: 100px 0 0 0;
}
#single .scrollable-table {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto 60px;
}
#single table th, #single table td {
  font-size: 12px;
  line-height: 1.5em;
}
#single .shopdetail {
  max-width: 1000px;
  width: 90%;
  margin: 100px auto 150px;
}
#single .shoplogo {
  width: 20%;
}
#single .shoplogo img {
  display: block;
  width: 100%;
  height: auto;
}
#single .shoptable {
  max-width: 900px;
  width: 70%;
  font-size: 12px;
}
#single .shoptable th {
  width: 20%;
}
#single .shoptable th, #single .shoptable td {
  text-align: left;
  font-weight: normal;
  padding: 15px 0;
  border-bottom: 1px solid #999;
}
#single .shoptable a {
  color:var(--color-4);
}
#single .store_map {
  display:block;
  width:80%;
  height:auto;
  margin:0 auto;
  padding:0 0 15rem 0;
}
#single .store_map iframe {
  display: block;
  width:100%;
  height: auto;
  aspect-ratio: 1 / 1;
} 
#single .void {
  display: block;
  padding: 0 0 100px 0;
}
.saboxplugin-wrap {
  max-width: 900px;
  margin: 0 auto 40px !important;
  font-family: itc-american-typewriter, a-otf-ryumin-pr6n, serif;
  font-weight: 300;
  font-style: normal;
}
.saboxplugin-authorname {
  font-size: 24px;
}
#single .saboxplugin-desc p {
  margin: 0 auto;
}
#single .wp-block-advgb-images-slider {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto 60px;
}
.wp-block-audio {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 100px;
}
.style-gallery {
  padding: 20px 20px 0 20px !important;
}
.blocks-gallery-grid {
  margin: 0 auto !important;
}
.blocks-gallery-item {
  flex-grow: 0 !important;
}
#colorbox.advgb_lightbox #cboxNext {
  background: transparent !important;
}
#colorbox.advgb_lightbox #cboxPrevious {
  background: transparent !important;
}
#colorbox.advgb_lightbox #cboxLoadedContent {
  border-radius: 0 !important;
  background: rgba(255, 255, 255, 0.2) !important;
}
#colorbox.advgb_lightbox #cboxLoadedContent {
  margin: 0;
  border: none !important;
  -webkit-border-radius: 0px !important;
  -moz-border-radius: 0px !important;
  border-radius: 0px !important;
  background: #fff;
  padding: 0px !important;
}
#colorbox.advgb_lightbox #cboxContent {
  margin-top: 0;
  overflow: visible;
  background: #fff;
  -webkit-border-radius: 0px !important;
  -moz-border-radius: 0px !important;
  border-radius: 0px !important;
}
#cboxClose {
  display: none !important;
}
#style h1 {
  display: block;
  padding: 100px 10%;
  font-size: 16px;
  color: #808080;
}
.shoplogoh1 {
	width:100%;
	display:flex;
	justify-content:center;
	margin:0 auto;
}
.shoplogoh1.otsukei img {
	width:150px;
	margin:0 auto;
}
.shoplogoh1.kune img {
	width:150px;
	margin:0 auto;
}
.shoplogoh1.context img {
	width:150px;
	margin:0 auto;
}

/* =contact
-------------------------------------------------------------- */
.contact #single h1, .contact #single h2#articlestitleh2 {
  display: block;
  width: 80%;
  margin: 0 0 0 20%;
  font-size: 18px;
  padding: 0 0 50px 0;
  text-align: left;
}
.contact #single .contents {
  background: #FFF;
  width: 80%;
  margin: 0 0 100px 20%;
}
.contact #single .contents p {
  margin: 0 10%;
}
.contact #single .form {
  margin: 0 10%;
  max-width: 800px;
}
.contact #single .form .formbox {
  width: 100%;
  padding: 15px 0;
}
.contact #single .form .selectbox {
  position: relative;
}
.contact #single .form .selectbox::before {
  content: '';
  position: absolute;
  z-index: 10;
  top: 50%;
  right: 15px;
  width: 0;
  height: 0;
  margin: -12px 0 0 0;
  border-style: solid;
  border-width: 0 4px 8px 4px;
  border-color: transparent transparent #d4d4d4 transparent;
}
.contact #single .form .selectbox::after {
  content: '';
  position: absolute;
  z-index: 10;
  top: 50%;
  right: 15px;
  width: 0;
  height: 0;
  margin: 4px 0 0 0;
  border-style: solid;
  border-width: 8px 4px 0 4px;
  border-color: #d4d4d4 transparent transparent transparent;
}
.contact #single .form input[type="text"], .contact #single .form input[type="email"], .contact #single .form select, .contact #single .form textarea {
  display: block;
  width: 100%;
  min-height: 60px;
  border: 1px solid #ddd;
  padding: 5px 15px;
  line-height: 32px;
  -webkit-appearance: none;
  appearance: none;
}
.contact #single .form input[type="submit"] {
  display: block;
  width: 300px;
  background: #444;
  text-align: center;
  padding: 18px 0;
  color: #FFF;
  margin: 0 0 50px 0;
  border: 1px solid #444;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  -webkit-transition: all .25s ease;
  -moz-transition: all .25s ease;
  -ms-transition: all .25s ease;
  -o-transition: all .25s ease;
  transition: all .25s ease;
}
.contact #single .form input[type="submit"]:hover {
  background: #FFF;
  color: #444;
}
.contact #single p.recaptcha {
  font-size: 12px;
  margin: 0 10%;
  max-width: 800px;
  padding: 0 0 100px 0;
}
/* =company
-------------------------------------------------------------- */
.company_mv {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
}
.company_mv h2 {
  display: block;
  position: absolute;
  z-index: 999;
  top: 10vh;
  right: 5vw;
  color: #FFF;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-size: 1.8rem;
  line-height: 3em;
  letter-spacing: 0.3em;
}
.company_btn1 {
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.company_btn1 a {
  display: block;
  text-align: center;
  padding: 10px 40px;
  color: #FFF;
  font-size: 1.8rem;
  border: 1px solid #999;
  position: relative;
}
.company_btn1 a::before, .company_btn1 a::after, .company_btn1 span::before, .company_btn1 span::after {
  content: '';
  display: block;
  position: absolute;
  background-color: #FFF;
}
.company_btn1 a::before {
  right: -1px;
  top: -1px;
  height: 1px;
  width: 0%;
  transition: width 300ms;
}
.company_btn1 a::after {
  right: -1px;
  top: -1px;
  height: 0%;
  width: 1px;
  transition: height 300ms;
}
.company_btn1 span::before {
  left: -1px;
  bottom: -1px;
  height: 1px;
  width: 0%;
  transition: width 300ms;
}
.company_btn1 span::after {
  left: -1px;
  bottom: -1px;
  height: 0%;
  width: 1px;
  transition: height 300ms;
}
.company_btn1 a:hover::before, .company_btn1 a:hover span::before {
  width: calc(100% + 2px);
}
.company_btn1 a:hover::after, .company_btn1 a:hover span::after {
  height: calc(100% + 2px);
}
.company_context {
  width: 100%;
  height: 100vh;
  background: url(../img/store/context2.jpg) no-repeat center center;
  background-size: cover;
  position: relative;
}
.company_otsukei {
  width: 100%;
  height: 100vh;
  background: url(../img/store/otsukei2.jpg) no-repeat center center;
  background-size: cover;
  position: relative;
}
.company_brandblc {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.company_brandlogo {
  width: 80px;
  margin: 0 auto;
  padding: 0 0 60px 0;
}
.company_brandname {
  text-align: center;
  color: #FFF;
  font-size: 1.8rem;
  line-height: 1.5em;
}
.company_brandname a {
  color: #FFF;
}
.company_brandlogo img {
  display: block;
  width: 100%;
  height: auto;
}
.company_btn2 {
  display: block;
  width: 300px;
  margin: 0 auto;
  padding: 60px 0 0 0;
}
.company_btn2 a {
  display: block;
  text-align: center;
  padding: 10px 40px;
  color: #FFF;
  font-size: 1.8rem;
  border: 1px solid #999;
  position: relative;
}
.company_btn2 a::before, .company_btn2 a::after, .company_btn2 span::before, .company_btn2 span::after {
  content: '';
  display: block;
  position: absolute;
  background-color: #FFF;
}
.company_btn2 a::before {
  right: -1px;
  top: -1px;
  height: 1px;
  width: 0%;
  transition: width 300ms;
}
.company_btn2 a::after {
  right: -1px;
  top: -1px;
  height: 0%;
  width: 1px;
  transition: height 300ms;
}
.company_btn2 span::before {
  left: -1px;
  bottom: -1px;
  height: 1px;
  width: 0%;
  transition: width 300ms;
}
.company_btn2 span::after {
  left: -1px;
  bottom: -1px;
  height: 0%;
  width: 1px;
  transition: height 300ms;
}
.company_btn2 a:hover::before, .company_btn2 a:hover span::before {
  width: calc(100% + 2px);
}
.company_btn2 a:hover::after, .company_btn2 a:hover span::after {
  height: calc(100% + 2px);
}
.company_webshop {
  padding: 100px 0 0 0;
}
.company_webshop h2 {
  display: block;
  text-align: center;
  font-size: 3.4rem;
}
.company_webshop .com_shipping {
  font-size: 1.4rem;
  padding: 14px 0 0 0;
  text-align: center;
}
.company_webshop .onlinestore {
  width: 46%;
  padding: 60px 0;
  text-align: center;
}
.company_webshop .storename {
  font-size: 3.6rem;
  letter-spacing: 0.4em;
}
.company_webshop .storeconcept {
  font-size: 2.4rem;
  padding: 60px 0;
}
.company_webshop .storedesc {
  font-size: 1.5rem;
  line-height: 1.8em;
}
.company_webshop .onlinestore a {
  display: block;
  color: #240e03;
  padding: 60px 0 0 0;
  font-size: 1.5rem;
}
.company_media {
  padding: 100px 0 0 0;
}
.company_media h2 {
  display: block;
  text-align: center;
  font-size: 3.4rem;
}
.vof_media, .dollar_media {
  padding: 100px 0;
}
.vof_media .mediaimg, .dollar_media .mediaimg {
  width: 60%;
}
.vof_media .mediaimg img, .dollar_media .mediaimg img {
  display: block;
  width: 100%;
  height: auto;
}
.vof_media .mediabox, .dollar_media .mediabox {
  width: 40%;
  /* 縦方向中央揃え */
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}
.mediabox_inner {
  width: 90%;
  margin: 0 auto;
}
.mediabox h3 {
  display: block;
  width: 100%;
  font-size: 3rem;
  text-align: center;
}
.mediabox a {
  display: block;
  width: 120px;
  text-align: center;
  padding: 10px 0;
  margin: 30px auto 0;
  font-size: 1.6rem;
  color: #240e03;
  border: 1px solid #ddd;
  position: relative;
}
.mediabox a::before, .mediabox a::after, .mediabox a span::before, .mediabox a span::after {
  content: '';
  display: block;
  position: absolute;
  background-color: #240e03;
}
.mediabox a::before {
  right: -1px;
  top: -1px;
  height: 1px;
  width: 0%;
  transition: width 300ms;
}
.mediabox a::after {
  right: -1px;
  top: -1px;
  height: 0%;
  width: 1px;
  transition: height 300ms;
}
.mediabox a span::before {
  left: -1px;
  bottom: -1px;
  height: 1px;
  width: 0%;
  transition: width 300ms;
}
.mediabox a span::after {
  left: -1px;
  bottom: -1px;
  height: 0%;
  width: 1px;
  transition: height 300ms;
}
.mediabox a:hover::before, .mediabox a:hover span::before {
  width: calc(100% + 2px);
}
.mediabox a:hover::after, .mediabox a:hover span::after {
  height: calc(100% + 2px);
}
.company_philo {
  padding: 100px 0 0 0;
}
.company_philo h2 {
  display: block;
  text-align: center;
  font-size: 3.4rem;
}
.philobox {
  padding: 100px 0 0 0;
}
.philobox.flex {
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  margin: 0 auto;
}
.company_philo h3 {
  order: 1;
  display: block;
  font-size: 2.4rem;
  letter-spacing: 0.5em;
  margin: 0 0 0 60px;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
.company_philo h3 span {
  display: inline-block;
  padding: 0 5px 0 0;
}
.company_philo rt {
  letter-spacing: 0.1em;
}
.company_philo p {
  order: 0;
  display: block;
  font-size: 1.4rem;
  line-height: 2.8em;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
/*company_style_archives*/
.company_style_archive {
  padding: 50px 0 0 0;
}
.company_style_archive article {
  display: block;
  width: 30%;
  margin: 0 0 50px 0;
}
.company_style_archive a {
  display: block;
  color: #240e03;
}
.company_style_thumb {
  width: 100%;
}
.style_post_thumb {
  display: block;
  overflow: hidden;
  position: relative;
  width: 32%;
}
.company_style_thumb_inner {
  position: relative;
}
.company_style_thumb_inner::before {
  content: "";
  display: block;
  padding-top: 140%;
}
.company_style_thumb_inner img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: auto;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.top_style_title {
  display: block;
  font-size: 1.6rem;
  padding: 25px 0;
}
/* reuse system */
.tab-area {
  display: flex;
  justify-content: space-around;
  cursor: pointer;
}
.tab-area .tab {
  width: 24%;
  text-align: center;
  color: white;
  font-size: 1.6rem;
  padding: 15px 0;
  position: relative;
}
.tab-area .tab::after {
  content:'';
  position: absolute;
  bottom:0;
  left:50%;
  width:100%;
  height:1px;
  transform: translateX(-50%);
  background: #FFF;
  transition: width .4s ease;
}
.tab-area .tab.active::after {
  height:3px;
}
.content-area {
  padding: 30px 0 80px 0;
  color: #FFF;
}
.content-area .content {
  display: none;
}
.content-area .content.show {
  display: block;
}
dl.satei {
  color: #FFF;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  font-size: 1.4rem;
  line-height: 2em;
}
dl.satei.last {
  border-bottom: none;
}
dl.satei dt {
  width: 25%;
  padding: 15px;
}
dl.satei dd {
  width: 73%;
  padding: 15px;
  line-height: 2em;
}
dl.satei dd .flex {
  margin: 15px auto 0;
}
dl.satei .link, .linesatei .link {
  width: 48%;
}
dl.satei .link a, .linesatei .link a {
  width: 100%;
  display: block;
  text-align: center;
  padding: 12px 0;
  background: #FFF;
  color: #000;
}
dl.satei .link a:hover {
  opacity: 0.5;
}
.linesatei {
  width:100%;
  margin: 5rem auto 0;
  padding: 25px 0;
}
.linesatei h3 {
  font-size:2rem;
  color:#FFF;
}
.linesatei p {
  font-size: 1.4rem;
  line-height: 2em;
  color: #FFF;
  padding: 2rem 0 0 0;
}
.kaitori_shop {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap:4rem;
  padding:2rem 0 0 0;
}
.kaitori_shop  .shopbox figure {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}
.kaitori_shop  .shopbox img {
  display: block;
  width:100%;
  height:auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: opacity .5s ease;
}
.kaitori_shop  .shopbox figure:hover img {
  opacity:0.5;
}
.kaitori_shop  .shopbox .store_name {
  font-size: 1.6rem;
  line-height: 2em;
  color: #FFF;
  padding: 2rem 0 0 0;
}
.kaitori_shop  .shopbox .store_info {
  font-size: 1.4rem;
  line-height: 2em;
  color: #FFF;
  padding: 1rem 0 0 0;
}
.kaitori_shop  .shopbox .store_info a {
  color:#FFF;
}
.kaitori_shop  .shopbox .store_info a:hover {
  text-decoration: underline;
}



/* =footer
-------------------------------------------------------------- */
footer {
  padding:100px 0 0 0;
  background: #FFF;
}
.backtoshop a {
  background: url(../img/sign_back.svg) no-repeat left center;
  background-size: 40px auto;
  padding: 20px 15px 15px 55px;
  font-size: 14px;
  color: #000;
}
.copybox {
  padding: 60px 0;
}
.copyright {
  font-size: 14px;
  color: #000;
}
#pagetop {
  position: fixed;
  z-index: 6000;
  bottom: 10px;
  right: 8px;
  width: 48px;
  height: 48px;
  padding: 17px 0 0 0;
  color: #333;
  text-align: center;
  border-radius: 50%;
  background: #eee;
  font-size: 14px;
}
.grecaptcha-badge {
  visibility: hidden;
}
h1#headh1 {
  font-size: 10px;
  line-height: 1;
  font-weight: normal;
  color: #999;
  text-align: right;
  margin: 0 auto;
  padding: 0.5rem;
  width: 95%;
}
.wp-block-image img {
  margin-top: 10px;
  margin-bottom: 10px;
}