@charset "UTF-8";
/*----------------------------------------------------------
 Reset
------------------------------------------------------------*/
body, div, section, article, aside, nav,
h1, h2, h3, h4, h5, h6,
span, time, figure, figcaption,
p, blockquote, pre, address, code,
dl, dt, dd, ol, ul, li,
fieldset, form, legend, button,
table, tbody, thead, tfoot, tr, th, td {
  margin: 0;
  padding: 0;
  line-height: 1.5;
  word-break: break-all;
}

header, main, aside, footer, section {
  display: block;
}

h1, h2, h3, h4, h5, h6, th, td, small {
  font-size: 100%;
}

ul, ol {
  list-style: none;
}

img {
  border: 0;
  vertical-align: bottom;
  max-width: 100%;
}

table {
  border-collapse: collapse;
}

input,
select {
  vertical-align: middle;
}

em {
  font-style: normal;
}

button {
  background: none;
  border: none;
}

input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}

/*----------------------------------------------------
	setting
----------------------------------------------------*/
.footer, .page-header, .index .section:nth-child(odd), .top-system-detail {
  background: #0256a6;
  background: linear-gradient(to right, #0256a6 0%, #1c7fde 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0256a6', endColorstr='#1c7fde',GradientType=1 );
}

.top-system {
  background: #e9a5a5;
  background: linear-gradient(to right, #e9a5a5 0%, #b8c1c0 25%, #65c0e0 50%, #aea2db 75%, #81c1d9 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e9a5a5', endColorstr='#81c1d9',GradientType=1 );
}

/*
  mixin
*/
/*----------------------------------------------------
	basic
----------------------------------------------------*/
body {
  min-width: 1080px;
  color: #000;
  font-size: 16px;
  font-size: 1rem;
  font-family: 'Noto Sans JP', "メイリオ", Meiryo, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", "Lucida Grande", "Lucida Sans Unicode", Arial, Verdana, sans-serif;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  body {
    min-width: 0;
    font-size: 14px;
    font-size: 0.875rem;
  }
}

@media screen and (max-width: 768px) {
  html, body {
    height: 100%;
  }
}

a:link {
  color: #2f315b;
  text-decoration: none;
}
a:visited {
  color: #2f315b;
}
a:hover {
  color: #2f315b;
}
a:active {
  color: #0455b8;
}

br[data-show="sp"] {
  display: none;
}
@media screen and (max-width: 768px) {
  br[data-show="sp"] {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  br[data-show="pc"] {
    display: none;
  }
}

p {
  margin-bottom: 1em;
}

/*----------------------------------------------------
	layout
----------------------------------------------------*/
/*----------------------------------------------------
	header
----------------------------------------------------*/
.header {
  position: relative;
  display: grid;
  grid-template-columns: 1fr minmax(auto, 1340px) 1fr;
  grid-template-rows: auto;
  display: -ms-grid;
  -ms-grid-columns: 1fr 1320px 1fr;
  -ms-grid-rows: auto;
  align-items: center;
  padding: 28px;
  background: #fff;
  box-shadow: 0px 5px 15px -5px rgba(0, 0, 0, 0.45);
  z-index: 1;
}
.header.-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  z-index: 100;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1340px;
  width: 100%;
  margin-left: auto;
  grid-column: 2;
  grid-row: 1;
  -ms-grid-column: 2;
  -ms-grid-row: 1;
  font-size: 18px;
  font-size: 1.125rem;
}
.header__logo {
  max-width: 302px;
  min-width: 151px;
  width: 25.1666666667vw;
  flex-shrink: 0;
}
.header-nav {
  position: relative;
  margin: 0 auto;
}
.header__tel {
  grid-column: 3;
  grid-row: 1;
  -ms-grid-column: 3;
  -ms-grid-row: 1;
}
.header__tel a {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  margin-left: 50px;
  border: 1px solid #000;
  background: #fff;
  line-height: 1;
  font-size: 18px;
  font-size: 1.125rem;
}
.header__tel a:before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  margin-right: 13px;
  background: url(../img/icon/tel.png) no-repeat;
  background-size: contain;
}
@media screen and (max-width: 1920px) {
  .header {
    grid-template-columns: 1fr minmax(auto, 1340px) max-content;
  }
}
@media screen and (max-width: 1460px) {
  .header__logo {
    margin-bottom: 5px;
  }
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .header-inner .nav {
    margin-left: auto;
  }
}
@media screen and (max-width: 1150px) {
  .header-inner {
    font-size: 14px;
    font-size: 0.875rem;
    font-size: clamp(14px, 1.3333333333vw, 16px);
  }
}
@media screen and (max-width: 1150px) and (max-width: 768px) {
  .header-inner {
    font-size: clamp(14px, 2.6666666667vw, 16px);
  }
}
@media screen and (max-width: 1150px) {
  .header-inner .nav-list li {
    padding: 0 2.5vw;
  }
}
@media screen and (max-width: 768px) {
  .header {
    display: flex;
    padding: 15px;
  }
  .header-inner {
    display: block;
  }
  .header__tel {
    display: none;
  }
}

