@charset "UTF-8";
/* CSS Document */
/*------------------共通------------------*/
:root {
  font-size: 2.5vmin;
}

@media screen and (min-width: 767px) {
  :root {
    font-size: 10px;
  }
}

/*リセット*/
#header-container .navi {
  background-color: rgba(255, 255, 255, 0) !important;
}

.main {
  padding-top: 8rem !important;
  padding-bottom: 10rem !important;
}

li {
  list-style-type: none;
}

#footer {
  background-color: #d5dedc !important;
  padding: 0;
}

#footer .cmn-btn a {
  color: #56bfc0;
}

#footer .cmn-btn a:hover {
  background-color: #56bfc0;
  color: #fff;
}

a:hover {
  color: #343a3c;
}

.entry-categories a {
  color: #fff;
}

.entry-title, .article h2 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

@media screen and (max-width: 834px) {
  .ss-top .sns-share-buttons a .button-caption, .ss-bottom .sns-share-buttons a .button-caption {
    font-size: 10px !important;
    margin-left: 4px;
    letter-spacing: 0.2em;
  }
}

/*▲リセット*/
.site-body {
  width: 100%;
  margin: 0 auto;
  font-family: "Noto Serif JP","游明朝", YuMincho,"ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", serif;
  font-size: 1.5rem;
  font-weight: 300;
  /*font-size:unquote('max(1.5rem , 14px)');*/
  color: #343a3c;
  line-height: 2.5;
  -webkit-text-size-adjust: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
  letter-spacing: 0.2em;
  background: #d5dedc;
}

@media screen and (min-width: 767px) {
  .site-body {
    min-width: 1280px;
  }
}

.site-body *, .site-body *:before, .site-body *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.site-body img {
  max-width: 100%;
  max-height: 100%;
}

@media screen and (max-width: 767px) {
  .site-body img {
    width: auto;
    height: auto;
  }
}

a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-decoration: none;
  color: inherit;
}

a:hover {
  opacity: 0.7;
}

a:focus {
  overflow: visible;
}

