@charset "UTF-8";
/* -------------------------------
	web font
-------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Allura&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@500;700&display=swap");
.en_roboto {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
}

.en_allura {
  font-family: 'Allura', cursive;
  font-weight: 400;
}

.ja {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
}

/* -------------------------------
	default
-------------------------------- */
html {
  font-size: 100%;
  /* 16px */
}

@media screen and (max-width: 767px) {
  html {
    /* スマホ用フォントサイズ */
  }
}
body {
  font-family: -apple-system, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  letter-spacing: 0.05em;
}
@media print, screen and (min-width: 992px) {
  body {
    margin-top: 110px;
  }
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  margin-top: 0;
  margin-bottom: 1em;
}

/* 基本タグ */
p, ol, ul, dl, table {
  margin-bottom: 1em;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  -webkit-backface-visibility: hidden;
}

ul {
  padding-left: 1em;
}

ol {
  padding-left: 1.5em;
}

a {
  text-decoration: underline;
}
a:hover {
  text-decoration: none;
}

/* -------------------------------
	見出しサイズ
-------------------------------- */
h1, .h1 {
  font-size: 50px;
}

h2, .h2 {
  font-size: 39px;
}

h3, .h3 {
  font-size: 30px;
}

h4, .h4 {
  font-size: 23px;
}

h5, .h5 {
  font-size: 18px;
}

h6, .h6 {
  font-size: 14px;
}

.fs_14_16 {
  font-size: 16px;
}

.fs_16_20 {
  font-size: 20px;
}

@media screen and (max-width: 1199px) {
  h1, .h1 {
    font-size: calc(25px + 25 * (100vw - 320px) / 880);
  }

  h2, .h2 {
    font-size: calc(22px + 17 * (100vw - 320px) / 880);
  }

  h3, .h3 {
    font-size: calc(20px + 10 * (100vw - 320px) / 880);
  }

  h4, .h4 {
    font-size: calc(18px + 5 * (100vw - 320px) / 880);
  }

  h5, .h5 {
    font-size: calc(16px + 2 * (100vw - 320px) / 880);
  }

  .fs_14_16 {
    font-size: calc(14px + 2* (100vw - 320px) / 880);
  }

  .fs_16_20 {
    font-size: calc(16px + 4 * (100vw - 320px) / 880);
  }
}
/* -------------------------------
	row
-------------------------------- */
.row-gallery {
  margin-left: -5px;
  margin-right: -5px;
}
.row-gallery > [class^="col-"], .row-gallery > [class*=" col-"] {
  padding-left: 5px;
  padding-right: 5px;
}

.row-10 {
  margin-left: -5px;
  margin-right: -5px;
}
.row-10 > [class^="col-"], .row-10 > [class*=" col-"] {
  padding-left: 5px;
  padding-right: 5px;
}

@media print, screen and (min-width: 768px) {
  .row-gallery {
    margin-left: -10px;
    margin-right: -10px;
  }
  .row-gallery > [class^="col-"], .row-gallery > [class*=" col-"] {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media print, screen and (min-width: 992px) {
  .row-gallery {
    margin-left: -15px;
    margin-right: -15px;
  }
  .row-gallery > [class^="col-"], .row-gallery > [class*=" col-"] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
/* -------------------------------
	画像拡大
-------------------------------- */
.venobox {
  display: inline-block;
  position: relative;
}
.venobox:after {
  content: "\f00e";
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 20;
  color: #132546;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 1rem;
  line-height: 2;
  text-align: center;
  width: 2em;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.8);
  opacity: 0;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.venobox:hover:after {
  opacity: 1;
}

/* -------------------------------
	画像
-------------------------------- */
/* 画像を枠に収める */
.photo-ofi {
  height: 0;
  display: block;
  padding-top: 75%;
  background-color: #f8f8f8;
  overflow: hidden;
  position: relative;
}
.photo-ofi img {
  max-width: inherit;
  max-height: inherit;
  width: 100%;
  height: 100%;
  object-fit: scale-down;
  font-family: 'object-fit: scale-down; object-position: 50% 50%;';
  object-position: 50% 50%;
  /* 中央寄せ　横/縦 */
  position: absolute;
  left: 0;
  top: 0;
}
.photo-ofi a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
}

/* トリミング */
.cover img {
  object-fit: cover;
  font-family: 'object-fit: cover; object-position: 50% 50%;';
}

/**/
img.object-fit-img {
  max-width: inherit;
  max-height: inherit;
  width: 100%;
  height: 100%;
  object-fit: scale-down;
  font-family: 'object-fit: scale-down; object-position: 50% 50%;';
  object-position: 50% 50%;
  /* 中央寄せ　横/縦 */
}
img.object-fit-img.cover {
  object-fit: cover;
  font-family: 'object-fit: cover; object-position: 50% 50%;';
}

/* -------------------------------
	pagetop
-------------------------------- */
#pagetop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: none;
}
@media (max-width: 767px) {
  #pagetop {
    right: 0;
    bottom: 0;
  }
  #pagetop img {
    width: 40px;
  }
}

