<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* vw:viewport縺ｮ蟷�」h:viewport縺ｮ鬮倥＆繧貞渕貅悶→縺励◆蜑ｲ蜷�(%)繧偵≠繧峨ｏ縺吶ゆｾ九∴縺ｰ100vh縺ｯ繧ｦ繧｣繝ｳ繝峨え縺ｮ陦ｨ遉ｺ鬆伜沺縺ｮ鬮倥＆縺ｨ縺ｪ繧九� */

* {
  margin: 0;
  padding: 0;
  font-family: serif;
  color: #3e0923;
}
a {
  text-decoration: none;
}
ul,
li {
  list-style-type: none;
}

/* 繝ｭ繝ｼ繝�ぅ繝ｳ繧ｰ */
.loading {
  position: fixed;
  z-index: 1000;
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 0;
  background: #fdfdfd;
}
.loading.hide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 500ms;
}
.loading .circle {
  display: block;
  position: relative;
  top: calc( 50% - 20px );
  width: 40px;
  height: 40px;
  margin: 0 auto;
  border: 8px solid #e0e0e0;
  border-top: 7px solid #8564a5;
  border-radius: 50px;
  animation: loading 700ms linear 0ms infinite normal both;
}
@keyframes loading {
  0% { transform: rotate( 0deg ); }
  100% { transform: rotate( 360deg ); }
}

/* 繝医ャ繝励�繝ｼ繧ｸ */
.headerbox {
  position: relative;
  width: 100%;
  height: 100vh;
  /* background-image: url(https://placehold.jp/1000x550.png); */
}
.headerbox #logo {
  position: absolute;
  top: 5vh;
  left: 5vh;
  width: 15vw;
}
.headerbox #lead {
  position: absolute;
  top: 50vh;
  right: 2vw;
}
@media screen and (max-width: 779px) {
  .headerbox #logo {
    position: absolute;
    top: 3vh;
    left: 3vh;
    width: 20vw;
  }
}
@media screen and (max-width: 400px) {
  .headerbox #logo {
    width: 50vw;
  }
}

/* 繝医ャ繝励�繝ｼ繧ｸ繝｡繧､繝ｳ譁�ｭ� */
.lead h1 {
  text-shadow: 1px 1px 2px black;
}
a .hover {
  display: none;
}
a:hover .nomal {
  display: none;
}
a:hover .hover {
  display: inline;
}
.hover {
  color: white;
  font-family: "Shippori Mincho B1", serif;
  font-size: 2em;
}
.nomal {
  color: white;
  font-family: "Allura", cursive;
  font-size: 3em;
}
@media screen and (max-width: 400px) {
  .nomal {
    font-size: 1.5em;
  }
  .hover {
    font-size: 1em;
  }
}


