@charset "UTF-8";
/* CSS Document */
@media all and (max-width:800px){
#popup {
  display: none; /* label でコントロールするので input は非表示に */
}

.popup-open {
  cursor: pointer; /* マウスオーバーでカーソルの形状を変えることで、クリックできる要素だとわかりやすいように */
}

.popup-overlay {
  display: none; /* input にチェックが入るまでは非表示に */
}

#popup:checked ~ .popup-overlay {
  display: block;
  z-index: 99999;
  background-color: #00000070;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
}

.popup-window {
  width: 90vw;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 6px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.popup-text {
  margin: 0;
}

.popup-text:not(:last-of-type) {
  margin-bottom: 1em
}

.popup-close {
  cursor: pointer;
  position: absolute;
  top: -26px;
  right: 0;
}
	
.submit_bt{
	width: 50%;
	padding: 15px 10px;
	text-align: center;
	font-size: 14px;
	background-color: #7d0f40;
	color: #fff;
	margin: 5px auto;
}
.submit_bt:hover{
	opacity: 0.8
}
	.delete_bt{
	width: 55%;
	padding: 15px 15px;
	text-align: center;
	font-size: 13px;
	background-color: #333;
	color: #fff
}
.delete_bt:hover{
	opacity: 0.8
}
	.pre_bt{
	width: 50%;
	padding: 5px 10px;
	text-align: center;
	font-size: 0.8rem;
	background-color: #f0f0f0;
	color: #333
}
	.pre_bt a{
	font-size: 0.8rem;}
.pre_bt:hover{
	opacity: 0.8;
	color: #333;
	font-size: 0.8rem;
}
.entry_bt{
	width: 50%;
	padding: 15px 10px;
	text-align: center;
	font-size: 14px;
	background-color: #7d0f40;
	color: #fff;
	display: block;
}
.entry_bt:hover{
	opacity: 0.8
}
.entry_bt a{ color: #fff}
	
.mypage_bt{
	width: 60% !important;
	padding: 15px 10px !important;
	text-align: center !important;
	font-size: 14px !important;
	background-color: #7d0f40 !important;
	color: #fff !important;
	display: block !important;
}
.mypage_bt:hover{
	opacity: 0.8 !important;
}
.mypage_bt a{ color: #fff}
	
	.cp_iptxt label{display: none;}
.cp_iptxt {
  display: flex;
	position: relative;
	width: 96%;
	margin: 0px 2% 10px;
}
.cp_iptxt input[type='file'] {
	font: 12px/18px sans-serif;
	box-sizing: border-box;
	width: 100%;
	letter-spacing: 1px;
	padding-left: 1em;
	color: #333;
}
.cp_iptxt input[type='file']:focus {
	outline: none;
}
.cp_iptxt input[type='text'] {
	font: 15px/24px sans-serif;
	box-sizing: border-box;
	width: 100%;
	letter-spacing: 1px;
	padding-left: 1em;
	color: #333;
}
.cp_iptxt input[type='text']:focus {
	outline: none;
}
.cp_iptxt.sam input[type='text'] {
	font: 15px/24px sans-serif;
	box-sizing: border-box;
	width: 100%;
	letter-spacing: 1px;
	padding-left: 1em;
	color: #333;
}
.cp_iptxt.sam input[type='text']:focus {
	outline: none;
}
.cp_iptxt.samf input[type='text'] {
	font: 15px/24px sans-serif;
	box-sizing: border-box;
	width: 100%;
	letter-spacing: 1px;
	padding-left: 1em;
	color: #333;
}
.cp_iptxt.samf input[type='text']:focus {
	outline: none;
}
.cp_iptxt.samff input[type='text'] {
	font: 15px/24px sans-serif;
	box-sizing: border-box;
	width: 100%;
	letter-spacing: 1px;
	padding-left: 1em;
	color: #333;
}
.cp_iptxt.samff input[type='text']:focus {
	outline: none;
}
.cp_iptxt input[type='password'] {
	font: 15px/24px sans-serif;
	box-sizing: border-box;
	width: 100%;
	letter-spacing: 1px;
	padding-left: 1em;
	color: #333;
}
.cp_iptxt input[type='password']:focus {
	outline: none;
}
.cp_iptxt input[type='date'] {
	font: 15px/24px sans-serif;
	box-sizing: border-box;
	width: 100%;
	letter-spacing: 1px;
	padding-left: 1em;
	color: #333;
}
.cp_iptxt input[type='date']:focus {
	outline: none;
}
.cp_iptxt input[type='number'] {
	font: 15px/24px sans-serif;
	box-sizing: border-box;
	width: 100%;
	letter-spacing: 1px;
	padding-left: 1em;
	color: #333;
}
.cp_iptxt input[type='number']:focus {
	outline: none;
}
.ef {
	padding: 4px 0;
	border: 0;
	border-bottom: 1px solid #1b2538;
	background-color: transparent;
}
.ef ~ .focus_line {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	transition: 0.4s;
	background-color: #7d0f40;
}
.ef:focus ~ .focus_line,
.cp_iptxt.ef ~ .focus_line {
	width: 100%;
	transition: 0.4s;
}
.ef ~ label {
	position: absolute;
	z-index: -1;
	top: 4px;
	left: 0;
	width: 100%;
	transition: 0.3s;
	letter-spacing: 0.5px;
	color: #aaaaaa;
	font-size: 14px;
}
.ef:focus ~ label, .cp_iptxt.ef ~ label {
	font-size: 12px;
	top: -16px;
	transition: 0.3s;
	color: #7d0f40;
}
}
@media all and (min-width:801px){
	#popup {
  display: none; /* label でコントロールするので input は非表示に */
}

.popup-open {
  cursor: pointer; /* マウスオーバーでカーソルの形状を変えることで、クリックできる要素だとわかりやすいように */
}

.popup-overlay {
  display: none; /* input にチェックが入るまでは非表示に */
}

#popup:checked ~ .popup-overlay {
  display: block;
  z-index: 99999;
  background-color: #00000070;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
}

.popup-window {
  width: 90vw;
  max-width: 560px;
  padding: 20px;
	margin-left: 40px;
  background-color: #ffffff;
  border-radius: 6px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.popup-text {
  margin: 0;
}

.popup-text:not(:last-of-type) {
  margin-bottom: 1em
}

.popup-close {
  cursor: pointer;
  position: absolute;
  top: -26px;
  right: 0;
}
.submit_bt{
	width: 50%;
	padding: 15px 10px;
	text-align: center;
	font-size: 14px;
	background-color: #7d0f40;
	color: #fff
}
.submit_bt:hover{
	opacity: 0.8
}
	.delete_bt{
	width: 30%;
	padding: 15px 10px;
	text-align: center;
	font-size: 14px;
	background-color: #333;
	color: #fff
}
.delete_bt:hover{
	opacity: 0.8
}
	.pre_bt{
	width: 50%;
	padding: 5px 10px;
	text-align: center;
	font-size: 10px;
	background-color: #ccc;
	color: #333
}
.pre_bt:hover{
	opacity: 0.8;
	color: #333
}
.entry_bt{
	width: 25%;
	padding: 15px 10px;
	text-align: center;
	font-size: 14px;
	background-color: #7d0f40;
	color: #fff;
	display: block;
}
.entry_bt:hover{
	opacity: 0.8
}
.entry_bt a{ color: #fff}
.cp_iptxt {
  display: flex;
	position: relative;
	width: 96%;
	margin: 0px 2% 10px;
}
.cp_iptxt input[type='file'] {
	font: 12px/18px sans-serif;
	box-sizing: border-box;
	width: 100%;
	letter-spacing: 1px;
	padding-left: 1em;
	color: #333;
}
.cp_iptxt input[type='file']:focus {
	outline: none;
}
.cp_iptxt input[type='text'] {
	font: 15px/24px sans-serif;
	box-sizing: border-box;
	width: 100%;
	letter-spacing: 1px;
	padding-left: 9em;
	color: #333;
}
.cp_iptxt input[type='text']:focus {
	outline: none;
}
.cp_iptxt.sam input[type='text'] {
	font: 15px/24px sans-serif;
	box-sizing: border-box;
	width: 100%;
	letter-spacing: 1px;
	padding-left: 3em;
	color: #333;
}
.cp_iptxt.sam input[type='text']:focus {
	outline: none;
}
.cp_iptxt.samf input[type='text'] {
	font: 15px/24px sans-serif;
	box-sizing: border-box;
	width: 100%;
	letter-spacing: 1px;
	padding-left: 4em;
	color: #333;
}
.cp_iptxt.samf input[type='text']:focus {
	outline: none;
}
.cp_iptxt.samff input[type='text'] {
	font: 15px/24px sans-serif;
	box-sizing: border-box;
	width: 100%;
	letter-spacing: 1px;
	padding-left: 6em;
	color: #333;
}
.cp_iptxt.samff input[type='text']:focus {
	outline: none;
}
.cp_iptxt input[type='password'] {
	font: 15px/24px sans-serif;
	box-sizing: border-box;
	width: 100%;
	letter-spacing: 1px;
	padding-left: 9em;
	color: #333;
}
.cp_iptxt input[type='password']:focus {
	outline: none;
}
.cp_iptxt input[type='date'] {
	font: 15px/24px sans-serif;
	box-sizing: border-box;
	width: 100%;
	letter-spacing: 1px;
	padding-left: 4em;
	color: #333;
}
.cp_iptxt input[type='date']:focus {
	outline: none;
}
.cp_iptxt input[type='number'] {
	font: 15px/24px sans-serif;
	box-sizing: border-box;
	width: 100%;
	letter-spacing: 1px;
	padding-left: 9em;
	color: #333;
}
.cp_iptxt input[type='number']:focus {
	outline: none;
}
.ef {
	padding: 4px 0;
	border: 0;
	border-bottom: 1px solid #1b2538;
	background-color: transparent;
}
.ef ~ .focus_line {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	transition: 0.4s;
	background-color: #7d0f40;
}
.ef:focus ~ .focus_line,
.cp_iptxt.ef ~ .focus_line {
	width: 100%;
	transition: 0.4s;
}
.ef ~ label {
	position: absolute;
	z-index: -1;
	top: 4px;
	left: 0;
	width: 100%;
	transition: 0.3s;
	letter-spacing: 0.5px;
	color: #aaaaaa;
	font-size: 14px;
}
.ef:focus ~ label, .cp_iptxt.ef ~ label {
	font-size: 12px;
	top: -16px;
	transition: 0.3s;
	color: #7d0f40;
}	
}
#contents_sepa hr{ width: 96%; margin: auto auto; color: #333}
#contents_sepa p{ font-size: 0.8rem;margin-left: 2%;}

.button-bg {
	font-size: 14px;
  text-align: center;
  box-sizing: border-box;
  /* 中央揃え */
  display: block;
  margin: 0 auto;
  /* 幅の指定 */
  width: 100%;
  max-width: 200px;
  padding: 10px;
  /* 色の指定 */
  color: #7d0f40; /* 文字色 */
  border: 2px solid #7d0f40; /* 枠線 */
  font-weight: bold;
  position: relative;
  overflow: hidden;
}
.button-bg::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: #7d0f40; /* 背景色 */
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: transform 0.2s;
}
.button-bg.from-left::after {
  transform: translate(-100%);
}
.button-bg.from-right::after {
  transform: translate(200%);
}
.button-bg.from-top::after {
  transform: translate(0, -100%);
}
.button-bg.from-bottom::after {
  transform: translate(0, 200%);
}
.button-bg:hover {
  color: #fff;
}
.button-bg:hover::after {
  transform: translate(0);
}
.button-bg:active, .button-bg:focus {
  top: 2px;
}

.password-wrapper {
  display: flex;
  max-width: 500px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.password__input {
  flex: 1;
  outline: none;
  appearance: none;
  padding: 10px 0 10px 10px;
  border: none;
  border-radius: 5px 0 0 5px;
  font-size: 16px;
}

.password__toggle {
  width: 40px;
  border: none;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' height='48' width='48'><path d='M24 31.5q3.55 0 6.025-2.475Q32.5 26.55 32.5 23q0-3.55-2.475-6.025Q27.55 14.5 24 14.5q-3.55 0-6.025 2.475Q15.5 19.45 15.5 23q0 3.55 2.475 6.025Q20.45 31.5 24 31.5Zm0-2.9q-2.35 0-3.975-1.625T18.4 23q0-2.35 1.625-3.975T24 17.4q2.35 0 3.975 1.625T29.6 23q0 2.35-1.625 3.975T24 28.6Zm0 9.4q-7.3 0-13.2-4.15Q4.9 29.7 2 23q2.9-6.7 8.8-10.85Q16.7 8 24 8q7.3 0 13.2 4.15Q43.1 16.3 46 23q-2.9 6.7-8.8 10.85Q31.3 38 24 38Zm0-15Zm0 12q6.05 0 11.125-3.275T42.85 23q-2.65-5.45-7.725-8.725Q30.05 11 24 11t-11.125 3.275Q7.8 17.55 5.1 23q2.7 5.45 7.775 8.725Q17.95 35 24 35Z'/></svg>")
    no-repeat center center;
  background-size: 50% auto;
  cursor: pointer;
}

.password__toggle.is-visible {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' height='48' width='48'><path d='m31.45 27.05-2.2-2.2q1.3-3.55-1.35-5.9-2.65-2.35-5.75-1.2l-2.2-2.2q.85-.55 1.9-.8 1.05-.25 2.15-.25 3.55 0 6.025 2.475Q32.5 19.45 32.5 23q0 1.1-.275 2.175-.275 1.075-.775 1.875Zm6.45 6.45-2-2q2.45-1.8 4.275-4.025Q42 25.25 42.85 23q-2.5-5.55-7.5-8.775Q30.35 11 24.5 11q-2.1 0-4.3.4-2.2.4-3.45.95L14.45 10q1.75-.8 4.475-1.4Q21.65 8 24.25 8q7.15 0 13.075 4.075Q43.25 16.15 46 23q-1.3 3.2-3.35 5.85-2.05 2.65-4.75 4.65Zm2.9 11.3-8.4-8.25q-1.75.7-3.95 1.075T24 38q-7.3 0-13.25-4.075T2 23q1-2.6 2.775-5.075T9.1 13.2L2.8 6.9l2.1-2.15L42.75 42.6ZM11.15 15.3q-1.85 1.35-3.575 3.55Q5.85 21.05 5.1 23q2.55 5.55 7.675 8.775Q17.9 35 24.4 35q1.65 0 3.25-.2t2.4-.6l-3.2-3.2q-.55.25-1.35.375T24 31.5q-3.5 0-6-2.45T15.5 23q0-.75.125-1.5T16 20.15Zm15.25 7.1Zm-5.8 2.9Z'/></svg>");
}

@media (any-hover: hover) {
  .password__toggle:hover {
    opacity: 0.7;
  }
}

.cp_ipradio05 {
	width: 90%;
	margin: 0px auto;
	text-align: left;
	font-size: 12px;
}
.cp_ipradio05 ul {
	margin: 0px 0.5rem 0px 0.5rem;
	padding: 0px 1rem;
	list-style: none;display: flex;
}
.cp_ipradio05 .list_item {
	margin: 0 0 0.5rem 0;
	padding: 0;
}
.cp_ipradio05 label {
	line-height: 135%;
	position: relative;
	margin: 0.5rem 2.0rem 0.5rem 0.1rem ;
	cursor: pointer;
}
.cp_ipradio05 .option-input {
	position: relative;
	margin: 0 1rem 0 0;
	cursor: pointer;
}
.cp_ipradio05 .option-input:before {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0.125rem;
	width: 0.75rem;
	height: 0.75rem;
	content: '';
	-webkit-transition: -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
	        transition:         transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
	-webkit-transform: scale(0, 0);
	        transform: scale(0, 0);
	border-radius: 50%;
	background: #333;
}
.cp_ipradio05 .option-input:checked:before {
	-webkit-transform: scale(1, 1);
	        transform: scale(1, 1);
}
.cp_ipradio05 .option-input:after {
	position: absolute;
	top: -0.25rem;
	left: -0.125rem;
	width: 1rem;
	height: 1rem;
	content: '';
	border: 2px solid #333;
	border-radius: 50%;
	background: #ffffff;
}
.blink {
	animation: flash 2s ease-in-out infinite;
	color: #fff;
	background-color: red;
	padding: 5px;
	font-size: 0.5rem
}

@keyframes flash {
	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0;
	}
}
.selectbox-005 {
    display: inline-flex;
    align-items: center;
    position: relative;
	width: 100%;
}

.selectbox-005::after {
    position: absolute;
    right: 15px;
    width: 10px;
    height: 7px;
    background-color: #535353;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    content: '';
    pointer-events: none;
}

.selectbox-005 select {
    appearance: none;
	width: 96%;
	margin: 0px 2%;
    height: 2.8em;
    padding: .4em calc(.8em + 30px) .4em .8em;
    border: none;
    border-bottom: 1px solid #333333;
    background-color: #f0f0f0;
    color: #333333;
    font-size: 0.8rem;
    cursor: pointer;
}

.selectbox-005 select:focus {
    outline: none;
}
#app {
    width: auto;
    margin: 40px auto;
    padding: 28px;
    line-height: 1.5;
    border: 1px solid #ffffff;
    border-radius: 5px;
    background-color: transparent;
    box-shadow: 2px 2px 5px 0px rgba(200,200,200,1);
    font-family: 'Times New Roman';
}

#app label {
    padding: 10px 40px;
    color: #ffffff;
    background-color: #384878;
    cursor: pointer;
}

#app input[type="file"] {
    display: none;
}

#app p {
    margin: 10px 0 0 0;    
}
.originalFileBtn {
    border: 3px solid;
    display: inline-block;
    padding: 2px 1em;
    position: relative;
}
.originalFileBtn input[type="file"] {
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    width: 100%;
}
#input-file-02{
  display: none;
}
#bt-file-02{
  padding: 4px 8px;
  border: none;
  background-color: #3498DB;
  color: #fff;
}
#bt-file-02:hover{
  background-color: #2980B9;
}
