@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;600&display=swap');

@font-face{
	font-family:'PLUGO R';
	src:url(../fonts/plugo-regular-webfont.woff2) format("woff2"),url(../fonts/plugo-regular-webfont.woff) format("woff");
	font-weight:400;
	font-style:normal
}

html,body{height:100%;}

html{}

body{
	-webkit-text-size-adjust: 100%;
	padding:0;
	margin: 0;
	font-family:"A1ゴシック R","A1 Gothic R",-apple-system,"Hiragino Sans","Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro","メイリオ","Meiryo","ＭＳ Ｐゴシック",sans-serif;
	font-feature-settings: "palt" 1;
	-webkit-font-feature-settings: "palt" 1;
	color: #1A1F61;
}


body.bg-white{
	background: #fff;
	transition: all 1000ms linear;
}

body.bg-blue{
	background: #1A1F61;
	transition: all 1000ms linear;
	color: #fff;
}
body.bg-gray{
	background: #ededed;
	transition: all 1000ms linear;
}

div.bg-gray{background: #f7f7f7;}

.pagecontainer{
	opacity: 0;
}

.pagecontainer.is-fade{
	opacity: 1;
	transition: all 1.25s 1s ease;
}

.pagemove{
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    -webkit-transition: all .45s cubic-bezier(.87,0,.13,1);
    transition: all .45s cubic-bezier(.87,0,.13,1);
    z-index: 9999;
    background-color: #1A1F61;
}

.pagemove.on{
	width: 100%;
}

.pagemove.on.after{
	width: 100%;
	transform: translate(100%,0);
}

/* default */

div,dl,dt,dd,ul,ol,
li,h1,h2,h3,h4,h5,
h6,pre,code,form,fieldset,legend,
input,textarea,p,blockquote,
th,td{margin:0;padding:0;}
table{border-collapse:collapse;border-spacing:0;word-break: break-all;font-size:inherit;width:100%;}
fieldset,img{border:0;}
address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal;}
li{list-style:none;}
caption,th{text-align:left;}
h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal;}
q::before,q::after{content:'';}
abbr{border:0;font-variant:normal;}
sup{vertical-align:text-top;}
sub{vertical-align:text-bottom;}
input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit;}
input,textarea,select{*font-size:100%;}

input:-webkit-autofill{
  -webkit-transition: background-color 9999s;
  transition: all 9999s;
}
legend{color: #1A1F61;}
select,input,button,textarea{font:99%;}
pre,code,kbd,samp{font-family:monospace;*font-size:108%;line-height:100%;}
.aligncenter{text-align:center;}
figure{padding:0;margin:0;}
img{
	vertical-align: bottom;
	line-height: 1;
	max-width:100%;
	height:auto;
}
a{text-decoration: none;color: inherit;transition:all .4s ease-in-out;}
a:hover{}
*{box-sizing:border-box;}


/* common item ---------------------------------------*/

.clearfix::after,
.inner::after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}

@media all and (-ms-high-contrast:none){
	*::-ms-backdrop, .foo { color: red } /* IE11 */
}

@media all and (-ms-high-contrast:none){
	.foo { color: green } /* IE10〜Edge */
}

.font-mincho{
	font-family: 'Noto Serif JP',"Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}


/* loading ---------------------------------------*/

.pace {
	-webkit-pointer-events: none;
	pointer-events: none;

	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}

.pace-inactive {
	display: none;
}

.pace .pace-progress {
	background: #22A638 !important;
	position: fixed;
	z-index: 2000;
	top: 0;
	right: 100%;
	width: 100%;
	height: 0px;
	transition: all .25s ease;
}

#splash {
	position: fixed;
	z-index: 999;
	width: 100%;
	height: 100%;
	background:#1A1F61;
	color: #fff;
	text-align:center;
	transition: all 500ms cubic-bezier(0.250, 0.460, 0.450, 0.940)
}

#splash.is-hide {
	transform: translate(0,-120%);
}

#splash-text {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 999;
	width: 100%;
	transform: translate(-50%, -50%);
	font-size:5vw;
	font-family:"PLUGO R",-apple-system,"Hiragino Sans",sans-serif;
}

#splash-text.splash-text-small{
	display: inline-block;
	text-align: center;
	font-size:24px;
	color: #fff;
	line-height: 2;
	letter-spacing:0.2em;
	font-family: "A1ゴシック L","A1 Gothic L",-apple-system,"Hiragino Sans","Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro","メイリオ","Meiryo","ＭＳ Ｐゴシック",sans-serif;
}

.splash-text-random{display: none;}
.splash-text-random.is-active{display: inline-block;text-align:left;}

/* layout ---------------------------------------*/

article{
	width: 100%;
	overflow: hidden;
	padding-left: 130px;
	position:relative;
	background: #fff;
}


.wrapper{
	padding: 0 30px;
}

.inner{
	max-width:1080px;
	margin:0 auto;
}

.section{
	margin-bottom: 50px;
}

.ov-h{overflow: hidden;}

.overlay{
	display: none;
}


/* header ---------------------------------------*/

header{
	position: fixed;
	left: 0;
	top: 0;
	width: 130px;
	height: 100vh;
	z-index: 500;
	border-right: 1px solid #EDEDED;
	background: #fff;
}

