@charset "UTF-8";
@import "base.css";
@import "fonts.css";
@import "normalize.css";
/*@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&family=M+PLUS+Rounded+1c:wght@300;400;500;700;800;900&family=Roboto:wght@100;300;400;500;700;900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;500;700&display=swap');*/
/*==========================================================================*/
/*//////////////////////////////////////////////////////////////////////////*/
/*//////                                                              //////*/
/*//////                  © Branding Technology inc.                  //////*/
/*//////                                                              //////*/
/*//////////////////////////////////////////////////////////////////////////*/
/*                                                                          */
/*    base.css  --> スタイルの初期設定を行うため、変更しないで下さい。      */
/*    fonts.css --> フォントの初期設定を行うため、変更しないで下さい。      */
/*                                                                          */
/*==========================================================================*/
/*==========================================================================*/
/*                           Common-Setting                                 */
/*==========================================================================*/
/* 基本タグのフォントサイズを指定（12px -> 120% or 1.2em ） */
:root {
  --ff: "Noto Serif JP";
  --fe: "Roboto", sans-serif;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #333333;
}

* {
  padding: 0;
  margin: 0;
}

*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  color: #00244f;
}

h1,
h2,
h3,
h4,
h5,
h6,
input,
button,
textarea,
select,
p,
blockquote,
th,
td,
pre,
address,
li,
dt,
dd {
  font-size: 160%;
  -webkit-text-size-adjust: none;
}

li,
dd,
dt,
th,
td {
  line-height: 1.74em;
}

img {
  max-width: 100%;
}

p {
  line-height: 1.74em;
  margin: 0 0 1.1em;
}

p.img {
  line-height: 1;
}

p:last-child {
  margin-bottom: 0;
}

#wrapper {
  position: relative;
  max-width: 1920px;
  min-width: 1240px;
  margin: 0 auto;
  overflow: hidden;
}

.container {
  position: relative;
  width: 1200px;
  margin: 0 auto;
}

.ovh {
  overflow: hidden;
}

.index img {
  max-height: 100%;
  height: auto;
}

/******************************Header********************************/
[class*=logo] {
  position: relative;
  line-height: 1;
}

[class*=logo] a {
  position: relative;
  display: inline-block;
  line-height: 1;
}

[class*=logo] a img {
  max-width: 100%;
  height: auto;
  max-height: 100%;
}

.linkfull {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 20px;
  background: transparent;
  z-index: 5;
}

.hicon {
  position: relative;
  background: #333333;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 110;
  overflow: hidden;
}

.hamburger {
  position: relative;
  display: flex;
  align-items: center;
  width: 40px;
  height: 13px;
  cursor: pointer;
  z-index: 1;
  padding-top: 14px;
}

.hamburger::before {
  position: relative;
  content: "MENU";
  font-family: var(--fe);
  font-size: 14px;
  top: -24px;
  width: 60px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #fff;
}

.hamburger>span,
.hamburger>span::before,
.hamburger>span::after {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition-duration: 0.25s;
  border-radius: 10px;
}

.hamburger>span::before {
  content: "";
  top: -8px;
}

.hamburger>span::after {
  content: "";
  top: 8px;
}

.open-nav {
  overflow: hidden;
}

.open-nav .hamburger>span {
  transform: rotate(45deg);
}

.open-nav .hamburger>span::before {
  top: 0;
  transform: rotate(0);
}

.open-nav .hamburger>span::after {
  top: 0;
  transform: rotate(90deg);
}

.animated .effect_char {
  opacity: 1;
  transform: translateX(0px);
}

.effect_char {
  transition: all 2s;
  opacity: 0;
  transform: translateX(30px);
}

/*******************************************************************/
#header {
  display: flex;
  position: fixed;
  align-items: flex-start;
  justify-content: space-between;
  top: 0;
  z-index: 100;
  width: 100%;
}

#header .show-sp {
  display: none;
}

.hlogo {
  position: absolute;
  top: 0;
  transition: all 0.3s linear;
  left: 0;
  background-color: #003e7f;
  width: 280px;
  z-index: 2;
  animation: fadeInDown 0.3s ease-in-out;
}

.hlogo img.show-pc { max-width: 204px; height: auto;}

h1 {
  position: absolute;
  left: calc(100% + 10px);
  top: 10px;
  display: block;
  font-size: 10px;
  color: #000;
  font-weight: lighter;
  display: -webkit-box;
  letter-spacing: 0.1em;
  /* -webkit-line-clamp: 1; */
  /* -webkit-box-orient: vertical; */
  /* overflow: hidden; */
  width: max-content;
  z-index: 3;
  line-height: 1.2em;
}

.hlogo a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 1;
  transition: all 0.3s linear;
  position: relative;
  margin: 0 0 0;
  height: 230px;
}

.hlogo a img {
  max-width: 100%;
  max-height: 100%;
  transition: all 0.3s linear;
  filter: brightness(0) invert(1);
}

.hlogo .show-sp {
  height: auto;
  width: auto;
}

.only1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hcontact {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  z-index: 1;
  height: 100px;
  background-color: #fff;
  width: 100%;
}

.hcontact li {
  line-height: 1em;
  position: relative;
  height: 100%;
}

.hcontact li a {
  text-decoration: none;
  position: relative;
}

.hcontact-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
  margin-right: 25px;
}

.hcontact-phone .num {
  position: relative;
  z-index: 1;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.2em;
  font-family: var(--fe);
  color: #003e7f;
  padding-left: 36px;
  background-image: url(../images/icon-phone.png);
  background-size: 26px;
  background-position: left top 8px;
  background-repeat: no-repeat;
}

.hcontact-phone .loca {
  display: block;
  position: relative;
  font-size: 16px;
  color: #333333;
  line-height: 1em;
  margin-right: 3px;
  margin-bottom: 10px;
  letter-spacing: 0.08em;
}

