@charset "utf-8";
/* CSS Document */

/*ここからサンプル画像用CSS*/
.imagesample{
	width: 700px;
	height: 150px;
	object-fit: cover;
}
/*ここまでサンプル画像用CSS*/

/*===============================
リセットCSS
===============================*/

*{
	margin:0;
	padding:0;
	list-style: none;
	text-decoration: none;
	box-sizing: border-box;
}
/* 以下はレイアウト調整用 */
body{
  vertical-align:middle; 
  padding: 50px 0;
  text-align: center;
  background-color: #fffacd;/* ------lemonchiffon------ */
}
/*===============================
グローバルナビゲーション部分
===============================*/

.gnavi__wrap {
    width: 1200px;
    margin: 0 auto;
}
.gnavi__lists {
    display: flex;
}
.gnavi__list {
    width: 20%;
    height: 60px;
    background-color: #e60012;/*リストの色*/
    position: relative;
    transition: all .3s;/* ------どのぐらい時間をかけて変化するか指定------ */
}
.gnavi__list:hover {/* マウスオン時の色 */
    background-color: #e62e3d;
}
.gnavi__list:not(:first-child)::before {
    content: "";
    width: 1px;
    height: 100%;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    transition: all .3s;
}
.gnavi__list:hover::before {
    background-color: #ff7f50;/* ------coral------ */
}
.gnavi__list a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: #fff;
    font-size: 15px;
    letter-spacing: 0.05em;
    font-weight: 600;
    transition: all .3s;
}
.gnavi__list:hover a {
    color: #000 ;
}

/*===============================
ドロップダウンメニュー追加
===============================*/

.dropdown__lists {
    display: none;/*デフォルトでは非表示の状態にしておく*/
    width: 100%;
    position: absolute;
    top: 60px;
    left: 0;
}
.gnavi__list:hover .dropdown__lists {
    display: block;/*Gナビメニューにホバーしたら表示*/
}
.dropdown__list {
    background-color:#e62e3d;
    height: 60px;
    transition: all .3s;
    position: relative;
}
.dropdown__list:not(:first-child)::before{
    content: "";
    width: 100%;
    height: 1px;
    background-color:  #ff4500;
    position: absolute;
    top: 0;
    left: 0;
}
.dropdown__list:hover {
    background-color:#e6d200;/* ドロップダウンホバー*/
}
.dropdown__list a {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-decoration: none;
    position: relative;
}
.dropdown__list a::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    transform: rotate(135deg);
    position: absolute;
    right: 15px;
    top: calc(50% - 5px);
}
/*===============================
ボタン3CSS
===============================*/

.sample_btn3 {
  display: inline-block;
  width: 250px;
  text-align: center;
  text-decoration: none;
  line-height: 60px;
  outline: none;
  color: #fff;
  background-color: #00e6d2 ;
  box-shadow: 0px 5px 0px #00ccbb ;
  -webkit-transition: all .3s;
  transition: all .3s;
  border-radius:15px;
  margin-top:300px;
}

.sample_btn3:hover {
  transform: scale(1.1,1.1);
}