/* 繝医ャ繝励�繝ｼ繧ｸ閭梧勹 */
.topSlide {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: #865ba3;
  z-index: -1;
}
.topSlide li {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: none;
  opacity: 0;
  -webkit-animation: anime 20s linear 0s infinite;
  animation: anime 20s linear 0s infinite;
}
.topSlide li:nth-child(1) {
  background-image: url(img/topimg1.png);
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
.topSlide li:nth-child(2) {
  background-image: url(img/topimg2.png);
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}
.topSlide li:nth-child(3) {
  background-image: url(img/topimg3.png);
  -webkit-animation-delay: 10s;
  animation-delay: 10s;
}
@-webkit-keyframes anime {
  0% {
    -webkit-animation-timing-function: ease-in;
    opacity: 0;
  }
  10% {
    /* -webkit-transform: scale(1.1); */
    opacity: 1;
  }
  40% {
    /* -webkit-transform: scale(1.2); */
    -webkit-animation-timing-function: ease-out;
    opacity: 1;
  }
  50% {
    /* -webkit-transform: scale(1.3); */
    opacity: 0;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}
@keyframes anime {
  0% {
    animation-timing-function: ease-in;
    opacity: 0;
  }
  10% {
    /* transform: scale(1.1); */
    opacity: 1;
  }
  40% {
    /* transform: scale(1.2); */
    animation-timing-function: ease-out;
    opacity: 1;
  }
  50% {
    /* transform: scale(1.3); */
    opacity: 0;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}

/* 繧ｹ繧ｯ繝ｭ繝ｼ繝ｫ繝槭ず繝�け */
.activateA {
  animation-name: fadeInRight;
  animation-duration: 1.8s;
}
.activateB {
  animation-name: fadeInLeft;
  animation-duration: 2s;
}
.activateC {
  animation-name: fadeInDown;
  animation-duration: 1s;
}

/* 繝上Φ繝舌�繧ｬ繝ｼ繝｡繝九Η繝ｼ */
.menu-wrapper {
  position: relative;
}

.btn {
  width: 100%;
  background-color: #865ba3;
  opacity: 0.8;
  display: block;
  width: 50px;
  height: 50px;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999; /*霑ｽ險假ｼ壹＞縺､繧ゆｸ逡ｪ荳�*/
}

.bar {
  width: 30px;
  height: 1px;
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
}

.bar-top {
  top: 10px;
}
.bar-middle {
  top: 50%;
  transform: translate(-50%, -50%);
}
.bar-bottom {
  bottom: 10px;
}

.btn.close .bar-top {
  transform: translate(-50%, 16px) rotate(45deg);
  transition: transform 0.3s;
  width: 40px;
}

.btn.close .bar-middle {
  opacity: 0;
  transition: opacity 0.3s;
}
.btn.close .bar-bottom {
  transform: translate(-50%, -13px) rotate(-45deg);
  transition: transform 0.3s;
  width: 40px;
}
.menu-lists {
  display: none;
  background-color: rgba(255, 255, 255, 0.95);
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  padding-top: 50px;
  text-align: center;
  z-index: 990;
}
.menu-lists ul {
  display: flex;
  flex-wrap: wrap;
  width: 600px;
  margin: auto;
  justify-content: center;
  text-align: center;
}
.nav-items__item {
  opacity: 0;
  width: 150px;
  margin: 0 20px;
}
.nav-items__item a {
  color: #8564a5;
  font-size: 2em;
}
.nav-items__item a::after {
  position: absolute;
  bottom: -3px;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #a593c5;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform .3s;
}
.nav-items__item a:hover::after {
  transform: scale(1, 1);
}
.nav-items__item a:hover {
  color: #a593c5;
}
/* 繝ｪ繧ｹ繝医�繝輔ぉ繝ｼ繝峨う繝ｳ */
.nav-items__item:first-child {
  animation: catch_anime 1.4s forwards 0s;
}
.nav-items__item:nth-child(2) {
  animation: catch_anime 1.4s forwards 0.2s;
}
.nav-items__item:nth-child(3) {
  animation: catch_anime 1.4s forwards 0.4s;
}
.nav-items__item:nth-child(4) {
  animation: catch_anime 1.4s forwards 0.6s;
}
.nav-items__item:nth-child(5) {
  animation: catch_anime 1.4s forwards 0.8s;
}
.nav-items__item:nth-child(6) {
  animation: catch_anime 1.4s forwards 1s;
}
@keyframes catch_anime {
  0% {
    transform: translateY(20px);
  }
   100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@media screen and (max-width: 779px) {
  .menu-lists ul {
    width: 50vw;
  }
  .menu-lists li {
    width: 20vw;
  }
}
@media screen and (max-width: 400px) {
  .topSlide {
    width: 100%;
  }
  .menu-lists ul {
    display: block;
  }
}

/* 莠育ｴ��繧ｿ繝ｳ */
.yoyaku {
  background-color: #e1d2e7;
  opacity: 0.8;
  width: 80px;
  height: 50px;
  position: fixed;
  top: 0;
  right: 50px;
  z-index: 900;
  display: block;
  text-align: center;
}
.yoyakuen {
  font-size: 13px;
  color: #865ba3;
  margin-top: 5px;
}
.yoyakuja {
  font-size: 10px;
  color: #865ba3;
}
.yoyaku:hover {
  background-color: #fff;
}

/* 繧ｻ繧ｯ繧ｷ繝ｧ繝ｳ蜈ｨ菴薙�險ｭ螳� */
.sectionbox {
  position: relative;
  width: 100%;
  height: 100vh;
}
.sectionbox h1 {
  text-align: center;
  /* padding-top: 5vh; */
  /* font-size: 3em; */
  font-size: 45px;
  font-family: "Cormorant", serif;
}

/* 繧ｻ繧ｯ繧ｷ繝ｧ繝ｳ繧ｿ繧､繝医Ν縺ｮ陬�｣ｾ */
.sectionTitle {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 3vh;
}
.deco {
  width: 5vw;
}
@media screen and (max-width: 779px) {
  .deco {
    width: 8vw;
  }
}
@media screen and (max-width: 400px) {
  .sectionbox h1 {
  font-size: 40px;
  }
  .deco {
    width: 12vw;
  }
}

/* .sectionbox h1::before {
  content: url(img/deco_left.svg);
  width: 5vw;
  position: absolute;
  left: 500px;
}
.sectionbox h1::after {
  content: url(img/deco_right.svg);
  width: 5vw;
  position: absolute;
  left: 1000px;
} */

/* 繧ｳ繝ｳ繧ｻ繝励ヨ */
#concept .sectionbox {
  background-color: #a593c5;
}
.concept_h1 {
  position: absolute;
  left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  padding-top: 5vh;
  z-index: 101;
  font-size: 3em;
  font-family: "Cormorant", serif;
}
.concept_lead {
  color: white;
  position: absolute;
  top: 50%;
  left: 10vh;
  transform: translateY(-50%);
  z-index: 100;
  text-shadow: 1px 1px 2px black;
  width: 50vw;
  line-height: 2.5em;
  font-size: 1.4em;
  /* background-color: rgba(255, 255, 255, 0.5); */
  padding: 3vh;
}
/* 閭梧勹縺ｮ讓ｪ繧ｹ繝ｩ繧､繝� */
.bg-image-loop {
	width: 100%;
	height: 100vh; /* 逕ｻ蜒上�鬮倥＆繧呈欠螳� */
	position: absolute;
  top: 0;
	background: url("img/slideimg.png") repeat-x 0 0;
	background-size: auto 100%;
	animation: bg-slider 45s linear infinite; 
	margin: 0;
	padding: 0;
}
@keyframes bg-slider {
	from { background-position: 0 0; }
    to { background-position: -2000px 0; } /* 笳ｯ笳ｯpx縺ｯ菴ｿ逕ｨ縺励◆閭梧勹逕ｻ蜒上�髟ｷ縺� */
}
@media screen and (max-width: 779px) {
  #concept .sectionbox {
    width: 100%;
  }
  .concept_lead {
    display: flex;
    justify-content: last;
    font-size: 15px;
    padding: 0;
    top: 30%;
    left: 5vh;
  }
}
@media screen and (max-width: 400px) {
  .concept_lead {
    font-size: 10px;
  }
}

/* 繝九Η繝ｼ繧ｹ */
#news .sectionbox {
  /* background-image: url(https://placehold.jp/1000x550.png); */
  background-color: #a593c5;
  /* height: 50vh; */
}
#news h1 {
  color: #fff;
}
.newslist {
  background-color: #fff;
  width: 60vw;
  height: 60vh;
  overflow: auto;
  margin: 7vh auto;
  border: 8px double #a593c5;
}
.newslist ul {
  padding: 10px;
}
.newslist li {
  border-bottom: 1px solid #8564a5;
  margin: 5px 0;
  font-size: medium;
}
.newslist a {
  color: #3e0923;
}
.newslist a:hover {
  color: #8564a5;
}
.date {
  font-size: small;
  color: #8564a5;
}

