@charset "utf-8";

/* ============================================================
COMMON
============================================================ */
body {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #333;
  max-width: 100%;
  margin: 0 auto;
  -webkit-text-size-adjust: 100%;
}

a { text-decoration: none; }

/* ==================== PCのみ表示 ==================== */
.pc-on { display: block !important; }
.sp-on { display: none !important; }

@media only screen and (max-width: 767px) {
  /* ==================== SPのみ表示 ==================== */
  .pc-on { display: none !important; }
  .sp-on { display: block !important; }
}

/* ==================== スペースを空ける ==================== */
.space-3em { margin-bottom: 3em; }
.space-5em { margin-bottom: 5em; }
.space-7em { margin-bottom: 7em; }
.space-10em { margin-bottom: 10em; }
.space-15em { margin-bottom: 15em; }



/* ============================================================
START!!
============================================================ */

/* ==================== header ==================== */
.fixed {
  position: fixed;
  width: 100%;
  top: 0;
  background-color: #fff;
}

header p {
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
  color: #e5e5e5;
  line-height: 2;
}

.h-bg { background-color: #1a11ad; }

.h-container { width: 100%; }

.h-fixed {
  width: 1000px;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  justify-content: space-between;
}

.h-container h1 {
  margin: 10px 0;
  font-size: 1.5em;
  line-height: 2.3;
}

.h-container p {
  color: #333;
  font-size: 0.8em;
  margin: 10px 0;
}

.h-container .btn p:before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-right: 5px;
  border-style: solid;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid #333;
  border-right: 0;
}

.h-container .btn a {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
  background-color: #1a11ad;
	width: 190px;
	height: 30px;
	color: #e5e5e5;
  font-size: 1.2em;
	text-decoration: none;
	transition: 0.3s;
}

.h-container .btn a:before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  margin: 3px 15px 0 0;
  background: url("../images/img_mail.png") no-repeat;
  background-size: contain;
  vertical-align: middle;
}

.h-container .btn a:after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  margin: 5px 0 0 15px;
	transform: rotate(45deg) translateY(-50%);
	width: 10px;
	height: 10px;
	border-width: 3px 3px 0 0;
	border-style: solid;
	border-color: #e5e5e5;
}

.h-container .btn a:hover { opacity: 0.7; }