#openmenu{
	display:block;
	width:130px;
	height:100px;
	text-indent: -99em;
	overflow: hidden;
	position:fixed;
	left:0;
	bottom:0;
	z-index: 1000;
	cursor: pointer;
	background: #1A1F61;
}

#openmenu span{
	content:'';
	display: block;
	width:55px;
	height:1px;
	background: #fff;
	position: absolute;
	left:35px;
	transform-origin: center center;
	transition: all .75s ease;
}

#openmenu span:nth-child(1){top:38px;}
#openmenu span:nth-child(2){top:50px;}
#openmenu span:nth-child(3){top:62px;}

#openmenu.is-open span{background: #fff;}

#openmenu.is-open span:nth-child(1){
	transform:rotate(135deg);
	top:50px;
	left:35px;
}

#openmenu.is-open span:nth-child(2){
	opacity:0;
	left:-25px;
}

#openmenu.is-open span:nth-child(3){
	transform:rotate(-135deg);
	top:50px;
	left:35px;
}

.bodyfixed{
	position: fixed;
	width: 100%;
	height: 100%;
}


/* gnav ---------------------------------------*/

.gnav{
	border:none;
	background: #1A1F61;
	overflow:auto;
	z-index:490;
	position: fixed;
	left:130px;
	top:0px;
	width:calc(100% - 130px);
	transform:translate(-100%,0);
	transition: all .25s ease;
	height: 100vh;
}

.gnav.is-active{transform:translate(0,0);}

.gnav-list{
	position:absolute;
	left: 0;
	max-height: 100vh;
	top:50%;
	transform:translate(0,-50%);
	width: 100%;
	padding-left: 100px;
}

.gnav-list > li{
	transition: all .75s ease;
	transform: translate(0,10px);
	opacity: 0;}

.gnav-list > li a{
	display: block;
	color: #fff;
	font-family:"PLUGO R",-apple-system,"Hiragino Sans",sans-serif;
	font-size:30px;
	padding: 20px 10px;
	transition: all .75s ease;
}

.gnav-list > li a:hover{
	color:#22A638;
}

.is-active .gnav-list > li:nth-child(1){transition-delay: 0.2s;}
.is-active .gnav-list > li:nth-child(2){transition-delay: 0.3s;}
.is-active .gnav-list > li:nth-child(3){transition-delay: 0.4s;}
.is-active .gnav-list > li:nth-child(4){transition-delay: 0.5s;}
.is-active .gnav-list > li:nth-child(5){transition-delay: 0.6s;}
.is-active .gnav-list > li:nth-child(6){transition-delay: 0.7s;}
.is-active .gnav-list > li:nth-child(7){transition-delay: 0.8s;}
.is-active .gnav-list > li:nth-child(8){transition-delay: 0.9s;}

.is-active .gnav-list > li{
	transform: translate(0,0);
	opacity: 1;
}


/* footer ---------------------------------------*/

footer{
	padding:60px 50px 30px;
	background: #1A1F61;
	color: #fff;
	z-index: 5;
	position:relative;
	font-family:"PLUGO R",-apple-system,"Hiragino Sans",sans-serif;
}

.footer-inner{
	display:flex;
	justify-content:space-between;
	flex-wrap:wrap;
	margin-bottom: 30px;
}

.footernav{
	width: 500px;
	font-size:13px;
	display:flex;
	justify-content:space-between;
	position:relative;
}

.footernav-list{
	width: 100px;
	border:1px solid transparent;
}

.footernav-list:nth-child(1){width:98px;}
.footernav-list:nth-child(2){width:164px;}
.footernav-list:nth-child(3){width:138px;}

