/*===================全体設定=========================*/
* {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}

/*--------javascript読み込むまで全体非表示----------*/
body {
	display:none;
}

/*スクロールして領域に入ったら下線を引く*/
.headline {
  position: relative;
}

.headline:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -14px;
  width: 0%;
  height: 4px;
  background: #1a5d94;
  transition: all 2s;
}

.headline.isActive:after {
  width: 100%;
}



/*========= ナビゲーションドロップダウンのためのCSS ===============*/

/*会社ロゴとナビゲーションを横並び*/
.nav-wrap {
  display: flex;
}

@media screen and (max-width: 960px) {
  .nav-wrap {
    display: none;
  }
}


.nav-wrap img {
  width: 100%;
}

.logo-a {
  width: 30%;
  flex: 1.5;
}

/*==ナビゲーション全体の設定*/
nav{
	background:#ffffff;
	color:#202020;
    font-weight: bold;
    flex: 6;
}
/*ナビゲーションを横並びに*/
nav ul{
	list-style: none;
	display: flex;
	justify-content: right;
    align-items: center;
}
/*2階層目以降は横並びにしない*/
nav ul ul{
	display: block;
}

/*下の階層のulや矢印の基点にするためliにrelativeを指定*/
nav ul li{
	position: relative;
}

nav ul li .name {
    font-size: 2rem;
}

/*ナビゲーションのリンク設定*/
nav ul li a{
	display: block;
	text-decoration: none;
	color: #404040;
	padding:20px 35px;
	transition:all .3s;
}

nav ul li li a{
	padding:10px 35px;
}

nav ul li a:hover{
	color:#1a5d94;
}

/*==矢印の設定*/

/*2階層目を持つliの矢印の設定*/
nav ul li.has-child::before{
	content:'';
	position: absolute;
	left:15px;
	top:25px;
	width:6px;
	height:6px;
	border-top: 2px solid #999;
    border-right:2px solid #999;
    transform: rotate(135deg);
}

/*== 2階層目の共通設定 */

/*下の階層を持っているulの指定*/
nav li.has-child ul{
    /*絶対配置で位置を指定*/
	position: absolute;
	left:0;
	top:62px;
	z-index: 4;
    /*形状を指定*/
	background: #1a5d94;
	width: 15rem;
    /*はじめは非表示*/
	visibility: hidden;
	opacity: 0;
    /*アニメーション設定*/
	transition: all .5s;
    border-radius: 10px;
}

nav li.has-child ul li:hover {
    color: #404040;
}


/*hoverしたら表示*/
nav li.has-child:hover > ul,
nav li.has-child ul li:hover > ul,
nav li.has-child:active > ul,
nav li.has-child ul li:active > ul{
  visibility: visible;
  opacity: 1;
}

/*ナビゲーションaタグの形状*/
nav li.has-child ul li a{
	color: #fff;
	border-bottom:solid 1px rgba(255,255,255,0.6);
}

nav li.has-child ul li:last-child > a{
 border-bottom:none;
 }

nav li.has-child ul li a:hover,
nav li.has-child ul li a:active{
	background:#fff;
    color: #404040;
    border-radius: 10px;
    border: 1px solid #1a5d94;
}



/*==959px以下の形状*/

@media screen and (max-width:959px){
	nav{
		display: none;
	}

/*矢印の位置と向き*/

nav ul li.has-child::before{
	left:20px;	
}

nav ul ul li.has-child::before{
    transform: rotate(135deg);
	left:20px;
}
    
nav ul li.has-child.active::before{
    transform: rotate(-45deg);
}

}

/* 各メニューに下線 */
.underline a::after{
	position: absolute;
	bottom: 15px;
	left: 50%;
	content: '';
	width: 0;
	height: 1px;
	background-color: #1a5d94;
	transition: .5s;
	transform: translateX(-50%);
}
.underline a:hover::after{
	width: 80%;
}

.blank {
    width: 100%;
    height: 400px;
}


/*========================================
             　　ヘッダー
========================================*/
#header {
  position: fixed;
  top: 0;
}

.header-logo {
  position: absolute;
  left: 5%;
}

.header-logo img {
  height: 50px;
}

