﻿/* ----- 画面全体 ----- */
* 
{
/*	box-sizing: border-box;
	float: none;
	position: static;
*/
}

body
{
	font: 1.5em "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",Osaka, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    min-height: 100vh; /* ←コンテンツの高さの最小値＝ブラウザの高さに指定 */
  background:url(../img/keshiki.jpg) no-repeat;
  background-attachment: fixed;
  background-position: right bottom;
  background-size: 100% auto;
}

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

/* Form Layout */
input:required
{
	background: Aqua;	
}
/*
.headwrap
{
	min-height: 100vh;
}
*/
.image-wrapper
{
  margin-top: 5%;
  text-align: center;
}

.image-wrapper p
{
  text-align: left;
}

.introducegazou 
{
  background-color: #ffffff;
  margin-top: 1em;
  text-align: left;
  font-size: 1.1em;
  letter-spacing: 0.05em;
  color: #5E6575;
}

.introduce .imagebox{
	display: flex;
}

.introduce .imagebox .c{
	border: 1px solid #797979;
	margin: 0;
	overflow:hidden; //これを記述することではみ出た部分を非表示にします。
}

.introduce .imagebox .c img{
  transition:0.5s all;
}

.introduce .imagebox .c img:hover{
  transform:scale(1.1,1.1);
  transition:0.5s all;
}

.form-wrapper 
{
  margin-top: 5%;
  padding: 2em 1.5em 1.5em 1.5em;
  max-width: 500px;
  text-align: center;
  background-color: #ffffff;
  border: 2px solid #6A8CC7;
}

.form-wrapper a
{
  text-decoration: none;
}

.form-wrapper a:hover
{
  text-decoration: underline;
}

.login-form 
{
  margin: 0 auto 2em auto;
  width: 100%;
}

.form-item 
{
  margin: 0.8em auto 0.4em auto;
  width: 100%;
}

.form-item input 
{
  background: #fafafa;
  border: 2px solid #e9e9e9;
  color: #666;
/*  font-size: 1em;*/
  height: 3em;
  transition: border-color 0.3s;
  width: 90%;
}

.form-item input:focus 
{
  border-bottom: 2px solid #c0c0c0;
  outline: none;
}

.imagebox a:hover{
	text-decoration: none;
}

.new {
  display: none;
}
.new.is-show {
  display: inline-block;
}
.new .info{
	background: #ff0090;
	color: #FFF;
	text-align: center;
	display: inline-block;
	padding: 5px 5px;
	font-size: 12px;
	line-height: 1;
	margin-right: 1em;
	border-radius: 5px;
}
.new .msg{
	border-bottom: dotted 1px #000000;
	font-weight: bold;
}
.new .msg:hover{
	border-bottom: dotted 1px #000000;
	font-weight: bold;
}
.button-panel 
{
  margin: 0;
  width: 100%;
  text-align: center;
}

.button 
{
  background: #6A8CC7; 
  border: none;
  color: #fff;
  cursor: pointer;
  margin:1em 1em 1em 1em;
  padding:0.3em 2em;
  /*height: 50px;*/
  font-size: 1em;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
  transition: background 0.3s ease-in-out;
/*  width: 40%;*/
}

.button:hover 
{
  background: #3261AB;
}

#Login
{
  background: #f28692; 
  border: none;
  color: #fff;
  cursor: pointer;
  margin:1em 0;
  padding:0.5em 0;
/*  font-size: 1.2em;*/
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
  transition: background 0.3s ease-in-out;
  width: 90%;
}

#Login:hover
{
  background: #f92f46;
}

.form-footer
{
/* font-size: 1em;*/
  padding-bottom: 1em;
  text-align: center;
  border-top: 2px solid #e9e9e9;
}

.hidden_box 
{
    margin: 2em 0 0 0;
    padding: 0;
    width: 100%;
}

.hidden_box label
{
  text-decoration: none;
  cursor: pointer;
}


/*ボタンホバー時*/
.hiddenbox label:hover 
{
	color: #8c8c8c;
	border-bottom: 1px dotted #8c8c8c;
	font-weight: bold;
}

/*チェックは見えなくする*/
#chkUpdate 
{
    display: none;
}

/*中身を非表示にしておく*/	
.hidden_box .hiddenPart 
{
    height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    transition: 0.8s;
}

/*クリックで中身表示*/
.hidden_box input:checked ~ .hiddenPart 
{
	margin-top: 1em;
    padding: 1em;
    height: auto;
    opacity: 1;
	text-align: left; 
/*	border: 1px solid #e9e9e9;*/
}

/*メッセージエリア*/
#updateMsg 
{
    padding-bottom: 1em;
}

.hidden_box .hiddenPart .done
{
    color: red;
	font-weight: bold;
}

/* メールアドレス入力用テキストボックスの見栄え */
#mail
{
  width: 83%;
  line-height:1em;
  float: left;
  margin-right: 1%;
/*  font-size: 1em;*/
  
}

/* Update開始ボタンの見栄え */
#btnUpdate 
{
  width: 12%;
  background: #6A8CC7; 
  border: none;
  color: #fff;
  cursor: pointer;
  line-height:1em;
/*  font-size: 1em;*/
  height: 1.8em;
  margin-top: 0.2em;
  transition: background 0.3s ease-in-out;
}

#btnUpdate:hover 
{
  background: #3261AB;
}

.copyright
{
	padding: 0 0 2em 0;
	text-align: center;

}
/*
footer{
    width: 100%;
    text-align: left;
    padding: 0 30px;
    position: absolute;
    bottom: 0; 
}
*/

/* 画像プレビュー用 */
.overlay {
  position: fixed;
  background: rgba(0, 0, 0, 0.2);
  transition: opacity 200ms;
  visibility: hidden;
  opacity: 0;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
#pop-up {
  display: none;
}
#pop-up:checked + .overlay {
  visibility: visible;
  opacity: 1;
  z-index: 100000;
  background-color: #00000010;
  width: 100%;
  text-align: initial;
}
#pop-up2 {
  display: none;
}
#pop-up2:checked + .overlay {
  visibility: visible;
  opacity: 1;
  z-index: 100000;
  background-color: #00000010;
  width: 100%;
  text-align: initial;
}
.popupwindow {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100010;
  width: auto;
  margin: 10px auto;
  padding: 4px 10px;
  background: #FFFD;
  border-radius: 5px;
  text-align: center;
  transition: all 0.5s ease-in-out;
  font-size: 13px;
  line-height: 18px;
  overflow: auto;
}
.popupwindow .ptitle {
  font-size: 15px;
  margin: 8px;
  color: #333;
}
.popupwindow .close {
  position: absolute;
  top: 8px;
  right: 10px;
  transition: all 300ms;
  font-size: 24px;
  line-height: inherit;
  font-weight: bold;
  text-decoration: none;
  color: #000;
  padding: 2px;
}
.popupwindow .close:hover {
  color: #06D85F;
}
.popupwindow::-webkit-scrollbar-track {
  background: none;
}
.popupwindow::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
.popupwindow::-webkit-scrollbar-thumb {
  background: #999;
  border-radius: 5px;
}
.clickable:hover {
  cursor: pointer;
}
@media screen and (max-width: 700px){
  .popupwindow {
    max-width: 100%;
  }
}

/*求人のお知らせリンク*/
/* 点滅 */
.blink {
	animation: blinking 1s ease-in-out infinite alternate;
}
 
@keyframes blinking {
	0% {background:#ffdbed;}
	100% {opacity: 1;}
}
