

/*-------------------------------*/
/*  ↓↓改行設定                 */
/*-------------------------------*/
.sp-only {  /*スマホあり、PC・TABなし*/
	display: none;
}
.sp-none {  /*スマホなし、PC・TABあり*/
	display: block;
}
.pc_only {  /*PCあり、TAB・スマなし*/
	display: block;
}
.pc_none {  /*PCなし、TAB・スマホあり*/
	display: none;
}
@media (max-width: 840px) {
	.pc_only { 
		display: none;
	}
	.pc_none {
		display: block;
	}
}
@media (max-width: 540px) {
	.sp-only {
		display: block;
	}
	.sp-none {  
		display: none;
	}
}
/*-------------------------------*/
/*  ↑↑改行設定 End             */
/*-------------------------------*/

:root {
	--color01: #353535; /*フォント：基本のグレー*/
	--color01-rgb: 35, 35, 35; /*フォント：基本のグレーRGB*/
	--color02: #00a0c3; /*基本の青色*/
	--color02-rgb: 0, 160, 195; /*基本の青色RGB*/
	--color03: #f7cb30; /*基本の黄色*/
	--color03-rgb: 247, 203, 48; /*基本の黄色RGB*/
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 90px;
}
body {
	background-image: url("../img/bg.png");
	background-repeat: repeat;
  	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;/*<weight>: Use a value from 100 to 900*/
	font-style: normal;
	color: var(--color01);
	letter-spacing: 0.05em;
	font-size: 16px;
	line-height: 2em;
}
.jost {
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;/*<weight>: Use a value from 100 to 900*/
  font-style: normal;
}
.futura {
	font-family: "futura-pt", sans-serif;
	font-weight: 400;
	font-style: normal;
}
.inner-1 {
	width: 90%;
	max-width: 1280px;
	margin-left: auto;
	margin-right: auto;
}
svg {
	height: 0;
}

/*アイコンSVG設定 (本：黒)*/
.common-icon-book-black {  
	width: 18px;
    height: 14px;
	fill: transparent;
    stroke: var(--color01);
}

/*アイコンSVG設定 (本：白)*/
.common-icon-book-white { 
	width: 18px;
    height: 14px;
	fill: transparent;
    stroke: #fff;
}

/*アイコンSVG設定 (メール：黒)*/
.common-icon-mail-black { 
	width: 18px;
    height: 19px;
	fill: var(--color01);
}

/*アイコンSVG設定 (メール：白)*/
.common-icon-mail-white { 
	width: 18px;
    height: 19px;
	fill: #fff;
}

/*矢印SVG*/
.common-arrow {      
	width: 15px;
	height: 9px;
	fill: var(--color01);
}

/*矢印(円あり・白→青)*/
.common-arrow-circle {   
	width: 55px;
	height: 55px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #fff;
	border-radius: 50%;
	transition: .5s;
}
.common-arrow-circle_svg {
	width: 100%;
	height: 11px;
	fill: var(--color02);
	transition: .5s;
}
a:has(.common-arrow-circle):hover .common-arrow-circle {
	background-color: var(--color02);
}
a:has(.common-arrow-circle):hover .common-arrow-circle_svg {
	fill: #fff;
	translate: 6px 0;
}

 /* 共通ボタン(円矢印あり・黄色) */
.common-btn {        
	display: inline-block;
    background-color: var(--color03);
    color: #fff;
    width: 80%;
    max-width: 400px;
    border-radius: 100px;
    padding: 1em 5%;
	margin: 3em auto 0;
	position: relative;
}
.common-btn-circle {  
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: transparent;
    border: 1px solid #fff;
	border-radius: 50%;
	position: absolute;
    right: 1.5em;
    top: 50%;
    translate: 0 -50%;
	transition: .5s;
}
.common-btn-circle_svg {
	width: 15px;
	height: 9px;
	fill: #fff;
	transition: .5s;
}
a:has(.common-btn-circle):hover .common-btn-circle {
	background-color: #fff;
}
a:has(.common-btn-circle):hover .common-btn-circle_svg {
	fill: var(--color03);
	translate: 6px 0;
}
 /* 共通ボタン(円矢印あり・青色) */
.common-btn.blue {        
    background-color: var(--color02);
}
a:has(.common-btn-circle.blue):hover .common-btn-circle_svg {
	fill: var(--color02);
}


 /* 共通ボタン(黄色 or 青・hoverで背景白に変化) */
.common-btn-color {
	border-radius: 100px;
	color: #fff;
	background-color: var(--color03);
	border: 2px solid transparent;
	display: flex;
    justify-content: center;
	align-items: center;
	gap: .5em;
	transition: .3s;
}
.common-btn-color.blue { /*青*/
	background-color: var(--color02);
}
.common-btn-color:hover {
	background-color: #fff;
	color: var(--color03)!important;
	border: 2px solid var(--color03);
}
.common-btn-color.blue:hover {
	color: var(--color02)!important;
	border: 2px solid var(--color02);
}
.common-btn-color:hover svg {
	fill: var(--color03);
}
.common-btn-color.blue:hover svg {/*青*/
	fill: var(--color02);
}


