@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;700&display=swap');
/* CSS Document */
html {scroll-behavior: smooth;
    scroll-padding-top: 68px;
}
body {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
	font-family: Noto Sans JP, sans-serif;
	overflow-x: hidden;
}
*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	}
a{
	text-decoration: none;
	transition: all 0.3s ease;
}
img{
	display: block;
	width: 100%;
}
iframe{
	border: none;
}
h1, h2, h3, h4, h5{
	font-weight: 700;
}
.sp,
.br-sp{
	display: none;
}
.br-auto{
	display: inline-block;
}
.title01{
	font-size: 3rem;
	text-align: center;
	color: #42210b;
	margin-bottom: 1.5rem;
}
.sub-title{
	display: block;
	font-size: 1.5rem;
	color: #000;
	margin-bottom: .5rem;
}
.marker{
	background: linear-gradient(transparent 70%, #fbe03f 70%);
}
.fc-red{
	color: #bd272d;
}
.bg01{
	background-color: #f4f3df;
}
article{/*
	padding-top: 68px;
	margin-top: -68px;*/
	}
.container{
	width: 100%;
	max-width: 960px;
	margin: 0 auto;
	padding: 0 1rem;
	}
@media (max-width: 767px) {
	.pc,
	.br-pc{
		display: none;
	}
	.sp,
	.br-sp{
		display: block;
	}
	.sub-title{
		font-size: 1rem;
	}
	.title01{
		font-size: 1.75rem;
		margin-bottom: 1rem;
	}
}
/* =======================================
    drawer
======================================= */
.contents {
	transition: transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
/* :::::: toggle button :::::: */
#drawer {
	display: none;
}
label {
	cursor: pointer;
	position: fixed;
}
.open {
	z-index: 1002;
	top: 20px;
	right: 8px;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: #42210b;
	transition: background .6s, transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.open::before,
.open::after {
	content: "";
}
.open span,
.open::before,
.open::after {
	content: "";
	position: absolute;
	top: calc(50% - 1px);
	left: 30%;
	width: 40%;
	border-bottom: 2px solid white;
	transition: transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.open::before {
	transform: translateY(-8px);
}
.open::after {
	transform: translateY(8px);
}
.close {
	z-index: 1001;
	inset: 0;
	pointer-events: none;
	transition: background .6s;
}
#drawer:checked + .open {
	background: #42210b;
	transform: translateX(-280px);
}
#drawer:checked + .open span {
	transform: scaleX(0);
}
#drawer:checked + .open::before {
	transform: rotate(135deg) scaleX(1.2);
}
#drawer:checked + .open::after {
	transform: rotate(-135deg) scaleX(1.2);
}
#drawer:checked ~ .close {
	pointer-events: auto;
	background: rgba(0,0,0,.3);
}

/* :::::: drawer menu :::::: */
.menu {
	z-index: 10000;
	position: fixed;
	overflow: auto;
	top: 0;
	right: 0;
	width: 280px;
	height: 100%;
	margin: 0;
	padding: 10px;
	box-sizing: border-box;
	background: rgba(0,0,0,.6);
	transform: translateX(100%);
	transition: transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.menu h2 {
	color: white;
	font-family: "Ubuntu Condensed", sans-serif;
	font-weight: 400;
	letter-spacing: .1em;
	text-align: center;
}
.menu ul {
	margin: 0;
	padding: 0;
}
.menu li {
	line-height: 1.4;
}
.menu li:not(:first-child) {
	border-top: 1px solid rgba(255,255,255,.6);
}
.menu a {
	display: block;
	padding: 1em 2em;
	color: white;
	text-decoration: inherit;
	transition: background .6s;
}
.menu a:hover {
	background: black;
}
#drawer:checked ~ .menu {
	transform: none;
}