/*========================================
             ハンバーガーメニュー
========================================*/
.header {
  height: fit-content;
  background-color: rgba(255, 255, 255, 1);
  width: 100%;
  z-index: 1000;
}

@media screen and (min-width: 961px) {
  .header {
    display: none;
  }
}

.header-inner {
  padding: 0 5%;
}

#header-hamburger {
  /* 見た目のCSS */
  background: #1a5d94;
  cursor: pointer;
  width: 50px;
  aspect-ratio: 1/1;
  margin-left: auto;
  /* ボタンがハンバーガーウィンドウの下に隠れないようにする指定 */
  position: relative;
  z-index: 10;
}

/* ----------------- */
/* 三本線 */
/* ----------------- */
#header-hamburger span {
  /* 見た目のCSS */
  display: inline-block;
  background: #fff;
  width: 50%;
  height: 2px;
  /* バーガー線の太さ */
  /*アニメーションの設定*/
  transition: all .4s;
  position: absolute;
  left: 50%;
  /* バーガー線の位置 */
  transform: translateX(-50%);
}

/* １本目 */
#header-hamburger span:nth-of-type(1) {
  top: 30%;
}

/* ２本目 */
#header-hamburger span:nth-of-type(2) {
  top: 50%;
}

/* ３本目 */
#header-hamburger span:nth-of-type(3) {
  top: 70%;
}

/* ------------------ */
/* ×印 */
/* ------------------ */
/*activeクラスが付与されると線が回転して×になる*/
#header-hamburger.active span:nth-of-type(1) {
  top: 50%;
  left: 25%;
  transform: rotate(-45deg);
  width: 50%;
}

#header-hamburger.active span:nth-of-type(2) {
  opacity: 0;
}

#header-hamburger.active span:nth-of-type(3) {
  top: 50%;
  left: 25%;
  transform: rotate(45deg);
  width: 50%;
}

/* ----------------------------------------------- */
/* メニューウィンドウ */
/* -------------------------- */
#hamburger-window {
  transition: 0.3s;
  text-align: center;
  /* 初期状態は非表示 */
  visibility: hidden;
  position: fixed;
  top: 50px;
  right: -100vw;
  z-index: 1;
  /* 画面いっぱいに表示されるサイズに設定 */
  width: 100%;
  height: 100vh;
  /* 画面からはみ出したらスクロール可能にする */
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/*スクロールバー非表示（Chrome・Safari）*/
.content::-webkit-scrollbar{
  display:none;
}

#hamburger-window.open {
  visibility: visible;
  right: 0;
}

.hamburger-window__link {
  display: block;
  margin: 0 auto;
  width: 100%;
  background-color: #1a5d94;
}

.hamburger-window__link:hover {
  background-color: #3785c5;
}

.hamburger-window__link p {
  margin: 0;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
}

.hamburger-window__link a {
  font-weight: bold;
  text-decoration: none;
}

.hamburger-window__link:first-child .acordion-btn {
  border-top: 1px solid #ccc;
}


/* ----------------------------------
アコーディオン部分
--------------------- */

.acordion-btn {
  display: flex;
  align-items: center;
  padding-left: 5%;
}

.acordion-btn:hover {
  background-color: #3785c5;
}

.acordion-btn::after {
  /* fontawesomeアイコンを表示 */
  content: '\2b';
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  display: inline-block;
  position: absolute;
  right: 5%;
  width: 10px;
  aspect-ratio: 1/1;
  color: #ffffff;
}    

.acordion-btn.is-open::after {
  /* fontawesomeアイコンを表示 */
  content: '\f068';
}

.hamburger-window__link {
  border-top: 1px solid #ccc;
}

.hamburger-window__title,
.hamburger-window__link > a {
  color: #333;
}

.hamburger-window__link > a {
  display: block;
  text-align: left;
  padding-left: 5%;
  position: relative;
}

.hamburger-window__link > a::after {
  /* fontawesomeアイコンを表示 */
  content: '\f054';
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 5%;
  width: 10px;
  aspect-ratio: 1/1;
  color: #ffffff;    
}