/* -------------------------------
	box
-------------------------------- */
.box-padding-a {
  padding-top: 50px;
  padding-bottom: 25px;
}
.box-padding-a .mb {
  margin-bottom: 25px;
}

@media print, screen and (min-width: 768px) {
  .box-padding-a {
    padding-top: 80px;
    padding-bottom: 40px;
  }
  .box-padding-a .mb {
    margin-bottom: 40px;
  }
}
/* -------------------------------
	header
-------------------------------- */
/* 基本サイズ */
#header {
  width: 100%;
  background-color: #fff;
}
#header h1 {
  font-size: 1rem;
  line-height: normal;
  padding: 10px 0;
  margin: 0;
  width: 120px;
}
#header .row-head {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  margin: 0 -15px;
}
#header .row-head .logo, #header .row-head .head_contents {
  padding: 0 15px;
  -webkit-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}
@media print, screen and (min-width: 768px) {
  #header .row-head {
    height: 110px;
  }
  #header .row-head .logo {
    -webkit-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  #header .row-head .logo h1 {
    width: auto;
    padding: 0;
  }
  #header .row-head .head_contents {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
    padding-right: 70px;
  }
}
@media print, screen and (min-width: 992px) {
  #header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 50;
  }
  #header .row-head .logo {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
  #header .row-head .head_contents {
    padding-right: 0;
    -webkit-flex: 0 0 80%;
    flex: 0 0 80%;
    max-width: 80%;
  }
}

/**/
.sns_box > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-flex;
  display: flex;
}
.sns_box > ul > li a:hover {
  opacity: 0.65;
}
.sns_box > ul > li + li {
  padding-left: 20px;
}

.head_tel > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-flex;
  display: flex;
}
.head_tel > ul > li + li {
  padding-left: 0.652em;
}

.head_eigyou {
  line-height: normal;
}

/**/
.head_content {
  display: none;
}
@media print, screen and (min-width: 768px) {
  .head_content {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .head_content .head_sns {
    order: 1;
  }
  .head_content .head_sns > ul > li img {
    width: 28px;
  }
  .head_content .head_sns > ul > li + li {
    padding-left: 8px;
  }
  .head_content .head_tel {
    font-size: 20px;
    margin: 10px 0 0 auto;
    order: 3;
  }
  .head_content .head_eigyou {
    font-size: 12px;
    margin: 0 30px 0 auto;
    order: 0;
  }
}
@media print, screen and (min-width: 992px) {
  .head_content {
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    height: 60px;
  }
  .head_content .head_sns {
    order: 0;
    margin: 0 0 0 auto;
  }
  .head_content .head_tel {
    order: 1;
    margin: 0 0 0 20px;
  }
  .head_content .head_eigyou {
    order: 2;
    margin: 0 15px 0 20px;
  }
}
@media print, screen and (min-width: 1200px) {
  .head_content .head_sns {
    margin: 0 0 0 auto;
  }
  .head_content .head_sns > ul > li img {
    width: 39px;
  }
  .head_content .head_sns > ul > li + li {
    padding-left: 20px;
  }
  .head_content .head_tel {
    font-size: 23px;
    margin: 0 0 0 30px;
  }
  .head_content .head_eigyou {
    font-size: 14px;
    order: 2;
    margin: 0 15px 0 35px;
  }
}

@media print {
  #header {
    position: absolute !important;
  }
}
/* -------------------------------
	メニューopen時　背景固定
-------------------------------- */
/* -------------------------------
	gNavi
-------------------------------- */
#gNavi ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#gNavi ul li a {
  text-decoration: none;
}

/* -------------------------------
	スマホ用メニュー
-------------------------------- */
/* 半透明 */
.overlay {
  content: '';
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: 3;
}

