@charset "UTF-8";
/*
Theme Name: Q&SHIRO
Author: Bee Design Works
Description: Q&SHIRO
Version: 1.0
*/

/* RESET */
@import url(assets/css/destyle.css);

/*
【コメント項目】			【概要】
Base					基本設定
Elements				子要素のスタイル（ボタンやテーブルなど）
Header					ヘッダー
Footer					フッター
Floating Link			フロートメニュー
Content					コンテンツ
Side					サイドメニュー
Index					トップページ
WP Content				ワードプレス更新本文用（BLOG部分）　一部ページ共通部分も含む
*/

/* Base */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300&family=Zen+Maru+Gothic:wght@500&display=swap');

*,
*:before,
*:after {
	-webkit-box-sizing: inherit;
	box-sizing: inherit;
}

html {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 62.5%;
	scroll-behavior: smooth;
	background: #fffaf1;
}

* {
	box-sizing: border-box;
	color: #333;
	font: 18px/2.4 'Noto Sans JP', "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
	font-weight: 300;
}

a {
	text-decoration: none;
}

a:hover {
	opacity: 0.8;
}

a.text-link:hover {
	border-bottom: 2px #00a63c solid;
	opacity: 0.8;
}

h1,
h2,
h3,
h4,
h5,
h6,
.btn,
.btn02,
.btn03,
h1 *,
h2 *,
h3 *,
h4 *,
h5 *,
h6 *,
.btn *,
.btn02 *,
.btn03 * {
	font-family: 'Zen Maru Gothic', sans-serif;
	font-weight: bold;
	color: #593528;
}


h1 {
	font-size: 2.4rem;
}

h2 {
	font-size: 2.0rem;
}

h3 {
	font-size: 1.8rem;
}

h4 {
	font-size: 1.6rem;
}

h5 {
	font-size: 1.4rem;
}

h6 {
	font-size: 1.2rem;
}

@media only screen and (min-width: 768px) {
	
	* {
		font-size: 1.6rem;
	}
	
	h1 {
		font-size: 2.6rem;
	}

	h2 {
		font-size: 2.4rem;
	}

	h3 {
		font-size: 2.2rem;
	}

	h4 {
		font-size: 1.8rem;
	}

	h5 {
		font-size: 1.6rem;
	}

	h6 {
		font-size: 1.4rem;
	}
	
	br.line-small {
		display: none;
	}
}

@media only screen and (min-width: 1100.2px) {
		
	* {
		font-size: 1.8rem;
	}
	
	h1 {
		font-size: 4.0rem;
	}

	h2 {
		font-size: 3.0rem;
	}

	h3 {
		font-size: 2.5rem;
	}

	h4 {
		font-size: 2.2rem;
	}

	h5 {
		font-size: 1.8rem;
	}

	h6 {
		font-size: 1.5rem;
	}
}

p {
	margin-bottom: 16px;
}


/* Elements */


.inner {
	width: 90%;
	padding: 0 16px;
	max-width: 1100px;
	margin: 0 auto;
}

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

.btn {
	width: 100%;
	display: inline-block;
	background: #F5F5F5;
	padding: 0px 53px 0px 23px;
	text-align: center;
	position: relative;
	border: solid 2px #F5F5F5;
}

.btn::after {
	content: "";
	display: block;
	width: 30px;
	height: 30px;
	background: url("assets/img/icon-arrow-right-circle.png") no-repeat;
	top: calc(50% - 16px);
	right: 23px;
	position: absolute;
}

.btn:hover {
	border: solid 2px #593528;
	opacity: 1;
}

.btn02 {
	width: 85%;
	min-width: 290px;
	display: block;
	background: #FA6A18;
	border: solid 2px #FA6A18;
	padding: 0px 53px 0px 23px;
	text-align: center;
	position: relative;
	margin: 160px auto 0 auto;
	color: #fff;
}
.btn02::after {
	content: "";
	display: block;
	width: 30px;
	height: 30px;
	background: url("assets/img/icon-arrow-right-circle-white.png") no-repeat;
	top: calc(50% - 16px);
	right: 23px;
	position: absolute;
}
.btn02:hover {
	border: solid 2px #593528;
	opacity: 1;
}