/*----------------------------------------------------
	nav
----------------------------------------------------*/
.nav {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 1;
}
.nav-title {
  display: none;
}
.nav-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-list li {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 30px;
}
.nav-list li:last-child {
  padding-right: 0;
}
.nav-list li:before, .nav-list li:after {
  position: absolute;
  top: calc(50% - 4px);
  right: 0;
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  background: #0256a6;
}
.nav-list li:after {
  top: calc(50% + 4px);
}
.nav-list li:last-child:before, .nav-list li:last-child:after {
  display: none;
}
.nav-list li a {
  transition: .5s;
}
.nav-list li a:hover {
  opacity: .7;
}
@media screen and (max-width: 768px) {
  .nav {
    position: static;
  }
  .nav-title {
    position: absolute;
    right: 15px;
    top: 15px;
    display: block;
    width: 34px;
    padding-top: 20px;
    color: #0256a6;
    font-size: 8px;
  }
  .nav-title span {
    position: absolute;
    display: block;
    width: 30px;
    height: 2px;
    left: 1px;
    background: #0256a6;
    transition: .5s;
  }
  .nav-title span:nth-of-type(1) {
    top: 0;
  }
  .nav-title span:nth-of-type(2) {
    top: 8px;
  }
  .nav-title span:nth-of-type(3) {
    top: 16px;
  }
  .nav-title.-active span:nth-of-type(1) {
    top: 8px;
    transform: rotate(45deg);
  }
  .nav-title.-active span:nth-of-type(2) {
    opacity: 0;
  }
  .nav-title.-active span:nth-of-type(3) {
    top: 8px;
    transform: rotate(-45deg);
  }
  .nav-list {
    position: absolute;
    top: 45px;
    display: block;
    width: calc(100% + 30px);
    margin: 15px -15px -15px;
    background: #fff;
  }
  .nav-list li {
    display: block;
    padding: 0 !important;
    border-top: 1px solid #0256a6;
  }
  .nav-list li:before, .nav-list li:after {
    display: none;
  }
  .nav-list li a {
    display: block;
    padding: 10px 15px;
  }
}

/*----------------------------------------------------
	main
----------------------------------------------------*/
/*----------------------------------------------------
	2column layout
----------------------------------------------------*/
.column-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 50px;
}
.column-wrap .main {
  width: 720px;
  margin-right: 45px;
  padding-top: 0;
}
.column-wrap .aside {
  width: 235px;
  padding-top: 13px;
}
.column-wrap .aside-title {
  margin-bottom: 35px;
  padding-left: 20px;
  border-left: 5px solid #000;
  font-size: 27px;
  font-size: 1.6875rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .column-wrap {
    /* ---------------------------SP */
    display: block;
    padding-top: 10px;
  }
  .column-wrap .main,
  .column-wrap .aside {
    width: auto;
  }
  .column-wrap .main {
    margin: 0 0 50px;
  }
  .column-wrap .aside {
    padding: 0;
  }
  .column-wrap .aside-title {
    margin-bottom: 20px;
    padding-left: 10px;
    border-left: 2px solid #000;
    font-size: 20px;
    font-size: 1.25rem;
  }
}