@media screen and (max-width: 991px) {
  .gnav_menu {
    position: fixed;
    top: 0px;
    bottom: 0;
    left: -260px;
    width: 260px;
    background: #fff;
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    overflow-y: auto;
    z-index: 500;
  }
  .gnav_menu .container {
    padding: 0;
  }
  .gnav_menu .gnav_tel {
    font-size: 20px;
    text-align: center;
    padding: 30px 0 0;
  }
  .gnav_menu .sns_box {
    padding: 30px 0 15px;
  }
  .gnav_menu .sns_box > ul {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .gnav_menu .sns_box > ul > li img {
    width: 30px;
  }

  /* スマホ時動き */
  .side-open .gnav_menu {
    -moz-transform: translate3d(260px, 0, 0);
    -ms-transform: translate3d(260px, 0, 0);
    -webkit-transform: translate3d(260px, 0, 0);
    transform: translate3d(260px, 0, 0);
  }
  .side-open .overlay {
    visibility: visible;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.7);
  }

  /*
   * design
   */
  #gNavi .list-gnav {
    font-size: 15px;
    width: 100%;
  }
  #gNavi .list-gnav > li {
    text-align: left;
    border-bottom: solid 1px #ccc;
  }
  #gNavi .list-gnav > li > a {
    color: #333;
    display: block;
    padding: 0.65rem 3rem 0.65rem 1rem;
    position: relative;
  }
  #gNavi .list-gnav > li > a img {
    display: none;
  }
  #gNavi .list-gnav > li.active > a, #gNavi .list-gnav > li > a:hover {
    background-color: #f3f3f3;
  }

  /*
   * 下層メニュー
   */
  #gNavi .list-gnav .child {
    position: relative;
  }
  #gNavi .list-gnav .child > ul {
    background-color: #fff;
  }
  #gNavi .list-gnav .child > ul > li > a {
    color: #333;
    font-size: 0.875em;
    padding: 0.65rem 1rem 0.65rem 2rem;
    display: block;
    background-color: #fff;
    position: relative;
  }
  #gNavi .list-gnav .child > ul > li > a:before {
    content: "\f0da";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    line-height: 1;
    position: absolute;
    right: 1rem;
    top: 50%;
    margin-top: -.5em;
  }
  #gNavi .list-gnav .child > ul > li.active > a, #gNavi .list-gnav .child > ul > li > a:hover {
    background-color: #ddd;
  }

  /*
   * 下層メニュー用ボタン
   */
  .mean-expand {
    position: absolute;
    right: 5px;
    top: 0.65rem;
    width: 32px;
    height: 32px;
    background-color: #000;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  .mean-expand:before, .mean-expand:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 14px;
    height: 2px;
    margin: auto;
    background: #fff;
    -moz-transition: -moz-transform 0.3s ease;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
  }
  .mean-expand:after {
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  .sub-menu .mean-expand:before {
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
  .sub-menu .mean-expand:after {
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
/* -------------------------------
	gNaviデザイン PC
-------------------------------- */
/* 通常メニューのデザイン */
@media print, screen and (min-width: 992px) {
  #gNavi {
    width: 100%;
    height: 50px;
  }
  #gNavi .gnav_tel, #gNavi .sns_box {
    display: none;
  }
  #gNavi .list-gnav {
    font-size: 15px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
  }
  #gNavi .list-gnav > li {
    border: none;
    position: relative;
  }
  #gNavi .list-gnav > li + li {
    padding-left: 2em;
  }
  #gNavi .list-gnav > li > a {
    color: #132546;
    line-height: 1.625rem;
    text-align: center;
    padding: 0.75rem 0.25rem;
    width: 100%;
    display: block;
    position: relative;
  }
  #gNavi .list-gnav > li > a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    transform: scaleX(0);
    background-color: #e8822d;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    visibility: hidden;
  }
  #gNavi .list-gnav > li.active > a:after, #gNavi .list-gnav > li > a:hover:after {
    transform: scaleX(1);
    visibility: visible;
  }
  #gNavi .list-gnav > li.gnav_contact > a {
    color: #fff;
    text-align: center;
    width: 14.3334em;
    background-color: #e8822d;
    -moz-transition: background 0.3s ease;
    -webkit-transition: background 0.3s ease;
    transition: background 0.3s ease;
  }
  #gNavi .list-gnav > li.gnav_contact > a:after {
    display: none;
  }
  #gNavi .list-gnav > li.gnav_contact.active > a, #gNavi .list-gnav > li.gnav_contact > a:hover {
    background-color: #DC6400;
  }

  .mean-expand {
    display: none;
  }

  #gNavi .list-gnav li ul {
    display: none;
  }

  #gNavi .list-gnav .child {
    font-size: 0.875em;
    position: relative;
  }
  #gNavi .list-gnav .child > ul {
    position: absolute;
    left: 0;
    min-width: 100%;
  }
  #gNavi .list-gnav .child > ul > li > a {
    color: #333;
    padding: 10px 15px;
    display: block;
    background-color: #fff;
  }
  #gNavi .list-gnav .child > ul > li.active > a, #gNavi .list-gnav .child > ul > li > a:hover {
    background-color: #ddd;
  }
  #gNavi .list-gnav .child > ul > li + li {
    margin-top: 1px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  /* フォントサイズ調整用 */
  #gNavi .list-gnav {
    font-size: calc(13px + 3 * (100vw - 768px) / 432);
  }
}
/* -------------------------------
	上部固定
-------------------------------- */
@media screen and (min-width: 992px) {
  #gNavi {
    position: relative;
  }

  .fixed-nav {
    margin-top: 45px;
  }

  .fixed-nav #gNavi {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    background-color: #012332;
    -moz-animation-duration: 0.5s;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -moz-animation-delay: 0.3s;
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
    -moz-animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -moz-animation-name: gnavi_fixed_animation;
    -webkit-animation-name: gnavi_fixed_animation;
    animation-name: gnavi_fixed_animation;
  }
  .fixed-nav #gNavi .list-gnav > li > a:before {
    background-color: rgba(255, 255, 255, 0);
  }
  .fixed-nav #gNavi .list-gnav > li.active > a:before, .fixed-nav #gNavi .list-gnav > li > a:hover:before {
    margin-bottom: 0;
    height: 3px;
    background-color: #fff;
  }
}
@keyframes gnavi_fixed_animation {
  from {
    -moz-transform: translate3d(0, -100%, 0);
    -ms-transform: translate3d(0, -100%, 0);
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    -moz-transform: translate3d(0, 0%, 0);
    -ms-transform: translate3d(0, 0%, 0);
    -webkit-transform: translate3d(0, 0%, 0);
    transform: translate3d(0, 0%, 0);
  }
}
/* -------------------------------
	プラスマイナス
-------------------------------- */
/*
 * <span class="plus"><span></span></span>
 */
