@charset "UTF-8";

/* common */

body {
font-family: '游明朝体+36ポかな','YuMincho +36p Kana','Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN',serif;
font-size: 16px;
overflow-x: hidden;
position: relative;
}
h1 {
  font-size: 1.2em;
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
}
img {
  pointer-events: none;
}
p::selection,
div::selection,
h1::selection,
h2::selection,
h3::selection,
h4::selection,
h5::selection,
h6::selection,
img::selection,
p::selection,
small::selection,
span::selection,
ruby::selection,
rt::selection,
a::selection,
br::selection,
label::selection,
time::selection {
  background-color: thistle;
}
::-moz-selection {
	background: thistle; /* Firefox用 */
}
.yugothic {
  font-family: YuGothic,'Yu Gothic','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',sans-serif;
  letter-spacing: .02em;
  font-weight: bolder;
}
.sec-y-space {
  padding-top: 2em;
  padding-bottom: 2em;
}
.sec-t-space {
  padding-top: 2em;
}
.inline-block {
  display: inline-block;
}
.video-wrapper {
  height: 100%;
  height: 100vh;
  min-height: 550px;
  position: relative;
  width: 100%;
  overflow: hidden;
}
.container {
  max-width: 1024px;
  margin: 0 auto;
}
.txt-center {
  text-align: center;
}
.underline {
  text-decoration: underline;
}
.x-spacing {
  padding-left: 8px;
  padding-right: 8px;
}

#topimg-sp {
  height: 100vh;
  width: 100%;
  min-width: 100vw;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background-image: url(images/poster.JPG);
  background-position: center center;
  background-size: cover;
}


#video-sp {
  /* background: url('images/video-poster-sp.JPG') no-repeat;
  background-attachment: fixed;
  background-position: center center;
  background-size: cover; */
  left: 0;
  min-height: 100%;
  min-height: 100vh;
  min-width: 100%;
  min-width: 100vw;
  position: absolute;
  top: 0;
  z-index: 1;
}
#video-pc {
  /* background: url('images/video-poster-sp.JPG') no-repeat;
  background-attachment: fixed;
  background-position: center center;
  background-size: cover; */
  left: 0;
  /* 以下、画面いっぱいにするためのCSS設定*/
  min-height: 100%;
  min-height: 100vh;
  min-width: 100%;
  min-width: 100vw;
  position: absolute;
  top: 0;
  z-index: 1;
}
.logo-and-phone-sp {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 200;
}
.logo-wrapper{
  display: inline-block;
  z-index: 200;
  text-align: center;
}
#logo-sp {
  width: auto;
  height: 50vh;
  opacity: .9;
}
.logo-wrapper-pc {
  display: none;
}
.phonecal-btn-sp {
  display: block;
  width: 100%;
  text-align: center;
  z-index: 200;
  margin-top: .5em;
}
.phonecal-btn-sp a {
  color: white;
  display: inline-block;
  padding: 1em;
  margin: 0 auto;
  border: 2px solid white;
  font-size: 1em;
  transition: .2s;
}
.phonecal-btn-sp a:hover {
  background-color: rgba(255,255,255, .6);
}
.phonecal-pc {
  display: none;
}
.menu-pc {
  display: none;
  position: absolute;
  top: 160px;
  left: 50%;
  margin-left: -420px;
  z-index: 200;
}
.vertically-txt {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
.menu-pc ul{
  color: white;
}
.menu-pc ul li a{
  display: inline-block;
  color: white;
  padding: 0 16px 8px 8px;
  height: auto;
  font-size: 1.2em;
  letter-spacing: .2em;
  position: relative;
}
.menu-pc ul li{
  margin-left: 8px;
}
.menu-pc ul li a::before {
  content: '';
  position: absolute;
  top: 1em;
  right: 16px;
  display: inline-block;
  width: 1px;/*線の太さ*/
  height: 0%;
  background-color: white;/*線の色*/
  animation: back-drightline-animation .2s ease;
  animation-fill-mode: backwards;
}
.menu-pc ul li a:hover::before {
  content: '';
  position: absolute;
  top: 1em;
  right: 16px;
  display: inline-block;
  width: 1px;/*線の太さ*/
  background-color: white;/*線の色*/
  animation: rightline-animation .2s ease .2s;
  animation-fill-mode: forwards;
}
@keyframes rightline-animation {
  0% {height: 0%;}
  100% {height: calc(100% - 1.2em);}
}
@keyframes back-drightline-animation {
  0% {height: calc(100% - 1.2em);}
  100% {height: 0%;}
}
@keyframes rightline-animation-f {
  0% {height: 0%;}
  100% {height: 100%;}
}
@keyframes back-drightline-animation-f {
  0% {height: 100%;}
  100% {height: 0%;}
}
.arrow-wrapper {
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 200;
  opacity: .8;
}
.arrow-wrapper a{
  display: inline-block;
  padding: 32px 32px 0;
}
.arrow-wrapper img {
  height: 60px;
  width: auto;
}

.to_top-wrapper {
  width: 100%;
  text-align: center;
  position: fixed;
  bottom: 32px;
  left: 0;
  z-index: 400;
}
#to_top {
  position: relative;
  bottom: 0;
  height: 32px;
  width: 100%;
  z-index: 100;
  text-align: right;
}
#to_top a {
  display: inline-block;
  position: absolute;
  width: 40px;
  height: 40px;
  z-index: 800;
  right: 0;
  top: 0;
  padding-bottom: 16px;
  box-sizing: content-box;
  background-image: url(images/totop.png);
  background-size: contain;
  margin-right: 32px;
}