/*----------------------------------------------------
	footer
----------------------------------------------------*/
.footer {
  padding: 45px 0 20px;
  color: #fff;
  text-align: center;
}
.footer__tel {
  margin-top: calc(12px - (((24px * 1.5) - 24px) / 2));
  margin-bottom: calc(20px - (((24px * 1.5) - 24px) / 2));
  font-size: 24px;
  font-size: 1.5rem;
}
.footer__tel a {
  color: #fff;
}
.footer__address {
  margin-bottom: calc(40px - (((1rem * 1.5) - 1rem) / 2));
}
.footer .copyright {
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (max-width: 768px) {
  .footer .copyright {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}

/*----------------------------------------------------
	0.basic
----------------------------------------------------*/
.is-left {
  text-align: left;
}

.is-center {
  text-align: center;
}

.is-right {
  text-align: right;
}

/* extend */
.column-wrap, .contents, .page-header-detail, .topicpath, .result {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0% 5.223880597% 0% 5.223880597%;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .column-wrap, .contents, .page-header-detail, .topicpath, .result {
    width: auto;
  }
}

.section, .top-profile, .top-menu, .top-system, .work-header {
  padding: 90px 0;
}
.section p, .top-profile p, .top-menu p, .top-system p, .work-header p {
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .section, .top-profile, .top-menu, .top-system, .work-header {
    padding: 40px 0;
  }
}

/* box */
.page-header {
  display: flex;
  flex-direction: column;
  padding-top: calc(90px - (((36px * 1.5) - 36px) / 2));
  padding-bottom: calc(80px - (((36px * 1.5) - 36px) / 2));
}
.page-header .topicpath {
  order: 1;
}
.page-header .title-l1 {
  order: 2;
}
.page-header-detail {
  order: 3;
  display: flex;
  justify-content: space-between;
  margin-top: 80px;
  padding: 0;
}
.page-header-img {
  flex-shrink: 0;
  margin-right: 40px;
}
.page-header-img img {
  border: 1px solid #fff;
}
.page-header-text {
  color: #fff;
}
.page-header-text__title {
  margin-bottom: calc(40px - (((36px * 1.5) - 36px) / 2));
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 500;
}
.page-header-text__title2 {
  margin-bottom: calc(12px - (((24px * 1.5) - 24px) / 2));
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
}
p + .page-header-text__title2 {
  margin-top: calc(30px - (((24px * 1.5) - 24px) / 2));
}
.page-header-text .tel {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 600;
}
.page-header-text .tel span {
  font-size: 34px;
  font-size: 2.125rem;
}
@media screen and (max-width: 768px) {
  .page-header {
    padding: 0% 3.6458333333% 0% 3.6458333333%;
    padding-top: calc(50px - (((24px * 1.5) - 24px) / 2));
    padding-bottom: calc(40px - (((24px * 1.5) - 24px) / 2));
  }
  .page-header-detail {
    display: block;
    margin-top: 40px;
  }
  .page-header-img {
    margin: 0 0 20px;
  }
  .page-header-text {
    color: #fff;
  }
  .page-header-text__title {
    margin-bottom: calc(20px - (((20px * 1.5) - 20px) / 2));
    font-size: 24px;
    font-size: 1.5rem;
  }
  .page-header-text__title2 {
    margin-bottom: calc(12px - (((18px * 1.5) - 18px) / 2));
    font-size: 18px;
    font-size: 1.125rem;
  }
  p + .page-header-text__title {
    margin-top: calc(40px - (((20px * 1.5) - 20px) / 2));
  }
  .page-header-text .tel {
    font-size: 18px;
    font-size: 1.125rem;
    font-weight: 600;
  }
  .page-header-text .tel span {
    font-size: 24px;
    font-size: 1.5rem;
  }
}

.topicpath {
  width: 100%;
  margin-top: -50px;
  margin-bottom: 40px;
  padding: 0;
  font-size: 14px;
  font-size: 0.875rem;
}
.topicpath ol {
  display: flex;
}
.topicpath ol li:after {
  content: ">";
  margin: 0 10px;
  color: #fff;
}
.topicpath ol li a {
  color: #fff;
  text-decoration: underline;
}
.topicpath ol li a:hover {
  text-decoration: none;
}
.topicpath ol li:last-child:after {
  display: none;
}
.topicpath ol li:last-child a {
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .topicpath {
    margin-top: -30px;
    margin-bottom: 20px;
    font-size: 12px;
    font-size: 0.75rem;
  }
}

.section.-bg {
  background: url(../img/share/bg_section.jpg) no-repeat;
  background-size: cover;
}

.contents .section {
  padding-top: 0;
}

.index .section:nth-child(odd) {
  color: #fff;
}
.index .section:nth-child(even) {
  background: #fff;
}
.index .section .contents {
  display: flex;
  justify-content: space-between;
  padding: 0;
}
.index .section-text__title {
  margin-bottom: calc(30px - (((36px * 1.5) - 36px) / 2));
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 500;
}
.index .section__img {
  width: 53.43283582089552%;
  margin-right: 60px;
  flex-shrink: 0;
  box-sizing: border-box;
  border: 1px solid #fff;
}
@media screen and (max-width: 768px) {
  .index .section .contents {
    display: block;
    padding: 0% 5.223880597% 0% 5.223880597%;
  }
  .index .section-text__title {
    margin-bottom: calc(20px - (((20px * 1.5) - 20px) / 2));
    font-size: 20px;
    font-size: 1.25rem;
  }
  .index .section__img {
    width: auto;
    margin: 0 0 20px;
  }
}

.column, .column-2 {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -20px;
}
.column-item {
  margin: 0 20px 40px;
}
.column-item__title {
  margin-bottom: calc(15px - (((24px * 1.5) - 24px) / 2));
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: normal;
}
.column-2 .column-item {
  width: calc(100% / 2 - 40px);
}
@media screen and (max-width: 768px) {
  .column, .column-2 {
    display: block;
    margin: 0;
  }
  .column-item {
    margin: 0 0 20px;
  }
  .column-item__title {
    margin-bottom: calc(15px - (((20px * 1.5) - 20px) / 2));
    font-size: 20px;
    font-size: 1.25rem;
  }
  .column-2 .column-item {
    width: auto;
  }
}

/* タイトル */
.title-l1 {
  font-size: 36px;
  font-size: 2.25rem;
  color: #fff;
  text-align: center;
}
.title-l1 span {
  display: inline-block;
  padding-bottom: calc(18px - (((36px * 1.5) - 36px) / 2));
  border-bottom: 9px solid #fff;
}
@media screen and (max-width: 768px) {
  .title-l1 {
    font-size: 24px;
    font-size: 1.5rem;
  }
  .title-l1 span {
    padding-bottom: calc(10px - (((24px * 1.5) - 24px) / 2));
    border-bottom-width: 4px;
  }
}

.title-l2 {
  margin-bottom: calc(60px - (((30px * 1.5) - 30px) / 2));
  font-size: 30px;
  font-size: 1.875rem;
  color: #000;
  text-align: center;
}
.title-l2 span {
  display: inline-block;
  padding-bottom: calc(12px - (((30px * 1.5) - 30px) / 2));
  border-bottom: 9px solid #000;
}
@media screen and (max-width: 768px) {
  .title-l2 {
    font-size: 20px;
    font-size: 1.25rem;
  }
  .title-l2 span {
    padding-bottom: calc(8px - (((20px * 1.5) - 20px) / 2));
    border-bottom-width: 4px;
  }
}

/* リスト */
.list-ul {
  margin-bottom: 2em;
}
.list-ul li {
  padding-left: 1em;
}
.list-ul li:before {
  content: "・";
  margin-left: -1em;
}

.list-ol {
  margin-bottom: 2em;
}
.list-ol li {
  counter-increment: entry-ol;
  margin-bottom: 10px;
  padding-left: 1em;
}
.list-ol li:before {
  content: counter(entry-ol);
  margin-right: .2em;
  margin-left: -.8em;
}

/* table */
.table {
  width: 66%;
  background: #fff;
  border-top: 1px solid #000;
  border-left: 1px solid #000;
}
.table th, .table td {
  min-width: 200px;
  padding: 20px;
  padding-top: calc(20px - (((1rem * 1.5) - 1rem) / 2));
  padding-bottom: calc(20px - (((1rem * 1.5) - 1rem) / 2));
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  text-align: center;
  font-weight: normal;
}
.table th:first-child {
  background: #eef6fb;
}
.table.-t-left th, .table.-t-left td {
  text-align: left;
}
.table.-t-left th:first-child {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .table {
    width: 100%;
    font-size: 12px;
    font-size: 0.75rem;
  }
  .table th, .table td {
    min-width: 0;
    padding: 10px;
  }
  .table th {
    white-space: nowrap;
  }
}

/* btn */
.btn, .btn--f {
  margin-top: 50px;
  text-align: center;
}
.btn a, .btn--f a {
  position: relative;
  display: inline-block;
  min-width: 253px;
  max-width: 100%;
  padding-top: calc(15px - (((1rem * 1.5) - 1rem) / 2));
  padding-bottom: calc(15px - (((1rem * 1.5) - 1rem) / 2));
  border: 1px solid #0256a6;
  color: #0256a6;
  box-sizing: border-box;
  text-align: center;
  transition: 0.3s ease-in-out;
}
.btn a:before, .btn--f a:before {
  position: absolute;
  right: -6px;
  bottom: -6px;
  content: "";
  display: block;
  width: 70px;
  height: 24px;
  border-right: 1px solid #0256a6;
  border-bottom: 1px solid #0256a6;
  box-sizing: border-box;
  z-index: 1;
}
.btn a:after, .btn--f a:after {
  position: absolute;
  right: 15px;
  content: ">";
}
.btn a:hover, .btn--f a:hover {
  background: #0256a6;
  color: #fff;
}
.btn--f a {
  border-color: #fff;
  color: #fff;
}
.btn--f a:before {
  border-color: #fff;
}
.btn--f a:hover {
  background: #fff;
  color: #0256a6;
}
@media screen and (max-width: 768px) {
  .btn a, .btn--f a {
    min-width: 80%;
  }
}

/* maps */
.access-address {
  padding: 10px;
  background: #736357;
  color: #fff;
  text-align: center;
  font-size: 23px;
  font-size: 1.4375rem;
}
.access .googlemap {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}
.access .googlemap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .access {
    /* ---------------------------SP */
  }
  .access-address {
    font-size: 18px;
    font-size: 1.125rem;
  }
  .access .googlemap {
    height: 300px;
  }
}

.googlemap {
  position: relative;
  width: 100%;
  padding-top: 15.625%;
}
.googlemap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
@media screen and (max-width: 768px) {
  .googlemap {
    padding-top: 50%;
  }
}

.framewrap {
  position: relative;
  width: 100%;
}
.framewrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.js-fadeItem {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s;
}

.pagetop {
  position: fixed;
  right: 0;
  bottom: 100px;
  z-index: 100;
}
.pagetop a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  color: #fff;
  background: #0256a6;
  border: 1px solid #fff;
  font-size: 12px;
  font-size: 0.75rem;
}
.pagetop a:before {
  content: "";
  display: block;
  margin-bottom: 10px;
  border: 10px solid transparent;
  border-bottom-color: #fff;
}
@media screen and (max-width: 768px) {
  .pagetop a {
    width: 40px;
    height: 40px;
    font-size: 0;
  }
  .pagetop a:before {
    border-width: 8px;
  }
}

