/*
Theme Name: ロータリー
Theme URI: https://ri-d2520.com/interact/
Description: WordPress 用
Version: 1
Author: ロータリー
Author URI: https://ri-d2520.com/interact/
*/

@charset "utf-8";

@font-face {
	font-family: 'Noto';
	src: url('./webfonts/NotoSansJP-Black.woff') format('woff'),
			 url('./webfonts/NotoSansJP-Black.otf') format('opentype');
	font-weight: 700;
	font-style: normal;
}

@font-face {
	font-family: 'Noto';
	src: url('./webfonts/NotoSansJP-Medium.woff') format('woff'),
			 url('./webfonts/NotoSansJP-Medium.otf') format('opentype');
	font-weight: 400;
	font-style: normal;
}

/*//////////////////////////////////////////////////////////

	 1: Application all
	 2: Flame layout
	 3: Decoration
	 4: Entry

//////////////////////////////////////////////////////////*/

/*=========================================================

	Application all

==========================================================*/

html,body{
	margin: 0;
	padding: 0;
}
html{-webkit-text-size-adjust: 100%;}

body{
	text-align: center;
	font-family: 'Noto';
	font-weight: 400;
	line-height: 1.6;
	font-size: 15px;
	color: #333;
	width: 100%;
}

a{
	transition: all .3s;
	text-decoration: underline;
	-webkit-tap-highlight-color: rgba(248,21,106,0.5);
	color: #f9136b;
}
a:hover{
	text-decoration-color: transparent;
}

img{
	vertical-align: middle;
	max-width: 100%;
	height: auto;
	border: 0;
}

h1,h2,h3,h4,h5,h6{
	font-weight: 700;
	font-size: 15px;
	margin: 0;
}

table{
	width: 100%;
	margin: 0;
	border-collapse: collapse;
	border-spacing: 0;
	border: 0;
}
th,td{
	box-sizing: border-box;
	text-align: left;
	vertical-align: top;
	font-weight: 400;
	padding: 0;
	margin: 0;
}

ul,ol{
	list-style-position: outside;
	padding: 0;
	margin: 0 0 0 20px;
}

form,fieldset,p,dl,dd{
	padding: 0;
	margin: 0;
	border: 0;
}

input,select,textarea{
}
input,button{line-height: 1;}

hr{
	display: none;
	clear: both;
	height: 1px;
	padding: 0;
	margin: 0;
	border: 0;
}

strong,b{
	font-weight: 700;
}

address,em{
	font-style: normal;
}

::selection {
	color:#fff;
	background: #0697cd;
}
::-moz-selection {
	color:#fff;
	background: #0697cd;
}


@media screen and (min-width: 737px){ /* PC */
	.brsp,
	.space-sp{
		display: none;
	}
}
@media screen and (max-width: 736px){ /* SP */
	.brpc,
	.space-pc{
		display: none;
	}
}


/*=========================================================

	Layout & Decoration

==========================================================*/

/*	Header
***********************************************************/



/*	Contents
***********************************************************/

.layout{
	text-align: left;
}

.pagetitle{
	text-align: center;
	font-size: 200%;
	color: #1565c0;
	padding: 70px 0;
	margin-bottom: 50px;
	background: #F1F4F7;
}

.section{
	margin-top: 100px;
}
.section-title{
	font-size: 200%;
	color: #d30e59;
	margin-bottom: 30px;
}

.error-url{
	color: #a00;
	margin-bottom: 15px;
}



/*	Footer
***********************************************************/

.pagetop{
	text-align: right;
	padding-bottom: 15px;
}
.pagetop a{
	display: inline-block;
	font-size: 250%;
	color: #333;
}
.pagetop span{
	display: none;
}

.banner{
	padding: 50px 0;
	background: #eee;
}
.banner ul{
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	margin: 0;
}
.banner ul li{
	padding: 15px 30px;
	border-radius: 5px;
	border: 1px solid #ccc;
	background: #fff;
}
.banner ul li img{
	width: auto;
	height: 50px;
}

.copyright{
	color: #fff;
	padding: 50px 0;
	background: #f9136b;
}

@media screen and (min-width: 737px){ /* PC */
	#header{
		position: fixed;
		top: 0;
		left: 0;
		z-index: 9999;
		width: 100%;
		height: 90px;
		border-bottom: 1px solid #ccc;
		background: #fff;
	}
	#header h1{
		position: absolute;
		top: 15px;
		left: 30px;
	}
	#header h1 img{
		width: auto;
		height: 60px;
	}
	
	.menu-trigger{display: none;}
	
	#header #navigation-area{
		position: absolute;
		top: 0;
		right: 0;
	}
	
	#header .menu-area{
		display: flex;
	}
	
	#header ul#navigation{
		list-style: none;
		display: flex;
		justify-content: flex-end;
		line-height: 90px;
		margin: 0;
		padding-right: 50px;
	}
	#header ul#navigation li{
		margin-left: 30px;
	}
	#header ul#navigation li a{
		position: relative;
		display: inline-block;
		text-decoration: none;
		color: #333;
	}
	#header ul#navigation li a::after{
		position: absolute;
		bottom: -6px;
		left: 0;
		content: '';
		width: 100%;
		height: 5px;
		background: #f9136b;
		opacity: 0;
		visibility: hidden;
		transition: .3s;
	}
	#header ul#navigation li a:hover::after{
		bottom: 0px;
		opacity: 1;
		visibility: visible;
	}
	
	#container{
		padding-top: 91px;
	}
	
	.layout,
	.pagetop{
		width: 1000px;
		margin: auto;
	}
	
	.banner ul{
		justify-content: center;
		gap: 0 15px;
	}
}

