@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond&display=swap');

/* ---------------------------------------------------------------------------------------------

　   リセット

--------------------------------------------------------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video,picture {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  /*font: inherit;*/
  vertical-align: baseline;
  line-height: 1.5em;
	text-decoration-line: none;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  margin : 0;
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
}

img {
  vertical-align: bottom;
  border: none;
}
picture {
  display: block;
}

/*====================
PCを基本設計にする
 - 〜479px：スマートフォン縦
 - 480px〜599px：スマートフォン横
 - 600px〜959px：タブレット
 - 960px〜1279px：小型PC
 - 1280px〜：大型PC
====================*/

body{
font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ","Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
margin:0px;
padding:0px;/*隙間を空けないように指定します*/
font-size:15px;
letter-spacing:0.1em;

}
/*コンテンツ　実際に使うページの設定*/
#container{ 
max-width: 1280px;
margin:  auto; /*マージン左右autoでセンター合わせになる*/
font-size:100%;
}
.menu_sub .yellow{
	color:#EEEF61;}


.yellow{
	color:#E7F493;}


 .green{
	color:#BEE0D1;}
	
.perple{
		color:#9C9ACB;}
	
 .blue{
	color:#8EE4E8;
		
}

/* ---------------------------------------------------------------------------------------------

　   メニュー

--------------------------------------------------------------------------------------------- */
#nav li a {
  display: block;
  color: #fff;
  position: relative;
  padding-right: 10px;
}
#nav .menu-item-has-children > a:after,#nav .menu-item-has-children > a:before {
  display: block;
  content: "";
  position: absolute;
  top: 0; 
  bottom: 0;
  right: 20px;
  margin: auto;
  width: 10px;
  height: 1px;
  background: #fff;
  transition: .2s;
}
#nav .menu-item-has-children > a:after {
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
}
#nav .menu-item-has-children > a.open:before{
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
}
#nav .menu-item-has-children > a.open:after{
  background: transparent;
}
#nav .menu-item-has-children .sub-menu {
  display: none;
}



/*デバイス*/
@media only screen and ( max-width : 767px ) {
  .overlay {
    width: 0;
    height: 0;
    position: fixed;
    z-index: 11;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity .5s;
    background: rgba(255,255,255,.7);
  }
  .overlay.open {
    width: 100%;
    height: 100%;
    opacity: 1;
  }
  #main {
    transition: all .5s;
    
  }
	
  #main.open {
    position: fixed;
    width: 100%;
  }
  #menu_btn {
    top: 12px;
    right: 15px;
    transition: .3s;
    cursor: pointer;
    position: fixed;
    z-index: 9999;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .menu-trigger {
    width: 18px;
    height: 16px;
    position: relative;
  }
  .menu-trigger span {
    display: inline-block;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #ddd;
    transition: all .5s;
  }
  .menu-trigger span:nth-of-type(1) {
    top: 0;
  }
  .menu-trigger span:nth-of-type(2) {
    width: 70%;
    top: 7px;
  }
  .menu-trigger span:nth-of-type(3) {
    bottom: 0;
  }
  #menu_btn.active .menu-trigger span:nth-of-type(1) {
    transform: translateY(7px) rotate(-45deg);
  }
  #menu_btn.active .menu-trigger span:nth-of-type(2) {
    opacity: 0;
  }
  #menu_btn.active .menu-trigger span:nth-of-type(3) {
    transform: translateY(-7px) rotate(45deg);
  }
  #nav {
    width: 280px;
    height: 100%;
    overflow: auto;
    padding: 90px 0;
    background-color:#004143;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 12;
    transform: translate(280px);
    transition: all .5s;
	
  }
  #nav.open {
    transform: translateZ(0);
  }
  #nav li {
    padding: 0 20px;
  }
  #nav li a {
    position: relative;
    padding: 20px;
    color: #fff;
  }
  #nav .menu-item-has-children .sub-menu {
    padding: 20px;
  }
  #nav .menu-item-has-children > a.open:first-of-type {
    color:#FFF;
  }
  #nav .menu-item-has-children .sub-menu li {
    padding: 0;
    margin-bottom: 20px;

  }
  #nav .menu-item-has-children .sub-menu li:last-child {
	  
	  
    margin-bottom: 0;
  }
  #nav .menu-item-has-children .sub-menu li a {
    padding: 0;
	  	  color:#CACAD9;
  }
}

@media print, screen and ( min-width : 768px ) {
  #menu_btn,.overlay {
    display: none;
  }
	#nav{
		margin-right:10%;
	}
  #nav ul {
    display: flex;
    flex-wrap: wrap;
  }
  #nav li {
    position: relative;
  }
  #nav li a {
    padding: 25px 20px 15px 20px ;
  }
  #nav .menu-item-has-children > a {
    padding-right: 40px;
  }
  #nav .menu-item-has-children > a.open:first-of-type,#nav .current-menu-item a {
    color: #fff;
  }
  #nav .current-menu-item li a {
    color: #fff;
  }
  #nav li ul.sub-menu {
    flex-direction: column;
    background: #004143;
    position: absolute;
    width: 200px;
    left: 50%;
    top: 100%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    padding: 10px 0;
  }
  #nav li ul.sub-menu li {
    width: 100%;
  }
  #nav li ul.sub-menu li a {
    line-height: 1.6em;
    color:#CACAD9 ;
    padding: 10px 20px;
	  text-decoration: none;
	  border:#004B4D 1px solid;
	}
	
  #nav li ul.sub-menu li a:hover {
    color:#9AA6F2;
  }
}

/* ---------------------------------------------------------------------------------------------

　   HEADER / FOOTER

--------------------------------------------------------------------------------------------- */
header {
  width: 100%;  
  background: rgba(00,41,43,1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
 
}
header #logo a {
  display: block;
}
header #logo img{
  display: block;
	width:100%;
	height: 100%;
}

address{
color:#777777;
width:80%;
padding-top:20px;
padding-bottom:30px;
border:none;
font-size: 0.8rem;
font-style:normal;
margin:0 auto;
text-align:center;
clear:both;
letter-spacing: 0;

}
@media only screen and ( max-width : 479px ) {
  header {
     margin-bottom: 20px;
  }
  header #logo {
 width: 70%;
  }
	
address{
color:#777777;
width:80%;
padding-bottom:30px;
border:none;
font-size: 0.6rem;
font-style:normal;
margin:0 auto;
text-align:center;
clear:both;
letter-spacing: 0;
  
}
}

@media print, screen and ( min-width : 480px ) {
  header {
    padding: 0 0px;
  }
  header #logo {
    width: 50%;
	   max-width: 350PX;
  }
	address{
color:#777777;
width:80%;
padding-bottom:30px;
border:none;
font-size: 0.8rem;
font-style:normal;
margin:0 auto;
text-align:center;
clear:both;
letter-spacing: 0;
  
}
}



@media print, screen and ( min-width : 768px ) {
  header {
    padding: 0 30px;
  }
  header #logo {
    width: 30%;
	   max-width: 350PX;
  }
	address{
color:#777777;
width:80%;
padding-bottom:30px;
border:none;
font-size: 0.8rem;
font-style:normal;
margin:0 auto;
text-align:center;
clear:both;
letter-spacing: 0;
  
}
}