.btn03 {
	width: 100%;
	display: inline-block;
	background: #fff;
	padding: 0px 53px 0px 23px;
	text-align: center;
	position: relative;
	border: solid 2px #F5F5F5;
}

.btn03::after {
	content: "";
	display: block;
	width: 30px;
	height: 30px;
	background: url("assets/img/icon-arrow-right-circle.png") no-repeat;
	top: calc(50% - 16px);
	right: 23px;
	position: absolute;
}

.btn03:hover {
	border: solid 2px #593528;
	opacity: 1;
}

.openbtn1{
  position: absolute;
  background:#593528;
  cursor: pointer;
    width: 80px;
    height:80px;
	top: 0;
	right: 0;
	z-index: 9999;
}

/*ボタン内側*/
.openbtn1 span{
    display: inline-block;
    transition: all .3s;
    position: absolute;
    left: 28px;
    height: 2px;
  background: #fff;
    width: 33%;
  }

.openbtn1 span:nth-of-type(1) {
  top: 28px; 
}

.openbtn1 span:nth-of-type(2) {
  top: 38px;
}

.openbtn1 span:nth-of-type(3) {
  top: 48px;
}

.openbtn1.active span:nth-of-type(1) {
    top: 32px;
    left: 28px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn1.active span:nth-of-type(3){
    top: 44px;
    left: 28px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

/* Header */

#head {
	display: flex;
	justify-content: space-between;
	position: fixed;
	height: 80px;
	z-index: 100;
	width: 100%;
	background: rgb(255, 250, 241, 0.8);
}

#head h1 {
	padding: 20px;
}

#head h1 img {
	vertical-align: top;
	width: 124px;
}

#head #gnav h1 {
	padding: 0px;
}

#head #gnav h1 img {
	width: 168px;
}

#g-nav.panelactive{
    position:fixed;
    z-index: 9998;
	width:100%;
    height: 100vh;
}
#g-nav h1 a {
	display: block;
}
#g-nav .amaru .logo {
	margin-bottom: 0;
}
#g-nav .footer-link {
	margin-top: 0;
	margin-top: 0;
}
#g-nav .footer-menu * {
	font-family: 'Zen Maru Gothic', sans-serif;
	color: #593528;
}

/*丸の拡大*/
.circle-bg{
    position: fixed;
	z-index: 9995;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #F2F2F2;
  transform: scale(0);
  right:-50px;
    top:-50px;
    transition: all .6s;
}

.circle-bg.circleactive{
  transform: scale(50);
}

#g-nav-list{
    display: none;
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

#g-nav.panelactive #g-nav-list{
     display: block;
}

/*ナビゲーション*/
#g-nav {
  opacity: 0;
}
#g-nav.panelactive {
    opacity:1;
}

/* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
#g-nav.panelactive {
animation-name:gnaviAnime;
animation-duration:1s;
animation-delay:.2s;
animation-fill-mode:forwards;
opacity:0;
}
@keyframes gnaviAnime{
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}

#g-nav {
	text-align: center;
}
#g-nav .footer-menu,
#g-nav .footer-link {
	display: inline-block;
	text-align: left;
}

#mainimage {
	height: 100vh;
}
#mainimage .logo {
	height: 14vh;
	margin-bottom: 2vh;
}
#mainimage .main-slider01 {
	height: 35vh;
	margin: 0 auto;
}
#mainimage .main-slider01 .swiper03 {
	height: 100%;
}
.image-content {
	text-align: center;
	padding-top: 120px;
}
@keyframes up-anim{
  0%{
    transform: translateY(110%);
  }
  100%{
    transform: translateY(0);
  }
}
.up {
	margin-bottom: 3vh;
}

.up div {
	display: flex;
	justify-content: center;
	overflow: hidden;
}

.up div span {
	transform: translateY(110%);
	display: block;
	animation: 0.35s up-anim linear forwards;
	color: #000;
	font-family: 'Zen Maru Gothic', sans-serif;
	font-size: 4vh;
	letter-spacing: 0.1em;
	line-height: 1.6em;
}
.up div span:nth-child(1) {
  animation-delay: 0s;
}
.up div span:nth-child(2) {
  animation-delay: 0.2s;
}
.up div span:nth-child(3) {
  animation-delay: 0.4s;
}
.up div span:nth-child(4) {
  animation-delay: 0.6s;
}
.up div span:nth-child(5) {
  animation-delay: 0.8s;
}
.up div span:nth-child(6) {
  animation-delay: 1.0s;
}

#mainimage .scroll {
	height: 6vh;
	line-height: 0;
	position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
	display: none;
}

.head-body h1,
.head-body h1 span {
	text-align: center;
    line-height: 1.8em;
    letter-spacing: 0.05em;
}

.head-body h1 span {
	display: block;
	margin-bottom: 20px;
	font-size: 1.4rem;
}


/**/
.content-body h4 {
	text-align: center;
	font-size: 3.3rem;
	line-height: 1.6em;
	margin-bottom: 32px;
}
.head-body h2 {
	text-align: center;
	letter-spacing: .1em;
	line-height: 1.8em;
	margin-bottom: 40px;
}
.content-body02 article {
	margin-top: 100px;
}
.content-body02 article .text {
	width: 100%;
}
.content-body02 article .text h1 {
	line-height: 1.2em;
	margin-bottom: 24px;
}
.content-body02 article .text h1 span {
	font-size: 1.5rem;
	display: block;
}
.content-body02 article .text p .btn {
	margin-top: 32px;
}
.content-body02 article .image {
	width: 100%;
	margin-top: 42px;
}