.submenu > a .plus {
  overflow: hidden;
  display: block;
  position: absolute;
  right: 0;
  top: 5px;
  z-index: 0;
  width: 30px;
  height: 30px;
  transition: transform 300ms;
  cursor: pointer;
}
.submenu > a .plus span, .submenu > a .plus::before, .submenu > a .plus::after {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 11px;
  height: 1px;
  margin: auto;
  background: #fff;
}
.submenu > a .plus span {
  overflow: hidden;
  z-index: 1;
  color: #fff;
  opacity: 1;
  display: none;
  transition: opacity 200ms;
}
.submenu > a .plus::before, .submenu > a .plus::after {
  transition: transform 200ms;
}
.submenu > a .plus::before {
  z-index: 2;
  content: "";
}
.submenu > a .plus::after {
  z-index: 2;
  content: "";
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.submenu > a.sub-open .plus {
  transform: rotate(180deg);
}
.submenu > a.sub-open .plus span {
  opacity: 0;
}
.submenu > a.sub-open .plus::after {
  transform: rotate(180deg);
}

/* -------------------------------
	三本線デザイン
-------------------------------- */
/* 基本設定 */
.menuWrapper {
  position: fixed;
  right: 0;
  top: 0;
  width: 50px;
  height: 50px;
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: 9999;
}

#menuButton {
  overflow: hidden;
  display: block;
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
#menuButton span, #menuButton:before, #menuButton:after {
  display: block;
  position: absolute;
  top: -10px;
  bottom: 0;
  left: 0;
  right: 0;
  width: 30px;
  height: 3px;
  margin: auto;
  background: #132546;
}
#menuButton span {
  overflow: hidden;
  z-index: 1;
  color: #132546;
}
#menuButton:before {
  z-index: 2;
  transform: translate(0, -8px);
  content: "";
}
#menuButton:after {
  z-index: 2;
  transform: translate(0, 8px);
  content: "";
}
#menuButton small {
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 100%;
  color: #132546;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 10px;
  line-height: 1;
  letter-spacing: normal;
  text-align: center;
  display: block;
}