/*----------------------------------------------------
	トップページ
----------------------------------------------------*/
.-top .page {
  display: flex;
  flex-direction: column;
}
.-top .page .mainvisual {
  order: 1;
}
.-top .page .header {
  order: 2;
}
.-top .page .main {
  order: 3;
}
.-top .page .googlemap {
  order: 4;
}
.-top .page .footer {
  order: 5;
}

@keyframes mvTextBg {
  0% {
    opacity: 0;
    width: 0;
  }
  30% {
    opacity: 1;
    width: 100%;
  }
}
@keyframes mvTextImg {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.mainvisual {
  position: relative;
  width: 100%;
  padding-top: 35.677%;
  background: url(../img/top/mainvisual.jpg) center no-repeat;
  background-size: cover;
  overflow: hidden;
}
.mainvisual-text {
  position: absolute;
  bottom: -35px;
  left: 47%;
  transform: translateX(-47%);
  height: 360px;
}
.mainvisual-text img {
  position: relative;
  z-index: 1;
  margin: 54px 0 0 67px;
  animation: mvTextImg 1.5s linear;
}
.mainvisual-text:before {
  position: absolute;
  content: "";
  display: block;
  width: 582px;
  height: 360px;
  background: url(../img/top/mv_text_bg.png) no-repeat;
  animation: mvTextBg 1.5s cubic-bezier(0.11, 0.5, 0.5, 0.84);
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .mainvisual {
    height: 300px;
    padding: 0;
  }
  .mainvisual-text {
    position: absolute;
    bottom: 0;
    left: auto;
    right: 0;
    transform: translateX(0px);
    width: 100%;
    height: auto;
    padding-top: 61.8556%;
  }
  .mainvisual-text img {
    position: absolute;
    width: 225px;
    margin: auto;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
  }
  .mainvisual-text:before {
    left: 12%;
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    width: 80%;
    height: 80%;
    max-width: 290px;
    max-height: 180px;
    background-size: auto 100%;
  }
}

.top-profile {
  position: relative;
  padding: 0;
  background: url(../img/top/bg_prof.png) repeat-y;
  background-size: 100% auto;
}
.top-profile .contents {
  display: flex;
  align-items: center;
  padding-left: 0;
}
.top-profile-text {
  order: 2;
  font-size: 18px;
  font-size: 1.125rem;
  color: #fff;
  text-align: center;
}
.top-profile-text__title {
  font-size: 36px;
  font-size: 2.25rem;
  margin-bottom: calc(45px - (((36px * 1.5) - 36px) / 2));
}
.top-profile-text__title span {
  font-size: 24px;
  font-size: 1.5rem;
}
.top-profile-text p {
  line-height: 2;
}
.top-profile__img {
  order: 1;
  width: 59.6666666667vw;
  max-width: 716px;
  margin-right: 50px;
  padding: 80px 0;
}
.top-profile__img img {
  border: 1px solid #fff;
}
@media screen and (max-width: 768px) {
  .top-profile {
    padding: 20px 0 50px;
    background: linear-gradient(to right, #0256a6 0%, #1c7fde 100%);
  }
  .top-profile .contents {
    flex-direction: column;
    padding: 0% 5.223880597% 0% 5.223880597%;
  }
  .top-profile-text {
    font-size: 14px;
    font-size: 0.875rem;
  }
  .top-profile-text__title {
    font-size: 26px;
    font-size: 1.625rem;
    margin-bottom: calc(30px - (((26px * 1.5) - 26px) / 2));
  }
  .top-profile-text__title span {
    font-size: 18px;
    font-size: 1.125rem;
  }
  .top-profile__img {
    width: auto;
    max-width: 100%;
    margin: 0 0 20px;
    padding: 0;
  }
}

.top-menu {
  background: url(../img/top/bg_menu.jpg) center bottom no-repeat;
  background-size: 100% auto;
}
.top-menu-list {
  display: flex;
  justify-content: space-between;
}
.top-menu-list-section {
  display: flex;
  flex-direction: column;
  width: calc(100% / 3 - 8px);
  padding: 0 45px 30px;
  background: #fff;
  border: 1px solid #0256a6;
  box-sizing: border-box;
}
.top-menu-list-section img {
  max-width: calc(100% + 90px);
  margin: 0 -45px 25px;
}
.top-menu-list-section__title {
  margin-bottom: calc(25px - (((18px * 1.5) - 18px) / 2));
  font-size: 18px;
  font-size: 1.125rem;
  text-align: center;
}
.top-menu-list-section p {
  margin-bottom: calc(35px - (((1rem * 1.5) - 1rem) / 2));
}
.top-menu-list-section .btn, .top-menu-list-section .btn--f {
  margin-top: auto;
}
@media screen and (max-width: 768px) {
  .top-menu {
    background-size: cover;
  }
  .top-menu-list {
    display: block;
  }
  .top-menu-list-section {
    width: auto;
    margin: 0 0 20px;
    padding: 0 20px 30px;
  }
  .top-menu-list-section img {
    max-width: calc(100% + 40px);
    margin: 0 -20px 20px;
  }
}

.top-system {
  position: relative;
  box-shadow: 0px 5px 15px -5px rgba(0, 0, 0, 0.35);
  z-index: 1;
}
.top-system:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/share/bg_dot.png);
  z-index: 0;
}
.top-system-detail {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 50px 56px 60px;
  color: #fff;
  box-sizing: border-box;
}
.top-system__title {
  width: 100%;
  font-size: 30px;
  font-size: 1.875rem;
  margin-bottom: calc(45px - (((30px * 1.5) - 30px) / 2));
  text-align: center;
}
.top-system__text {
  width: calc(100% - 590px);
}
.top-system .youtube {
  width: 540px;
  margin-right: 50px;
  flex-shrink: 0;
}
.top-system .youtube .framewrap {
  padding-top: 56.4814%;
}
@media screen and (max-width: 768px) {
  .top-system-detail {
    display: block;
    padding: 30px 20px;
  }
  .top-system__title {
    font-size: 18px;
    font-size: 1.125rem;
    margin-bottom: calc(20px - (((18px * 1.5) - 18px) / 2));
  }
  .top-system__text {
    width: auto;
  }
  .top-system .youtube {
    width: 100%;
    margin: 0 0 20px;
  }
}

