@charset "UTF-8";

:root { 
    --base-color: #000;
    --link-color: #666;
    --linkhover-color: #3366FF; ;
    --back-color: #003399;
    --border-color: #ccc;
    --white-color: #fff;
}

img {
    display: block;
    box-sizing: border-box;
    max-width: 100%;
    height: auto; /* 高さ自動 */
}

/* Ensure images inside columns never overflow their parent */
.col img,
.item-list .item img,
.p_item-list .item img,
.slider-item img {
    max-width: 100%;
    height: auto;
    display: block;
    box-sizing: border-box;
}

@media screen and (min-width: 960px) {
  img {
    max-width: 960px;
  }
}
a {
    display:block;
    color: var(--base-color);
    text-decoration-line: none;
}
a:hover { 
    color: var(--linkhover-color);
}
a img {
    margin-bottom: 1rem;
}
a img:hover {
	opacity: 0.8;
}
.blueback {
	background-color: var(--back-color);
	color: var(--white-color);
	padding: 1rem;
}
.underline {
	border-bottom: 3px solid var(--back-color);
	padding-bottom: 0.5rem;
}
.center {
	text-align: center;
}

/*オーバーヘッダー
-------------------------------------*/
.mypage-over-header
{
    background-color: var(--back-color);
	color: var(--white-color);
    display: flex;
    height: 2.5rem;
    
}
.mypage-over-header h1 {
    text-align: left;
    font-size: 1.3rem;
    padding-left: 5px;
    padding-top: 5px;
}

/*ヘッダー
-------------------------------------*/
.head {
	display: flex;
    flex-direction: row;
    padding: 1rem 0 0 0;
}
.head h1 { 
    padding: 1rem 0;
}
.head h1 a {
    color: #2589d0;
}
.telbox {
	margin-left: auto;
	font-size: 3.0rem;
	padding: 1rem 0 0 0;
}
.menu {
	background-color: var(--back-color);
}
nav ul {
	display: flex;
    flex-direction: row;
    justify-content: space-around;
    list-style: none;
	margin-bottom: 0;
}
nav li {
    flex: 1 0 auto;
	margin-bottom: 0;
}
nav li a {
    text-decoration: none;
    text-align: center;
	color: var(--white-color);
}
nav a:hover {
    background-color: var(--linkhover-color);   
	color: var(--white-color);
}
nav a {
    padding: 2rem 1rem;
	display: block;
}

@media screen and (min-width: 769px){
/* PC時はMENUボタンを非表示 */
#open,#close {
    display: none !important;
}

#navi {
    display: block !important;
}
}

@media screen and (max-width: 768px){
.head {
	flex-direction: column;
    text-align: left;
    margin-bottom: 20px;
}
.telbox {
	margin-left: 0;
	text-align: center;
}
.head #open,#close  {
    position: absolute;
    top: 20px;
    right: 12px;
    }
nav ul {
	flex-direction: column;
}

nav li {
	padding-top: 0;
	border-bottom: 1px solid var(--border-color);
	margin-bottom: 0;
}
/* スマホ時はMENUボタンを表示 */
#open {
    display: block;
    background: url(../img/button.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 50px;
    height: 50px;
    border: none;
    position: absolute;
    top: 20px;
    right: 12px;
}
#close  {
    display: block;
    background: url(../img/button2.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 50px;
    height: 50px;
    border: none;
    position: absolute;
    top: 20px;
    right: 12px;
}
/* スマホ時はメニューを非表示 */
#navi {
    display: none;
}
}


/*トップコンテナ
-------------------------------------*/
.top-container a:hover {
    color: var(--base-color);
}
.top-container a img:hover {
    opacity: 1;
}

