@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Allura&family=Homemade+Apple&family=Pinyon+Script&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Ballet&family=Open+Sans+Condensed:ital,wght@0,300;1,300&display=swap');

/*================================================
 *  CSSリセット
 ================================================*/
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,var,b,i,dl,dt,dd,ol,ul,li,fieldset,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,main,menu,nav.gnav,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;}body{line-height:1}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav.gnav,section{display:block}ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:none}a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent}del{text-decoration:line-through}abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help}table{border-collapse:collapse;border-spacing:0}hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}input,select{vertical-align:middle}


/*================================================
 *  一般・共通設定
 ================================================*/
body {
	font-size: 15px;
	font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	line-height: 1.6;
	letter-spacing: .05em;
	color: #745d54;
  background-color: #fff4e7;
}
#content {
	max-width: 980px;
	margin: 0 auto;
}
a{
  color: #555;
	text-decoration: none;
}
a:hover{
  opacity: .7;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
img {
	max-width: 100%;
	vertical-align: bottom;
}
p {
  margin-bottom: 1em;
}
strong {
  font-weight: bold;
}
small {
	font-size: smaller;
}
ul,ol,dl {
	margin: 0;
}
ul li {
	list-style: none;
}
li {
	margin-left: 0;
}

/* タイトル */
h2{
	text-align: center;
	line-height: 1.2;
	color: #f7bc76;;
	margin-bottom: 20px;
	text-shadow:0 0 10px #fdf4e7, 0 0 20px #fdf4e7, 0 0 30px #fdf4e7, 0 0 40px #fff, 0 0 70px #fff, 0 0 80px #fff, 0 0 100px #fff, 0 0 150px #fff;
}
h2 span{
	font-family: 'Allura', cursive;
	font-size: 90px;
    text-transform: capitalize;
	letter-spacing: 0.05em;
}
/* 画像のシャドー */
.shadow {
	border-radius: 10px;
	box-shadow: 0px 0px 60px rgba(247, 189, 119, 0.6);
}

@media screen and (max-width:768px) {
	*, *:before, *:after {
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box
  }
  body {
    font-size: 14px;
  }
  #content{
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
  h2{
	  font-size:12px;
  }
  h2 span{
    font-size: 50px;
  }
}

/* ==================================================
  preloader
====================================================*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff4e7;
    z-index: 800;
    height: 100%;
    width: 100%;
}
.no-js #preloader, .oldie #preloader {
    display: none;
}
#loader {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 50px;
    height: 50px;
    margin-left: -30px;
    margin-top: -30px;
    padding: 0;
    background-color: #f7bc76;
    border-radius: 100%;
    -webkit-animation: sk-scaleout 1.0s infinite ease-in-out;
    animation: sk-scaleout 1.0s infinite ease-in-out;
}

@-webkit-keyframes sk-scaleout {
    0% {
        -webkit-transform: scale(0);
    }
    100% {
        -webkit-transform: scale(1);
        opacity: 0;
    }
}
@keyframes sk-scaleout {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}


/*================================================
 *  ヘッダー
 ================================================*/
header {
	position: fixed;
  width: 100%;
  z-index: 100;
  top: 0;
  box-sizing: border-box;
  padding: 10px 0;
}
header .inner {
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 20px;
}
/* inner-left */
header .inner-left {
  width: 30%;
  position: relative;
}
header .inner-left h1 {
  font-size: 38px;
  font-family: 'Open Sans Condensed', sans-serif;
}
header .inner-left h1 a {
  color: #fff;
}
/* inner-right */
header .inner-right {
  width: 70%;
}
nav.gnav ul {
  text-align: right;
}
nav.gnav ul li {
  display: inline-block;
  padding: 0 12px;
  text-align: center;
}
nav.gnav ul li span{
	font-family: 'Open Sans Condensed', sans-serif;
	font-size: 18px;
	text-transform: uppercase;
}
nav.gnav ul li a{
	color:#fff;
}
/* changeNav */
header.changeNav{
	background-color: rgba(121, 85, 72, 0.7);
  transition: .5s;
  background: linear-gradient(0deg, transparent 0%, rgba(121, 85, 72, 0.8) 100%);
}

@media screen and (max-width:768px) {
  header .inner-left {
    width: 70%;
  }
	header .inner-left h1 {
    font-size: 24px;
  }
  /* ハンバーガーメニュー */
	nav.global-nav {
	    position: fixed;
	    right: -320px;
	    top: 0;
	    width: 270px;
	    height: 100vh;
	    padding-top: 40px;
	    background: rgb(121 85 72 /70%);
	    transition: all .2s ease-out;
	    z-index: 200;
	    overflow-y: auto;
	    padding: 70px 30px 40px 40px;
    }
    nav.gnav.global-nav ul li {
	    margin-bottom: 15px;
      border-bottom: 1px dotted rgba(255,255,255,0.5);
      width: 100%;
      padding: 5px 12px;
      font-size: 13px;
    }
    nav.gnav ul li a {
      color: #fff;
    }

	  .hamburger {
	    position: absolute;
	    right: 10px;
      top: 5px;
	    width: 40px;
	    height: 40px;
	    cursor: pointer;
	    z-index: 300;
	  }
	  .global-nav__list {
	    margin: 0;
	    padding: 0;
	    list-style: none;
	  }
	  .global-nav__item a {
	    display: block;
	    padding: 8px 0;
	    border-bottom: 1px solid #fff;
	    line-height: 1.3;
	  }
	  .global-nav__item a:hover {
	    background-color: #eee;
	  }
	  .hamburger__line {
	    position: absolute;
	    left: -5px;
	    width: 30px;
	    height: 1px;
	    background-color: #ecddd2;
	    transition: all .2s ease-out;
	  }
	  .hamburger__line--1 {
	    top: 18px;
	  }
	  .hamburger__line--2 {
	    top: 26px;
	  }
	  .hamburger__line--3 {
	    top: 33px;
	  }
	  .black-bg {
	    position: fixed;
	    left: 0;
	    top: 0;
	    width: 100vw;
	    height: 100vh;
	    z-index: 100;
	    background-color: #000;
	    opacity: 0;
	    visibility: hidden;
	    transition: all .6s;
	    cursor: pointer;
	  }
	  /* 表示された時用のCSS */
	  .nav-open .global-nav {
	    right: 0;
	  }
	  .nav-open .black-bg {
	    opacity: .7;
	    visibility: visible;
	  }
	  .nav-open .hamburger__line--1 {
	    transform: rotate(45deg);
	    top: 20px;
	  }
	  .nav-open .hamburger__line--2 {
	    width: 0;
	    left: 50%;
	  }
	  .nav-open .hamburger__line--3 {
	    transform: rotate(-45deg);
	    top: 20px;
	  }
}

/* =======================================================
* section
* ======================================================= */
section  {
	padding-bottom: 5rem;
	position: relative;
}
.section {
	padding-top: 5rem;
}
@media screen and (max-width:768px) {
	section {
		padding-bottom: 3rem;
	}
	.section {
		padding-top: 3rem;
  }
}

/* =======================================================
*main
* ======================================================= */

/* メイン画像は　swiper.cssに記載 */

/* タイトル */
.swiper_ttl{
	position: absolute;
	top:50%;
	left:50%;
	transform: translate(-50%, -50%);
	z-index:1;
	text-align:center;
	width: 100%;
	color:#fff;
}
.swiper_ttl .en{
	font-family:'Allura', cursive;
  font-size: 180px;
  width: 100%;
  margin-bottom: 0;
  line-height: 1.4;
	text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff, 0 0 40px #f0b875, 0 0 70px #f0b875, 0 0 80px #f0b875, 0 0 100px #f0b875, 0 0 150px #f0b875;
}
.swiper_ttl .ja{
	font-size:16px;
}

@media screen and (max-width: 768px) {
  .swiper_ttl .en {
      font-family: 'Allura', cursive;
      font-size: 76px;
  }
}

/* =======================================================
*collection
* ======================================================= */
#collection ul li{
	width: 19.5%;
  margin-bottom: 5px;
}

