﻿@charset "UTF-8";

@import url('//fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;600;700;900&display=swap');
@import url('//fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;400;500;600;700;900&display=swap');
@import url('//fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;500;700;900&display=swap');
@import url('//fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;500;700;900&display=swap');
@import url('//fonts.googleapis.com/css2?family=Zen+Old+Mincho:wght@400;500;600;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');
/* Google font Icon */
@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200");


/*========================
ナビゲーション
========================*/
#menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 640px) {
#menu {
  font-size: 1.1em;
	}
}
#menu-btn {
  display: none;
}

#menu-content {
  margin: 0;
  list-style-type: none;
}

#menu-content > li {
  position: relative;
  float: left;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  padding: 0 1em;
}
#menu-content > li:last-child{
  padding: 0 0 0 1em;
  border-right: none;
}
@media screen and (max-width: 1080px) {
#menu-content > li {
  padding: 0 0.8em;
	}
#menu-content > li:last-child{
  padding: 0 0 0 0.8em;
	}
}
@media screen and (max-width: 960px) {
#menu-content > li {
  padding: 0 0.6em;
	}
#menu-content > li:last-child{
  padding: 0 0 0 0.6em;
	}
}
@media screen and (max-width: 767px) {
#menu-content > li {
  padding: 0;
	}
#menu-content > li:last-child{
  padding: 0;
	}
}

#menu-content > li > a {
  display: block;
  line-height: 3;
  color: #FFF;
  font-size: 1em;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  font-family: "Noto Sans Japanese", sans-serif;
  letter-spacing: 0.05em;
}
#menu-content > li > a:hover{
  color: #FFF;
}
@media screen and (max-width: 1080px) {
#menu-content > li > a {
  font-size: 0.9em;
	}
}
@media screen and (max-width: 960px) {
#menu-content > li > a {
  font-size: 0.85em;
	}
}
@media screen and (max-width: 767px) {
#menu-content > li > a {
  color: #FFF;
  line-height: 2.4;
  position: relative;
  padding: 0 0 0 1.6em !important;
	}
#menu-content > li > a:hover{
  color: #FFDC73;
	}
#menu-content > li > a:after {
	position: absolute;
    top: 50%;
    left: 6px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
	font-size: 1em;
	line-height: 1;
	font-family:"Material Symbols Rounded";
	content: "\e037"; /*三角矢印*/
	font-variation-settings:
	'FILL' 1,
	'wght' 500
  }
}

#menu-content > li > ul.second-content {
  visibility: hidden;
  opacity: 0;
  position: absolute;
	top: 3em;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  padding-left: 0;
  list-style-type: none;
}
@media screen and (max-width: 1080px) {
#menu-content > li > ul.second-content {
	top: 2.6em;
	}
}
@media screen and (max-width: 767px) {
#menu-content > li > ul.second-content {
	top: 0;
	}
}

#menu-content > li:hover > ul.second-content {
  visibility: visible;
  opacity: 1;
  -webkit-transition: opacity 0.2s, visibility 0.2s;
  transition: opacity 0.2s, visibility 0.2s;
}

#menu-content > li > ul.second-content > li {
  text-align: left;
  width: auto;
}

/*内部リンクアイコン*/
#menu-content .second-content .jumpicon {
  position: relative;
	padding: 0 2.2em 0 1.2em;
  font-family: "Noto Sans Japanese", sans-serif;
  letter-spacing: 0.03em;
}
#menu-content .second-content .jumpicon:after {
	position: absolute;
    top: 50%;
    right: 6px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
	font-size: 1em;
	line-height: 1;
	font-family:"Material Symbols Rounded";
	content: "\e5e1"; /*矢印*/
	font-variation-settings:
	'FILL' 1,
	'wght' 300
}
@media screen and (max-width: 767px) {
#menu-content .second-content .jumpicon {
  position: relative;
	padding: 0 2em 0 0.8em;
	font-weight: 400;
	}
}

