@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
}
body {
  color: #333; /* RGB */
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 500;
  font-size: 1.6em;
  line-height: 2.4rem;
  text-align: center;
}
section h2 {
  font-size: 2.4rem;
}
a:hover {
  opacity: 0.8;
}
*, *:before, *:after {
  box-sizing: border-box;
}
#menu08 {
  display: none;
}
/*header*/
.main {
  height: 100vh;
}
.header {
  height: 66px;
  width: 100%;
  background: linear-gradient(90deg, #265bd4 15%, #00579b 85%);
}
.header-content-wrapper {
  display: flex;
  justify-content: space-between;
  /*max-width: 2000px;*/
  margin: 0 auto;
}
.header h1 a {
  color: #fff;
  text-decoration: none;
  text-align: left;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 2.2rem;
  position: relative;
  display: flex;
  margin: 11px auto 0 40px;
  font-family: serif;
}
.header li a {
  color: #fff;
  text-decoration: none;
  font-size: 2.8rem;
  font-weight: 200;
  line-height: 2.8rem;
  font-family: serif; 
}
.header ul {
  margin-right: 20px;
  margin-top: 20px;
  text-align: right;
}
.header ul li {
  display: inline-block;
  padding: 0 20px;
}
/* navigation */
@media (max-width: 1260px) {
/*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
.openbtn8{
  position: relative;/*ボタン内側の基点となるためrelativeを指定*/
  margin: 0 0 0 auto;
  background-color: rgba(0, 0, 0, 0.0);
  cursor: pointer;
    width: 50px;
    height:50px;
  border-radius: 0px;
  z-index: 10000;
}

/*ボタン内側*/
.openbtn8 .openbtn-area{
    transition: all 1.0s;/*アニメーションの設定*/
  width:50px;
  height:50px;
}

.openbtn8 span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
  background: #fff;
    width: 45%;
  }

.openbtn8 span:nth-of-type(1) {
  top:15px; 
}

.openbtn8 span:nth-of-type(2) {
  top:23px;
}

.openbtn8 span:nth-of-type(3) {
  top:31px;
}

/*activeクラスが付与されると .openbtn-areaが360度回転し、その中の線が回転して×に*/
.openbtn8.active .openbtn-area{
  transform: rotate(360deg);
}

.openbtn8.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

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

.openbtn8.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}
  
#menu08,
#menu08 span {
  display: inline-block;
  box-sizing: border-box;
}
#menu08 {
  position: relative;
  margin: 0 0 0 auto;
  width: 32px;
  height: 24px;
  background: none;
  border: none;
  appearance: none;
  cursor: pointer;
}
#menu08:focus:not(:focus-visible) {
  outline: none;
}
#menu08::before,
#menu08::after {
  content: '';
}
#menu08::before,
#menu08::after,
#menu08 span {
  position: absolute;
  width: 100%;
  height: 4px;
  background: #fff;
  border-radius: 4px;
  transition: .2s;
}
#menu08::before {
  top: 0;
  left: 6px;
  transform-origin: 0 0;
  transform: rotate(45deg) scaleX(0);
  transition-delay: 0s;
}
#menu08::after {
  top: 0;
  right: 7px;
  transform-origin: 100% 0;
  transform: rotate(-45deg) scaleX(0);
  transition-delay: .2s;
}
#menu08 span:nth-of-type(-n+3) {
  left: 0;
  transform-origin: 100% 0;
  transition-delay: .5s;
}
#menu08 span:nth-of-type(1) {
  top: 0;
}
#menu08 span:nth-of-type(2) {
  top: 10px;
}
#menu08 span:nth-of-type(3) {
  bottom: 0;
}
#menu08.active::before {
  transform: rotate(45deg) scaleX(1);
  transition-delay: .6s;
}
#menu08.active::after {
  transform: rotate(-45deg) scaleX(1);
  transition-delay: .8s;
}
#menu08.active span:nth-of-type(-n+3) {
  transform: scaleX(0);
}
#menu08.active span:nth-of-type(1) {
  transition-delay: .1s;
}
#menu08.active span:nth-of-type(2) {
  transition-delay: .25s;
}
#menu08.active span:nth-of-type(3) {
  transition-delay: .4s;
}

.header-content-wrapper {
  margin: 0;
}
  .header {
    height: 66px;
    z-index: 1000;
    padding: 11px 16px; /* ヘッダーに上下左右それぞれ余白を指定 */
    box-sizing: border-box; /* padding分を含んで幅を100%にするため */
    position: fixed; /* ウィンドウを基準に画面に固定 */
    top: 0; /* 上下の固定位置を上から0pxにする */
    left: 0; /* 左右の固定位置を左から0pxにする */
    display: flex; /* 中の要素を横並びにする */
    align-items: center; /* 中の要素を上下中央に並べる */
  }
  #a {
    padding: 10px 12px;
    margin: 0;
  }
  .header nav {
    z-index: 1000;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, #265bd4 15%, #00579b 85%);
    width: 86%;
    height: 100%;
    padding-top: 67px;
    box-shadow: 10px 10px 25px rgba(250, 250, 250, 1.0);
  }
  .header nav ul li {
    border-bottom: solid 1px rgba(162, 147, 105, 1.0);
    display: block;
    text-align: center;
    margin-top: 28px;
  }
  .header h1 a {
  margin: 0;
  }
  .header nav ul li a {
    font-weight: 600;
    line-height: 40px;
    vertical-align: middle;
    text-decoration: none;
    color: #fff;
    padding: 0;
  }
}
/*footer*/
.footer {
  width: 100%;
  background-color: #3d3d3d;
  display: flex;
  padding: 80px 0;
  justify-content: center;
}
.footer a {
  text-decoration: none;
  color: #fff;
}
.footer h2 {
  color: #fff;
  font-size: 2.4rem;
  line-height: 2.4rem;
}
.footer h4 {
  color: #fff;
  font-size: 2.0rem;
  line-height: 2.0rem;
  margin: 40px 0 40px;
}
.footer small {
  color: #fff;
}
.footer_info {
  display: flex;
  flex-direction: column;
  text-align: left;;
}
.footer_info a {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
.footer_info a img {
  margin-right: 16px;
}
.footer_info a p {
  font-size: 1.8rem;
  line-height: 1.8rem
}
.footer-content-wrapper {
  display: flex;
  flex-direction: column;
  text-align: left;
  margin-left: 80px;
}
.footer-content-wrapper ul {
  list-style-type: none;
}
.footer-content-wrapper li {
  margin-bottom: 28px;
}
.footer-content-wrapper li a {
  font-size: 2.0rem;
  line-height: 2.0rem;
  margin-bottom: 28px;
}
  .footer_br {
    display: none;
  }
@media (max-width: 800px) {
.footer {
  flex-direction: column-reverse;
  align-items: center;
  padding: 80px 40px;
}
.footer-content-wrapper {
  margin: 0 auto 60px auto;
}
.footer h2 {
  font-size: 2.0rem;
  line-height: 3.0rem;
}
.footer h4 {
  color: #fff;
  font-size: 1.6rem;
  line-height: 2.4rem;
}
}
@media (max-width: 500px) {
.footer-content-wrapper {
  margin: 0 auto 60px 0;
}
}
@media (max-width: 450px) {
  .footer_br {
    display: block;
  }
}

/* 通常時はホバー時の文字を非表示にする */
a .hover{
display: none;
}

/* ホバー時は通常時の文字を非表示にする */
a:hover .normal{
display: none;
}
/* ホバー時に、ホバー時の文字を表示する */
a:hover .hover{
display: inline-block;
}