@charset "UTF-8";
/* media queri
------------------------------*/
/* color
------------------------------*/
/* common
------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.4rem;
  font-family: "BIZ UDPゴシック", "BIZ UDPGothic";
  letter-spacing: 1px;
  color: #333;
}

.inner {
  width: calc(100% - 80px);
  max-width: 1280px;
  padding-inline: 40px;
  margin: 0 auto;
}

.inner.is-small {
  max-width: 1060px;
}

h3 {
  font-weight: 900;
  margin-bottom: 1em;
}

p {
  line-height: 1.6;
  margin-bottom: 1em;
}

p:last-of-type {
  margin-bottom: 0;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.4s;
}

a:hover {
  opacity: 0.9;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

dl {
  margin-bottom: 1em;
}
dl dt {
  font-size: 16px;
  font-weight: 600;
}
dl dd {
  font-size: 14px;
  margin-left: 1em;
  margin-bottom: 6px;
}

table th {
  white-space: nowrap;
  text-align: left;
  vertical-align: text-top;
  padding: 5px 20px 5px 0;
}
table td {
  padding: 5px 0 5px 20px;
}

/* header
------------------------------*/
/*-- navi --*/
#header {
  display: block;
  width: 100%;
  /*-- navi --*/
}
#header .header_wrap {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
}
#header .logo_summary {
  display: flex;
  align-items: center;
}
#header .logo_summary h1.logo {
  flex-shrink: 0;
  width: 60px;
  height: auto;
  margin-right: 16px;
}
#header .logo_summary .summary_pc {
  font-size: 1.2rem;
  margin-bottom: 0;
}
#header .logo_summary .summary_sp {
  display: none;
}
#header .info {
  margin-left: auto;
}
#header .info .fbox {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  margin-top: 1em;
}
#header .info .fbox .tel {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.4rem;
  margin-bottom: 0;
  margin-right: 20px;
  font-weight: 900;
}
#header .info .fbox .tel span {
  color: #2a5e87;
  font-size: 2.2rem;
}
#header .info .fbox .mail a {
  display: inline-block;
  background-color: #2a5e87;
  color: #fff;
  text-align: center;
  padding: 4px 10px;
  border-radius: 4px;
  text-decoration: none;
}
#header .info .fbox .mail a::before {
  content: "\f0e0";
  font-family: "Font Awesome 5 free";
  font-weight: 900;
  color: #fff;
  margin-right: 10px;
}
#header .info .fbox .mail a:hover {
  background-color: #3f8ec4;
}
#header .nav_wrap {
  background-color: #2a5e87;
  width: 100%;
  color: #fff;
}
#header .openbtn {
  display: none;
}
#header #g_nav ul {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  list-style-type: none;
}
#header #g_nav a {
  display: block;
  text-align: center;
  text-decoration: none;
  padding: 20px;
  font-size: 14px;
  font-weight: 600;
  border-right: 1px solid #fff;
}
#header #g_nav a:hover {
  background-color: #3f8ec4;
}
#header #g_nav li:first-of-type a {
  border-left: 1px solid #fff;
}
#header #g_nav span {
  display: block;
  font-weight: 400;
  font-size: 10px;
  margin-top: 8px;
}
#header #g_nav .tel {
  display: none;
}