/* アニメーション */
#menuButton span {
  opacity: 1;
  transition: opacity 150ms 50ms;
}
#menuButton::before, #menuButton::after {
  transition: transform 200ms;
}
.side-open #menuButton span {
  opacity: 0;
  transition: opacity 150ms;
}
.side-open #menuButton::before {
  transform: rotate(45deg);
}
.side-open #menuButton::after {
  transform: rotate(-45deg);
}

@media print, screen and (min-width: 992px) {
  .menuWrapper, .overlay {
    display: none;
  }
}
/* -------------------------------
	footer
-------------------------------- */
#footer {
  page-break-inside: avoid;
}
#footer .sns_box > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-flex;
  display: flex;
}
#footer .sns_box > ul > li a:hover {
  opacity: 0.65;
}
#footer .sns_box > ul > li + li {
  padding-left: 20px;
}

/**/
.footer_contents {
  padding: 30px 0;
  background: url("../images/common/foot_bg.jpg") no-repeat center center/cover;
  position: relative;
  z-index: 0;
}
.footer_contents:before {
  content: "";
  position: absolute;
  top: 30px;
  right: 5px;
  bottom: 30px;
  left: 5px;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: -1;
}
.footer_contents .contents {
  padding: 40px 0;
}
@media print, screen and (min-width: 992px) {
  .footer_contents:before {
    right: 30px;
    left: 30px;
  }
  .footer_contents .contents {
    padding: 40px 0px 40px 30px;
  }
}

.foot_nav {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: center;
  align-items: center;
}
.foot_nav .logo {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.foot_nav .logo img {
  padding-right: 20px;
}
.foot_nav .columns {
  flex: 1 0 auto;
  max-width: 100%;
  padding: 15px 0;
}
.foot_nav + .foot_nav {
  margin-top: 30px;
  padding-top: 35px;
  background: url("../images/common/dot01.png") no-repeat left top;
}

.f_nav {
  width: 100%;
}
.f_nav > ul {
  font-size: 13px;
  letter-spacing: -.4em;
  list-style: none;
  padding: 0;
  margin: 0;
}
.f_nav > ul > li {
  letter-spacing: 0.05em;
  display: inline-block;
  margin-right: 1em;
}
.f_nav > ul > li:before {
  content: "-";
  color: #b7b7b7;
  margin-right: 1em;
}
.f_nav > ul > li:last-child {
  margin-right: 0;
}
.f_nav > ul > li > a {
  color: #222;
  text-decoration: none;
}
.f_nav > ul > li > a:hover {
  text-decoration: underline;
}

.foot_box_1 {
  margin: 20px 0 0;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: center;
  align-items: center;
}
.foot_box_1 .f_banner {
  text-align: center;
  margin: 0 auto;
}
.foot_box_1 .f_banner > ul {
  letter-spacing: -.4em;
  list-style: none;
  padding: 0;
  margin: 0;
}
.foot_box_1 .f_banner > ul > li {
  letter-spacing: normal;
  padding: 5px;
  display: inline-block;
  vertical-align: middle;
}
.foot_box_1 .f_banner > ul > li > a:hover {
  opacity: .65;
}
.foot_box_1 .sns_box {
  padding-left: 15px;
  padding-top: 5px;
  padding-bottom: 5px;
  margin-left: auto;
  margin-right: auto;
}

.copyright {
  color: #fff;
  font-size: 11px;
  line-height: 1.364;
  text-align: center;
  padding: 10px 15px;
  background-color: #223865;
}

/* -------------------------------
	main
-------------------------------- */
#wrapper {
  overflow: hidden;
}

