@charset "utf-8";
:root {
  --admin-bar-height: 46px;

  --header-height: 60px;
  --menu-action-size: 44px;
  --width: 1080px;
  --font-size-max: 1.3em;
  --font-size-xxl: 1.3em;
  --font-size-xl: 1.3em;
  --font-size-l: 1.2em;
  --margin-xxl: 48px;
  --margin-xl: 20px;
  --margin-l: 12px;
  --margin: 6px;
  --margin-s: 3px;
}

body {
	font-size: 16px;
}

.pc {
	display: none !important;
}
.center--sp {
  text-align: center;
}

.button {
  line-height: var(--line-height-s);
}

.section p a {
  text-decoration: underline;
}


.cards[data-column$="1"] .card {
  width: 100%;
}
.cards[data-column$="2"] .card {
  width: 48%;
}
.cards[data-column$="3"] .card {
  width: 31%;
}
.cards[data-column$="1"] .card__image {
  padding-bottom: 30%;
}
.cards[data-column="3"] .card__image {
  padding-bottom: 100%;
}
.card.is-row--sp {
  display: block;
  flex-direction: unset;
}
.card.is-row--sp .card__title {
}
.card.is-row--sp .card__image {
  float: left;
  margin: 0 1em 0 0;
  width: 40%;
  padding-bottom: 20%;
}
.card.is-row--sp .card__text {
}
.cards.is-slide .card {
  width: 150px;
}




.flow__description {
  text-indent: 1em;
}

.keyvisual {
  flex-direction: column-reverse;
}
.keyvisual__text {
  width: 100%;
}
.keyvisual__text .title {
  margin-top: 1em;
}
.keyvisual__image {
  width: 100%;
  width: calc(100% + var(--margin-l) + var(--margin-l));
}

.keyvisual__text + .keyvisual__image .image {
    padding-bottom: 70%;
}


.features {
  flex-direction: column;
}
.features__item {
  width: 100%;
}

.container {
	width: 100%;
	padding-left: var(--margin-l);
	padding-right: var(--margin-l);
}

.admin-bar .header {
  top: var(--admin-bar-height);
}
.header .container {
  height: var(--header-height);
}
.header .logotype {
  width: 150px;
	height: 24px;
}
.header .nav .cta {
  padding: var(--margin-s) var(--margin);
}
.header .nav .cta .icon {
  font-size: 1.2em;
  margin-right: var(--margin-s);
}
.header .nav .cta__text {
  font-size: .8em;
  text-align: center;
}
.header .nav .menu-action {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--menu-action-size);
  height: var(--menu-action-size);
  margin-right: -10px; 
}

/*
html:not(.menu-open) .menu.sp {
  display: none;
  opacity: 0;
  transition: opacity .3s ease;
}
html.menu-open .menu.sp {
  display: block;
  opacity: 1;
  transition: opacity .3s ease;
}
*/
html:not(.menu-open):not(.menu-close) .menu.sp {
  display: none;
}
html:not(.menu-open) [data-action="menu-close"],
html.menu-open [data-action="menu-open"] {
  display: none !important;*
}
html.menu-open .menu.sp {
  animation-name: menu-open
}
html.menu-close .menu.sp {
  animation-name: menu-close
}
html.menu-open body {
  overflow: hidden;
}
html:not(.menu-open) body {
  overflow: auto;
}

@keyframes menu-open {
  0% {
    z-index: -50;
    display: none;
    opacity: 0;
    transform: translate3d(0,10px,0);
    overflow: hidden;
  }
  1% {
    z-index: 50;
    display: block;
    opacity: 0;
    transform: translate3d(0,10px,0);
    overflow: hidden;
  }
  100% {
    display: block;
    opacity: 1;
    transform: translate3d(0,0,0);
    overflow: auto;
    z-index: 50;
  }
}