/* =======================================
    header
======================================= */
header {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: .5rem 1rem;
}
/*  ヘッダー固定↓  */
header{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: #fff;
	z-index: 1000;
}
/*  ヘッダー固定↑  */
.logo{
	max-width: 100px;
}
/* :::::: nav :::::: */
header nav{
	padding-right: 5.5rem;
}
header nav ul {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: center;
}
header nav li:not(:first-child) {
	border-left: 1px solid rgba(0,0,0,.1);
}
header nav li a {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 48px;
	text-decoration: none;
	color: #000;
	transition: background .3s;
	padding: 0 1em;
}
header nav li a:hover {
	background: #efefef;
}
.btn-siryo{
	position: absolute;
	top: 1.25rem;
	right: .5rem;
	font-size: .875rem;
	font-weight: 700;
	color: #000;
	background-color: #ffe33f;
	border-radius: .25rem;
	padding: .75rem .75rem;
}
.btn-siryo:hover{
	background-color: #ffeb72;
}
@media (min-width: 961px) {
	.open {
		display: none;
	}
}
@media (max-width: 1024px) {
	header nav ul{
		font-size: .875rem;
	}
}
@media (max-width: 960px) {
	header nav {
		display: none;
	}
	.btn-siryo{
		right: 4.5rem;
	}
}
/* =======================================
    mainview
======================================= */
.mainview img{
	display: block;
	margin: 0 auto;
}
.main-obi{
	font-size: 2.5rem;
	font-weight: 700;
	text-align: center;
	color: #fff;
	background-color: #c0272d;
	padding: 1rem;
}
.main-obi span{
	color: #ffff00;
}
.fadein {
    opacity: 0;
    transform: translate(0,100px);
    transition: all 1.5s;
}
.fadein.scrollin{
    opacity: 1 !important;
    transform: translate(0, 0) !important;
  }