.acordion>.acordion__item {
  position: relative;
  text-align: left;
  width: 100%;
  background-color: #dfdfdf;
  /* 閉じている状態 */
  border-top: 0 #ccc solid;
  line-height: 0;
  /* 閉じるアニメーション */
  transition:
      border-top .1s ease-out,
}

.acordion.is-open>.acordion__item {
  background-color: #dfdfdf;
  /* 開いている状態 */
  border-top: 1px #ccc solid;
  /* 開くアニメーション */
  transition:
      border-top .1s ease-out,
}

.acordion.is-open>.acordion__item:first-child {
  border-top: none;
}

.acordion.is-open>.acordion__item::after {
  /* fontawesomeアイコンを表示 */
  content: '\f054';
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 10%;
  width: 10px;
  aspect-ratio: 1/1;
  color: #333;
}

.acordion>.acordion__item>.acordion__link {
  color: #333;
  display: block;
  padding-left: 7%;
  /* 閉じている状態 */
  padding-top: 0;
  padding-bottom: 0;
  line-height: 0;
  opacity: 0;
  visibility: hidden;
  /* 閉じるアニメーション */
  transition:
      padding-top .3s ease-out,
      padding-bottom .3s ease-out,
      line-height .3s ease-out,
      opacity .1s linear,
      visibility .1s linear;
}

.acordion.is-open>.acordion__item>.acordion__link {
  display: block;
  padding-left: 7%;
  /* 開いている状態 */
  padding-top: 23px;
  padding-bottom: 23px;
  line-height: 1.5;
  opacity: 1;
  visibility: visible;
  /* 開くアニメーション */
  transition:
      padding-top .3s ease-out,
      padding-bottom .3s ease-out,
      line-height .3s ease-out,
      opacity .1s linear,
      visibility .1s linear;
}

.acordion__link:hover {
  background-color: #ffffff;
}






/*========================================
             　画像フェードイン
========================================*/
.start {
  text-align: center;
	background: #FFF;
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 9000;
}

.start img {
  width: 100%;
}

.start p {
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	display: none;
	z-index: 9999;
	width: 280px;
}

/*========================================
             　　トップ
========================================*/
body {
  letter-spacing: 0.2rem;
  line-height: 1.8rem;
  font-family: '游ゴシック';
  /* overflow-x: hidden; */
  }

.top-video video {
    width: 100vw;
    height: 80vh;
  }

  @media screen and (max-width:959px) {
    .top-video video {
      display: none;
    }
  }

  @media screen and (min-width:960px) {
    .top1-video video {
      display: none;
    }
  }
  
  @media screen and (max-width:959px) {
    .top1-video video {
      width: 100vw;
      height: 100vh;
      object-fit: cover;
    } 
  }



  
  .top {
      margin: 7% 15%;
      padding: 0;
      font-family: '游ゴシック';
      letter-spacing: 0.3rem;
      line-height: 2.5rem;
      font-size: 1.0rem;
  }
  
  .top p {
      margin: 0 5%;
      background-image: url(./images/top5.png);
      background-size: 90%;
      background-repeat: no-repeat;
      background-position: center;
      background-color: rgba(255,255,255,0.3);
      background-blend-mode: lighten;
  }

  img.s-image {
    display: none;
  }

  @media screen and (max-width: 959px){
    .top p {
      background-image: url(./images/top6.jpg);
    }
    img.b-image { display: none; }
    img.s-image { 
      display: block;
    }
  }

  .dream {
      font-size: 3rem;
  }

  @media screen and (max-width:959px) {
    .dream {
      font-size: 1.5rem;
    }
  }

  .circulation {
      margin: 7% 15%;
      padding: 0;
      font-size: 1.5rem;
      line-height: 3rem;
  }
  
  .circulation img {
      width: 100%;
  }

  
  
  /*==768px以下の形状*/
  
  @media screen and (max-width:768px){
    nav{
      padding: 0;
    }
    
    nav ul{
      display: block;
    }
    
    nav li.has-child ul,
    nav li.has-child ul ul{
      position: relative;
    left:0;
    top:0;
    width:100%;
    visibility:visible;/*JSで制御するため一旦表示*/
    opacity:1;/*JSで制御するため一旦表示*/
    display: none;/*JSのslidetoggleで表示させるため非表示に*/
    transition:none;/*JSで制御するためCSSのアニメーションを切る*/
  }
    
  nav ul li a{
    border-bottom:1px solid #ccc;
  }
  
  /*矢印の位置と向き*/
  
  nav ul li.has-child::before{
    left:20px;	
  }
  
  nav ul ul li.has-child::before{
      transform: rotate(135deg);
    left:20px;
  }
      
  nav ul li.has-child.active::before{
      transform: rotate(-45deg);
  }
  
  }
  
  /* 各メニューに下線 */
  .underline a::after{
    position: absolute;
    bottom: 15px;
    left: 50%;
    content: '';
    width: 0;
    height: 1px;
    background-color: #1a5d94;
    transition: .5s;
    transform: translateX(-50%);
  }
  .underline a:hover::after{
    width: 80%;
  }



