html,body{
  font-family: "Hiragino Sans" , "ヒラギノ角ゴ ProN", Hiragino Kaku Gothic ProN, "メイリオ", Meiryo, "游ゴシック Medium", YuGothic, YuGothicM, sans-serif;
  font-weight: 400;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	color: #272F3E;
	line-height: 1.7;
}
a{
  color: #272F3E;
  transition: opacity 0.3s, color 0.3s;
}
a:hover{ opacity: 0.7; }
img,picture{
	max-width: 100%;
	display: block;
}
.overflow{ overflow: hidden; }

.gr{ color: #30B087; }
.ye{ color: #FFEF2E; }
.bg-gr{ background: linear-gradient(to right,#8DC455,#04A6A0); color: #fff; }
.bg-bk{ background: #253157; color: #fff; }
.bg-be{ background: #F6F1EB; }

section{
  padding: 8rem 0;
}


.ttl-1{
  font-size: 3.6rem;
  letter-spacing: 0.04em;
  line-height: 1.33;
  text-align: center;
  margin-bottom: 4rem;
}
.ttl-1:has( + p){
  margin-bottom: 3rem;
}


form input[type=text],
form input[type=email],
form input[type=tel],
form textarea{
  display: block;
  width: 100%;
  border-radius: 0.8rem;
  padding: 0.6em 1.6rem;
  background: #EFF3F8;
  border: 1px solid #D8D8D8;
  font-size: 2rem;
}
form textarea{
  height: 20rem;
}


.radio{
  display: flex;
  gap: 2rem;
  position: relative;
}
.radio label{
  display: block;
  width: 100%;
  border-radius: 0.8rem;
  padding: 0.6em 1.6rem;
  background: #F5F5F5;
  font-size: 2rem;
  box-sizing: border-box;
  cursor: pointer;
  position: relative;
}
.radio label:has( input[type=radio]:checked){
  background: none;
}
.radio label:has( input[type=radio]:checked)::before{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0.8rem;
  border: 2px solid #4EAB52;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  top: 0;
}
.radio input[type=radio]{
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
}
.radio input[type=radio] + span{
  display: inline-block;
  padding-left: calc(2.4rem + 0.5em);
  line-height: 2.4rem;
  cursor: pointer;
  position: relative;
}
.radio input[type=radio] + span::before{
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 2.4rem;
  height: 2.4rem;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #D8D8D8;
  border-radius: 50%;
}
.radio input[type=radio]:checked + span::before{
  border: 1px solid #4EAB52;
}
.radio input[type=radio]:checked + span::after{
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0.6rem;
  width: 1.2rem;
  height: 1.2rem;
  background: #4EAB52;
  border-radius: 50%;
}


.checkbox{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  margin-top: 4rem;
}
.checkbox .validation{
  text-align: center;
}
.checkbox input[type=checkbox]{
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
}
.checkbox input[type=checkbox] + span{
  display: inline-block;
  padding-left: calc(2.4rem + 0.7em);
  line-height: 2.4rem;
  position: relative;
}
.checkbox input[type=checkbox] + span::before{
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 2.4rem;
  height: 2.4rem;
  box-sizing: border-box;
  border: 1px solid #D8D8D8;
  background: #EFF3F8;
  border-radius: 0.4rem;
  cursor: pointer;
}
.checkbox input[type=checkbox]:checked + span::before{
  border: 1px solid #e87616;
  background: #e87616;
}
.checkbox input[type=checkbox]:checked + span::after{
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  margin-top: -0.9rem;
  left: 0.75rem;
  width: 0.6rem;
  height: 1.1rem;
  transform: rotate(43deg);
  border-bottom: 0.3rem solid #fff;
  border-right: 0.3rem solid #fff;
  pointer-events: none;
}


.form .ttl-1 + p{
  text-align: center;
  margin-bottom: 4rem;
}
.form .sec{
  min-height: calc(100vh - 9rem);
}
.form .sec a{
  color: #e87616;
  text-decoration: underline;
}
.form .box{
  background: #fff;
  padding: 4rem;
}
.form dl{
  display: grid;
  grid-template-columns: 28rem 1fr;
  row-gap: 2.4rem;
}
.form dl dt,
.form dl dd{
  border-bottom: 1px solid rgb(213, 213, 213);
  padding-bottom: 2.4rem;
}
.form dl dt{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 3rem;
  position: relative;
}
.form dl dt .label{
  font-size: 2rem;
  font-weight: 700;
}
.form dl dt::after{
  content: "任意";
  display: inline-block;
  padding: 0 0.4em;
  background: #1c99d1;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 0.2em;
}
.form dl dt.required::after{
  content: "必須";
  background: #eb380c;
}
.form dl dd small{
  display: block;
  font-size: 1.2rem;
  line-height: 1.5;
  margin-top: 0.8em;
}
.form input[type=submit]{
  display: block;
  width: 50rem;
  line-height: 9rem;
  border-radius: 1rem;
  background: #e87616;
  color: #fff;
  border: none;
  font-size: 2.6rem;
  font-weight: 700;
  margin: 4rem auto 0;
  transition: opacity 0.3s;
}
input[type=submit]:hover{
  opacity: 0.7;
}


footer{
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 9rem;
  font-size: 1.6rem;
  text-align: center;
  padding: 3rem 0;
}
footer a{ color: #fff; }




/* ロード画面 */
#loading {
  width: 100%;
  height: 100%;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}
#loading img {
  width: 25.4rem;
}
#loading.loaded {
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s, visibility 1s;
}


/* ページトップ */
#pagetop {
  display: none;
  position: fixed;
  bottom: 1.6rem;
  right: 1.6rem;
  z-index: 997;
}
#pagetop a {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  width: 4rem;
  height: 4rem;
  background-color: #30B087;
}
#pagetop a img {
  width: 1.6rem;
  margin-top: -0.2rem;
}




/*　PC
------------------------------------------------------------------------------------------------*/
@media (min-width: 769px){
.sp{ display: none !important; }

html{ font-size: 10px; }
body{ font-size: 1.8rem; }

.content{
  width: 100%;
	max-width: 110rem;
  padding: 0 5rem;
	margin: 0 auto;
}




/*　タブレット
------------------------------------------------------------------------------------------------*/
@media (max-width: 1100px){

html{ font-size: 0.9vw; }




}/*　タブレットここまで */
}/*　PCここまで */




/*　スマホ
------------------------------------------------------------------------------------------------*/
@media (max-width: 768px){
.pc{ display: none !important; }

html{ font-size: 2.56vw; }
body{ font-size: 1.5rem; }

.content{
	width: 100%;
	padding: 0 1.6rem;
}


section{
  padding: 4rem 0;
}


.ttl-1{
  font-size: 2.4rem;
  margin-bottom: 2.5rem;
}
.ttl-1:has( + p){
  margin-bottom: 2rem;
}


form input[type=text],
form input[type=email],
form input[type=tel],
form textarea{
  padding: 0.7em 1.2rem;
  font-size: 1.6rem;
}


.radio{
  display: grid;
  gap: 0.8rem;
}
.radio label{
  padding: 0.7em 1.2rem;
  font-size: 1.6rem;
}


.checkbox{
  margin-top: 3rem;
}
.checkbox input[type=checkbox] + span::before{
  top: 0.1rem;
  transform: unset;
}
.checkbox input[type=checkbox]:checked + span::after{
  top: 0.4rem;
  margin-top: 0;
}


.form .ttl-1 + p{
  text-align: left;
  margin-bottom: 3rem;
}
.form .sec{
  min-height: calc(100vh - 8rem);
}
.form .box{
  padding: 2rem 1.6rem 3rem;
}
.form dl{
  grid-template-columns: 100%;
  row-gap: 0;
}
.form dl dt{
  border-bottom: none;
  padding-bottom: 0.5em;
}
.form dl dd{
  padding-bottom: 2rem;
}
.form dl dd + dt{
  margin-top: 1.6rem;
}
.form dl dt{
  justify-content: flex-start;
  padding-right: 0;
}
.form dl dt .label{
  font-size: 1.6rem;
}
.form dl dt::after{
  font-size: 1rem;
  margin-left: 1em;
}
.form input[type=submit]{
  width: 100%;
  line-height: 6.6rem;
  border-radius: 0.8rem;
  font-size: 1.9rem;
  margin: 3rem auto 0;
}


footer{
  font-size: 1.2rem;
  min-height: 8rem;
  padding: 3rem 0;
}




}/*　スマホここまで */