/*スライダーコンテナ
-------------------------------------*/
@keyframes horizontal-animation {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

.slider-container {
  display: flex;
  overflow: hidden;
}

.slider-wrapper {
  display: flex;
  animation: horizontal-animation 30s linear infinite;
}

.slide {
  position: relative;
  width: 400px;
  margin-right: 20px;
}

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

@media (hover: hover) {
  .slider-container:hover .slider-wrapper {
    animation-play-state: paused;
  }
}

/*メインコンテンツ
-------------------------------------*/
main {
    margin: 2rem 0 5rem 0;
}

.smain {
    margin: 5rem 0 5rem 0;
}

/*メールフォーム
-------------------------------------*/
.Form {
  margin-left: auto;
  margin-right: auto;
  max-width: 720px;
}
@media screen and (max-width: 480px) {
  .Form {
    margin-top: 40px;
  }
}
.Form-Item {
  border-top: 1px solid #ddd;
  padding-top: 24px;
  padding-bottom: 24px;
  width: 100%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 480px) {
  .Form-Item {
    padding-left: 14px;
    padding-right: 14px;
    padding-top: 16px;
    padding-bottom: 16px;
    flex-wrap: wrap;
  }
}
.Form-Item:nth-child(5) {
  border-bottom: 1px solid #ddd;
}
.Form-Item-Label {
  width: 100%;
  max-width: 248px;
  letter-spacing: 0.05em;
  font-weight: bold;
  font-size: 18px;
}
@media screen and (max-width: 480px) {
  .Form-Item-Label {
    max-width: inherit;
    display: flex;
    align-items: center;
    font-size: 15px;
  }
}
.Form-Item-Label.isMsg {
  margin-top: 8px;
  margin-bottom: auto;
}
@media screen and (max-width: 480px) {
  .Form-Item-Label.isMsg {
    margin-top: 0;
  }
}
.Form-Item-Label-Required {
  border-radius: 6px;
  margin-right: 8px;
  padding-top: 8px;
  padding-bottom: 8px;
  width: 48px;
  display: inline-block;
  text-align: center;
  background: #f00303d8;
  color: #fff;
  font-size: 14px;
}
@media screen and (max-width: 480px) {
  .Form-Item-Label-Required {
    border-radius: 4px;
    padding-top: 4px;
    padding-bottom: 4px;
    width: 32px;
    font-size: 10px;
  }
}
.Form-Item-Input {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 48px;
  flex: 1;
  width: 100%;
  max-width: 410px;
  background: #f0f8ff;
  font-size: 18px;
}
@media screen and (max-width: 480px) {
  .Form-Item-Input {
    margin-left: 0;
    margin-top: 18px;
    height: 40px;
    flex: inherit;
    font-size: 15px;
  }
}
.Form-Item-Textarea {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 216px;
  flex: 1;
  width: 100%;
  max-width: 410px;
  background: #f0f8ff;
  font-size: 18px;
}
@media screen and (max-width: 480px) {
  .Form-Item-Textarea {
    margin-top: 18px;
    margin-left: 0;
    height: 200px;
    flex: inherit;
    font-size: 15px;
  }
}
.Form-Btn {
  border-radius: 6px;
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  width: 280px;
  display: block;
  letter-spacing: 0.05em;
  background: blue;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
}
@media screen and (max-width: 480px) {
  .Form-Btn {
    margin-top: 24px;
    padding-top: 8px;
    padding-bottom: 8px;
    width: 160px;
    font-size: 16px;
  }
}

/*検索フォーム
-------------------------------------*/
.search {
  margin-top: 2rem;
  border-radius: 25px;
  background: #f0f8ff;
  padding: 5px; 
  width: 100%;
  height: 120px;
}
.search p.topsearch {
    font-family: Hiragino Kaku Gothic ProN,Hiragino Sans,Roboto,Noto Sans JP,Meiryo,sans-serif;
    box-sizing: border-box;
    margin: 5px  10px 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    line-height: 150%;
}
.searchbox {
  width: 100%;
  position: relative;
  display: flex;
}
.search-form-1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    border: 2px solid #2589d0;
    border-radius: 3px;
    height: 50px;
    background-color: #fff;
}
.search-form-1 input {
    width: 95%;
    padding-top: 22px;
    padding-left: 10px;
    border: none;
    box-sizing: border-box;
    font-size: 1em;
    outline: none;
}
.search-form-1 input::placeholder{
    color: #777777;
}
.search-form-1 button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border: none;
    background-color: #2589d0;
    cursor: pointer;
}
.search-form-1 button::after {
    margin-top: 20px;
    width: 30px;
    height: 40px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M18.031 16.6168L22.3137 20.8995L20.8995 22.3137L16.6168 18.031C15.0769 19.263 13.124 20 11 20C6.032 20 2 15.968 2 11C2 6.032 6.032 2 11 2C15.968 2 20 6.032 20 11C20 13.124 19.263 15.0769 18.031 16.6168ZM16.0247 15.8748C17.2475 14.6146 18 12.8956 18 11C18 7.1325 14.8675 4 11 4C7.1325 4 4 7.1325 4 11C4 14.8675 7.1325 18 11 18C12.8956 18 14.6146 17.2475 15.8748 16.0247L16.0247 15.8748Z' fill='%23fff'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    content: '';
}