@media screen and (max-width: 768px) {
  #collection ul li {
      width: 49%;
  }
}

/* =======================================================
*voice
* ======================================================= */
#voice .swiper-container{
	max-width: 1000px;
	margin:0 auto;
}
#voice .swiper-slide {
  height: 270px;
	margin-bottom: 30px;
}
.voice_list{
	max-width:750px;
	margin:0 auto;
}
.voice_list__img{
	width: 20%;
}
.voice_list__txt{
	width: 70%;
	box-shadow: 0px 0px 30px rgba(247, 188, 118);
	padding: 30px 20px 10px 20px;
	border-radius: 20px;
	box-sizing: border-box;
	margin-top: 30px;
}

@media screen and (max-width: 768px) {
  #voice {
    padding-right:20px;
    padding-left: 20px;
  }
  #voice .swiper-slide {
    height: 500px;
    margin-bottom: 0;
  }
  .swiper-button-prev.swiper-button-black, 
  .swiper-button-next.swiper-button-black {
    display: none;
  }
  .voice_list__img {
    width: 50%;
    margin: 0 auto;
  }
  .voice_list__img img {
    height: 150px;
    width: 100%;
    object-fit: contain;
  }
  .voice_list__txt {
    width: 100%;
    margin: 20px;
  }
}