/* main
------------------------------*/
#main {
  line-height: 1.5;
}
#main .main_visual {
  position: relative;
  width: 100%;
  height: 500px;
}
#main .main_visual .txt {
  width: calc(100% - 80px);
  max-width: 900px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  z-index: 1;
}
#main .main_visual .txt h2 span {
  display: block;
  font-size: 2rem;
  font-family: "ヒラギノ明朝", serif;
  margin-top: 8px;
  opacity: 0.6;
}
#main .main_visual .main_slide {
  width: 100%;
  height: 500px;
}
#main .main_visual .main_slide img {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
}
#main .sub_visual {
  position: relative;
  width: 100%;
  height: 200px;
}
#main .sub_visual img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
#main .sub_visual h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 80px);
  max-width: 980px;
  color: #fff;
  text-align: center;
  z-index: 1;
  font-size: 3rem;
  font-weight: 400;
}
#main .sub_visual::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 200px;
  background-color: rgba(50, 50, 50, 0.5);
  z-index: 0;
}
#main .breadcrumb ul {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  list-style-type: none;
  margin-top: 10px;
  margin-bottom: 10px;
}
#main .breadcrumb li {
  font-size: 12px;
  font-weight: 900;
  margin-left: 1em;
}
#main .breadcrumb li:after {
  content: ">";
}
#main .breadcrumb li:last-of-type:after {
  display: none;
}
#main .breadcrumb li:first-of-type:before {
  content: "\f015";
  font-family: "Font Awesome 5 free";
  font-weight: 900;
}
#main .breadcrumb a {
  padding: 10px;
  text-decoration: none;
}
#main section {
  padding-top: 60px;
  padding-bottom: 60px;
}
#main .ttl_main {
  position: relative;
  font-size: 2.6rem;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 40px;
  padding-bottom: 4px;
  color: #2a5e87;
  border-bottom: 2px solid #3f8ec4;
}
#main .ttl_main::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 2px;
  width: 20%;
  background: #2a5e87;
}
#main .ttl_und {
  border-bottom: 1px solid #7f7f7f;
  padding-bottom: 4px;
}
#main .grid_4to2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background-color: #7f7f7f;
  justify-items: stretch;
}
#main .grid_4to2 .item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#main .grid_4to2 .item img {
  width: 100%;
  height: 320px;
  -o-object-fit: cover;
     object-fit: cover;
}
#main .grid_4to2 .item h2, #main .grid_4to2 .item p, #main .grid_4to2 .item a {
  padding-inline: 40px;
}
#main .grid_4to2 .item h2 {
  font-size: 1.8rem;
  font-weight: 400;
  margin-top: 80px;
  margin-bottom: 40px;
}
#main .grid_4to2 .item p {
  font-size: 1.5rem;
  margin-bottom: 40px;
}
#main .grid_4to2 .item a {
  font-size: 1.4rem;
  text-decoration: none;
  background-color: #000;
  color: #fff;
  padding: 10px 20px;
  margin-top: auto;
  margin-bottom: 80px;
}
#main .grid_3to1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 30px;
  -moz-column-gap: 30px;
       column-gap: 30px;
  align-items: stretch;
}
#main .grid_3to1 .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px;
}
#main .grid_2to1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 40px;
  -moz-column-gap: 40px;
       column-gap: 40px;
  align-items: stretch;
}
#main .grid_2to1 .item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* footer
------------------------------*/
#footer {
  background-color: #2a5e87;
  padding-top: 80px;
}
#footer #gotop {
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: 50px;
  height: 50px;
  border: 1px solid #fff;
  color: #fff;
  background-color: #2a5e87;
  display: none;
}
#footer #gotop::before {
  content: "\f102";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
}
#footer .fnav {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
#footer .fnav dl {
  list-style-type: none;
  color: #fff;
}
#footer .fnav dl dt {
  font-size: 14px;
  margin-bottom: 1em;
}
#footer .fnav dl dd {
  font-size: 12px;
  margin-bottom: 1em;
  margin-left: 0;
}
#footer .fnav dl dd:before {
  content: "─";
  margin-right: 4px;
}
#footer .fnav ul {
  list-style-type: none;
  color: #fff;
  font-weight: 900;
}
#footer .fnav ul li {
  margin-bottom: 1em;
  line-height: 1.5;
}
#footer .copy {
  background-color: #000;
  color: #fff;
  padding: 30px;
  margin-top: 80px;
  text-align: center;
}
#footer .copy .wrap {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
#footer .copy .wrap .item {
  padding-inline: 20px;
}
#footer .copy .wrap .item span {
  font-size: 10px;
}
#footer .copy .rights {
  font-size: 10px;
  margin-top: 1em;
}