/*newdatabase
-------------------------------------*/
.field {
    display: flex;
    margin-bottom: 10px;
}
.flex-child {
  flex:1;
}

@media screen and (max-width: 940px) {
  .field {
    flex-direction: column;
    margin-bottom: 10px;
}
}

.item-list {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.item-list .item {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0;
  padding: 0 0 20px 0;
  box-sizing: border-box;
  color: #191970;
  background: #e4fcff;/*背景色*/
  border-top: solid 6px #1dc1d6;
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.32);/*影*/
  border-radius: 10px;/*角の丸み*/
}
.item-list .item .image img {
  width: 100%;
}
.item-list .item .title {
  margin: 5px 0 0;
  padding: 0 3px;
  font-weight: bold;
  font-size: 20px;
  color: #191970;
}
.item-list .item .description {
  margin: 5px 0 2px;
  font-size: 16px;
  flex: 1;
}
.item-list .item .link {
  margin: 10px 0 0 0;
  padding: 0 20px;
  font-size: 16px;
  text-align: center;
}
.item-list .item .link a{
  display: inline-block;
  padding: 10px 20px;
  text-align: center;
  background: blue;
  color: #FFF;
  font-weight: bold;
  text-decoration: none;
  box-sizing: border-box;
  border-radius:  4px;
  margin-right: 10px
}

.more{
    text-align: right;
    text-decoration:underline;
    margin-top: 1rem;
    font-size: 18px;
    font-weight: 600;
    color: blue;
}

.box-new {
  margin: 20px auto 20px 20px;
  padding: 20px;
  border: 2px solid blue;
}
.box-new-title {
  position: relative;
  left: -40px;
  background-color: blue;
  color: #fff;
  padding: 0.5em 1em;
  margin: 0;
  width: 100%;
  font-size: 20px;
  font-weight: bold;
}
.data1 {
  font-size: 16px;
  font-weight: bold;
  margin: 10px 0 0 0;
  color: red;
  border-bottom: solid 3px #87CEFA;
}
.data-line {
  border-bottom: solid 3px #87CEFA;
}
.box-new .link {
    margin: 10px 0 0 0;
  padding: 0 20px;
  font-size: 16px;
  text-align: center;
}
.box-new .link a{
  display: inline-block;
  padding: 10px 20px;
  text-align: center;
  background: blue;
  color: #FFF;
  font-weight: bold;
  text-decoration: none;
  box-sizing: border-box;
  border-radius:  4px;
  margin-right: 10px
}
/*picdatabase
-------------------------------------*/
.p_item-list {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.p_item-list .item {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0;
  padding: 0 0 20px 0;
  box-sizing: border-box;
  color: #191970;
  background: #fff;/*背景色*/
  border-top: solid 6px #1dc1d6;
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.32);/*影*/
  border-radius: 10px;/*角の丸み*/
}
.p_item-list .item .image img {
  width: 100%;
}
.p_item-list .item .title {
  margin: 5px 0 0;
  padding: 0 3px;
  font-weight: bold;
  font-size: 20px;
  color: #191970;
}
.p_item-list .item .description {
  margin: 5px 0 2px;
  font-size: 16px;
  flex: 1;
}
.p_item-list .item .link {
  margin: 10px 0 0 0;
  padding: 0 20px;
  font-size: 16px;
  text-align: center;
}
.p_item-list .item .link a{
  display: inline-block;
  padding: 10px 20px;
  text-align: center;
  background: blue;
  color: #FFF;
  font-weight: bold;
  text-decoration: none;
  box-sizing: border-box;
  border-radius:  4px;
  margin-right: 10px
}

