@charset "UTF-8";
/* CSS Document */
@import url(https://fonts.googleapis.com/css?family=Lato:400,700);
@import url(http://fonts.googleapis.com/earlyaccess/notosansjp.css);
/* -----Basic style----- */
html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
}
body {
  line-height: 2;
  max-width: 1600px;
  margin: 0 auto;
  -webkit-text-size-adjust: 100%;
}
body, th, td, h1, h2, h3, h4, h5, h6, pre, input, textarea, option, div, p, dt, dd, li, address {
  font-family: "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  /*font-size: 1.4rem;*/
  font-size: 1.6rem;
  font-weight: normal;
  font-style: normal;
  color: #333333;
}
a {
  color: #333333;
  text-decoration: none;
}
.tx-s {
  font-size: 1.2rem;
}
.tx-m {
  font-size: 1.8rem;
}
.fw-b {
  font-weight: bold;
}
.color1 {
  color: #f5821f;
}
.bg-color1 {
  background: #f5821f;
}
.color2 {
  color: #002060;
}
.bg-color2 {
  background: #002060;
}
.wid {
  width: 100%;
}
.pad10 {
  padding: 10px;
}
.pad20 {
  padding: 20px;
}
.margin-b20 {
  margin-bottom: 20px;
}
.margin-b40 {
  margin-bottom: 40px;
}
.display-none {
  display: none;
}
.imgtxt {
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}
.clr, .clear {
  clear: both;
}
.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}
.clearfix {
  min-height: 1px;
}
* html .clearfix {
  height: 1px; /*¥*/ /*/
	height: auto;
	overflow: hidden;
	/**/
}
.center {
  text-align: center;
}
.left {
  text-align: left;
}
.right {
  text-align: right;
}
.flex {
  display: flex;
  justify-content: space-between;
}
.flex2 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.flex3 {
  display: flex;
  justify-content: flex-start;
}
.flex4 {
  display: flex;
  justify-content: space-between;
}
.flex5 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
/*.flex6 {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 24px; /* ★ボックス同士の縦横の間隔を24pxにする */
/*}*/
.flex6 {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 24px; /* ★ボックス同士の縦横の間隔を24pxにする */
}
hr {
  width: 80%;
  height: 1px;
  background-color: #dcc48d;
  border: none;
  margin-bottom: 40px;
}
.lineheight24 {
  line-height: 2.4;
}
.u-line {
  border-bottom: 1px solid #333;
}
/* -----Basic styleここまで----- */
/* -----Common style----- */
.wrapper {
  width: 100%;
  height: 100vh;
  background-image: url("../img/common/bg_01.svg");
  background-repeat: no-repeat;
  background-position-x: right;
  background-position-y: top;
}
.second .wrapper {
  background-image: none !important;
}
header {
  /*height: 80px;*/
  height: 136px;
  position: relative;
}
header .inner {
  padding: 0 80px;
  display: flex;
  justify-content: space-between;
  background: #002060;
  /*border-bottom: 1px solid #333;*/
}
header h1 {
  height: 80px;
  display: flex;
  align-items: center;
}
header h1 img {
  width: 90%;
  height: auto;
  vertical-align: bottom;
}
header h2 {
  height: 80px;
  display: flex;
  align-items: center;
}
header h2 img {
  width: 90%;
  height: auto;
}
/*ナビゲーション*/
nav {
  display: none;
  height: 100vh;
  width: 300px;
  position: absolute;
  top: 0;
  right: -300px;
  z-index: 50;
  background-color: rgba(0, 0, 0, .8);
  transition: transform .5s;
}
#navBtn:checked ~ nav {
  display: block;
  transform: translateX(-300px);
}
#navBtn {
  display: none;
}
.open {
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
  display: block;
  z-index: 100;
  width: 40px;
  height: 40px;
  /*border: 1px solid #CCC;
  border-radius: 2px;*/
}
/*humburger button*/
.open::before, .open::after {
  content: "";
}
.open span, .open::before, .open::after {
  content: "";
  position: absolute;
  top: 18px;
  left: 30%;
  width: 40%;
  border-bottom: 2px solid #333;
  transition: transform .5s;
}
.open::before {
  transform: translateY(-8px);
}
.open::after {
  transform: translateY(8px);
}
/*close button*/
#navBtn:checked + .open {
  /*background: #555;*/
}
#navBtn:checked + .open span {
  transform: scaleX(0);
}
#navBtn:checked + .open::before {
  transform: rotate(45deg);
}
#navBtn:checked + .open::after {
  transform: rotate(-45deg);
}
#navBtn:checked + .open span, #navBtn:checked + .open::before, #navBtn:checked + .open::after {
  border-bottom-color: #EEE;
}
nav ul {
  list-style: none;
  padding-bottom: 1rem;
  text-align: center;
}
nav ul li {
  margin: 0 24px;
  padding: 10px 0;
}
nav ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 1.2rem;
}
@media all and (min-width: 1025px) {
  nav {
    display: block;
    height: auto;
    width: 100%;
    position: static;
    background-color: transparent;
  }
  nav ul li {
    display: inline-block;
  }
  nav ul li a {
    color: #333;
    font-size: 1.6rem;
  }
  #navBtn, .open {
    display: none;
  }
}
/*ナビゲーションここまで*/
#main {
  /*margin-bottom: 40px;*/
}
#main h2 {
  font-size: 3rem;
}
#main h3 {
  font-size: 2.2rem;
}
.container {
  /*width: 980px;
	margin: 0 auto;*/
}
.main-contents {
  width: 100%;
}
.inner1040 {
  width: 1040px;
  margin: auto;
}
/* button */
.button-1 {
  /*width: 98%;*/
  width: 100%;
  height: 50px;
  text-align: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  /*box-shadow: 8px 8px 0px 0px #dcc48d;*/
  background: #fff;
  border: 1px solid #B89B81;
}
.button-1 a {
  display: block;
  font-size: 1.6rem;
  color: #B89B81;
  text-decoration: none;
  line-height: 50px;
  transition: all .5s ease;
  z-index: 2;
  position: relative;
}
.eff-1 {
  width: 100%;
  height: 50px;
  left: -320px;
  top: -50px;
  background: #B89B81;
  position: absolute;
  transition: all .2s ease;
  z-index: 1
}
.button-1:hover .eff-1 {
  left: 0;
  top: 0;
}
.button-1:hover a {
  color: #fff;
}
.button-2 {
  width: 98%;
  height: 50px;
  text-align: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 8px 8px 0px 0px #dcc48d;
  background: #B89B81;
  border: 1px solid #fff;
}
.button-2 a {
  display: block;
  font-size: 1.6rem;
  color: #fff;
  text-decoration: none;
  line-height: 50px;
  transition: all .5s ease;
  z-index: 2;
  position: relative;
}
.eff-2 {
  width: 100%;
  height: 50px;
  left: -320px;
  top: -50px;
  background: #fff;
  position: absolute;
  transition: all .2s ease;
  z-index: 1
}
.button-2:hover .eff-2 {
  left: 0;
  top: 0;
}
.button-2:hover a {
  color: #B89B81;
}
.btn {}
.btn p {
  text-align: center !important;
}
.btn p a {
  display: block;
  border: 1px solid #333;
  padding: 8px;
  font-weight: normal;
  transition-property: all;
  transition-duration: 0.5s;
}
.btn p a:hover {
  color: #fff;
  border: 1px solid #fff;
  background: #f0ad00;
}
footer {
  background: #002060;
  padding: 80px;
}
footer .heading {
  text-align: center;
  margin-bottom: 40px;
}
footer .heading h2 {
  display: inline-block;
}
footer .heading h2 img {
  width: 64%;
  height: auto;
}
footer .f-box {
  display: flex;
  justify-content: space-around;
}
footer .f-box .box-l {
  display: flex;
  justify-content: space-around;
  width: 50%;
  padding: 40px;
}
footer .f-box .box-l ul {
  border-left: 1px solid #fff;
  padding-left: 20px;
}
footer .f-box .box-l ul li {
  padding-bottom: 10px;
}
footer .f-box .box-l ul li a {
  color: #fff;
  transition-property: opacity;
  transition-duration: 0.5s;
}
footer .f-box .box-l ul li a:hover {
  opacity: 0.5;
}
footer .f-box .box-r {
  width: 50%;
  padding: 40px;
}
footer .f-box .box-r h3, footer .f-box .box-r p, footer .f-box .box-r p a {
  color: #fff;
}
footer .f-box .box-r h3 {
  font-size: 1.8rem;
  font-weight: bold;
  padding-bottom: 20px;
}
footer .f-box .box-r p a {
  font-size: 1.8rem;
  font-weight: bold;
  transition-property: opacity;
  transition-duration: 0.5s;
}
footer .f-box .box-r p a:hover {
  opacity: 0.5;
}
footer p.copyright {
  color: #fff;
  padding: 10px 0;
  text-align: center;
}
/* popup */
#popup {
  position: fixed;
  bottom: 10px;
  right: 20px;
}
#popup a {
  display: block;
  z-index: 999;
}
#popup a:hover {
  text-decoration: none;
  opacity: 0.7;
}
/* 閉じるボタン */
.close-button {
  width: 30px;
  height: 30px;
  background: #fff;
  border: 1px solid #333;
  padding: 0px;
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
  top: -20px;
  left: -16px;
  /*width: 10px;
    height: 10px;
    background: #fff;
    border: 1px solid #333;
    padding: 10px 20px;
    border-radius: 50%;
    cursor: pointer;*/
}
.close-button:hover {
  background: #fff;
}
/* pagetop */
#pageTop {
  position: fixed;
  bottom: 20px;
  left: 20px;
}
#pageTop a {
  display: block;
  z-index: 999;
  padding: 4px;
  border-radius: 30px;
  width: 40px;
  height: 40px;
  background-color: #f5821f;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
}
#pageTop a:hover {
  text-decoration: none;
  opacity: 0.7;
}
/* pankuzu */
.pankuzu {
  margin-bottom: 40px;
  background-color: #efefef;
}
.cd-breadcrumb {
  width: 100%;
  max-width: 980px;
  padding: 0;
  margin: 0 auto;
}
.cd-breadcrumb::after {
  content: "";
  display: table;
  clear: both;
}
.cd-breadcrumb li {
  display: inline-block;
  float: left;
  margin: 0.5rem 0;
}
.cd-breadcrumb li::after {
  display: inline-block;
  content: '\00bb';
  margin: 0 .6rem;
  color: #f5821f;
}
.cd-breadcrumb li:last-of-type::after {
  display: none;
}
.cd-breadcrumb li > * {
  display: inline-block;
  font-size: 1.4rem;
  color: #333333;
}
.cd-breadcrumb li.current > * {
  color: #333333;
}
.cd-breadcrumb a {
  transition: all .3s ease 0s;
}
.cd-breadcrumb a:hover {
  color: #f5821f;
}
p.contact-tel {
  margin-bottom: 5px !important;
}
a.contact-tel {
  display: block;
  font-size: 1.6rem;
  font-weight: bold;
  color: #0e1937;
  text-align: center;
  padding: 10px;
  border: 1px solid #0e1937;
}
/* web-interview */
#web-interview {
  position: fixed;
  bottom: 60px;
  left: 20px;
}
#web-interview a {
  display: block;
  z-index: 999;
  padding: 6px;
  text-decoration: none;
  text-align: center;
}
#web-interview a:hover {
  text-decoration: none;
  opacity: 0.7;
}
.spview {
  display: none;
}
.pcview {
  display: block;
}
.slick-slide img {
  width: 100%;
  height: auto;
}
/* -----Common styleここまで----- */
/* -----top----- */
#top .mainvis {
  height: 72%;
  /*margin-top: 80px;*/
  margin-bottom: 80px;
  /*margin-left: 80px;*/
  margin-right: 80px;
}
#top .vegas-wrapper {
  display: flex;
  align-items: flex-end;
  width: 86%;
  margin: 0 40px;
}
#top .mainvis .inner h2 {
  margin-bottom: 24px;
  color: #fff;
}
#top .mainvis .inner h2.m_01 {
  font-size: 3rem;
  background: rgba(0,32,96,1);
  /*background: #002060;*/
  padding: 0px 16px;
  font-weight: bold;
}
#top .mainvis .inner h2.m_02 {
  font-size: 2rem;
  background: #002060;
  padding: 0px 16px;
  margin-bottom: 140px
}
#top .main-contents .top-contents-box {
  /*margin-bottom: 80px;*/
}
/*#top .main-contents .top-contents-box:last-child{
	margin-bottom: 0;
}*/
#top .slick-dots {
  display: none !important;
}
#arrow {
  display: none !important;
}
#top p.bg_02 {
  position: relative;
}
#top p.bg_02 img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1; /* 画像を親要素の中で一番背面に送る */
  width: 100%; /* 必要に応じてサイズを指定 */
  height: auto;
}
#top .box_n00 {
  padding: 80px 0;
  background: #002060;
}
#top .box_n00 .tx-box p {
  text-align: center;
  font-weight: bold;
  color: #fff;
}
#top .box_n01 {
  padding: 80px 0;
  margin-bottom: 80px;
  background: #efefef;
}
#top .box_n01 .heading {
  margin-bottom: 40px;
}
#top .box_n01 h2.title {
  font-weight: bold;
  font-size: 2rem;
  line-height: 3rem;
}
#top .box_n01 h2.title span {
  display: block;
  font-size: 1.4rem;
}
#top .box_n01 .service-con {
  width: 20%; /* 5カラム */
  aspect-ratio: 1 / 1; /* 正方形を維持 */
  box-sizing: border-box;
  /* ボーダーの重なりを防ぐ設定 */
  border: 1px solid #002060;
  margin-right: -1px;
  margin-bottom: -1px;
}
#top .box_n01 .service-con a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease 0s;
}
#top .box_n01 .service-con a:hover {
  opacity: 0.5;
}
#top .box_n01 .service-con h3 img {
  max-width: 80px; /* アイコンサイズは適宜調整 */
  height: auto;
}
#top .box_n01 .service-con p {}
#top .box_n02 {
  margin-bottom: 80px;
  /*background: #002060;
	text-align: center;
	margin-bottom: 40px;
	padding: 80px;*/
}
#top .box_n02 .box-l, #top .box_n02 .box-r {
  width: 46%;
}
#top .box_n02 .heading {
  margin-bottom: 40px;
}
#top .box_n02 h2.title {
  font-weight: bold;
  font-size: 2rem;
  line-height: 3rem;
  border-bottom: 1px solid #ccc;
  padding-bottom: 16px;
}
#top .box_n02 h2.title span {
  display: block;
  font-size: 1.4rem;
}
/* リストのスタイル消去 */
#top .box_n02 .news-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
/* アイテムごとの設定 */
#top .box_n02 .news-item {
  margin-bottom: 25px;
}
/* リンク範囲を全体に広げ、フレックスボックス化 */
#top .box_n02 .news-link {
  display: flex;
  align-items: flex-start; /* 上揃え */
  text-decoration: none;
  color: #333;
  transition: opacity 0.3s;
}
#top .box_n02 .news-link:hover {
  opacity: 0.7;
}
/* 画像部分 */
#top .box_n02 .news-img {
  flex-shrink: 0; /* 画像が潰れないように固定 */
  width: 160px; /* 画像の横幅（適宜変更してください） */
  margin-right: 20px;
}
#top .box_n02 .news-img img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid #ccc; /* 画像の枠線 */
}
/* テキスト部分 */
#top .box_n02 .news-content {
  flex: 1; /* 残りの幅をすべて使う */
}
#top .box_n02 .news-title {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}
#top .box_n02 p.news-link a {
  width: 100%;
  margin: auto;
  display: block;
  color: #333;
  border: 1px solid #002060;
  padding: 10px 24px;
  transition-property: all;
  transition-duration: 0.5s;
}
#top .box_n02 p.news-link a:hover {
  color: #fff;
  border: 1px solid #fff;
  background: #002060;
}
#top .box_n03 {
  margin-bottom: 80px;
}
#top .box_n03 h2.title {
  font-weight: bold;
  font-size: 2rem;
  line-height: 3rem;
  padding-bottom: 16px;
}
#top .box_n03 h2.title span {
  display: block;
  font-size: 1.4rem;
}
#top .box_n03 .box-l {
  background: url("../img/top/vis_01_about.jpg");
  background-size: cover;
  width: 50%;
  height: auto;
  /*height: 32vh;*/
  padding: 40px;
}
#top .box_n03 .box-r {
  background: url("../img/top/vis_02_concept.jpg");
  background-size: cover;
  width: 50%;
  height: auto;
  /*height: 32vh;*/
  padding: 40px;
}
#top .box_n03 .box-r h2 {
  color: #fff;
}
#top .box_n03 .box-l p {
  margin-bottom: 16px;
}
#top .box_n03 .box-r p {
  margin-bottom: 16px;
  color: #fff;
}
#top .box_n03 .box-l p a {
  color: #333333;
  width: 100%;
  margin: auto;
  display: block;
  border: 1px solid #333333;
  padding: 8px 24px;
  transition-property: all;
  transition-duration: 0.5s;
}
#top .box_n03 .box-l p a:hover {
  color: #FFFFFF;
  border: 1px solid #333333;
  background: #333333;
}
#top .box_n03 .box-r p a {
  color: #fff;
  width: 100%;
  margin: auto;
  display: block;
  border: 1px solid #fff;
  padding: 8px 24px;
  transition-property: all;
  transition-duration: 0.5s;
}
#top .box_n03 .box-r p a:hover {
  color: #002060;
  border: 1px solid #fff;
  background: #fff;
}
#top .slide {
  margin-bottom: 80px;
}
#top .box_n04 {
  margin-bottom: 80px;
}
#top .box_n04 h2.title {
  font-weight: bold;
  font-size: 2rem;
  line-height: 3rem;
  padding-bottom: 16px;
}
#top .box_n04 h2.title span {
  display: block;
  font-size: 1.4rem;
}
/* 親要素をフレックスボックスにして高さを揃える */
#top .box_n04 .flex2 {
  display: flex;
  align-items: stretch; /* 左右の要素の高さを強制的に揃える設定（デフォルト） */
}
#top .box_n04 .box-l {
  width: 50%;
}
#top .box_n04 .box-l img{
  width: 100%;
  height: 100%;       /* 高さを .box-l（つまり .box-r と同じ高さ）に合わせる */
  object-fit: cover;  /* 画像の比率を保ったまま領域を埋める（はみ出しは自動カット） */
  display: block;
}
#top .box_n04 .box-r {
  width: 50%;
  background: #efefef;
  padding: 40px;
}
#top .box_n04 .box-r h2 {}
#top .box_n04 .box-r p {
  margin-bottom: 16px;
}
/* 最後のpタグ（ボタン）のmargin-bottomをリセット */
#top .box_n04 .box-r p:last-child {
  margin-bottom: 0;
}
#top .box_n04 .box-r p a {
  width: 100%;
  margin: auto;
  display: block;
  border: 1px solid #333;
  padding: 8px 24px;
  transition-property: all;
  transition-duration: 0.5s;
}
#top .box_n04 .box-r p a:hover {
  color: #FFFFFF;
  border: 1px solid #333;
  background: #333;
}
#top .news {
  padding: 80px 0px;
}
#top .news .heading {
  margin-bottom: 40px;
}
#top .news h2.title {
  font-weight: bold;
  font-size: 2rem;
  line-height: 3rem;
}
#top .news h2.title span {
  display: block;
  font-size: 1.4rem;
}
#top .news .news-contents {
  margin: 0 auto 20px;
}
#top .news .news-contents .news-list {
  padding: 0 20px 20px 20px;
}
#top .news .news-contents .news-list img {
  width: 100%;
  height: auto;
  padding-bottom: 20px;
}
#top .news .news-contents .news-list h3 {
  font-size: 1.6rem;
  text-align: left;
  margin-bottom: 20px;
}
#top .news .news-contents .news-list p.tx_01 {
  text-align: left;
  padding-bottom: 20px;
}
#top .news .news-contents .news-list p.tx_02 a {
  display: block;
  border: 1px solid #333;
  padding: 10px 24px;
  transition-property: all;
  transition-duration: 0.5s;
}
#top .news .news-contents .news-list p.tx_02 a:hover {
  color: #fff;
  border: 1px solid #fff;
  background: #002060;
}
#top .news p.news-link a {
  margin: auto;
  display: block;
  color: #333;
  border: 1px solid #333;
  padding: 10px 24px;
  transition-property: all;
  transition-duration: 0.5s;
}
#top .news p.news-link a:hover {
  color: #fff;
  border: 1px solid #fff;
  background: #002060;
}
#top .box_n08 {
  background: #eee;
  margin-bottom: 0px !important;
  padding: 80px;
}
#top .box_n08 h2.title {
  font-weight: bold;
  font-size: 2rem;
  line-height: 3rem;
  padding-bottom: 16px;
}
#top .box_n08 h2.title span {
  display: block;
  font-size: 1.4rem;
}
#top .box_n08 p.tx {
  margin-bottom: 40px;
}
#top .box_n08 .box-01, #top .box_n08 .box-02 {
  width: 48%;
}
#top .box_n08 .box-01 img, #top .box_n08 .box-02 img {
  width: 100%;
  height: auto;
  padding-bottom: 20px;
}
#top .box_n08 .box-01 p.tx_01, #top .box_n08 .box-02 p.tx_01 {
  padding-bottom: 20px;
}
#top .box_n08 .box-01 p.tx_02 a, #top .box_n08 .box-02 p.tx_02 a {
  display: block;
  text-align: center;
  border: 1px solid #333;
  padding: 8px 20px;
  transition-property: all;
  transition-duration: 0.5s;
}
#top .box_n08 .box-01 p.tx_02 a:hover, #top .box_n08 .box-02 p.tx_02 a:hover {
  color: #fff;
  border: 1px solid #fff;
  background: #333;
}

