﻿@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap');

/*---------------------------------------------
	Browser Default Initialization
  ---------------------------------------------*/

body, dl, dt, dd, ul, ul li, h1, h2, h3, h4, h5, h6, div,
pre, form, fieldset, input, textarea, p, blockquote, th, td,
section, nav, article, aside, hgroup, header, address,
figure, figcaption, footer {
	margin: 0;
	padding: 0;
	box-sizing:border-box;
}
address, caption, cite, code, dfn, th, var {
	font-style: normal;
	font-weight: normal;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
caption, th {
	text-align: left;
}
q:before ,q:after {
	content: '';
}
object, embed {
	vertical-align: top;
}
hr, legend {
	display: none;
}
h1, h2, h3, h4, h5, h6 {
	font-size: 100%;
	font-weight: normal;
}
img, abbr, acronym, fieldset {
	border: 0;
}
img {
  max-width: 100%;
	height: auto;
	vertical-align: bottom;
	-ms-interpolation-mode: bicubic;
}
ul li {
	list-style-type: none;
}

input[type="number"]::-webkit-outer-spin-button, 
input[type="number"]::-webkit-inner-spin-button { 
  -webkit-appearance: none; 
  margin: 0; 
}
.tac{
	text-align: center;
}
/*---------------------------------------------
	body
  ---------------------------------------------*/

/* 1.0rem = 10px */
html {font-size: 0.7875vw;}
@media screen and (min-width: 1261px) {
  html {
    font-size: 10px;
  }
}
@media screen and (max-width: 999px) {
  html {
    /*font-size: 8.33px;*/
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
	color: #333;
	text-align: left;
	-webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  counter-reset: number 0;
}
.form_cmp {
  display: grid;
  grid-template-rows: auto 1fr auto;
  grid-template-columns: 100%;
  min-height: 100vh;
}
.enf {
  font-family: 'Montserrat', sans-serif;
}
a {
	outline: none;
	text-decoration: none;
	color: #333;
  box-sizing: border-box;
}
a:hover {
	text-decoration: none;
	color: #333;
}
#sp a:hover {
	text-decoration: none;
  color: none;
}

.block {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 2rem;
}
section .block {
  padding: 8rem 2rem;
}
#pc .center {
  text-align: center;
}

/*---------------------------------------------
	header
  ---------------------------------------------*/
header {
  padding: 1.2rem 0;
  border-bottom: 0.4rem #E60000 solid;
  background-color: #fff;
}
.header_inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  white-space: nowrap;
}
.header_inner .ttl {
  font-size: 2rem;
}
.header_inner .btn {
  margin-left: auto;
}
h1 {
  width: 32rem;
  padding-bottom: 0.3rem;
  padding-right: 5rem;
}
h1 span {
  display:block; 
}
h1 span.sub {
  padding-bottom: 0.4rem;
}
h2 {
  padding-bottom: 3rem;
  text-align: center;
  font-size: 3.6rem;
  font-weight: bold;
}
.btn a {
  min-width: 28rem;
  display: inline-block;
  padding: 1rem 3rem;
  color: #fff;
  font-weight: bold;
  border-radius: 4rem;
  background: rgb(250,89,89);
  background: linear-gradient(90deg, rgba(250,89,89,1) 0%, rgba(247,42,72,1) 100%);
  transition: all 0.3s ease;
}
.btn a:hover {
  opacity: 0.7;
}

/*---------------------------------------------
	フォーム
  ---------------------------------------------*/

section.form {}
section.form h2 {
  padding-bottom: 4rem;
}
section.form .block {
  padding: 6rem 2rem 8rem;
}
.dl_form {
  display: flex;
  justify-content: space-between;
  flex-flow: wrap;
}
.form_block {
  width: 48%;
}
.form_block .img {
  padding: 3rem 10% 0;
}
.form_block dl {}
.form_block dl dt {
  padding-bottom: 0.8rem;
}
.form_block dl dt i {
  font-style: normal;
  color: #F72D49;
}
.form_block dl dd {
  padding-bottom: 2.5rem;
}
.form_block_full {
  width: 90%;
  margin: 0 auto;
  padding-top: 3rem;
}
.form_btn {
  padding-top: 2rem;
  text-align: center;
}
.dl_form_cmp {
  text-align: center;
}
.dl_form_cmp .btn {
  padding-top: 5rem;
}