/* Header */
header {
  position: fixed;
  z-index: 400;
  width: 100%;
}
.headerbar-fixer {
  position: fixed;
  z-index: 400;
  width: 100%;
  height: 0;
}
.new-mark-sp + span {
  display: none;
}
.topbar-article-date {
  display: none;
}
#header-bar {
  display: block;
  font-size: .9em;
  padding: 4px;
  color: white;
  width: 100%;
  background-color: rgb(228,36,15);
  box-shadow: 0px 2px 3px 0px rgba(0,0,0,0.1);
}
#header-bar p {
  display: block;
  color: white;
  padding: 4px auto;
  line-height: 2em;
}
.new-mark-sp,
.new-mark-sp + span {
  color: white;
  border: 1px double white;
  padding: .5em;
  font-weight: bold;
  margin-right: .5em;
  font-size: .8em;
}






/* Toggle Menu */
#navToggle {
  text-align: right;
  display: inline-block;
  position: absolute;
  right: 0;
  top: inherit;
  width: 64px;
  padding: 16px;
  box-sizing: border-box;
  cursor:pointer;
  margin-right: 0;
  z-index: 1200;
}
.fixed {
  position: fixed !important;
}
#navToggle > div {
  display: flex;
  justify-content: flex-end;
}
#navToggle .humberger {
  position:relative;
  height:32px;
  width: 32px;
  padding: 0;
  margin: 0;
}
#navToggle span {
  display:block;
  position:absolute;
  width:100%;
  left: 0;
  border-bottom:solid 3px rgba(255,255,255, .8);
  box-shadow: 0 0 3px 1px rgba(0,0,0, .1);
  transition: .5s ease-in-out;
}
#navToggle span:nth-child(1) {top:0;}
#navToggle span:nth-child(2) {top:11px;}
#navToggle span:nth-child(3) {top:22px;}
#menu-sp {
  position: absolute;
  right:0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: white;
  transform: translateY(-100%);
  opacity: 0;
  transition:.4s ease-in-out;
}
#menu-sp ul{
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
#menu-sp ul li{
  width: 100%;
  height: auto;
  border-bottom: 1px solid silver;
  transition:.7s;
  flex-grow: 1;
}
#menu-sp ul li > a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: black;
  width: 100%;
  height: 100%;
  text-align: center;
  font-size: 1.5em;
}
#menu-sp ul li:last-child{
  font-size: .6em !important;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
  max-height: 14%;
}
#menu-sp ul li:first-child {
  padding-top: 16px;
}
#menu-sp .instagram-logo {
  margin-bottom: .5em;
}
.instagram-logo a {
  display: inline-block;
  padding: 4px;
}
.email {
  width: 120px;
  height: auto;
}



/* Click Toggle(Button) */
.openNav #menu-sp ul li{
}
.openNav #navToggle span {
  box-shadow: none;
      border-bottom: solid 3px black;
}
.openNav #navToggle span:nth-child(1) {
  top: 11px;
  transform:rotate(-45deg);
}
.openNav #navToggle span:nth-child(2),
.openNav #navToggle span:nth-child(3) {
  top: 11px;
  transform:rotate(45deg);
}







/*header menu*/
.openNav #menu-sp {
  transform: translateY(0);
  opacity: .95;
}



main {
}



