@charset "utf-8";

/*ボタン
-----------------------------*/
.btn {
  display: flex;
  width: 100%;
  max-width: 126px;
  height: 30px;
  padding-bottom: 2px;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 1px;
  color: #fff;
  background: #ddd;
  border-radius: 5px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.btn:hover {
	text-decoration: none;
	opacity: 0.8;
}
.btn-orange {
	background: #FF954A;
}
.btn-orange-light {
	color: #FF954A;
	background: #FFE2CC;
}
.btn-green {
	background: #AEDA49;
}
.btn-green-light {
	color: #36C398;
	background: #C2F2E3;
}
.btn-green-highlight {
  background: #AEDA49;
}
.btn-green-rich {
  background: #36C398;
}
.btn-red {
	background: #F76464;
}
.btn-red-light {
	color: #F76464;
	background: #FFC1C7;
}
.btn-red-rich {
	background: #F65161;
}
.btn-pink {
	background: #FC78B9;
}
.btn-blue {
	background: #4DABFF;
}
.btn-long {
	max-width: 200px;
}

@media screen and (max-width: 767px) {
  .btn {
    max-width: 100px;
    letter-spacing: 0.5px;
    line-height: 1.2;
  }
  .btn-long {
    max-width: 200px;
  }
}

/*フォーム
-----------------------------*/
input,
select {
  width: 100%;
  height: 35px;
  padding: 0 16px;
}
select {
	padding-right: 40px;
}
textarea {
	width: 100%;
	height: 250px;
	padding: 10px 16px;
}
.select-box {
  position: relative;
}
.select-box::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  width: 10px;
  height: 5px;
  background: url(../images/select_arw.png) 0 0 / 100% 100% no-repeat;
  transform: translateY(-50%);
  pointer-events: none;
}

.form-dlarea dl:not(:last-child) {
	margin-bottom: 16px;
}
.form-dlarea dt {
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #4A4A4A;
  font-family: 'Noto Sans JP', sans-serif;
}
.required {
	display: inline-block;
	margin-left: 4px;
  color: #FF0000;
}
.form-dlarea input:not(:last-child) {
  margin-bottom: 8px;
}
.form-p {
  padding: 0 16px;
  color: #4DABFF;
}

@media screen and (max-width: 767px) {
  input,
  select {
    height: 36px;
    padding: 0 10px;
  }
  textarea {
    padding: 8px 10px;
  }
  .form-dlarea dl:not(:last-child) {
    margin-bottom: 16px;
  }
  .form-p {
    padding: 0 10px;
  }
}

/*モーダルーボックス部分
-----------------------------*/
.modal-innerbox {
  position: relative;
  width: 90%;
  max-width: 1100px;
  padding: 24px 50px 40px;
  margin: 0 auto;
  font-family: 'Noto Sans JP', sans-serif;
  background: #fff;
  z-index: 1;
}
.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 0;
  cursor: pointer;
}
.modal-title {
  margin-bottom: 24px;
  font-size: 20px;
  font-weight: 600;
}
.modal-subcontent {
  position: relative;
  margin-bottom: 24px;
}
.modal-scolcontent {
  height: 40vh;
  max-height: 460px;
  overflow-y: auto;
}
.modal-s {
  display: flex;
  max-width: 480px;
  max-height: 80vh;
  padding: 24px 40px 40px;
  align-items: center;
  justify-content: center;
}
.modal-caution {
  width: 100%;
}
.caution-txt {
  margin-bottom: 40px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 1px;
  color: #FF7777;
  text-align: center;
}
.caution-txt span {
  display: block;
  margin-top: 48px;
  font-size: 16px;
  color: #4A4A4A;
  line-height: 1.8;
  font-weight: 500;
  letter-spacing: 0;
}
.caution-txt:last-child {
  margin-bottom: 20px;
}
.caution-txt.black {
  color: #4A4A4A;
}
.caution-btns {
  display: flex;
  width: 100%;
  justify-content: center;
}
.caution-btns .btn:not(:last-child) {
	margin-right: 64px;
}

.modal {
  position: fixed;
  display: flex;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 10000;
}
.modal-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.4);
  cursor: pointer;
}
.modal .modal-innerbox {
  transform: scale(0,0);
  transition: 0.2s;
}
.modal.js-open {
  opacity: 1;
  pointer-events: inherit;
}
.modal.js-open .modal-innerbox {
  transform: scale(1,1);
}

@media screen and (max-width: 767px) {
  .modal-innerbox {
    width: 96%;
    padding: 32px 10px;
  }
  .modal-close {
    top: 10px;
    right: 10px;
  }
  .modal-title {
    margin-bottom: 14px;
    font-size: 18px;
  }
  .modal-subcontent {
    margin-bottom: 20px;
  }
  .caution-txt {
    font-size: 18px;
  }
  .caution-txt span {
    margin-top: 26px;
    font-size: 14px;
  }
  .caution-txt {
    margin-bottom: 26px;
  }
  .caution-btns {
    display: block;
  }
  .caution-btns .btn {
    margin: 0 auto;
  }
  .caution-btns .btn:not(:last-child) {
    margin: 0 auto 10px;
  }
}