@charset "UTF-8";

@import url(https://fonts.googleapis.com/css?family=Work+Sans:400,300,700|Open+Sans:400italic,300italic);
body {
  background-color: #fff
}

.home {
  width: 100%;
  height: 100vh;
  position: relative;
}


/* ====================================
Navigation 
==================================== */

.overlay-navigation {
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: hsla(0, 0%, 0%, 0.8);
  transform: translateY(-100%);
}

.overlay-slide-down {
  transition: all .4s ease-in-out;
  transform: translateY(0)
}

.overlay-slide-up {
  transition: all .8s ease-in-out;
  transform: translateY(-100%)
}

nav,
nav ul {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  flex-basis: 20%;
  justify-content: center;
  align-items: center;
  height: 100%;
  overflow: hidden;
  transform: translateY(-100%);
}

nav li a {
  position: relative;
  top: 46%;
  color: #000;
  text-transform: uppercase;
  font-family: 'Work sans', sans-serif;
  font-weight: 300;
  letter-spacing: 4px;
  text-decoration: none;
  display: block;
  text-align: center;
  font-size: 0.9rem;
}

nav li a:before {
  content: '';
  width: 70px;
  height: 2px;
  background-color: #000;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 100;
  transform: translateX(-100%);
  opacity: 0;
  transition: all .2s linear;
}

nav li a:after {
  content: attr(data-content);
  font-size: 0.7rem;
  transition: all .2s linear;
  opacity: 0;
  position: absolute;
  z-index: 100;
  color: #000;
  display: block;
  margin-right: auto;
  margin-left: auto;
  left: 0;
  right: 0;
  bottom: -50px;
  text-transform: none;
  font-family: 'Open sans', serif;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0;
}

nav li a:hover:before {
  transform: translateX(0);
  opacity: 1;
}

nav li a:hover:after {
  transform: translateY(15px);
  opacity: 1;
}

nav li:nth-of-type(1){background-color: #29363B}
nav li:nth-of-type(2){background-color: #EA495F}
nav li:nth-of-type(3){background-color: #F4837D}
nav li:nth-of-type(4){background-color: #FDCEA9}
nav li:nth-of-type(5){background-color: #99B998}

.slide-in-nav-item {
  animation: slide-in-nav-item 0.4s linear 1 .2s both;
}

.slide-in-nav-item-delay-1 {
  animation: slide-in-nav-item 0.4s linear 1 .4s both;
}

.slide-in-nav-item-delay-2 {
  animation: slide-in-nav-item 0.4s linear 1 .6s both;
}

.slide-in-nav-item-delay-3 {
  animation: slide-in-nav-item 0.4s linear 1 .8s both;
}

.slide-in-nav-item-delay-4 {
  animation: slide-in-nav-item 0.4s linear 1 1s both;
}

.slide-in-nav-item-reverse {
  animation: slide-in-nav-item-reverse .3s linear 1 .5s both;
}

.slide-in-nav-item-delay-1-reverse {
  animation: slide-in-nav-item-reverse .3s linear 1 .4s both;
}

.slide-in-nav-item-delay-2-reverse {
  animation: slide-in-nav-item-reverse .3s linear 1 .3s both;
}

.slide-in-nav-item-delay-3-reverse {
  animation: slide-in-nav-item-reverse .3s linear 1 .2s both;
}

.slide-in-nav-item-delay-4-reverse {
  animation: slide-in-nav-item-reverse .3s linear 1 both;
}


/* ====================================
Burger king
==================================== */

.open-overlay {
  position: absolute;
  right: 5rem;
  top: 3.2rem;
  z-index: 100;
  width: 34px;
  display: block;
  cursor: pointer;
}

.open-overlay span {
  display: block;
  height: 1px;
  background-color: #fff;
  cursor: pointer;
  margin-top: 8px;
}

.animate-top-bar {
  animation: animate-top-bar .6s linear 1 both
}

.animate-bottom-bar {
  animation: animate-bottom-bar .6s linear 1 both
}

.animate-middle-bar {
  animation: animate-middle-bar .6s linear 1 both
}

.animate-out-top-bar {
  animation: animate-out-top-bar .6s linear 1 both
}

.animate-out-bottom-bar {
  animation: animate-out-bottom-bar .6s linear 1 both
}

.animate-out-middle-bar {
  animation: animate-out-middle-bar .6s linear 1 both
}


/* ====================================
Animation keyframes
==================================== */

@keyframes slide-in-nav-item {
  from {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%)
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0)
  }
}

@keyframes slide-in-nav-item-reverse {
  from {
    -webkit-transform: translateY(0);
    transform: translateY(0)
  }
  to {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%)
  }
}

@keyframes animate-top-bar {
  0% {
    background-color: #fff;
  }
  50% {
    -webkit-transform: translateY(9px);
    transform: translateY(9px)
  }
  80% {
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
    background-color: #fff
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    background-color: #29363B;
  }
}

@keyframes animate-bottom-bar {
  0% {
    background-color: #fff;
  }
  50% {
    -webkit-transform: translateY(-9px);
    transform: translateY(-9px)
  }
  80% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
    background-color: #fff;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    background-color: #29363B;
  }
}

@keyframes animate-middle-bar {
  0% {
    background-color: #fff;
  }
  80% {
    background-color: #fff;
  }
  100% {
    background-color: #29363B;
  }
}

@keyframes animate-out-top-bar {
  0% {
    background-color: #29363B
  }
  50% {
    -webkit-transform: translateY(9px);
    transform: translateY(9px)
  }
  80% {
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
    background-color: #29363B
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    background-color: #FFF;
  }
}

@keyframes animate-out-bottom-bar {
  0% {
    background-color: #29363B
  }
  50% {
    -webkit-transform: translateY(-9px);
    transform: translateY(-9px)
  }
  80% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
    background-color: #29363B;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    background-color: #FFF;
  }
}

@keyframes animate-out-middle-bar {
  0% {
    background-color: #29363B
  }
  80% {
    background-color: #29363B;
  }
  100% {
    background-color: #fff;
  }
}
.home a{
  font-family: "Work Sans", sans-serif;
  color: #fff;
  font-weight: 300;
  font-size: 12px;
  text-transform: uppercase;
  text-decoration: none;
  position: absolute;
  z-index: 10;
  top:50px;
  left:50px;
  padding-bottom: 3px;
  border-bottom: 1px solid #fff;
}
@media (max-width: 640px) {
  nav ul li a {
    font-size: 11px;
  }
  nav li a:after {
    font-size: 0.6rem;
  }
  .open-overlay {
    right: 1rem;
  }
  nav li a:before {
    width: 15px;
  }
}










header {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  height: 60px;
  align-items: center;
}
navi{
  float:right;
  }
navi ul {
  max-width: 100%;
  display: flex;
  height: 40px;
}

navi ul li {
color: #333;
  padding: 0 10px;
  height: 100%;
}

navi ul li a {
  text-decoration: none;
  color: #333;
  display: block;
  height: 100%;
  display: flex;
  align-items: center;
  transition: .3s;
  font-weight: normal;
  position: relative;
  padding: 0 10px;
}

navi ul li a::after {
color: #333;
  content: '';
  display: block;
  height: 1px;
  width: 80%;
  background: Orange;
  position: absolute;
  bottom: 0;
  left: 10%;
  transform: scale(0, 1);
  transition: .3s;
}

navi ul li a:hover {
  color: Orange;
}

navi ul li a:hover::after {
  transform: scale(1, 1);
}




.slideshow2 {
  width:1200px;
  position: relative;
}
.slideshow2 .fadeInIcon {
    animation-name: fadeInIcon;
    animation-delay: 0;
    animation-duration: 3s;
    animation-fill-mode: forwards;
    transform: translateY(0px);
    opacity: 0;
    position: absolute;
    top:314px;
    left:508px;
}
.slideshow2 .fadeInText {
    animation-name: fadeInText;
    animation-delay: 7000ms;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    transform: translateY(50px);
    opacity: 0;
    position: absolute;
    bottom:50px;
    left:50px;
}
@keyframes fadeInIcon {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
@keyframes fadeInText {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
.outline {
  display        : inline-block;
  color          : #4d4dff;            /* 文字の色 */
  font-size      : 36pt;               /* 文字のサイズ */
  letter-spacing : 4px;                /* 文字間 */
  text-shadow    : 
       2px  2px 1px #ffffff,
      -2px  2px 1px #ffffff,
       2px -2px 1px #ffffff,
      -2px -2px 1px #ffffff,
       2px  0px 1px #ffffff,
       0px  2px 1px #ffffff,
      -2px  0px 1px #ffffff,
       0px -2px 1px #ffffff;        /* 文字の影 */
}
/* 4カラム */
*, *:before, *:after {
	box-sizing: border-box;
}
.col4_1{
	width: 100%;
	display: flex;
	display: -ms-flexbox; /* IE10 */
	flex-wrap: wrap;
	-ms-flex-wrap: wrap; /* IE10 */
	background-color: #fff; /* 背景の色 */
	color: #333; /* 文字の色 */
	text-align: center; /* 内容は中央配置 */
}
.col4_2{
	width: 100%;
	display: flex;
	display: -ms-flexbox; /* IE10 */
	flex-wrap: wrap;
	-ms-flex-wrap: wrap; /* IE10 */
	background-color: #fff; /* 背景の色 */
	color: #333; /* 文字の色 */
	text-align: center; /* 内容は中央配置 */
	margin-top:30px;
}
.col4_1 > div{
	width: 25%;
	padding: 0px;
}
.col4_2 > div{
	width: 25%;
	padding: 0px;
}

.search_container{
  box-sizing: border-box;
  position: relative;
  border-top: 1px solid #999;
  border-bottom: 1px solid #999;
  border-right: 1px solid #999;
  padding: 9px 10px;
  border-radius: 0 10px 10px 0;
  height: 2.8em;

  overflow: hidden;
  text-align:center;
}
.search_container input[type="text"]{
  border: none;
  height: 2.0em;
}
.search_container input[type="text"]:focus {
  outline: 0;
}
.search_container input[type="submit"]{
  cursor: pointer;
  font-family: FontAwesome;
  font-size: 1.3em;
  border: none;
  background: #3879D9;
  color: #fff;
  position: absolute;
  width: 3.5em;
  height: 3.0em;
  right:0px;
  top: -10px;
  outline : none;
}
.searchLeft{
 text-align:right;
 width: 40%;
}
 .searchRight{
 text-align:left;
 width: 40%;
}
.search{
 width: 100%;
 display: flex;
 margin:0 0px 30px 0;
 texdt-align:center;

}
.selectbox-3 {
    display: inline-flex;
    align-items: center;
    position: relative;
}

.selectbox-3::after {
    position: absolute;
    right: 15px;
    width: 10px;
    height: 7px;
    background-color: #999;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    content: '';
    pointer-events: none;
}

.selectbox-3 select {
    appearance: none;
    min-width: 100%;
    height: 2.8em;
    padding: .4em calc(.8em + 30px) .4em .8em;
    border: 1px solid #999;
    border-radius: 10px 0 0 10px;
    background-color: #fff;
    color: gray;
    font-size: 1em;
    cursor: pointer;
}
.selectbox-3 select option{

  color:gray;
}
select{
width:30%;
  color:gray;
}
input::placeholder{
  color:gray;
}





.checkbox-container {
  display: flex;
  justify-content: left;
  align-items: center;
  padding: 0 0 10px 0;
  margin: 0 0 10px 10px;
  font-size:13px;
}

/* ラッパーのスタイル */
.checkbox-wrapper {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

/* デフォルトのチェックボックスを非表示 */
.checkbox-input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* カスタムチェックボックスのコンテナ */
.checkbox-tile {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* チェックボックスの外枠 */
.checkbox-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: 2px solid #d1d5db;
  border-radius: 6px;
  transition: all 0.2s ease;
}

/* チェックマークのSVG */
.checkbox-icon svg {
  width: 16px;
  height: 16px;
  opacity: 0;
  transform: scale(0);
  transition: all 0.2s ease;
}

/* チェック時のスタイル */
.checkbox-input:checked ~ .checkbox-tile .checkbox-icon {
  background-color: #3b82f6;
  border-color: #3b82f6;
}

.checkbox-input:checked ~ .checkbox-tile .checkbox-icon svg {
  opacity: 1;
  transform: scale(1);
  color: white;
}

/* ホバー時のスタイル */
.checkbox-wrapper:hover .checkbox-icon {
  border-color: #3b82f6;
}

/* フォーカス時のスタイル */
.checkbox-input:focus ~ .checkbox-tile .checkbox-icon {
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

footer{
background-color:#29a7e1;
margin:50px 0 0px 0;
padding:50px 0;
text-align:center;
color:#fff;
font-size:15px;
}



@media screen and (max-width: 600px) {
.slideshow {
  position: relative;
  width:100%;
  height:500px;
  background-image: url('./images/1.jpg');
}
	.col4_1 > div{
		width: 100%;
	}
	.col4_2 > div{
		width: 100%;
	}
	.searchLeft{
 width: 40%;
}
 .searchRight{
 width: 55%;
}
}


img {
  max-width: 100%;  
  vertical-align: bottom;
}
.top_box1{
height:300px;
}
.top_box1_title{
margin-right:0px;
padding:0px 0px;
}


.news {
  height:340px;
  overflow: auto;
  line-height: 1.8;
  padding: 8px 8px 7px 8px;
  margin: 0px;
  background-color: #ffffff;
}
.newsList{
text-align:right;
padding:7px 20px 0 0;
}
.newsContainer {
background-color: #fff;
    display: flex; /* フレックスボックスを使用 */

    margin: 0 auto; /* 中央に配置 */
    gap: 20px; /* カラム間の隙間を作る */
    padding: 0px;
    box-sizing: border-box; /* パディングを含めて幅を計算 */
    margin-top:30px;
}

.newsContent {
    border-left: 1px solid orange;
    border-right: 1px solid orange;
    border-bottom: 1px solid orange;
    padding: 0px;
    width:60%;
}

.sidebar {
    padding: 0px;
    background-color: #fff;
    width:40%;
}
.newsTitle{
	background: orange;
	color: #fff;
	height: 50px;
	text-align: center;
	font-size: 20px;
	padding: 10px 0 0 0;
}

/* レスポンシブデザイン用のメディアクエリ */
@media (max-width: 768px) {
    .newsContainer {
        display: block; /* カラムを縦に並べる */
        margin: 10px; /* 余白をリセット */
        padding: 0px; /* 余白をリセット */
    }

    .newsContent, .sidebar {
        width: 100%; /* 各カラムを幅100%に設定 */
        margin: 10px; /* 余白をリセット */
        padding: 0px; /* 余白をリセット */
    }
}

footer{
	width:100%;
	background-color:#29a7e1;
	margin:50px 0px 0px 0px;
	padding:30px 0  30px  30px;
	text-align:left;
	color:#fff;
	font-size:15px;
}
footer div{
	text-align:center;
	margin:30px 0 0 0;
}
footer a:link{
	color:#ffffff;
	text-decoration:none;
}
footer a:visited{
	color:#ffffff;
	text-decoration:none;
}
footer a:hover{
	color:#f8b62a;
	text-decoration:underline;
}
footer a:active{
	color:#ffffff;
	text-decoration:none;
}
footer .footer-2__sns-icon {
    width: 31px;
    height: 31px;
    
}
.newsContent a:link{
	color:#333333;
	text-decoration:none;
}
.newsContent a:visited{
	color:#333333;
	text-decoration:none;
}
.newsContent a:hover{
	color:#f8b62a;
	text-decoration:underline;
}
.newsContent a:active{
	color:#333333;
	text-decoration:none;
}
.search_text{
	margin:30px 0 20px 0;
	text-align:center;
	font-size:2em;
}
.banner{
	width:100%;
	border-collapse:collapse;
	border-spacing:0;
	padding:0px;
}
.clear{
	clear:both;
}