@media (max-width: 960px) {
	.main-obi{
		font-size: 2rem;
	}
}
@media (max-width: 767px) {
	.mainview img{
		width: 100%;
	}
}
@media (max-width: 480px) {
	.main-obi{
		font-size: 1.5rem;
	}
}
/* =======================================
    事業説明会の内容 setumei
======================================= */
.bg_red{
    background-color: #c0272d;
    padding: 1rem;
    font-size: 2.6rem;
    color: white;
    font-weight: 800;
text-align: center;
}
.setumei{
	text-align: center;
	padding: 2rem 0.5rem;
}
.setumei .container{
	max-width: 50rem;
	background-color: #f1f1dd;
	padding: 2rem 1rem 1.5rem;
}
.setumei h1{
	display: inline-block;
	font-size: 2.4rem;
	font-weight: 700;
	color: #fff;
	background-color: #000;
	margin-bottom: 2rem;
	padding: .25rem 2rem;
}
.setumei h1 + p{
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 2rem;
}
.setumei ul{
	display: inline-block;
	font-size: 1.5rem;
	font-weight: 700;
	text-align: left;
	list-style: none;
	margin: 0;
	padding: 0;
}
.setumei li{
	position: relative;
	margin-bottom: 2rem;
	padding-left: 1.5rem;
}
.setumei li::before{
	content: "・";
	position: absolute;
	top: 0;
	left: 0;
}
.setumei ul p{
	font-size: 1rem;
	font-weight: normal;
}
.setumei .pc{
	display: block;
}
.setumei .sp{
	display: none;
}
@media (max-width: 767px) {
	.bg_red{
		font-size:2rem;
	}
	.setumei h1{
		font-size: 2rem;
	}
	.setumei h1 + p{
		font-size: 1.25rem;
	}
	.setumei ul{
		font-size: 1.25rem;
	}
	.setumei li{
		margin-bottom: 1rem;
	}
}
@media (max-width: 640px) {
	.setumei .pc{
		display: none;
	}
	.setumei .sp{
		display: block;
	}
}
@media (max-width: 560px) {
	.setumei h1{
		font-size: 1.5rem;
	}
	.setumei h1 + p,
	.setumei ul{
		font-size: 1.125rem;
	}
}
/* =======================================
     intro
======================================= */
#intro{
	padding: 3rem 0 5rem;
	background-color:#f3e200;
}
#intro h1{
	font-size: 2.5rem;
	background-color: black;
	color: #f3e200;
	text-align: center;
	max-width: 750px;
	margin: 0 auto 1.5rem;
}
#intro h1 + p{
	font-size: 2rem;
	font-weight: 700;
	text-align: center;
	color: #000;
	margin-bottom: 3rem;
}
.intro01{
	margin-bottom: 2rem;
	background-color: white;
	padding: 1rem;
	border-radius: 50px;
}
.intro01 img{
	width: 80%;
	margin: 1rem auto;
}
.intro01 ul{
	list-style-type: none;
	font-size: 2rem;
	font-weight: 700;
	max-width: 850px;
	margin: 2rem auto;
}
.intro01 li{
	margin-bottom: 1rem;
	padding: 1rem;
	display: flex;
	align-items: flex-start;
	gap: 1rem;
}
.intro01 li:nth-child(odd){
	background-color: #fcee6b;
}
.intro01 li:nth-child(even){
	background-color: #f7e0a6;
}
.intro01 li span{
background-color: white;
    display: inline-block;
    width: 50px;
    text-align: center;
    border-radius: 50%;
}
.intro02{
    position: relative;
}
.intro02 .img_logo{
    display: block;
    margin: 2rem auto;
    max-width: 100%;
    width: 30%;
}
.intro02 h2{
font-size: 2.4rem;
    margin: auto;
    text-align: center;
    background-color: black;
    padding: 0.5rem;
    color: #f3e200;
    max-width: 600px;
    font-weight: 700;
}
.intro02-text{
    background-color: white;
    border: solid 10px;
    border-radius: 15px;
    padding: 0 1rem 13rem;
}
.intro02-text p{
    text-align: center;
    margin: 2rem auto;
    font-size: 2.4rem;
    color: #c0272d;
    font-weight: 800;
}
.intro02 ul{
	list-style-type: none;
	font-size: 2.6rem;
	font-weight: 800;
	max-width: 700px;
	margin: auto;
}
.intro02 li{
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	margin-bottom: 1rem;
}
.intro02 li img{
	width: 60px;
	height: 60px;
	display: inline-block;
}
.intro02 img.car{
	position:absolute;
	bottom: -50px;
	width: 90%;
	left: 50px;
}
@media (max-width: 960px) {
	#intro h1{
		font-size: 1.5rem;
	}
	#intro h1 + p{
		font-size: 1.125rem;
		margin-bottom: 1.5rem;
	}
	.intro01 h2{
		top: 1rem;
		font-size: 1.5rem;
	}
}
@media (max-width: 767px) {
	#intro{
		padding: 1.25rem 0;
	}
	#intro h1{
		margin-bottom: .75rem;
	}
	.intro01 img{
		width: 100%;
		padding: 0;
		margin-bottom: 1rem;
	}
	.intro01 h2{
		position: relative;
		top: inherit;
		right: inherit;
		font-size: 1.25rem;
		padding: .5rem .5rem .5rem 1rem;
		margin-bottom: 1.5rem;
	}
	.intro01 ul{
		font-size: 1.6rem;
	}
	.intro01 li span {
		width:40px;
	}
	.intro02-text{
		padding: 0 1rem 6rem;
	}
	.intro02-text p{
		font-size:1.6rem;
	}
	.intro02 h2{
		font-size: 1.6rem;
		max-width: 360px;
	}
	.intro02 ul{
		font-size:1.6rem;
	}
	.intro02 li img{
		 width: 40px;
		height: 40px;
	}
	.intro02 img{
		width: 100%;
		margin-bottom: 1rem;
	}
	.intro02 img.car{
		    bottom: -20px;
	}
}
/* =======================================
    お気軽にお問合せください obi
======================================= */
.obi{
	font-weight: 700;
	text-align: center;
	background-color: #603813;
	padding: 1rem 0 2rem;
}
.obi h2{
	font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
}
.obi p{
	font-size: 2.25rem;
	margin-bottom: 1rem;
}
.obi-date{
	border-bottom: solid 5px #be272e;
}
.obi .obi-text,
.obi-time{
	font-size:1.875rem;
}
.hiduke-img{
	max-width: 400px;
	margin: .5rem auto .75rem;
}
.obi p.osuki{
	font-size: 1rem;
}
.obi dl{
	display: inline-block;
	vertical-align: middle;
	margin: 0 .5rem 1rem;
}
.obi dt,
.obi dd{
	display: inline-block;
	vertical-align: middle;
}
.obi dt{
	background-color: #fff;
	border-radius: 20px;
	padding: 5px 10px;
}
.obi dd{
	font-size: 1.5rem;
	padding-left: .5rem;
}
.obi .obi-text.under{
	line-height: 1.4;
	margin-top: 1rem;
}
.obi .obi-text .obi-small{
	font-size:1.45rem;
}
.obi-box{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.obi-left{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 60%;
	color: #000;
	background-color: #fff;
	border-radius: 20rem;
	padding: 1rem;
	transition: all .3s;
	box-shadow: 0 2px 7px rgba(0, 0, 0, .3);
}
.obi-left:hover{
	transform: scale(1.05,1.05);
}
.obi-left img{
	width: 24%;
	max-width: 120px;
}
.obi-left-text{
	font-size: 2.25rem;
	padding-left: .5rem;
}
.obi-left-text span{
	display: block;
	font-size: 1.5rem;
	color: #bd272d;
}
.obi-right a{
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 2rem;
	color: #fff;
	border-radius: 1rem;
	padding: .5rem 2rem;
}
.btn-line{
	background-color: #39b14a;
	margin-bottom: 1rem;
}
.btn-line:hover{
	background-color: #3ac04d;
}
.btn-phone{
	background-color: #c0272d;
	pointer-events: none;
}
.btn-phone img{
	width: 2rem;
	margin-right: .375rem;
}
@media (max-width: 960px) {
	.obi-left img{
		width: 20%;
	}
	.obi-left-text{
		font-size: 1.875rem;
	}
	.obi-left-text span{
		font-size: 1.25rem;
	}
	.obi-right{
		width: 36%;
	}
	.obi-right a{
		width: 100%;
		font-size: 1.5rem;
		padding: .5rem;
	}
	.btn-phone img{
		width: 1.5rem;
	}
}
@media (max-width: 767px) {
	.obi p{
		font-size: 1.6rem;
		line-height: 1.8;
	}
	.kesu{
		display:none;
	}
	.obi .obi-text,
	.obi p span.obi-time{
		font-size:1.25rem;
	}
	.obi .obi-text.under{
		font-size:1.45rem;
	}
	.obi .obi-text .obi-small{
		font-size: 1rem;
	}
	.obi-box{
		flex-direction: column;
	}
	.obi-left{
		width: 100%;
		margin-bottom: 1rem;
	}
	.obi-left-text{
		font-size: 1.25rem;
	}
	.obi-left-text span{
		font-size: 1rem;
	}
	.obi-right{
		width: 100%;
	}
	.obi-right a{
		font-size: 1.25rem;
	}
	.btn-phone{
		pointer-events: auto;
	}
	.btn-phone img{
		width: 1.25rem;
	}
}
@media (max-width: 480px) {
	.obi h2{
		font-size: 1.25rem;
	}
	.obi p.obi-hiduke{
		font-size: 1.625rem;
	}
	.youbi{
		font-size: 1.25rem;
	}
}

/* =======================================
    よくある質問 qa
======================================= */
#qa{
	font-weight: 700;
	padding: 3rem 0;
}
#qa dl{
	margin-bottom: 2rem;
}
#qa dt{
	position: relative;
	display:block;
	font-size: 1.25rem;
	background-color: #ffe33f;
	border-radius: 1rem;
	padding: 1.5rem 4rem;
	cursor:pointer;
    }