#about {
	padding-top: 136px;
	padding-bottom: 120px;
}

#sweets {
	padding-top: 160px;
	padding-bottom: 216px;
}

#news {
	padding: 70px 0 30px;
	background: #F2F2F2;
}

#notfound {
	padding: 150px 0 30px;
}

#news h1,
#news h1 span,
#news .more a,
#news span.title {
	color: #593528;
	font-family: 'Zen Maru Gothic', sans-serif;
}

.single-news .post,
.archive-news-feed .post a,
.top-news-feed .post a {
	display: block;
	padding: 10px 16px 10px 16px;
	background: #fff;
	position: relative;
}

.top-news-feed .post {
	margin-bottom: 20px;
}

#news.single,
#news.archive,
#page {
	padding-top: 140px;
}

.single-news .post span,
.top-news-feed .post span {
	display: block;
	line-height: 1.6em;
}

#news .more {
	text-align: right;
}

#news .more a {
	display: inline-block;
	padding-right: 34px;
	background: url("assets/img/Icon awesome-caret-right.png") no-repeat center right;
}

.category,
.top-news-feed .post .category {
	display: block;
	width: 77px;
	padding: 3px 0;
	background: #F2F2F2;
	font-size: 1.3rem;
	text-align: center;
}

.date {
	font-size: 1.2rem;
	color: #A6A6A6;
}
.single-contents {
	margin-top: 1em;
	text-align: justify;
}

#page h2 {
	font-size: 2.2rem;
    font-family: 'Noto Sans JP', sans-serif;
    color: #000;
    font-weight: normal;
    margin-top: 1.5em;
}

#inquiry {
	padding-top: 70px;
	padding-bottom: 70px;
}

#inquiry label {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: bold;
    color: #593528;
}

#inquiry input[type="text"],
#inquiry input[type="tel"],
#inquiry input[type="email"], 
#inquiry textarea {
	background: #fff;
	border: solid 1px #5B7E91;
	padding: 0px 10px;
	width: 100%;
	max-height: 180px;
}

#inquiry input.address1 {
	width: 250px;
}

#inquiry input[type="checkbox"] {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

#inquiry input[type="checkbox"] {
    cursor: pointer;
    padding-left: 80px;
    vertical-align: middle;
    position: relative;
  }

#inquiry input[type="checkbox"]::before,
#inquiry input[type="checkbox"]::after {
    content: "";
    display: block; 
    position: absolute;
  }
#inquiry input[type="checkbox"]::before {
    background-color: transparent;
    border-radius: 10%;
    border: 1px solid #CDD6DD;
    width: 35px;
    height: 35px;
    transform: translateY(-50%);
    top: 50%;
    left: 5px;
  }

#inquiry input[type="checkbox"]::after {
    border-bottom: 2px solid #1B448F;/*チェックの太さ*/
    border-left: 2px solid #1B448F;/*チェックの太さ*/
    opacity: 0;/*チェック前は非表示*/
    height: 10px;/*チェックの高さ*/
    width: 25px;/*チェックの横幅*/
    transform: rotate(-45deg);
    top: -8px;/*チェック時の位置調整*/
    left: 12px;/*チェック時の位置調整*/
  }