/* company
------------------------------*/
.table_company {
  width: 100%;
  border-collapse: collapse;
  vertical-align: text-top;
}
.table_company th {
  width: 20%;
  padding: 16px;
  border-bottom: 1px solid #2a5e87;
}
.table_company td {
  width: 80%;
  padding: 16px;
  border-bottom: 1px solid #7f7f7f;
}

/* service
------------------------------*/
#service .grid_3to1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 20px;
}
#service .grid_3to1 .item {
  border: 1px solid #7f7f7f;
  border-radius: 4px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#service .grid_3to1 .item img {
  width: 100%;
  max-width: 80px;
  height: auto;
  display: block;
  margin-bottom: 20px;
}
#service .grid_3to1 .item h3 {
  text-align: center;
}

/* results
------------------------------*/
#results .menu_tab {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  border-bottom: 1px solid #2a5e87;
}
#results .menu_tab li a {
  font-size: 1.4rem;
  display: block;
  color: #fff;
  font-weight: 600;
  background: #2a5e87;
  margin-right: 2px;
  margin-top: 2px;
  padding: 10px 20px;
}
#results .menu_tab li.active a {
  background: #3f8ec4;
}
#results .area {
  display: none; /*はじめは非表示*/
  opacity: 0; /*透過0*/
  padding-top: 20px;
}
#results .area.is-active {
  display: block;
  animation-name: displayAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
}
@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#results .results_img_wrap {
  padding: 1em;
  background-color: #deeafa;
}
#results .results_img_wrap .results_img {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  -moz-column-gap: 10px;
       column-gap: 10px;
  row-gap: 10px;
  list-style-type: none;
}
#results .results_img_wrap .results_img li {
  background-color: #fff;
  padding: 8px;
  border-radius: 4px;
}
#results .results_img_wrap .results_img li a {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 150px;
}
#results .results_img_wrap .results_img li img {
  width: 100%;
  height: 100%;
  max-height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
}

/* form
------------------------------*/
form {
  font-size: 16px;
}
form input[type=text],
form textarea {
  display: block;
  width: 100%;
  padding: 8px;
  margin-bottom: 0.5em;
  border-bottom: 1px solid;
}

/* class
------------------------------*/
.pc_only {
  display: inherit;
}

.sp_only {
  display: none;
}

/*-- background --*/
.bg_blue {
  background-color: #2a5e87;
}

.bg_gray {
  background-color: #7f7f7f;
}

.bg_dgray {
  background-color: #394737;
}

.bg_lgray {
  background-color: #f5f6f7;
}

/*-- text --*/
.fontb {
  font-weight: bold;
}

.font20 {
  font-size: 2rem;
}

.font40 {
  font-size: 4rem;
}

.txt_c {
  text-align: center;
}

.blue {
  color: #2a5e87;
}

.white {
  color: #fff;
}

/*-- btn --*/
.btn_black {
  display: inline-block;
  background-color: #000;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  margin-top: auto;
}

.btn_blue {
  display: inline-block;
  background-color: #2a5e87;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  margin-top: auto;
}

.btn_white {
  display: inline-block;
  background-color: #fff;
  color: #000;
  padding: 10px 20px;
  text-decoration: none;
  margin-top: auto;
}

/*-- gap --*/
.gap {
  margin-bottom: 60px;
}

.gap_large {
  margin-bottom: 80px;
}

.mb1 {
  margin-bottom: 1em;
}

.mb2 {
  margin-bottom: 2em;
}

.mt1 {
  margin-top: 1em;
}

.mt_gap {
  margin-top: 60px;
}

.pd_gap {
  padding-top: 60px;
  padding-bottom: 60px;
}

.pd1 {
  padding: 1em;
}

.pd2 {
  padding: 2em;
}

.pd0 {
  padding: 0 !important;
}/*# sourceMappingURL=style.css.map */