/*----------------------------------------------------
	業務案内
----------------------------------------------------*/
.-work.-inner .page-header-text__title {
  margin-bottom: calc(12px - (((26px * 1.5) - 26px) / 2));
  font-size: 26px;
  font-size: 1.625rem;
}
.-work.-inner .page-header-text p {
  margin-bottom: calc(40px - (((1rem * 1.5) - 1rem) / 2));
}
.-work.-inner .page-header-text p:last-child {
  margin-bottom: 0;
}
.-work.-inner .page-header.-work04 .page-header-detail {
  display: block;
  max-width: 1340px;
  width: 100%;
  text-align: center;
}
.-work.-inner .page-header.-work04 .page-header-img {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: 50px 0 0;
}
.-work.-inner .page-header.-work04 .page-header-img > div {
  width: calc(100% / 2 - 50px);
}
.-work.-inner .page-header.-work04 .page-header-img > div .framewrap {
  padding-top: 64.5161%;
}
@media screen and (max-width: 768px) {
  .-work.-inner .page-header-text__title {
    margin-bottom: calc(12px - (((20px * 1.5) - 20px) / 2));
    font-size: 20px;
    font-size: 1.25rem;
  }
  .-work.-inner .page-header-text p {
    margin-bottom: calc(20px - (((1rem * 1.5) - 1rem) / 2));
  }
  .-work.-inner .page-header.-work04 .page-header-detail {
    max-width: none;
  }
  .-work.-inner .page-header.-work04 .page-header-img {
    display: block;
    margin: 30px 0 0;
  }
  .-work.-inner .page-header.-work04 .page-header-img > div {
    width: auto;
    margin-bottom: 20px;
  }
  .-work.-inner .page-header.-work04 .page-header-img > div .framewrap {
    padding-top: 64.5161%;
  }
}

