@charset "UTF-8";

/* CSS Document */
/**********************************
Reset
**********************************/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
dialog,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  font-weight: 300;
}

body {
  line-height: 1;
}

article,
aside,
dialog,
figure,
footer,
header,
hgroup,
nav,
section {
  display: block;
}

nav ul,
ul,
li {
  list-style: none;
}

li a {
  text-decoration: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

a {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted #000;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

img {
  vertical-align: bottom;
}

/**********************************
Settings
**********************************/
html {
  font-size: 16px;
}

body {
  width: 100%;
  background-color: #fff;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  color: #111;
  line-height: 1.5em;
}

/**********************************
Hover
**********************************/
a {
  color: #000;
  transition: all .15s ease;
}

a:hover {
  color: #0d3893;
}

a img {
  transition: all .15s ease;
}

a img:hover {
  opacity: .7;
}

/**********************************
Navigation
**********************************/
header {
  width: 100%;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 901;
  background-color: #fff;
}

.header_wrap {
  width: 95%;
  padding: 26px 2.5%;
  max-width: 1440px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  margin: 0 auto;
}

.header_wrap>.logo {
  width: 20%;
}

.header_wrap .logo img {
  width: 100%;
  height: auto;
}

.header_wrap nav {
  width: 34%;
  margin-left: auto;
}

.header_wrap .pc_nav {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

.header_wrap .pc_nav li {
  position: relative;
}

.header_wrap .pc_nav li:before {
  content: '';
  position: absolute;
  height: 2px;
  background-color: #0d3893;
  left: 0;
  bottom: -6px;
}

.header_wrap .pc_nav li:hover:before {
  -webkit-animation: nav_on .15s ease-in-out both;
  animation: nav_on .15s ease-in-out both;
}

@keyframes nav_on {
  0% {
    width: 0;
  }

  100% {
    width: 100%;
  }
}

.header_wrap .pc_nav li a {
  font-weight: 700;
  color: #0d3893;
}

.sp_nav_wrap {
  display: none;
}

/*****TOP page*****/
/**MV**/
.mv_wrap {
  width: 100%;
  max-width: 1440px;
  position: relative;
  margin: 0 auto;
}

.mv_wrap .logo {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -2% 0 0 -9.5%;
  width: 20%;
}

.mv_wrap .logo img {
  width: 100%;
  height: auto;
}

.mv_wrap .mv {
  width: 100%;
}

.mv_wrap .mv img {
  width: 100%;
  height: auto;
}

/**多型鑑定研究会について**/
#about {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  background-image: url(../images/bg_dpid_logo.png);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 516px;
}

#about .section_inner {
  width: 69.5%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 76px 0 112px;
}

#about .section_inner h2 {
  text-align: center;
  font-family: 'Oswald', sans-serif;
  font-size: 0.875rem;
  color: #0d3893;
}

#about .section_inner h2 span {
  text-align: center;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: #000;
  display: block;
  margin-top: 16px;
}

#about .section_inner .main {
  margin-top: 68px;
  display: -webkit-box;
  display: flex;
}

#about .section_inner .main .text {
  width: 47%;
}

#about .section_inner .main .text p {
  line-height: 1.7em;
  margin-bottom: 24px;
}

#about .section_inner .main .photo {
  width: 50%;
  margin-left: auto;
}

#about .section_inner .main .photo img {
  width: 100%;
  height: auto;
}

#about .section_inner .more_btn {
  width: 572px;
  margin: 120px auto 0;
}

#about .section_inner .more_btn a {
  display: block;
  text-align: center;
  padding: 18px 14px;
  font-weight: 700;
  text-decoration: none;
  border: solid 2px #0d3893;
  border-radius: 6px;
  color: #0d3893;
  background-color: #fff;
  position: relative;
  overflow: hidden;
  z-index: 0;
}

#about .section_inner .more_btn a:before {
  content: '';
  display: block;
  position: absolute;
  right: 20px;
  bottom: 22px;
  width: 20px;
  height: 14px;
  background-image: url(../images/arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
}

#about .section_inner .more_btn a:hover {
  color: #fff;
}

#about .section_inner .more_btn a:after {
  content: '';
  display: block;
  background-color: #0d3893;
  width: 0;
  height: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  transition: all .2s ease;
}

