@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: 14px;
}

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

body.fixed {
  scrollbar-width: none;
}

body.fixed::-webkit-scrollbar {
  display: none;
}

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

.header_wrap {
  padding: 14px 3%;
}

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

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

.sp_nav_wrap {
  width: 40px;
  height: 40px;
  -webkit-transition: .2s;
  transition: .2s;
  cursor: pointer;
  position: absolute;
  right: 8px;
  top: 10px;
  z-index: 8888;
  cursor: pointer;
}

.nav_unshown {
  display: none;
}

#nav_open {
  display: inline-block;
  width: 22px;
  height: 22px;
  top: 50%;
  left: 50%;
  margin-left: -11px;
  margin-top: -21px;
  vertical-align: middle;
  cursor: pointer;
  position: relative;
  z-index: 9998;
}

.sp_nav_wrap span {
  position: absolute;
  width: 22px;
  height: 2px;
  background-color: #0d3893;
  display: block;
  content: '';
  cursor: pointer;
  -webkit-transition: .2s;
  transition: .2s;
}

#nav_open span:nth-of-type(1) {
  top: 0;
}

#nav_open span:nth-of-type(2) {
  top: 10px;
}

#nav_open span:nth-of-type(3) {
  bottom: 0;
}

#nav_check:checked~#nav_open span:nth-of-type(1) {
  width: 100%;
  -webkit-transform: translateY(8px) rotate(-45deg);
  transform: translateY(8px) rotate(-45deg);
}

#nav_check:checked~#nav_open span:nth-of-type(2) {
  opacity: 0;
}

#nav_check:checked~#nav_open span:nth-of-type(3) {
  width: 100%;
  -webkit-transform: translateY(-12px) rotate(45deg);
  transform: translateY(-12px) rotate(45deg);
}

#nav_check:checked~.sp_nav_inner {
  opacity: 1;
  -webkit-transform: rotateX(0deg);
  transform: rotateX(0deg);
}

.sp_nav_inner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: rotateX(90deg);
  transform: rotateX(90deg);
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transition: .2s;
  transition: .2s;
  background-color: #fff;
  padding: 0 0 58px;
  z-index: 8888;
  scrollbar-width: none;
}

.sp_nav_inner::-webkit-scrollbar {
  display: none;
}

.sp_nav_inner > .logo {
  width: 46%;
  margin: 14px 0 14px 3%;
}

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

.sp_nav_inner nav ul {
  border-bottom: solid 1px #c4d0e9;
}

.sp_nav_inner nav ul li {
  border-top: solid 1px #c4d0e9;
}

.sp_nav_inner nav ul li a {
  font-weight: 700;
  color: #0d3893;
  display: block;
  padding: 18px 26px;
  position: relative;
}

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

.sp_nav_inner .contact_btn {
  width: 90%;
  margin: 36px auto 0;
}

.sp_nav_inner .contact_btn img {
  width: 100%;
  height: auto;
}

.header_wrap .pc_nav {
  display: none;
}

/*****TOP page*****/
/**MV**/
.mv_wrap {
  width: 100%;
  position: relative;
}

.mv_wrap .logo {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -5% 0 0 -24%;
  width: 48%;
}

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

.mv_wrap .mv {
  width: 100%;
}

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

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

#about .section_inner {
  padding: 36px 0 68px;
}

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

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

#about .section_inner .main {
  width: 90%;
  margin: 0 auto;
}

#about .section_inner .main .text {
  margin-top: 28px;
}

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

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

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

#about .section_inner .more_btn {
  width: 90%;
  margin: 38px auto 0;
}

#about .section_inner .more_btn a {
  display: block;
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.5em;
  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;
  margin-top: -7px;
  right: 6px;
  top: 50%;
  width: 20px;
  height: 14px;
  background-image: url(../images/arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
}

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

#sevice .section_inner {
  width: 90%;
  margin: 0 auto;
  padding: 36px 0 56px;
}