/* 繝｡繝九Η繝ｼ */
#menu .sectionbox {
  background-color: #fff;
}
#menu h1 {
  color: #8564a5;
}
/* slick */
.slider-3 .slick-slide {
  margin: 5vh 60px;
  padding: 20px 0;
  position: relative;
}
.slider-3 .slick-slide .slide-img {
  width: 650px;
  height: 400px;
  transition: all 0.6s ease 0.4s;
  opacity: 0.8;
  box-shadow: 7px 7px 15px -5px #666;
  border: 3px solid #fff;
  overflow: hidden;
}
@media screen and (max-width: 779px) {
  .slider-3 .slick-slide .slide-img {
    width: 450px;
    height: auto;
  }
}
@media screen and (max-width: 451px) {
  .slider-3 .slick-slide .slide-img {
    width: 250px;
    height: auto;
  }
}
.slider-3 .slick-slide.slick-current .slide-img {
  transform: scale(1.2);
  opacity: 1;
}
.slider-3 .slick-slide .slide-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slider-3 .slick-arrow {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #fff;
  cursor: pointer;
  border: none;
  outline: none;
  font-size: 0;
  position: absolute;
  top: 50%;
  z-index: 1;
  transform: translateY(-50%);
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
}
.slider-3 .slick-arrow:active {
  width: 58px;
  height: 58px;
}
.slider-3 .slick-arrow::before {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  border: 1px solid #8564a5;
  border-width: 3px 3px 0 0;
  position: absolute;
  top: 24px;
  transform: rotate(45deg);
}
.slider-3 .slick-next {
  right: 1vw;
}
.slider-3 .slick-prev {
  left: 1vw;
}
.slider-3 .slick-next::before {
  left: 20px;
}
.slider-3 .slick-prev::before {
  border-width: 0 0 3px 3px;
  right: 22px;
}
.dots-3 .slick-dots {
  text-align: center;
  margin: 1vh 0;
}
.dots-3 .slick-dots li {
  display: inline-block;
}
.dots-3 .slick-dots button {
  display: block;
  width: 10px;
  height: 10px;
  margin: 6px;
  font-size: 0;
  padding: 0;
  border: 0;
  outline: none;
  cursor: pointer;
  background: #bcbcbc;
  border-radius: 50%;
}
.dots-3 .slick-dots .slick-active button {
  background: #8564a5;
}
@media screen and (max-width: 779px) {
  #menu .sectionbox {
    width: 100%;
    overflow: auto;
    height: 100%;
  }
}

