:root {
  /* ボタンの色 */
  --btn-color: #404E9C;
  /* ボタンの色（ホバー） */
  --btn-hover-color: #404e94;

  /* コンテンツタイトルの文字色 */
  --cont-title: #666;

  /* テキストの文字色 */
  --text-headline-color: #666;
  --text-main-color: #666;
}

* {
  margin: 0;
  padding: 0;
  vertical-align: bottom;
  outline: 0;
  text-decoration: none;
}
#contents {
  overflow: hidden;
}
#wrapper {
  padding-top: 81px;
}
.pc {display: block;}
.sp {display: none;}
@media screen and (max-width:750px) {
  .pc {display: none;}
  .sp {display: block;}
}
@media screen and (max-width:600px) {
  #wrapper {
    padding-top: 55px;
  }
}

/* cont_title */
.cont_title {
  margin-bottom: 50px;
	text-align: center;
}
.cont_title h2 {
  font-size: 30px;
  letter-spacing: 0.05em;
  color: var(--cont-title);
}
.cont_title hr {
  width: 90px;
  margin: 10px auto 0;
  border: 0;
  border-top: 5px solid var(--cont-title);
  border-radius: 50px;
}
@media screen and (max-width:750px) {
  .cont_title {
    margin-bottom: 30px;
  }
  .cont_title h2 {
    font-size: 26px;
  }
}

/* header_1 */
.header_1 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 8px 0;
  background: #fff;
  box-shadow: 0px 10px 10px -5px rgba(0,0,0,0.1);
  z-index: 9999;
}
.header_1_inner {
  max-width: 75%;
  margin: auto;
  padding: 0 20px;
}
  .header_1_inner img {
    width: 100%;
    max-width: 200px;
    height:auto;
  }
@media screen and (max-width:600px) {
  .header_1_inner img {
    max-width: 120px;
  }
  .header_1_inner {
    max-width: 100%;
    padding: 0 20px;
  }
}

/* main_vd1 */
.main_vd1 {
  position: relative;
}
.main_vd1 img {
  width: 100%;
  height: auto;;
}
.main_vd1_text {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left:10%;
	margin:auto;
	font-size:26px;
	letter-spacing: 1.8px;
	color:#fff;
	text-shadow: 0 2px 10px rgba(14,1,1,0.5);
}
.main_vd1_text h1{
  font-size:29px;
	border-bottom:3px solid #fff;
	margin-bottom:9px;
  padding-bottom: 10px;
}
.main_vd1_text h1,
.main_vd1_text h2 {
  color: #fff;
  font-size: 1.5em;
}
@media screen and (max-width:750px) {
  .main_vd1_text{
  	font-size:25px;
  }

  .main_vd1_text h1{
  	border-bottom:3px solid #fff;
  	margin-bottom:9px;
  }
}
@media screen and (max-width:600px) {
  .main_vd1_text{
  	font-size: 4.8vw;
  	text-align: center;
  	width:100%;
  	left: 0;
  	right:0;
	}
  .main_vd1_text h1{
	  display: inline-block;
  }
}

/* link_area1 */
.link_area1 {
	margin-top: 50px;
	padding: 0 50px;
	z-index: 100;
}
.link_area1_inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255,255,255,0.8);
}
.search_left {
  width: 48%;
}
.form_area {
  position: relative;
  display: flex;
}
.link_area1 form {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.link_area1 .group1,
.link_area1 .group2 {
  width: 100%;
}
input[type=text],
select {
  width: 100%;
  height: 52px;
  padding: 10px;
  font-weight: 700;
  border: 1px solid #ccc;
}
.area_head {
  position: relative;
  min-width: 90px;
  box-sizing: border-box;
  background: #666;
  font-size: 13px;
  text-align: center;
  padding:16px 10px 17px;
  color:#fff;
  font-weight: bold;
  z-index: 100;
}
.link_area1 .submit {
	position: relative;
	background: var(--btn-color);
	border: 3px double #fff;
	padding:11px 12px 10px;
	color:#fff;
	cursor: pointer;
  transition: 0.2s;
	z-index: 100;
}
.link_area1 .submit:hover {
	background-color: var(--btn-hover-color);
}
.link_area1 .submit img {
	width:26px;
}
.search_right {
  width: 48%;
}
.allsearch {
  position: relative;
  width: 100%;
  padding: 11px 12px;
  font-size: 16px;
  letter-spacing: 2px;
  font-weight: bold;
  color:#fff;
  text-align: center;
  background: var(--btn-color);
  border:3px double #fff;
  transition: .5s;
  box-sizing: border-box;
  z-index: 100;
}
.allsearch:hover {
	background-color: var(--btn-hover-color);
}
@media screen and (max-width:750px) {
  .link_area1 {
    width: 90%;
  	margin: 20px auto 0;
  	padding: 0;
  }
  .link_area1_inner {
    flex-direction: column;
  }
  .search_left {
    width: 100%;
  }
  .search_right {
    width: 100%;
  }
  .allsearch {
    margin-top: 30px;
    top: 0;
  }
}
/* link_btn1 */
.link_btn1 {
  width: 100%;
  max-width: 600px;
  margin: 50px auto 0;
  text-align: center;
}
.link_btn1_inner ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 20px 0 -15px -15px;
  list-style: none;
}
.link_btn1_inner ul li {
  position: relative;
  width: 150px;
  margin: 0 0 15px 15px;
  padding: 10px 0;
  background: #404E9C;
  transition: 0.2s;
}
.link_btn1_inner ul li:hover {
  background: #404e94;
}
.link_btn1_inner ul li a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.link_btn1_inner ul li p {
  font-size: 18px;
  color: #fff;
}
.li_space {opacity: 0;}
@media screen and (max-width:750px) {
  .link_btn1_inner ul li {
    width: 100%;
  }
}
@media screen and (max-width:330px) {
  .link_btn1_inner ul li {
    width: 100%;
  }
  .li_space {display: none;}
}