/*========================================
             　　事業紹介
========================================*/
.intro_title h1 {
	font-size: 3rem;
	color: #555555;
	margin: 10% 10% 20% 10%;
	letter-spacing: 0.5rem;
}

@media screen and (max-width:959px){
  .intro_title h1{
    font-size: 2rem;
    color: #555555;
    margin-top: 100px;
    letter-spacing: 0.5rem;
  }
}

.container {
  width: 90%;
  height: 50vh;
  display: flex;
  margin: 0 5% 5% 5%;
  margin-top: 10%;
}

@media screen and (max-width:959px) {
  .container {
    display: block;
  }
}

.item1 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 2;
}

.item1 img {
  width: 100%;
}

.item2 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 3;
  letter-spacing: 0.2em;
}

.intro_text {
  text-align: center;
}

.item2 h2 {
  color: #555555;
  padding: 3%;
}

.item2 h3 {
  padding: 3%;
  font-size: 1rem;
  line-height: 3;
  text-align: left;
}

.item3 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 3;
  letter-spacing: 0.2em;
}

.item3 h2 {
  color: #555555;
  padding: 3%;
}

.item3 h3 {
  padding: 3%;
  font-size: 1rem;
  line-height: 3;
  text-align: left;
}

.item4 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 2;
}

.item4 img {
  width: 100%;
}


/*--------タブレット幅以下の場合----------*/
@media screen and (max-width:959px) {
  .container {
    display: none;
  }
}

@media screen and (min-width:960px){
  .intro-smart {
    display: none;
  }
}

.intro-smart {
  width: 100%;
  color: #555555;
  margin-top: 10%;
}

.intro-smart1 {
  width: 90%;
  margin: 0 auto;
}

.intro-smart1 h2 {
  text-align: center;
  margin-top: 10%;
  margin-bottom: 5%;
}

.intro-smart1 img {
  width: 100%;
}

.intro-smart1 h3 {
  margin-top: 5%;
  letter-spacing: 0.2;
  line-height: 1.5;
}


/*========================================
             知る学ぶ楽しむ(バリュー)
========================================*/
.know_title h1 {
	font-size: 3rem;
	color: #555555;
	margin: 10%;
	letter-spacing: 0.5rem;
}

@media screen and (max-width:959px){
  .know_title h1{
    font-size: 2rem;
    color: #555555;
    margin-top: 100px;
    letter-spacing: 0.5rem;
    line-height: 1.5;
  }
}


.parallax_box {
    text-align: center;
}

.value-know {
  padding: 20%;
  background-image: linear-gradient(rgba(0,0,0,0.4),rgba(0,0,0,0.4)),url(./images/know.jpg);
  background-size: cover;
}

.value-know h2 {
  color: #fff
}

.content1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
}

.content1 h2 {
    color: #fff;
    font-size: 3rem;
    /* -webkit-text-stroke: 1px #202020;   縁取り*/
}

@media screen and (max-width:959px){
  .content1 h2 {
    color: #fff;
    font-size: 1.5rem;
    /* -webkit-text-stroke: 1px #202020;   縁取り*/
}
}


.front_content {
    padding: 5% 0;
    line-height: 4;
    letter-spacing: 0.2em;
}

@media screen and (max-width:959px) {
  .front_content {
    line-height: 2;
    letter-spacing: o.2em;
    width: 80%;
    margin: 0 auto;
    text-align: left;
  }
}

