@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+Antique&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&display=swap');
/* CSS Document */


/* http://meyerweb.com/eric/tools/css/reset/ 
v2.0 | 20110126
License: none (public domain)
*/
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,input, button, textarea, select {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
/*vertical-align: baseline;*/
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
display: block;
}
body {line-height: 1.3em;font-size: 90%;}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
	
}
table {
border-collapse: collapse;
border-spacing: 0;
}

/*---------- 以上リセット ----------*/


/*
基本
*/
html{
	scroll-behavior: smooth;
}
body{
	font-family: "Zen Kaku Gothic Antique", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
	font-weight: 400;
	background: #eaecee;
	background: #fff;
}
img{
	max-width: 100%;
	max-height: 100%;
	vertical-align: bottom;
}
em{
	background: #f2e111;
}

.w100{width:100%;}


/*---------------
	PC
---------------*/
header{
	padding-top: 120px;
	
}
.hd-wrap{
	background: #fff;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 120px;
	display: flex;
	z-index: 99;
	justify-content: center;
	border-bottom: 1px solid #000;
}
.hd-wrap h1{
	width: 120px;
	height: 100%;
}
.hd-logo{
}
.hd-wrap, .hd-wrap h1{
	transition-duration: .6s;
}

.hd-wrap h1{
	order: 2;
}
.hd-messageWrap{
	order: 1;
}
.hd-menu{
	order: 3;
}
.hd-messageWrap,
.hd-menu{
    width: calc( calc(100% - 120px) / 2);
}

.hd-message{
	transition-duration: .2s;
	opaticy: 1;
}

.hd-messageWrap,
.hd-menu {
    padding: 40px;
    box-sizing: border-box;
    position: relative;
}
.hd-messageWrap{
	text-align: right;
}
.hd-messageWrap .hd-message{
	display: block;
	padding: 10px 0;
}
.hd-menu-content{
    position: absolute;
    /* bottom: 22px; */
}
.hd-menu-content li{
    display: inline-block;
    margin: 0 16px 0 0;
}
.hd-menu-content li a{
    display: block;
    text-decoration: none;
    font-family: "Bricolage Grotesque", sans-serif;
    font-weight: 600;
    color: #555;
    font-size: 120%;
    padding: 10px 0;
    position: relative;
}
.hd-menu-content li a::before{
    content: "";
    display: block;
    width: 0;
    height: calc(100% - 10px);
    background: #8ed1d8;
    position: absolute;
    left: -5px;
    top: 5px;
    transition-duration: .2s;
}
.hd-menu-content li a:hover::before{
    width: calc(100% + 10px);
    z-index: -1;
}

/*スクロール時挙動*/
.hd-wrap.scroll{
	height: 80px;
	z-index: 90;
}
.hd-wrap.scroll h1{
	width: 80px;
}
.scroll .hd-messageWrap,
.scroll .hd-menu{
	padding: 20px;
}

/*
footer
*/
footer {
    background: #959799;
    margin: 50px 0 0;
    padding: 30px;
    box-sizing: border-box;
    text-align: center;
    color: #fff;
}

/*
トップページ
*/
.index-articleList{
	display: flex;
	flex-wrap: wrap;
	box-sizing: border-box;
	padding: 40px;
	justify-content: center;
}
.index-articleList li{
  width: calc(100% / 3);
  padding: 24px;
  box-sizing: border-box;
  /* border-width: 0 1px 1px 0; */
}
/*画面幅に応じてレイアウト*/
@media screen and (min-width: 1400px){
  .index-articleList li{
  	width: 440px;
  	padding: 24px;
  }
}
@media screen and (max-width: 1000px){
  .index-articleList li{
  	width: calc(100% / 2);
  	padding: 18px;
  }
}
@media screen and (max-width: 500px){
  .index-articleList li{
  	width: calc(100%);
  	padding: 12px;
  }
}
/*//画面幅*/
.arlist-item a{
  color: #000;
  text-decoration: none;
  display: block;
  /* background: #fff; */
  /* padding: 20px; */
  /* box-sizing: border-box; */
}
.arlist-item .contentarea{
  padding: 12px 0;
}
.arlist-item .contentarea{
  /* font-weight: bold; */
  line-height: 1.6;
}
.arlist-item .updateDate{
  color: #888;
  font-family: "Bricolage Grotesque", sans-serif;
  letter-spacing: .1em;
  line-height: 1.4;
  padding: 0 0 .8em;
}
.arlist-item .contentarea .sortListName{
  font-size: 150%;
  display: inline-block;
  padding: 0 .3em;
  position: relative;
}
.arlist-item .contentarea .sortListName::before{
  content: "";
  display: block;
  position: absolute;
  width: 0%;
  height: 100%;
  background: #f2e111;
  z-index: -1;
  left: 0;
  transition-duration: .2s;
}
.arlist-item .contentarea .sortListCopy{
  font-size: 100%;
  padding: 5px 0;
}
.arlist-item a:hover .contentarea .sortListName::before{
  width: 100%;
}