.work-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: url(../img/share/bg_section.jpg) no-repeat;
  background-size: cover;
}
.work-header .table {
  margin: 0 auto;
}

.work-flow {
  padding-top: 105px;
}
.work-flow-section {
  position: relative;
  margin-bottom: 130px;
}
.work-flow-section:after {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  display: block;
  height: 130px;
  border-right: 9px dashed #1778d4;
  box-sizing: border-box;
}
.work-flow-section:last-child:after {
  display: none;
}
.work-flow-section__title {
  position: relative;
  padding: 20px;
  font-size: 24px;
  font-size: 1.5rem;
  background: #1778d4;
  color: #fff;
  text-align: center;
}
.work-flow-section__title span {
  position: relative;
  z-index: 1;
}
.work-flow-section__title .num {
  position: absolute;
  top: -55%;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 97px;
  height: 97px;
  padding-top: 17px;
  background: #1778d4;
  border-radius: 100%;
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 1;
  box-sizing: border-box;
  z-index: 0;
}
.work-flow-section-text {
  padding: 20px;
  border: 5px solid #1778d4;
  text-align: center;
}
.work-flow-section-text dl {
  width: 80%;
  margin: 0 auto;
  text-align: left;
}
.work-flow-section-text dl dt {
  padding: 16px 25px;
  padding-top: calc(16px - (((1rem * 1.5) - 1rem) / 2));
  padding-bottom: calc(16px - (((1rem * 1.5) - 1rem) / 2));
  background: #f1efef;
}
.work-flow-section-text dl dd {
  padding: 16px 25px;
}
@media screen and (max-width: 768px) {
  .work-flow {
    padding-top: 50px;
  }
  .work-flow-section {
    margin-bottom: 70px;
  }
  .work-flow-section:after {
    height: 70px;
    border-right: 4px dashed #1778d4;
  }
  .work-flow-section__title {
    padding: 15px 20px 10px;
    font-size: 20px;
    font-size: 1.25rem;
  }
  .work-flow-section__title .num {
    display: block;
    width: 60px;
    height: 60px;
    padding-top: 10px;
    font-size: 24px;
    font-size: 1.5rem;
  }
  .work-flow-section-text {
    text-align: left;
  }
  .work-flow-section-text dl {
    width: 100%;
  }
  .work-flow-section-text dl dt {
    padding: 10px 20px;
  }
  .work-flow-section-text dl dd {
    padding: 10px 20px;
  }
}

