@charset "utf-8";

html {
	font-size: 20px;
	font-family: 'Heisei Kaku Gothic Std', 'Yu Mincho', 'YuGothic';
}
img {
	max-width: 100%;
	height: auto;
}
body {
	
	margin: 0;
	overflow-wrap: break-word;

}
.header_mobile-only{
	display:none;
}
.header {
	padding-left: 8px;
	text-align: center;
	align-items: center;
	width: 100%;
	background-color: #ffffff;
	position: fixed;
	top: 0;
	z-index: 1000;
}
.top_img {
	width: 324px;
	display: inline-block;
}
.header_inner {
	max-width: 100%;
	margin: 0 auto;
  box-sizing: border-box;
	display: inline-block;
}
.header_a_img_div {
	display: inline-block;
}
.nav{
	margin: 0 auto;
	display: inline-block;
	max-width: 100%;
}
.header_ul {
	max-width: 100%;
	padding-left: 0px;
	display: flex;
	list-style: none;
	text-decoration: none;
	justify-content: center;
}
.header_ul li {
	display: flex;
	align-items: center;
	vertical-align: middle;
	padding-left: 20px;
	padding-right: 20px;
}
.header_a {
	font-size: 0.8rem;
	font-family: 'YuGothic';
	font-weight: 500;
	position: relative;
	color: #2c2c2c;
	text-decoration: none;
}
.header_a:hover {
	color: #288CF1;
	transition: 0.3s;
}
.header_a::after {
	position: absolute;
	top: 30px;
	bottom: 0;
	left: 50%;
	content: '';
	width: 0;
	height: 1px;
	background-color: #288CF1;
	transition: .3s;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}
.header_a:hover::after {
	width: 100%;
}
.logo_header{
	width: 250px;
	height: auto;
}
main{
	margin-top: 150px;
	margin-left: 140px;
	margin-right: 140px;
}
.headline {
	font-family: 'YuGothic';
	font-size: 2.5rem;
	font-weight: 500;
}
.headline:before {
    background-color: #F36C6C;
    border-radius: 5px;
    content: "";
    display: inline-block;
    height: 60px;
    margin-right: 20px;
    vertical-align: middle;
    width: 5px;
}
#entry{
	display: grid;
	grid-template-columns: repeat(12, 1fr);
}
.entry-contents{
		grid-column: 2/ 12;
}
#form{
	margin: 0;
	margin-top: 140px;
}
.form_list p{
	font-family: "YuGothic";
}
.form_list label{
	margin-right: 30px;
	font-family: "YuGothic";
}
.form_list span{
	margin-left: 10px;
	font-size: 0.8rem;
	color: #f36c6c;
}
.form_list dl{
	margin-bottom: 30px;
	text-align: left;
}
.form_list dd{
	margin-left: 0;
}
.file-upload-label{
	font-family: "YuGothic";
}
.form_list_text{
	width: 100%;
	box-sizing: border-box;
}
.radio{
	font-family: "YuGothic";
}
.input{
	display: block;
	width: 100%;
	padding: 20px 30px;
	font-size: 1rem;
	border: 1px solid #A8ADC1;
	border-radius: 5px;
	box-sizing: border-box;
}
.button-flow{
	margin-top: 60px;
	text-align: center;
}
.button-flow a {
	display: inline-block;
	font-family: 'YuGothic';
	font-size: 1rem;
	background-color: #ffffff;
	letter-spacing: 0.1em;
	color: #2c2c2c;
	border: solid 2px #F36C6C;
	border-radius: 20px;
	box-sizing: border-box;
	max-width: 50%;
	text-align: center;
	padding: 20px 60px;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s;
}
.button-flow a:hover {
	color: #fff;
	background: #F36C6C;
	transition: all 0.3s;
}



.form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 100px;
}

.form-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 20px 0;
  border-top: #ccc 1px solid;
}

.form-label {
  width: 20%;
  text-align: right;
  font-weight: bold;
  padding: 5px;
  box-sizing: border-box;
}

