@charset "UTF-8";

@import url("https://fonts.googleapis.com/css?family=Cormorant+Garamond");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;700;900&display=swap");


body {
	min-width:320px;
	height:100%;

	background:#FFF;
	background-image: 
	linear-gradient(0deg, transparent 9%, 
	rgba(187, 187, 187, .2) 10%, rgba(187, 187, 187, .2) 12%, transparent 13%, transparent 29%, 
	rgba(187, 187, 187, .1) 30%, rgba(187, 187, 187, .1) 31%, transparent 32%, transparent 49%, 
	rgba(187, 187, 187, .1) 50%, rgba(187, 187, 187, .1) 51%, transparent 52%, transparent 69%, 
	rgba(187, 187, 187, .1) 70%, rgba(187, 187, 187, .1) 71%, transparent 72%, transparent 89%,
	rgba(187, 187, 187, .1) 90%, rgba(187, 187, 187, .1) 91%, transparent 92%, transparent),
	linear-gradient(90deg, transparent 9%, 
	rgba(187, 187, 187, .2) 10%, rgba(187, 187, 187, .2) 12%, transparent 13%, transparent 29%, 
	rgba(187, 187, 187, .1) 30%, rgba(187, 187, 187, .1) 31%, transparent 32%, transparent 49%, 
	rgba(187, 187, 187, .1) 50%, rgba(187, 187, 187, .1) 51%, transparent 52%, transparent 69%, 
	rgba(187, 187, 187, .1) 70%, rgba(187, 187, 187, .1) 71%, transparent 72%, transparent 89%,
	rgba(187, 187, 187, .1) 90%, rgba(187, 187, 187, .1) 91%, transparent 92%, transparent);
	background-size:50px 50px;
}

#wrap{
	height: 100%;
	position:relative;
	top:50px;
	z-index:1;
}



#container_wrap {
	position:relative;
	width: 100%;
	height:auto;
	padding: 0 25px;
}

.container{
	position: relative;
	top: -100px;
	max-width:1326px;
	margin: 0 auto;
	background: #FFF;
	box-shadow: 0 10px 24px rgba(0,0,0,.08);
	z-index: 0;}

.flex{
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
}

@media screen and (max-width: 768px) {
	.flex{
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
}

/*  ヘッダー
------------------------------------------------------------------------------ */
#top-head {
    top: -100px;
    position: absolute;
    width: 100%;
    margin: 100px auto 0;
    padding: 30px 0;
    line-height: 1;
    z-index: 999;
    }

#top-head a,
#top-head {
    color: #fff;
    text-decoration: none;
}
#top-head .inner {
    position: relative;
    width:96%;
    max-width:1326px;
    margin:0 auto;
    border-bottom:1px solid #FFF;
    bottom: -10px;
}

#global-nav ul {
    position: absolute;
    right: 0;
    bottom:0;
    font-size: 1.4rem;
    }
    
#global-nav ul li {
    float: left;
    text-align:center;
}

#global-nav ul li {
    float: left;
    text-align:center;
}


#global-nav ul li a {
    display:block;
    width:120px;
    height:50px;
    line-height:40px;
}

#global-nav ul li.on a{
    border-bottom:3px solid #FFF;
}

#global-nav ul li a:hover{
    border-bottom:3px solid #FFF;
}

 
/* Fixed */
#top-head.fixed {
    margin-top: 0;
    top: 0;
    position: fixed;
    height: 65px;
    padding-bottom:5px;
    background: #fff;
    background: rgba(255,255,255,.9);
    transition: top 0.65s ease-in;
    -webkit-transition: top 0.65s ease-in;
    -moz-transition: top 0.65s ease-in;
    border-bottom:1px solid #FFF;
}

#top-head.fixed #global-nav ul li a {
    color: #364d9f;
    font-weight:bold;
    margin-bottom:-2px;
}

#top-head.fixed #global-nav ul li.on a {
     border-bottom:4px solid #364d9f;
}


#top-head.fixed #global-nav ul li a:hover{
    border-bottom:4px solid #364d9f;
}

 
/* Toggle Button */
#nav-toggle {
    display: none;
    position: absolute;
    right: 12px;
    top: 14px;
    width: 34px;
    height: 36px;
    cursor: pointer;
    z-index: 101;
}
#nav-toggle div {
    position: relative;
}
#nav-toggle span {
    display: block;
    position: absolute;
    height: 2px;
    width: 90%;
    background: #364d9f;
    left: 0;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
}
#nav-toggle span:nth-child(1) {
    top: 0;
}
#nav-toggle span:nth-child(2) {
    top: 11px;
}
#nav-toggle span:nth-child(3) {
    top: 22px;
}