/* products */
.title-wrapper-products {
  background-image: url(images/washi-sp.png);
  background-position: center;
  background-size: 200px;
  padding: 1em 0;
}
.washi-back {
  display: block;
  width: 100%;
}
.washi-back > div {
  display: block;
}
.position-right {
  justify-content: flex-end;
}
.position-left {
  justify-content: flex-start;
}
.position-right > div {
  margin-right: 0;
}
.position-left > div {
  margin-left: 0;
}
.position-left h2,
.position-right h2 {
  padding-left: 8px;
}
.product {
  display: none;
}
.product-sp {
  display: flex;
  margin-bottom: 5em;
}
#mushi-imo .product-sp h2{
  z-index: 100;
  display: inline-block;
}
.product-sp:not(:last-child) {
  margin-bottom: 5em;
}
.product-sp > div {
  width: calc(100% - 60px);
  height: auto;
}
.product-sp > div img {
  width: 100%;
  height: auto;
}
.product-sp h2 img {
  width: 60px;
  height: auto;
}
#mushi-imo .product-pc {
  display: none !important;
}
#mushi-imo .position-right {
}
#mushi-imo .product-sp {
  display: flex;
  background-image: url(images/mushiimo-sp.png);
  overflow: visible;
  background-size: contain;
  background-position: center;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  height: calc(100vw);
}
.txt-backwhite span,
.txt-backwhite img{
  background-color: rgba(255,255,255, .8);
  padding: .2em;
}
#amakouji {
  display: none;
}
#amakouji-sp {
  background-image: url(images/kouji_back-sp.jpg);
  background-position: center;
  background-size: cover;
  padding-top: 32px;
  padding-bottom: 32px;
  position: relative;
}
#amakouji-sp > div {
  display: flex;
}
.amakouji-pack-sp {
  display: flex;
  flex-direction: column;
}
.amakouji-pack-sp p {
  padding-left: 8px;
  padding-top: 8px;
  padding-bottom: 3em;
}
.amakouji-pack-sp img {
  display: block;
  width: 100%;
  height: auto;
}
#amakouji-sp h2 {
  padding-right: 8px;
  padding-left: 16px;
}
#amakouji-sp h2 img {
  width: 100px;
  height: auto;
}
.mushiimo-sp p {
  margin-bottom: 2em;
}





/* kohousou */
#sec-for_ceremonies {
  padding-top: 80px;
}
.kohousou-clip-wrapper {
  position: relative;
  height: 160px;
}
#sec-for_ceremonies > div:first-child {
  display: flex;
  justify-content: center;
  height: 400px;
}
.ceremonies-txt {
  width: 100%;
  text-align: center;
}
.ceremonies-txt:first-child {
  background-image: url(images/cloud1.png);
  background-size: contain;
  background-position: left 20%;
}
.ceremonies-txt:last-child {
  background-image: url(images/cloud2.png);
  background-size: contain;
}
#sec-for_ceremonies h1 {
  background-image: url(images/kinpaku.png);
  background-size: contain;
  display: inline-block;
  padding: 0 16px;
  font-size: 2em;
}
#sec-for_ceremonies > div div p {
  display: inline-block;
  font-size: 1.2em;
  line-height: 1.6em;
  margin-top: 1em;
  letter-spacing: .1em;
  text-align: left;
}
.clip1-kohousou {
  width: 50%;
  height: 250px;
  position: absolute;
  left: 0;
  top: -100px;
  background-image: url(images/clip1-kohousou.png);
  background-position: center;
  background-size: contain;
}
.clip2-kohousou {
  width: 50%;
  height: 250px;
  position: absolute;
  right: 0;
  top: -100px;
  background-image: url(images/clip2-kohousou.png);
  background-position: center;
  background-size: contain;
}
.caution_kohousou {
  padding: 16px 0;
}
.caution_kohousou > div {
  text-align: center;
}
.caution_kohousou .call_btn {
  display: inline-block;
  text-align: center;
  transition: .2s;
}
.caution_kohousou .call_btn a {
}

.caution_kohousou p {
  text-align: right;
  font-size: .8em;
  padding: 2em 0;
  padding-right: 8px;
  border-bottom: 1px solid silver;
}
.arrow-gray {
  text-align: center;
}
.arrow-gray a {
  padding: 1em;
  display: inline-block;
}
.arrow-gray img {
  width: 30px;
  height: auto;
}
