.arlist-item a div{
  position: relative;
  overflow: hidden;
}
.arlist-item a div > img{
  transition-duration: .6s;
}
.arlist-item a:hover div > img{
  transform: scale(1.2);
}
.arlist-item a div.imgarea{
	border: 1px solid #000;
	border-radius: 20px;
}
.arlist-item a:hover div.imgarea{
	border-color: #f2e111;
}

.newlyArrivalTitle {
    font-family: "Bricolage Grotesque", sans-serif;
    color: #000;
    font-weight: 600;
    text-align: center;
    font-size: 3em;
    margin: 2em 0 1em;
}
.newlyArrivalTitle::after {
    content: "新着記事";
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
    font-size: 40%;
    margin: 1.8em 0 1em;
    display: block;
}

/*トップ*/
.top-new-article-section{
    position: relative;
    background: #fffdd7;
}
.top-section-header{
    position: absolute;
    top: 1.6em;
    left: calc(8vw);
    z-index: 2;
    font-size: 170%;
    color: #0f9b8a;
    font-weight: bold;
}
.top-section-header::before{
    content: attr(data-en);
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 240%;
    display: block;
    line-height: 1.2;
    font-weight: 500;
}
.top-new-article {
    position: relative;
}
.top-new-article-section .swiper{
	width: 80vw;
	height: 70vh;
	box-sizing: border-box;
	padding: 6em 0 4em;
	overflow: visible;
}
@media screen and (max-width: 600px){
	.top-new-article-section .swiper{
		width: 100%;
	}
}
.top-new-article-section .swiper ul{
	border: 1px solid #0f9b8a;
	border-radius: 32px;
	overflow: hidden;
}
.top-new-article-section .swiper .swiper-pagination-bullets {
    position: absolute;
    top: 4em;
    right: 0;
    left: unset;
    bottom: unset;
    z-index: 0;
    width: unset;
}
.top-new-article-section .swiper .swiper-pagination-bullet{
    background: #000;
	opacity: 1;
	border: 1px solid #000;
}
.top-new-article-section .swiper .swiper-pagination-bullet-active{
	background: #fff;
}

.top-new-article li{
}
.top-new-article a{
    display: block;
    position: relative;
    height: 100%;
    width: 100%;
    color: #fff;
    text-decoration: none;
}
.top-new-article img{
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    z-index: -1;
}
.top-new-article .contentarea{
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 2em;
}
.top-new-article .updateDate{
    padding: 1em;
    font-weight: bold;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 200%;
    font-weight: 400;
	text-align: right;
}
.top-new-article .contentarea .sortListCopy{
    font-size: 120%;
    font-weight: bold;
}
.top-new-article .contentarea .sortListName{
    font-size: 220%;
    line-height: 1.5;
    font-weight: bold;
}

/**/