/* 繧｢繧ｯ繧ｻ繧ｹ */
#access .sectionbox {
  /* background-image: url(https://placehold.jp/1000x550.png); */
  background-color: #a593c5;
  height: 120vh;
}
#access h1 {
  color: #fff;
}
.gaikanimg {
  text-align: center;
  margin: auto;
  padding-top: 2vh;
}
.gaikanimg img {
  width: 30vw;
}
.map img{
  width: 300px;
  border: solid 3px #fff;
}
.map {
	width:			306px;
	height:			256px;
	overflow:		hidden;
	margin:			10px 8px 10px 16px;
	position:		relative;	/* 逶ｸ蟇ｾ菴咲ｽｮ謖�ｮ� */
}
.map .caption {
	font-size:		130%;
	text-align: 		center;
	padding-top:		110px;
	color:			#fff;
}
.map .caption:hover {
  opacity: 0.7;
}
.map .mask {
	width:			100%;
	height:			100%;
	position:		absolute;	/* 邨ｶ蟇ｾ菴咲ｽｮ謖�ｮ� */
	top:			0;
	left:			0;
	opacity:		0;	/* 繝槭せ繧ｯ繧定｡ｨ遉ｺ縺励↑縺� */
	background-color:	rgba(0,0,0,0.4);	/* 繝槭せ繧ｯ縺ｯ蜊企乗� */
	-webkit-transition:	all 0.2s ease;
	transition:		all 0.2s ease;
}
.map:hover .mask {
	opacity:		1;	/* 繝槭せ繧ｯ繧定｡ｨ遉ｺ縺吶ｋ */
}

