@charset "UTF-8";
/* *****************************************************************
リセット
フレーム
文字
パーツ
ヘッダー
メニュー
スタイル
フッター
問い合わせ
プラポリ
アニメーション
スライダー
***************************************************************** */
:root {
    --main_color: #614a3f;
    --sub_color:#f39700;
    --base_margin: 50px;
    --base_margin_sp: 20px;
}
/* *****************************************************************
リセット
***************************************************************** */
* {
    margin: 0;
    padding: 0;
	box-sizing: border-box;
}
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, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, dialog, figure, footer, header,
hgroup, menu, nav, section,
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, dialog, figure, footer, header,
hgroup, nav, section {display:block;}
nav ul {list-style:none;}
blockquote, q {quotes:none;}

blockquote:before, blockquote:after,
q:before, q:after {
	content:'';
	content:none;
}
a {
	margin:0;
	padding:0;
	border:0;
	font-size:100%;
	vertical-align:baseline;
	background:transparent;
    text-decoration: none;
}
ins {
	background-color:#ff9;
	color:#000;
	text-decoration:none;
}
mark {
	background-color:#ff9;
	color:#000;
	font-style:italic;
	font-weight:bold;
}
del {
	text-decoration: line-through;
}
abbr[title], dfn[title] {
	border-bottom:1px dotted #000;
	cursor:help;
}
table {
	border-collapse:collapse;
	border-spacing:0;
}
hr {
    display:block;
    height:1px;
    border:0;
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}
input, select {vertical-align:middle;}
ul, ol {list-style: outside none none;}
article, aside, details, footer, header, main, menu, nav, section, summary {display: block;}
/* PCで電話番号リンクを無効に */
@media (min-width: 850px) {
    a[href*="tel:"] {
        pointer-events: none;
        cursor: default;
        text-decoration: none;
    }
}

/* *****************************************************************
フレーム
***************************************************************** */
html, body {
    height: 100%;
    width: 100%;
	word-wrap: break-word;
}
html {overflow-y: scroll;}
#wrapper {
	width: 100%;
    min-height: 100vh;
    position: relative;
    padding-bottom: 50px;
    box-sizing: border-box;
}
section{
    background-color: #faf7f5;
}
section.white{
    background-color: #fff;
}
.contents{
    width: 100%;
    max-width: 1200px;
    padding: 100px 50px;
    margin: auto;
    overflow: hidden;
}
.contents.min{
    max-width: 1000px;
}
@media screen and (max-width: 850px) {
    .contents{
        padding: 70px 5%;
    }
}
@media screen and (max-width: 640px) {
    .contents{
        padding: 50px 5%;
    }
}