@-webkit-keyframes fadeIn {
  0% {
    -webkit-filter: blur(10px);
    filter: blur(10px);
    opacity: 0;
    -webkit-perspective: 1000;
    perspective: 1000;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  100% {
    -webkit-filter: blur(0);
    filter: blur(0);
    opacity: 1;
    -webkit-perspective: 1000;
    perspective: 1000;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
}

@keyframes fadeIn {
  0% {
    -webkit-filter: blur(10px);
    filter: blur(10px);
    opacity: 0;
    -webkit-perspective: 1000;
    perspective: 1000;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  100% {
    -webkit-filter: blur(0);
    filter: blur(0);
    opacity: 1;
    -webkit-perspective: 1000;
    perspective: 1000;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
}

.animation--cmn-fade {
  -webkit-filter: blur(10px);
  filter: blur(10px);
  opacity: 0;
}

.animation--cmn-fade.run {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-animation-delay: 0.0s;
  animation-delay: 0.0s;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

/*==================================================

setting

==================================================*/
html, body {
  height: 100%;
}

#wrap {
  width: 100%;
  position: relative;
  height: auto !important;
  /*IE6対策*/
  height: 100%;
  /*IE6対策*/
  min-height: 100%;
  overflow: hidden;
}

.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.clearfix {
  display: block;
}

.left {
  float: left;
}

.right {
  float: right;
}

.text_c {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .sp_none {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .pc_none {
    display: none !important;
  }
}

.inbox {
  width: 1080px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .inbox {
    width: 90%;
  }
}

.text-box {
  text-align: justify;
  text-justify: inter-ideograph;
}

@media screen and (max-width: 767px) {
  .text-box p .sp-inline {
    display: inline;
  }
}

.text-box p + p {
  padding-top: 1.75em;
}

.text-box.text_c {
  text-align: center;
}

/*img thumb*/
.thumb {
  display: block;
  width: 100%;
  /*トリミング後の横幅*/
  padding-top: 60%;
  /*トリミング後の縦幅*/
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.thumb a {
  display: block;
}

.thumb a:hover img {
  -webkit-transform: translate(-50%, -50%) scale(1.1);
  transform: translate(-50%, -50%) scale(1.1);
}

.thumb img {
  position: absolute;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: 'object-fit: cover;';
  /*IE対策*/
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.thumb.no-photo {
  background: #bac4c7;
}

.thumb.no-photo img {
  -o-object-fit: contain;
  object-fit: contain;
  font-family: 'object-fit: contain;';
  /*IE対策*/
  width: auto;
  max-width: 90%;
  height: auto;
  max-height: 90%;
}

.e404-content a {
  text-decoration: underline;
  color: #56bfc0;
}

.tel a {
  pointer-events: none;
  color: #444444;
}

@media screen and (max-width: 767px) {
  .tel a {
    pointer-events: auto;
  }
}

.map-wrap {
  width: 100%;
}

.map {
  position: relative;
  width: 100%;
  padding-top: 400px;
  overflow: hidden;
}

.map iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .video {
    /*
padding-top: 50%;
*/
  }
}

.video iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.cmn-table table {
  width: 100%;
}

.cmn-table table th {
  font-size: 1.4rem;
}

.cmn-table table tr th, .cmn-table table tr td {
  letter-spacing: 0.12em;
}

@media screen and (max-width: 767px) {
  .cmn-table table tr {
    display: block;
    padding: 2rem 0;
  }
  .cmn-table table tr + tr {
    border-top: 1px solid rgba(52, 58, 60, 0.2);
  }
  .cmn-table table tr th, .cmn-table table tr td {
    display: block;
  }
  .cmn-table table tr th {
    font-weight: 400;
    padding-bottom: 0;
    font-size: 1.2rem;
    opacity: .8;
  }
}

@media print, screen and (min-width: 768px) {
  .cmn-table table tr th, .cmn-table table tr td {
    padding: 4rem 0;
  }
  .cmn-table table tr th {
    width: 160px;
  }
  .cmn-table table tr + tr th, .cmn-table table tr + tr td {
    border-top: 1px solid rgba(52, 58, 60, 0.2);
  }
}

.cont-table table tr th {
  width: 240px;
}

/*タブ切替*/
.tab-btns__item {
  cursor: pointer;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.tab-btns__item.is-active {
  -webkit-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}

.tab-content {
  display: none;
  margin-top: 72px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.tab-content.is-active {
  display: block;
  -webkit-animation: tabFade 0.3s ease;
  animation: tabFade 0.3s ease;
}

@-webkit-keyframes tabFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes tabFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/*▲タブ切替*/
/*flex*/
.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

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

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

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

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

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

.fle-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: auto;
}

/*==================================================

header

==================================================*/
.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 99999;
  padding-right: 10px;
  padding-left: 12px;
  background: rgba(213, 222, 220, 0.8);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  height: 64px !important;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.header__in {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 64px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header__logo a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__logo {
  width: 158px;
}

.sns-btns {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.sns-btns .sns-btn {
  display: block;
}

.sns-btns .sns-btn + .sns-btn {
  margin-left: 24px;
}

/*nav
---------------------------------------------*/
.navi {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  letter-spacing: 0.2em;
}

.navi li + li {
  margin-left: 4rem;
}

.navi .cmn-btn {
  margin-left: 4.8rem;
}

.navi .en-btn {
  margin-left: 4.8rem;
}

.cmn-btn a {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #56bfc0;
  background: #ebf3f6;
  text-align: center;
  border: 1px solid #56bfc0;
  border-radius: 999px;
  height: 4.8rem;
  padding: 0 4rem;
  letter-spacing: 0.2em;
}

.cmn-btn a:hover {
  opacity: 1;
  background: #56bfc0;
  color: #fff;
}

.cmn-btns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
}

.cmn-btns div + div {
  margin-top: 2rem;
}

.cmn-btns a {
  width: 100%;
}

.en-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1.4rem;
}

.en-btn a {
  opacity: 0.5;
}

.en-btn .active a {
  opacity: 1;
}

.en-btn div:nth-child(2) {
  position: relative;
  z-index: 1;
  padding-left: 2rem;
}

.en-btn div:nth-child(2):before {
  content: '';
  width: 3.2rem;
  height: 1px;
  background: #343a3c;
  position: absolute;
  z-index: -1;
  left: -.8rem;
  top: 50%;
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transform: rotate(-52deg) translateY(-50%);
  transform: rotate(-52deg) translateY(-50%);
}

/*nav-modal*/
.nav-modal {
  position: fixed;
  right: 12px;
  top: 8px;
  z-index: 99999;
}

.nav-modal__trigger {
  position: relative;
  width: 40px;
  max-width: 64px;
  height: 48px;
  cursor: pointer;
  padding: 8px 0;
  z-index: 9999;
}

.nav-modal__trigger .ham {
  width: 36px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.nav-modal__trigger .ham span {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  width: 36px;
  height: 1px;
  background: #343a3c;
  position: absolute;
  left: 0;
}

.nav-modal__trigger .ham .top {
  -webkit-transform: translateY(-8px);
  transform: translateY(-8px);
}

.nav-modal__trigger .ham .bottom {
  -webkit-transform: translateY(8px);
  transform: translateY(8px);
}

.nav-modal__trigger > span {
  text-align: center;
  display: block;
  margin-top: 28px;
}

.nav-modal__trigger.is-active .ham .middle {
  background: rgba(255, 255, 255, 0);
}

.nav-modal__trigger.is-active .ham .top {
  -webkit-transform: rotate(-45deg) translateY(0px);
  transform: rotate(-45deg) translateY(0px);
}

.nav-modal__trigger.is-active .ham .bottom {
  -webkit-transform: rotate(45deg) translateY(0px);
  transform: rotate(45deg) translateY(0px);
}

.nav-modal__target {
  display: none;
  position: relative;
}

.nav-modal__content {
  position: absolute;
  z-index: 999;
  right: -12px;
  top: -56px;
  background: rgba(213, 222, 220, 0.9);
  -webkit-box-shadow: 0 1px 6px 0 rgba(32, 33, 36, 0.28);
  box-shadow: 0 1px 6px 0 rgba(32, 33, 36, 0.28);
  width: 100vw;
  padding: 24px 24px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
  height: 100vh;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}

.nav-modal__content__nav {
  letter-spacing: 0.08em;
  margin-top: 4rem;
}

.nav-modal__content__list {
  padding-left: 0;
}

.nav-modal__content__item {
  font-size: 1.5rem;
  text-align: left;
  position: relative;
}

.nav-modal__content__item + .nav-modal__content__item {
  margin-top: 1em;
}

.nav-modal__content__item a {
  display: block;
  position: relative;
  padding: 0.5rem 0;
  letter-spacing: 0.4em;
}

.nav-btns {
  margin-top: 4rem;
}

.nav-btns .cmn-btn a {
  width: 100%;
}

/*---------main_visual------------*/
.mv {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: url(../img/top/mv.jpg) no-repeat center/cover;
  background: #d5dedc;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 1;
  margin-top: 64px;
}

.mv:before {
  content: '';
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.mv video {
  height: 60vmin;
}

.mv .mv-ttl {
  /*position: absolute;
		left: 48%;
		top: 50%;
		transform:translate(-50%,-50%);
		z-index: 1;
		width: 50%;*/
  display: none;
}

.mv__news {
  width: 1080px;
  max-width: 90%;
  position: absolute;
  bottom: 0;
  color: #fff;
  font-weight: 300;
}

.mv .mv__news-ttl a {
  color: #fff;
}

.mv .mv__news-ttl {
  padding-left: 1rem;
  margin-left: 1rem;
  position: relative;
  border-left: 1px solid #fff;
}

.mv__news-list li {
  padding: 1rem 0;
  position: relative;
  line-height: 1.5;
}

.mv__news-list .thumb {
  z-index: 0;
}

.mv__news-list-head {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.mv__news-ymd {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
  display: inline-block;
  line-height: 1;
  z-index: 2;
  font-size: 1rem;
}

.mv__news-ttl {
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 1.3rem;
}

.mv__news-ttl a:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
}

/*==================================================

content

==================================================*/
.ttl {
  font-size: 2.8rem;
  letter-spacing: .4rem;
  margin-bottom: 4.8rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.ttl .sub-ttl2 {
  font-size: 1.3rem;
  letter-spacing: 0.4em;
  position: relative;
  z-index: 1;
  padding-left: 2.4rem;
}

.ttl .sub-ttl {
  font-size: 1.3rem;
  letter-spacing: 0.4em;
  position: relative;
  z-index: 1;
  padding-left: 2.4rem;
}

.ttl .sub-ttl2:before {
  content: '';
  width: 1.6rem;
  height: 3.2rem;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.ttl .sub-ttl:before {
  content: '';
  width: 1.6rem;
  height: 3.2rem;
  background: url(../img/common/sub_ttl_logo.png) no-repeat center/contain;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.ttl .main-ttl {
  display: block;
  line-height: 1.5;
  padding-right: 2rem;
}

.ttl .main-ttl img {
  max-height: 3.2rem;
}

/*top-concept
-------------------------------------*/
.top-concept {
  padding: 8rem 0;
  background: url(../img/top/concept_bg.jpg) no-repeat center/cover;
  text-align: center;
}

.top-concept .ttl {
  font-size: 3.2rem;
  text-align: center;
  margin-left: .5em;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.top-concept .main-ttl {
  position: relative;
  display: inline-block;
  padding-right: 0;
}

.top-concept .main-ttl:after {
  content: '';
  width: 20.2rem;
  height: 5rem;
  background: url(../img/common/border_deco.png) no-repeat center left/contain;
  position: absolute;
  right: 6rem;
  top: -2rem;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  pointer-events: none;
}

.top-concept .main-ttl img {
  max-height: 6.4rem;
}

.top-concept .cmn-btn {
  margin-top: 4.8rem;
}

/*img-area
-------------------------------------*/
section {
  background: #d5dedc;
}

.img-area {
  width: 100vw;
  height: 60vmin;
  position: relative;
}

.img-area--shops {
  -webkit-filter: blur(0);
  filter: blur(0);
  opacity: 1;
  -webkit-perspective: 1000;
  perspective: 1000;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.img-area--about {
  -webkit-filter: blur(0);
  filter: blur(0);
  opacity: 1;
  -webkit-perspective: 1000;
  perspective: 1000;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.img-area--shops .img-area__img {
  background-position: left 51% center;
}

.img-area--about .img-area__img {
  background-position: left 51% center;
}

.img-area--top-1 .img-area__img {
  /*background-position: left 35% center;*/
}

.img-area__inner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  clip: rect(auto, auto, auto, auto);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.img-area__img {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100vw;
  height: 60vmin;
  background-size: cover;
  background-position: center;
}

.img-area__img video {
  height: 82rem;
}

.video-area {
  width: 100%;
  height: 60vmin;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
}

.video-area video {
  height: 100%;
}

.video-area--story-1 {
  background: url(../img/story/cut_woman.jpg) no-repeat center/cover;
  background: url(../img/story/story_img_1.jpg) no-repeat center/cover;
}

.video-area--story-2 {
  background: url(../img/story/cut_4.jpg) no-repeat center/cover;
}

.video-area--story-3 {
  background: url(../img/story/cut_craft.jpg) no-repeat center/cover;
}

/*top-item
-------------------------------------*/
.top-item {
  padding: 3.2rem 0;
  background: url(../img/top/top_item_bg.jpg) no-repeat center/300%;
}

.top-item__in {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}

.top-item .ttl {
  margin-bottom: 4rem;
}

.top-item__text {
  width: 500px;
  max-width: 100%;
  padding: 0 5%;
  position: relative;
  z-index: 1;
  padding-bottom: 5rem;
  margin-top: 4rem;
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -ms-flex-order: 2;
  order: 2;
}

.top-item__text:after {
  content: '';
  width: 30rem;
  height: 10rem;
  background: url(../img/common/border_deco_2.png) no-repeat center bottom/contain;
  position: absolute;
  left: -5rem;
  bottom: 0rem;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
}

.top-item__text p {
  letter-spacing: 0.08em;
}

.top-item .cmn-btns {
  margin-top: 4rem;
}

/*top-bnr-wrap
-------------------------------------*/
.top-bnr-wrap {
  background: #fff;
  padding: 5rem 0;
}

a.top-bnr {
  display: block;
}

a.top-bnr + a.top-bnr {
  margin-top: 3.2rem;
}

/*top-news
--------------------------------------------*/
.top-news {
  padding: 6rem 0 16rem;
  position: relative;
  z-index: 1;
}

.top-news__in {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.top-news__ttl-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-bottom: 4rem;
}

.top-news__ttl-wrap .ttl {
  margin-bottom: 0;
}

.top-news__ttl-wrap .cmn-btn {
  position: absolute;
  width: 90%;
  left: 5%;
  bottom: 7rem;
}

.top-news__ttl-wrap .cmn-btn a {
  width: 100%;
}

.top-news__list-wrap {
  width: 100%;
  margin-top: 16px;
  border-top: 1px solid #56bfc0;
  border-bottom: 1px solid #56bfc0;
  padding: 3rem 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.top-news__list-wrap .news-list {
  width: 100%;
}

/*==================================================

footer

==================================================*/
#pageTop {
  position: fixed;
  bottom: 3%;
  right: 3%;
  z-index: 9999;
}

/*バー*/
.bar-area {
  text-align: center;
  color: #fff;
  height: 50rem;
}

.bar-area__bg-img {
  height: 50rem;
  background-image: url(../img/top/bar_bg.jpg);
}

.bar-area .inbox {
  padding: 8rem 0;
}

.bar-area p {
  text-shadow: 0 0 16px rgba(0, 0, 0, 0.8);
}

/*フォロー*/
.follow {
  padding: 6rem 0;
  background: #fff;
}

.follow__ttl {
  font-size: 3.2rem;
  letter-spacing: 0.4em;
}

.follow p {
  letter-spacing: 0.2em;
}

.follow__btns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 4rem;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.follow-btn {
  width: 100%;
  height: 56px;
  border: 1px solid #aeaeae;
  font-size: 1.4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  letter-spacing: 0.2em;
}

.follow-btn:hover {
  color: #343a3c;
}

.follow-btn .sns-icon {
  margin-right: 1rem;
}

.follow-btn + .follow-btn {
  margin-top: 2rem;
}

.sns-icon {
  display: inline-block;
  width: 2rem;
  height: 2rem;
}

.icon_insta {
  background: url(../img/common/icon_insta.svg) no-repeat center/contain;
}

.icon_tw {
  background: url(../img/common/icon_tw.svg) no-repeat center/contain;
}

.icon_fb {
  background: url(../img/common/icon_fb.svg) no-repeat center/contain;
}

.icon_youtube {
  background: url(../img/common/icon_youtube.svg) no-repeat center/contain;
}

.footer {
  position: relative;
  z-index: 1;
  background: #d5dedc;
}

.footer__in {
  padding: 5rem 0 8.8rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  line-height: 2;
}

.footer__logo {
  width: 220px;
  margin-bottom: 1.2rem;
}

.footer__nav {
  font-size: 1.2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  letter-spacing: 0.4em;
}

.footer__nav ul {
  display: none;
}

.footer__nav ul + ul {
  margin-left: 5rem;
}

.footer__nav li + li {
  margin-top: 2rem;
}

.footer__right {
  /*margin-top: 2rem;*/
  width: 100%;
}

.footer .cmn-btn {
  margin-top: 2rem;
  margin-left: -.4rem;
}

.footer .cmn-btn a {
  width: 100%;
}

.footer .sns-btns {
  margin-top: 2.4rem;
}

.copyright {
  font-size: 1.2rem;
  letter-spacing: 0.4em;
  opacity: .6;
  margin-top: 4rem;
  position: absolute;
  left: 5%;
  bottom: 1rem;
  width: 100%;
}

/*==================================================

下層

==================================================*/
.sv {
  background: url(../img/common/sv_bg.jpg) no-repeat center/200%;
  background-size: cover;
  height: 16rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding-bottom: 1rem;
}

.sv__ttl img {
  max-height: 2rem;
}

.sv .inbox {
  width: 1280px;
  max-width: 90%;
}

.page-story .sv__ttl img {
  max-height: 2.4rem;
}

#bread {
  padding: 16px 0;
  width: 100%;
  max-width: 1080px;
}

#bread ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#bread li {
  font-size: 12px;
  margin-right: 2px;
  padding-right: 14px;
  position: relative;
}

#bread li:after {
  content: "|";
  position: absolute;
  right: 3px;
  top: 1px;
}

#bread li:last-child:after {
  display: none;
}

#bread li {
  opacity: 0.7;
}

#bread li:last-child {
  opacity: 1;
}

@media screen and (max-width: 768px) {
  #bread {
    padding: 8px 5%;
  }
  #bread ul {
    width: auto;
    display: block;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
    white-space: nowrap;
  }
  #bread li {
    display: inline;
    padding-right: 20px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 40%;
    -ms-flex: 0 0 40%;
    flex: 0 0 40%;
  }
}

.title01 {
  font-size: 2.8rem;
}

.title02 {
  font-size: 2.4rem;
  font-weight: 700;
  border-left: 5px solid #56bfc0;
  position: relative;
  z-index: 1;
  padding-left: 1.6rem;
}

.title02:before {
  content: "";
  width: calc(100% + 5px);
  height: 1px;
  background: #56bfc0;
  position: absolute;
  left: -5px;
  bottom: -10px;
}

.title02 + * {
  margin-top: 30px;
}

/*story
------------------------------------------*/
.lower-sec__inner {
  padding-top: 4rem;
  padding-bottom: 12rem;
}

.lower-sec__inner .inbox {
  width: 1280px;
  max-width: 90%;
  margin: auto;
  /*display: flex;
			justify-content:space-between;*/
}

.lower-sec__ttl {
  /*margin-right: 4rem;*/
}

.lower-sec__ttl .ttl {
  margin-bottom: 3rem;
}

.lower-sec__body {
  width: 100%;
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  letter-spacing: 0.1em;
}

.story--1 {
  background: url(../img/story/story_bg_1.jpg) no-repeat center/cover;
}

.story--2 {
  /*background: url(../img/story/story_bg_2.jpg)no-repeat center / cover;*/
}

.story--3 {
  background: url(../img/story/story_bg_3.jpg) no-repeat center/cover;
}

.story-deco {
  position: relative;
  z-index: 1;
}

.story-deco:after {
  content: '';
  width: 296px;
  height: 111px;
  background: url(../img/story/border_story.png) no-repeat center/contain;
  position: absolute;
  right: -40px;
  top: 10%;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}

/*about
------------------------------------------*/
.about-body {
  width: 620px;
  max-width: 100%;
  padding-top: 0;
}

/*site_map
------------------------------------------*/
.site_map-li > li {
  border-bottom: 1px dotted #343a3c;
}

.site_map-li > li span {
  display: block;
  color: #343a3c;
  padding: 14px 0 11px;
  font-size: 18px;
}

.site_map-li > li a {
  display: block;
  color: #343a3c;
  padding: 14px 40px 12px;
  font-size: 18px;
  position: relative;
}

.site_map-li > li a:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 10px;
  border-color: transparent transparent transparent #56bfc0;
  position: absolute;
  left: 15px;
  top: 19px;
}

.site_map-li > li ul {
  margin: -10px 0 10px;
}

.site_map-li > li ul li a {
  font-size: 16px;
  margin-left: 40px;
  padding: 9px 40px 6px;
  border-bottom: 0;
  color: rgba(52, 58, 60, 0.8);
}

.site_map-li > li ul li a:before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #56bfc0;
  position: absolute;
  left: 15px;
  top: 15px;
  border-width: 0;
}

/*privacy
----------------------------------*/
.privacy_box {
  margin-bottom: 45px;
}

.privacy_box:last-child {
  margin-bottom: 0;
}

.privacy_text {
  font-size: 16px;
}

.pri-ttl {
  text-align: center;
  font-size: 24px;
  margin-bottom: 15px;
  color: #56bfc0;
  font-weight: bold;
}

.privacy .pri_bg {
  background-color: #fff;
  width: 100%;
  height: 225px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
  display: inline-block;
}

.privacy iframe {
  width: 100%;
  height: 225px;
  display: block;
}

.inline-privacy .privacy_box {
  padding: 15px;
}

.inline-privacy h1 {
  margin-bottom: 10px;
  font-size: 17px;
  font-weight: bold;
  padding: 3px 10px 2px;
  background-color: #f2f2f2;
}

.privacy_text {
  font-size: 14px;
}

/*news
-----------------------------------*/
.news-list li {
  padding: 0 0;
  position: relative;
  width: 100%;
  margin-bottom: 3rem;
}

.news-list li:last-child {
  margin-bottom: 0;
}

.news-list .thumb {
  z-index: 0;
}

.news-list-head {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  margin-top: 16px;
}

.news-ymd {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
  display: inline-block;
  line-height: 1;
  z-index: 2;
  font-size: 12px;
  display: block;
  opacity: .5;
  letter-spacing: 0.4em;
}

.tag {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin: 0 8px 0 0;
  display: block;
  min-width: 90px;
  position: relative;
}

.tag a {
  position: relative;
  z-index: 9;
  display: block;
  text-align: center;
  padding: 4px 10px 2px;
  background: #56bfc0;
  color: #fff;
  /*font-weight: 700;*/
  /*border-radius: 4px;*/
}

.news-ttl {
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 1.5rem;
}

.news-ttl a:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
}

/*====================
20240319追記
=====================*/
/*shops
------------------------------------------*/
.shops-inbox .shops-area-ttl {
  font-size: 2.4rem;
}

.shops-inbox + .shops-inbox {
  padding-top: 4rem;
}

.shops-inbox .lower-sec__ttl .ttl {
  font-size: 2rem;
}

.shops-table {
  margin-top: 2.4rem;
}

.shops-table table {
  border-top: 1px solid rgba(52, 58, 60, 0.2);
}

.shops-table table tr th {
  font-size: 1.6rem;
  line-height: 3.2rem;
  position: relative;
}

.shops-table table tr th i {
  margin-bottom: 0.5rem;
}

.shops-table table tr td {
  font-size: 1.2rem;
}

.page-btns a {
  color: #333;
  border-color: #333;
}

.page-btns a:hover {
  background-color: #333;
}

#shops-buy, #shops-rest, #shops-collabo {
  padding-top: 6rem;
}

/*====================
20250301追記
=====================*/
.en-ttl {
  display: block;
  font-size: 1.6rem;
  letter-spacing: 0.2em;
  opacity: 0.6;
  line-height: 2;
  margin-top: 1rem;
}

.shops-inbox .main-ttl {
  font-size: 3.2rem;
  letter-spacing: 0.3em;
}

.shops-inbox .main-ttl.shops-area-ttl {
  font-size: 2.4rem;
}

.top-concept .ttl {
  margin-left: 0;
}

.top-concept .ttl .main-ttl {
  margin-left: 0.5em;
}