/*外部リンクアイコン*/
#menu-content .second-content .exjumpicon {
  position: relative;
	padding: 0 2.6em 0 1.2em;
  font-family: "Noto Sans Japanese", sans-serif;
  letter-spacing: 0.03em;
}
#menu-content .second-content .exjumpicon:after {
	position: absolute;
    top: 50%;
    right: 6px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
	font-size: 1.3em;
	line-height: 1;
	font-family:"Material Symbols Rounded";
	content: "\e89e"; /*出口矢印*/
	font-variation-settings:
	'FILL' 1,
	'wght' 300
}
@media screen and (max-width: 767px) {
#menu-content .second-content .exjumpicon {
  position: relative;
	padding: 0 2.4em 0 0.8em;
	font-weight: 400;
	}
}

#menu-content > li > ul.second-content > li > a {
  display: block;
  line-height: 3.4;
  color: #FFF;
  font-size: 0.85em;
  text-decoration: none;
  white-space: nowrap;
  background: #444;
  font-weight: 500;
}
@media screen and (max-width: 1080px) {
#menu-content > li > ul.second-content > li > a {
  font-size: 0.8em;
	}
}

#menu-content > li > ul.second-content > li > a:hover {
  background: #000;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

@media screen and (max-width: 767px) {
  nav {
    position: fixed;
    top: 0;
    left: -300px;
    bottom: 0;
    width: 74%;
    background: #00468C;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    z-index: 3;
    opacity: 0;
	max-width: 280px;
  }
  .open nav {
    left: 0;
    opacity: 1;
  }
  nav .inner {
    padding: 18px 0;
  }
  nav .inner ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  nav .inner ul li {
    position: relative;
    margin: 0;
  }
  nav .inner ul li a {
    display: block;
    text-decoration: none;
    -webkit-transition-duration: 0.2s;
            transition-duration: 0.2s;
  }
  .toggle_btn {
    display: block;
    position: fixed;
    top: 1em;
    right: 1.2em;
    width: 34px;
    height: 31px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    cursor: pointer;
    z-index: 3;
  }
  .toggle_btn span {
    position: absolute;
    left: 0;
    width: 34px;
    height: 3px;
    background-color: #00468C;
    border-radius: 4px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .toggle_btn span:nth-child(1) {
    top: 4px;
  }
  .toggle_btn span:nth-child(2) {
    top: 14px;
  }
  .toggle_btn span:nth-child(3) {
    bottom: 4px;
  }
  .open .toggle_btn span {
    background-color: #fff;
  }
  .open .toggle_btn span:nth-child(1) {
    -webkit-transform: translateY(10px) rotate(-315deg);
    transform: translateY(10px) rotate(-45deg);
  }
  .open .toggle_btn span:nth-child(2) {
    opacity: 0;
  }
  .open .toggle_btn span:nth-child(3) {
    -webkit-transform: translateY(-10px) rotate(315deg);
    transform: translateY(-10px) rotate(45deg);
  }
  #mask {
    display: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .open #mask {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.5;
    z-index: 2;
    cursor: pointer;
  }
  #menu-content > li {
    width: 100%;
  }
  #menu-content > li:last-child{
  border-bottom: none;
  }
  #menu-content > li:hover {
    background: none;
  }
  #menu-content > li > a {
    height: 100%;
    padding: 0 0.5em;
    font-size: 0.9em;
  }
  #menu-content > li > ul.second-content {
    visibility: visible;
    opacity: 1;
    width: 100%;
    position: relative;
    -webkit-box-shadow: none;
   box-shadow: none;
  }
  #menu-content > li > ul.second-content > li {
    width: 100%;
    text-align-last: left;
  }
  #menu-content > li > ul.second-content > li > a {
    margin-left: 2em;
    background: none;
    color: #CCDAE8;
    line-height: 2.3;
  }
  #menu-content > li > ul.second-content > li > a:hover {
    background: none;
  }
}