.hcontact-info {
  position: relative;
  display: block;
  cursor: default;
  height: 100%;
  padding: 13px 30px 13px 23px;
  background-color: #e1ecf1;
  font-size: 14px;
  color: #333333;
  line-height: 1.6em;
  letter-spacing: 0.053em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hcontact-info .clr {
  color: #003d7e;
  font-weight: 600;
}

.hcontact-web {
  position: relative;
  padding: 13px 43px 11px 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #3b7dc4;
  height: 100%;
  flex-direction: column;
}

.hcontact-web::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, #d7d7d7, #ffffff);
  mix-blend-mode: multiply;
  opacity: 0.72;
  top: 0;
  left: 0;
  z-index: 1;
}

.hcontact-web .icon {
  /* padding-bottom: 36px; */
  position: relative;
  display: inline-block;
  color: #fff;
  font-weight: 200;
  font-size: 24px;
  letter-spacing: 0.2em;
  font-family: var(--ff);
  /* background-image: url(../images/icon-web.png);
  background-size: 20px;
  background-position: center bottom 1px;
  background-repeat: no-repeat; */
  z-index: 2;
}

.hcontact-web .hc-tt {
  font-size: 14px;
  color: #fff;
  text-align: center;
  display: block;
  margin-top: 10px;
  line-height: 1.3;
}

/*******************************************************************/
.imvs {
  position: relative;
  margin-top: 100px;
}

.imvs::before {
  position: absolute;
  content: "";
  width: 100%;
  left: 0;
  bottom: -2px;
  height: calc(40% + 2px);
  background-color: #003d7e;
}

.imvs-img {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.imvs-slide {
  position: relative;
  line-height: 0;
  width: 1680px;
  max-height: 680px;
  overflow-y: hidden;
}

.imvs-slide-item {
  position: relative;
}

.imvs-slide-item::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #002e4e;
  mix-blend-mode: multiply;
  opacity: 0.18;
}

.imvs-slide-item img {
  max-width: 100%;
  max-height: 100%;
}

.imvs-ballon {
  position: absolute;
  top: 56px;
  right: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 174px;
  height: 174px;
  background-color: #fff275;
  border-radius: 100%;
  overflow: hidden;
}

.imvs-ballon::after {
  position: absolute;
  content: "";
  width: 40px;
  height: 1px;
  background-color: #003e7f;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 52%;
}

.imvs-ballon>span {
  display: block;
  position: relative;
  color: #003e7f;
  font-family: var(--ff);
  z-index: 2;
  line-height: 1em;
}

.imvs-ballon .num {
  font-size: 30px;
  margin-bottom: 30px;
  font-weight: 300;
}

.imvs-ballon .txt {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.imvs-ballon::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, #d7d7d7, #ffffff);
  mix-blend-mode: multiply;
  opacity: 0.72;
  top: 0;
  left: 0;
  z-index: 1;
}

.imvs-content {
  position: absolute;
  max-width: 1000px;
  left: 50%;
  transform: translateX(-50%);
  bottom: -19px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.imvs-title {
  position: relative;
  text-align: center;
  width: fit-content;
  display: flex;
  flex-direction: column;
}

.imvs-title .txt:nth-child(1) .effect_char:nth-child(7) {
  margin-right: -0.6em;
  margin-left: -0.3em;
}

.imvs-title>span {
  position: relative;
  display: inline-block;
  text-align: center;
  background-color: #003e7f;
  color: #fff;
  font-family: var(--ff);
  white-space: nowrap;
  font-size: 36px;
  padding: 10px 23px 14px;
  margin-bottom: 22px;
  letter-spacing: 0.27em;
  font-weight: 300;
  border-radius: 2px;
}

.imvs-title>span:last-child {
  margin-bottom: 0;
}

.imvs-logo {
  position: relative;
  line-height: 0;
  margin: 65px 0 70px;
  text-align: center;
}

.imvs-logo img {
  max-width: 100%;
  max-height: 100%;
}

.imvs-txt {
  position: relative;
  font-size: 36px;
  letter-spacing: 0.4em;
  color: #fff;
  line-height: 1em;
  font-family: var(--fe);
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
  display: block;
  white-space: nowrap;
}

.iList {
  position: relative;
  padding: 30px 0 30px;
  background-color: #e1ecf1;
}

.iList-wrap {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0 0 170px;
}

.imvs-btn {
  position: relative;
  left: 0 !important;
  transition: all 0.3s ease-in-out;
  width: 265px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background-color: #3c91e6;
  overflow: hidden;
  z-index: 0;
  margin-right:50px;
}

.imvs-btn::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, #d7d7d7, #ffffff);
  mix-blend-mode: multiply;
  opacity: 0.72;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}

.imvs-btn .icon {
  position: relative;
  color: #fff;
  line-height: 1.2em;
  font-weight: 200;
  font-family: var(--ff);
  padding: 5px 10px 5px 48px;
  background-image: url(../images/icon-parking.png);
  background-repeat: no-repeat;
  background-position: left top 17px;
  background-size: 36px;
  font-size: 24px;
  display: inline-block;
}

.imvs-btn .icon .min {
  display: inline-block;
  font-size: 20px;
}

/*******************************************************************/
.hmenu {
  position: relative;
  background-color: #003d7e;
  padding: 52px 0 52px;
}