.work-feature {
  display: flex;
  flex-wrap: wrap;
}
.work-feature-section {
  width: calc(100% / 2);
  padding: 40px 0;
  border-bottom: 1px solid #0860b3;
  box-sizing: border-box;
}
.work-feature-section p:last-child {
  margin-bottom: 0;
}
.work-feature-section:nth-child(odd) {
  padding-right: 40px;
  border-right: 1px solid #0860b3;
}
.work-feature-section:nth-child(even) {
  padding-left: 40px;
}
.work-feature-section:nth-of-type(1), .work-feature-section:nth-of-type(2) {
  padding-top: 0;
}
.work-feature-section:nth-last-of-type(1), .work-feature-section:nth-last-of-type(2) {
  padding-bottom: 0;
  border-bottom: 0;
}
.work-feature-section__title {
  margin-bottom: calc(20px - (((24px * 1.5) - 24px) / 2));
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .work-feature {
    display: block;
  }
  .work-feature-section {
    width: auto;
    padding: 20px;
  }
  .work-feature-section:nth-child(odd) {
    padding-right: 20px;
    border-right: 0;
  }
  .work-feature-section:nth-child(even) {
    padding-left: 20px;
  }
  .work-feature-section:nth-of-type(1), .work-feature-section:nth-of-type(2) {
    padding-top: 20px;
  }
  .work-feature-section:nth-last-of-type(1), .work-feature-section:nth-last-of-type(2) {
    padding-bottom: 20px;
    border-bottom: 1px solid #0860b3;
  }
  .work-feature-section:last-child {
    border-bottom: 0;
  }
  .work-feature-section__title {
    margin-bottom: calc(10px - (((20px * 1.5) - 20px) / 2));
    font-size: 20px;
    font-size: 1.25rem;
  }
}