/*共通セクションタイトル*/
.section-title {     
	display: inline-block;
	font-family: "Jost", sans-serif;
	font-size: 3.7em;
	font-weight: 500;
	line-height: normal;
	letter-spacing: .06em;
	color: var(--color02);
	text-align: center;
	position: relative;
	margin-bottom: 1em;
	z-index: 0;
}
.section-title::before {
	content: "";
	display: inline-block;
	background-size: 14px 14px;
    background-position: center 30%;
	background-image:
	repeating-linear-gradient(
		90deg,
		#fff ,
		#fff 1px,
		transparent 1px,
		transparent 36px
	),
	repeating-linear-gradient(
		0deg,
		#fff ,
		#fff 1px,
		transparent 1px,
		transparent 36px
	);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
    width: 400px;
    height: 0;
    padding-top: 44px;
	z-index: -1;
}

/*swiper loopが止まらないようにする*/
.swiper-wrapper 
	{-webkit-transition-timing-function:linear!important; -o-transition-timing-function:linear!important; transition-timing-function:linear!important; }



@media (max-width: 1280px) {
}

@media (max-width: 1024px) {
}

@media (max-width: 768px) {
	body {
		font-size: 14px;
	}
	.common-arrow-circle {
		width: 40px;
		height: 40px
	}
	.common-arrow-circle_svg {
    	height: 9px;
	}
	.common-btn-circle {
		width: 30px;
		height: 30px;
	}
	.common-btn-circle_svg {
    	width: 12px;
	}
}

@media (max-width: 540px) {
	body {
		font-size: 13px;
	}
	.section-title {
    	font-size: 3em;
	}
	.section-title::before {
		width: 300px;
	}
}



/*--------------------------------------------------------------------------------------------------------*/
/*↓↓↓アーカイブページのページネーション（プラグインPageNaviで.wp-pagenaviのタグは自動生成されている。）*/
/*--------------------------------------------------------------------------------------------------------*/
.page-nation { 
	/*width: 90%;*/
    /*color: #2c2c2c;*/
	/*font-size: .9em;*/
	font-family: "Jost", sans-serif;
	font-weight: 500;
	margin: 4em auto;
}
.wp-pagenavi {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	position: relative;
}
.wp-pagenavi .current, .wp-pagenavi .page {
	/*background: rgba(102, 102, 102, .2);*/
	display: flex;
	justify-content: center;
	align-items: center;
	/*color: #c0c0c0;*/
	margin: 0 20px 0 0;
	width: 30px;
	height: 30px;
	transition: .5s;
}
.wp-pagenavi .current {
	background: var(--color02);
	color: #fff;
	border-radius: 50%;
}
.wp-pagenavi .page:hover {
	/*background: rgba(102, 102, 102, .2);
	color: #fff;*/
}
.wp-pagenavi a:hover {
	opacity: .5;
}
.previouspostslink,
.nextpostslink{
	/*border-bottom: 1px solid #818181;
	padding-bottom: 5px;*/
	font-size: .8em;
	color: var(--color02);
	position: absolute;
}
.previouspostslink {
	left: 10px;
}
.nextpostslink {
	right: 10px;
}

@media screen and (max-width:540px){
	.wp-pagenavi .current, .wp-pagenavi .page {
		margin: 0 10px 0 0;
	}
}
/*-------------------------------------------------------------------------------------------*/
/*↑↑↑ページネーション（プラグインPageNaviで.wp-pagenaviのタグは自動生成されている。） end */
/*-------------------------------------------------------------------------------------------*/


/*--------------------------------------------*/
/*↓↓↓シングルページのページネーション*/
/*--------------------------------------------*/
.singlePage-pagenavi{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	margin-top: 60px;
	font-size: .9em;
	text-align: center;
}
.singlePage-pagenavi .moreBtn {
    margin: initial;
}
.singlePage-pagenavi .moreBtn:hover {
	/*background-color: #fff;
    color: var(--color05);*/
}
.singlePage-pagenavi_cont {
	display: flex;
	flex-wrap: wrap;
	font-weight: 500;
}
.singlePage-pagenavi_cont .prev {
	margin-right: 6em;
}
.singlePage-pagenavi_cont a {
	/*border-bottom: 1px solid #818181;
	padding-bottom: 5px;*/
	color: var(--color02);
	font-family: "Jost", sans-serif;
}
.singlePage-pagenavi_cont a:hover {
	opacity: .5;
}

@media screen and (max-width:540px){
	.singlePage-pagenavi .moreBtn { 
		margin: auto;
	}
	.singlePage-pagenavi_cont {
		width: 100%;
		justify-content: space-between;
		margin-top: 2em;
	}
}
/*------------------------------------------------*/
/*↑↑↑シングルページのページネーション end*/
/*------------------------------------------------*/
