@charset "UTF-8";

.top-contact-btn {
	font-family: 'Cardo', serif;
    font-size: 4vw;
    letter-spacing: 0.1em;
	color: #4d4331;	
	position: fixed;
    bottom: 10px;
    left: 10px;
    padding: 1% 4%;	
	border: #4d4331 1px solid;
    background-color: #e2cc9e;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    transition: all 1.5s;
	display: none;
}
@media screen and (max-width: 768px) {
	.top-contact-btn {
		display: block;
	}
}
.top-contact-btn.top-contact-btn-active {
	opacity: 1;
	visibility: visible;
}

.dn {
  display: none !important;
}

.contactmodal {
	top: 5%;
    left: 5%;
    position: fixed;
    z-index: 1060;
    display: none;
    width: 90%;
    height: 90%;
    margin: auto;
    background-color: #000000e0;
	border: #927c63 6px solid;
}

.contactmodal.isOpen {
  display: block;
  opacity: 1;
  animation: scaleUp 0.3s linear;
  -webkit-animation: scaleUp 0.3s linear;
}

.contactmodal.isClose {
  display: block;
  animation: scaleDown 0.3s linear;
  -webkit-animation: scaleDown 0.3s linear;
}

@keyframes scaleUp {
  0% {
    opacity: 0;
    transform: scale(0, 0);
  }
  100% {
    opacity: 1;
    transform: scale(1, 1);
  }
}

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

@keyframes scaleDown {
  0% {
    opacity: 1;
    transform: scale(1, 1);
  }
  100% {
    opacity: 0;
    transform: scale(0, 0);
  }
}

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

.modalHeader {
	position: relative;
    text-align: center;
    background-color: #927c63;
    width: 101%;
    height: 7%;
    left: -0.5%;
}

.modalTitle {
	color: #fff;
    font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
    font-size: 1em;
    font-weight: normal;
    letter-spacing: 0.3em;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}
.modalTitle i {
	right: 3%;
    position: absolute;
	font-size: 2em;
}

.modalList {
  padding: 10px;
  list-style: none;
}

.modalList > li {
  padding: 5px 10px;
  border-radius: 3px;
  border: solid 1px #ddd;
  background-color: #FFF;
}

.modalList > li + li {
  margin-top: 10px;
}

.contact-manager {
	color: #fff;
    font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
    text-align: center;
    padding: 0 12%;
    width: 100%;
    height: 31%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.contact-manager.center {
	border-top: #7a7979 2px dotted;
    border-bottom: #7a7979 2px dotted;
}
.contact-manager h2 {
	font-size: 1.3em;
    letter-spacing: 0.2em;
    border-bottom: #fff 1px solid;
    padding: 0 0 10px 0;
    width: 100%;
}
.contact-manager p {
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
    font-size: 0.7em;
    color: #b6a99a;
    letter-spacing: 0.1em;
    text-align: left;
}
.contact-manager .line-button {
	width: 60%;
}
.contact-manager .line-button a {
	font-family: 'Tenor Sans', sans-serif;
    background-color: #349e4b;
	font-size: 1em;
	letter-spacing: 0.4em;
	padding: 12px 0;
}