#qa dt::before{
	content: "Q";
	position: absolute;
	top: 1.375rem;
	left: 2rem;
	color: #bd272d;
}
#qa dt::after{
	position: absolute;
	top: 50%;
	right: 2rem;
	display: block;
	content: "";
	width: 1rem;
	height: 1rem;
	border: 2px solid #000;
	border-left: 0;
	border-bottom: 0;
	margin-top: -.75rem;
	transform: rotate(135deg);
	}
#qa dt.active::after{
	margin-top: -.25rem;
	transform: rotate(315deg);
}
#qa dd{
	position: relative;
	display:none;
	padding: 1rem 1rem 1rem 4rem;
    }
#qa dd::before{
	content: "A";
	position: absolute;
	top: 1rem;
	left: 2rem;
	font-size: 1.25rem;
	color: #2e318e;
}
@media (max-width: 767px) {
	#qa{
		padding: 1.5rem 0;
	}
	#qa dl{
		margin-bottom: 1.25rem;
	}
	#qa dt{
		font-size: 1rem;
		border-radius: .75rem;
		padding: 1rem 2rem;
	}
	#qa dt::before{
		top: .875rem;
		left: .75rem;
	}
	#qa dt::after{
		right: 1rem;
		width: .75rem;
		height: .75rem;
		margin-top: -1.5rem;
	}
	#qa dt.active::after{
		margin-top: -1rem;
	}
	#qa dd{
		padding: .75rem .5rem 0rem 2rem;
	}
	#qa dd::before{
		top: .5rem;
		left: .5rem;
	}
}
/* =======================================
    original
======================================= */
.original{
background-color: #ffe200;
    padding: 3rem 0.5rem;
    text-align: center;
}
.original div{
    background-color: white;
    max-width: 700px;
    margin: auto;
    padding: 1rem 0.5rem;
    font-size: 2.6rem;
    font-weight: 800;
    border: solid 5px #c0272d;
    position: relative;
}
.original p span{
display: block;
    font-size: 2rem;
}
.original div:after{
content: "";
    position: absolute;
    background: url(https://dontako-fc.site/kitchencar/img/kitchencar03.png);
    width: 170px;
    height: 120px;
    z-index: 5;
    bottom: -40px;
    right: -85px;
    background-repeat: no-repeat;
    background-size: contain;
}
@media (max-width: 767px) {
	.original div{
		font-size:1.6rem;
	}
	.original p span{
		font-size:1.25rem;
	}
	.original div:after{
        right: 10px;
        width: 100px;
        bottom: -105px;
	}
}
/* =======================================
    加盟店舗一覧 dontako-list
======================================= */
#dontako-list{
	padding: 3rem 0;
}
.dontako-list01{
	border-bottom: solid 1px #534741;
	padding-bottom: 1rem;
	margin-bottom: 2rem;
}
.dontako-list01 > dt{
	font-size: 2.25rem;
	font-weight: 700;
	line-height: 1;
	color: #42210b;
	border-left: solid 10px #ffe33f;
	padding-left: 1rem;
	margin-bottom: 1.5rem;
}
.dontako-list02{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	list-style-type: none;
}
.dontako-list02.takaoka{
    justify-content: center;
}
.dontako-list02 > li{
	width: 49%;
	margin-bottom: 1.5rem;
}
.dontako-list01 li dt{
	font-size: 1.25rem;
	font-weight: 700;
}
.gaikan{
	width:85%;
}
.icon-list{
	display: inline-block;
	vertical-align: top;
	margin-left: .5rem;
}
.icon-list li{
	display: inline-block;
	vertical-align: middle;
	width: 1.5rem;
	margin-left: .5rem;
}
.company{
	padding-top: 3rem;
}
.company h2{
	font-size: 2rem;
	text-align: center;
	color: #42210b;
	margin-bottom: 2rem;
}
.com-dl dl{
	display: flex;
	font-weight: 700;
	border-bottom: solid 1px #534741;
	padding: 1rem;
}
.com-dl dt{
	width: 14rem;
	padding-left: 4rem;
}
.com-dl dd{
	flex: 1;
}
@media (max-width: 767px) {
	.dontako-list01{
		padding-bottom: 0;
	}
	.dontako-list01 > dt{
		font-size: 1.25rem;
	}
	.dontako-list02 > li{
		width: 100%;
	}
	.dontako-list01 li dt{
		font-size: 1rem;
	}
	.gaikan{
		width:95%;
	}
	.icon-list li{
		width: 1.25rem;
	}
	.company {
		padding-top: 1rem;
	}
	.company h2{
		font-size: 1.25rem;
		margin-bottom: 1rem;
	}
	.com-dl{
		font-size: .875rem;
	}
	.com-dl dt{
		width: 5rem;
		padding-left: 0;
	}
}
/* =======================================
    お問い合わせ　contact
======================================= */
#contact{
	padding: 3rem 0;
}
#contact p{
	text-align: center;
	margin-bottom: 2rem;
}
.contact-frame {
    border: none !important;
    outline: none !important;
    min-height: 1600px;
    transition: height 0.3s ease;
}
@media (max-width: 767px) {
	.contact-frame{
		min-height: 1800px;
	}
}
/* =======================================
    footer
======================================= */
footer{
	background-color: #efefef;
	text-align: center;
	}
.pagetop{
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	display: block;
	width: 100px;
	height: 100px;
	font-size: .875rem;
	font-weight: 700;
	color: #000;
	background-color: rgba(255, 255, 255, .6);
	border-radius: 1rem;
	padding: .5rem;
	z-index: 100;
}
.fixed-btn{
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	display: none;
}
.fixed-btn a{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50%;
	color: #fff;
	padding: 1rem;
}
.fixed-btn .btn-line{
	margin-bottom: 0;
}
@media (max-width: 767px) {
	footer{
		padding-bottom: 58px;
	}
	.pagetop{
		display:none !important;
	}
	.fixed-btn{
		display: flex;
	}
}