/* shops */
#sec-shops {
  padding-top: 40px;
}
#sec-shops .title-wrapper {
}
#sec-shops p{
  margin: 0 auto;
  line-height: 1.5em;
  height: 25em;
  background-image: url(images/kinako.png);
  background-position: bottom center;
  padding-bottom: 5em;
  padding-top: 2em;
}
.three-flex-maps {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 64px;
  padding-bottom: 32px;
  border-bottom: 1px solid silver;
}
.map-wrapper {
  width: 100%;
  margin-bottom: 40px;
}
.map-wrapper div {
  text-align: left;
  width: 100%;
  height: 299px;
  overflow: hidden;
  position: relative;
}
.map-wrapper iframe {
  width: 100%;
  height: 100%;
}
.link-btn {
  background-color: white;
  color: black;
  padding: 2px 4px;
  margin-left: 8px;
  border-radius: 1px;
  font-size: .7em;
  vertical-align: middle;
}
.map-wrapper h3 {
  background-image: url(images/haibuskasu.jpg);
  background-position: left center;
  background-size: contain;
  text-align: left;
  padding-left: 1.5em;
}















/* modal */
.vh100 {
  height: 100vh;
  overflow: hidden;
}
/* モーダルウィンドウのスタイル */
.modal {
  position:absolute;
  width:100%;
  height: 100vh;
  top:0;
  left:0;
  padding: 32px;
  box-sizing: border-box;
  display:none;
  z-index:1000;
}

/* オーバーレイのスタイル */
.overLay {
  position:absolute;
  top:0;
  left:0;
  background:rgba(0,0,0,0.5);
  width:100vw;
  height:100vh;
  overflow-y: scroll;
}

/* モーダルウィンドウの中身のスタイル */
.inner-pc {
  display: none;
}
.inner-pc,
.inner-sp {
  background-color: white;
  width: 100%;
  max-width: 1024px;
  height: 100%;
  position:absolute;
  box-sizing: border-box;
  z-index:1001;
  top: 50%;
  left:50%;
  transform:translate(-50%,-50%);
  overflow: hidden;
  background-image: url(images/panari.png);
  background-position: bottom center;
  background-size: contain;
  overflow-y: scroll;
}
.sakura-back {
  position: absolute;
  z-index:10;
  width: 100%;
  height: 160px;
  top: 0;
  left: 0;
  overflow: hidden;
  background-image: url(images/sakura.png);
  background-position: bottom center;
  background-size: cover;
}
.inner-sp .name {
  line-height: 1.3em;
}
.inner-sp .modal-flex {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 5em;
}
.inner-sp .modal-underline::after {
  content: '';
  width: 50%;
  box-sizing: border-box;
  height: 1px;
  background-color: silver;
}
.inner-sp .modal-img {
  padding-left: 8px;
  padding-right: 8px;
}
.inner-sp .modal-txt {
  margin: 2em 0;
}
.inner-sp .modal-img img {
  width: 100%;
  height: auto;
}
.inner-sp h2 img {
  width: 120px;
  height: auto;
}
.inner-sp #greeting {
  background-image: url(images/imo-bowl-sp.png);
  background-size: 240px;
  background-position: center center;
  width: 100%;
  height: 20em;
}
.inner-sp .modal-close-btn-wrapper {
  text-align: center;
  margin-bottom: 10em;
}
.inner-sp .modal-close-btn-wrapper a {
  display: inline-block;
  padding: .5em 1em;
  color: black;
  border: 1px solid black;
  opacity: .2s;
}
.inner-sp .modal-close-btn-wrapper a:hover {
  display: inline-block;
  padding: .5em 1em;
  background-color: black;
  color: white;
}



/* instagram */
#sec-instagram > div {
  padding: 3em 8px 0;
}
#sec-instagram h1 {
text-align: center;
margin-bottom: 1em;
}
#instagram-sp {
  display: block;
}
#instagram-pc {
  display: none;
}














/* footer */
footer > div {
  border-top: 1px solid silver;
  font-size: .8em;
}
.fotter-info-wrapper {
  text-align: center;
  padding-top: 40px;
  padding-bottom: 40px;
}
.fotter-info-wrapper p {
  margin: 0 auto 32px;
}
.footer-logo a {
  display: inline-block;
  padding: 0;
  margin-left: -10px;
}
.footer-logo img {
  width: 80px;
  height: auto;
}
.instagram-logo img {
  width: 20px;
  height: auto;
}
.footer_nav-flexbox {
  text-align: center;
}
.footer_nav {
  height: 10em;
}
.call_btn {
  margin: 1em;
  display: inline-block;
  text-align: center;
}
.call_btn a {
  color: white;
  display: block;
  width: 100%;
  height: 100%;
  padding: 1em 2em;
  /* background-color: rgb(228,36,15); */
  background-image: url(images/washi-btn.jpg);
  border: 1px solid transparent;
  transition: .2s;
}
.call_btn a:hover  {
  border: 1px solid dimgray;
}
.footer_nav .vertically-txt li a{
  text-align: left;
}
.footer_nav ul {
  padding: 8px 0;
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
}
.footer_nav ul li:not(:first-child) {
  margin-right: 2em;

}
.footer_nav ul li a {
  color: dimgray;
  text-align: left;
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
  padding-bottom: .2em;
  padding: 1em 0;
}
.fotter-info-wrapper a {
  color: black;
}