#about .section_inner .more_btn a:hover:before {
  background-image: url(../images/arrow_white.png);
}

#about .section_inner .more_btn a:hover:after {
  width: 120%;
}

/**DNA鑑定業務**/
#sevice {
  width: 100%;
  background-color: #f2f6ff;
}

#sevice .section_inner {
  width: 69.5%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 112px 0;
}

#sevice .section_inner h2 {
  text-align: center;
  font-family: 'Oswald', sans-serif;
  font-size: 0.875rem;
  color: #0d3893;
}

#sevice .section_inner h2 span {
  text-align: center;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: #000;
  display: block;
  margin-top: 16px;
}

#sevice .section_inner .photo_wrap {
  margin-top: 54px;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

#sevice .section_inner .photo_wrap .photo {
  width: 32%;
}

#sevice .section_inner .photo_wrap .photo img {
  width: 100%;
  height: auto;
}

#sevice .section_inner p {
  text-align: center;
  margin-top: 56px;
}

#sevice .section_inner .service_list {
  margin-top: 52px;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

#sevice .section_inner .service_list ul {
  width: 48%;
}

#sevice .section_inner .service_list ul li {
  list-style: disc;
  list-style-position: inside;
  border-top: solid 1px #0d3893;
  padding: 14px 20px;
}

#sevice .section_inner .service_list ul li:last-of-type {
  border-bottom: solid 1px #0d3893;
}

#sevice .section_inner .more_btn {
  width: 572px;
  margin: 86px auto 0;
}

#sevice .section_inner .more_btn a {
  display: block;
  text-align: center;
  padding: 18px 14px;
  font-weight: 700;
  text-decoration: none;
  border: solid 2px #0d3893;
  border-radius: 6px;
  color: #0d3893;
  background-color: #fff;
  position: relative;
  overflow: hidden;
  z-index: 0;
}

#sevice .section_inner .more_btn a:before {
  content: '';
  display: block;
  position: absolute;
  right: 20px;
  bottom: 22px;
  width: 20px;
  height: 14px;
  background-image: url(../images/arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
}

#sevice .section_inner .more_btn a:hover {
  color: #fff;
}

#sevice .section_inner .more_btn a:after {
  content: '';
  display: block;
  background-color: #0d3893;
  width: 0;
  height: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  transition: all .2s ease;
}

#sevice .section_inner .more_btn a:hover:before {
  background-image: url(../images/arrow_white.png);
}

#sevice .section_inner .more_btn a:hover:after {
  width: 120%;
}

/**代表者ご挨拶**/
#message .section_inner {
  width: 69.5%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 76px 0 112px;
}

#message .section_inner h2 {
  text-align: center;
  font-family: 'Oswald', sans-serif;
  font-size: 0.875rem;
  color: #0d3893;
}

#message .section_inner h2 span {
  text-align: center;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: #000;
  display: block;
  margin-top: 16px;
}

#message .section_inner .main {
  margin-top: 68px;
  display: -webkit-box;
  display: flex;
}

#message .section_inner .main .photo {
  width: 50%;
}

#message .section_inner .main .photo img {
  width: 100%;
  height: auto;
}

#message .section_inner .main .text {
  width: 47%;
  margin-left: auto;
}

#message .section_inner .main .text p {
  line-height: 1.7em;
  margin-bottom: 24px;
}

#message .section_inner .more_btn {
  width: 572px;
  margin: 86px auto 0;
}

#message .section_inner .more_btn a {
  display: block;
  text-align: center;
  padding: 18px 14px;
  font-weight: 700;
  text-decoration: none;
  border: solid 2px #0d3893;
  border-radius: 6px;
  color: #0d3893;
  background-color: #fff;
  position: relative;
  overflow: hidden;
  z-index: 0;
}

#message .section_inner .more_btn a:before {
  content: '';
  display: block;
  position: absolute;
  right: 20px;
  bottom: 22px;
  width: 20px;
  height: 14px;
  background-image: url(../images/arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
}

#message .section_inner .more_btn a:hover {
  color: #fff;
}

#message .section_inner .more_btn a:after {
  content: '';
  display: block;
  background-color: #0d3893;
  width: 0;
  height: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  transition: all .2s ease;
}

#message .section_inner .more_btn a:hover:before {
  background-image: url(../images/arrow_white.png);
}

