@charset "utf-8";

/* 装飾
------------------------------------------------------------*/
.op {
transition: 0.3s;
}
.op:hover {
opacity: 0.7;
}


/* リンク設定
------------------------------------------------------------*/
a:link {
	color:#1299df;
	text-decoration:none;
}
a:visited {
	color:#1299df;
	text-decoration:none;
}
a:hover {
	color:#1299df;
	text-decoration:underline;
}
a:active {
	color:#1299df;
	text-decoration:none;
}


/* アニメーション
------------------------------------------------------------*/
.fade-in {
transition: opacity 0.4s;
-moz-transition: opacity 0.4s;
-webkit-transition: opacity 0.4s;
-o-transition: opacity 0.4s;
}
.fade-up, .fade-left, .fade-right {
transition: opacity 0.7s;
-moz-transition: opacity 0.7s;
-webkit-transition: opacity 0.7s;
-o-transition: opacity 0.7s;
transition: transform 0.7s;
-moz-transition: transform 0.7s;
-webkit-transition: transform 0.7s;
-o-transition: transform 0.7s;
}



/* 共通
------------------------------------------------------------*/

html {
font-size: 62.5%;
scroll-behavior: smooth;
}
body {
position: relative;
font-family:"游ゴシック","YuGothic","メイリオ","Meiryo",arial,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Osaka,"ＭＳ Ｐゴシック","MS PGothic",Sans-Serif;
color:#000;
-webkit-text-size-adjust: none;
font-weight: 500;
position: relative;
 -webkit-transition: all 0.6s;
transition: all 0.6s;
}

/* ページャー（一覧） */
.pager{
	text-align:center;
	padding:30px 0px;
	clear:both;
}
a.page-numbers,
.pager .current{
	background:rgba(0,0,0,0.02);
	border:solid 1px rgba(0,0,0,0.1);
	border-radius:5px;
	padding:5px 8px;
	margin:0 2px;
}
.pager .current{
	background:rgba(0,0,0,1);
	border:solid 1px rgba(0,0,0,1);
	color:rgba(255,255,255,1);
}




/* PC用
------------------------------------------------------------*/
@media only screen and (min-width: 1200px) {

.spbr {
display: none !important;
}
.menu {
display: none !important;
}
#nav-tgl {
display: none;
}
#hdr_sp {
display: none;
}
body{
position: relative;
font-size: 1.6rem;
line-height: 3rem;
animation-duration: 1s;
animation-name: top_hdr;
}
@keyframes top_hdr {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
.openbtn, #g-nav {
display: none;
}

header {
background: #8cd2f5;
padding: 3rem 5rem;
color: #fff;
}
header article {
display: flex;
justify-content: space-between;
}
header article > div img {
width: 42.8rem;
}
header nav {
display: flex;
align-items: center;
}
header article ul {
display: flex;
justify-content: flex-end;
}
header article li {
font-family: "Montserrat", sans-serif;
padding: 0 2rem;
border-left: 0.1rem solid #fff;
line-height: 1;
}
header article li a:link {
color: #fff;
text-decoration: none;
}
header article li a:visited {
color: #fff;
text-decoration: none;
}
header article li a:hover {
color: #fff;
text-decoration: none;
opacity: 0.7;
}
header article li a:active {
color: #fff;
text-decoration: none;
}
.read {
position: relative;
text-align: center;
font-family: "Montserrat", sans-serif;
font-weight: 500;
font-size: 4rem;
color: #00afe4;
padding: 0 5rem 1rem 5rem;
border-bottom: 0.2rem solid rgba(0,0,0,0.8);
display: inline-block;
margin-bottom: 5rem;
}
#ftr_line {
background: #8cd2f5;
height: 16rem;
margin-top: 4rem;
}
footer {
text-align: center;
}
footer > div {
margin: 5rem auto 2rem auto;
width: 42.8rem;
}
footer > p {
margin-bottom: 5rem;
}
footer nav {
background: #8cd2f5;
color: #fff;
padding: 2rem 0;
}
footer nav ul {
display: flex;
justify-content: center;
line-height: 1;
}
footer nav ul li {
padding: 0 2rem;
border-left: 0.1rem solid #fff;
}
footer nav ul li a:link {
color: #fff;
}
footer nav ul li a:visited {
color: #fff;
}
footer nav ul li a:hover {
color: #fff;
opacity: 0.7;
text-decoration: none;
}
footer nav ul li a:active {
color: #fff;
}
footer small {
background: #8cd2f5;
color: #fff;
padding: 3rem 0 1rem 0;
display: block;
}

}

/* タブレット用　縦向き
------------------------------------------------------------*/
@media only screen and (min-width: 600px) and (max-width: 1199px) {

.spbr {
display: none !important;
}
.pcbr {
display: none !important;
}
.ctcnt {
width:100%;
margin: 0 auto;
padding: 0 1rem;
}
.pdd_sp {
padding: 0 2rem;
}
.sp100 {
width:100%;
height:auto;
}
body{
font-size: 1.4rem;
line-height: 2.6rem;
animation-duration: 1s;
animation-name: top_hdr;
}

@keyframes top_hdr {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}

/*========= ナビゲーションのためのCSS ===============*/

#g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
	top: -120%;
    left: 0;
	width:100%;
    height: 100vh;/*ナビの高さ*/
	background: #4A2500;
    /*動き*/
	transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    top: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
	width: 40%;
}

/*リストのレイアウト設定*/

#g-nav li{
position: relative;
	list-style: none;
	padding-left: 1.6rem;
}
#g-nav li::before {
content: "-";
position: absolute;
top: 1.8rem;
left: -0.6rem;
color: #fff;
}