@media screen and (max-width: 736px){ /* SP */
	#header{
		position: fixed;
		top: 0;
		left: 0;
		z-index: 9999;
		text-align: left;
		width: 100%;
		height: 60px;
		border-bottom: 1px solid #ccc;
		background: #fff;
	}
	#header h1{
		position: absolute;
		z-index: 1000;
		top: 10px;
		left: 10px;
	}
	#header h1 a{
		text-decoration: none;
	}
	#header h1 img{
		width: auto;
		height: 40px;
	}
	
	#navigation-area{
		position: absolute;
		z-index: 100;
		top: 0;
		right: 0;
		width: 100%;
		height: 60px;
	}
	
	.menu-trigger,
	.menu-trigger span {
		display: inline-block;
		transition: all .3s;
		box-sizing: border-box;
	}
	.menu-trigger{
		position: absolute;
		display: block;
		top: 0;
		right: 0;
		width: 60px;
		height: 60px;
		background: #fff;
	}
	
	.menu-trigger span {
		position: absolute;
		left: 15px;
		width: 30px;
		height: 2px;
		background-color: #555;
		border-radius: 2px;
	}
	.menu-trigger span:nth-of-type(1) {
		top: 19px;
	}
	.menu-trigger span:nth-of-type(2) {
		top: 29px;
	}
	.menu-trigger span:nth-of-type(3) {
		top: 40px;
	}
	
	.menu-trigger.active span{
		background: #f9136b;
	}
	.menu-trigger.active span:nth-of-type(1) {
		-webkit-transform: translateY(10px) rotate(-315deg);
		transform: translateY(10px) rotate(-315deg);
	}
	.menu-trigger.active span:nth-of-type(2) {
		opacity: 0;
	}
	.menu-trigger.active span:nth-of-type(3) {
		-webkit-transform: translateY(-11px) rotate(315deg);
		transform: translateY(-11px) rotate(315deg);
	}
	
	.menu-area{
		position: absolute;
		top: 60px;
		left: 0;
		z-index: 1000;
		display: none;
		width: 100%;
	}
	.menu-area ul{
		list-style: none;
		margin: 0;
	}
	
	#navigation{
		box-sizing: border-box;
		height: 100vh;
		padding: 100px 30px 30px 30px;
		background: #f9136b;
	}
	#navigation > li{
		border-top: 1px solid rgba(255,255,255,0.3);
	}
	#navigation > li:last-child{
		border-bottom: 1px solid rgba(255,255,255,0.3);
	}
	#navigation a{
		display: block;
		text-decoration: none;
		color: #eee;
		padding: 15px;
	}
	
	p.header-reservation{
		display: none;
	}
	
	#contents{
		padding-top: 61px;
	}
	
	.layout{
		padding: 0 15px;
	}
	
	.pagetitle{
		font-size: 180%;
	}
	
	.section-title{
		font-size: 170%;
	}
	
	.pagetop{
		padding-right: 15px;
	}
	
	.banner ul{
		justify-content: center;
		gap: 15px;
		padding: 0 15px;
	}
	.banner ul li{
		box-sizing: border-box;
		width: 100%;
	}
}


/*=========================================================

	Entry

==========================================================*/

ul.entry-list{
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	margin: 0;
}
ul.entry-list li{
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
}
ul.entry-list li p{
	order: -1;
	color: #777;
}
ul.entry-list li div.list-thumb{
	order: -2;
	margin-bottom: 5px;
}

.entry{
	position: relative;
}
.entry-title{
	font-size: 150%;
	padding: 30px 0 30px 0;
	margin-bottom: 50px;
	border-bottom: 1px solid #eee;
}
.entry-info{
	position: absolute;
	top: 0;
	left: 0;
	color: #aaa;
}

.entry .article{
	word-break: break-all;
}

.entry .article p ~ p{
	margin-top: 15px;
}

.pagenav{/* シングル記事の方 */
	width: 100%;
	padding-top: 30px;
	margin-top: 50px;
	border-top: 1px solid #eee;
}
.pagenav::after{
	content: '';
	display: block;
	clear: both;
}
.pagenav div{
	width: 48%;
}
.pagenav div.prev{
	float: left;
}
.pagenav div.next{
	float: right;
	text-align: right;
}
.pagenav div.prev i{
	margin-right: 5px;
}
.pagenav div.next i{
	margin-left: 5px;
}

.pagenav-list{/* 記事一覧の方 */
	text-align: center;
	padding-top: 50px;
}
#index-contents .pagenav-list{
	padding: 0 0 50px 0;
}

.pagenav-list span,
.pagenav-list a{
	display: inline-block;
	text-decoration: none;
	line-height: 40px;
	color: #00bcd4;
	width: 40px;
	margin-left: 10px;
}
.pagenav-list span:first-child,
.pagenav-list a:first-child{
	margin-left: 0;
}
.pagenav-list a{
}
.pagenav-list span.current{
	color: #00bcd4;
	background: #e0f7fa;
}
.pagenav-list a:hover{
	background: #e0f7fa;
}

.back-list{
	text-align: center;
	margin-top: 50px;
}
.back-list a{
	display: inline-block;
	line-height: 50px;
	color: #fff;
	padding: 0 50px;
	border-radius: 25px;
	background: #333;
}

@media screen and (min-width: 737px){ /* PC */
	ul.entry-list{
		gap: 30px 15px;
	}
	ul.entry-list li{
		width: calc(33.33% - 10px);
	}
	ul.entry-list li div.list-thumb{
		overflow: hidden;
		height: 210px;
	}
	
	.entry{
		margin: 0 100px;
	}
	
	.pagenav{
		width: calc(100% - 200px);
		margin-left: 100px;
		margin-right: 100px;
	}
}

@media screen and (max-width: 736px){ /* SP */
	ul.entry-list{
		gap: 30px 0;
	}
}