main.article-main{
}
main.article-main{
	padding: 0 50px;
}
@media screen and (max-width: 600px){
    main.article-main{
	    padding: 0 20px;
	}

}
.ar-visual{
	height: calc(100vh - 200px);
	width: calc(100% + 100px);
	margin: 0 -50px;
	/* position: relative; */
	/* z-index: -1; */
}
@media screen and (max-width: 600px){
	.ar-visual{
		width: calc(100% + 40px);
		margin: 0 -20px;
	}
}
.ar-visual-txt::before {
    content: "article";
    position: absolute;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 4em;
    color: rgba(0,0,0,.1);
    bottom: 0px;
    right: 0;
    line-height: 0.8em;
	display: none;
}
.ar-main{
	background: #fff;
	margin: -5vw auto 0;
	max-width: 1200px;
	box-sizing: border-box;
	padding: 35px;
	line-height: 1.8;    
	border: 1px solid;
	border-radius: 32px;
}
@media screen and (max-width: 600px){
.ar-main{
	padding: 16px;
}
}

.ar-visual-txt {
    /* position: absolute; */
    box-sizing: border-box;
    padding: 10vw 5vw 5vw;
    width: 100%;
    height: 100%;
}
.ar-txt-genre{
    position: absolute;
    display: inline-block;
    left: -12px;
    top: -12px;
    padding: 12px 16px;
    font-size: 110%;
    background: #E4D15B;
    border-radius: 100px;
	/*toriisogi*/
	display: none;
}
.ar-txt-ttl{
    display: inline-block;
    font-size: 140%;
    /* padding: 8px 0 16px; */
    background: #000;
    color: #fff;
    line-height: 1.4;
    padding: 0.6em 1em;
    /* font-weight: bold; */
    /* position: absolute; */
    right: 10vw;
    bottom: calc(10vw + 5vw);
    border: 1px solid #000;
    border-radius: 32px;
    margin-left: 0.4em;
}
.ar-txt-plc{
    padding: 0 0 8px;
    color: #aaa;
    font-size: 130%;
    display: inline-block;
    padding: .6em .8em;
    background: #d17a997d;
    color: #fff;
    /* border-radius: 100px; */
    position: absolute;
    /* left: 6vw; */
    /* top: 20vw; */
    backdrop-filter: blur(20px);
    display: none;
}
.ar-txt-copy{
	background: #fff;
	border: 1px solid #000;
	/* font-weight: bold; */
	padding: .8em 1.2em;
	font-size: 160%;
	line-height: 1.4;
	display: inline-block;
	/* background: rgba(255, 255, 255, .5); */
	/* backdrop-filter: blur(20px); */
	border-radius: 32px;
}

