@charset "UTF-8";

/* ------------------------------------------------
共通
------------------------------------------------ */
html {
  font-size: 62.5%;
}

body {
  font-family: "Cardo","Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, メイリオ, "MS PGothic", arial, helvetica, sans-serif;
  font-size: 16px;
  /*line-height: 1;*/
  min-height: 100%;
}
/* 2025.7.11 S.Hamada */
/* なんかアイコン大きかったので */
.areaSns {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}
/*.sns-icon {
    width: 2%;
    margin: 0 1%;
}*/
.entry_box {
    background: rgba(255,255,255,0.7);
    border-radius: 10px;
    /*padding: 5%;*/
    padding: 2rem;
}
.entry input, .entry button, .entry textarea, .entry select {
    appearance: auto;
    border: #7a5445 solid 1px;
    -webkit-appearance: auto;
    -moz-appearance: initial;
	width: 100%;
    background: #fff;
}
/*.entry_box h3 {
    text-align: center;
    font-weight: bold;
    font-size: 1.4em;
    margin: 0 auto 10px;
}*/
.entry_box .entry {
    width: 70%;
    margin: 0 auto;
}
.entry ul li.inp_text {
    margin: 0 auto 20px;
}

.entry ul li {
    margin: 0 0 5px;
}
.entry ul li span {
    font-size: 0.8em;
    color: #ff0000;
    padding-left: 1%;
}
.entry ul li.inp_text input {
    padding: 1%;
}
.entry .know input {
    width: auto;
}
ul.know {
    display: flex;
    justify-content: flex-start;
    margin: 0 0 10px;
    padding: 0 3% 0;
}
.entry textarea {
    height: 200px;
	padding: 1%;
}
p.btn.entry {
    text-align: center;
    background: #eedad3;
	padding: 1% 4%;
}
p.btn.entry {
    /*text-align: center;
    background: #eedad3;
    padding: 2% 0%;
    width: 50%;
    font-weight: bold;
    font-size: 1.2em;
    cursor: pointer;*/
    text-align: center;
    background: #D28989;
    padding: 1rem 0;
    width: 50%;
    cursor: pointer;
    color: #fff;
    border-radius: 150px;
    position: relative;
    overflow: hidden;
}
p.btn.entry::before {
    content: '';
    width: 30px;
    height: 100%;
    background-color: #fff;
    animation: shine 5s ease-in-out infinite;
    position: absolute;
    top: -180px;
    left: 0;
    opacity: 0;
    transform: rotate(45deg);
}
@keyframes shine {
    0% {
    transform: scale(0) rotate(45deg);
    opacity: 0;
    }
  80% { 
    transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  85% {
    transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    transform: scale(50) rotate(45deg);
    opacity: 0;
    }
}
ul.know li {
    margin-right: 2%;
}
.err{
	text-algin:center;
	color:#ff0000;
}
.msg {
    text-align: center;
}
@media (max-width: 767px) {
	.entry_box .entry {
	    width: 100%;
	}
	ul.know {
	    display: block;
	}
}
/* 2025.7.11 S.Hamada */