.h-container .btn a:hover::after { background-color: #1a11ad; }


@media only screen and (max-width: 767px) {
  .fixed {
    position: fixed;
    width: 100%;
    top: 0;
    background-color: #fff;
  }
  header p {
    max-width: 100%;
    text-align: center;
    padding-left: 10px;
    color: #e5e5e5;
    line-height: 2;
  }
  
  .h-bg { background-color: #1a11ad; }

  .h-container { width: 100%; }

  .h-fixed {
    display:block;
    justify-content: space-between;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
  
  .h-container h1 {
    margin: 10px 0;
    font-size: 1.5em;
    text-align: center;
    line-height: 1.2;
  }
  
  .h-container p {
    color: #333;
    font-size: 0.8em;
    text-align: center;
    margin: 10px 0;
  }
  
  .h-container .btn p:before {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    margin-right: 5px;
    border-style: solid;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 5px solid #333;
    border-right: 0;
  }
  
  .h-container .btn a {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: #1a11ad;
    width: 190px;
    height: 30px;
    margin-right: auto;
    margin-left: auto;
    color: #e5e5e5;
    font-size: 1.2em;
    text-decoration: none;
    transition: 0.3s;
  }
  
  .h-container .btn a:before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    margin: 3px 15px 0 0;
    background: url("../images/img_mail.png") no-repeat;
    background-size: contain;
    vertical-align: middle;
  }
  
  .h-container .btn a:after {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    margin: 5px 0 0 15px;
    transform: rotate(45deg) translateY(-50%);
    width: 10px;
    height: 10px;
    border-width: 3px 3px 0 0;
    border-style: solid;
    border-color: #e5e5e5;
  }
  
  .h-container .btn a:hover { opacity: 0.7; }
  
  .h-container .btn a:hover::after { background-color: #1a11ad; }
}


/* ==================== section1 ==================== */
.sec1-bg {
  background-image: url(../images/sec1_bg.jpg);
  background-repeat: no-repeat;
  background-position:bottom;
  background-size:  cover;
  padding-bottom: 50px;
}

.sec1 {
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
}

.sec1 img {
  width: 80%;
  margin-right: auto;
  margin-left: auto;
  padding: 20px 0;
}

.sec1 p {
  font-size: 1.2em;
  text-align: center;
  line-height: 2;
}


@media only screen and (max-width: 767px) {
  .sec1-bg {
    background-image: url(../images/sec1_bg.jpg);
    background-repeat: no-repeat;
    background-position:bottom;
    background-size:  cover;
    padding-bottom: 50px;
  }
  
  .sec1 {
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
  
  .sec1 img {
    width: 80%;
    margin-right: auto;
    margin-left: auto;
    padding: 20px 0;
  }
  
  .sec1 p {
    font-size: 1em;
    text-align: center;
    line-height: 2;
  }
}


/* ==================== section2 ==================== */
.sec2 {
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
}

.sec2 img {
  width: 80%;
  margin-right: auto;
  margin-left: auto;
  padding: 20px 0;
}

.sec2 .sec2-container {
  max-width: 850px;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.sec2 .sec2-item {
  flex-basis: 400px;
}

.sec2 .sec2-item h2 {
  font-size: 1.2em;
  text-align: center;
  line-height: 1.2;
  padding-bottom: 15px;
}

.sec2 .sec2-item p {
  width: 320px;
  margin-right: auto;
  margin-left: auto;
  padding-bottom: 20px;
}

.sec2 .sec2-name {
  width: 450px;
  margin: 20px 0 50px auto;
  padding-left: 10px;
  border-left: 10px solid #1a11ad;
}

.sec2 .sec2-name span {
  padding-left: 78px;
}


@media only screen and (max-width: 767px) {
  .sec2 {
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
  
  .sec2 img {
    width: 80%;
    margin-right: auto;
    margin-left: auto;
    padding: 20px 0;
  }
  
  .sec2 .sec2-container {
    max-width: 85%;
    margin-right: auto;
    margin-left: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .sec2 .sec2-item {
    flex-basis: 400px;
  }
  
  .sec2 .sec2-item h2 {
    font-size: 1.2em;
    text-align: center;
    line-height: 1.2;
    padding-bottom: 15px;
  }
  
  .sec2 .sec2-item p {
    width: 320px;
    margin-right: auto;
    margin-left: auto;
    padding-bottom: 20px;
  }
  
  .sec2 .sec2-name {
    width: 95%;
    margin: 20px auto 50px auto;
    padding: 0 10px;
    border-right: 7px solid #1a11ad;
    border-left: 7px solid #1a11ad;
  }
  
  .sec2 .sec2-name span {
    padding-left: 78px;
  }
}

/* ==================== footer ==================== */
.f-bg1 { background-color: #dcdddd; }

.f-bg2 {
  background-color: #1a11ad;
  height: 30px;
  padding: 7px 0;
  text-align: center;
  font-size: 0.8em;
}

footer p {
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
  color: #e5e5e5;
  line-height: 1.5;
}

.f-icon:before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-right: 5px;
  border-style: solid;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid #333;
  border-right: 0;
}

.f-container {
  display: flex;
  justify-content: space-between;
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
}

.f-container p {
  color: #333;
  font-size: 0.8em;
  margin: 10px 0;
}

.f-container span {
  font-size: 2.0em;
  font-weight: bold;
}

.f-container .btn { margin-top: 15px; }

.f-container .btn p:before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-right: 5px;
  border-style: solid;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid #333;
  border-right: 0;
}

.f-container .btn a {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
  background-color: #1a11ad;
	width: 190px;
	height: 30px;
	color: #e5e5e5;
  font-size: 1.2em;
	text-decoration: none;
	transition: 0.3s;
}

.f-container .btn a:before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  margin: 3px 15px 0 0;
  background: url("../images/img_mail.png") no-repeat;
  background-size: contain;
  vertical-align: middle;
}

.f-container .btn a:after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  margin: 5px 0 0 15px;
	transform: rotate(45deg) translateY(-50%);
	width: 10px;
	height: 10px;
	border-width: 3px 3px 0 0;
	border-style: solid;
	border-color: #e5e5e5;
}

.f-container .btn a:hover { opacity: 0.7; }

.f-container .btn a:hover::after { background-color: #1a11ad; }


@media only screen and (max-width: 767px) {
  .f-bg1 {
    background-color: #dcdddd;
    margin-bottom: -10px;
  }

  .f-bg2 {
    background-color: #1a11ad;
    height: 30px;
    padding: 7px 0;
    text-align: center;
    font-size: 0.8em;
  }

  .f-bg2 p { line-height: 0; }
  
  footer p {
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-top: 10px;
    padding-left: 10px;
    padding-bottom: 10px;
    color: #e5e5e5;
    text-align: center;
    line-height: 1.5;
  }
  
  .f-icon:before {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    margin-right: 5px;
    border-style: solid;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 5px solid #333;
    border-right: 0;
  }
  
  .f-container {
    display: block;
    justify-content: space-between;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
  
  .f-container p {
    color: #333;
    font-size: 0.8em;
    margin: 10px 0;
  }
  
  .f-container span {
    font-size: 2.0em;
    font-weight: bold;
  }
  
  .f-container .btn { margin-top: 15px; }
  
  .f-container .btn p:before {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    margin-right: 5px;
    border-style: solid;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 5px solid #333;
    border-right: 0;
  }
  
  .f-container .btn a {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: #1a11ad;
    width: 190px;
    height: 30px;
    margin-right: auto;
    margin-left: auto;
    color: #e5e5e5;
    font-size: 1.2em;
    text-decoration: none;
    transition: 0.3s;
  }
  
  .f-container .btn a:before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    margin: 3px 15px 0 0;
    background: url("../images/img_mail.png") no-repeat;
    background-size: contain;
    vertical-align: middle;
  }
  
  .f-container .btn a:after {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    margin: 5px 0 0 15px;
    transform: rotate(45deg) translateY(-50%);
    width: 10px;
    height: 10px;
    border-width: 3px 3px 0 0;
    border-style: solid;
    border-color: #e5e5e5;
  }
  
  .f-container .btn a:hover { opacity: 0.7; }
  
  .f-container .btn a:hover::after { background-color: #1a11ad; }
}