/* =======================================================
*store
* ======================================================= */
#store iframe{
	width: 100%;
	height: 400px;
}

/* =======================================================
*background
* ======================================================= */
#background{
	background-image: url(../images/background-img.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	height:500px;
	background-attachment: fixed;
	position:relative;
}
#background .background_txt {
    color: #fff;
    position: absolute;
    padding: 1% 0 0 3%;
    font-family: 'Allura', cursive;
    font-size: 70px;
    letter-spacing: .05em;
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff, 0 0 40px #f0b875, 0 0 70px #f0b875, 0 0 80px #f0b875, 0 0 100px #f0b875, 0 0 150px #f0b875;
}

@media screen and (max-width: 768px) {
	#background{
		background-attachment: unset;
		background-position: right;
	}
	#background .background_txt {
		padding: 10% 0 0 3%;
		font-size: 57px;
		line-height: 1;
  }
}

/* =======================================================
*contact
* ======================================================= */
form{
	max-width: 700px;
	margin: 0 auto;
}
form label{
	display: block;
	width: 100%;
	margin-top: 20px;
	margin-bottom: 5px;
	font-weight: bold;
}
sup{
	color:rgb(129, 8, 8);
	font-size: 11px;
	padding-left: 5px;
}
/* 共通 */
input,select,textarea{
	border:0;
	background-color: rgba(255,255,255,0.9);
	border-radius: 5px;
	padding-left: 10px;
	box-sizing: border-box;
	box-shadow: 0px 0px 30px rgb(247 188 118 /65%);
}
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="date"],
input[type="time"],
select {
	width:100%;
	height:50px;
}
/* 高さ持たせるため別で記載 　高さはHTMLでrows10で指定*/
textarea{
	width:100%;
}
/* ボタン */
button {
	padding:  10px 60px;
	background-color: #f7bc76;
  border: 1px solid#f7bc76;
  border-radius: 5px;
  color: #fff;
  font-size: 14px;
}
button:hover {
	background-color: #fff;
	color: #f7bc76;
	transition: .5s;
	box-shadow: 0px 0px 60px rgba(247, 189, 119, 0.8);
}

@media screen and (max-width: 768px) {
  form{
    margin: 20px 15px 0px;
  }
  input, select, textarea {
    box-shadow: 0px 0px 30px rgba(247, 189, 119, 0.8);
    background-color: rgba(255,255,255,0.9);
  }
}

/* =======================================================
*footer
* ======================================================= */
footer {
	text-align: center;
	text-align: center;
  padding: 20px 0;
}
.footer_sns li{
	display: inline-block;
	margin: 10px;
}
.footer_sns li i{
	font-size: 20px;
}
.copyright{
  font-size: 11px;
}

/*================================================
 *  ページトップへの戻り
 ================================================*/
#pagetop {
    position: fixed;
    right: 15px;
    bottom: 10px;
    cursor: pointer;
    overflow: visible!important;
}
#pagetop .arrow-up {
	width: 20px;
  height: 20px;
  border: 1px solid;
  border-color:#555#555 transparent transparent;
  transform: rotate(-45deg);
}