.copyright {
  color: dimgray;
  text-align: center;
}



/* sec-login */
#sec-login  {
  background-color: rgb(237,237,237);
  height: 100vh;
  padding-top: 3em;
}
#sec-login > div{
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}


/* sec-edit */
#sec-edit {
  background-color: #FFFCF6;
  padding-bottom: 5em;
}
.btn_cancel-wrapper {
  margin-top: 2em;
}
.btn_cancel {
	display: inline-block;
	margin-right: 10px;
	padding: 10px 20px;
	color: #555;
  background-color: white;
	font-size: 86%;
	border-radius: 5px;
	border: 1px solid #999;
}
.btn_cancel:hover {
	color: #999;
	border-color: #999;
	text-decoration: none;
}




/* sec-delete */
#sec-delete {
  background-color: #FFFCF6;
  padding-bottom: 5em;
}
.text-confirm {
	margin-top: 1em;
	margin-bottom: .5em;
	text-align: left;
	line-height: 1.6em;
}



/* sec-infomation */
#sec-infomation {
  background-color: #FFFCF6;
  padding-bottom: 5em;
}
#logout-btn {
  text-align: right;
  width: 100%;
  max-width: 896px;
  margin: 0 auto;
}
#logout-btn input[name=btn_logout] {
	margin-top: 16px;
	margin-bottom: 16px;
	background-color: #666;
  min-width: 100px;
  width: 20%;
  max-width: 200px;
  margin-right: 1em;
  background-color: transparent !important;
  color: black;
}
#logout-btn input[name=btn_logout]:hover {
	background-color: #777;
}

.article-wrapper h2 {
  text-align: center;
  margin: 1em 0;
}
.id {
  font-size: .7em;
  color: silver;
  margin-right: .3em;
}
.an-info-wrapper {
  background-color: white;
  border-radius: 8px;
  padding: 8px;
  border: 1px solid #E8E5E0;
  margin-bottom: 1em;
}
.an-info-wrapper h1 {
  font-size: 1.5em;
  margin-right: .5em;
  display: inline-block;
}
.an-info-wrapper div:first-child {
  border-bottom: 1px solid silver;
}
.an-info-wrapper div:first-child p {
  color: dimgray;
  display: inline-block;
}
.an-info-wrapper div:last-child {
  font-size: .8em;
  margin-top: 1em;
}




/* admin */
.form-wrapper {
  text-align: center;
  max-width: 896px;
  margin: 0 auto;
}
form#submit {
  width: 100%;
  padding-bottom: 3em;
  margin-bottom: 3em;
  border-bottom: 1px solid #E8E5E0;

}
form#submit > div {
  text-align: left;
}
label {
  width: 100%;
  margin: 8px 0;
  display: block;
}
input, textarea {
  width: 100%;
  padding: 8px;
  background-color: white !important;
  border: 1px solid #E8E5E0 !important;
}
input[type=submit] {
  width: 70%;
  margin: 2em auto;
  color: white;
  background-color: rgb(174,55,174) !important;
  border: 1px solid rgb(105,33,105) !important;
  padding: 16px 0;
}
#view_title {
  margin-bottom: 1em;
}
.success_message{
  color: rgb(53,206,53);
  padding: 1em;
  border: 3px solid rgb(53,206,53) !important;
  background-color: white;
  max-width: 896px;
  margin: 0 auto 1em;
  font-family: sans-serif;
  border-radius: 16px;
}
.error_message li,
.error_message p {
  color: rgb(236,26,71);
  padding: 1em;
  border: 3px solid rgb(236,26,71) !important;
  background-color: white;
  max-width: 896px;
  margin: 0 auto 1em;
  font-family: sans-serif;
  border-radius: 16px;
}
.edit-delete-btns a {
  color: rgb(46,165,219);
  font-family: sans-serif;
}
.edit-delete-btns a:first-child {
  margin-left: 1em;
  margin-right: .5em;
}

/* pagenation */
.pagenation-wrapper {
  display: flex;
  justify-content: center;
  max-width: 896px;
}
.total-page {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 1em !important;
  line-height: 2em;
}
.pagenation-wrapper > * {
  display: inline-block;
  padding: 1em;
  font-size: 1.2em;
}
.pagenation-wrapper .current-page {
  font-weight: bold;
}
.pagenation-wrapper a {
  color: dimgray;
}
.pagenation-wrapper a:hover {
  text-decoration: underline;
}