.accessinfo {
  display: flex;
  justify-content: center;
  /* align-items: center; */
  margin-top: 4.5vh;
}
.info {
  margin: 2vh 6vw 0 0;
}
.infolink {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1vh;
}
.reservationBtn {
  background-color: #fff;
  width: 150px;
  height: 50px;
  border-radius: 30px;
  border: none;
  margin-right: 1vw;
}
.reservationBtn:hover {
  background-color: #e1d2e7;
}
.reservationBtn span {
  display: block;
}
.reservationBtn .yoyabo {
  font-size: 15px;
}
.reservationBtn .nihongo {
  font-size: 10px;
}
#insta {
  width: 50px;
  height: auto;
  margin-top: 6px;
}
#insta:hover {
  opacity: 0.8;
}
@media screen and (max-width: 779px) {
  .gaikanimg img {
    width: 60vw;
  }
  .accessinfo {
    flex-flow: column;
    justify-content: center;
  }
  .info {
    text-align: center;
    margin: 1vh;
  }
  .infolink {
    justify-content: center;
  }
  .reservationBtn {
    margin-right: 1vw;
  }
  .map {
    margin: auto;
  }
}

/* 豎ゆｺｺ */
#recruit .sectionbox {
  background-color: white;
  height: 100%;
  padding-bottom: 5vh;
}
.kanyu {
  text-align: center;
  color: #8564a5;
  margin-top: 3vh;
}
#recruit h1 {
  color: #8564a5;
}

/* 繧｢繧ｳ繝ｼ繝�ぅ繧ｪ繝ｳ繝代ロ繝ｫ */
/*蜈ｨ菴�*/
.accordion-area {
  list-style: none;
  width: 96%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.accordion-area li {
  margin: 5vh 0;
  width: 30vw;
}
.accordion-area li:last-child {
  margin-left: 2vw;
}

.accordion-area section {
  border: 1px solid #a593c5;
}

/*繧｢繧ｳ繝ｼ繝�ぅ繧ｪ繝ｳ繧ｿ繧､繝医Ν*/
.title {
  position: relative; /*+繝槭�繧ｯ縺ｮ菴咲ｽｮ蝓ｺ貅悶→縺吶ｋ縺溘ａrelative謖�ｮ�*/
  cursor: pointer;
  font-size: 1rem;
  font-weight: normal;
  padding: 3% 3% 3% 50px;
  transition: all 0.5s ease;
}

/*繧｢繧､繧ｳ繝ｳ縺ｮ�九→ﾃ�*/
.title::before,
.title::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 2px;
  background-color: #8564a5;
}
.title::before {
  top: 48%;
  left: 15px;
  transform: rotate(0deg);
}
.title::after {
  top: 48%;
  left: 15px;
  transform: rotate(90deg);
}
/*縲close縺ｨ縺�≧繧ｯ繝ｩ繧ｹ縺後▽縺�◆繧牙ｽ｢迥ｶ螟牙喧縲*/
.title.close::before {
  transform: rotate(45deg);
}

.title.close::after {
  transform: rotate(-45deg);
}

/*繧｢繧ｳ繝ｼ繝�ぅ繧ｪ繝ｳ縺ｧ迴ｾ繧後ｋ繧ｨ繝ｪ繧｢*/
.box {
  display: none; /*縺ｯ縺倥ａ縺ｯ髱櫁｡ｨ遉ｺ*/
  background: #f3f3f3;
  margin: 0 3% 3% 3%;
  padding: 3%;
}
.box a {
  color: #865ba3;
  position: relative;
}
.box a::after {
  position: absolute;
  bottom: -3px;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #a593c5;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform .3s;
}
.box a:hover {
  color: #a593c5;
}
.box a:hover::after {
  transform: scale(1, 1);
}

/* 繝��繝悶Ν */
table {
  margin: 1vh auto;
  width: 100%;
}
/* table, */
td {
  /* border: 1px solid #333; */
  padding: 10px;
  background-color: #a593c5;
  border-radius: 3px;
  color: #fff;
  /* vertical-align: top; */
}
td:last-child {
  background-color: #fff;
  color: #865ba3;
}
thead,
tfoot {
  background-color: #333;
  color: #fff;
}
@media screen and (max-width: 480px) {
  .accordion-area {
    flex-flow: column;
    justify-content: center;
  }
  .accordion-area li:first-child {
    margin-left: 2vw;
  }
  .accordion-area li {
    margin: 1vh;
    width: 90vw;
  }
}