/*t-listdatabase
-------------------------------------*/
.t_list{
    margin-bottom: 10px;
 
}
.n_more{
    position: relative;
    text-align: center;
    text-decoration:underline;
    margin-top: 20pe;
    font-size: 18px;
    font-weight: 600;
    color: blue;

    
}
.n_more span{
  display: inline-block;
  position: static;
  top: auto;
  left: auto;
  transform: none;
  margin: 0;
  padding: 0;
}

.t_item-list .item {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0;
  padding: 0 0 20px 0;
  box-sizing: border-box;
  color: #191970;
  background: #e4fcff;/*背景色*/
  border-top: solid 6px #1dc1d6;
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.32);/*影*/
  border-radius: 10px;/*角の丸み*/
}
.t_item-list .item .image img {
  width: 100%;
}
.t_item-list .item .title {
  margin: 5px 0 0;
  padding: 0 3px;
  font-weight: bold;
  font-size: 20px;
  color: #191970;
}
.t_item-list .item .description {
  margin: 5px 0 2px;
  font-size: 16px;
  flex: 1;
}
.t_item-list .item .link {
  margin: 10px 0 0 0;
  padding: 0 20px;
  font-size: 16px;
  text-align: center;
}
.t_item-list .item .link a{
  display: inline-block;
  padding: 10px 20px;
  text-align: center;
  background: blue;
  color: #FFF;
  font-weight: bold;
  text-decoration: none;
  box-sizing: border-box;
  border-radius:  4px;
  margin-right: 10px
}
.cta_btn {
  font-weight: bold; /* 文字の太さ */
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1em 2em 1em calc(5em - 15px);
  transition: 0.3s;
  text-decoration: none;
  color: #fff; /* 文字色 */
  border-radius: 0.5rem;
  background: blue; /* 背景色 */
  box-shadow: 0 5px 0 #3802f8;
  margin-left: 10px;
}

.cta_btn p {
  margin: 0;
}
.cta_btn .cta_btn_copy {
  position: absolute;
  bottom: 0.5em;
  left: -10px;
  display: inline-block;
  width: 5em;
  height: 5em;
  line-height: 5em;
  text-align: center;
  color: blue;
  font-size: 80%;
  font-weight: bold;
  background: #fff;
  border: 3px solid blue;
  border-radius: 50%;
  box-sizing: border-box;
  transform: rotate(-10deg);
}
.cta_btn .cta_btn_copy::before {
  position: absolute;
  content: "";
  bottom: -5px;
  right: -10px;
  border: 9px solid transparent;
  border-left: 15px solid #FFF;
  z-index: 0;
  transform: rotate(45deg);
}

/* マウスオーバーした際のデザイン */
.cta_btn:hover {
  transform: translate(0, 3px);
  background: #fff; /* 背景色 */
  box-shadow: 0 2px 0 blue;
}
/*k-listdatabase
-------------------------------------*/
.k_list {
  display: flex;
  justify-content: space-between;
}
.k_table {
  border: 2px solid #2589d0;
  border-collapse: separate;/*collapseから変更*/
  border-spacing: 0;
  border-radius: 6px;
  overflow: hidden;
}
.k_table tbody th,
.k_table tbody td {
  padding: 12px;
  border-bottom: 1px solid #2589d0;/*一括指定せず、border-bottomのみ*/
}
.k_table tbody th {
  background-color: #1dc1d6;;
  color: #fff;
  width: 50px;
}
.k_table tbody td {
  border-left: 1px solid #2589d0;
  background-color: #e4fcff;;
  width: 700px;
}
.k_table tbody tr:last-child th,
.k_table tbody tr:last-child td {
  border-bottom: none;
}

body {
  padding: 40px;
}
/*新着企業
-------------------------------------*/
.new {
    margin-bottom: 1rem;
}
.new h2 {
    background-color: var(--back-color);
	color: var(--white-color);
	padding: 1rem;
}
/*ピックアップ
-------------------------------------*/
.pic {
    margin-top: 3rem;
    margin-bottom: 1rem;
}
.pic h2 {
    background-color: var(--back-color);
	color: var(--white-color);
	padding: 1rem;
}