/* standard_text1 */
.standard_text1 {
  margin-top: 50px;
  text-align: center;
}
.standard_text1 h2 {
	font-size:39px;
  line-height: 1.9em;
	letter-spacing: 0.15em;
  font-weight: 700;
  color: var(--text-headline-color);
}
.standard_text1 p {
  margin-top: 20px;
  font-size:21px;
  line-height: 1.9em;
	letter-spacing: 0.15em;
  color: var(--text-main-color);
}
@media screen and (max-width:750px) {
  .standard_text1 {
    margin-top: 50px;
  }
  .standard_text1_inner {
    width: 90%;
    margin: auto;
  }
  .standard_text1 h2 {
    font-size: 28px;
    line-height: 1.5em;
  }
  .standard_text1 p {
    font-size:17px;
  }
}

/* standard_img1 */
.standard_img1 {
  width: 95%;
  max-width: 980px;
  display: flex;
  justify-content: space-between;
  margin: 50px auto 0;
}
.standard_img1 > div {
  width: 48.7%;
}
.standard_img1 img {
  width: 100%;
  height: auto;
}
@media screen and (max-width:750px) {
  .standard_img1 {
    width: 90%;
    flex-direction: column;
    margin: 30px auto 0;
  }
  .standard_img1 > div {
    width: 100%;
  }
  .standard_img1 > div:first-child {
    margin-bottom: 10px;
  }
}

/* point */
.point {
  width: 90%;
  max-width: 680px;
  margin: 100px auto 0;
 
}
.point_inner {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  max-width: 850px;
  margin: 0 auto;
}
.point_box {
  padding: 1em 0 0 0;
  width: 180px;
  height: 190px;
  border: solid 3px #EB5454;
  margin: 0 3rem 2rem 0;
  position: relative;
}
.point_box:nth-of-type(3n) {
  margin: 0 0 2rem 0;
}
.point_box:last-child {
  margin:0;
}
.point_text{
  text-align: center;
  margin: 10px;
  position: absolute;
  left: 0;
  right: 0;
}
.point_import1{
  font-size: 25px!important;
  font-weight: bold;
}
.point_import2{
  font-size: 25px!important;
  font-weight: bold;
  line-height: 38px;
}
.ann{
  font-size: 10px!important;
}
.point_box p {
  margin: 0; 
  padding: 0;
  color: #393939;
  font-size: 16px;
  letter-spacing: 0.05em;
  color: var(--text-main-color);
}
.point_box .point1 {
  color: #EB5454;
}
.point_box .point2 {
  font-size: 43px;
  color: #EB5454;
  vertical-align: baseline;
}
.point_img{
  text-align: center;
  position: absolute;
  bottom: 15%;
  left: 0;
  right: 0;
}
.point_box h3 {
  font-size: 14px;
  text-align: center;
  color: var(--text-main-color);
}
@media screen and (max-width:750px) {
  .point {
    max-width: 90%;
    margin: 50px auto -50px;
  }
  .point_inner {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 30px 0 0 0;
  }
  .point_box:nth-of-type(3n) {
    margin: 0!important;
  }
  .point_box {
    max-width: 180px;
    width: 45%;
    max-height: 190px;
    height: 47vw;
    margin: 0 0 1rem 0;
  }
  .point_box p {
    font-size: 16px;
    letter-spacing: 0;
  }
  .point_import1{
    font-size: 20px!important;
  }
  .point_import2{
    font-size: 20px!important;
  }
  .point_box .point2 {
    font-size: 36px;
  }
}