.front_content .know_blue {
  text-align: center;
    font-size: 2rem;
    color: #1a5d94;
    padding: 0;
}

.value-learn {
  padding: 20%;
  background-image: linear-gradient(rgba(0,0,0,0.4),rgba(0,0,0,0.4)),url(./images/learn2.jpg);
  background-size: cover;
}

.value-learn h2 {
  color: #fff
}

.content2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
}

.content2 h2 {
    color: #fff;
    font-size: 3rem;
    /* -webkit-text-stroke: 1px #202020;   縁取り*/
}

@media screen and (max-width:959px){
  .content2 h2 {
    color: #fff;
    font-size: 1.5rem;
    /* -webkit-text-stroke: 1px #202020;   縁取り*/
}
}

.front_content .learn_blue {
  text-align: center;
    font-size: 2rem;
    color: #1a5d94;
    padding: 0;
}

.value-enjoy {
  padding: 20%;
  background-image: linear-gradient(rgba(0,0,0,0.4),rgba(0,0,0,0.4)),url(./images/enjoy.jpg);
  background-size: cover;
}

.value-enjoy h2 {
  color: #fff
}

.content3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
}

.content3 h2 {
    color: #fff;
    font-size: 3rem;
    /* -webkit-text-stroke: 1px #202020;   縁取り*/
}

@media screen and (max-width:959px){
  .content3 h2 {
    color: #fff;
    font-size: 1.5rem;
    /* -webkit-text-stroke: 1px #202020;   縁取り*/
}
}

.front_content .enjoy_blue {
  text-align: center;
    font-size: 2rem;
    color: #1a5d94;
    padding: 0;
}


/*festalegaの強み*/
.advantage_title h1 {
	font-size: 3rem;
	color: #555555;
	margin: 10%;
	letter-spacing: 0.5rem;
}

@media screen and (max-width:959px){
  .advantage_title h1{
    font-size: 1.5rem;
    color: #555555;
    margin-top: 100px;
    letter-spacing: 0.5rem;
  }
}

.adv-img img {
  width: 100%;
  margin-bottom: 5%;
}

.adv_text {
  justify-content: center;
  align-items: center;
  letter-spacing: 0.2em;
  padding: 0 5%;
}

@media screen and (max-width:959px) {
   .adv_text h2 {
       font-size: 1.5rem;
     }
}

/*========================================
             会社概要
========================================*/
@media screen and (max-width:959px){
  .message_title {
    margin-top: 100px;
}
}

@media screen and (max-width:959px){
  .message_title h1 .headline{
    font-size: 2rem;
    color: #555555;
    margin-top: 100px;
    letter-spacing: 0.5rem;
    line-height: 1.5;
  }
}

/*----------企業理念----------*/
.philosophy-wrap {
  width: 100%;
  text-align: center;
  margin-bottom: 20vh;
}

.philosophy-wrap p {
  font-size: 2rem;
}

.philosophy-wrap img {
  width: 80%;
}


.philosophy-wrap h2 {
  font-size: 2rem;
  margin-bottom: 5%;
}

.philosophy-wrap p {
  width: 90%;
  margin: 0 5%;
  letter-spacing: 0.2em;
  line-height: 4;
}