/*新着情報
-------------------------------------*/
.news {
    margin-top: 2rem;
    background-color: #fff;
}
.news h2 {
    background-color: var(--back-color);
	color: var(--white-color);
	padding: 1rem;
}
.news li {
    list-style-type: none;
	border-bottom: 1px solid var(--border-color);
	padding: 0.5rem 0;
}

/*検索テーブル
-------------------------------------*/
table{
  border-collapse: collapse;
  width: 100%;
}
.tb01 th,
.tb01 td{
  padding: 10px;
  border: solid 1px #ccc;
  text-align:left;
  box-sizing:border-box;
}
.tb01 th {
  background: blue;
  color: #fff;
  
}
.tb01 td {
  background: #f0f8ff;
}
.tb01 td input[type="text"] {
  background-color: #fff;
  border: 1px solid #000;
}

@media screen and (max-width: 640px) {
  .tb01 {
    width: 100%;
  }
  table.tb01 th,
  table.tb01 td {
    display: block;
    width: 100%;
    border-bottom:none;
  }
  .tb01 tr:last-child{
    border-bottom: solid 1px #ccc;
  }
}

.search-text{
    display: inline-block;
    width: 100%;
    padding: 10px;
    border: 1px solid #999;
    box-sizing: border-box;
    background: #f2f2f2;
    margin: 0.5em 0;
    line-height: 1.5;
    height: 6em;
    flex-wrap: wrap;
}
.search-button{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.submit-button{
  display: flex;
  justify-content: center; 
  padding-top: 12px;
  margin-right: 5px;
  align-items: center;
  width: 120px;  
  height: 40px; 
  color: #fff;
  background: blue; 
  border-radius: 0.5rem;
  font-weight: bold;
}
.reset-button {
  display: flex;
  justify-content: center; 
  padding-top: 15px;
  align-items: center;     
  width: 120px;           
  height: 40px; 
  color: #fff;
  background: blue; 
  border-radius: 0.5rem;
  font-weight: bold;
}
.submit-button input[type="submit"],
.reset-button input[type="reset"] {
  background: inherit;
  color: inherit;
  border: none;
  cursor: pointer;
  font-weight: bold;
  width: 100%;
  height: 100%;
}
.submit-button input[type="submit"]:hover,
.reset-button input[type="reset"]:hover {
  background: blue;
  color: #fff;
}

/*応募サンクスボックス
-------------------------------------*/
.box30 {
    margin: 2em 0;
    border: blue 2px solid;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.22);
}
.box30 .box-title {
    font-size: 1.2em;
    background: blue;
    padding: 4px;
    text-align: center;
    color: #FFF;
    font-weight: bold;
    letter-spacing: 0.05em;
}
.box30 p {
    padding: 15px 20px;
    margin: 0;
}

/*バナー
-------------------------------------*/
.banner {
    margin-top: 2rem;
}
.banner img {
    margin-bottom: 1rem;
}
/*フッター
-------------------------------------*/
footer {
    background-color: var(--back-color);
    padding: 5rem 0;
	color: var(--white-color);
}
footer h5 {
    border-bottom: 2px solid var(--white-color);
}

/*コピーライト
-------------------------------------*/
.copyright {
    text-align: center;
    padding: 1rem 0;
    background-color: var(--white-color);
}
.copyright a {
    color: var(--base-color);
    text-decoration: none;
	display: inline-block;
}

/*ページトップへ戻るボタン
-------------------------------------*/
#pagetop {
    position: fixed;
    bottom: 15px;
    right: 15px;
}
#pagetop a {
    display: block;
    background: var(--back-color);
    color: var(--white-color);
    width: 50px;
    padding: 10px 5px;
    text-align: center;
}
#pagetop a:hover {
    background: var(--back-color);
}

/*パンくずリスト
-----------------------------------*/
.pan-header{
    display: flex;
    height: 2.5rem;
    text-align: left;
    font-size: 1.3rem;
    padding-left: 5px;
    font-weight: bold;
}
.breadcrumb {
    margin: 0 0 1em 0;
    padding: 0;	
    text-align: left;;
    font-size: 1.3rem;
    padding-left: 5px;
    padding-top: 5px;
}

.breadcrumb li {
    list-style-type: none;
}
.breadcrumb li a {
    display: inline-block;
    color: blue;
    text-decoration: none;
}