/* -------------------------------
	main title
-------------------------------- */
.main_ttl {
  height: 300px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  background-image: url("../images/common/main_ttl_bg.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 0;
}
.main_ttl:after {
  content: "";
  position: absolute;
  left: 5px;
  right: 5px;
  top: 5px;
  bottom: 5px;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: -1;
}
.main_ttl .container h2 {
  color: #132546;
  line-height: 1.3333;
  text-align: center;
  margin: 0;
}
.main_ttl .container h2 > span {
  display: block;
}
.main_ttl .container h2 .sub {
  color: #e8822d;
  font-size: 0.812em;
  text-transform: uppercase;
  margin-top: 10px;
}
@media print, screen and (min-width: 768px) {
  .main_ttl:after {
    left: 30px;
    right: 30px;
    top: 30px;
    bottom: 30px;
  }
}
@media screen and (max-width: 1199px) {
  .main_ttl {
    height: calc(120px + 180 * (100vw - 320px) / 880);
  }
}

/* -------------------------------
	main title
-------------------------------- */
.title01 {
  color: #132546;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 1em;
}
.title01 .in {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.title01 .in .txt {
  min-width: 6.667em;
  display: block;
}
.title01 .in:before, .title01 .in:after {
  content: "";
  -webkit-flex: 1;
  flex: 1;
  height: 26px;
  background-repeat: no-repeat;
  background-size: contain;
}
.title01 .in:before {
  background-image: url("../images/common/title01_l.png");
  background-position: right center;
  right: 100%;
}
.title01 .in:after {
  background-image: url("../images/common/title01_r.png");
  background-position: left center;
  left: 100%;
}
.title01 .sub {
  color: #e89956;
  font-size: 14px;
  margin-top: 3px;
  display: block;
}

.title02 {
  color: #132546;
  border-bottom: solid 1px #132546;
  padding: 0 0 0.625rem 0.625rem;
}

.title03 {
  color: #132546;
  line-height: 1.2;
  text-align: center;
  padding-top: 8px;
  margin-bottom: 1.7666em;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: auto 100%;
}
.title03 .in {
  display: inline-block;
}
.title03 .in small {
  color: #e8822d;
  font-size: 0.5333em;
  line-height: 1.5;
  display: block;
}
.title03.bg-1 {
  background-image: url("../images/home/top_event_ttl_bg.png");
}
.title03.bg-2 {
  background-image: url("../images/home/top_realestate_ttl_bg.png");
}
.title03.bg-3 {
  background-image: url("../images/home/top_technical_ttl_bg.png");
}
@media screen and (max-width: 575px) {
  .title03 {
    background-size: contain;
  }
}

.title04 {
  color: #132546;
  border-left: solid 3px #132546;
  padding-left: 1rem;
}

/* -------------------------------
	電話番号
-------------------------------- */
.telphone {
  line-height: 1.3333;
}
.telphone small {
  font-size: 0.609em;
}
.telphone span {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
}
.telphone a {
  text-decoration: underline;
}
.telphone a:hover {
  text-decoration: none;
}

/* -------------------------------
	pagetop
-------------------------------- */
#pagetop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: none;
}
@media (max-width: 767px) {
  #pagetop {
    right: 0;
    bottom: 0;
  }
  #pagetop img {
    width: 40px;
  }
}

/* -------------------------------
	アンカーリンク
-------------------------------- */
.anchor {
  position: relative;
  z-index: -1;
}
@media print, screen and (min-width: 768px) {
  .anchor {
    margin-top: -110px;
    padding-top: 110px;
  }
}

/* -------------------------------
	box
-------------------------------- */
.box-padding-a {
  padding-top: 50px;
  padding-bottom: 25px;
}
.box-padding-a .mb {
  margin-bottom: 25px;
}

.box-padding-b {
  padding-top: 2rem;
  padding-bottom: 1rem;
}
.box-padding-b .mb {
  margin-bottom: 1rem;
}

.box-style-1 {
  padding: 5.173%;
  border: solid 1px #132546;
  background-color: #fff;
  position: relative;
}

.box-style-2 {
  padding: 20px 15px;
  background-color: rgba(255, 255, 255, 0.7);
}

.box-style-3 {
  padding: 1.5rem 1rem;
  border-top: solid 1px #C0BBB3;
  border-bottom: solid 1px #C0BBB3;
}

@media print, screen and (min-width: 768px) {
  .box-padding-a {
    padding-top: 80px;
    padding-bottom: 40px;
  }
  .box-padding-a .mb {
    margin-bottom: 40px;
  }

  .box-padding-b {
    padding-top: 3rem;
    padding-bottom: 1.5rem;
  }
  .box-padding-b .mb {
    margin-bottom: 1.5rem;
  }

  .box-style-2 {
    padding: 50px;
  }
}
/* -------------------------------
	画像
-------------------------------- */
/* 画像を枠に収める */
.photo-ofi {
  height: 0;
  display: block;
  padding-top: 75%;
  background-color: #fff;
  overflow: hidden;
  position: relative;
}
.photo-ofi img {
  max-width: inherit;
  max-height: inherit;
  width: 100%;
  height: 100%;
  object-fit: scale-down;
  font-family: 'object-fit: scale-down; object-position: 50% 50%;';
  object-position: 50% 50%;
  /* 中央寄せ　横/縦 */
  position: absolute;
  left: 0;
  top: 0;
}
.photo-ofi a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
}