#inquiry input[type="checkbox"]:checked::after {
    opacity: 1;/*チェック後表示*/
  }

#inquiry input[type="submit"] {
	width: 80%;
    text-align: center;
    background: #FA6A18;
    color: #fff;
    font-family: 'Zen Maru Gothic', sans-serif;
    margin: 50px auto 0px auto;
    display: block;
    line-height: 2.8em;
}

.about-slider .content {
	background: #F2F2F2;
}
.about-slider .content h1 {
	font-size: 2.2rem;
	line-height: 1.6em;
	margin-bottom: 10px;
}

.img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.btn_box {
	display: flex;
	justify-content: center;
	align-items: center;
}

.tab-menu.swiper {
	margin: 0;
}

.bottom_content {
	padding: 16px 0;
	display: flex;
	position: relative;
	justify-content: center;
	align-items: center;
}

.about-slider .bottom_content {
	background: #A6A6A6;
}

.bottom_content .swiper-wrapper {
	width: 200px;
	max-width: 200px;
	padding: 30px;
	box-sizing: border-box;
}

.bottom_content .swiper-slide {
	width: 25%;
	height: 8px;
	background: #B7B7B7;
}

.bottom_content .swiper-slide-thumb-active {
	background: #FFF;
}

.bottom_content .swiper-button-next,
.bottom_content .swiper-button-prev {
	width: 14px;
	height: 24px;
	position: relative;
	margin: 0;
	color: #fff;
	top: 0;
}
.bottom_content .swiper-button-next:after,
.bottom_content .swiper-button-prev:after {
	font-size: 1.6rem;
	font-weight: bold;
}

.swiper-pagination,
.swiper-pagination span {
	color: #fff;
	font-family: 'Zen Maru Gothic', sans-serif
}

.swiper-pagination-current {
	font-size: 4rem;
}

.bottom_content .swiper-pagination {
	position: relative;
	width: auto;
}
.swiper-pagination span:before {
  content: '0';
	margin-right: 3px;
}

.swiper-slide-img {
	display: none;
}

.p-swiper-slide_box .body {
	padding: 16px;
}

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

#bottom {
	background: #F5F5F5;
}

.amaru {
	padding: 40px 0;
}

.amaru .logo {
	margin-bottom: 70px;
}

.amaru .logo h1 {
	text-align: center;
}

.amaru .footer-menu ul li {
	margin-left: 20px;
}

.amaru .footer-menu ul li::before {
  position: relative;
  top: -6px;
  left: -16px;
  display: inline-block;
  width: 2px;
  height: 2px;
  content: '';
  border-radius: 100%;
	background: #000;
}

.amaru .footer-menu ul li,
.amaru .footer-menu ul li a,
.amaru address {
	line-height: 2em;
}

.amaru .tel>a {
	display: block;
	padding-left: 25px;
	background: url("assets/img/icon-phone.png") no-repeat left center;
	background-size: 20px;
}
.amaru .tel span {
	display: block;
	font-size: 1.2rem;
}
.amaru .tel span a {
	border-bottom: solid 1px #000;
	font-size: 1.2rem;
}

.footer-content nav {
	margin: 50px 0;
}


.footer-link  li {
	margin-bottom: 20px;
    min-width: 300px;
}

#copy {
	text-align: center;
	background: #F5F5F5;
	font-size: 1.2rem;
}

.froating-menu {
	position: fixed;
	z-index: 90;
	top: 100px;
	right: 16px;
}

.froating-menu li {
	margin: 8px 0;
    padding: 10px;
    background-color: #fffaf1;
    border-radius: 10%;
}

.froating-menu li a {
    line-height: 0;
    display: block;
}

.froating-menu li a:hover {
	opacity: 0.8;
}

.froating-menu li a img {
	vertical-align: middle;
}

.btn-pagetop {
	position: fixed;
	right: 5px;
	display: block;
	width: 60px;
	font-family: 'Zen Maru Gothic',sans-serif;
	font-size: 10px;
	color: #593528;
	text-align: center;
	z-index: 99;
	
}