/* セカンドページのボックス設定 */
/* 親要素をフレックスボックスにして高さを揃える */
#top .box_second01 .flex2 {
  display: flex;
  align-items: stretch; /* 左右の要素の高さを強制的に揃える設定（デフォルト） */
}
#top .box_second01 .box-l {
  width: 50%;
  padding: 0 20px;
}
#top .box_second01 .box-l h3 {
  font-size: 1.6rem;
  font-weight: bold;
  padding-bottom: 16px;
}
#top .box_second01 .box-l p {
  margin-bottom: 16px;
  padding: 0;
}
/* 最後のpタグ（ボタン）のmargin-bottomをリセット */
#top .box_second01 .box-l p:last-child {
  margin-bottom: 0;
}
#top .box_second01 .box-r {
  width: 50%;
}
#top .box_second01 .box-r img{
  width: 100%;
  height: 100%;       /* 高さを .box-l（つまり .box-r と同じ高さ）に合わせる */
  object-fit: cover;  /* 画像の比率を保ったまま領域を埋める（はみ出しは自動カット） */
  display: block;
}
#top .box_second-bg{
  background: #efefef;
  padding: 40px 0;
}
/* セカンドページの事業案内設定 */
/*#top .box_second02 .service-con {
  width: 25%; /* 4カラム */
  /*aspect-ratio: 1 / 1; /* 正方形を維持 */
  /*box-sizing: border-box;
  /* ボーダーの重なりを防ぐ設定 */
  /*border: 1px solid #002060;
  margin-right: -1px;
  margin-bottom: -1px;
}*/
#top .box_second02 .service-con {
/* ★横幅の計算式：(100% - 隙間3つ分の72px) / 4 */
  width: calc((100% - 24px * 3) / 4); 
  aspect-ratio: 1 / 1; /* 正方形を維持 */
  box-sizing: border-box;
  
  /* ★ボーダー設定：4辺すべてにしっかりと線を引く */
  border: 1px solid #002060;
  
  /* 重なり防止用のネガティブマージンは不要になったので削除 */
  /* margin-right: -1px; */
  /* margin-bottom: -1px; */
}
#top .box_second02 .service-con a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease 0s;
}
#top .box_second02 .service-con a:hover {
  opacity: 0.5;
}
#top .box_second02 .service-con h3 img {
  max-width: 80px; /* アイコンサイズは適宜調整 */
  height: auto;
}
#top .box_second02 .service-con p {
  text-align: center;
}
/* -----topここまで----- */
/* -----subpage Common style----- */
.second .container {
  /*width: 1040px;
	margin: 0 auto;*/
}
.second .mainvis-sub {
  background: #334454;
  height: 24vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.second .main-title {}
.second .main-title p {
  color: #333;
}
.second .main-title h1 {
  font-size: 2.8rem;
  color: #fff;
  text-align: center;
}
.second .main-title h1 span {
  display: block;
  font-size: 1.6rem;
  text-align: center;
}
.second h2.title img {
  vertical-align: bottom;
  margin-right: 8px;
  width: 4%;
  height: auto;
}
.second .box_second01 h4 {
  font-size: 1.6rem;
  font-weight: bold;
  color: #002060;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid #ccc;
}
.title-area {
  display: flex; /* 横並び */
  align-items: center; /* 上下中央揃え */
  gap: 20px; /* アイコンとテキストの間隔 */
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid #333;
}
.title-icon {
  flex-shrink: 0; /* 画像の比率を維持 */
  width: 60px; /* アイコンの横幅 */
}
.title-icon img {
  width: 100%;
  height: auto;
  display: block;
}
.title-content h2 {
  font-size: 2.2rem !important; /* 日本語見出し */
  margin: 0;
  line-height: 1.2;
  color: #333;
}
.title-content .en {
  font-size: 1.4rem; /* 英語サブタイトル */
  color: #333;
  letter-spacing: 0.05em;
}
.second .main-contents .top-contents-box {
  margin-bottom: 40px;
}
.second .top-contents-box .box-l, .second .top-contents-box .box-r {
  width: 50%;
}
.second .top-contents-box .box-l img, .second .top-contents-box .box-r img {
  width: 100%;
  height: auto;
}
.second .top-contents-box .box-l p {
  padding: 0 20px;
}
.second .top-contents-box .point-box {
  border: 4px solid #ccc;
  padding: 20px;
  margin-bottom: 40px;
  position: relative;
}
.second .top-contents-box .point-box img {
  position: absolute;
  top: 4px;
  left: 4px;
}
.second .top-contents-box .point-box h2.title {
  font-size: 2rem !important;
  font-weight: bold;
  border-bottom: 1px dotted #333;
  margin-bottom: 8px;
}
.second .top-contents-box .mmpg-box {
  border: 4px solid #ccc;
  padding: 20px;
  margin-bottom: 40px;
}
.second .top-contents-box .mmpg-box h2.title {
  font-size: 2rem !important;
  font-weight: bold;
  border-bottom: 1px dotted #333;
  margin-bottom: 8px;
}
.second .top-contents-box .mmpg-box p {
  margin-bottom: 20px;
}
.second .top-contents-box .mmpg-box ul {
  display: flex;
  justify-content: space-around;
}
.second .top-contents-box .mmpg-box ul li {
  width: 16%;
}
.second .top-contents-box .mmpg-box ul li img {
  width: 100%;
  height: auto;
}
.second .box_n03 .inner {
  width: 100% !important;
  margin: auto;
}
/* -----subpage Common styleここまで----- */

/* -----establish----- */
.flow-box{
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px dotted #ccc;
}
.step-title {
  display: flex;
  align-items: center; /* 左右のテキストの上下中央を揃える */
  font-size: 20px;     /* 右側テキストのサイズ（適宜調整） */
  color: #333;
  margin: 0 0 20px 0;
  padding: 0;
  font-weight: bold;
  border-bottom: none !important;
}

/* 左側のネイビーボックス（STEP.01部分） */
.step-title::before {
  content: attr(data-step); /* HTMLのdata-stepに書いた文字を表示 */
  display: flex;
  align-items: center;
  justify-content: center;
  
  /* ボックスのサイズと余白 */
  width: 110px;            /* ボックスの横幅 */
  height: 44px;            /* ボックスの高さ */
  margin-right: 20px;      /* 右側テキストとの間の隙間 */
  
  /* デザイン・色 */
  background-color: #002060; /* 濃いネイビー */
  color: #ffffff;          /* 文字色は白 */
  font-size: 16px;         /* STEP.01の文字サイズ */
  font-family: sans-serif; /* 必要に応じてフォント指定 */
  font-weight: bold;
  letter-spacing: 0.05em;
  flex-shrink: 0;          /* 画面が狭くなってもボックスが潰れないように固定 */
}
/* -----establishここまで----- */

/* -----startup loan----- */
/* セクション全体のスタイリング */
.loan-record-section {
  max-width: 1040px; /* 既存のinnerサイズに合わせて調整してください */
  margin: 0 auto;
  padding: 40px 20px 0;
  font-family: sans-serif;
}
/* ★レスポンシブの肝：横スクロールを許可するラッパー */
.table-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch; /* iOSでのスクロールを滑らかにする */
  margin-bottom: 20px;
}
/* テーブル構造の定義 */
.loan-table {
  width: 100%;
  border-collapse: collapse; /* 線の重複を防ぐ */
  background-color: #fff;
  font-size: 15px;
}
/* ヘッダー・セルの共通共通設定 */
.loan-table th,
.loan-table td {
  border: 1px solid #e0e0e0; /* 薄いグレーの境界線 */
  padding: 12px 10px;
  text-align: center; /* デザイン通り中央揃え */
  vertical-align: middle;
  color: #666;
}
/* ヘッダー固有の設定 */
.loan-table th {
  background-color: #ffffff;
  color: #888888;
  font-weight: normal;
}
/* 各列の幅（PC表示時のバランス崩れ防止） */
.loan-table .col-no { width: 10%; }
.loan-table .col-type { width: 30%; }
.loan-table .col-amount { width: 30%; }
.loan-table .col-bank { width: 30%; }
/* 行のホバー効果（運用時、見やすさが格段に上がります） */
.loan-table tbody tr:hover {
  background-color: #f9f9f9;
}
/* -----startup loanここまで----- */