/* トリミング */
.cover img {
  object-fit: cover;
  font-family: 'object-fit: cover; object-position: 50% 50%;';
}

/**/
img.object-fit-img {
  max-width: inherit;
  max-height: inherit;
  width: 100%;
  height: 100%;
  object-fit: scale-down;
  font-family: 'object-fit: scale-down; object-position: 50% 50%;';
  object-position: 50% 50%;
  /* 中央寄せ　横/縦 */
}
img.object-fit-img.cover {
  object-fit: cover;
  font-family: 'object-fit: cover; object-position: 50% 50%;';
}

/* -------------------------------
	googlemap
-------------------------------- */
.googlemap {
  position: relative;
  padding-top: 66.666%;
  /*これが縦横比*/
  height: 0;
  background-color: #f8f8f8;
  overflow: hidden;
  z-index: 0;
}
.googlemap:before {
  color: #ccc;
  font-size: 43px;
  content: "google map";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -1;
}
.googlemap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
@media print, screen and (min-width: 768px) {
  .googlemap {
    padding-top: 560px;
  }
}

/* -------------------------------
	横幅　計算
-------------------------------- */
@media screen and (min-width: 992px) {
  .photo-box-left {
    margin-left: calc((-100vw + 940px + 0px) / 2);
  }

  .photo-box-right {
    margin-right: calc((-100vw + 940px + 0px) / 2);
  }
}
@media screen and (min-width: 1200px) {
  .photo-box-left {
    margin-left: calc((-100vw + 1140px + 0px) / 2);
  }

  .photo-box-right {
    margin-right: calc((-100vw + 1140px + 0px) / 2);
  }
}
@media print {
  .photo-box-left {
    margin-left: -340px;
  }

  .photo-box-right {
    margin-right: -340px;
  }
}
/* -------------------------------
	hr
-------------------------------- */
.hr_style_1 {
  border-top: dotted 1px #ccc;
}

/* -------------------------------
	table
-------------------------------- */
.table-design-1 {
  font-size: 0.875rem;
  line-height: 1.6;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  text-align: left;
  border-top: 1px solid #F5D1A3;
  border-left: 1px solid #F5D1A3;
}
.table-design-1 > tbody > tr > th, .table-design-1 > tbody > tr > td {
  padding: 0.875rem;
  border-right: 1px solid #F5D1A3;
  border-bottom: 1px solid #F5D1A3;
}
.table-design-1 > tbody > tr > th {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  background: #fff1df;
}
.table-design-1 > tbody > tr > td {
  background-color: #fff;
}

@media only screen and (max-width: 767px) {
  .table-inline colgroup {
    display: none !important;
  }
  .table-inline tr {
    width: 100%;
    display: inline-block;
  }
  .table-inline tr th, .table-inline tr td {
    width: 100% !important;
    display: block;
  }
}
/* -------------------------------
	list
-------------------------------- */
.list-icon {
  list-style: none;
  padding: 0;
}
.list-icon li {
  line-height: 1.875;
  padding-left: 1.4em;
  position: relative;
}
.list-icon li i {
  line-height: 1.875;
  width: 1em;
  display: block;
  text-align: center;
  position: absolute;
  left: 0;
}

.list-inline-slash {
  list-style: none;
  letter-spacing: -.4em;
  padding: 0;
}
.list-inline-slash li {
  letter-spacing: 0.05em;
  display: inline-block;
}
.list-inline-slash li:after {
  content: "／";
  margin: 0 0.5rem;
}
.list-inline-slash li:last-child:after {
  content: "";
}

/* -------------------------------
	dl
-------------------------------- */
/* -------------------------------
	figure
-------------------------------- */
.figure {
  vertical-align: middle;
  padding: 0;
  margin: 0;
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #000;
  cursor: pointer;
}
.figure img {
  min-width: inherit;
  width: 100%;
  position: relative;
  display: block;
}
.figure figcaption {
  padding: 0;
  margin: 0;
  color: #fff;
  text-transform: uppercase;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.figure figcaption::before, .figure figcaption::after {
  pointer-events: none;
}
.figure figcaption > a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  opacity: 0;
}

/* -------------------------------
	btn
-------------------------------- */
.btn-orange {
  color: #fff !important;
}
.btn-orange:hover, .btn-orange:focus {
  color: #fff;
}