input[type="text"] {
  width: 100%;
	padding: 1.2rem 2rem;
  font-size: 1.6rem;
  border: 1px #ccc solid;
  border-radius:0.5rem;
  background-color: #fff;
}
input[type="checkbox"] {
  accent-color: #f00;
  transform: scale(1.5);
}
.checkbox {
  padding: 1rem 0 0 0.5rem;
}
input::placeholder {
  color: #aaa;
}
select::-ms-expand {
	display: none;
}
.form_select {
  width: 100%;
	display:inline-block;
	position:relative;
  border-radius:0.5rem;
	background-color:#fff;
}
.form_select select {
	width: 100%;
	margin:0;
	outline:none;
  padding:1.2rem 3rem 1.2rem 2rem;
	appearance: none;
	font-size: 1.6rem;
  color: #333;
  border: 1px #ccc solid;
	border-radius:0.5rem;
	position:relative;
	background-color:transparent;
	z-index:1;
  cursor: pointer;
}
.form_select:before {
	content: "▼";
	position: absolute;
	top: 50%;
	right:2rem;
	margin-top:-0.5rem;
	box-sizing: border-box;
	display: block;
	text-align:center;
	font-size:1rem;
	color:#434343;;
  line-height: 1.0rem;
	z-index:0;
}
.submit_btn input {
  min-width: 28rem;
  display: inline-block;
  padding: 1.2rem 3rem;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  border: 0;
  border-radius: 4rem;
  background: rgb(250,89,89);
  background: linear-gradient(90deg, rgba(250,89,89,1) 0%, rgba(247,42,72,1) 100%);
  transition: all 0.3s ease;
}
.submit_btn input:hover {
  opacity: 0.7;
}
.error {
  padding-top: 0.5rem;
  color: #EE0000;
}

/*---------------------------------------------
	footer
  ---------------------------------------------*/
/*---------------------------------------------
footer {
  padding: 5rem 0 3rem;
  text-align: center;
  line-height: 2;
  color: #fff;
  background-color: #3A3A3A;
}
footer .copy {
  padding-top: 3rem;
  font-size: 1.4rem;
}
---------------------------------------------*/

/* footer */
.footer {
  background-color: #e5f2ff;
  padding-top: clamp(16px, 12.45vw, 265px);
  padding-left: clamp(16px, 12.45vw, 265px);
  padding-right: clamp(16px, 12.45vw, 265px);
  padding-bottom: 100px;
}

@media only screen and (max-width: 767px) {
  .footer {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.footer_company img {
  width: clamp(200px, 20.5vw, 320px);
}

.footer_company p {
  font-size: 14px;
  line-height: 2;
  margin-top: 20px;
  font-weight: 500;
}

.footer_inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer_top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

@media only screen and (max-width: 767px) {
  .footer_top {
    flex-direction: column;
  }
 }

.footer_company {
  max-width: 500px;
}

.link_blank{
  position: relative;
  padding-right: 1.2em;
  font-size: 14px;
  display: inline-block;
}

.link_blank:after {
  content: "";
  background-image: url("../images/link_icon.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 12px;
  height: 12px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.footer_company .group {
  font-size: 0.9rem;
  color: #444;
}

.company_name {
  font-size: clamp(15px, 1.61vw, 32px);
  margin: 8px 0;
  font-weight: bold;
}

.custom_list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.custom_list_item {
  position: relative;
  padding-left: 1.2em;
  font-size: 14px;
}

.custom_list_item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background-color: #ff2e4e;
  border-radius: 50%;
}

.footer_copy {
  font-size: 10px;
  color: #868686;
}

.sp {display: none}

/*---------------------------------------------
	スマホ
  ---------------------------------------------*/

@media screen and (max-width:600px) {
  html {font-size: 2.3vw;}
  
  h1 {
    padding-right: 3rem;
  }
  h1 span.sub {
    width: 14rem;
    padding-bottom: 0;
    line-height: 1.1;
  }
  header {
    padding: 0.6rem 0;
  }
  .header_inner .logo {
    width: 21rem;
  }
  .header_inner .ttl {
    font-size: 1.3rem;
  }
  .header_inner .btn a {
    min-width: inherit;
    padding: 0.5rem 3rem;
    line-height: 1.4;
    text-align: center;
  }
  .btn a{
    border-radius: 7rem;
  }
  
  h2 {
    padding-bottom: 2rem;
    font-size: 2.4rem;
  }
  .block {
    max-width: 100%;
    padding: 0 2rem;
  }
  section .block {
    padding: 6rem 2rem;
  }
  
  .form_block {
    width: 100%;
  }
  .form_block:first-child {
    padding-bottom: 4rem;
  }
  
  .pc {display: none}
  .sp {display: block}
}