#g-nav li a{
font-family: 'Noto Sans JP', sans-serif;
	color: #fff;
	text-decoration: none;
	padding: 20px 10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: 400;
	transition: 0.3s;
	font-size: 2.4rem;
}
#g-nav li a:hover {
opacity: 0.5;
transition: 0.3s;
}
#g-nav li a span {
margin-left: 4rem;
font-size: 1.8rem;
}
#g-nav li a span.sp_none {
font-size: 2.4rem;
}

/*========= ボタンのためのCSS ===============*/
.openbtn{
	position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
	top: 20px;
	right: 0;
	cursor: pointer;
    width: 100px;
    height: 100px;
}
	
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 5px;
	background-color: #fff;
  	width: 45%;
  }

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

.openbtn span:nth-of-type(2) {
	top:31px;
}

.openbtn span:nth-of-type(3) {
	top:47px;
}

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

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

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

}

header {
background: #8cd2f5;
padding: 3rem 5rem;
color: #fff;
}
header article {
display: flex;
justify-content: space-between;
}
header article > div img {
width: 42.8rem;
}
header nav {
display: none;
}
.read {
position: relative;
text-align: center;
font-family: "Montserrat", sans-serif;
font-weight: 500;
font-size: 4rem;
color: #00afe4;
padding: 0 5rem 1rem 5rem;
border-bottom: 0.2rem solid rgba(0,0,0,0.8);
display: inline-block;
margin-bottom: 5rem;
}
#ftr_line {
background: #8cd2f5;
height: 16rem;
margin-top: 4rem;
}
footer {
text-align: center;
}
footer > div {
margin: 5rem auto 2rem auto;
width: 42.8rem;
}
footer > p {
margin-bottom: 5rem;
}
footer nav {
background: #8cd2f5;
color: #fff;
padding: 2rem 0;
}
footer nav ul {
display: flex;
justify-content: center;
line-height: 1;
}
footer nav ul li {
padding: 0 2rem;
border-left: 0.1rem solid #fff;
}
footer nav ul li a:link {
color: #fff;
}
footer nav ul li a:visited {
color: #fff;
}
footer nav ul li a:hover {
color: #fff;
opacity: 0.7;
text-decoration: none;
}
footer nav ul li a:active {
color: #fff;
}
footer small {
background: #8cd2f5;
color: #fff;
padding: 3rem 0 1rem 0;
display: block;
}

}


/* スマートフォン用
------------------------------------------------------------*/
@media only screen and (max-width: 599px) {

.pcbr {
display: none !important;
}
.ctcnt {
width:100%;
margin: 0 auto;
padding: 0 1rem;
}
.sp100 {
width:100%;
height:auto;
}
.flex-direction-nav {
display: none !important;
}
.sp_none, #back-top {
display: none !important;
}
body{
position: relative;
font-size: 1.4rem;
line-height: 1.7;
width: 100%;
animation-duration: 1s;
animation-name: top_hdr;
}

@keyframes top_hdr {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}


/*========= ナビゲーションのためのCSS ===============*/

#g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
	top: -120%;
    left: 0;
	width:100%;
    height: 100vh;/*ナビの高さ*/
	background:#fff;
    /*動き*/
	transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    top: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
	background: #4A2500;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    /*ナビゲーション天地中央揃え*/
	margin: 14rem auto 0 auto;
	width: 50%;
}

/*リストのレイアウト設定*/

#g-nav li{
position: relative;
	list-style: none;
	padding-left: 1.6rem;
	color: #fff;
}
#g-nav li::before {
content: "-";
position: absolute;
top: 0.8rem;
left: 0em;
}

#g-nav li a{
font-family: 'Noto Sans JP', sans-serif;
	color: #fff;
	text-decoration: none;
	padding: 0.8rem;;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: 400;
	transition: 0.3s;
	font-size: 1.6rem;
}
#g-nav li a:hover {
opacity: 0.5;
transition: 0.3s;
}
#g-nav li a span {
font-size: 1.5rem;
}

/*========= ボタンのためのCSS ===============*/
.openbtn{
	position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
	top: 2.5rem;
	right: 0;
	cursor: pointer;
    width: 70px;
    height: 60px;
}
	
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 2px;
	background-color: rgba(255,255,255,0.7);
  	width: 45%;
  }

.openbtn span:nth-of-type(1) {
	top:0;	
}

.openbtn span:nth-of-type(2) {
	top:12px;
}

.openbtn span:nth-of-type(3) {
	top:24px;
}

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

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

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

}

header {
background: #8cd2f5;
padding: 2rem 2rem;
color: #fff;
}
header article {
display: flex;
justify-content: space-between;
}
header article > div img {
width: 20.8rem;
}
header nav {
display: none;
}
.read {
position: relative;
text-align: center;
font-family: "Montserrat", sans-serif;
font-weight: 500;
font-size: 3rem;
color: #00afe4;
line-height: 1;
padding: 0 4rem 1rem 4rem;
border-bottom: 0.2rem solid rgba(0,0,0,0.8);
display: inline-block;
margin-bottom: 5rem;
}
#ftr_line {
background: #8cd2f5;
height: 6rem;
margin-top: 4rem;
}
footer {
text-align: center;
}
footer > div {
margin: 5rem auto 2rem auto;
width: 20.8rem;
}
footer > p {
margin-bottom: 5rem;
}
footer nav {
display: none;
}

footer small {
background: #8cd2f5;
color: #fff;
padding: 2rem 0;
display: block;
}

}