.form-input {
  width: 70%;
  padding: 5px;
  box-sizing: border-box;
}
.form-input-name{
  width: 70%;
  padding: 5px;
  box-sizing: border-box;

  input{
	width: 34.5%  !important;
  }
}
.required-mark {
  color: #F30;
  font-weight: bold;
  margin-left: 5px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 60%;
  max-width: 100%;
  margin-bottom: 5px;
  font-size: 1rem;
  border: #ccc 1px solid;
}
input[type="text"],
input[type="email"],
input[type="tel"] {
	height: 1.8em;
	border: #ccc 1px solid;
	background-color: #fff;
}
.promise{
	text-align: right;
}
#form_submit input{
	width: 50%;
    margin-top: 20px;
	margin-left: auto;
	margin-right: auto;
    padding: 20px 1%;
    font-family: 'YuGothic';
    font-size: 1rem;
    background-color: #ffffff;
    letter-spacing: 0.1em;
    color: #2c2c2c;
    font-weight: 700;
    border: solid 3px #F36C6C;
    border-radius: 5px;
    display: block;
    box-sizing: border-box;
    max-width: 100%;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
}
.check__img{
	text-align: center;
	
	img{
		width: 10%;
	}
}
.submisson-complete{
	padding: 30px 0;
	text-align: center;
	border-top: #ccc 1px solid;
	border-bottom: #ccc 1px solid;
	p{
		display: inline-block;
	}
}
.submisson-complete__h2{
	margin-top: 10px;
	text-align: center;
}
.footer {
	width: 100%;
	margin-top: 140px;
	padding-top: 40px;
	padding-bottom: 20px;
	background-color: #288CF1;
}
.footer_a_img{
	margin-left: 140px;
}
.footer_a_div{
	margin-left: 140px;
	margin-bottom: 30px;
}
nav {
	vertical-align: middle;
}
.footer_ul {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	text-decoration: none;
	justify-content: center;
}
.footer_li {
	display: inline-block;
	padding-left: 25px;
	padding-right: 25px;
}
.footer_ul_mobile-only-1{
	display: none;
}
.footer_li_mobile-only-1{
	display: none;
}
.footer_ul_mobile-only-2{
	display: none;
}
.footer_li_mobile-only-2{
	display: none;
}
.footer_a {
	font-size: 0.8rem;
	font-family: 'YuGothic';
	font-weight: 500;
	color: #fff;
	text-decoration: none;
}
.footer_a {
	font-size: 0.8rem;
	font-family: 'YuGothic';
	font-weight: 500;
	color: #fff;
	text-decoration: none;
}
.copyright {
	margin-top: 30px;
	text-align: center;
	font-size: 0.8rem;
	color: #fff;
}
@media (max-width:1717px) {
	.logo_header{
		width:200px;
	}
}
@media (max-width:1456px){
	.top{
		margin-top:100px;
	}
	.header_mobile-only{
		display: block;
		position: fixed;
		background-color: #fff;
		width: 100%;
		height: 100px;
		z-index: 1001;
		left: 0; /* ← これが重要 */
		top: 0;/* 忘れずに */
	}
	.header {
		display: flex;
		flex-direction: row;
		padding: 0;
		background-color: #fff;
	}
	.header_sp {
		padding: 30px 30px;
		text-align: left;
	}
	.nav {
		position: fixed;
		right: -2000px; /* 右から出てくる */
		top: 0;
		width: 100%; /* スマホに収まるサイズ */
		height: 100vh;
		padding-top: 60px;
		background-color: #fff;
		transition: all .6s;
		z-index: 200;
		overflow-y: auto; /* メニューが多くなったらスクロールできるように */
	}
	.hamburger {
		position: fixed;
		right: 20px; /* 右端に配置する */
		top: 20px; /* 上端に配置する */
		width: 40px;
		height: 40px;
		cursor: pointer;
		z-index: 2000;
	}
	.header_ul {
		margin-top: 60px;
		margin-left: clamp(40px, 10vw, 200px);
		margin-right: clamp(40px, 10vw, 200px);
		padding: 0;
		display: block;
	}
	.header_li {
		padding: 0 14px;
	}
	.header_li:nth-child(1) {
		display: none; /* 最初の li だけ非表示にする */
	}
	.header_a {
		font-size: 1rem;
		display: block;
		padding: 8px 0;
		border-bottom: 1px solid #eee;
		text-decoration: none;
		color: #333;
	}
	.header_a::after {
    position: absolute;
    top: 43px;
    bottom: 0;
    left: 50%;
    content: '';
    width: 0;
    height: 1px;
    background-color: #288CF1;
    transition: .3s;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
	}
	.header_a:hover {
		background-color: #eee;
	}
	.hamburger_border {
		position: absolute;
		left: 11px;
		width: 18px;
		height: 2px;
		background-color: #333;
		transition: all .6s;
	}
	.hamburger_border_top {
		top: 14px;
	}
	.hamburger_border_center {
		top: 20px;
	}
	.hamburger_border_bottom {
		top: 26px;
	}
	/* 表示された時用のCSS */
	.nav-open .nav {
		right: 0;
	}
	.nav-open .hamburger_border_top {
		transform: rotate(45deg);
		top: 20px;
	}
	.nav-open .hamburger_border_center {
		width: 0;
		left: 50%;
	}
	.nav-open .hamburger_border_bottom {
		transform: rotate(-45deg);
		top: 20px;
	}
	.nav-open .header_sp {
		display: none;
   }
	
}