/*----------会社概要----------*/
.summary-wrap {
  position: relative;
  color: #fff;
  text-align: center;
  background-image: linear-gradient(to bottom ,rgba(0,0,0,0.6) 90%, #fff),url(./images/town.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 10%;
  margin-bottom: 5%;
  /* opacity: 0.8; */
}

.summary-wrap p {
  font-size: 2rem;
  padding: 5%;
}

table {
  width: 90%;
	margin: 40px auto;
  padding-bottom: 5%;
}

th,td {
	padding: 14px;
	text-align: left;
	border-bottom: 1px solid #ffffff;
}
td span {
	font-size: 90%;
}

/*----------Googleマップ----------*/
.company-map {
  width: 100%;
  text-align: center;
}

.company-map iframe {
  width: 90%;
}


/*========================================
             リスキリング
========================================*/
.skill_title h1 {
	font-size: 3rem;
	color: #555555;
	margin: 10% 10% 0 10%;
	letter-spacing: 0.5rem;
}

@media screen and (max-width:959px){
  .skill_title {
    margin-top: 100px;
  }
}

@media screen and (max-width:959px){
  .skill_title h1 .headline{
    font-size: 2rem;
    color: #555555;
    margin-top: 100px;
    letter-spacing: 0.5rem;
    line-height: 1.5;
  }
}

.skill-img {
  width: 100%;
  margin-top: 10%;
  margin-bottom: 5%;
}

@media screen and (max-width:959px){
  .skill-img {
    margin-top: 10%;
  }
}

.skill-img img {
  width: 100%;
}

.skill-wrap {
  width: 90%;
  margin: 0 5%;
}

.skill-content {
  width: 100%;
  margin-bottom: 5%;
  letter-spacing: 0.2em;
  display: flex;
}

.skill-content h2 {
  flex: 1;
  margin: auto 0;
}

.skill-text1 {
  background: linear-gradient(rgba(0,0,0,0.4),rgba(0,0,0,0.4)),url(./images/madehp.png);
  background-size: cover;
  flex: 3;
  font-size: 1.5rem;
  margin: auto 0;
  padding: 10% 5%;
  color: #ffffff;
}

.skill-text2 {
  background: linear-gradient(rgba(0,0,0,0.4),rgba(0,0,0,0.4)),url(./images/madelogo.png);
  background-size: cover;
  flex: 3;
  font-size: 1.5rem;
  margin: auto 0;
  padding: 10% 5%;
  color: #fff;
  line-height: 2;
}

.skill-text3 {
  background: linear-gradient(rgba(0,0,0,0.4),rgba(0,0,0,0.4)),url(./images/madeai.png);
  background-size: cover;
  flex: 3;
  font-size: 1.5rem;
  margin: 0 auto;
  padding: 10% 5%;
  color: #fff;
  line-height: 2;
}

/*-------959px以下の場合-------*/
@media screen and (max-width:959px){
  .skill-wrap {
    display: none;
  }
}

@media screen and (min-width:960px){
  .skill-wrap2 {
    display: none;
  }
}

.skill-wrap2 {
  width: 90%;
  margin: 0 5%;
}

.skill-wrap2 h2 {
  text-align: center;
  margin-bottom: 5%;
}

.skill-content2 {
  margin-bottom: 10%;
}

.skill-text1-2 {
  background: linear-gradient(rgba(0,0,0,0.4),rgba(0,0,0,0.4)),url(./images/madehp.png);
  background-size: cover;
  font-size: 1rem;
  margin: auto 0;
  padding: 10% 5%;
  color: #ffffff;
}

.skill-text2-2 {
  background: linear-gradient(rgba(0,0,0,0.4),rgba(0,0,0,0.4)),url(./images/madelogo.png);
  background-size: cover;
  font-size: 1rem;
  margin: auto 0;
  padding: 10% 5%;
  color: #ffffff;
}

.skill-text3-2 {
  background: linear-gradient(rgba(0,0,0,0.4),rgba(0,0,0,0.4)),url(./images/madeai.png);
  background-size: cover;
  font-size: 1rem;
  margin: auto 0;
  padding: 10% 5%;
  color: #ffffff;
}


/*========================================
             トップメッセージ
========================================*/
.message_title h1 {
	font-size: 3rem;
	color: #555555;
	margin: 10%;
	letter-spacing: 0.5rem;
}

@media screen and (max-width:959px){
  .message_title h1 .headline{
    font-size: 2rem;
    color: #555555;
    margin-top: 100px;
    letter-spacing: 0.5rem;
    line-height: 1.5;
  }
}

.message-img-wrap {
  width: 100%;
  opacity: 0;
}

.message-img-wrap img {
  object-fit: cover;
  width: 100%;
  height: 50vh;
}

.message-text {
  width: 90%;
  padding: 0 5%;
  letter-spacing: 0.2;
  line-height: 3;
}

@media screen and (max-width:959px){
  .message-text {
    width: 90%;
    margin-top: 5%;
    padding: 0 5%;
    letter-spacing: 0.2em;
    line-height: 1.5;
  }
}

.message-text p {
  font-size: 1.5rem;
  font-weight: bold;
}

@media screen and (max-width:959px){
  .message-text p {
    font-size: 1.3rem;
    font-weight: bold;
  }
}

.message-text1 {
  width: 90%;
  padding: 5% 5%;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 0.2;
  line-height: 2;
}

@media screen and (max-width:959px){
  .message-text1{
    width: 90%;
    padding: 10% 5%;
    text-align: left;
    line-height: 1.5;
  }
}

/*画像左から徐々に表示*/
.img-animation {
  animation: img-opacity 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  overflow: hidden;
  position: relative;
}

.img-animation::before {
  animation: img-animation 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  background: #fff;
  content: '';
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

@keyframes img-opacity {
  100% {
    opacity: 1;
  }
}

@keyframes img-animation {
  100% {
    transform: translateX(100%);
  }
}



/*----------------pc幅案2-------------------*/
.message-wrap2 {
  position: relative;
}

.message-img1 img {
  width: 60%;
  margin-left: 5%;
}

.message-text-a p {
  position: absolute;
  top: 500px;
  left: 35%;
  width: 60%;
  font-weight: bold;
  font-size: 2rem;
  line-height: 2;
  text-shadow:1px 1px 0 #fff, -1px -1px 0 #fff,
              -1px 1px 0 #fff, 1px -1px 0 #fff,
              0px 1px 0 #fff,  0-1px 0 #fff,
              -1px 0 0 #fff, 1px 0 0 #fff;
}

.message-text1 {
  display: block;
}


/*========================================
             採用情報
========================================*/
.recruit_title h1 {
	font-size: 3rem;
	color: #555555;
	margin: 10%;
	letter-spacing: 0.5rem;
}

/* .career {
  padding: 5% 5%;
} */

.career img {
  max-width: 100%;
}

@media screen and (max-width:959px) {
  .career img {
    display: none;
  }
}

@media screen and (min-width:960px) {
  .container2 {
    width: 90%;
    margin: 5% auto;
    display: flex;
  }
}

@media screen and (max-width:959px) {
  .container2 {
    display: none;
  }
}

@media screen and (min-width:960px) {
  .container2 .item1 {
    flex: 3;
  }
}

@media screen and (min-width:960px) {
  .container2 .item2 {
    flex: 2;
    padding: 3%;
  }
}



.recruit_text {
  text-align: left;
}

.job-list_table {
  width: 90%;
	margin: 40px auto;
  padding-bottom: 5%;
}

th,td {
	padding: 20px;
	text-align: left;
	border-bottom: 1px solid #ffffff;
}

@media screen and (max-width:959px){
  .recruit_title h1{
    font-size: 2rem;
    color: #555555;
    margin-top: 100px;
    letter-spacing: 0.5rem;
  }
}

/*====================================
          お問い合わせ
=======================================*/
@media screen and (min-width:960px) {
  .contact-wrap2 {
    display: none;
  }
}

.contact-wrap {
  width: 90%;
  margin: 0 5%;
  display: flex;
  justify-content: center;
  color: #555555;
}

.contact-tel {
  width: 30%;
  margin: 0 auto;
  padding: 5%;
  text-align: center;
  font-weight: bold;
  border: #1a5d94 2px solid;
  border-radius: 10px;
  outline: #1a5d94 2px solid;
  outline-offset: 2px;
}

.contact-tel p {
  margin-top: 5%;
}

.contact-form {
  width: 30%;
  margin: 0 auto;
  padding: 5%;
  text-align: center;
  border: #1a5d94 2px solid;
  border-radius: 10px;
  outline: #1a5d94 2px solid;
  outline-offset: 2px;
}

/*------ボタン用設定-------*/
.contact-form .button11 {
  margin-top: 5%;
}

.button11 {
  background-color: #1a5d94;
  color: #fff;
  padding: 10px 30px;
  text-decoration: none;
  font-size: 1em;
  outline: 1px solid;
  outline-color: #1a5d94;
  outline-offset: 0px;
  display: inline-block;
  transition: .3s;
  border-radius: 5px;
}
.button11:hover {
  color: #fff;
  animation: light .8s infinite;
}
@keyframes light {
  100% { 
    outline-color: transparent;
    outline-offset: 10px;
  }
}

/*-----------画面幅959px以下-------------*/
@media screen and (max-width:959px) {
  .contact-wrap {
    display: none;
  }
}

@media screen and (max-width:959px) {
  .contact-wrap2 {
    width: 90%;
    margin: 0 5%;
    color: #555555;
  }
}

@media screen and (max-width:959px) {
  .contact-tel2 {
    width: 60%;
    margin: 0 auto 10% auto;
    padding: 5%;
    text-align: center;
    font-weight: bold;
    border: #1a5d94 2px solid;
    border-radius: 10px;
    outline: #1a5d94 2px solid;
    outline-offset: 2px;
  }
}

@media screen and (max-width:959px) {
  .contact-tel2 p {
    margin-top: 10%;
  }
}

@media screen and (max-width:959px) {
  .contact-form2 {
    width: 60%;
    margin: 0 auto;
    padding: 5%;
    text-align: center;
    border: #1a5d94 2px solid;
    border-radius: 10px;
    outline: #1a5d94 2px solid;
    outline-offset: 2px;
  }
}

@media screen and (max-width:959px) {
  .button11 {
    margin-top: 10%;
  }
}

/*------------グーグルフォーム---------------*/
.gform {
  margin-top: 5%;
}

.gform iframe {
  width: 90%;
  margin: 0 5%;
}


/*====================================
          フッター
=======================================*/
footer {
  margin-top: 10%;
  padding: 5%;
  border-top: #000 double 5px;
}

.foot-wrap {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: start;
}

@media screen and (max-width: 960px) {
  .foot-wrap {
    display: none;
  }
}

.foot-img {
  margin-right: 5%;
  flex: 1;
}

.foot-img img {
  width: 100%;
}

.foot-menu {
  justify-content: space-around;
  flex: 4;
  line-height: 3em;
}

.foot-menu ul {
  display: flex;
  justify-content: center;
}

.foot-menu ul li {
  list-style: none;
  margin: 0 auto;
}

.foot-menu ul li a {
  position: relative;
  display: inline-block;
  color: #555555;
  text-decoration: none;
}

.foot-menu ul li a:hover {
  color: #1a5d94;
}

.foot-menu ul li a::after {
  position: absolute;
  bottom: 10px;
  left: 50%;
  content: '';
  width: 0;
  height: 1px;
  background-color: #1a5d94;
  transition: .5s;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.foot-menu ul li a:hover::after {
  width: 100%;
}

.foot-bold {
  font-weight: bold;
}

/*--------フッター（959px以下）-----------*/

@media screen and (min-width: 961px) {
  .footer2 {
    display: none;
  }
}

.footer2 img {
  width: 30%;
}

.accordion-001 {
  text-align: center;
}

.accordion-001:not([open]) {
  margin-bottom: 7px;
}

.accordion-001 summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-top: 5%;
  padding: 0.5em 2em;
  border-radius: 25px;
  background-color: #1a5d94;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.accordion-001 summary::-webkit-details-marker {
  display: none;
}

.accordion-001 summary::after {
  transform: translateY(-25%) rotate(45deg);
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  content: '';
  transition: transform .3s;
}

.accordion-001[open] summary::after {
  transform: rotate(225deg);
}

.accordion-001 p {
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: 1em 2em 2em 2em;
  color: #555555;
  transition: transform .5s, opacity .5s;
}

.accordion-001[open] p {
  transform: none;
  opacity: 1;
}

.accordion-001 ul {
  list-style: none;
}

.accordion-001 ul li {
  padding: 3%;
  border-bottom: 1px solid #1a5d94;
}

.foot-festa {
  margin-top: 5%;
  padding: 0.5em 2em;
  border-radius: 25px;
  background-color: #1a5d94;
  font-weight: 600;
}

.foot-rec {
  margin-top: 5%;
  padding: 0.5em 2em;
  border-radius: 25px;
  background-color: #1a5d94;
  font-weight: 600;
}

.footer2 a {
  text-decoration: none;
  color: #fff;
}

.footer2 ul a {
  text-decoration: none;
  color: #555555;
}

.foot-con {
  margin-top: 5%;
  padding: 0.5em 2em;
  border-radius: 25px;
  background-color: #1a5d94;
  font-weight: 600;
}