#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: 1.7rem;
  line-height: 1.5em;
  font-weight: 700;
  letter-spacing: .1em;
  color: #000;
  display: block;
  margin-top: 6px;
}

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

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

#sevice .section_inner .photo_wrap .photo:first-of-type {
  width: 100%;
  margin-bottom: 14px;
}

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

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

#sevice .section_inner .service_list {
  margin-top: 32px;
}

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

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

#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 .more_btn {
  width: 100%;
  margin: 46px auto 0;
}

#sevice .section_inner .more_btn a {
  display: block;
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.5em;
  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;
  margin-top: -7px;
  right: 6px;
  top: 50%;
  width: 20px;
  height: 14px;
  background-image: url(../images/arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
}

/**代表者ご挨拶**/
#message .section_inner {
  padding: 36px 0 48px;
}

#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: 1.7rem;
  line-height: 1.5em;
  font-weight: 700;
  letter-spacing: .1em;
  color: #000;
  display: block;
  margin-top: 6px;
}

#message .section_inner .main {
  width: 90%;
  margin: 34px auto 0;
}

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

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

#message .section_inner .main .text {
  width: 100%;
  margin-top: 24px;
}

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

#message .section_inner .more_btn {
  width: 90%;
  margin: 38px auto 0;
}

#message .section_inner .more_btn a {
  display: block;
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.5em;
  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;
  margin-top: -7px;
  right: 6px;
  top: 50%;
  width: 20px;
  height: 14px;
  background-image: url(../images/arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
}

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

.page_title_wrap .page_title {
  width: 90%;
  margin: 0 auto;
  padding: 67px 0;
}

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

.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: 90%;
  margin: 10px auto 0;
}

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

.bread_crumb ul li {
  font-size: 0.875rem;
  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: 90%;
  margin: 0 auto;
  padding-bottom: 48px;
}

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

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

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

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

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

.sub_page .section_inner .two_column {
  margin-top: 38px;
}

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

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

.sub_page .section_inner .two_column > .photo {
  width: 100%;
  margin-top: 38px;
}

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

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

.sub_page .section_inner .three_column {
  margin-top: 68px;
}

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

.sub_page .inner_box .photo {
  width: 100%;
  margin-top: 38px;
}

.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%;
  margin-top: 32px;
  border-top: solid 1px #c4d0e9;
}
.sub_page .section_inner .base_table th {
  display: block;
  text-align: left;
  padding: 14px 12px 0;
  font-weight: 700;
}
.sub_page .section_inner .base_table td {
  display: block;
  border-bottom: solid 1px #c4d0e9;
  padding: 8px 12px 14px;
  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: 90%;
  margin: 46px 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: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 .signature {
  text-align: right;
}

/*お問い合わせ*/
.contact_table {
  width: 100%;
  border: solid 1px #c4d0e9;
  margin-top: 36px;
}
.contact_table th {
  display: block;
  background-color: #f2f6ff;
  text-align: left;
  padding: 20px 18px;
  font-weight: 700;
  vertical-align: middle;
}
.contact_table th span {
  color: #f00;
}
.contact_table td {
  display: block;
  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: 86%;
  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: 86%;
  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: 86%;
  line-height: 1.7em;
  font-weight: 700;
  background-color: #efefef;
  margin: 46px auto 0;
  padding: 16px 20px;
  text-align: center;
}
.contact_info2 {
  text-align: center;
  line-height: 1.7em;
}

.contact_info2 span {
  color: #f00;
}

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

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

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: 90%;
  margin: 0 auto;
  padding: 38px 0 52px;
}

footer .footer_info .left {
  width: 100%;
  margin-top: 40px;
}

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

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

footer .footer_info .left .address {
  margin-top: 10px;
  line-height: 1.5em;
  color: #fff;
}

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

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

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

.pc_only {
  display: none;
}