/* *****************************************************************
文字
***************************************************************** */
body {
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
	-webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: "palt";
    letter-spacing: 0.05em;
    color: var(--main_color);
}
.main_title{
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 700;
    font-size: 52px;
    line-height: 1.5;
    margin-bottom: .5em;
}
.main_title span{
    color: var(--sub_color);
}
.main_title span.dot{
    background-image: radial-gradient(circle at center, var(--sub_color) 20%, transparent 20%);
    background-position: top right;
    background-repeat: repeat-x;
    background-size: 1em 0.3em;
    padding-top: .2em;
    letter-spacing: 0.1em;
    margin-right: .07em;
}
h2, h3, h4, h5, h6 {font-size: 100%; font-weight: 500; line-height: 1.5;}
h2,.contact h1,.privacy h1{
    display: flex;
    justify-content: center;
    font-size: 28px;
    line-height: 1;
    background: url("../../images/dot-line.jpg") repeat-x;
    background-size: 8px 3px;
    background-position: bottom;
    padding-bottom: .5em;
    margin-bottom: .5em;
}
h2::before,.contact h1::before,.privacy h1::before{
    content: "";
    display: inline-block;
    width: 32px;
    height: 28px;
    background: url("../../images/icon.svg") no-repeat;
    background-size: 32px 28px;
    margin-right: 10px;
}
h3,h4{
    font-size: 22px;
    margin-bottom: .7em;
}
a, a:link {color: #333333;}
a:visited {color: #333333;}
a:hover, a:active {color: #777777;}
a:focus {outline: medium none;}
.t_cent{text-align: center;}
.t_bold{font-weight: 500;}
.sub_txt{font-weight: 500; color: var(--sub_color);}
header nav li a {
    font-size: 15px;
    letter-spacing: 0;
}
@media screen and (max-width: 1100px) {
    .main_title{font-size: 4.727vw;}
}
@media screen and (max-width: 850px) {
    body {font-size: 15px;}
    .main_title{font-size: 5.727vw;}
    h3,h4{
        margin-bottom: .1em;
    }
}
@media screen and (max-width: 640px) {
    body{letter-spacing: 0.01em;}
    .main_title{font-size: 33px; padding-left: .5em;margin-bottom: .7em;}
}

/* *****************************************************************
パーツ
***************************************************************** */
img {
    width: 100%;
    height: auto;
    border: medium none;
    vertical-align: middle;
}
a,a img,input{transition: all 0.3s ease;}
a.btn,input[type="submit"]{
    display: block;
    margin: auto;
    width: 280px;
    height: 60px;
    text-align: center;
    font-weight: 500;
    line-height: 60px;
    background-color: var(--main_color);
    color: #fff;
    position: relative;
    border: 1px solid var(--main_color);
    margin-top: var(--base_margin);
}
a.btn::after{
    content: "";
    display: block;
    width: 7px;
    height: 100%;
    background: url("../../images/arrow_white.svg") no-repeat;
    background-size: 7px 14px;
    background-position: center;
    position: absolute;
    top: 0;
    right: 15px;
}
a.btn:hover,input[type="submit"]:hover{
    background-color: #fff;
    color: var(--main_color);
}
a.btn:hover::after{
    background: url("../../images/arrow.svg") no-repeat;
    background-size: 7px 14px;
    background-position: center;
}
.line{
    font-size: 90%;
    border: 1px solid var(--main_color); 
    padding: .2em .5em;
    margin: .5em 0;
}
.scroll-down-animation {
    position: absolute;
    bottom: 10%;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 10;
}
.scroll-down1 {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    border: 2px solid var(--main_color);
    font-size: 30px;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}
.scroll-down1 p {
    width: 20px;
    color: var(--main_color);
    animation: scrollDown1 1.5s ease infinite;
}
@keyframes scrollDown1 {
  0% {
    transform: translateY(-15px);
    opacity: 0;
  }
  50% {
    transform: translateY(0px);
    opacity: 1;
  }
  100% {
    transform: translateY(15px);
    opacity: 0;
  }
}

.pc{display: block;}
.sp{display: none;}
.no_sp{display: block;}
@media screen and (max-width: 850px) {
    .pc{display: none;}
}
@media screen and (max-width: 640px) {
    .scroll-down-animation {
    bottom: 8%;
    }
    .sp{display: block;}
    .no_sp{display: none;}
}

/* *****************************************************************
ヘッダー
***************************************************************** */
header {
	position: absolute;
    z-index: 10;
    top: 30px;
    right: 30px;
}
header .logo_sub{
    display: none;
}
header.active{
	position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: center;
    animation: show 0.3s ease 0s;
    background-color: rgba(255,255,255,0.9);
}
@keyframes show{
    from{opacity: 0;}
    to{opacity: 1;}
}
header.active .logo_sub{
    display: block;
    width: 128px;
    margin-top: 5px;
}
@media screen and (max-width:850px ){
    header,header.active{
        display: none;
    }
}

/* *****************************************************************
メニュー
***************************************************************** */
/* :::::: toggle button :::::: */
#drawer {
	display: none;
}
label {
	cursor: pointer;
	position: fixed;
}
.open {
	z-index: 2;
	top: 8px;
	right: 8px;
	width: 48px;
	height: 48px;
	border-radius: 48px;
	background: var(--main_color);
	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: 1;
	inset: 0;
	pointer-events: none;
	transition: background .6s;
}
#drawer:checked + .open{
	background: var(--sub_color);
	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: 1;
	position: fixed;
	overflow: auto;
	top: 0;
	right: 0;
	width: 280px;
	height: 100%;
	margin: 0;
	padding: 10px;
	box-sizing: border-box;
	background: rgba(255,255,255,1);
	transform: translateX(100%);
	transition: transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.menu h2 {
	color: var(--main_color);
	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 dotted var(--main_color);
}
.menu a {
	display: block;
	padding: 1em 2em;
	color: var(--main_color);
	text-decoration: inherit;
	transition: background .6s;
}
#drawer:checked ~ .menu {
	transform: none;
}

/* :::::: nav :::::: */
header nav {
	margin: 0;
}
header nav ul {
	display: flex;
    justify-content: flex-end;
	width: 100%;
	margin: 0;
	padding: 0;
}
header.active nav ul {
    padding-top: 15px;
    padding-left: 2em;
}
header nav li a {
    font-weight: 500;
	margin: 0 1em;
    position: relative;
    display: inline-block;
}
header nav li a:hover{
    color: #000;
    font-weight: 500;
}
header nav li a::after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    width: 0;
    height: 1px;
    background-color: var(--sub_color);
    transition: .3s;
}
header nav li a:hover::after {
    width: 100%;
}