@media screen and (min-width: 481px) {
  h1 {
    font-size: 1.8em;
  }
  h3 {
    font-size: 1.3em;
  }
  #mushi-imo {
    padding-top: 40px;
  }



  .clip1-kohousou {
    width: 50%;
    height: 300px;
    position: absolute;
    left: 0;
    top: -150px;
    background-image: url(images/clip1-kohousou.png);
    background-position: top center;
    background-size: contain;
  }
  .clip2-kohousou {
    width: 50%;
    height: 300px;
    position: absolute;
    right: 0;
    top: -150px;
    background-image: url(images/clip2-kohousou.png);
    background-position: top center;
    background-size: contain;
  }

  #sec-instagram h1 {
    text-align: center;
  }



  .modal .inner-pc {
    width: calc(100% - 32px);
    height: calc(100% - 32px);
  }

  #amakouji-sp h2 img {
    width: 140px;
    height: auto;
  }

  .new-mark-sp {
    display: none;
  }
  .new-mark-sp + span {
    display: inline;
  }

}

















@media screen and (min-width: 897px) {
  body {
  }
  h1 {
    font-size: 2.2em;
  }
  #logo-sp {
    display: none;
  }
  .logo-wrapper-pc {
    display: inline-block;
    position: absolute;
    top: 160px;
    left: 50%;
    margin-left: -90px;
    z-index: 200;
  }
  .logo-wrapper-pc img {
    width: 200px;
    height: auto;
    opacity: .9;
  }
  .phonecal-btn-sp {
    display: none;
  }
  .phonecal-pc {
    display: block;
    position: absolute;
    top: 40px;
    right: 0;
    z-index: 200;
    opacity: .9;
  }
  .phonecal-pc a{
    display: block;
  }
  .copy-wrapper{
    display: inline-block;
    position: absolute;
    top: 160px;
    right: 50%;
    margin-right: -320px;
    z-index: 200;
  }
  #copy-pc {
    display: inline-block;
    width: 120px;
    height: auto;
  }
  #menu-sp {
    display: none;
  }
  .menu-pc {
    display: block;
  }
  .arrow-wrapper img {
    height: 80px;
    width: auto;
  }

  /* header (min-width: 897px) */
  header {
    width: 100%;
  }
  .topbar-article-date {
    display: inline;
  }


  /* Toggle Menu (min-width: 897px) */
  #navToggle {
    display:none;
  }

  /* modal (min-width: 897px) */
  .inner-sp {
    display: none;
  }
  .modal .inner-pc {
    display: block;
    width: calc(100% - 80px);
    height: calc(100% - 80px);
  }

  /* モーダルウィンドウの中身のスタイル */
  .inner-pc h2 {
    display: inline-block;
    margin-top: -4em;
  }
  .inner-pc h2:first-child {
    margin-right: 1em;
  }
  .inner-pc .title-wrapper-products {
    margin-bottom: 3em;
  }
  .inner-pc h2 img{
    width: 120px;
    height: auto;
    margin-right: 1em;
    margin-left: 1em;
  }
  .inner-pc .modal-img {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 300px;
  }
  .inner-pc .modal-img img{
    position: absolute;
    left: 0;
    top: 50%;
    height: auto;
    transform:translateY(-50%);
    width: auto;
    height: 100%;
  }
  .inner-pc .modal-txt {
    margin-left: 2em;
    line-height: 1.8em;
  }
  .inner-pc .modal-flex {
    display: flex;
    flex-direction: row-reverse;
  }
  .inner-pc .modal-flex:not(:last-child) {
    margin-bottom: 5em;
  }
  .inner-pc .modal-close-btn-wrapper {
    text-align: center;
    margin-bottom: 10em;
  }
  .inner-pc .modal-close-btn-wrapper a {
    display: inline-block;
    padding: .5em 1em;
    color: black;
    border: 1px solid black;
    opacity: .2s;
  }
  .inner-pc .modal-close-btn-wrapper a:hover {
    display: inline-block;
    padding: .5em 1em;
    background-color: black;
    color: white;
  }
  .inner-pc .name {
    margin-right: 2em;
    display: inline-block;
    text-align: center;
  }
  #greeting {
    background-image: url(images/imo-bowl.png);
    background-position: 10% bottom;
    background-size: 180px;
  }





  /* products (min-width: 897px) */
  #sec-products > div {
    overflow: hidden;
    position: relative;
  }
  #sec-products > div {
    background-image: url(images/washi-seat.jpg);
    background-position: top center;
    background-repeat: repeat-y;
    padding-top: 40px;
    padding-bottom: 320px;
  }
  .leaf1-back {
    background-image: url(images/leaf1.png);
    background-repeat: no-repeat;
    background-size: 300px;
    background-position: right 40%;
    position: absolute;
    top: 16%;
    right: -3%;
    width: 100%;
    height: 400px;
  }
  .leaf2-back {
    background-image: url(images/leaf2.png);
    background-repeat: no-repeat;
    background-size: 380px;
    background-position: left 50%;
    position: absolute;
    top: 20%;
    left: -3%;
    width: 100%;
    height: 400px;
  }
  .imo1-back {
    background-image: url(images/imo1.png);
    background-repeat: no-repeat;
    background-position: 98% 23%;
    position: absolute;
    top: 30%;
    left: 32px;
    width: 100%;
    height: 200px;
  }
  .imo2-back {
    background-image: url(images/imo2.png);
    background-repeat: no-repeat;
    background-position: 2% 32%;
    position: absolute;
    top: 42%;
    right: 32px;
    width: 100%;
    height: 200px;
  }
  .kokutou-back {
    background-image: url(images/kokutou.png);
    background-repeat: no-repeat;
    background-position: 2% 14%;
    position: absolute;
    top: 18%;
    left: 32px;
    width: 100%;
    height: 200px;
  }
  .washi-back {
    display: block;
  }
  .washi-back > div {
    display: flex;
  }
  .title-wrapper-products {
    background-image: url(images/washi-title-pc.png);
    background-size: 240px;
  }
  .product {
    z-index: 100;
    width: inherit;
    display: inline-block;
    margin-bottom: 5em;
  }
  .position-left h2,
  .position-right h2 {
    padding-left: 16px;
  }
  .product h2 img {
    width: 60px;
    height: auto;
  }
  .product > p {
    display: block;
    padding-left: 16px;
    line-height: 2em;
    margin-top: 40px;
  }
  .product-img-pc {
    margin-top: 40px;
    width: 500px;
    height: auto;
  }
  .product-sp {
    display: none !important;
  }

  #mushi-imo {
    padding-top: 80px;
    position: relative;
  }
  #mushi-imo .product-pc {
    display: block !important;
    background-image: url(images/mushiimo.png);
    overflow: visible;
    background-size: contain;
    background-position: center;
    width: 100%;
    height: 600px;
  }

  #amakouji-sp {
    display: none;
  }
  #amakouji {
    display: block;
    position: relative;
    overflow: hidden;
    z-index: 300;
    margin-top: -160px;
    position: relative;
  }
  #amakouji::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 120%;
  height: 100%;
  margin: 3% -10% 0;
  padding: 40px 0;
  background-image: url(images/kouji.jpg);
  background-color: rgba(255,255,255, .5);
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transform-origin: bottom center;
  -ms-transform-origin: bottom center;
  transform-origin: bottom center;
  -webkit-transform: rotate(-4deg);
  -ms-transform: rotate(-4deg);
  transform: rotate(-3deg);
  z-index: 1;
  overflow: hidden;
}
  #amakouji > div:not(.award-mark-pc) {
    height: 100vh;
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .clip_imo_paste {
    width: 600px;
    height: 600px;
    background-image: url(images/clip-beniimo-kouji.png);
    background-size: contain;
    position: absolute;
    bottom: -850px;
    right: 80px;
    z-index: 100;
  }
  #amakouji h2 {
    width: 160px;
    height: auto;
    text-align: left;
    margin-left: 1em;
  }
  #amakouji-title {
    text-align: left;
    width: 160px;
    height: auto;
  }
  .imokouji-img-wrapper {
    display: flex;
    width: 500px;
    padding-bottom: 32px;
    flex-direction: column;
    flex-wrap: wrap;
  }
  .roop-wrap {
    margin-top: 16px;
    overflow: hidden;
    width: 100%;
    height: 210px;
    position: relative;
  }
  .roop-wrap > div {
    position: absolute;
    top: 0;
    left: 0;
  }
  .roop-wrap > div img {
    width: auto;
    height: 110%;
  }
  .roop-wrap > div:first-child{
    animation: loop1 24s linear infinite;
  }
  .roop-wrap > div:last-child{
    animation: loop2 24s linear infinite;
  }
  @keyframes loop1 {
    0% {
      -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
      transform: translateX(0);
    }
    100% {
      -webkit-transform: translateX(-200%);
      -ms-transform: translateX(-200%);
      transform: translateX(-100%);
    }
  }
  @keyframes loop2 {
    0% {
      -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
      transform: translateX(100%);
    }
    100% {
      -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
      transform: translateX(0);
    }
  }
  .imokouji-img-wrapper > div:last-child {
  }
  .to-shop-btn {
    color: white;
    text-align: right;
    margin-top: .5em;
  }
  .to-shop-btn a {
    writing-mode: horizontal-tb;
    display: inline-block;
    padding: 8px;
    color: white;
    width: 180px;
    line-height: 2em;
    text-align: center;
    background-color: rgb(228,36,15);
    font-size: .8em;
    transition: .2s;
    border: 1px solid white;
    box-sizing: border-box;
  }
  .to-shop-btn a:hover {
    color: black;
    background-color: white;
  }








  /* kouji (min-width: 897px) */
  #kouji {
    position: relative;
    z-index: 300;
  }







  /* for_ceremonies (min-width: 897px) */
  #sec-for_ceremonies {
    background-image: url(images/furoshiki-back.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 80px;
    padding-bottom: 80px;
    margin-top: 0;
  }
  .kohousou-clip-wrapper {
    position: relative;
    height: 400px;
  }
  #sec-for_ceremonies > div:first-child {
    display: flex;
    justify-content: center;
    height: 400px;
  }
  .ceremonies-txt {
    width: 100%;
    text-align: center;
  }
  .ceremonies-txt:first-child {
    background-image: url(images/cloud1.png);
    background-size: contain;
    background-position: left 30%;
  }
  .ceremonies-txt:last-child {
    background-image: url(images/cloud2.png);
    background-size: contain;
  }
  #sec-for_ceremonies h1 {
    background-image: url(images/kinpaku.png);
    background-size: contain;
    display: inline-block;
    padding: 0 32px;
    font-size: 2.8em;
  }
  #sec-for_ceremonies > div div p {
    display: inline-block;
    font-size: 1.6em;
    line-height: 2em;
    margin-top: 1em;
    letter-spacing: .1em;
    text-align: left;
    transform   : scale(0.95, 1);
  }
  .clip1-kohousou {
    width: 450px;
    height: 500px;
    position: absolute;
    left: 0;
    top: -100px;
    background-image: url(images/clip1-kohousou.png);
    background-size: contain;
  }
  .clip2-kohousou {
    width: 450px;
    height: 500px;
    position: absolute;
    right: 0;
    top: -100px;
    background-image: url(images/clip2-kohousou.png);
    background-size: contain;
  }
  .caution_kohousou p {
    border-bottom: 1px solid white;
    padding-right: 40px;

  }





  /* shops (min-width: 897px) */
  #sec-shops {
    position: relative;
    overflow: hidden;
    padding: 0;
    padding-top: 40px;
  }
  /* .shop-back {
    position: absolute;
    top: -550px;
    left: 0;
    right: 0;
    width: auto;
    height: 400%;
    background-image: url(images/P1040262.JPG);
    background-position: center;
    background-size: 180%;
    z-index: -100;
  } */
  .map-wrapper {
    width: calc(100% / 3);
  }
  .map-wrapper h3 {
    margin-bottom: 1em;
  }
  .map-wrapper div{
    height: 400px;
  }







    /* instagram (min-width: 897px) */
  #sec-instagram > div {
    max-width: 896px;
    margin-bottom: 3em;
  }
  #sec-instagram h1 {
    text-align: center;
  }
  #instagram-sp {
    display: none;
  }
  #instagram-pc {
    display: block;
  }


  /* footer (min-width: 897px) */
  .footer_nav-flexbox {
    display: flex;
    justify-content: center;
    margin-top: 2em;
  }
  .call_btn {
    margin-left: 3em;
    margin-top: 0.2em;
    height: auto;
  }
  .call_btn a {
    display: inline-block;
    height: auto;
    line-height: 2.6em;
    padding: 1em 2em;
  }
  .footer_nav ul {
  }
  .footer_nav ul li a {
    padding: 0 1em;
  }
  .footer_nav ul li a::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    display: inline-block;
    width: 1px;/*線の太さ*/
    height: 0%;
    background-color: dimgray;/*線の色*/
    animation: back-drightline-animation-f .2s ease;
    animation-fill-mode: backwards;
  }
  .footer_nav ul li a:hover::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    display: inline-block;
    width: 1px;/*線の太さ*/
    background-color: dimgray;/*線の色*/
    animation: rightline-animation-f .2s ease .2s;
    animation-fill-mode: forwards;
  }


}








@media screen and (min-width: 1025px) {

}