/*-----------------
article 構成
-----------------*/
@media screen and (min-width: 1000px){
	.ar-main{
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	.ar-l{
		width: 750px;
	}
	.ar-r{
		width: calc(100% - 800px);
	}
	.ar-all{
		width: 100%;
	}
}


/*---
article intro
---*/

@media screen and (min-width: 1000px){
	.ar-intro{
		display: flex;
	}
	.ar-intro .ar-intro-detail{
		margin-left: 3em;
	}
}
.ar-intro p + p{
	margin-top: 1em;
}
.ar-ttl {
    position: relative;
    padding: 24px 0px;
    margin: 0 0 10px;
}
.ar-ttl::before{
    content: "About";
    font-family: "Bricolage Grotesque", sans-serif;
    display: block;
    font-size: 250%;
    line-height: 1.6;
}
.ar-ttl::after{
    content: "";
    display: block;
    position: absolute;
    width: 0;
    height: 2px;
    background: #000;
    right: calc(100% + 16px);
    top: 5em;
    margin: auto;
    transition-delay: .6s;
    transition-duration: 3s;
}
.ar-ttl.visible::after{
	width: 50vw;
}

/*---
article detail
---*/
/*---
article detail
---*/

/*
記事目次
*/
.ar-detail-index{
	margin: 2em 0 0;
	padding: 1em 0 1em;
	background: #e9ecee;
	border: 1px solid #000;
	border-radius: 16px;
}
.ar-detail-index ul{
	text-align: center;
}
.ar-detail-index ul::before{
	content: "AREA";
	font-family: "Bricolage Grotesque", sans-serif;
	font-weight: 600;
	display: block;
	font-size: 140%;
	margin: 0 0 .3em
}
.ar-detail-index ul li{
	display: inline-block;
	margin: 0 .4em .8em;
}
.ar-detail-index ul li a{
	color: #000;
	text-decoration: none;
	padding: .4em .8em;
	display: inline-block;
	border: 1px solid #000;
	background: #f2e111;
	border-radius: 32px;
}
.ar-detail-index ul li a::before{
	font-family: 'Material Icons';
	content: '\e313';
	vertical-align: top;
	margin-right: .2em;
}

.ar-detail > h4 {
    font-size: 200%;
    padding: 1.2em 0 .8em;
    text-align: center;
    margin: 0.5em 0.5em;
}
.ar-detail > h4::before {
	content: "area";
	display: inline-block;
	font-weight: bold;
	font-size: 0.6em;
	padding: 0 1.2em;
	border: 1px solid #000;
	margin-right: 0.8em;
	vertical-align: text-bottom;
	border-radius: 32px;
}
.ar-detail p {
    margin: 0 0 1.5em;
}

.htmlPgnt {
    display: flex;
    justify-content: center;
}
.htmlPgntBtn{
    margin: 0 .5em;
    width: 3em;
    text-align: center;
}
.htmlPgntBtn a{
    display: block;
    color: #000;
    text-decoration: none;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 150%;
}
.htmlPgntBtn.current a{
    border-bottom: 3px solid #000;
}

/*
article
サブ
*/

@media screen and (max-width: 1000px){
	.ar-r {
		margin-top: 3.2em;
		border-top: 1px solid #000;
		padding-top: 1.6em;
	}
}
.ar-r h4{
	font-size: 1.2em;
	font-weight: bold;
	text-align: center;
}

.sub-list li{
	padding: 20px 0;
	border-bottom: 2px solid #e9ecee;
}
.sub-list li a{
	color: #000;
	text-decoration: none;
}
.sub-list li .sublistWrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.sub-list .imgarea{
    width: 40%;
    overflow: hidden;
}
.sub-list .contentarea{
	width: calc(60% - 12px);
}

/*--------------
検索画面
--------------*/
.search-main{
	margin: 50px auto 0;
	max-width: 1200px;
	box-sizing: border-box;
	padding: 0 35px;
	line-height: 1.8;
}
.search-ttl{
	text-align: center;
	margin: 24px 0 32px;
	font-weight: bold;
}
.search-ttl::before{
	content: "Search articles";
    font-family: "Bricolage Grotesque", sans-serif;
	font-weight: 600;
	font-size: 240%;
	padding: 0 0 .2em;
	display: block;
	line-height: 1.2;
}

.search-list {
    display: flex;
    flex-wrap: wrap;
}


/*１列で表示するレイアウト（右ナビ用）*/
.search-list.list-single-row li{
	width: 100%;
	padding: 0 0 10px;
	margin: 0 0 8px;
}
.list-single-row .arlist-item a{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.list-single-row .arlist-item .updateDate{
	width: 100%;
	padding: 0 0 .4em;
}
.list-single-row .arlist-item .imgarea{
	width: 40%;
	border-radius: 12px;
	height: 120px;
}
.list-single-row .arlist-item .contentarea{
	width: calc(60% - 18px);
	padding-top: 0;
	margin-left: 18px;
}
.list-single-row .arlist-item .contentarea .sortListName{
	font-size: 120%;
	padding: 0;
}


@media screen and (max-width: 600px){
.search-list {
    margin: 0 -24px;
}
}
.search-list > li{
    width: calc(100% / 3);
    padding: 12px;
    box-sizing: border-box;
    position: relative;
    margin: 0 0 10px;
}

.search-list .imgarea {
    width: 100%;
    height: 22vw;
    overflow: hidden;
    border: 1px solid #000;
    box-sizing: border-box;
    border-radius: 20px;
}
.search-list li a{
	text-decoration: none;
}
.search-list .sortListName{
    color: #000;
    padding: 0.8em 0 .4em;
    line-height: 1.4;
}
.search-list .sortListCopy{
	color: #000;
}

/*画面幅で調整*/
@media screen and (min-width: 1000px){
	.search-list > li{width: calc(100% / 3);}
    .search-list .imgarea {height: 18vw;max-height: 216px;}
}
@media screen and (max-width: 600px){
	.search-list > li{width: 100%;padding: 2px;}
    .search-list .imgarea {height: 50vw;}
}
.imgarea > img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition-duration: .3s;
}
a:hover .imgarea > img{
    transform: scale(1.1);
}
.sortListName {
	font-size: 1.2em;
}
.sortListCopy {
    padding: 0 0 0.6em;
    font-size: 1em;
}

/*
search title
*/
.search-section-ttl {
    font-size: 150%;
    padding: 2em 0 1.6em;
}
@media screen and (max-width: 600px){
.search-section-ttl {
    text-align: center;
    padding-left: 1em;
}
	
}
.search-section-ttl > a {
	color: #000;
	text-decoration: none;
}
.search-section-ttl > a span{
	padding: .5em 0;
	border-bottom: 2px solid #000;
}
.search-section-ttl > a i{
    font-size: 1em;
    line-height: 1.8;
    vertical-align: bottom;
}

/*
タグと関連記事
*/

.ftArea{
    border-top: 1px solid #000;
    margin: 4em 0 0;
	width: 100%;
}
.ft_title {
    margin: 1.2em 0 .4em;
    font-size: 2em;
    font-family: "Bricolage Grotesque", sans-serif;
    font-weight: 600;
    text-align: center;
}
.ftArea .tag-list{
    text-align: center;
}


/*--------------
静的ページ
ar- ベース
---------------*/

.ar-static{
	background: #fff;
	margin: 50px auto 0;
	max-width: 1200px;
	box-sizing: border-box;
	padding: 35px;
	line-height: 1.8;
	border: 1px solid #000;
	border-radius: 32px;
}
@media screen and (min-width: 1000px){
	.ar-static{
		display: flex;
		justify-content: space-between;
	}
}

.static-ttl{
    text-align: center;
    margin: 24px 0 32px;
}
.static-ttl::before{
    content: attr(data-en);
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 220%;
    padding: 0 0 .2em;
    display: block;
    line-height: 1.2;
}
.static-ttl-2{
    text-align: center;
    margin: 24px 0 32px;
}
.static-ttl-2::before{
    content: attr(data-en);
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 180%;
    padding: 0 0 .2em;
    display: block;
    line-height: 1.2;
}


.ar-static h3 {
    margin: 36px 0 20px;
    font-size: 150%;
    letter-spacing: .1em;
}


/*pgtop*/
.pgtopBtn {
    position: fixed;
    right: 0;
    bottom: 0;
    transform: rotate(90deg);
    transform-origin: 100% -100%;
    transition-duration: 1s;
    opacity: 0;
}
.pgtopBtn.show{
    opacity: 1;
}
.pgtopBtn a{
    color: #000;
    text-decoration: none;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 120%;
}
.pgtopBtn a::before{
    display: block;
    content: "";
    transition-duration: 1s;
    width: 0;
    height: 1px;
    background: #000;
    position: absolute;
    right: calc(100% + .6em);
    top: 0;
    bottom: 0;
    margin: auto;
}

.pgtopBtn.show a::before{
    width: 4em;
}
.pgtopBtn a::after{
    transition-duration: 1s;
	content: "";
	position: absolute;
	display: block;
	width: .4em;
	height: .4em;
	border: 1px solid #000;
	right: 100%;
	top: 0;
	bottom: 0;
	margin: auto;
	transform: translate(1px,0) rotate(45deg);
	border-color: transparent transparent #000 #000;
}
.pgtopBtn.show a::after{
	right: calc(100% + 4em);
}

/*-----
tag
-----*/
.tag-list {
  margin: 1em 0;
}
.tag-list li{
  display: inline-block;
  margin: 0 .3em .6em 0;
}
.tag-list li a{
  display: block;
  /* background: #ddd; */
  color: #000;
  text-decoration: none;
  padding: .2em 1em;
  border-radius: 100px;
  border: 1px solid #555;
}
.tag-list._center{
	text-align: center;
}


/*-----
aboutページ
-----*/
.about_visual{
	width: 100%;
	margin: 0 0 -12vh;
	height: 60vh;
	background: url(../img/about.jpg) no-repeat center / cover;
}
.about .about_ttl {
    letter-spacing: .2em;
    font-size: 170%;
    margin: 30px 0;
    text-align: center;
}