/* qanda */
.qanda {
  width: 95%;
  max-width: 980px;
  margin: 100px auto 0;
}
.qanda_inner {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}
.qanda_img {
  width: 300px;
}
.qanda_img img {
  width: 100%;
  height: auto;
}
.qanda_position {
  display: inline-block;
  min-width: 80px;
  margin: 12px 0;
  padding: 5px 10px 8px;
	font-size: 13px;
	border: 1px solid #666;
	text-align: center;
  color: var(--text-main-color);
}
.qanda_name {
  font-size: 13px;
  color: var(--text-main-color);
}
.qanda_name span {
  margin-left: 10px;
  letter-spacing: 0.25em;
}
.accordion-002 {
  max-width: 90%;
  margin: 0 auto 7px;
  border: 2px solid #393939;
  border-radius: 5px;
}

.accordion-002 summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1em 2em;
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2028%2028%22%3E%0A%20%20%20%20%3Ccircle%20cx%3D%2214%22%20cy%3D%2214%22%20r%3D%2214%22%20style%3D%22fill%3A%23393939%3B%22%2F%3E%0A%3C%2Fsvg%3E');
  background-position: right calc(2em - 7px) center;
  background-size: 22px;
  background-repeat: no-repeat;
  color: #393939;
  font-weight: 600;
  cursor: pointer;
}

.accordion-002 summary::-webkit-details-marker {
  display: none;
}

.accordion-002 summary::after {
  transform: translateY(-25%) rotate(45deg);
  width: 5px;
  height: 5px;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  content: '';
  transition: transform .3s;
}

.accordion-002[open] summary::after {
  transform: rotate(225deg);
}

.accordion-002 p {
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: 0 2em 1.5em;
  color: #979797;
  transition: transform .5s, opacity .5s;
  line-height: 1.7;
  letter-spacing: 0.05em;
}

.accordion-002[open] p {
  transform: none;
  opacity: 1;
}
@media screen and (max-width:750px) {
  .qanda {
    max-width: 90%;
    margin: 100px auto 0;
  }
  .qanda_inner {
    flex-direction: column;
  }
  .qanda_img {
    width: 100%;
  }
  .qanda_position,
  .qanda_name {
    font-size: 15px;
  }
  .qanda_inner_right {
    margin: 30px 0 0 0;
  }
  .qanda_inner_right h3 {
    font-size: 20px;
  }
}

/* company_info1 */
.company_info1 {
  width: 100%;
  max-width: 980px;
  margin: 100px auto 0;
}
.company_info1 li {
  display: flex;
  padding: 15px 50px;
  font-size: 16px;
  letter-spacing: 0.15em;
  color: var(--text-main-color);
}
.company_info1 li:nth-child(2n-1){
	background-color: #E7E7E7;
}
.company_info1 li div:nth-of-type(1){
	width:25%;
}
.company_info1 li div:nth-of-type(2){
	width:75%;
}
@media screen and (max-width:750px) {
  .company_info1 li {
    padding: 15px 20px;
  }
  .company_info1 li div:nth-of-type(1){
  	width:35%;
  }
  .company_info1 li div:nth-of-type(2){
  	width:65%;
  }
}

/* google_map1 */
.google_map1 {
  margin-top: 50px;
}
.google_map1_inner {
  height: 0;
  overflow: hidden;
  padding-bottom: 33.25%;
  position: relative;
}
.google_map1_inner iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
@media screen and (max-width:750px) {
  .google_map1_inner {
  padding-bottom: 40.25%;
  }
}
@media screen and (max-width:600px) {
  .google_map1_inner {
  padding-bottom: 48.25%;
  }
}
@media screen and (max-width:500px) {
  .google_map1_inner {
  padding-bottom: 55.25%;
  }
}

/* standard_button1 */
.standard_button1 {
  margin-top: 50px;
}
.standard_button1_inner {
  margin: auto;
	width: 380px;
  background: var(--btn-color);
  border:3px double #fff;
  transition: 0.5s;
}
.standard_button1_inner:hover{
	background: var(--btn-hover-color);
}
.standard_button1_inner p {
	padding: 11px 0;
  letter-spacing: 0.1em;
  font-weight:bold;
  color:#fff;
  text-align: center;
}
@media screen and (max-width:750px) {
  .standard_button1_inner {
    width: 90%;
  }
}

/* footer1 */
.footer1 {
  margin-top: 50px;
}
.footer1_inner {
  width:100%;
  padding:20px 0;
	background-image: url("../images/main_vd.png");
	background-color:rgba(0,0,0,0.5);
	background-blend-mode:darken;
	background-repeat: no-repeat;
  background-size: auto;
  background-position: top;
}
.footer1_inner p {
  font-size:10px;
	color:#fff;
  text-align: center;
}
