@charset "UTF-8";
* {
    box-sizing: border-box;
}

body {
    font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    vertical-align:middle; 
    text-align: center;   
}

a {
    text-decoration: none;
}
a:hover {
    opacity: 0.6;
}
ul,li {
    list-style: none;
}

/*--------------------------------
ナビゲーション
---------------------------------*/
.nav {
    position: fixed;
    top:0;
    left: 0;
    background-color: #fff;
    width: 100%;
    height: 72px;
    z-index: 10;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
    text-align: center;
}
.nav img {
    width: 50px;
    height: auto;
    vertical-align: middle;
    padding: 4px;
}
.nav ul li {
    display: inline-block;
    padding: 0 24px;
}
.nav ul li a {
    font-weight: bold;
    color: #444;
}

/*--------------------------------
ヘッダー
---------------------------------*/
.header img {
    width: 80%;
    height: auto;
    margin-top: 72px;
}
/*--------------------------------
index.html
---------------------------------*/
/* container */
.wrapper{
    width:100%;
}
.wrapper .container{
    max-width:1000px;
    margin:0px auto;
}
/* content */
.wrapper .content {
    padding:50px;
    text-align:center;
}
.wrapper .content .heading{
    font-size: 24px;
    font-weight: normal;
    text-align: center;
}

/*--------------------------------
introdaction.html
---------------------------------*/
/* container */
h1{
    font-size: 30px;
}
.wrapper1{
    width:100%;
    background-color:#fff;
}
.wrapper1 .container1{
    max-width:1000px;
    margin:0px auto;
    padding:80px 0px;
}
/* content */
@media (min-width: 992px) {
    .wrapper1 .container1 .content1 {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
.wrapper1 .content-item1 {
    width:100%;
}
@media (min-width: 992px) {
    .wrapper1 .content-item1 {
        width:50%;
    }
}
.wrapper1 .image1{
    display:block;
    max-width:100%;
    margin:0px auto;
}
.wrapper1 .text1{
    padding:50px;
}
.wrapper1 .text1 .heading1{
    margin:0px 0px 40px 0px;
    font-size: 24px;
    font-weight: normal;
    text-align: center;
}


/*--------------------------------
recritiment
---------------------------------*/
/* container */
.wrapper2{
    width:100%;
}
.wrapper2 .container2{
    max-width:1000px;
    margin:0px auto;
    padding:80px 0px;
}
/* content */
.wrapper2 .content2 .heading2{
    margin:0px 0px 40px 0px;
    font-size: 24px;
    font-weight: normal;
    text-align: center;
}
@media (min-width: 992px) {
    .wrapper2 .content2 .list2 {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;

    }
}
.wrapper2 .content2 .list-item2 {
    margin: 30px 0px;
    padding:0px 50px;
    text-align:center;
}
@media (min-width: 992px) {
    .wrapper2 .content2 .list-item2 {
        width:calc(100% / 3);
        margin-bottom: 30px;
        margin-top: 30px;
    }
}
.wrapper2 .content2 .list-item2 .image2{
    display:block;
    width:100%;
    max-width:300px;
    margin:0px auto 20px auto;
    border-radius:100%;
}
.wrapper2 .content2 .list-item2 .text2{
    line-height:1.8rem;
    font-size:0.8rem;
    color:#666666;
}
/*--------------------------------
 フッター
---------------------------------*/
.footer {
    background-color: #2e90a1;
}
.btn{
    /*アニメーションの起点とするためrelativeを指定*/
    position: relative;
  overflow: hidden;
    /*ボタンの形状*/
  text-decoration: none;
  display: inline-block;
    border: 1px solid #555;/* ボーダーの色と太さ */
    padding: 10px 30px;
  text-align: center;
    outline: none;
    /*アニメーションの指定*/   
    transition: ease .2s;
    background-color: #fff;
}

/*ボタン内spanの形状*/
.btn span {
  position: relative;
  z-index: 3;/*z-indexの数値をあげて文字を背景よりも手前に表示*/
  color:#333;
}

.btn:hover span{
  color:#fff;
}

/*== 背景が流れる（中央から外） */

.bgcenterout:before {
  content: '';
    /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
    /*色や形状*/
  background: #333;
  width: 100%;
  height: 100%;
    /*アニメーション*/
  transition: transform .3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 0);
  transform-origin:center;
}

/*hoverした際の形状*/
.bgcenterout:hover:before{
  transform:scale(1, 1);
}
.copyright {
    color: #fff;
    font-size: 12px;
    text-align: center;
    padding: 30px;
}