.navi {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.navi>li {
  position: relative;
  width: 240px;
  text-align: center;
}

.navi>li::before {
  position: absolute;
  content: "";
  left: 0;
  transform: translateY(-50%);
  top: 50%;
  width: 1px;
  height: 60px;
  background-color: #fff;
}

.navi>li:last-child::after {
  position: absolute;
  content: "";
  right: 0;
  transform: translateY(-50%);
  top: 50%;
  width: 1px;
  height: 60px;
  background-color: #fff;
}

.navi>li>a,
.navi>li>label {
  position: relative;
  text-decoration: none;
  text-align: center;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  flex-direction: column;
}

.navi>li>a .ens,
.navi>li>label .ens {
  position: relative;
  font-family: var(--fe);
  display: block;
  line-height: 1.1em;
  color: #64e9ee;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.2em;
  font-weight: 500;
  margin-bottom: 2px;
}

.navi>li>a .jps,
.navi>li>label .jps {
  position: relative;
  font-family: var(--ff);
  display: block;
  color: #fff;
  font-size: 18px;
  font-weight: 200;
  letter-spacing: 0.1em;
}

.navi>li label {
  cursor: default;
  transition: all 0.3s ease-in-out;
}

.navi-lv2 {
  position: absolute;
  z-index: 10;
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
}

.navi-lv2 li {
  position: relative;
  line-height: 1;
  margin-bottom: 4px;
}

.navi-lv2 li::before {
  margin-bottom: 0;
}

.navi-lv2 .navi-item:nth-child(3) li:first-child a {
  font-family: "M PLUS Rounded 1c", sans-serif;
  background-color: #fb5329;
}

.navi-lv2 li a {
  text-decoration: none;
  padding: 10px 14px 10px;
  color: #fff;
  white-space: nowrap;
  position: relative;
  display: block;
  background-color: #00244f;
  color: #fff;
  font-family: var(--ff);
  border-radius: 4px;
  font-size: 15px !important;
}

/*******************************************************************/
.iNews {
  position: relative;
  width: 540px;
  height: 150px;
  background-color: #e1ecf1;
  padding: 12px 20px 12px 20px;
  display: flex;
  flex:1;
}

.iNews-title {
  position: relative;
  width: 110px;
  margin-top: 11px;
  padding-left: 7px;
}

.iNews-title .ens {
  position: relative;
  display: block;
  color: #003e7f;
  font-family: var(--fe);
  text-transform: uppercase;
  font-weight: 400;
  font-size: 24px;
  letter-spacing: 0.2em;
  margin-bottom: 29px;
}

.iNews-title .link {
  position: relative;
  text-decoration: none;
  display: inline-block;
  font-size: 10px;
  color: #003e7f;
  letter-spacing: 0.1em;
  font-weight: 500;
  padding-left: 20px;
  margin-left: 2px;
}

.iNews-title .link::before {
  position: absolute;
  content: "";
  background-color: #003e7f;
  width: 13px;
  height: 13px;
  border-radius: 100%;
  left: 0;
  top: 0;
}

.iNews-title .link::after {
  position: absolute;
  content: "";
  padding: 2px;
  border: solid #fff;
  border-width: 1px 1px 0 0;
  transform: rotate(45deg);
  left: 3px;
  top: 4px;
}

.iNews-list {
  position: relative;
  width: calc(100% - 100px);
  padding-left: 20px;
  margin-top: 4px;
}

.iNews-list li {
  position: relative;
  display: flex;
  padding: 5px 0 5px;
  border-bottom: 1px solid #d5e0e5;
}

.iNews-list li a {
  position: relative;
  text-decoration: none;
  display: block;
  font-size: 14px;
}

.iNews-list li .date {
  position: relative;
  display: inline-block;
  color: #3b7dc4;
  font-size: 1em;
  margin-right: 7px;
  font-weight: 400;
  font-family: var(--fe);
}

.iNews-list li .link {
  position: relative;
  font-size: 1em;
  display: inline-block;
  color: #333333;
  letter-spacing: 0.01em;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/*******************************************************************/
.iBnr {
  position: relative;
  text-align: center;
  padding: 60px 0 176px;
}

.iBnr-list li:nth-child(2) {
  margin-top: 41px;
  margin-bottom: 30px;
}

.iBnr-list li a {
  display: inline-block;
  line-height: 0;
  transition: all 0.3s ease-in-out;
}

/*******************************************************************/
.iConcept {
  position: relative;
  padding: 0 0 80px;
}

.iConcept::before {
  position: absolute;
  background-color: #f3f8fc;
  width: 100%;
  left: 0;
  bottom: 0;
  height: calc(100% - 94px);
  content: "";
}

.iConcept-wrap {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
}

.iConcept-title {
  position: relative;
  font-size: 10px;
  padding: 40px 40px 46px 120px;
  background-color: #003d7e;
}

.iConcept-title .engs {
  position: relative;
  font-family: var(--fe);
  font-weight: 400;
  color: #fff;
  font-size: 3em;
  letter-spacing: 0.18em;
  display: inline-block;
  line-height: 1em;
  padding-bottom: 25px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.iConcept-title .engs::before {
  position: absolute;
  content: "";
  width: 40px;
  height: 1px;
  background-color: #fff;
  bottom: 0;
  left: 3px;
}

.iConcept-title .jps {
  display: block;
  position: relative;
  font-family: var(--ff);
  color: #ffffff;
  font-size: 4.8em;
  line-height: 1.64em;
  letter-spacing: 0.14em;
}

.iConcept-title .clr {
  color: #64e9ee;
}

.iConcept-desc {
  position: relative;
  padding: 54px 270px 50px 122px;
}

.iConcept-img {
  width: 494px;
  position: relative;
  z-index: 2;
  margin-left: -67px;
}

.iConcept-img .img {
  position: relative;
  z-index: 1;
  line-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.iConcept-img .img::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 81%;
  bottom: 0;
  /*background-color: #c6d3dc;*/
  background-color: transparent !important;
  left: 0;
  z-index: -1;
}

.iConcept-img .img img {
  max-width: 100%;
  max-height: 100%;
  margin-left: -10px;
}

.iConcept-name {
  position: absolute;
  bottom: 105px;
  right: 18px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.iConcept-name .ens {
  position: relative;
  font-size: 48px;
  line-height: 1.1em;
  display: flex;
  margin-bottom: 12px;
  margin-right: 10px;
}

.iConcept-name .ens>span {
  position: relative;
  font-size: 1em;
  text-transform: uppercase;
  color: #003e7f;
  letter-spacing: 0.178em;
  font-family: var(--fe);
  white-space: nowrap;
  font-weight: 300;
  display: block;
  writing-mode: vertical-lr;
  text-orientation: mixed;
}

.iConcept-name .jps {
  position: relative;
  font-family: var(--ff);
  color: #333333;
  font-size: 24px;
  letter-spacing: 0.13em;
}

.iConcept-content {
  position: relative;
  width: 894px;
  z-index: 1;
}

.iConcept-btn {
  position: relative;
  margin-top: 40px;
  z-index: 3;
}

.iConcept-btn a {
  margin-right: 0px;
}

/*******************************************************************/
.iBtn {
  position: relative;
  display: inline-block;
  text-decoration: none;
  min-width: 250px;
  padding: 18px 16px 19.62px 16px;
  text-align: center;
  color: #ffffff;
  font-family: var(--ff);
  line-height: 1.4em;
  background-color: #004996;
  z-index: 1;
  font-size: 16px;
  letter-spacing: 0.1em;
  transition: all 0.3s ease 0s;
}

.iBtn::before {
  position: absolute;
  content: "";
  width: 9px;
  height: 10px;
  border: solid #fff;
  border-width: 1.5px 1.5px 0 0;
  transform: translateY(-50%) rotate(45deg);
  right: 10px;
  top: 50%;
}

/*******************************************************************/
.iPoint {
  position: relative;
  padding: 212px 0 0px;
}

.iPoint-row {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 208px;
}

.iPoint-row::before {
  position: absolute;
  content: "";
  width: 240px;
  height: 40%;
  background-color: #c6d3dc;
  pointer-events: none;
  right: 0;
  bottom: 0;
}

.iPoint-row.sen {
  padding-bottom: 212px;
}

.iPoint-row.sen::before {
  content: none;
}

.iPoint-row.sen .iPoint-num {
  right: auto;
  left: 0;
}

.iPoint-row.sen .iPoint-h3 {
  margin-left: auto;
  padding: 41px 33px 42px 120px;
}

.iPoint-row.sen .iPoint-desc::before {
  left: 0;
  right: auto;
}

.iPoint-row.sen .iPoint-desc-wrap {
  max-width: 716px;
  margin-left: auto;
  padding: 52px 50px 80px 28px;
}

.iPoint-img {
  position: relative;
  width: 870px;
  line-height: 0;
  z-index: 2;
}

.iPoint-img img {
  max-width: 100%;
  max-height: 100%;
}

.iPoint-num {
  position: absolute;
  color: #003e7f;
  font-family: var(--fe);
  letter-spacing: 0.08em;
  display: inline-block;
  font-size: 52px;
  font-weight: 400;
  top: -40px;
  line-height: 1em;
  right: -24px;
  text-transform: uppercase;
}

.iPoint-num>span {
  position: relative;
  font-size: 100px;
  margin-left: -12px;
}

.iPoint-content {
  position: relative;
  width: calc(100% - 870px);
  z-index: 1;
  margin-top: 41px;
}

.iPoint-h3 {
  position: relative;
  font-family: var(--ff);
  font-size: 48px;
  letter-spacing: 0.134em;
  padding: 42px 33px 42px 47px;
  color: #fff;
  display: block;
  max-width: 810px;
  background-color: #003d7e;
  line-height: 1.7em;
}

.iPoint-h3 .clr {
  color: #64e9ee;
}

.iPoint-desc {
  position: relative;
}

.iPoint-desc-wrap {
  padding: 50px 50px 82px 57px;
}

.iPoint-desc p {
  max-width: 450px;
}

.iPoint-desc::before {
  position: absolute;
  content: "";
  width: 81vw;
  height: 100%;
  top: 0;
  background-color: #c6d3dc;
  right: 0;
  z-index: -1;
}

.iPoint-btn {
  margin-top: 54px;
}

.iPoint-center {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
}

.iPoint-center::before {
  position: absolute;
  content: "";
  width: 100vw;
  height: calc(86% - 200px);
  bottom: 118px;
  background-color: #c6d3dc;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.iPoint-center .iPoint-img {
  width: 100%;
}

.iPoint-center .iPoint-num {
  text-align: center;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
}

.iPoint-center .iPoint-content {
  max-width: calc(100% - 240px);
  width: 100%;
  margin: -60px auto 0;
  z-index: 2;
}

.iPoint-center .iPoint-h3 {
  width: 100%;
  max-width: 100%;
  text-align: center;
  background-color: #004996;
}

.iPoint-center .iPoint-btn {
  margin-top: 37px;
}

.iPoint-center .iPoint-btn a {
  margin-right: 7px;
}

.iPoint-center .iPoint-desc::before {
  content: none;
}

.iPoint-center .iPoint-desc p {
  max-width: 690px;
}

.iPoint-center .iPoint-desc-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  background-color: #fff;
}

.iPoint-list {
  display: flex;
  position: relative;
  margin-top: 142px;
}

.iPoint-list::before {
  position: absolute;
  content: "";
  width: 100vw;
  height: calc(100% - 160px);
  bottom: 0px;
  background-color: #c6d3dc;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.iPoint-list .iPoint-item {
  position: relative;
  width: 50%;
}

.iPoint-list .iPoint-item:first-child .iPoint-img {
  margin-left: auto;
}

.iPoint-list .iPoint-item:first-child .iPoint-num {
  left: 122px;
}

.iPoint-list .iPoint-item:first-child .iPoint-desc-wrap {
  margin-left: auto;
}

.iPoint-list .iPoint-item:first-child .iPoint-btn a {
  margin-left: 26px;
}

.iPoint-list .iPoint-item:last-child .iPoint-h3 {
  margin-left: auto;
  padding: 40px 40px 42px 83px;
}

.iPoint-list .iPoint-item:last-child .iPoint-desc-wrap {
  padding: 53px 59px 80px 112px;
}

.iPoint-list .iPoint-item:last-child .iPoint-btn a {
  margin-left: 5px;
}

.iPoint-list .iPoint-img {
  width: 720px;
  z-index: 1;
}

.iPoint-list .iPoint-h3 {
  margin-top: -101px;
  max-width: calc(100% - 30px);
  padding: 41px 24px 42px 350px;
  min-height: 327px;
  background-color: #003e7f;
}

.iPoint-list .iPoint-h3 .clr {
  line-height: normal;
}

.iPoint-list .iPoint-h3 .min {
  font-size: 18px;
  letter-spacing: 0.1em;
  margin-left: -0.9em;
}

.iPoint-list .iPoint-num {
  right: auto;
  left: 0;
  top: -51px;
}

.iPoint-list .iPoint-content {
  width: 100%;
  z-index: 2;
}

.iPoint-list .iPoint-desc::before {
  content: none;
}

.iPoint-list .iPoint-desc-wrap {
  max-width: 616px;
  padding: 53px 99px 80px 58px;
}

.iPoint-list .iPoint-desc p {
  max-width: 100%;
}

.iPoint-list .iPoint-btn {
  display: flex;
  justify-content: center;
  margin-top: 49px;
}

/*******************************************************************/
.iMenu {
  position: relative;
  padding: 100px 0 139px;
  background-image: url(../images/img-top-new06.jpg);
}

.iMenu-wrap {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.iMenu h3 {
  margin-bottom: 54px;
}

.iMenu-desc {
  position: relative;
  max-width: 566px;
  margin: 0 auto;
  color:#fff;
}
.iMenu .ih3 .jps{
  color:#fff;
}
.iMenu-list {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin: 50px 0 136px;
}

.iMenu-list li {
  transition: all 0.3s ease-in-out;
  width: 570px;
  position: relative;
}

.iMenu-list li .img {
  position: relative;
  line-height: 0;
}

.iMenu-list li .img img {
  max-width: 100%;
  max-height: 100%;
}

.iMenu-list li::before {
  position: absolute;
  content: "";
  left: -10px;
  right: -10px;
  top: -10px;
  bottom: -10px;
  transition: all 0.3s ease-in-out;
  background-color: transparent;
  border-radius: 6px;
}

.iMenu-btn {
  position: absolute;
  bottom: -53px;
  left: 0;
  max-width: 308px;
  background-color: #003e7f;
  padding: 18px 0px 0px 28px;
  width: 100%;
  z-index: 2;
}

.iMenu-btn::before {
  position: absolute;
  content: "";
  left: -10px;
  right: -10px;
  top: -10px;
  bottom: -10px;
  transition: all 0.3s ease-in-out;
  background-color: transparent;
  border-radius: 6px;
  z-index: -1;
}

.iMenu-btn .iBtn {
  min-width: auto;
  display: block;
  width: 250px;
  margin-left: auto;
  background-color: #000f3f;
}

.iMenu-h4 {
  position: relative;
  font-size: 10px;
  margin-bottom: 39px;
  z-index: 2;
}

.iMenu-h4>span {
  position: relative;
  color: #fff;
  line-height: 1.5em;
  letter-spacing: 0.04em;
  display: block;
  font-family: var(--ff);
}

.iMenu-h4 .max {
  font-size: 3em;
}

.iMenu-h4 .min {
  font-size: 1.6em;
}

.iMenu-bnr a {
  display: inline-block;
  line-height: 0;
  transition: all 0.3s ease-in-out;
}

/*******************************************************************/
.ih3 {
  position: relative;
  text-align: center;
  font-size: 10px;
}

.ih3>span {
  position: relative;
  display: block;
}

.ih3 .ens {
  color: #003e7f;
  font-family: var(--fe);
  font-size: 1.8em;
  letter-spacing: 0.18em;
  font-weight: 400;
  text-transform: uppercase;
  padding-bottom: 18px;
  margin-bottom: 18px;
}

.ih3 .ens::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background-color: #003e7f;
}

.ih3 .jps {
  color: #333333;
  font-size: 3.6em;
  letter-spacing: 0.1em;
  font-family: var(--ff);
  font-weight: 500;
}

@keyframes opa {
  0% {
    opacity: 0.5;
    transition: 0.5s linear;
    transform: translateX(-10%);
  }

  100% {
    opacity: 1;
    transform: translateX(0%);
    z-index: 1;
  }
}

/*******************************************************************/
.iService {
  position: relative;
  margin-top: -62px;
}

.iService-wrap {
  position: relative;
  display: flex;
  align-items: flex-start;
}

.iService-content {
  position: relative;
  width: 1088px;
  z-index: 1;
}

.iService-content .img {
  position: relative;
  line-height: 0;
}

.iService-content .img img {
  max-width: 100%;
  max-height: 100%;
}

.iService-item.active {
  animation: opa 0.3s ease-in-out;
  opacity: 1;
  transform: translateX(0%);
  z-index: 1;
}

.iService-item {
  display: none;
}

.iService-item.active {
  display: block;
}

.iService-desc {
  position: relative;
  background-color: #f3f8fc;
}

.iService-desc.noPosi {
  position: absolute;
  bottom: 0;
  width: calc(50% + 15px);
  right: 0;
  z-index: 1;
}

.iService-desc.noPosi .iService-desc-wrap {
  margin-left: 0;
  padding-top: 100px;
}

.iService-desc-wrap {
  position: relative;
  padding: 57px 190px 83px 52px;
  max-width: 789px;
  margin-left: auto;
}

.iService-list {
  position: relative;
  background-color: #fff;
  margin-left: -137px;
  margin-top: 42px;
  padding: 38px 50px 50px 40px;
  z-index: 2;
  width: 650px;
}

.iService-list::before {
  position: absolute;
  content: "";
  width: 100%;
  left: 100%;
  background-color: #fff;
  height: 100%;
  top: 0;
  z-index: -1;
  pointer-events: none;
}

.iService-list li {
  position: relative;
}

.iService-list li:first-child a {
  padding: 11px 20px 16px 20px;
}

.iService-list li.active {
  position: relative;
}

.iService-list li.active a {
  background-color: #003e7f;
  color: #fff;
}

.iService-list li.active a .max {
  color: #fff;
}

.iService-list li.active a .min {
  color: #fff;
}

.iService-list li.active a::before {
  border: solid #fff;
  border-width: 1px 1px 0 0;
}

.iService-list a {
  text-decoration: none;
  position: relative;
  display: block;
  line-height: 1.4em;
  background-color: #fff;
  border-bottom: 1px solid #003e7f;
  padding: 23px 20px 16px 20px;
}

.iService-list a .max {
  font-size: 30px;
  font-family: var(--ff);
  display: block;
  line-height: 1.4em;
  margin-bottom: 4px;
  color: #003e7f;
}

.iService-list a .min {
  display: block;
  line-height: 1.4em;
  font-size: 19px;
  color: #cccccc;
}

.iService-list a::before {
  position: absolute;
  content: "";
  padding: 14px;
  border: solid #003d7e;
  border-width: 1px 1px 0 0;
  transform: translateY(-50%) rotate(45deg);
  top: 50%;
  right: 20px;
}

/*******************************************************************/

.iLink{
  padding: 70px 0 10px;
}

.iLink .iLink-wrap{
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}




.iFaci {
  position: relative;
  margin-top: 141px;
  background-image: url(../images/iFaci-bg.jpg);
  background-size: cover;
}

.iFaci-wrap {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
}

.iFaci h3 {
  text-align: left;
  margin-bottom: 45px;
}

.iFaci h3 .ens {
  color: #fff;
}

.iFaci h3 .ens::before {
  background-color: #fff;
  left: 0%;
  transform: none;
}

.iFaci h3 .jps {
  color: #fff;
}

.iFaci-title {
  position: relative;
  font-size: 48px;
  color: #fff;
  line-height: 1.6em;
  letter-spacing: 0.15em;
  font-family: var(--ff);
  margin-bottom: 11px;
}

.iFaci-desc p {
  color: #fff;
}

.iFaci-content {
  position: relative;
  width: 50%;
  padding: 78px 0 81px;
}

.iFaci-btn {
  margin-top: 53px;
}

.iFaci-btn a {
  background-color: #fff;
  color: #004996;
}

.iFaci-btn a::before {
  border-color: #004996 #004996 transparent transparent;
}

.iFaci-img {
  position: relative;
  width: 50%;
  margin-top: -81px;
  padding-bottom: 82px;
  margin-left: -41px;
}

.iFaci-img .img2 {
  display: flex;
  justify-content: flex-end;
  margin-top: -160px;
  margin-right: -42px;
}

.iFaci-img [class*=img] {
  line-height: 0;
  position: relative;
}

/*******************************************************************/
.iGreeting {
  position: relative;
  padding: 160px 0 158px;
}

.iGreeting-wrap {
  position: relative;
  display: flex;
  max-width: 1450px;
  margin: 0 auto;
}

.iGreeting-img {
  position: relative;
  width: 50%;
  background-color: #a5b9c6;
  z-index: 1;
  line-height: 0;
}

.iGreeting-img::before {
  position: absolute;
  content: "";
  width: 51%;
  height: 24%;
  background-color: #fff;
  top: 0;
  left: 0;
  z-index: -1;
}

.iGreeting-img::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../images/iGreeting-icon.png);
  background-size: 676px;
  background-position: top left;
  background-repeat: no-repeat;
  right: 71px;
  top: 69px;
  z-index: -1;
}

.iGreeting-img .img {
  max-width: 586px;
  text-align: center;
  z-index: 1;
  margin-top: 43px;
}

.iGreeting-desc p {
  margin-bottom: 1.6em;
}

.iGreeting-btn {
  position: relative;
  display: flex;
  margin-top: 53px;
}

.iGreeting-btn a:first-child {
  margin-right: 41px;
}

.iGreeting-content {
  position: relative;
  width: 50%;
  padding-right: 70px;
  padding-left: 124px;
  margin-top: 20px;
}

.iGreeting h3 {
  text-align: left;
  margin-bottom: 50px;
}

.iGreeting h3 .ens::before {
  left: 0;
  transform: none;
}

/*******************************************************************/
.iCase {
  position: relative;
  padding: 100px 0 80px;
  background-color: #e1ecf1;
}

.iCase-wrap {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.iCase-desc {
  position: relative;
  max-width: 658px;
  margin: 0 auto 53px;
}

.iCase h3 {
  margin-bottom: 54px;
}

.iCase-list {
  position: relative;
  display: flex;
}

.iCase-list li {
  position: relative;
  transition: all 0.3s ease-in-out;
  width: 270px;
  line-height: 1em;
  background-color: #fff;
  margin-right: 40px;
}

.iCase-list li:nth-child(4n) {
  margin-right: 0;
}

.iCase-list li .lk-full{
  z-index: 1;
}

.iCase-post-img {
  position: relative;
  line-height: 0;
  height: 180px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.iCase-post-img p {
  margin-bottom: 0;
}

.iCase-post-img img {
  max-height: 100%;
  width: auto;
}

.iCase-post-content {
  position: relative;
  padding: 20px 0 20px;
}

.iCase-post-btn .iBtn {
  min-width: auto;
  width: 100%;
  padding: 10px 0 10px;
  font-size: 14px;
}

.iCase-post-btn .iBtn::before {
  padding: 3px;
}

.iCase .iCase-list li:hover .iCase-date {
  color: #003e7f;
}

.iCase .iCase-list li:hover .iCase-link {
  color: #333333;
}

.iCase .iCase-list li:hover {
  background-color: transparent;
  box-shadow: none;
  transform: none;
  opacity: 0.8;
}

.iCase .iCase-list li {
  background-color: transparent;
}

.iCase-hd {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.iCase-cate {
  background-color: #002e4e;
  color: #fff;
  display: inline-block;
  padding: 8px 10px 10px 10px;
  text-align: center;
  font-size: 13px;
  line-height: 1em;
  min-width: 90px;
}

.iCase-cate>span {
  position: relative;
  line-height: 1;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.iCase-date {
  position: relative;
  display: block;
  line-height: 1.2em;
  letter-spacing: 0.1em;
  font-size: 12px;
  color: #003e7f;
  font-family: var(--fe);
  font-weight: 500;
  margin-bottom: 1px;

  border-left: 1px solid #002e4e;
  padding-left: 15px;
  height: 31px;
  display: flex;
  align-items: center;
}

.iCase-link {
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 1.6em;
  letter-spacing: 0.1em;
  color: #333333;
  margin-bottom: 28px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: center;
}

.iCase-btn {
  display: flex;
  justify-content: center;
  margin-top: 61px;
}

.iCase-btn a {
  background-color: #002e4e;
  min-width: 320px;
}

.iCase-post-img{
  z-index: 2;
}

.iCase-post-img .twentytwenty-wrapper {
  width: 100%;
}

.iCase-post-img .twentytwenty-wrapper, .twentytwenty-container {
  height: 100% !important;
  max-height:172px;
}

.iCase-post-img .twentytwenty-container img {
  top: auto;
  width: 100%;
  object-fit: contain;
  background-color: #C7D3DC;
}

.iCase-post-img .twentytwenty-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.iCase-post-img img {
  max-width: 100%;
  max-height: 100%;
  flex-shrink: 0;
}

/*******************************************************************/
footer {
  margin-top: 160px;
  position: relative;
}

footer .ft-contact .flogo img{
  filter: brightness(0) invert(1);
}

.ft-contact {
  background-color: #003e7f;
}



.ft-contact-wrap {
  position: relative;
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  height: 150px;
}

.ft-contact-wrap a {
  text-decoration: none;
}

.ft-contact-wrap li {
  position: relative;
}

.ft-contact-wrap li:nth-child(2) {
  margin-left: auto;
}

.ft-contact .flogo {
  position: relative;
  width: 541px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ft-contact .flogo a {
  display: block;
  position: relative;
}

.ft-contact .hcontact-phone {
  margin-right: 80px;
}

.ft-contact .hcontact-phone .num {
  color: #fff;
  background-image: url(../images/icon-phone-w.png);
}

.ft-contact .hcontact-phone .loca {
  color: #fff;
}

.ft-contact .hcontact-web {
  background-color: #3774b6;
  font-size: 24px;
  padding: 20px 40px 20px 49px;
}

.ft-contact .hcontact-web .icon {
  font-size: 1em;
  font-family: var(--ff);
  /* padding-bottom: 40px; */
}

.ft-map {
  position: relative;
  width: 100%;
  height: 436px;
}

.ft-map iframe {
  width: 100%;
  height: 100%;
}

.ft-menu {
  position: relative;
  background-color: #003e7f;
  padding: 58px 0 38px;
}

.ft-navi {
  position: relative;
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
}

.ft-navi>li {
  position: relative;
  line-height: 1em;
}

.ft-navi>li::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background-color: #004996;
  right: 0;
  top: 0;
}

.ft-navi>li:nth-child(1) {
  width: 258px;
}

.ft-navi>li:nth-child(2) {
  padding: 0 20px 0 60px;
  width: 288px;
}

.ft-navi>li:nth-child(3) {
  padding: 0 20px 0 60px;
  width: 340px;
}

.ft-navi>li:last-child {
  padding: 0 20px 0 57px;
}

.ft-navi>li:last-child::before {
  content: none;
}

.ft-navi-list li {
  margin-bottom: 20px;
  position: relative;
  line-height: 1em;
}

.ft-navi a {
  position: relative;
  text-decoration: none;
  color: #fff;
  padding-left: 20px;
  line-height: 1.3em;
  font-size: 14px;
  display: inline-block;
  transition: all 0.3s linear;
}
.ft-navi li.f_bn a {
  padding-left: 0;
}

.ft-navi a::before {
  position: absolute;
  content: "";
  padding: 4px;
  border: solid #fff;
  border-width: 2px 2px 0 0;
  transform: rotate(45deg);
  left: -3px;
  top: 5px;
}

/*******************************************************************/
.fixed-list {
  position: fixed;
  display: flex;
  width: 100%;
  height: 66px;
  bottom: 0;
  left: 0;
  z-index: 50;
}

.fixed-list li {
  position: relative;
  width: 50%;
}

.fixed-list li a {
  text-decoration: none;
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.fixed-list li .icon {
  position: relative;
  color: #fff;
  letter-spacing: 0.05em;
  display: inline-block;
  padding: 5px 0 5px 30px;
  background-size: 22px;
  background-repeat: no-repeat;
  background-position: left top 7px;
  font-size: 18px;
}

.fixed-list .fixed-web {
  padding-bottom: 5px;
}

.fixed-list .fixed-web .icon {
  padding-top: 3px;
  padding-bottom: 0;
}

.fixed-web .fw-tt {
  font-size: 12px;
  color: #fff;
  text-align: center;
  display: block;
  line-height: 1.2;
  margin-top: 2px;
}

.fixed-phone {
  position: relative;
  background-color: #002e4e;
}

.fixed-phone .icon {
  background-image: url(../images/icon-phone-w.png);
}

.fixed-web {
  background-color: #003e7f;
}

.fixed-web .icon {
  background-size: 20px !important;
  background-image: url(../images/icon-web.png);
}

/*******************************************************************/
.copyright {
  position: relative;
  line-height: 1.4em !important;
  margin-bottom: 0 !important;
  color: #333;
  text-align: center;
  font-size: 14px !important;
  font-weight: bold;
  height: 51px;
  letter-spacing: 0.1em;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
}

#totop {
  position: fixed;
  bottom: 0px;
  right: 0px;
  z-index: 40;
}

#totop a {
  position: relative;
  display: block;
  width: 51px;
  height: 51px;
  background: #004996;
}

#totop a::before {
  position: absolute;
  content: "";
  border-right: 12px solid transparent;
  border-left: 12px solid transparent;
  border-bottom: 18px solid #fff;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}

span.txt-img {
  transform: translate(45%, -15px);
  display: block;
}

.box-three-img{
  display: flex;
  gap: 10px;
}

.slide-tour .slider-for{
  margin-bottom: 10px;
}

.slide-tour .slick-prev{
  left: 2%;
}

.slide-tour .slick-next{
  right: 2%;
}

.slide-tour .slick-prev, .slide-tour .slick-next{
  height: 50px;
  width: 50px;
  background-color: #00244f;
  z-index: 99;
}

.slide-tour .slick-prev:before{
  position: absolute;
  content: "";
  border-right: 12px solid transparent;
  border-left: 12px solid transparent;
  border-bottom: 18px solid #fff;
  transform: translate(-50%, -50%) rotate(-90deg);
  top: 50%;
  left: 50%;
}

.slide-tour .slick-next:before{
  position: absolute;
  content: "";
  border-right: 12px solid transparent;
  border-left: 12px solid transparent;
  border-bottom: 18px solid #fff;
  transform: translate(-50%, -50%) rotate(90deg);
  top: 50%;
  left: 50%;
}

.slide-tour .slick-slide{
  padding: 0 5px;
}

.index .effect img{
  animation: mv01slideAnime 12s;
}

@-webkit-keyframes mv01slideAnime {
  0% {
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
  }

  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}

@keyframes mv01slideAnime {
  0% {
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
  }

  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}

@keyframes fadeed {}

/* IE 11 */
/*Safari*/
/*# sourceMappingURL=styles.css.map */

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


.box_col_staff{
  border:  3px solid #183c7d;
  width:  100%;
  padding: 20px;
  box-sizing: border-box;
	margin-top:30px;
}
.box_col_staff .ttl_col_staff{
  font-size: 28px;
  font-weight: 700;
  width:  100%;
  margin: 0 0 15px 0;
}
.col_staff{
  width:  100%;
  display: flex;
  flex-wrap: wrap;
}
.col_staff .img_staff{
  margin: 0 20px 0 0;
  flex-shrink: 0;
  width: 250px;
}
.col_staff .img_staff img{
  max-width: 100%;
}
.col_staff .txt_staff {
    width: calc(100% - 270px);
}
.col_staff .txt_staff p{
  font-size: 16px;
}
.col_staff .txt_staff .ttl{
  margin: 0 0 10px 0;
  font-size: 23px;
  font-weight: 600;
}
.col_staff .txt_staff .ttl span{
  margin: 0 0 10px 0;
  font-size: 18px;
  font-weight: 600;
}


.txt_staff .flex{
  display: flex;
  justify-content: flex-start;
  margin-bottom: 15px;
}
.txt_staff .flex div:first-child{
  padding-right: 100px;
}
.txt_staff .flex p{
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
}
.txt_staff .flex ul li{
  font-size: 14px;
}
.idx_map{
  margin-top: 50px;
}
.idx_map .idx_map_wrap{
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.idx_map .idx_map_wrap .left_map{
  width: 435px;
}
.idx_map .idx_map_wrap .right_map{
  width: calc(100% - 485px);
  margin-left: 50px;
}
.idx_map .idx_map_wrap .right_map .tbl-fix{
  table-layout: auto;
  position: relative;
  top: -5px;
}
.idx_map .idx_map_wrap .right_map .tbl-fix th:first-child{
  border-radius: 10px 0 0 0;
}
.idx_map .idx_map_wrap .right_map .tbl-fix th:last-child{
  border-radius: 0 10px 0 0;
}
.idx_map .idx_map_wrap .right_map .tbl-fix th{
  padding: 10px 10px;
}
.idx_map .idx_map_wrap .right_map .tbl-fix td{
  padding: 10px 10px;
}
.idx_map .idx_map_wrap .right_map img{
  border-radius: 0 0 10px 10px;
}
.idx_map .idx_map_wrap .left_map img{
  margin-bottom: 20px;
}
.idx_map .idx_map_wrap .left_map dl{
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 5px;
}
.idx_map .idx_map_wrap .left_map dl dt{
  width: 150px;
  background: #7a2560;
  color: #fff;
  text-align: center;
  margin-right: 5px;
  padding: 15px 7px;
  border-radius: 8px 0 0 8px;
}
.idx_map .idx_map_wrap .left_map dl dd{
  width: calc(100% - 155px);
  padding: 15px 7px;
  background: #f3f8fc;
  border-radius: 0 8px 8px 0;
}

@media screen and (max-width: 750px){
  .col_staff .img_staff {
    width: 250px;
    margin: 0 auto 20px;
  }
  .txt_staff .flex div:first-child {
    padding-right: 0px;
  }
  .col_staff .txt_staff {
    width: 100%;
  }
  .col_staff .txt_staff .ttl{
    text-align: center;
  }

  .txt_staff .flex{
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
  }
  .txt_staff .flex div:first-child ul{
    margin-bottom: 20px;
  }
  .idx_map {
    margin-top: 30px;
  }
  .idx_map .idx_map_wrap{
    padding: 0 10px;
  }
  .idx_map .idx_map_wrap .left_map {
    width: 100%;
    margin-bottom: 20px;
  }
  .idx_map .idx_map_wrap .right_map {
    width: 100%;
    margin-left: 0;
  }
  .idx_map .idx_map_wrap .right_map .tbl-fix th {
    padding: 10px 5px;
  }
  .idx_map .idx_map_wrap .left_map img {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 414px){
  .idx_map .idx_map_wrap .right_map .tbl-fix th,
  .idx_map .idx_map_wrap .right_map .tbl-fix td {
    padding: 10px 5px;
    font-size: 4vw;
  }
}