/* -----access----- */
.second .access table {
  width: 100%;
}
.second .access table, .second .access table td, .second .access table th {
  border: 1px solid #ccc;
}
.second .access table td, .second .access table th {
  padding: 10px 20px;
}
.second .access table th {
  background: #efefef;
  text-align: left;
  width: 40%;
}
.second .access table td {
  width: 60%;
}
.second .access p {
  margin-top: 20px
}
.second .access p img {
  width: 100%;
  height: auto;
}
/* -----accessここまで----- */
/* -----news----- */
.second .news-box ul li a {
  display: block;
  font-size: 1.4rem;
  border-bottom: 1px dotted #ccc;
  padding: 20px 20px;
  transition: all .3s ease 0s;
}
.second .news-box ul li a:hover {
  color: #fff;
  background: #002060;
  border-bottom: 1px solid #002060;
}
.second .news-box p img {
  width: 100%;
  height: auto;
}
.second .news-box p a {
  width: 100%;
  margin: auto;
  display: block;
  text-align: center;
  color: #333;
  border: 1px solid #333;
  padding: 10px;
  transition-property: all;
  transition-duration: 0.5s;
}
.second .news-box p a:hover {
  color: #fff;
  border: 1px solid #fff;
  background: #002060;
}
.second .news-contents p img {
  width: 100%;
  height: auto;
}
.second .pagenation {
  margin: 20px 0 0 0;
}
.second .pagenation ul {
  display: flex;
  justify-content: space-around;
}
.second .pagenation ul li {
  font-size: 1.4rem;
}
/* -----newsここまで----- */
/* -----voice----- */
.second .voice-imgbox {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.second .voice-imgbox .box-l,
.second .voice-imgbox .box-r{
	width: 48%;
}
.second .voice-imgbox .box-l img,
.second .voice-imgbox .box-r img{
	width: 100%;
	height: auto;
}
/* -----voiceここまで----- */
/* -----qa----- */
.second .faq-detail {
  margin-bottom: 40px;
}
.second .faq-detail dt {
  border: 1px solid #ccc;
  text-align: left;
}
.second .faq-detail dd {
  text-align: left;
}
/* -----qaここまで----- */
/* -----contact----- */
select {
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  text-indent: 1em;
  background-size: 20px;
  background-position: right center;
  height: 40px;
  line-height: 3rem;
  font-size: 1.4rem;
  vertical-align: middle;
  border: 1px solid #CCC;
  margin-bottom: 20px;
  border-radius: 0px;
  width: 100%;
}
input {
  text-indent: 1em;
  height: 40px;
  line-height: 3rem;
  font-size: 1.4rem;
  vertical-align: middle;
  border: 1px solid #CCC;
  margin-bottom: 20px;
  border-radius: 0px;
  width: 100%;
}
textarea {
  text-indent: 1em;
  height: 140px;
  line-height: 3rem;
  font-size: 1.4rem;
  vertical-align: middle;
  border: 1px solid #CCC;
  margin-bottom: 20px;
  border-radius: 0px;
  width: 100%;
}
.contact table {
  margin: 20px auto;
  width: 100%;
}
.contact th {
  font-size: 1.4rem;
  text-align: left;
  vertical-align: top;
  width: 24%;
}
.contact td {
  width: 76%;
}
p.policy-link {
  margin-bottom: 20px;
  text-align: center;
}
p.form-btn {
  display: flex;
  justify-content: space-between;
}
p.form-btn input {
  background: #002060;
  color: #fff;
  transition: all .2s ease;
  border: 1px solid #002060;
}
p.form-btn input:hover {
  background: #fff;
  border: 1px solid #002060;
  color: #002060;
}
.check {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.check label {
  font-size: 1.4rem;
  padding: 10px;
  transition: .3s ease-in-out;
}
.check input {
  height: auto;
  margin-bottom: 0;
  vertical-align: baseline;
  width: auto;
}
/* -----contactここまで----- */
/* -----responsive----- */
@media only screen and (max-width: 1023px) {
  header {
    height: 80px;
  }
  header .inner {
    padding: 0 40px;
  }
  header h1 img {
    width: 80%;
  }
  header h2 img {
    width: 80%;
  }
	nav ul {
		padding-top: 52px;
	}
	nav ul li {
		padding: 16px 0;
	}
	nav ul li a {
		display: block;
		font-size: 1.6rem;
	}
  #main {
    margin: 0;
  }
  #main h2 {
    font-size: 2rem;
  }
  #main h3 {
    font-size: 1.6rem;
  }
  .container {
    width: 100%;
    flex-direction: column;
  }
  .main-contents {
    width: 100%;
  }
  .inner980 {
    width: 88%;
  }
  #pagetop {
    margin-bottom: 0;
  }
  footer {
    padding: 40px;
  }
  footer .heading {
    margin-bottom: 0px;
  }
  footer .heading h2 img {
    width: 40%;
    height: auto;
  }
  footer .f-box .box-l {
    padding: 20px 10px;
  }
  footer .f-box .box-r {
    padding: 20px 10px;
  }
  .pankuzu {
    padding: 0 40px;
  }
  .inner1040 {
    width: 90%;
  }
	.open {
	  cursor: pointer;
	  position: absolute;
	  top: 10px;
	  right: 10px;
	  display: block;
	  z-index: 100;
	  width: 40px;
	  height: 40px;
	  /*border: 1px solid #CCC;
	  border-radius: 2px;*/
	}
	.open span, .open::before, .open::after {
	  content: "";
	  position: absolute;
	  top: 30px;
	  left: 16%;
	  width: 64%;
	  border-bottom: 2px solid #fff;
	  transition: transform .5s;
	}
  #top .mainvis {
	height: 56%;
    padding: 0px;
	margin-right: 0px;
    margin-bottom: 40px;
  }
  #top .mainvis p {
    /*top: 80px;*/
    left: 16px;
    bottom: 16px;
  }
  #top .mainvis p img {
    width: 80%;
    height: auto;
  }
	#top .mainvis .inner h2.m_01 {
		padding: 0px 16px;
	}
	#top .mainvis .inner h2.m_02 {
		padding: 0px 16px;
		margin-bottom: 64px;
	}
  #top .main-contents .top-contents-box {
    margin-bottom: 80px;
  }
  #top .box_n01 ul li {
    font-size: 1.4rem;
  }
  #top .box_n02 {
    padding: 40px;
  }
	#top .box_n02 .box-l, #top .box_n02 .box-r {
		width: 100%;
	}
	#top .box_n02 .box-l {
		margin-bottom: 80px;
	}
  #top .box_n02 .support {
    padding: 20px 0px;
  }
  #top .box_n02 .support p {
    width: 22%;
    padding: 16px;
  }
  #top .box_n03 {
    padding: 40px;
  }
  #top .box_n03 .inner {
    width: 88%;
  }
	#top .box_n03 .box-l {
		width: 100%;
		height: auto;
		/*height: 24vh;*/
	}
	#top .box_n03 .box-r {
		width: 100%;
		height: auto;
		/*height: 24vh;*/
	}
  #top .box_n04 {
    padding: 40px;
  }
  #top .box_n04 .magazine {
    padding: 40px 0px;
  }
	#top .box_n04 .box-l {
		width: 100%;
	}
	#top .box_n04 .box-r {
		width: 100%;
	}
  #top .box_n05 {
    padding: 0 40px;
  }
  #top .box_n05 .point_contents {
    flex-wrap: wrap;
  }
  #top .box_n05 .point_contents .point_box {
    width: 46%;
    margin-bottom: 20px;
  }
  #top .box_n06 {
    padding: 0 40px;
  }
  #top .box_n06 .advantage_contents {
    width: 88%;
  }
  #top .box_n06 .advantage_contents a .advantage_box .box-l {
    width: 50%;
  }
  #top .box_n06 .advantage_contents a .advantage_box .box-r {
    width: 50%;
    padding: 20px 20px;
  }
  #top .box_n07 {
    padding: 40px;
  }
  #top .news {
    padding: 100px 40px 0 40px;
  }
  #top .news .news-contents {
    width: 100%;
  }
  #top .news p.news-link a {
    width: 100%;
  }
  #top .box_n08 {
    padding: 100px 40px;
  }
  #top .box_n08 .heading p {
    text-align: left;
  }
	#top .box_n08 .box-01, #top .box_n08 .box-02 {
		width: 100%;
	}
	#top .box_n08 .box-01 {
		margin-bottom: 80px;
	}
  #top .box_n09 {
    padding: 40px;
  }
  #top .box_n09 .heading p {
    text-align: left;
  }
  #top .box_n09 p a {
    width: 100%;
  }
  #top .news .heading {
    margin-bottom: 20px;
  }
  #top .box_n10 {
    padding: 40px;
  }
  #top .box_n02 .check-box {
    width: 48%;
  }
  #top .box_n03 .feature-box {
    width: 48%;
  }
  #top .box_n04 .can-box {
    width: 48%;
  }
  #top .box_n04 .can-box img.icon {
    left: 120px;
  }
	#top .box_second01 .box-l {
		width: 100%;
		margin-bottom: 40px;
	}
	#top .box_second01 .box-r {
		width: 100%;
	}
	#top .box_second-bg {
		padding: 80px 0 40px 0;
	}
	.second .mainvis-sub {
		height: 16vh;
		margin-bottom: 40px;
	}
	#top .box_second02 .service-con {
		width: calc((134% - 24px * 3) / 4);
	}
  .second .mainvis-sub_01, .second .mainvis-sub_02, .second .mainvis-sub_03, .second .mainvis-sub_04, .second .mainvis-sub_05, .second .mainvis-sub_06, .second .mainvis-sub_07 {
    height: 24vh;
    margin-bottom: 40px;
  }
  .second .main-title {
    width: 80%;
    margin: auto;
  }
  .second .main-title h1 {
    font-size: 2rem;
  }
  .second .container {
    width: 96%;
  }
  .second .staffbox {
    width: 48%;
  }
  .contact table {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  body, th, td, h1, h2, h3, h4, h5, h6, pre, input, textarea, option, div, p, dt, dd, li, address {
    font-size: 1.6rem;
  }
  .mb0 {
    margin-bottom: 0 !important;
  }
  .mb40 {
    margin-bottom: 40px;
  }
  header {
    height: 60px;
  }
  header .inner {
    padding: 0 10px;
  }
  header h1 {
    height: 60px;
  }
  header h1 img {
    width: 72%;
    height: auto;
  }
  header h2 {
    display: none;
  }
  nav ul {
    padding-top: 52px;
  }
    .open {
        top: 0px;
    }
  #main {
    margin: 0 10px 40px;
  }
  #main h2 {
    font-size: 1.6rem !important;
  }
  #main h3 {
    font-size: 1.6rem;
  }
  .inner980 {
    width: 90%;
  }
  .button-1 {
    width: 100%;
    /*width: 70%;*/
  }
  .button-1 a {
    font-size: 1.2rem;
  }
  .flex {
    flex-direction: column;
  }
  .flex2 {
    flex-direction: column;
  }
  .flex3 {
    flex-direction: column;
  }
  footer .f-box {
    flex-wrap: wrap;
  }
  footer .f-box .box-l {
    width: 100%;
    padding: 20px 0;
    flex-direction: column;
  }
  footer .f-box .box-l .box-l_01 {
    width: 100%;
  }
  footer .f-box .box-l .box-l_02 {
    width: 100%;
  }
  footer .f-box .box-r {
    width: 100%;
    padding: 20px;
  }
	footer .f-box .box-l ul li a {
		display: block;
		padding: 8px 0;
		font-size: 1.6rem;
	}
  .footer_fix_btn {
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    background: #f5821f;
    box-shadow: 0px -2px 11px 0px #ccc;
  }
  .footer_fix_btn ul {
    display: flex;
  }
  .footer_fix_btn ul li {
    width: 100%;
    border-right: 1px solid #eeeeee;
    background-color: #f5821f;
  }
  .footer_fix_btn ul li + li {
    border-right: 1px solid #eeeeee;
  }
  .footer_fix_btn ul li a {
    display: block;
    padding: 10px 0 0;
    width: 100%;
    text-decoration: none;
  }
  .footer_fix_btn ul li a img {
    width: 60%;
    height: auto;
  }
  .pankuzu {
    padding: 0 8px;
  }
  .spview {
    display: block;
  }
  .pcview {
    display: none !important;
  }
  #pageTop {
    position: fixed;
    bottom: 80px;
    right: 20px;
  }
  #popup {
    display: none !important;
  }
	#top .mainvis {
        height: 48% !important;
    }
  #top .mainvis p {
    /*top: 202px;*/
    left: 10px;
    bottom: 16px;
  }
  #top .mainvis p img {
    width: 94%;
    height: auto;
  }
	#top .vegas-wrapper {
		display: flex;
		align-items: flex-end;
		width: 96%;
		/* margin: 0 40px; */
		margin-left: 0px;
		margin-right: 0px;
	}
	#top .mainvis .inner h2 {
		margin-bottom: 24px;
    }
	#top .mainvis .inner h2.m_01 {
        padding: 8px 16px;
        font-size: 2.2rem;
		line-height: 1.4;
		background: rgba(0, 32, 96, .6);
    }
	#top .mainvis .inner h2.m_02 {
		display: none;
        /*padding: 0px 16px;
        margin-bottom: 32px;
        font-size: 1.2rem;*/
    }
    #top .main-contents .top-contents-box {
        margin-bottom: 40px;
    }
	#top .box_n00 {
		padding: 40px 0;
	}
  #top .box_n00 .tx-box p {
    text-align: left;
  }
  #top .box_n01 .heading {
    margin-bottom: 20px;
  }
	#top .box_n01 .service-con {
		width: 50%;
	}
  #top .box_n02 .heading {
    margin-bottom: 20px;
  }
  #top .box_n02 .check-box {
    width: 100%;
  }
  #top .box_n03 .feature-box {
    width: 100%;
  }
	#top .box_n03 .box-l {
        height: auto;
        /*height: 38vh;*/
    }
	#top .box_n03 .box-r {
        height: auto;
        /*height: 38vh;*/
    }
  #top .box_n04 .can-box {
    width: 100%;
  }
  #top .box_n02 .icon {
    width: 16%;
    text-align: left;
  }
  #top .box_n02 .icon img {
    width: 50%;
    height: auto;
    vertical-align: text-bottom;
  }
  #top .box_n02 .tx {
    width: 100%;
  }
  #top .box_n03 {
    padding: 40px 0;
  }
  #top .box_n04 .can-box img.icon {
    /*left: 140px;*/
    left: 50%;
    transform: translate(-50%);
    -webkit-transform: translate(-50%);
    -ms-transform: translate(-50%);
  }
  #top .box_n04 .can-box {
    padding: 20px 20px 20px 20px;
  }
  #top p.sub_txt {
    width: 90%;
    margin: 0 auto 20px;
    text-align: center;
  }
  #top .top-contents-box .box-01 {
    width: 100%;
  }
  #top .top-contents-box .box-02 {
    width: 100%;
    margin-bottom: 20px;
  }
  #top .heading h2 img {
    width: 56%;
    height: auto;
  }
  #top .heading p {
    text-align: left;
  }
  #top .box_n01 .box-02 p.tx {
    font-size: 1.4rem;
  }
  #top .box_n02 {
    padding: 20px 0;
  }
  #top .box_n02 p {
    text-align: left;
  }
  #top .box_n02 .support p {
    width: 48%;
    padding: 8px;
  }
  #top .box_n03 .inner {
    width: 100%;
  }
  #top .box_n04 {
    padding: 20px 0;
  }
  #top .box_n04 .magazine {
    padding: 10px 0px;
  }
  #top .box_n04 .magazine p {
    width: 50%;
    padding: 16px;
  }
  #top .box_n05 {
    padding: 0 10px;
  }
  #top .box_n06 {
    padding: 0 10px;
  }
  #top .box_n06 .advantage_contents a .advantage_box {
    flex-wrap: wrap;
  }
  #top .box_n06 .advantage_contents a .advantage_box .box-l {
    width: 100%;
  }
  #top .box_n06 .advantage_contents a .advantage_box .box-r {
    width: 100%;
    padding: 20px 20px;
  }
  #top .box_n07 {
    padding: 20px;
  }
  #top .box_n07 .heading {
    margin-bottom: 20px;
  }
  #top .box_n07 .faq-detail dt {
    font-size: 2rem;
    /*font-size: 1.2rem;*/
  }
  #top .news {
    padding: 40px 10px 0 10px;
  }
  #top .box_n08 {
    padding: 20px;
  }
  #top .box_n08 h2 {
    padding-bottom: 10px;
  }
  #top .box_n08 .box-01 {
    margin-bottom: 40px;
  }
  #top .box_n09 {
    padding: 20px;
  }
  #top .box_n09 h2 {
    padding-bottom: 10px;
  }
  #top .box_n10 {
    padding: 20px;
  }
  #top .box_n10 h2 {
    padding-bottom: 10px;
  }
	#top .box_second02 .service-con {
		width: 46%;
	}
	#top .box_second02 .service-con a {
		height: 100%;
		padding: 10px;
	}
	.loan-record-section {
		padding: 40px 0;
	}
  .cd-breadcrumb {
    padding: 0 10px;
  }
  .second .mainvis-sub_01, .second .mainvis-sub_02, .second .mainvis-sub_03, .second .mainvis-sub_04, .second .mainvis-sub_05, .second .mainvis-sub_06, .second .mainvis-sub_07 {
    height: 16vh;
    /*height: 32vh;*/
    margin-bottom: 40px;
  }
  .second .main-title h1 {
    font-size: 1.8rem;
    line-height: 1.6;
    /*padding-bottom: 20px;*/
  }
  .second .titlebox {
    margin-bottom: 20px;
  }
  .second .titlebox img {
    width: 8%;
  }
  .second .top-contents-box .box-l, .second .top-contents-box .box-r {
    width: 100%;
  }
  .second .top-contents-box .box-l p {
    padding: 0 20px 20px;
  }
  .second .access table th {
    text-align: left;
  }
  .second .access table td, .second .access table th {
    display: block;
    border: none;
    width: 100%;
  }
  .second .gallery ul li {
    width: 49%;
  }
  .second .map2 p img {
    width: 100%;
  }
  .second .staffbox {
    width: 100%;
  }
  .second h2.title img {
    width: 9%;
  }
  .contact th {
    display: block;
    width: 100%;
  }
  .contact td {
    display: block;
    width: 100%;
  }
  p.policy-link {
    text-align: left;
  }
  /*hover解除*/
  .eff-0, .eff-1, .eff-2 {
    display: none;
  }
}
/* ---------------------------------------------------------------------------------------responsiveここまで */