.footernav-list > li{margin-bottom: 25px;}
.footernav-list > li a{display: inline-block;}
.footernav-list li a:hover{color: #22A638;}

.footer-mailmagazine{
	width: 360px;
	padding:0 60px;
	border-left: 1px solid #4C4E7F;
}

.footer-mailmagazine-lead{
	margin-bottom: 20px;
	font-size:13px;
	line-height: 2;
	margin-bottom: 20px;
}

.footer-company{
	width: calc(100% - 860px);
	padding-left: 40px;
	border-left: 1px solid #4C4E7F;
}

.footer-produce{margin-bottom: 50px;}

.footer-produce p{
	font-size:11px;
	margin-bottom: 20px;
}

.footer-logo{font-size:50px;}

.footer-produce-link{
	font-size:12px;
	display: inline-block;
	margin-top: 15px;
	text-decoration:underline;
}
.footer-produce-link:hover{text-decoration:none;}

.footer-link{font-size:12px;}

.footer-link li{margin-top: 10px;}

.footer-link li a{text-decoration:underline;}
.footer-link li a:hover{text-decoration:none;}

.footer-sns{
	position:absolute;
	left: 0;
	bottom: 25px;
	font-size:0px;
}

.footer-sns li{
	display: inline-block;
	margin-right: 18px;
}

.footer-sns li a{transition: all .25s ease;}
.footer-sns li a:hover{opacity: 0.7;}

.footer-sns-twitter img{width: 24px;}
.footer-sns-instagram img{width: 19px;}

.footer-document{
	font-size:10px;
	display: block;
	margin-bottom: 22px;
	letter-spacing:0.1em;
	position:absolute;
	left: 0;
	bottom: -30px;
}

.footer-document a{text-decoration:underline;}
.footer-document a:hover{text-decoration:none;}

.copyright{
	display: block;
	font-size: 10px;
	font-family:"PLUGO R",-apple-system,"Hiragino Sans",sans-serif;
	letter-spacing:0.1em;
}


button.formbox-button-1612860:hover{
	transition: all .25s ease;
	opacity: 0.7 !important;
}


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

.article-wrapper{position:relative;}

.article-separate{
	padding: 180px 50px 100px 40%;
	position:relative;
}
.article-head{
	position:absolute;
	left: 0px;
	top: 0;
	padding: 50px 0 0;
	width: calc(40% - 30px);
}

.article-menu,
.newsdetail-head{
	padding: 30px 0 0 60px;
}

.article-menu-list{font-family:"PLUGO R",-apple-system,"Hiragino Sans",sans-serif;}

.article-menu-list li{
	margin-bottom: 20px;
	letter-spacing:0.1em;
	font-size:16px;
}

.article-menu-list li a{
	display: block;
	transition: all .25s ease;
	opacity: 0.5;
}

.article-menu-list li.is-active a,
.article-menu-list li a:hover{
	opacity: 1;
}

.article-detail{
	position:relative;
	z-index: 2;
}

.news-list{
	display:flex;
	justify-content:space-between;
	flex-wrap:wrap;
}

.news-item{
	width: 46.5%;
	margin-bottom: 50px;
}

.news-item a{
	display: block;
}

.news-item-image{
	overflow: hidden;
	margin-bottom: 15px;
	position:relative;
}

.news-item-image::after{
	display:block;
	content:'';
	background:#1A1F61;
	background-size:100%;
	width:100%;
	height:100%;
	position:absolute;
	left: 0;
	top:0%;
	transform:translate(0,0);
	transition: all 1s cubic-bezier(0, 0.315, 0.155, 0.995);
}

.news-item-image.is-animated::after{
	transform:translate(110%,0);
}

.news-item-image img{
	transform-origin: center center;
	transition: all .75s ease;
}

a:hover .news-item-image img{
	transform: scale(1.1,1.1);
}

.news-item-title{
	font-size:16px;
	line-height: 2;
	letter-spacing:0.1em;
	margin-bottom: 10px;
}

.newsdate{
	color:#22A638;
	font-size:10px;
	font-family:"PLUGO R",-apple-system,"Hiragino Sans",sans-serif;
	line-height: 1;
}

.newsdetail-title{
	font-size:24px;
	line-height: 2;
	letter-spacing:0.1em;
	margin-bottom: 10px;
	font-family:"A1ゴシック R","A1 Gothic R";
}

.newstag{
	font-size:0px;
	margin: 15px 0 0px;
}

.newstag > li{
	font-size:10px;
	display: inline-block;
	margin-right: 5px;
	font-family:"A1ゴシック L","A1 Gothic L",-apple-system,"Hiragino Sans","Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro","メイリオ","Meiryo","ＭＳ Ｐゴシック",sans-serif;
}

.newstag > li a{
	display: block;
	text-decoration:underline;
}

.newstag > li a:hover{text-decoration:none;}

.newsshare{
	width: 180px;
	margin-top: 50px;
}

.newsshare-inner{
	display:flex;
	justify-content:space-between;
	align-items:center;
	flex-wrap:wrap;
	font-family:"PLUGO R",-apple-system,"Hiragino Sans",sans-serif;
}

.newsshare-title{
	font-size:16px;
	letter-spacing:0.1em;
	width: 80px;
}

.newsshare-link{
	width: 58px;
	display:flex;
	justify-content:space-between;
	align-items:center;
	flex-wrap:wrap;
}

.newsshare-link a{
	display: block;
	transition: all .25s ease;
}

.newsshare-link a:hover{opacity:0.7;}

.newsshare-link img{width:22px;}

.newsdetail-mainimage{margin-bottom: 40px;}
.newsdetail-mainimage img{width:100%;}

.newsdetail-body{
	font-size:16px;
	line-height: 2;
	letter-spacing:0.1em;
	text-align: justify;
	padding-bottom: 80px;
	border-bottom: 1px solid #EDEDED;
}

.newsdetail-body img{display: block;margin:40px 0;}
.newsdetail-body h1,
.newsdetail-body h2,
.newsdetail-body h3{
	font-size:20px;
	margin: 40px 0 20px;
	font-family:"A1ゴシック M","A1 Gothic M";
}

.newsdetail-body p{
	margin-bottom: 2em;
	font-family:"A1ゴシック L","A1 Gothic L",-apple-system,"Hiragino Sans","Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro","メイリオ","Meiryo","ＭＳ Ｐゴシック",sans-serif;
}

.newsdetail-body > a,
.newsdetail-body >p > a,
.newsdetail-body >p > small > a{text-decoration:underline;}
.newsdetail-body > a:hover,
.newsdetail-body >p > a:hover,
.newsdetail-body >p > small > a:hover{
	text-decoration:none;
	opacity: 0.7;
}

.newsdetail-body .box{
	background: #F7F7F7;
	padding: 35px 30px;
	position:relative;
	margin: 40px 0;
	font-family:"A1ゴシック L","A1 Gothic L",-apple-system,"Hiragino Sans","Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro","メイリオ","Meiryo","ＭＳ Ｐゴシック",sans-serif;
}

.newsdetail-body blockquote{
	background: #F7F7F7;
	padding: 35px 30px;
	position:relative;
	margin: 40px 0;
	font-family:"A1ゴシック L","A1 Gothic L",-apple-system,"Hiragino Sans","Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro","メイリオ","Meiryo","ＭＳ Ｐゴシック",sans-serif;
}

.bg-gray .newsdetail-body .box,
.bg-gray .newsdetail-body blockquote{
	background: #fff;
}

.newsdetail-body blockquote::before{
	display:block;
	content:'';
	background:url('../img/common/bq1.svg') no-repeat left top;
	background-size:100%;
	width:40px;
	height:40px;
	position:absolute;
	left:20px;
	top: 10px;
}

.newsdetail-body blockquote::after{
	display:block;
	content:'';
	background:url('../img/common/bq2.svg') no-repeat left top;
	background-size:100%;
	width:40px;
	height:40px;
	position:absolute;
	right:20px;
	bottom: 10px;
}

.newsdetail-body > small{
	display: block;
	font-size:13px;
	font-family:"A1ゴシック L","A1 Gothic L",-apple-system,"Hiragino Sans","Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro","メイリオ","Meiryo","ＭＳ Ｐゴシック",sans-serif;
}

.newsdetail-mailmagazine{
	background: #fff;
	border-left: 10px solid #22A638;
	padding: 30px;
}

.newsdetail-body .newsdetail-mailmagazine-lead{margin-bottom: 1em;}

.newsdetail-body > *:first-child{margin-top: 0;}

.newsdetail-author{padding: 30px 0;}
.newsdetail-author + .newsdetail-author{padding-top: 0;}

.newsdetail-author-title{
	font-size:18px;
	line-height: 2;
	margin-bottom: 5px;
}

.newsdetail-author-shoulder{
	font-family:"PLUGO R",-apple-system,"Hiragino Sans",sans-serif;
}

.newsdetail-author a{
	display: inline-block;
	transition: all .25s ease;
}

.newsdetail-author a:hover{opacity:0.7;}

.newsdetail-author-text{
	font-size:16px;
	line-height: 2;
	font-family:"A1ゴシック L","A1 Gothic L",-apple-system,"Hiragino Sans","Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro","メイリオ","Meiryo","ＭＳ Ｐゴシック",sans-serif;
}

.newsrecommend{
	padding: 70px 50px 100px 40%;
	position:relative;
}

.newsrecommend-bgtext{
	position:absolute;
	left: 0;
	top: 0;
	width: 900px;
}

.newsreccomend-title-wrapper{
	position:absolute;
	left: 0px;
	top: 0;
	padding: 70px 0 0;
	width: 40%;
}

.newsrecommend-list-wrapper{
	position:relative;
	z-index: 2;
}

.newsrecommend-list{
	display:flex;
	justify-content:space-between;
	flex-wrap:wrap;
}

.newsrecommend-item{
	width: 46.5%;
	margin-bottom: 50px;
}

.newsrecommend-item a{
	display: block;
}

.newsrecommend-item-image{
	overflow: hidden;
	margin-bottom: 15px;
}

.newsrecommend-item-image img{
	transform-origin: center center;
	transition: all .75s ease;
}

a:hover .newsrecommend-item-image img{
	transform: scale(1.1,1.1);
}

.newsrecommend-item-title{
	font-size:16px;
	line-height: 2;
	letter-spacing:0.1em;
	margin-bottom: 10px;
}


/* perspectives ---------------------------------------*/

.perspectives{
	position:relative;
	overflow: hidden;
}

.perspectives-bgtext1{
	position:absolute;
	left: -20px;
	top: -50px;
	width: 700px;
}

.perspectives-bgtext2{
	position:absolute;
	right: 0;
	top: 450px;
	width: 900px;
}

.perspectives .perspectives-bgtext1{
	position:fixed;
	left: 100px;
}

.perspectives .perspectives-bgtext2{
	position:fixed;
}

.perspectives-inner{
	position:relative;
	z-index: 2;
}

.perspectives-list-wrapper{
	padding: 180px 50px 50px;
}

.perspectives-item{margin-bottom: 64px;}

.perspectives-item-box{
	display:flex;
	justify-content:space-between;
	align-items:center;
	flex-wrap:wrap;
}

.perspectives-item-box-image{
	width: 48%;
	background: #FFFFFF;
	border: 1px solid #1A1F61;
	padding: 20px;
	overflow: hidden;
	position:relative;
}

.perspectives-item-box-image::after{
	display:block;
	content:'';
	background:#1A1F61;
	background-size:100%;
	width:100%;
	height:100%;
	position:absolute;
	left: 0;
	top:0%;
	transform:translate(0,0);
	transition: all 1s cubic-bezier(0, 0.315, 0.155, 0.995);
}

.perspectives-item-box-image.is-animated::after{
	transform:translate(110%,0);
}

.perspectives-item-box-detail{
	width: 48%;
}

.perspectives-item-title{
    font-size: 24px;
    line-height: 1.9;
    margin-bottom: 10px;
    letter-spacing: 0.1em;
}

.perspectives-more-btn{
	font-family: "PLUGO R",-apple-system,"Hiragino Sans",sans-serif;
	font-size: 16px;
	line-height: 1.3;
	letter-spacing: 0.1em;
	transition: all .75s ease;
	display: inline-block;
	overflow: hidden;
	position: relative;
	padding-bottom: 5px;
	margin-top: 30px;
}

.perspectives-more-btn::after {
	display: block;
	content: '';
	background: #1A1F61;
	background-size: 100%;
	width: 100%;
	height: 1px;
	position: absolute;
	left: 0px;
	bottom: 0;
	transform: translate(0%,0);
	transition: all .75s ease;
}

.perspectives-more-btn:hover::after {transform: translate(110%,0);}


/* twitter ---------------------------------------*/

.twitter{

}

.twitter-list-wrapper{
	padding: 180px 50px 50px;
}

.twitter-inner{position:relative;}

.twitter-follow{
	position:absolute;
	right: 60px;
	top: 0;
	white-space: nowrap;
}

.article-wrapper .twitter-follow{
	top: 80px;
}

.twitter-follow a{
	display:flex;
	justify-content:space-between;
	align-items:center;
	flex-wrap:wrap;
	transition: all .75s ease;
}

.twitter-follow a:hover{opacity:0.7}

.twitter-follow img{margin-right: 15px;}

.twitter-follow p{
	font-family: "PLUGO R",-apple-system,"Hiragino Sans",sans-serif;
	font-size: 16px;
	line-height: 1.3;
	vertical-align: middle;
}

.twitter-list{
	display:flex;
	flex-wrap:wrap;
	margin-bottom: 30px;
}

.twitter-list > li{
	width: 30%;
	margin: 0 0 40px 5%;
}

.twitter-list > li:nth-child(3n+1){margin-left: 0;}

.twitter-list > li a{transition: all .75s ease;}
.twitter-list > li a:hover{opacity:0.7}

.twitter-list-image{
	overflow: hidden;
	position:relative;
}

.twitter-list-image::after{
	display:block;
	content:'';
	background:#1A1F61;
	background-size:100%;
	width:100%;
	height:100%;
	position:absolute;
	left: 0;
	top:0%;
	transform:translate(0,0);
	transition: all 1s cubic-bezier(0, 0.315, 0.155, 0.995);
}

.twitter-list-image.is-animated::after{
	transform:translate(110%,0);
}

/* title ---------------------------------------*/

.title-page{
	z-index: 2;
	font-family:"PLUGO R",-apple-system,"Hiragino Sans",sans-serif;
	font-size:30px;
	line-height: 1;
	padding: 6px 0 6px 50px;
	border-left: 10px solid #22A638;
	letter-spacing:0.2em;
	margin-bottom: 50px;
}


/* bg ---------------------------------------*/

.bg-blue{
	background: #1A1F61;
	color: #fff;
}

.bg-gray{
	background: #FAF9FA;
}

/* text ---------------------------------------*/

.text-center{text-align: center !important;}
.text-right{text-align: right !important;}
.text-left{text-align: left !important;}

.text-s{
	font-size: 1.2rem;
	line-height: 1.5;
}

.text-m{
	font-size: 1.4rem;
	line-height: 1.5;
}

.text-l{
	font-size: 1.8rem;
	color: #484848;
	line-height: 1.94;
}

.text-bold{font-weight:600;}

.text-red{color: #aa0000 !important;}
.text-blue{color: #1A1F61 !important;}
.text-green{color: #22A638 !important;}


.text-ellipsis-2{
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.text-ellipsis-3{
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}

.text-ellipsis-4{
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	overflow: hidden;
}

@media all and (-ms-high-contrast:none){
	.text-ellipsis-2 { height: 3.2em; } /* IE10〜Edge */
	.text-ellipsis-3 { height: 4.7em; } /* IE10〜Edge */
}

.text-ellipsis-count::after{content: '…';}

.text-link{text-decoration: underline;}
.text-link:hover{text-decoration: none;}	


/* -------------------- pankuzu --------------------- */

.pankuzu{
	border-bottom:1px solid #ddd;
}

.pankuzu-list{}
.pankuzu-list > li{
	display: inline-block;
	font-size:13px;
}

.pankuzu-list > li a,
.pankuzu-list > li span{
	display: block;
	padding: 0px 30px 0px 10px;
	line-height: 40px;
	position: relative;
}

.pankuzu-list > li a{text-decoration:none;}

.pankuzu-list > li a::after{
	display:block;
	content:'';
	width:25px;
	height:25px;
	border-top:1px solid #ddd;
	border-right:1px solid #ddd;
	transform: rotate(45deg) translate(0,-50%);
	position:absolute;
	right:10px;
	top:45%;
}

.pankuzu-list > li span{}


/* list ---------------------------------------*/


/* btn ---------------------------------------*/

.widebtn{
	border-top:1px solid #EDEDED;
	border-bottom:1px solid #EDEDED;
	text-align:center;
	font-family:"PLUGO R",-apple-system,"Hiragino Sans",sans-serif;
	font-size:16px;
	line-height: 1.3;
	letter-spacing:0.1em;
	transition: all .75s ease;
	display: block;
	overflow: hidden;
	position:relative;
	padding: 40px;

}

.widebtn:hover{
	background: #1A1F61;
	color: #fff;
}

.btn {
    border: none;
    background: none;
    position: relative;
    line-height: 1;
    padding: 0 0 10px 0;
    display: inline-block;
    color: inherit;
    font-family: "PLUGO R",-apple-system,"Hiragino Sans",sans-serif;
    cursor: pointer;
    overflow: hidden;
    font-size: 16px;
    vertical-align: top;
}

.btn::before {
	background: rgba(26,31,97,0.5);
}

.btn::before, .btn::after {
	display: block;
	content: '';
	background-size: 100%;
	width: 100%;
	height: 1px;
	position: absolute;
	left: 0px;
	bottom: 0;
	opacity: 0.3;
}

.btn + .btn{margin-left: 20px;}

.btn:hover::after {
	transform: translate(0,0);
}
.btn::after {
	background: rgba(26,31,97,1);
	transform: translate(-100%,0);
	transition: all .4s ease-in-out;
}
.btn::before, .btn::after {
	display: block;
	content: '';
	background-size: 100%;
	width: 100%;
	height: 1px;
	position: absolute;
	left: 0px;
	bottom: 0;
	opacity: 0.3;
}

/* -------------------- table --------------------- */

@keyframes rotation{
  0%{ transform:rotate(0);}
  100%{ transform:rotate(360deg); }
}

.rotation{
	animation:10s linear infinite rotation;
}


/* modal ---------------------------------------*/

.modal-wrapper{display: none;}

.modal{background: #fff;}

.modal-inner{
	width: 100%;
	padding: 30px;
	background: #fff;
}

.modal-inner-manual{
	text-align: center;
}

.modal-inner-manual iframe{
	width: 600px;
	height: 500px
}

.modal-inner-close{
	position:absolute;
	right: 10px;
	top: 10px;
}



/* accordion ---------------------------------------*/

.accordion{}
.accordion-title{
	position:relative;
	display: inline-block;
	padding-right: 50px;
	cursor: pointer;
}

.accordion-title:hover{
	color:#2A619B;
	text-decoration: underline;
}

.accordion-title::after{
	display:block;
	content:'';
	border-bottom:3px solid #2A619B;
	border-right:3px solid #2A619B;
	width:10px;
	height:10px;
	margin-top:-17px;
	position:absolute;
	right:10px;
	top:50%;
	transform: rotate(45deg);
	transition: all .25s ease;
}

.accordion-title.is-open::after{
	transform: rotate(225deg);
}

.accordion-body{
	display: none;
}


/* tab ---------------------------------------*/

.tab{}


/* pcのみ */
@media screen and (min-width: 1001px){
	.sp{display: none !important;}
	.spbr{display: none;}


	.header-title{
		font-family:"PLUGO R",-apple-system,"Hiragino Sans",sans-serif;
		position:absolute;
		left: 85px;
		top: 55px;
		font-size:40px;
		line-height: 1.0;
		transition: all .75s ease;
		transform-origin: left top;
		transform: translate(0,0) rotate(90deg);
		white-space: nowrap;
		display: block;
		letter-spacing:0.2em;
		width: calc(77vh - 100px);
	}
}




/* small pc */
@media screen and (min-width: 1000px) and (max-width: 1350px){

	.footernav{
		width:100%;
		border-bottom: 1px solid #4C4E7F;
		margin-bottom: 34px;
		padding-bottom: 70px;
	}

	.footer-sns{bottom: 55px;}

	.footer-document{bottom:0px;}

	.footer-mailmagazine{
		border-left: none;
		padding: 0;
		width: 300px;
	}

	.footer-company{
		width: 360px;
	}


}


@media screen and (max-width: 1000px){

	/* default ---------------------------------------*/

	img{max-width:100%;}
	*{box-sizing:border-box;}


	/* common item ---------------------------------------*/

	.pc{display: none !important;}
	.pcbr{display: none;}


	/* layout ---------------------------------------*/

	article{padding-left: 0px;}
	.wrapper{padding: 0 0px;}
	.inner{margin:0 auto;}
	.section{margin-bottom: 0px;}
	.ov-h{overflow: hidden;}


	/* header ---------------------------------------*/

	header{
		position: fixed;
		left: 0;
		top: 0;
		width: 100%;
		height: 63px;
		border-right:none;
		border-bottom: 1px solid #f7f7f7;
	}

	.header-title{
		font-family:"PLUGO R",-apple-system,"Hiragino Sans",sans-serif;
		position:absolute;
		left: 20px;
		top: 20px;
		line-height: 1.0;
		display: block;
	}

	.header-title img{width: 205px;}

	#openmenu{
		display:block;
		width:80px;
		height:62px;
		position:fixed;
		left:auto;
		right: 0;
		bottom:auto;
		top: 0;
	}

	#openmenu span{
		width:40px;
		left:20px;
	}

	#openmenu span:nth-child(1){top:20px;}
	#openmenu span:nth-child(2){top:31px;}
	#openmenu span:nth-child(3){top:42px;}

	#openmenu.is-open span:nth-child(1){
		top:31px;
		left:20px;
	}

	#openmenu.is-open span:nth-child(3){
		top:31px;
		left:20px;
	}

	/* gnav ---------------------------------------*/

	.gnav{
		left: 0;
		top:63px;
		width:100%;
		height: calc(100% - 63px);
		transform: translate(0,-100%);
	}

	.gnav-list{
		position:absolute;
		left: 0;
		max-height: 100%;
		overflow: auto;
		top:50%;
		transform:translate(0,-50%);
		width: 100%;
		padding-left: 20px;
	}

	.gnav-list > li{}

	.gnav-list > li a{
		font-size:24px;
		padding: 10px 10px;
		letter-spacing:0.1em;
	}



	/* footer ---------------------------------------*/

	footer{padding:60px 30px 30px;}

	.footer-inner{margin-bottom: 70px;display: block;}

	.footernav{
		width: 100%;
		font-size:15px;
		margin-bottom: 65px;
		display: block;
	}

	.footernav-list{
		width: 100%;
		display:flex;
		justify-content:space-between;
		align-items:center;
		flex-wrap:wrap;
		border:none;
	}

	.footernav-list > li{margin-bottom: 42px;width:48%;}
	.footernav-list:nth-child(1){width:100%;}
	.footernav-list:nth-child(2){width:100%;}
	.footernav-list:nth-child(3){width:100%;}

	.footer-mailmagazine{
		border-left: none;
		padding: 60px 0 20px 0;
		border-top: 1px solid #4C4E7F;
		width: 100%;
	}

	.footer-company{
		width: 100%;
		padding: 60px 0 0 0;
		border-left: none;
		border-top: 1px solid #4C4E7F;
	}

	.footer-produce{margin-bottom: 60px;}
	.footer-produce p{margin-bottom: 20px;}

	.footer-logo{
		font-size:60px;
		text-indent:-0.2em;
	}

	.footer-produce-link{margin-top: 20px;}
	.footer-link li{margin-top: 15px;}

	.footer-link li a{text-decoration:underline;}
	.footer-link li a:hover{text-decoration:none;}

	.footer-sns{
		position:relative;
		bottom: 0;
		padding-top: 20px;
		margin-bottom: 40px
	}

	.footer-document{
		position:relative;
		left: 0;
		bottom: 0;
	}

	.copyright{
		font-size: 9px;
		text-align:center;
	}


	/* news ---------------------------------------*/

	.article-separate{padding: 0px 0px 30px 0;}

	.article-head{
		position:relative;
		left: 0px;
		top: 0;
		padding: 130px 0 0;
		width: 100%;
	}

	.article-menu{padding: 0px 0 0 0px;}
	.newsdetail-head{padding:20px 30px;}

	.article-menu-list{
		white-space: nowrap;
		overflow-x: auto;
		padding-left: 20px;
	}

	.article-menu-list li{
		display: inline-block;
		margin-bottom: 0px;
		padding: 0 30px 0 10px;
	}

	.article-menu-list li a{
		display: block;
		padding: 10px 0 30px;
		opacity: 0.2;
		letter-spacing:0.2em;
		position:relative;
	}

	.article-menu-list li.is-active a{opacity:1;}
	.article-menu-list li a:hover{opacity: 0.5;}

	.article-menu-list li.is-active a::after{
		display:block;
		content:'';
		background:#1A1F61;
		width:100%;
		height:3px;
		position:absolute;
		left:0px;
		bottom: 0;
	}

	.article-detail{}

	.news-list{display: block}

	.news-item{
		width: 100%;
		margin-bottom: 60px;
	}

	.news-item-image{margin-bottom: 17px;}
	.news-item-image img{}
	a:hover .news-item-image img{transform: scale(1,1);}

	.news-item-detail{padding: 0 30px;}

	.news-item-title{
		line-height: 1.8;
		margin-bottom: 10px;
	}

	.newsdate{line-height: 1.7}

	.newsdetail-title{
		font-size:20px;
		line-height: 1.9;
		letter-spacing:0.1em;
		margin-bottom: 7px;
	}

	.newstag{
		font-size:0px;
	}

	.newsdetail-body{
		font-size:14px;
		margin: 0 30px 0px;
		padding: 0 0px 40px;
	}

	.newsdetail-body img{display: block;margin:40px 0;}
	.newsdetail-body h1,
	.newsdetail-body h2,
	.newsdetail-body h3{
		font-size:20px;
		margin: 40px 0 15px;
	}

	.newsdetail-body p{
		margin-bottom: 2.2em;
		line-height: 2.4;
	}

	.newsdetail-body .box{
		margin: 30px 0;
		line-height: 2.2;
	}

	.newsdetail-body blockquote{
		padding: 30px 30px;
		margin: 30px 0;
		line-height: 2.2;
	}

	.newsdetail-body blockquote::before{
		width:35px;
		height:35px;
		left:15px;
	}

	.newsdetail-body blockquote::after{
		width:35px;
		height:35px;
		right:15px;
	}

	.newsdetail-body > small{
		display: block;
		font-size:11px;
	}

	.newsdetail-mailmagazine{
		border-left: 5px solid #22A638;
		padding: 30px 15px;
		margin-bottom: 30px;
	}

	.newsdetail-body > *:first-child{margin-top: 0;}

	.newsshare{
		width: 180px;
		margin: 0 auto;
	}

	.newsshare p{margin:0;}
	.newsshare-inner{}
	.newsshare-title{width: 90px;}
	.newsshare-link{}
	.newsshare-link img{margin:0;}
	.newsdetail-author{
		padding: 25px 30px 60px;
	}

	.newsdetail-author-title{
		font-size:14px;
		margin-bottom: 10px;
		line-height: 1.9;
	}

	.newsdetail-author-shoulder{}

	.newsdetail-author-text{
		font-size:14px;
		line-height: 2.2;
		letter-spacing:0.1em;
	}

	.newsrecommend{
		padding: 70px 0px 0px 0;
		position:relative;
	}

	.newsrecommend-bgtext{
		position:absolute;
		left: 0;
		top: 0;
		width: 100%;
	}

	.newsreccomend-title-wrapper{
		position:relative;
		padding: 0px 0 0;
		width: 100%;
	}

	.newsrecommend-list-wrapper{padding: 0 30px;}

	.newsrecommend-item{
		width: 47.5%;
		margin-bottom: 60px;
	}

	.newsrecommend-item a{}

	.newsrecommend-item-image{margin-bottom: 15px;}
	.newsrecommend-item-image img{}
	a:hover .newsrecommend-item-image img{transform: scale(1,1);}

	.newsrecommend-item-title{
		font-size:13px;
		margin-bottom: 10px;
	}


	/* perspectives ---------------------------------------*/

	.perspectives{
		margin-top: 0px;
		padding: 0px 0 0;
		overflow: hidden;
	}

	.perspectives-bgtext1{
		position:absolute;
		left: -20px;
		top: 60px;
		width: 400px;
		max-width: 400px;
	}

	.perspectives-bgtext2{
		position:absolute;
		right: auto;
		left: -20px;
		top: 550px;
		width: 450px;
		max-width: 450px;
	}

	.perspectives .perspectives-bgtext1{left:-20px;}

	.perspectives .perspectives-bgtext1,
	.perspectives .perspectives-bgtext2{
		position:absolute;
	}

	.perspectives-inner{
		position:relative;
		z-index: 2;
	}

	.perspectives-list-wrapper{
		padding:14px 0;
	}

	.perspectives-item{margin-bottom: 40px}

	.perspectives-item-box{
		display: block;
		margin-bottom: 60px;
		padding: 0 30px;
		width: 100%;
	}

	.perspectives-item-box-image{
		width: 100%;
		padding: 10px;
		margin-bottom: 20px
	}

	.perspectives-item-box-detail{
		width: 100%;
	}

	.perspectives-item-title{
		font-size:15px;
		line-height: 2;
		margin-bottom: 10px
	}

	.perspectives-more-btn{
		font-size: 13px;
		margin-top: 40px;
	}


	/* twitter ---------------------------------------*/

	.twitter{
		margin-top: 0px;
		padding: 0px 0 0;
		overflow: hidden;
	}

	.twitter-inner{padding:0 0px;}

	.twitter-follow{
		position:relative;
		right: 0;
		top: 0;
	}

	.twitter-list-wrapper{
		padding:14px 0;
	}

	.article-wrapper .twitter-follow{top: 0px;}

	.twitter-follow a{
		display: block;
		text-align:center;
		padding: 28px 0;
		border-top: 1px solid #EDEDED;
	}

	.twitter-follow a:hover{opacity:1}

	.twitter-follow img{
		margin-right: 12px;
		width: 22px;
		vertical-align: middle;
		position:relative;
		top: -2px;
	}

	.twitter-follow p{
		display: inline-block;
		font-size: 14px;
		line-height: 1;
		letter-spacing:0.25em;
	}

	.twitter-list{
		display: block;
		padding: 0 30px;
		margin-bottom: 70px;
	}

	.twitter-list > li{
		width: 100%;
		margin: 0 0 30px 0;
	}

	.twitter-list > li a:hover{opacity:1}


	/* title ---------------------------------------*/

	.title-page{
		padding: 6px 0 3px 20px;
		border-left: 9px solid #22A638;
		letter-spacing:0.15em;
		margin-bottom: 50px;
	}


	/* btn ---------------------------------------*/

	.widebtn{
		font-size:15px;
		letter-spacing:0.15em;
		padding: 30px;
	}

	.widebtn:hover{
		background: none;
		color: #1A1F61;
	}

}


@media screen and (max-width: 768px){

	body{word-break: break-all}

}


/* iphone5 iphoneSE用 */
@media screen and (max-width: 370px){

}