@charset "utf-8";
/* CSS Document */
/*　共通設定--------------------------------　*/
* {
  box-sizing: border-box;
}
html {
  /* reset-min設定の打ち消し
	background-color:transparent; */
}
body {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  color: #333;
}
/*　背景のボックスが必要な場合のみ設定  */
#back {}
p {
  font-size: 100%;
  line-height: 1.7em;
  margin: 0;
}
a {
  text-underline-offset: 3px;
}
ul {
  padding: 0;
}
strong {
  font-weight: bold
}
img {
  border: 0;
  vertical-align: bottom;
  max-width: 100%;
}
hr {
  margin: 0 0 5em 0;
  border: 0;
  height: 1px;
  clear: both;
  background: #bbb;
}
figure {
  margin: 0;
  padding: 0;
}
figcaption {
  font-size: 70%;
}
/*独自クラス*/
.pc-only {
  display: block;
}
.sp-only {
  display: none;
}
.tb-only {
  display: none;
}
.main .tac {
  text-align: center !important;
}
.main .tal {
  text-align: left !important;
}
.main .tar {
  text-align: right !important;
}
.note {
  font-size: 12px;
  margin: 8px 0 0;
}
img + .caption {
  font-size: 12px;
  text-align: right;
  margin-top: -4em;
  padding-bottom: 1em;
  font-family: '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', serif;
}
/*マージン・パディング*/
.main .mb0 {
  margin-bottom: 0 !important;
}
.main .mb1em {
  margin-bottom: 1em !important;
}
.main .mb2em {
  margin-bottom: 2em !important;
}
.main .mb3em {
  margin-bottom: 3em !important;
}
.main .mb4em {
  margin-bottom: 4em !important;
}
.main .mb5em {
  margin-bottom: 5em !important;
}
.main .mb10em {
  margin-bottom: 8em;
}
.main .fs-big {
  font-size: 250% !important;
}
.main .fs-s {
  font-size: 80% !important;
}
.ct-mb {
  margin-bottom: 10%;
}
/*　ヘッダー--------------------------------　*/
/*　ビジュアル--------------------------------　*/
.visual {
  animation: fadeIn 2s ease 0s 1 normal;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    -ms-filter: blur(6px);
    filter: blur(6px);
  }
  100% {
    opacity: 1;
    -ms-filter: blur(0px);
    filter: blur(0px);
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    -ms-filter: blur(6px);
    filter: blur(6px);
  }
  100% {
    opacity: 1;
    -ms-filter: blur(0px);
    filter: blur(0px);
  }
}
.visual {
  width: 100%;
  clear: both;
  height: 100%;
  max-height: 100vh;
  margin: 0px auto;
  padding: 0 0 0 0;
  position: relative;
  z-index: 1;
}
.visual .main-visual {
  width: 100%;
  height: 100%;
  max-height: 100vh;
  object-fit: cover;
  object-position: top;
}
/*logo*/
.visual .main-logo {
  position: absolute;
  top: 7%;
  left: 3%;
  max-width: 10%;
  margin-top: 0;
}
.visual .main-visual_ttl {
  position: absolute;
  bottom: 7%;
  right: 5%;
  max-width: 38%;
  margin-top: 0;
}
/*　コンテンツ外枠--------------------------------　*/
#contents {
  width: 100%;
  margin: 0 auto 0 auto;
  background-color: #f2edeb;
}
#contents:after, .cf:after {
  content: ".";
  height: 0;
  clear: both;
  visibility: hidden;
  display: block;
}
/*　コンテンツ　メインカラム--------------------------------　*/
.main {
  width: 100%;
  height: auto;
  padding: 80px 0 0;
  margin: 0px auto;
  /*overflow: hidden;*/
}
/*　見出し　--------------------------------　*/
h2 {
  margin: 32px auto 60px;
  padding: 0px 0 0px 0px;
  text-align: center;
  font-size: 200%;
  font-family: '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', serif;
  font-weight: 600;
  color: #333;
  letter-spacing: 0.2em;
  clear: both;
  position: relative;
}
h2 a {
  text-decoration: none;
}
h3 {
  margin: -8px 0 30px 0;
  padding: 0 0 0;
  line-height: 1.6;
  font-size: 150%;
  font-family: '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', serif;
  font-weight: 500;
  clear: both;
  text-align: center;
  position: relative;
  letter-spacing: 0.1em;
}
h3 a {
  color: #333;
  text-decoration: none;
}
h4 {
  text-align: left;
  margin: 0 0 10px;
  font-size: 110%;
  color: #333;
  font-family: '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', serif;
}
h5 {
  font-size: 100%;
  font-weight: bold;
  margin-bottom: 1em;
}
/*回りより小さい文字　small-text 80％*/
span.small-t {
  font-size: 80%;
  display: inline;
}
/*　本文　--------------------------------　*/
/*　文字色・サイズ　共通　*/
.main p, .main table, .main ul, .main ol {
  color: #333;
  font-size: 100%;
  line-height: 2;
  font-family: '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', serif;
  font-weight: 500;
}
/*　段落　*/
.main p {
  margin: 0 0 1em 0;
}
.main p img {
  margin: 0 10px 20px 10px;
}
/* リンク文字色 */
.main a {
  color: #333;
  text-decoration: none;
  transition: 0.2s ease color;
}
.main a:hover {
  color: #000;
  /* text-decoration:underline; */
}
.main a.link {
  text-decoration: underline;
  text-underline-offset: 3px;
}
/*No.タイトル*/
h3 .num-ttl {
  font-family: 'Times New Roman', Times, serif;
  font-size: min(3vw, 32px);
  font-weight: 600;
  display: block;
  padding-left: 1em;
  margin-bottom: 8px;
}
.num-ttl .fsm {
  font-size: 85%;
}
/*　リスト　*/
.main ul, .main ol {
  margin: 0 0 1em;
}
.main ul li {
  margin-bottom: 0.5em;
}
.main ol li {
  margin-bottom: 0.5em;
}
/* フッター--------------------------------　*/
#footer {
  margin: 0px auto 0 auto;
  padding: 50px 0;
  width: 100%;
  clear: both;
  background-color: #466e87;
  color: #fff
}
#footer .box {
  width: 87.5%;
  max-width: 1680px;
  margin: 0 auto 0;
  position: relative;
}
#footer .footer_ct p, #footer .footer_ct a, #footer .footer_ct h4 {
  color: #fff;
}
#footer .footer_ct li {
  list-style: none;
  color: #fff;
  line-height: 1.6;
  font-size: 92%;
}
/*#footer .footer_ct li a{
	text-decoration: none;
}*/
#footer .footer_ct .ct-text li span {
  font-size: 80%;
}
#footer .copyright {
  text-align: right;
  font-size: 12px;
  margin-top: auto;
}
/* ページトップ */
p.pagetop {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 20px;
}
p.pagetop a {
  display: block;
  width: 50px;
  height: 50px;
  text-align: center;
  color: #bbb;
  font-size: 20px;
  text-decoration: none;
  line-height: 50px;
  opacity: 0.85;
  text-decoration: none;
  border-radius: 50%;
  transition: 0.2s;
}
/*p.pagetop a:hover {
	background-color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	}
*/
.footer-logo {
  max-width: 100px;
  width: 8%;
  position: absolute;
  top: -15px;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
/* ★各ページ共通--------------------------------　*/
/*タイトル------------------------------------*/
/* コンテンツ枠 */
.main .inner {
  width: 87.5%;
  max-width: 1680px;
  margin: 0 auto;
  padding: 10px 0 10px;
}
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex_jc_c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.flex_ai_c {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.flex_ai_s {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.flex_end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.flex_reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.flex_wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -1.09%;
}
/*画像　共通*/
.ct-img img {
  margin-bottom: 3.75em;
}
.ct-text.mb {
  margin-bottom: 3.75em;
}
/*商品名　リンク*/
.item-detail {
  margin-bottom: 4em;
}
.item-detail p {
  font-size: 93.75%;
  line-height: 1.8;
  margin-bottom: 0;
}
.btn-more {
  text-decoration: underline;
  display: inline-block;
  padding: 0 0 0 1em;
}
/* プロローグ　--------------------------------　*/
.prologue {
  margin: 0 0 10%;
}
.main-ttl {
  text-align: center;
}
.main-ttl .sub-catch {
  color: #888;
  letter-spacing: 0.1em;
  margin-bottom: 0;
}
.main .read-text {
  font-size: 17px;
  line-height: 2.4;
	text-align: center;
}
/* 撮影地01　place_01--------------------------------　*/
.cl-pt_01, .pl.cl-pt_02, .cl-pt_03, .cl-pt_04, .cl-pt_05 {
  position: relative;
}
.w-half {
  width: 49.5238%;
}
.w-narrow {
  width: 42.38%;
}
.w-wide {
  width: 64.29%;
}
.m-auto {
  margin: 0 auto;
}
/* 店舗　tenpo--------------------------------　*/
.tenpo {
  background-color: #eee;
  padding: 10% 0 3%;
}
.tenpo .inner {
  margin-bottom: 0;
}
.tenpo .cl-left {
  width: 44.6428571%;
}
.tenpo .cl-right {
  width: 43.69%;
}
.manager {
  width: 42%;
  margin-left: 1em;
}
/*  アニメーションスタイル
-------------------------------------------*/
/*右から左*/
.slide-left {
  opacity: 0;
  transform: translate(-50%, 0);
  transition: 2s;
}
.slide-left.is-show {
  transform: translate(0, 0);
  opacity: 1;
}
/*左から右*/
.slide-right {
  opacity: 0;
  transform: translate(50%, 0);
  transition: 2s;
}
.slide-right.is-show {
  transform: translate(0, 0);
  opacity: 1;
}
/*下からふわっと表示*/
.slide-up {
  position: relative;
  transform: translate(0, 15%);
  opacity: 0;
  transition: 1s ease;
  -ms-filter: blur(10px);
  filter: blur(10px);
}
.slide-up.is-show {
  transform: translate(0, 0);
  opacity: 1;
  -ms-filter: blur(0px);
  filter: blur(0px);
}
li.slide-up:nth-child(1) {
  -moz-transition-delay: 100ms;
  -webkit-transition-delay: 100ms;
  -o-transition-delay: 100ms;
  -ms-transition-delay: 100ms;
}
li.slide-up:nth-child(2) {
  -moz-transition-delay: 200ms;
  -webkit-transition-delay: 200ms;
  -o-transition-delay: 200ms;
  -ms-transition-delay: 200ms;
}
li.slide-up:nth-child(3) {
  -moz-transition-delay: 300ms;
  -webkit-transition-delay: 300ms;
  -o-transition-delay: 300ms;
  -ms-transition-delay: 300ms;
}
li.slide-up:nth-child(4) {
  -moz-transition-delay: 400ms;
  -webkit-transition-delay: 400ms;
  -o-transition-delay: 400ms;
  -ms-transition-delay: 400ms;
}
li.slide-up:nth-child(5) {
  -moz-transition-delay: 500ms;
  -webkit-transition-delay: 500ms;
  -o-transition-delay: 500ms;
  -ms-transition-delay: 500ms;
}
li.slide-up:nth-child(6) {
  -moz-transition-delay: 600ms;
  -webkit-transition-delay: 600ms;
  -o-transition-delay: 600ms;
  -ms-transition-delay: 600ms;
}
li.slide-up:nth-child(7) {
  -moz-transition-delay: 700ms;
  -webkit-transition-delay: 700ms;
  -o-transition-delay: 700ms;
  -ms-transition-delay: 700ms;
}
li.slide-up:nth-child(8) {
  -moz-transition-delay: 800ms;
  -webkit-transition-delay: 800ms;
  -o-transition-delay: 800ms;
  -ms-transition-delay: 800ms;
}
li.slide-up:nth-child(9) {
  -moz-transition-delay: 900ms;
  -webkit-transition-delay: 900ms;
  -o-transition-delay: 900ms;
  -ms-transition-delay: 900ms;
}
li.slide-up:nth-child(10) {
  -moz-transition-delay: 1000ms;
  -webkit-transition-delay: 1000ms;
  -o-transition-delay: 1000ms;
  -ms-transition-delay: 1000ms;
}
/* 横スクロール--------------------------------　*/
.scroll_container {
  position: relative;
}
.sticky_wrap {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
/*.horizontal_scroll {
  display: flex;
  height: 100%;
  will-change: transform;
}

.horizontal_scroll img {
  flex-shrink: 0;        
  height: auto;           
  width: auto;
  max-height: 100vh;   
  max-width: 100vw;  
  display: block;
}
*/
.horizontal_scroll {
  display: flex;
  gap: 0; /* 余白を消す */
}
.horizontal_scroll img {
  width: auto;
  height: auto;
  max-height: 100vh;
  max-width: 100%;
  flex-shrink: 0;
  object-fit: contain;
  display: block;
}
/*
@media screen and (min-width: 1900px) {
	.tenpo .cl-right .ct-img{ 
		height: 66%;
		overflow: hidden;
	}
	.tenpo .cl-right .ct-img img{
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
}
*/
@media screen and (max-width: 1240px) {
  .sticky_wrap {
    position: sticky;
    top: 0;
    height: 80vh;
    overflow: hidden;
  }
  .horizontal_scroll img {
    width: auto;
    height: auto;
    max-height: 80vh;
  }
}
@media screen and (max-width: 960px) {
  html, body, header, section, article, nav, footer, div, span, p, h1, h2, h3, h4, ul, ol, li, dl, dt, dd, table, tr, th, td, tbody, thead, tfoot {
    margin: 0;
    padding: 0;
  }
  img {
    border: 0;
    vertical-align: bottom
  }
  body {
    width: 100%;
    background-color: #fff;
    /*	font: 14px/1.231 'ヒラギノ角ゴ pro W3', "Hiragino KaKu Gothic Pro", Osaka, sans-serif; */
    font-size: 14px;
    line-height: 1.8;
    -webkit-text-size-adjust: 100%;
  }
  * {
    box-sizing: border-box;
  }
  hr {
    margin: 0 0 3em 0;
  }
  /*独自クラス*/
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
  .tb-only {
    display: none;
  }
  /*マージン・パディング*/
  .main .mb4em {
    margin-bottom: 2em !important;
  }
  .main .mb5em {
    margin-bottom: 2.4em !important;
  }
  .main .mb10em {
    margin-bottom: 4em !important;
  }
  .main .sp-mb0 {
    margin-bottom: 0px !important;
  }
  .ct-mb {
    margin-bottom: 2.4em;
  }
  /*　コンテンツ　メインカラム--------------------------------　*/
  .main {
    padding: 40px 0 0;
  }
  /* コンテンツ枠 */
  .main .inner {
    width: 87.5%;
    margin: 0 auto;
    padding: 10px 0 0;
  }
  .flex {
    display: block;
  }
  .flex.remain {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .flex_jc_c {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .flex_ai_c {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .flex_ai_s {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .flex_end {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .flex_reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .flex_wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -1.09%;
  }
  /*画像　共通*/
  .ct-img img {
    margin-bottom: 2em;
  }
  .ct-text.mb {
    margin-bottom: 2em;
  }
  .ct-img-main{
	text-align: center;
  }
  .ct-img-main img {
    width: auto;
    height: 50vh;
	min-height: 320px;
    object-fit: cover;
	margin-right: auto;
    margin-left: auto;
  }
  /*商品名　リンク*/
  .item-detail {
    margin-bottom: 3em;
  }
  .item-detail p {
    font-size: 80%;
  }
  /*　見出し / 本文　--------------------------------　*/
  h2 {
    margin: 0px auto 24px;
    font-size: 150%;
    letter-spacing: 0.1em;
    padding-left: 1em;
  }
  h3 {
    margin: 1em 0 30px 0;
    padding: 0 0 0;
    line-height: 1.6;
    font-size: 130%;
  }
  h3 .num-ttl {
    font-size: 16px;
	padding-left: 0;
  }
  .main p, .main table, .main ul, .main ol {
    font-size: 92.86%;
	font-weight: 500;
	color: #111;
  }
  img + .caption {
    text-align: right;
    margin-top: -2em;
    padding-bottom: 1em;
    font-size: 10px;
  }
  .btn-more {
    padding: 0 0 0 0.5em;
  }
  /*　ビジュアル--------------------------------　*/
  .visual {
    width: 100%;
    clear: both;
    height: 100%;
    max-height: 100%;
  }
  .visual .main-visual {
    width: 100%;
    height: auto;
    max-height: 100%;
  }
  .visual .main-logo {
    display: none;
  }
  /* プロローグ　--------------------------------　*/
  .main .read-text {
    font-size: 13px;
    line-height: 2;
    margin-bottom: 3em;
	text-align: left;
	font-weight: 500;
	color: #111;
  }
  .place_01, .place_02, .place_03, .place_04, .epilogue {
    position: relative;
  }
  /* 撮影地--------------------------------　*/
	
  .scroll_container {
	margin-top: 1em;
	}
  .sticky_wrap {
    position: sticky;
    top: 0;
    height: 60vh;
    overflow: hidden;
  }
  .horizontal_scroll img {
    width: auto;
    height: auto;
    max-height: 60vh;
  }
  .w-half {
    width: 80%;
    margin: 0 auto;
  }
  .w-narrow {
    width: 80%;
    margin: 0 auto;
  }
  .w-wide {
    width: 80%;
    margin: 0 auto;
  }
	
	/*メインビジュアルの調整*/
	.place_01 .ct-img-main img {
        object-position: 60% center;
    }
	.place_02 .ct-img-main img {
        object-position: left;
    }
	.place_03 .ct-img-main img {
        object-position: 30% center;
    }
	.place_04 .ct-img-main img {
        object-position: 30% center;
    }
	
  /* フッター　footer--------------------------------　*/
  #footer {
    margin: 0px auto 0 auto;
    padding: 40px 0 10px;
  }
  #footer .footer_ct li {
    line-height: 2;
  }
  .footer-logo {
    width: 20%;
    margin: 2px 0;
    position: relative;
    top: inherit;
    left: inherit;
    right: inherit;
    bottom: inherit;
  }
  #footer .copyright {
    margin-top: 0px;
  }
}
@media screen and (max-width: 480px) {
  /*.sticky_wrap {
		position: sticky;
		top: 0;
		height: 67vw;
		overflow: hidden;
	}*/
  .horizontal_scroll img {
    height: 60vh;
    width: auto;
    display: block;
    object-fit: contain;
    flex-shrink: 0;
    max-width: inherit;
  }
  /*
.scroll_container {
  position: relative;
  width: 100%;
  overflow: hidden;
	margin-bottom: 2rem;}

/*
.horizontal_scroll {
  display: flex;
  width: max-content;
}

.horizontal_scroll img {
  width: auto;
  height: auto;
  max-height: 100vh;
  max-width: 100%;
  flex-shrink: 0;
  object-fit: contain;
  display: block;
}*/
}