/* :::::: change mechanism :::::: */
@media screen and (min-width: 851px) {
	.open {
		transform: translateY(calc(-100% - 8px));
	}
}


/* *****************************************************************
スタイル
***************************************************************** */
.mv {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    perspective: 1200px;
    background: #fff;
}
.bubble {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    transform-style: preserve-3d;
}
.mv .top_txt {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    padding: 0 5%;
    filter: drop-shadow(0 0 2px rgba(255,255,255,1)) drop-shadow(0 0 4px rgba(255,255,255,1));
}
.mv .top_txt .logo{
    max-width: 400px;
    margin: 0 auto var(--base_margin);
}
.about_shien{
    display: inline-block;
    text-align: center;
    border-right: 1px solid var(--main_color);
    border-left: 1px solid var(--main_color);
    padding: 0 2em;
    margin-top: var(--base_margin);
}
.chara{
    max-width: 170px;
    margin: var(--base_margin) auto 0;
}
.philosophy .title{
    width: 46.727%;
    min-width: 480px;
    margin: 20px auto 30px;
}
.philosophy ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 38px;
}
.philosophy ul li{
    width: 30%;
    background-color: #fff;
    position: relative;
    padding: 2em 1.5em;
    text-align: center;
    margin: 0 1.5%;
}
.philosophy ul li figure{
    position: absolute;
    width: 65px;
    top: -38px;
    left: 0;
}
#work .contents{
    max-width: 850px;
}
#work .work_box,#work .work_box2{
    overflow: hidden;
    margin-top: 30px;
}
#work .work_box .float_r{
    width: 60%;
    float: right;
    padding-left: 1.5em;
    padding-top: 4%;
}
#work .work_box .float_l{
    width: 40%;
    float: left;
}
#work .work_box2 .float_l{
    width: 60%;
    float: left;
    padding-right: 1.5em;
    padding-top: 4%;
}
#work .work_box2 .float_r{
    width: 40%;
    float: right;
}
#work .float_r h2{
    justify-content: flex-start;
}
#work .work_box .title,
#work .work_box2 .title{
    font-size: 22px;
    font-weight: 500;
    text-align: center;
    background-color: #faf7f5;
    margin-bottom: 15px;
}
#work .work_box .txt,
#work .work_box2 .txt{
    margin-bottom: 1.5em;
}
#work .work_box a,
#work .work_box2 a{
    display: block;
    width: 220px;
    height: 40px;
    color: #fff;
    font-size: 16px;
    line-height: 40px;
    font-weight: 500;
    padding: 0 1em;
    border-radius: 15px;
    background-color: var(--sub_color);
    border: 1px solid var(--sub_color);
}
#work .work_box a:hover,
#work .work_box2 a:hover{
    background-color: #fff;
    color: var(--sub_color);
}
#work .conditions{
    text-align: center;
    background-color: #faf7f5;
    margin-top: 50px;
    padding: .5em 1.5em 1.2em;
}
#work .conditions .sub_txt{
    margin-top: 1em;
    line-height: 1.4;
}
#work .conditions .un_line{
    border-bottom: 2px solid #fff;
    padding-bottom: .7em;
}
#work .conditions p span{
    display: inline-block;
}
#flow h2 span{
    font-size: 80%;
    padding-top: 5px;
}
#flow .schedule{
    border-top: 1px solid var(--main_color);
    border-bottom: 1px solid var(--main_color);
    margin-top: 30px;
    text-align: center;
    position: relative;
}
#flow .schedule .image1{
    position: absolute;
    top: -20%;
    right: -3%;
    width: 185px;
}
#flow .schedule .image2{
    position: absolute;
    bottom: 12%;
    left: 0%;
    width: 198px;
}
#flow .schedule .image3{
    position: absolute;
    bottom: 3%;
    right: 0;
    width: 120px;
}
#flow .schedule ul{
    display: inline-block;
    text-align: left;
    margin: auto;
    padding: .5em 0;
}
#flow .schedule ul li{
    display: flex;
    padding: .5em 1.5em;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0;
}
#flow .schedule ul li .time{
    width: 4em;
}
#flow .schedule ul li:nth-child(even){
    background-color: #fff;
}
#use ul{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: var(--base_margin);
}
#use ul li{
    margin: 0 5px;
}
#use ul li .bg1{
    width: 167px;
    background: url("../../images/back1.svg") no-repeat;
    background-size: 100% auto;
}
#use ul li .bg2{
    width: 167px;
    background: url("../../images/back2.svg") no-repeat;
    background-size: 100% auto;
}
#use ul li img{
    max-width: 89.82%;
}
#company .shop{
    width: 60%;
    margin: 0 auto 15px;
}
#company .shop_title{
    display: block;
    text-align: center;
    font-size: 120%;
    font-weight: 500;
    margin: 40px auto 20px;
    background-color: #9c756b;
    color: #fff;
    padding: 0;
    border-bottom: none;
    width: 80%;
}
#company ul {
    width: 80%;
    margin: auto;
}
#company ul li{
    display: flex;
    flex-wrap: wrap;
    padding: 10px 1em;
    border-bottom: 1px dashed #9c756b;
}
#company ul li p{
    width: calc(100% - 6em);
    padding-left: 1em;
    font-size: 15px;
}
#company ul li p.head{
    width: 6em;
    padding-left: 0;
}
.map {
    position: relative;
    width: 80%;
    padding-top: 36.363%;
    margin: 20px auto 50px;
}
.map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
@media screen and (max-width: 850px) {
    .philosophy .title{
        width: 70%;
        min-width: 430px;
    }
    .philosophy ul{
        padding-top: 0;
    }
    .philosophy ul li{
        width: 100%;
        padding: 1.2em 1.5em;
        margin: 0 0 20px;
    }
    .philosophy ul li figure{
        top: -13px;
        left: 5px;
    }
    #flow .schedule .image1{
        width: 20.555%;
    }
    #flow .schedule .image2{
        bottom: 20%;
        left: -5%;
        width: 22%;
    }
    #flow .schedule .image3{
        position: absolute;
        bottom: 3%;
        right: 0;
        width: 120px;
    }
    #use ul li{
        width: 22%;
    }
    #use ul li .bg1,
    #use ul li .bg2{
        width: 100%;
    }
}
@media screen and (max-width: 640px) {
    #work .work_box .float_r,
    #work .work_box .float_l,
    #work .work_box2 .float_r,
    #work .work_box2 .float_l{
        float: none;
    }
    #work .work_box .float_r,
    #work .work_box2 .float_l{
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }
    #work .work_box .float_l,
    #work .work_box2 .float_r{
        width: 50%;
        margin: 20px auto 0;
    }
    #work .float_r h2{
        justify-content: center;
    }
    #work .work_box a,
    #work .work_box2 a{
        margin: auto;
    }
    #flow h2{
        flex-wrap: wrap;
    }
    #flow h2 span {
        display: block;
        width: 100%;
        text-align: center;
    }
    #flow .schedule .image1 {
        top: -25%;
    }
    #flow .schedule .image2{
        display: none;
    }
    #flow .schedule .image3{
        position: static;
        width: 120px;
        margin: auto;
    }
    #company .shop{
        width: 80%;
        margin: 20px auto 0;
    }
    #company ul,#company .shop_title{
        width: 100%;
    }
    .map {
        width: 100%;
        padding-top: 100%;
    }
}
@media screen and (max-width: 540px) {
    .mv .top_txt .logo {
        width: 85%;
        margin: 0 auto var(--base_margin_sp);
    }
    .about_shien{
        margin-top: var(--base_margin_sp);
    }
    .about_shien p{
        text-align: left;
    }
    #use ul li{
        width: 50%;
        margin-bottom: 2em;
        font-size: 18px;
    }
    #use ul li .bg1,#use ul li .bg2{
        transform: rotate(90deg);
        margin-bottom: 1em;
    }
    #use ul li .bg1 img,#use ul li .bg2 img{
        transform: rotate(-90deg);
    }
}
@media screen and (max-width: 480px) {
    #work .work_box{
        margin-top: 15px;
    }
    #work .work_box .float_l,
    #work .work_box2 .float_r{
        width: 60%;
        margin: 30px auto 0;
    }
    #work .work_box .title,
    #work .work_box2 .title{
        font-size: 20px;
    }
    .philosophy .title{
        width: 100%;
        min-width: 100%;
        margin: 20px auto 30px;
    }
    .philosophy ul li p{
        text-align: left;
    }
    #flow h2{
        padding-right: 5%;
    }
    #flow .schedule .image1 {
        width: 25%;
    }
    #flow .schedule ul{
        width: 100%;
    }
    #flow .schedule ul li {
        width: 100%;
        padding: .5em .7em;
        font-size: 17px;
    }
    #flow .schedule .image1 {
        top: -30%;
    }
    #company .shop{
        width: 100%;
    }
    #company ul li p{
        width: 100%;
        padding-left: 0;
    }
    #company ul li p.head{
        width: 100%;
        font-size: 14px;
    }
}