/* 繝輔ャ繧ｿ繝ｼ */
footer {
  background-color: #a593c5;
  text-align: center;
  padding: 1vh 0;
}
.footer p {
  color: white;
}
.rogos {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer #logo2 {
  width: 10vw;
  height: auto;
  margin-right: 1vw;
}
.footer #instarogo {
  width: 3vw;
  height: auto;
  padding-right: 5vw;
}
.chuui {
  font-size: 8px;
  margin: 5px 0;
}
@media screen and (max-width: 779px) {
  .rogos {
    display: flex;
    flex-flow: column;
    margin: auto;
  }
  .footer #logo2 {
    width: 12vw;
    margin: 0;
  }
  .footer #instarogo {
    width: 5vw;
    padding: 0;
  }
}


/* 莠育ｴ��繝ｼ繧ｸ */

#reservation {
  background-color: #e1d2e7;
}
.yoyamoji {
  color: #3e0923;
  text-align: center;
}
#reservation h1 {
  color: #3e0923;
}
.Form {
  margin: 5vh auto 0 auto;
  max-width: 720px;
}
@media screen and (max-width: 400px) {
  .Form {
    margin-top: 40px;
  }
}
.Form-Item {
  border-top: 1px solid #fff;
  padding-top: 24px;
  padding-bottom: 24px;
  width: 100%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 779px) {
  .Form-Item {
    padding-left: 14px;
    padding-right: 14px;
    padding-top: 16px;
    padding-bottom: 16px;
    flex-wrap: wrap;
    width: 90vw;
    justify-content: center;
  }
}
@media screen and (max-width: 400px) {
  .Form-Item {
    padding-left: 14px;
    padding-right: 14px;
    padding-top: 16px;
    padding-bottom: 16px;
    flex-wrap: wrap;
    width: 90vw;
    justify-content: center;
  }
}
.Form-Item:nth-child(5) {
  border-bottom: 1px solid #ddd;
}
.Form-Item-Label {
  width: 100%;
  max-width: 248px;
  letter-spacing: 0.05em;
  font-weight: bold;
  font-size: 18px;
}
@media screen and (max-width: 400px) {
  .Form-Item-Label {
    max-width: inherit;
    display: flex;
    align-items: center;
    font-size: 15px;
  }
}
.Form-Item-Label.isMsg {
  margin-top: 8px;
  margin-bottom: auto;
}
@media screen and (max-width: 400px) {
  .Form-Item-Label.isMsg {
    margin-top: 0;
  }
}
.Form-Item-Label-Required {
  border-radius: 6px;
  margin-right: 8px;
  padding-top: 8px;
  padding-bottom: 8px;
  width: 48px;
  display: inline-block;
  text-align: center;
  background: #8564a5;
  color: #fff;
  font-size: 14px;
}
@media screen and (max-width: 400px) {
  .Form-Item-Label-Required {
    border-radius: 4px;
    padding-top: 4px;
    padding-bottom: 4px;
    width: 32px;
    font-size: 10px;
  }
}

.Form-Item-Label-optional {
  border-radius: 6px;
  margin-right: 8px;
  padding-top: 8px;
  padding-bottom: 8px;
  width: 48px;
  display: inline-block;
  text-align: center;
  background: #8f8f8f;
  color: #fff;
  font-size: 14px;
}