.btn-douga {
  font-size: 13px;
  padding: 0.219rem 1rem;
  border: solid 2px #e06161;
  border-radius: 10px;
  background-color: #fff;
}
.btn-douga i {
  color: #e06161;
}
.btn-douga:hover {
  background-color: #F4C7C7;
}

.btn-icon-l, .btn-icon-r {
  position: relative;
}
.btn-icon-l i, .btn-icon-r i {
  font-size: 0.929em;
  line-height: 1;
  position: absolute;
  top: 50%;
  margin-top: -.5em;
}

.btn-icon-l, .btn-icon-r {
  padding-left: 2em;
  padding-right: 2em;
}

.btn-icon-l i {
  left: 1em;
}

.btn-icon-r i {
  right: 1em;
}

/* -------------------------------
	common
-------------------------------- */
.htmlarea {
  word-wrap: break-word;
  overflow-wrap: break-word;
  overflow: hidden;
}

.clearfix {
  *zoom: 1;
}
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.ov_hi {
  overflow: hidden;
}

.in-bk {
  display: inline-block;
}

.relative {
  position: relative;
}

.clear {
  clear: both;
}

.f-left {
  float: left;
}

.f-right {
  float: right;
}

/* 画像回り込み */
img.aligncenter, img.alignright, img.alignleft {
  display: block;
  margin: 0 auto;
}

@media print, screen and (min-width: 480px) {
  img.alignright {
    max-width: 38%;
    margin-left: 30px;
    display: inline;
  }
  img.alignleft {
    max-width: 38%;
    margin-right: 30px;
    display: inline;
  }

  .alignright {
    float: right;
  }

  .alignleft {
    float: left;
  }
}
@media print, screen and (min-width: 1200px) {
  /* 画像回り込み */
  img.alignright {
    max-width: 100%;
  }
  img.alignleft {
    max-width: 100%;
  }
}
/* --▼width-- */
.ww200 {
  width: 200px !important;
}

/* --▼color-- */
.bg-img-1 {
  background: url("../images/common/bg01.png");
}

.bg-img-2 {
  background: url("../images/common/bg02.png");
}

/* --▼font 16px -- */
.fs10 {
  font-size: 0.625rem !important;
}

.fs11 {
  font-size: 0.6875rem !important;
}

.fs12 {
  font-size: 0.75rem !important;
}

.fs13 {
  font-size: 0.8125rem !important;
}

.fs14 {
  font-size: 0.875rem !important;
}

.fs15 {
  font-size: 0.9375rem !important;
}

.fs16 {
  font-size: 1rem !important;
}

.fs17 {
  font-size: 1.0625rem !important;
}

.fs20 {
  font-size: 1.25rem !important;
}

.fs-md {
  font-size: 1.25em !important;
}

.f-feature {
  font-feature-settings: "palt";
  -webkit-font-feature-settings: "palt";
}

.fw4 {
  font-weight: 400 !important;
}

.fw5 {
  font-weight: 500 !important;
}

.fw7 {
  font-weight: 700 !important;
}

/* --▼text-- */
.lh_sm {
  line-height: 1.5 !important;
}

.lh_md {
  line-height: 2 !important;
}

/* --▼padding-- */
/* --▼margin-- */
/*bottom*/
.mb00 {
  margin-bottom: 0 !important;
}

.mb05 {
  margin-bottom: 5px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb2rem {
  margin-bottom: 2rem !important;
}

/* 印刷用 */
@page {
  margin: 8mm;
  margin: 10mm 4mm 10mm 4mm;
}
@media print {
  @page {
    size: auto;
  }
  html {
    overflow: visible !important;
    zoom: 0.7 !important;
  }

  body {
    min-width: 1240px !important;
  }

  #pagetop {
    opacity: 0;
    visibility: hidden;
  }

  .page-break {
    page-break-inside: avoid;
    page-break-after: avoid;
  }
}
/* IE11　ハック */
@media print and (-ms-high-contrast: none) {
  html {
    -ms-overflow-style: none;
    /* ie */
  }

  body {
    min-width: 1240px !important;
  }

  .row-print-ie {
    overflow: hidden;
    display: block;
  }
  .row-print-ie > [class^="col-"], .row-print-ie > [class*=" col-"] {
    float: left;
    display: block;
    page-break-inside: avoid;
    page-break-after: avoid;
  }
}


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