@media (max-width: 1024px){
	html {
	font-size: 16px;
}
	main{
		margin: 100px 30px;
	}
	.entry-contents{
		grid-column: 1/-1;
}
.promise{
	text-align: center;
	p{
		display: inline-block;
		text-align: left;
	}
}
	#form{
		margin-top: 70px;
	}
		.footer_a_img{
	margin-left: 60px;
}
.footer_ul{
		display: none;
	}
	.footer_li{
		display: none;
	}
	.fotter nav{
		text-align: right;
		box-sizing: border-box;
	}
	.footer_ul_mobile-only-1 {
	display: inline-flex;
	flex-direction: column;
	flex-wrap: wrap;
	text-align: left;
	list-style: none;
	text-decoration: none;
	justify-content: center;
	box-sizing: border-box;
}
.footer_li_mobile-only-1{
	display: inline-block;
	padding-left: 25px;
	padding-right: 25px;
}
	.footer_ul_mobile-only-2 {
	display: inline-flex;
	flex-direction: column;
	flex-wrap: wrap;
	text-align: left;
	margin-right: 5%;
	list-style: none;
	text-decoration: none;
	justify-content: center;
	box-sizing: border-box;
}
.footer_li_mobile-only-2{
	display: inline-block;
	padding-left: 25px;
	padding-right: 25px;
}
}
 /* sp */
@media(max-width: 800px){
	.form-label{
		width: 30%;
	}
	.form-input-name{
		display: flex;
		flex-direction: column;
		width: 60%;

		input{
			width: 170px !important;
		}
	}
	.form-input{
		width: 60%;
	}
	dd{
		margin-left: 20px;
	}
	input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 250px;
}
	.footer_ul{
		display: none;
	}
	.footer_li{
		display: none;
	}
	.fotter nav{
		text-align: right;
		box-sizing: border-box;
	}
	.footer_ul_mobile-only-1 {
	display: inline-flex;
	flex-direction: column;
	flex-wrap: wrap;
	text-align: left;
	list-style: none;
	text-decoration: none;
	justify-content: center;
	box-sizing: border-box;
}
.footer_li_mobile-only-1{
	display: inline-block;
	padding-left: 25px;
	padding-right: 25px;
}
	.footer_ul_mobile-only-2 {
	display: inline-flex;
	flex-direction: column;
	flex-wrap: wrap;
	text-align: left;
	margin-right: 5%;
	list-style: none;
	text-decoration: none;
	justify-content: center;
	box-sizing: border-box;
}
.footer_li_mobile-only-2{
	display: inline-block;
	padding-left: 25px;
	padding-right: 25px;
}
}
@media (max-width: 450px){
	.logo_header {
        width: 200px;
        height: auto;
    }
	.headline{
		font-size: 1.5rem;
	}
	.headline:before{
			margin-right: 10px;
		width:4px;
		height: 50px;
	}
	.form-row{
		flex-direction: column;
		align-items: stretch;
	}
	.form-label{
		width: 60%;
		text-align: left;
	}
	.form-input{
		width: 100%;
	}
	dd{
		margin-left: 10px;
	}
	#form{
		margin-top: 35px;
	}
	.button-flow a{
		padding-left: 30px;
		padding-right: 30px;
	}
		.logo_fotter {
        width: 200px;
        height: auto;
    }
}