/*----------------------------------------------------
	施工実績
----------------------------------------------------*/
.result {
  padding-top: 90px;
  padding-bottom: 90px;
}
.result-list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  counter-reset: counter 6;
  margin: 0;
  padding-bottom: 35px;
  border-bottom: 1px solid #0256a6;
}
.result-list li {
  counter-increment: counter -1;
  width: calc(100% / 3 - 60px);
  margin: 0 30px 30px;
}
.result-list li span {
  display: block;
  padding-top: calc(20px - (((1rem * 1.5) - 1rem) / 2));
  padding-bottom: calc(20px - (((1rem * 1.5) - 1rem) / 2));
  color: #fff;
  background: #333;
  text-align: center;
  box-sizing: border-box;
}
.result-list li span:before {
  content: counter(counter,decimal-leading-zero) "：";
}
.result-credit {
  text-align: center;
}
.result-credit > dt {
  display: inline-block;
  padding: 15px 40px;
  margin-bottom: calc(28px - (((1rem * 1.5) - 1rem) / 2));
  padding-top: calc(15px - (((1rem * 1.5) - 1rem) / 2));
  padding-bottom: calc(15px - (((1rem * 1.5) - 1rem) / 2));
  background: #0256a6;
  color: #fff;
}
.result-credit > dd .btn, .result-credit > dd .btn--f {
  margin-top: 20px;
}
.result-credit > dd dl {
  display: flex;
  justify-content: center;
}
.result-credit > dd dl dd + dt {
  margin-left: 2em;
}
@media screen and (max-width: 768px) {
  .result {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .result-list {
    padding-bottom: 35px;
  }
  .result-list li {
    width: auto;
    margin: 0 0 20px;
  }
  .result-list li span {
    padding-top: calc(10px - (((1rem * 1.5) - 1rem) / 2));
    padding-bottom: calc(10px - (((1rem * 1.5) - 1rem) / 2));
  }
  .result-credit > dd dl {
    flex-wrap: wrap;
  }
  .result-credit > dd dl dt {
    width: 42%;
    text-align: right;
  }
  .result-credit > dd dl dd {
    width: 58%;
    text-align: left;
  }
  .result-credit > dd dl dd + dt {
    margin: 0;
  }
}

/*----------------------------------------------------
	会社案内
----------------------------------------------------*/
.profile-table {
  width: 100%;
}
.profile-table th, .profile-table td {
  padding: 20px 60px;
  padding-top: calc(20px - (((1rem * 1.5) - 1rem) / 2));
  padding-bottom: calc(20px - (((1rem * 1.5) - 1rem) / 2));
  background: #e9e7e7;
  border-bottom: 30px solid #fff;
}
.profile-table th {
  font-weight: normal;
  border-right: 2px solid #fff;
  text-align: center;
  vertical-align: top;
}
.profile-table td *:last-child {
  margin-bottom: 0;
}
.profile-table td dl dt {
  float: left;
  clear: left;
  margin-right: 1em;
}
.profile-table td .tel {
  font-weight: bold;
  font-size: 18px;
  font-size: 1.125rem;
  color: #000;
}
@media screen and (max-width: 768px) {
  .profile-table th, .profile-table td {
    display: block;
    width: 100%;
    padding: 10px 20px;
    box-sizing: border-box;
    border-bottom: 15px solid #fff;
  }
  .profile-table tr {
    display: block;
    width: 100%;
  }
  .profile-table th {
    border-bottom: 2px solid #fff;
  }
  .profile-table td {
    font-size: 13px;
    font-size: 0.8125rem;
  }
  .profile-table td dl dt {
    float: none;
    display: inline-block;
  }
  .profile-table td dl dd {
    display: inline-block;
  }
}

/*----------------------------------------------------
	FAQ
----------------------------------------------------*/
.faq-list dt, .faq-list dd {
  border: 10px solid #f9d4ae;
}
.faq-list dt {
  padding: 12px 15px;
  padding-top: calc(12px - (((1rem * 1.5) - 1rem) / 2));
  padding-bottom: calc(12px - (((1rem * 1.5) - 1rem) / 2));
  border-bottom: 0;
  background: #fdf3e8;
  font-size: 20px;
  font-size: 1.25rem;
  border-radius: 4px 4px 0 0;
}
.faq-list dt span:before {
  display: inline-block;
  content: "Q.";
  margin-right: .5em;
  color: #ff0000;
}
.faq-list dd {
  margin-bottom: 50px;
  padding: 20px 30px;
  padding-top: calc(20px - (((1rem * 1.5) - 1rem) / 2));
  padding-bottom: calc(20px - (((1rem * 1.5) - 1rem) / 2));
  border-top: 0;
  background: #fff;
  border-radius: 0 0 4px 4px;
}
@media screen and (max-width: 768px) {
  .faq-list dt, .faq-list dd {
    border-width: 5px;
  }
  .faq-list dt {
    font-size: 16px;
    font-size: 1rem;
  }
  .faq-list dd {
    margin-bottom: 20px;
    padding: 20px 20px;
    padding-top: calc(20px - (((1rem * 1.5) - 1rem) / 2));
    padding-bottom: calc(20px - (((1rem * 1.5) - 1rem) / 2));
  }
}

/*----------------------------------------------------
	お問合せ
----------------------------------------------------*/
.form {
  padding: 0 80px 80px;
  background: #fdf3e8;
}
.form-table {
  width: 100%;
  margin-bottom: 40px;
}
.form-table th, .form-table td {
  padding: 40px 0;
  border-bottom: 1px solid #ccc;
}
.form-table th {
  width: 35%;
  padding-top: 45px;
  font-weight: normal;
  vertical-align: top;
}
.form-table .required {
  display: inline-block;
  margin-left: .5em;
  padding: 3px 10px;
  background: #ff0000;
  color: #fff;
  font-size: 12px;
  font-size: 0.75rem;
}
.form-parts--text, .form-parts--textarea {
  width: 100%;
  padding: 15px 10px;
  padding-top: calc(15px - (((1rem * 1.5) - 1rem) / 2));
  padding-bottom: calc(15px - (((1rem * 1.5) - 1rem) / 2));
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}
.form-parts--textarea {
  height: 340px;
}
.form-btn {
  text-align: center;
}
.form-btn--submit {
  width: 410px;
  padding: 15px 40px;
  background: #f9d4ae;
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .form {
    padding: 0 20px 40px;
  }
  .form-table tr, .form-table th, .form-table td {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
  }
  .form-table th {
    padding: 20px 0;
  }
  .form-table td {
    padding: 0 0 20px;
    border-bottom: 1px solid #ccc;
  }
  .form-table .required {
    font-size: 10px;
    font-size: 0.625rem;
  }
  .form-btn--submit {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    font-size: 1.125rem;
  }
}

/*# sourceMappingURL=common.css.map */