.Form-Item-Input {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 48px;
  flex: 1;
  width: 100%;
  max-width: 410px;
  background: #eaedf2;
  font-size: 18px;
}
@media screen and (max-width: 400px) {
  .Form-Item-Input {
    margin-left: 0;
    margin-top: 18px;
    height: 40px;
    flex: inherit;
    font-size: 15px;
  }
}
.Form-Item-Textarea {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding: 1em;
  height: 216px;
  flex: 1;
  width: 100%;
  max-width: 410px;
  background: #eaedf2;
  font-size: 18px;
}
@media screen and (max-width: 400px) {
  .Form-Item-Textarea {
    margin-top: 18px;
    margin-left: 0;
    height: 200px;
    flex: inherit;
    font-size: 15px;
  }
}

.yoyakutime {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding: 1vh 1em;
  height: 216px;
  flex: 1;
  width: 100%;
  max-width: 410px;
  background: #eaedf2;
  font-size: 18px;
  display: block;
  overflow: auto;
}

.Form-Btn {
  border-radius: 6px;
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  width: 180px;
  height: 60px;
  display: block;
  letter-spacing: 0.05em;
  background: #a593c5;
  color: #fff;
  font-weight: bold;
  font-size: 15px;
}
.Form-Btn:hover {
  background-color: #865ba3;
}

@media screen and (max-width: 400px) {
  .Form-Btn {
    margin-top: 24px;
    padding-top: 8px;
    padding-bottom: 8px;
    width: 160px;
    font-size: 16px;
  }
  .yoyakutime {
    margin: 10px 0;
  }
}

.Form-Btn-Back {
  border-radius: 6px;
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  width: 80px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.05em;
  background: #8f8f8f;
  color: #fff;
  font-weight: bold;
  font-size: 15px;
}

.buttons {
  display: block;
  padding-bottom: 15vh;
}


/* 繝｡繝九Η繝ｼ荳隕ｧ */

#menutop .headerbox {
  background-image: url(img/menutopimg.png);
  background-size: cover;
}
@media screen and (max-width: 779px) {
  #menutop .headerbox {
    background-size: 100%;
    height: 50vh;
    background-repeat: no-repeat;
    background-color: #faeeff;
  }
  #menutop .sectionbox {
    position: relative;
    width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 400px) {
  #menutop .headerbox {
    background-size: 150%;
  }
}
.menu_top {
  position: absolute;
  top: 20vh;
  right: 15vw;
  font-size: 2.5em;
}
@media screen and (max-width: 779px) {
  .menu_top h1 {
    position: absolute;
    top: 0;
    right: 0.5vw;
    font-size: 1.5em;
  }
}
#sweets {
  background-color: #faeeff;
}
#drink {
  background-color: #f5dcff;
}
#baked {
  background-color: #faeeff;
}
#special {
  background-color: #f5dcff;
}
#takeout {
  background-color: #faeeff;
}
.menus {
  display: flex;
  flex-wrap: wrap;
  width: 60%;
  align-items: flex-end;
  text-align: center;
  margin: auto;
}
.menus{
  color: #fff;
}
.sweets .menus {
  width: 50%;
}
.food {
  padding: 3vw;
  font-size: 0.8em;
  margin: auto;
}
.food img:hover {
  opacity: 0.8;
}
.food h3 {
  padding-top: 1em;
}
#sweets1 img {
  width: 8vw;
}
#sweets2 img {
  width: 15vw;
}
#sweets3 img {
  width: 15vw;
}
#sweets4 img {
  width: 17vw;
}
#drink1 img {
  width: 13vw;
}
#drink2 img {
  width: 5vw;
}
#baked1 img {
  width: 10vw;
}
#baked2 img {
  width: 10vw;
}
#baked3 img {
  width: 10vw;
}
#noon img {
  width: 15vw;
}
#bouquet img {
  width: 12vw;
}
#takeout1 img {
  width: 6vw;
}
@media screen and (max-width: 779px) {
  .menu_top {
    top: 20vh;
    left: 15vw;
    font-size: 2em;
  }
}

.modoru {
  background-color: #faeeff;
  text-align: center;
  padding: 3vw;
}
.Btn-Back {
  color: #3e0923;
  width: 10vw;
  background-color: #f5dcff;
  border-radius: 6px;
}
.Btn-Back:hover {
  background-color: #faeeff;
  color: #865ba3;
}</pre></body></html>