.btn-pagetop:before {
    display: block;
    content: "";
    width: 20px;
    height: 17px;
    margin: 0 auto;
    background-color: #593528;
    clip-path: polygon(0 17px, 10px 0px, 20px 17px);
}


@media only screen and (min-width: 768px) {
	
	#head {
    	height: 100px;
	}
	
	#head label {
		width: 127px;
	}
	
	#head h1 img {
		width: 144px;
	}
	
	.openbtn1{
		width: 100px;
		height:100px;
	}
	
	.openbtn1 span{
		left: 35px;
		height: 2px;
		width: 33%;
	  }

	.openbtn1 span:nth-of-type(1) {
	  top: 37px; 
	}

	.openbtn1 span:nth-of-type(2) {
	  top: 49px;
	}

	.openbtn1 span:nth-of-type(3) {
	  top: 61px;
	}

	.openbtn1.active span:nth-of-type(1) {
		top: 41px;
		left: 37px;
	}

	.openbtn1.active span:nth-of-type(3){
		top: 53px;
		left: 37px;
	}
	
	.top-news-feed .post a {
		padding: 10px 46px 10px 16px;
	}
	
	#mainimage .scroll {
		display: block;
	}
	
	.top-news-feed .post a::after {
		content: "";
		display: block;
		width: 30px;
		height: 30px;
		background: url("assets/img/icon-arrow-right-circle.png") no-repeat;
		top: calc(50% - 16px);
		right: 16px;
		position: absolute;
	}
	
	.content-body02 article {
		display: flex;
		justify-content: space-between;
		margin-top: 152px;
	}
	
	.content-body02 article .text {
		width: 47%;
	}
	
	.content-body02 article .image {
		width: 47%;
	}
	.content-body02 article .text p .btn {
		margin-top: 64px;
	}
	.about-slider .content h1 {
		font-size: 2.4rem;
		margin-bottom: 0;
	}
	
	.head-body h1 span {
		font-size: 18px;
	}
	
	.bottom_content {
		width: 50%;
		max-width: 847px;
		margin-left: auto;
	}
	
	.infomation-box {
		display: flex;
		justify-content: space-around;
	}

	.bottom_content .swiper-wrapper {
		width: 262px;
		max-width: 262px;
	}
	
	#bottom {
		padding: 70px 0;
	}
	#bottom * {
		color: #000;
	}
	
	#bottom .logo {
		margin-bottom: 0px;
	}
	
	#bottom .footer-content {
		display: flex;
		justify-content: space-between;
		font-family:  'Zen Maru Gothic', sans-serif;
	}
	
	#bottom .footer-content h4 {
		margin-bottom: 20px;
		color: #000;
	}
	#bottom .footer-content ul li {
	}
	
	.footer-link {
		width: 400px;
		padding-top: 16px;
	}
	
	.froating-menu {
		position: fixed;
		top: 26px;
		right: 148px;
		z-index: 101;
	}

	
	.froating-menu li {
		display: inline-block;
		margin: 0 20px;
		padding: 0px;
		background-color: transparent;
	}

}

@media only screen and (min-width: 1100.2px) {
	
	.news-box {
	}
	
	.top-news-feed {
	}
	
	.p-swiper-slide_box {
		display: flex;
		justify-content: center;
	}
	
	.p-swiper-slide_box .body {
		padding: 0;
		width: 50%;
		display: flex;
		justify-content: flex-end;
	}
	
	.p-swiper-slide_box .body .text {
		width: 100%;
		max-width: 660px;
		padding: 50px 60px 40px 16px;
	}
	
	.p-swiper-slide_box .body .text h1 {
		margin-bottom: 30px;
	}
	
	.body-img {
		display: none;
	}
	
	.swiper-slide-img {
		width: 50%;
		display: block;
	}
	
	.img-wrap {
		display: block;
		height: 100%;
		text-align: right;
	}
	
	.content-body {
		width: 640px;
		margin: 0 auto;
	}
	
	.content-body .text {
		text-align: justify;
	}
	
	.top-content {
		margin: 130px 0;
	}
	
	.top-content header {
		width: calc(50vw - 173px);
		padding: 40px 50px 170px;
		margin-bottom: -150px;
	}

}

@media only screen and (min-width: 1460px) {
	
	.img-wrap img {
		width: 100%;
		max-width: 847px;
		height: auto;
	}
}