#message .section_inner .more_btn a:hover:after {
  width: 120%;
}

/*****下層 page*****/
/**ページのタイトル**/
.page_title_wrap {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  background-image: url(../images/title_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

.page_title_wrap .page_title {
  width: 69.4%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 100px 0;
}

.page_title_wrap.contact {
  background-image: none;
  background-color: #00103f;
}

.page_title_wrap.contact .page_title {
  padding: 86px 0;
}

.page_title_wrap .page_title h2 {
  color: #1da7d5;
  letter-spacing: .1em;
  font-family: 'Oswald', sans-serif;
}

.page_title_wrap .page_title h2 span {
  display: block;
  color: #fff;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: .2em;
  margin-bottom: 18px;
}

.bread_crumb {
  width: 69.4%;
  max-width: 1000px;
  margin: 10px auto 0;
}

.bread_crumb ul {
  display: -webkit-box;
  display: flex;
}

.bread_crumb ul li {
  font-size: 14px;
  margin-right: 14px;
}

.bread_crumb ul li:after {
  content: "　>";
}
.bread_crumb ul li:last-of-type:after {
  content: none;
}

.bread_crumb ul li a {
  color: #0d3893;
  text-decoration: underline;
}

.bread_crumb ul li a:hover {
  color: #1da7d5;
}

/**本文スタイル**/
.sub_page .contents_wrap {
  width: 69.4%;
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 68px;
}

.sub_page .section_inner h2 {
  width: 100%;
  text-align: center;
  color: #0d3893;
  letter-spacing: .1em;
  font-family: 'Oswald', sans-serif;
  margin-top: 86px;
}

.sub_page .section_inner h2 span {
  display: block;
  color: #000;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: .1em;
  margin-top: 12px;
}

.sub_page .section_inner h3 {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 0 0 12px 12px;
  border-bottom: solid 2px #0d3893;
  margin-top: 86px;
}

.sub_page .section_inner h4 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 12px 14px;
  background-color: #efefef;
  border-left: solid 2px #0d3893;
  margin-top: 86px;
}

.sub_page .section_inner > p {
  margin-top: 36px;
  line-height: 1.7em;
}

.sub_page .section_inner .two_column {
  margin-top: 68px;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

.sub_page .section_inner .two_column > .text {
  width: 48%;
}

.sub_page .section_inner .two_column > .text p {
  margin-bottom: 14px;
  line-height: 1.7em;
}

.sub_page .section_inner .two_column > .photo {
  width: 48%;
}

.sub_page .section_inner .two_column > .photo img {
  width: 100%;
  height: auto;
}

.sub_page .section_inner .two_column .inner_box {
  width: 48.5%;
}

.sub_page .section_inner .three_column {
  margin-top: 68px;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

.sub_page .section_inner .three_column .inner_box {
  width: 31.5%;
}

.sub_page .inner_box .photo {
  width: 100%;
}

.sub_page .inner_box .photo img {
  width: 100%;
  height: auto;
}

.sub_page .inner_box h5 {
  font-size: 1.375rem;
  line-height: 1.5em;
  letter-spacing: .1em;
  font-weight: 700;
  color: #0d3893;
  margin-top: 16px;
}

.sub_page .inner_box p {
  margin-top: 16px;
  line-height: 1.7em;
}

.sub_page .section_inner .base_table {
  width: 100%;
  border: solid 1px #c4d0e9;
  margin-top: 48px;
}
.sub_page .section_inner .base_table th {
  width: 28%;
  background-color: #f2f6ff;
  border-bottom: solid 1px #c4d0e9;
  border-right: solid 1px #c4d0e9;
  text-align: left;
  padding: 14px 18px;
  font-weight: 700;
  vertical-align: middle;
}
.sub_page .section_inner .base_table td {
  border-bottom: solid 1px #c4d0e9;
  padding: 14px 18px;
  vertical-align: middle;
  line-height: 1.5em;
}

.sub_page .section_inner .base_table td span {
  display: block;
  margin-top: 10px;
}
.sub_page .section_inner .base_table td ul {
  margin-left: 20px;
}
.sub_page .section_inner .base_table td ul li {
  list-style: disc;
  line-height: 1.5em;
  margin: 6px 0;
}

.sub_page .section_inner .link_btn {
  width: 572px;
  margin: 56px auto 0;
}

.sub_page .section_inner .link_btn a {
  display: block;
  text-align: center;
  padding: 18px 14px;
  font-weight: 700;
  text-decoration: none;
  border: solid 2px #0d3893;
  border-radius: 6px;
  color: #0d3893;
  background-color: #fff;
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.sub_page .section_inner .link_btn a:before {
  content: '';
  display: block;
  position: absolute;
  right: 20px;
  bottom: 22px;
  width: 20px;
  height: 14px;
  background-image: url(../images/arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.sub_page .section_inner .link_btn a:hover {
  color: #fff;
}

.sub_page .section_inner .link_btn a:after {
  content: '';
  display: block;
  background-color: #0d3893;
  width: 0;
  height: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  transition: all .2s ease;
}

.sub_page .section_inner .link_btn a:hover:before {
  background-image: url(../images/arrow_white.png);
}

.sub_page .section_inner .link_btn a:hover:after {
  width: 120%;
}

/*理事長署名*/
.sub_page .section_inner .signature {
  text-align: right;
}

/*お問い合わせ*/
.contact_table {
  width: 100%;
  border: solid 1px #c4d0e9;
  margin-top: 36px;
}
.contact_table th {
  background-color: #f2f6ff;
  border-bottom: solid 1px #c4d0e9;
  border-right: solid 1px #c4d0e9;
  text-align: left;
  padding: 20px 18px;
  font-weight: 700;
  vertical-align: middle;
  width: 25%;
}
.contact_table th span {
  color: #f00;
}
.contact_table td {
  border-bottom: solid 1px #c4d0e9;
  padding: 20px 18px;
  vertical-align: middle;
}

.contact_table td input {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 92%;
  display: block;
  margin: 0 auto;
  background-color: #dfdfdf;
  padding: 10px;
  font-size: 1rem;
}
.contact_table td textarea {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 92%;
  display: block;
  margin: 0 auto;
  background-color: #dfdfdf;
  padding: 10px;
  font-size: 1rem;
}

.submit_btn input,
.submit_btn button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  width: 300px;
  margin: 56px auto 0;
  padding: 16px 0;
  background-color: #000;
  text-align: center;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  font-size: 1rem;
  letter-spacing: 0.1em;
  transition: all .15s ease;
}

.submit_btn input:hover,
.submit_btn button:hover {
  background-color: #7c7c7c;
}

.contact_notice {
  color: #f00;
  font-weight: 700;
}
.contact_info1 {
  width: 600px;
  line-height: 1.7em;
  font-weight: 700;
  background-color: #efefef;
  margin: 46px auto 0;
  padding: 16px 32px;
}
.contact_info2 {
  text-align: center;
  line-height: 1.7em;
}

.contact_info2 span {
  color: #f00;
}

.sample {
  display: block;
  color: #f00;
  font-size: 1.125rem;
  font-weight: 700;
}

/*****お問い合わせボタン*****/
body>.contact_btn {
  position: sticky;
  bottom: 0;
  left: 100%;
  width: 420px;
}

body>.contact_btn img {
  width: 100%;
  height: auto;
  transition: none;
}

body>.contact_btn img:hover {
  opacity: 1;
}

/**********************************
Footer
**********************************/
footer {
  width: 100%;
  background-color: #00103f;
}

footer .footer_info {
  width: 69.5%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 52px 0;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  flex-direction: row-reverse;
}

footer .footer_info .left {
  width: 32%;
}

footer .footer_info .left .logo {
  width: 100%;
}

footer .footer_info .left .logo img {
  width: 100%;
  height: auto;
}

footer .footer_info .left .address {
  margin-top: 18px;
  font-size: 0.875rem;
  line-height: 1.5em;
  color: #fff;
}

footer .footer_info ul {
  margin-top: 12px;
  width: 61%;
  margin-left: auto;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

footer .footer_info ul li {
  width: 24%;
  padding: 0 0 1px 14px;
  border-left: solid 2px #fff;
  line-height: 1em;
}

footer .footer_info ul li a {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
}

footer .footer_info ul li a:hover {
  color: #1da7d5;
}

footer .copyright {
  width: 100%;
  font-size: 0.875rem;
  padding: 6px 0;
  background-color: #0d3893;
  text-align: center;
  color: #fff;
}

.sp_only {
  display: none;
}