@media screen and (max-width:768px) {
    #top-head,
    .inner {
        width: 100%;
        padding: 0;
    }
    
    #top-head .inner {
    width:100%;
    bottom:0;
    }
        
    #top-head {
        top: 0;
        position: fixed;
        margin-top: 0;
    }
    /* Fixed reset */
    #top-head.fixed {
        padding-top: 0;
        background: transparent;
        height:55px;
        padding-bottom:0; 
    }
    #mobile-head {
        background: #fff;
        width: 100%;
        height: 55px;
        z-index: 999;
        position: relative;
    }
    #global-nav {
        position: absolute;
        /* 開いてないときは画面外に配置 */
        top: -500px;
        background: #222;
        width: 100%;
        text-align: center;
        -webkit-transition: .5s ease-in-out;
        -moz-transition: .5s ease-in-out;
        transition: .5s ease-in-out;
    }
    #global-nav ul {
        list-style: none;
        position: static;
        right: 0;
        bottom: 0;
        font-size: 14px;
    }
    #global-nav ul li {
        float: none;
        position: static;
    }


    #global-nav ul li a:hover,
    #top-head.fixed #global-nav ul li a:hover{
        border-bottom:1px solid #333;
    }


    #top-head #global-nav ul li a,
    #top-head.fixed #global-nav ul li a{
        width: 100%;
        height: inherit;
        line-height: inherit;
        display: block;
        color: #fff;
        padding: 20px 0;
        font-weight:bold;
        margin-bottom:0;
        border-bottom:1px solid #333;
    }
    
    #global-nav ul li.on a,
    #top-head.fixed #global-nav ul li.on a{
    border-bottom:1px solid #333;
    }

    #nav-toggle {
        display: block;
    }
    
    /* #nav-toggle 切り替えアニメーション */
    .open #nav-toggle span:nth-child(1) {
        top: 11px;
        -webkit-transform: rotate(315deg);
        -moz-transform: rotate(315deg);
        transform: rotate(315deg);
    }
    .open #nav-toggle span:nth-child(2) {
        width: 0;
        left: 50%;
    }
    .open #nav-toggle span:nth-child(3) {
        top: 11px;
        -webkit-transform: rotate(-315deg);
        -moz-transform: rotate(-315deg);
        transform: rotate(-315deg);
    }
    /* #global-nav スライドアニメーション */
    .open #global-nav {
        /* #global-nav top + #mobile-head height */
        -moz-transform: translateY(556px);
        -webkit-transform: translateY(556px);
        transform: translateY(556px);
    }
}

/*  heading
------------------------------------------------------------------------------ */

#top-head h1 {
    position: relative;
    top: -16px;
    left:4px;
    font-size: 2.4rem;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing:.1rem;
}

#top-head.fixed h1 a{
    color: #364d9f;
}

@media screen and (max-width: 768px) {
    #top-head h1 a {
    color: #364d9f;
    }
    
    #top-head.fixed h1 ,
    #top-head h1{
        position: absolute;
        left: 13px;
        top: 20px;
        color: #364d9f;
        font-size: 2.0rem;
    }
}

h2{
	text-align: center;
	padding:6rem 2rem 3rem;
	font-size:4em;
	font-family: 'Cormorant Garamond', serif;
	color:#999;	
	letter-spacing:.3rem;
	font-weight:normal;
}


h3{
	font-size:6rem;
	font-family: 'Noto Serif JP', serif;
    letter-spacing:0.5rem;
    letter-spacing:1rem;
	}

h3:first-letter{
	font-size:8rem;
}

h4{
	letter-spacing:.1rem;;
	font-size:2rem;
	line-height:3rem;
	margin-bottom:2.2rem;
	font-family: 'Noto Serif JP', serif;
}

@media screen and (max-width:1024px) {

h3{
	font-size:3rem;
	}

h3:first-letter{
	font-size:5rem;
}

}

@media screen and (max-width:460px) {

h2{
	font-size:3em;
	letter-spacing:.1rem;
}

h3{
	font-size:3rem;
	}

h3:first-letter{
	font-size:5rem;
}

h4{
	font-size:1.8rem;
	line-height:2.4rem;
}


}

	

/*  フッター
------------------------------------------------------------------------------ */

		
#footer_wrap{
	line-height: normal;
	position: relative;
	width: 100%;
	background: #222;
	margin-top: -100px;
	padding:0 25px 30px;
	color:#FFF;
}

#footer_wrap::before{
	z-index: -1;
	content: "";
	position: absolute;
	top: -60px;
	left: 0;
	width: 100%;
	height: 60px;
	background: #222;
}

.footer{
    position:relative;
    width:100%;
	max-width:1326px;
	margin:0 auto;
	padding:120px 0 60px 0;
}

.foot_con{
    position:absolute;
    left:0;
    bottom:0;
}

.foot_con p{
    font-size:1.3rem;
    margin-bottom:.6rem;
}

.foot_num, .foot_add{
	font-size:1.0rem;
    margin-bottom:.2rem;
} 

.foot_copy{
    position:absolute;
    right:0;
    bottom:0;
}


@media screen and (max-width: 640px) {
    
    .footer{
	padding:140px 0 60px 0;
    }

    .foot_con{
    position:absolute;
    left:0;
    bottom:30px;
    }
  
    .foot_copy{
    position:absolute;
    left:0;
    bottom:0;
    }

}


#page-top {
	position: fixed;
	z-index: 8;
	right: 0;
	bottom:0;
	font-size: 1.2rem;
}

#page-top a {
	display: block;
	position: relative;
	width:7rem;
	height:7rem;
	text-align: center;
	background:#3f50e4;
	color: #111;
	}

#page-top a::after {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 1rem;
	height: 1rem;
	margin-top: -.5rem;
	margin-left: -.55rem;
	border-top: 2px solid rgba(255, 255, 255, 1);
	border-left: 2px solid rgba(255, 255, 255, 1);
	content: "";
	-webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
	}


#page-top:hover a {
	opacity: .8;
	}