/* *****************************************************************
フッター
***************************************************************** */
footer {
    width: 100%;
    height: 50px;
    text-align: center;
    line-height: 50px;
    position: absolute;
    bottom: 0;
}
.copyright {
    font-size: 14px;
}


/* *****************************************************************
問い合わせ
***************************************************************** */  
.contact h1{
    margin-top: 15px;
}
.contact .txt_box{
    max-width: 800px;
    margin: auto;
    text-align: center;
}
.contact .txt_box .tel_area{
    display: inline-block;
    border: 2px solid var(--main_color);
    padding: .8em 1.8em;
    margin: 1.5em auto 2em;
}
.contact .txt_box .tel_area .txt{
    font-size: 18px;
    line-height: 1.5;
    font-weight: bold;
}
.contact .txt_box .tel_area .tel{
    font-weight: 500;
    font-size: 40px;
    line-height: 1;
    margin: .2em 0;
}
.contact .txt_box .tel_area .tel span{
    font-size: 14px;
    display: block;
    margin-top: .3em;
}
.contact .txt_box .tel_area .tel a{
    color: var(--sub_color);
}
.contact .form_area{
    max-width: 700px;
    margin: auto;
    letter-spacing: 0;
    background-color: #fff;
    padding: 10px 50px 50px;
}
.contact .form_area p{
    margin-bottom: 5px;
    margin-top: 40px;
}
.contact .form_area .required{
    background-color: #f00;
    color: #fff;
    padding: .1em .5em;
    margin-right: .5em;
    font-size: 12px;
    line-height: 1;
    letter-spacing: .1em;
}
.contact .form_area .normal{
    background-color: #7B7B7B;
    color: #fff;
    padding: .1em .5em;
    margin-right: .5em;
    font-size: 12px;
    line-height: 1;
    letter-spacing: .1em;
}
.contact .pra{
    display: block;
    text-align: center;
    font-size: 14px;
    text-decoration: underline;
    margin-top: 2.5em;
}
input[type="text"],input[type="email"],textarea {
    padding: 0;
    border: none;
    border-radius: 0;
    outline: none;
    background: none;
}
input[type="text"],input[type="email"],
textarea {
    width: 100%;
	border: 1px solid var(--main_color);
	transition: all .3s;
    border-radius: 30px;
    padding: .7em 1.5em;
    font-size: 15px;
    line-height: 1.5;
}
textarea {
    border-radius: 20px;
}
input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
    background-color: #faf7f5;
}
input[type="radio"]{
    margin-right: 1px;
}
.contact label{
    position: static;
    margin-right: 1em;
}
.contact .send{
    margin: 20px auto 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
input[type="submit"]{
    cursor: pointer;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    font-size: 16px;
    font-weight: bold;
    margin-top: 30px;
}
input[type="submit"].back{
    background-color: #E4D4CA;
    color: var(--main_color);
}
input[type="submit"].back:hover{
    background-color: #fff;
}
.mw_wp_form_confirm .tel_area,
.mw_wp_form_complete .tel_area,
.mw_wp_form_confirm .ex,
.mw_wp_form_complete .ex,
.mw_wp_form_input .ex2,
.mw_wp_form_complete .ex2{display: none!important;}
.mw_wp_form_complete .complet{
    text-align: center;
    line-height: 2.2;
    height: 100%;
}
.mw_wp_form_complete .complet p{
    margin-bottom: 1em;
}
.mw_wp_form_complete .complet .comp{
    font-size: 28px;
    font-weight: bold;
    padding: 2em 0 1em;
}
@media screen and (max-width: 480px) {
    .contact .txt_box{
        text-align: left;
    }
    .contact .txt_box .tel_area{
        padding: .5em 1em;
        text-align: center;
    }
    .contact .txt_box .tel_area .txt{
        font-size: 16px;
    }
    .contact .form_area{
        width: 110%;
        margin-left: -5%;
        padding: .3em 1em 3em;
    }
    .mw_wp_form .horizontal-item + .horizontal-item {
        margin-left: 0;
    }
    .contact label{
        display: block;
        width: 100%;
        margin-right: 0;
        margin-top: 1em;
    }
    .contact .mw_wp_form_confirm .form_area{
        margin-top: 30px;
    }
}

/* *****************************************************************
プラポリ
***************************************************************** */ 
.privacy h1{
    margin-top: 15px;
}
.privacy h3{
    font-size: 20px;
    margin-bottom: 0;
    margin-top: 2em;
}

/* *****************************************************************
アニメーション
***************************************************************** */  
.poyon {
  animation: poyoyon .9s ease-in-out forwards;
    opacity: 0;
}
.poyon2 {
  animation: poyoyon .9s ease-in-out .6s forwards;
    opacity: 0;
}
@keyframes poyoyon {
    0%  {opacity: 0; transform: scale(1.0, 1.0) translate(0, 0);}
    15% {transform: scale(0.98, 0.9) translate(0, 5px);}
    30% {transform: scale(1.02, 1.0) translate(0, 8px);}
    50% {transform: scale(0.98, 1.05) translate(0, -8px);}
    70% {transform: scale(1.0, 0.9) translate(0, 5px);}
    100% {transform: scale(1.0, 1.0) translate(0, 0);}
    100% {opacity: 1;}
}  
.fade{
    opacity: 0;
    animation: fade 1s ease 1.4s 1 forwards;
}
@keyframes fade{
    0%{opacity: 0;transform: translateY(30px);}
    100%{opacity: 1;transform: translateY(0);}
}
.animate {
    opacity: 0;
    transform: translateY(20px);
    transition: all 1.3s ease;
}
.animate.show {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0s;
}
.animate.show.two {transition-delay: 0.2s;}
.animate.show.three {transition-delay: 0.3s;}
.animate.show.four {transition-delay: 0.4s;}
.animate.show.five {transition-delay: 0.5s;}
.animate.show.six {transition-delay: 0.6s;}


/* *****************************************************************
スライダー
***************************************************************** */ 
.slider {
  position: relative;
  width: 100%;
  max-width: 700px;
  margin: auto;
  overflow: hidden;
}
.slides {
  display: flex;
  transition: transform 0.4s ease;
}
.slide {
  min-width: 100%;
  user-select: none;
}
.slide img {
  width: 100%;
  display: block;
}
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(97,74,63,0.7);
  color: #fff;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
  border-radius: 4px;
}
.prev { left: 10px; }
.next { right: 10px; }
.dots {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
.dots button {
  width: 10px;
  height: 10px;
  background: #ddd;
  border-radius: 50%;
  border: none;
  margin: 0 5px;
  cursor: pointer;
}
.dots .active {
  background: var(--main_color);
}
@media screen and (max-width: 480px) {
    .prev,.next {display: none;}
}