@keyframes menu-close {
  0% {
    z-index: 50;
    display: block;
    opacity: 1;
    transform: translate3d(0,0,0);
    overflow: auto;
  }
  99% {
    z-index: 50;
    display: block;
    opacity: 0;
    transform: translate3d(0,10px,0);
    overflow: auto;
  }
  100% {
    z-index: -50;
    display: none;
    opacity: 0;
    transform: translate3d(0,10px,0);
    overflow: hidden;
  }
}
.menu.sp {
  animation-duration: .3s;
  animation-fill-mode: forwards;
  
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  padding-top: var(--header-height);
  background-color: white;
  overflow: auto;
}
.admin-bar .menu.sp {
  padding-top: calc(var(--header-height) + var(--admin-bar-height));
}
.menu.sp .section {
  margin: var(--margin-xl) 0 !important;
  padding: 0 !important;
}
.menu.sp .section[class*="keyvisual"] + .section + .section {
  padding-top: 0 !important;
}
.menu.sp .section__title {
  font-weight: bold;
  border-bottom: 1px solid var(--primary);
  margin: var(--margin-l) 0;
}
.menu.sp .section__content > .description {
  margin: var(--margin-l) 0;
  font-size: .8em;
  line-height: var(--line-height-s);
}
.menu.sp .button {
  margin: var(--margin-xl) auto 0;
  width: 60%;
}
.menu.sp .cards[data-column^="2"] .card__image {
  padding-bottom: 35%;
}
.menu.sp .card__image:not(:empty)::after {
  background-color: rgba(0,0,0,.5);
  backdrop-filter: blur(1px);
}
.menu.sp .cta {
  margin: var(--margin-xl) 0;
}
.menu.sp .menu-action{
  margin: var(--margin-xl) 0;
  display: block;
  text-decoration: underline;
  text-align: center;
  color: var(--primary-dark);
}

.main {
  margin-top: var(--header-height);
}
.main img:not(.lkc-favicon) {
  display: block;
  width: 100%;
}

.footer .menu + .menu {
  margin-top: var(--margin-l);
}
.footer .address {
  display: block;
}
.footer .kobutu {
  margin-top: var(--margin);
}

.operator__image {
  width: 80px;
}

.post-type-archive-shop .shop__text {
  margin-top: 1em;
}
.post-type-archive-shop .shop__text >:not(.shop__name) {
  margin: .5em 0;
}

.is-article .ainfo {
  flex-direction: column;
}
.is-article .ainfo > p:first-of-type {
  margin-bottom: var(--margin);
}

:not(.items) > .item .title {
  margin-bottom: var(--margin-l);
}
:not(.items) > .item .image {
  float: left;
}


form tr {
  display: flex;
  flex-direction: column;

}
form th {

}
form td {
  padding-left: 0;
  padding-right: 0;
}
form input[type="submit"] {
  width: 100%;
}

.columns__excerpt {
  display: none;
}

.slider--sp {
  overflow-x: scroll;
  padding: var(--margin-s);
  position: relative;
}
.slider--sp .cards {
  justify-content: flex-start;
  flex-wrap: nowrap;
}
.slider--sp .card {
  margin-right: var(--margin-xl);
  flex-shrink: 0;
  width: 210px;
}

.main--column .sidebar {
  display: none;
}

.workcost {
  flex-direction: column;
}
.workcost .button {
  width: 100%;
}
.workcost__item {
  align-items: center;
}
.workcost__item:not(:last-child) span:first-child {
  font-size: .8em;
}
.workcost__title {
  font-size: 1em;
}
.workcost__image {
  width: 100%;
}
.workcost__text {
  width: 100%;
  padding-top: 0;
}
.workcost__thumb {
  height: 0;
  padding-bottom: 50%;
}

.keyvisual.is-form .keyvisual__image .image {
  background-size: 150px;
}

:not(.items) > .item {
  display: flex;
  flex-direction: column;
}
:not(.items) > .item .image {
  width: 60%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1em;
}
:not(.items) > .item .meta {
  width: 100%;
}
:not(.items) > .item .meta .price {
  text-align: center;
}
