@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&family=Noto+Sans+JP:wght@100..900&family=Outfit:wght@100..900&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background: #f2f2e5
}
.container {
  max-width: 1280px;
  margin: auto;
}
@media screen and (max-width:768px) {
  #contents {
    margin-top: 80px
  }
	/* ハンバーガーボタンのデザイン */
.drawer__button {
  position: relative;
  width: 3rem;
  height: 3rem;
  background-color: transparent;
  border: none;
  cursor: pointer;
  z-index: 999; /* メニューを開いている時もクリックできるよう設定 */
        position: fixed;
        right: 0;
        top: 5px;
        background: #040a5b;
        border-radius: 5px 0 0 5px;
}
/* ハンバーガーボタン内の線 */
.drawer__button > span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2rem;
  height: 2px;
  background-color: #cebf97;
  transform: translateX(-50%);
}
.drawer__button > span:first-child {
  transform: translate(-50%, calc(-50% - 0.5rem));
  transition: transform 0.3s ease;
}
.drawer__button > span:nth-child(2) {
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}
.drawer__button > span:last-child {
  transform: translate(-50%, calc(-50% + 0.5rem));
  transition: transform 0.3s ease;
}
/* 展開時のデザイン */
.drawer__button.active > span:first-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.drawer__button.active > span:nth-child(2) {
  opacity: 0;
}
.drawer__button.active > span:last-child {
  transform: translate(-50%, -50%) rotate(45deg);
}
/* メニューのデザイン */
.drawer__nav {
  position: fixed; /* 追従ヘッダーなどでも表示できるよう設定しておく */
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s ease;
  opacity: 0;
  visibility: hidden;
}
.drawer__nav.active {
  opacity: 1;
  visibility: visible;
}
.drawer__nav__inner {
  position: relative;
  width: 80%;
  height: 100%;
  background-color:#040a5b;
  padding: 4rem 1.5rem 1rem;
  margin: 0 0 0 auto;
  overflow: scroll;
  transform: translateX(100%);
  transition: transform 0.3s ease;
	overflow: hidden;
}
.drawer__nav.active .drawer__nav__inner {
  transform: translateX(0);
}
.drawer__nav__menu {
  list-style: none;
  padding-left: 0;
}.drawer__nav__item {
  border-bottom: solid 1px lightgray;
}
.drawer__nav__link {
  display: block;
  color: black;
  text-decoration: none;
  padding: 1rem 1rem;
}

/*************************************************/
  #header .navbar {
    width: 100%;
    /*box-shadow: 0 1px 4px rgb(146 161 176 / 15%);*/
    position: fixed;
    top: 0;
    z-index: 2;
	 background: #f2f2e5de;
  }
  #header .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 62px;
  }
  #header .navbar .nav-container li {
    list-style: none;
  }
  #header .navbar .nav-container a {
    text-decoration: none;
    color: #cebf97;
    font-weight: 900;
    font-size: 1.6rem;
    padding: 0.9rem 0.7rem;
    font-family: 'Outfit';
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  #header .navbar .nav-container a span {
    display: block;
    font-size: 0.4em;
    font-family: 'Noto Sans JP';
    line-height: 1;
  }
  #header .navbar .nav-container a:hover {}
  #header .nav-container {
    display: block;
    position: relative;
    height: 60px;
    z-index: 2;
  }
  #header .navbar .nav-container li.news {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
  }
  #header .navbar .nav-container li.news a {
    width: 40%;
  }
  #header .navbar .nav-container li.news ul {
 
  }
  #header .navbar .nav-container li.news ul li{
    border: none;
    margin: 0;
    padding: 0;
    text-align: left;
  }
  #header .navbar .nav-container li.news ul li a.drawer__nav__link{
    color: #cebf97;
    padding:0.4em 0.8em;
    font-size: 1rem;
    display: block;
    line-height: 1;
    width: 100%;
	border-bottom:none
  }
  #header .navbar .nav-container .menulogo {
    opacity: 0.3;
    position: absolute;
    bottom: 0;
    text-align: center;
    width: 90%;
  }
   #header .navbar .nav-container .menulogo img {
    max-width: 180px;
  }
  #header .navbar .logo {
    position: absolute;
    top: 5px;
    left: 10px;
    width: 80%;
	} #header .navbar .logo a{
       text-decoration: none;
        font-size: 0.9em;
        padding: 0.2em;
        line-height: 1.5;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        color: #000;
        gap: 10px;
  }#header .navbar .logo a img{
     height: 40px;
  }#header .navbar .logo a span{
    display: inline;
	font-size: 0.8em;
  }
  #pc_menu {
    display: none
  }
}
@media only screen and (min-width: 769px) {
  .navbar {
    display: none;
  }
  #pc_menu {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
	 align-items: center;
  }
  #pc_menu .logo {
    margin-right: auto;
    padding-left: 1em;
  }
	#pc_menu .logo a{
	display: flex;
    align-items: center;
	gap: 20px;
	text-decoration: none;
	color: #000;
	}
	#pc_menu .logo a{
	display: flex;
    align-items: center;
	gap: 20px;
	font-weight: 700;
	}
	#pc_menu .logo a h1 span{
	margin-left: 20px;
	font-size: 0.8em;
	}
  #pc_menu .logo img {
    height: 54px;
  }
  #pc_menu ul {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    align-items: center;
  }
  #pc_menu ul li {}
  #pc_menu ul li a {
    display: block;
    padding: 0.8em;
    color: rgba(12, 22, 62, 1.00);
    font-size: 1.3em;
    font-family: 'Noto Sans JP';
    font-weight: 900;
    text-decoration: none;
  }
  #pc_menu ul li.mail {
    background: #164365;
    color: #FFF;
    border-radius: 80px;
  }
  #pc_menu ul li.mail a {
    color: #FFF;
    padding: 0.5em 1em
  }
}
footer {
	padding:0.5em;
	text-align: left;}
footer p {
  font-size: 0.8em;
}

@media screen and (max-width:968px) {
	footer ul li ul{
		display: none
	}
}
@media only screen and (min-width: 769px) {
footer ul{
	display: flex;
	justify-content: space-between;
	align-items: end;
}
footer ul li{
	text-align: justify;
	padding: 0.2em;
	}
footer ul li ul li a{
	display: block;
        padding:0 0.3em;
        color: rgba(12, 22, 62, 1.00);
        font-size: 1.1em;
        font-family: 'Noto Sans JP';
        font-weight: 900;
        text-decoration: none;
	}
	footer ul li br{
		display: none
	}
}