/*
Theme Name: OPEN COURT
Description: OPEN COURT 専用テーマ
Version: 1.0.2
*/

/* ==============================================================================
    	  Reset
============================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
}
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 {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
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;
}

/* ==============================================================================
    	  ベース設定
============================================================================== */
body {
	font-family:"游ゴシック Medium",YuGothic,YuGothicM,"Hiragino Kaku Gothic ProN","Hiragino Kaku Gothic Pro",メイリオ,Meiryo,sans-serif;
}
body {
  --color_main: #0d66ac;
}
.bold {
	font-weight: bold;
}
.yellow {
	color: #fcee21;
}
#wrap {
	width: 100%;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	overflow: hidden;
	background-image: url(images/bg.jpg);
	background-size: cover;
	background-position: center top;
	background-attachment: fixed;
}
header {
	width: 100%;
}
#container {
	max-width: 500px;
	margin: 0 auto;
	box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.55);
	display: flex;
	flex-direction: column;
	min-height: calc(100vh - 50px);
}
.minh {
	flex: 1 0 auto;
}
footer {
	width: 100%;
	margin-top: auto;
}
img {
	vertical-align: bottom;
}
.btn1 {
	text-align: center;
}
.btn1 a {
	display: inline-block;
	border-radius: 100px;
	border: 2px solid #fff;
	padding: 20px 0;
	color: #fff;
	text-decoration: none;
	width: 70%;
	position: relative;
	font-weight: bold;
}
.btn1 a:after {
	position: absolute;
	top: 50%;
    transform: translateY(-50%);
	right: 20px;
	font-family: "Material Icons";
	content: "\e5df";
	color: #fff;
	font-size: 24px;
}
.court-bg {
	background-size: 100% auto;
	background-repeat: repeat;
}
.page-content-h2 {
    position: relative;
    padding: 0 0 20px;
    margin-bottom: 40px;
    font-weight: bold;
    font-size: 20px;
    text-align: center;
    color: #fff;
}
.page-content-h2::before {
    position: absolute;
    border-bottom: 2px solid #fff;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    content: '';
}
.dot-list {
	margin-bottom: 2em;
	color: #fff;
	line-height: 1.4em;
	list-style-type: disc;
	padding-left: 1em;
	font-weight: bold;
}
.dot-list li {
	margin-bottom: 1em;
}
.number-list {
	margin-bottom: 2em;
	color: #fff;
	line-height: 1.4em;
	list-style-type: numbers;
	padding-left: 1em;
	font-weight: bold;
}
.number-list li {
	margin-bottom: 1em;
}
@media screen and (max-width:500px) {
#wrap {
	background-image: none;
	background: var(--color_main);
}
#container {
	width: 100%;
	box-shadow: none;
}
body {
	font-size: 14px;
}
}
@media screen and (min-width:501px) {
#container {
	min-width: 500px;
}
}

/* ==============================================================================
    	  ヘッダー
============================================================================== */
header {
    background: var(--color_main);
    position: fixed;
    width: 100%;
	z-index: 500;
}
.header-logo {
	padding: 10px 20px;
	z-index: 999;
}
.header-logo img {
	height: 30px;
}
.header-inner {
    display: flex;
    justify-content: space-between;
}
.toggle-btn {
    width: 30px;
    height: 30px;
	position: absolute;
    right: 20px;
    top: 10px;
    z-index: 999;
}
.toggle-btn__line {
    background: #fff;
    display: block;
    height: 2px;
    position: absolute;
    transition: transform 0.5s;
    width: 100%;
}
.toggle-btn__line--top {
    top: 3px;
}
.toggle-btn__line--center {
    top: 15px;
}
.toggle-btn__line--bottom {
    top: 27px;
}
.toggle-btn__line.active {
    background: #fff;
}
.toggle-btn__line--top.active {
    top: 15px;
    transform: rotate(45deg);
}
.toggle-btn__line--center.active {
    transform: scaleX(0);
}
.toggle-btn__line--bottom.active {
    top: 15px;
    transform: rotate(135deg);
}
.gnav {
    display: none;
    position: fixed;
    background: var(--color_main);
    width: 100%;
    height: 100%;
    z-index: 500;
}
.gnav-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
.gnav-list li {
	text-align: center;
}
.gnav-list li a {
	display: inline-block;
	padding: 20px;
	color: #fff;
	font-size: 16px;
	text-decoration: none;
}

/* ==============================================================================
    	  フッター
============================================================================== */
footer {
	text-align: center;
}
.footer-links {
	background-color: #30a0d2;
	padding: 40px 0;
}
.footer-logo img {
	width: 40%;
}
.footer-social {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 40px;
}
.footer-social li {
	width: 9%;
	text-align: center;
	margin: 0 20px;
}
.footer-social li img {
	max-height: 40px;
	width: 100%;
}
.footer-copy {
    background: var(--color_main);
	color: #fff;
	font-size: 12px;
	padding: 20px 0;
}

/* ==============================================================================
    	  トップページ
============================================================================== */
.joint img {
	width: 100%;
}
.top-kv {
	position: relative;
}
.top-kv img {
	width: 100%;
}
.kv-btn {
	width: 100%;
	position: absolute;
	text-align: center;
	bottom: 100px;
}
.kv-btn img {
	width: 70%;
}
.top-section-ttl {
	text-align: center;
	margin-bottom: 40px;
}
.top-section-ttl img {
	height: 80px;
	max-width: 90%;
}
.top-about {
	background-image: url(images/bg_court_blue.jpg);
	padding: 80px 20px;
}
.top-section-box {
	color: #fff;
	margin-bottom: 60px;
	text-align: center;
	font-weight: bold;
}
.top-section-box p {
	margin-bottom: 2em;
	line-height: 1.5em;
}
.about-img-box1 {
	text-align: center;
	margin-bottom: 20px;
}
.about-img-box1 img {
	width: 40%;
}
.about-img-box2 {
	text-align: center;
	margin: 60px 0 20px 0;
}
.about-img-box2 img {
	width: 70%;
}
.top-btn-text {
	font-weight: bold;
	text-align: center;
	margin: 40px 0 10px 0;
	color: #fff;
}
.top-howto {
	background-image: url(images/bg_court_orange.jpg);
	padding: 80px 20px;
}
.rule-list li {
	background: #fff;
	border-radius: 8px;
	border: 2px solid var(--color_main);
	margin-bottom: 20px;
}
.rule-ttl {
	text-align: center;
	font-weight: bold;
	background: var(--color_main);
	color: #fff;
	padding: 10px 0;
}
.rule-text {
	text-align: center;
	padding: 10px 0;
	line-height: 1.5em;
}
.top-rule-text1 {
	font-weight: bold;
	text-align: center;
	margin: 0 0 20px 0;
	color: #fff;
}
.top-rules {
	background-image: url(images/bg_court_ltblue.jpg);
	padding: 80px 20px;
}
.top-partner {
	background: #fff;
	padding: 80px 20px;
}
.top-partner-list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.top-partner-list li {
	width: 48%;
	margin-bottom: 20px;
}
.top-partner-list li img {
	width: 100%;
}
.howto-img-box1 {
	text-align: center;
	margin-bottom: 20px;
}
.howto-img-box1 img {
	width: 50%;
}
.howto-img-box2 {
	text-align: center;
	margin: 60px 0 20px 0;
}
.howto-img-box2 img {
	width: 40%;
}
.top-news {
	background-image: url(images/bg_court_DKorange.jpg);
	padding: 80px 20px;
}
.top-news-list ul {
	margin-bottom: 60px;
	padding: 0 10px;
}
.top-news-list li {
	position: relative;
	display: flex;
	align-items: center;
	background: #fff;
	border-radius: 100px;
	padding: 20px 20px;
	margin-bottom: 20px;
}
.top-news-date {
	color: #999;
	font-size: 90%;
}
.top-news-ttl {
	margin-left: 1em;
	line-height: 1.2em;
}
.top-news-list li a {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
	text-decoration: none;
}
@media screen and (max-width:500px) {
.kv-btn {
	bottom: 50px;
}
}

/* ==============================================================================
    	  ABOUT
============================================================================== */
.about-page-wrap {
	background-image: url(images/bg_court_blue.jpg);
	padding: 80px 20px;
}
.about-page-content p {
	color: #fff;
	margin-bottom: 2em;
	line-height: 1.5em;
	font-weight: bold;
}
.about-page-box2 {
	margin-top: 100px;
}

/* ==============================================================================
    	  HOW TO
============================================================================== */
.howto-page-wrap {
	background-image: url(images/bg_court_orange.jpg);
	padding: 80px 20px;
}
.howto-page-content p {
	color: #fff;
	margin-bottom: 2em;
	line-height: 1.5em;
	font-weight: bold;
}
.howto-img-box3 {
	text-align: center;
	margin: 40px 0 20px 0;
}
.howto-img-box3 img {
	width: 70%;
}
.howto-img-box4 {
	text-align: center;
	margin: 40px 0 20px 0;
}
.howto-img-box4 img {
	width: 50%;
}

/* ==============================================================================
    	  RULES
============================================================================== */
.rules-page-wrap {
	background-image: url(images/bg_court_ltblue.jpg);
	padding: 80px 20px;
}
.rules-page-content p {
	color: #fff;
	margin-bottom: 2em;
	line-height: 1.5em;
	font-weight: bold;
}
.rules-page-box2 {
	margin-top: 100px;
}
.rule-list2 li {
	background: #fff;
	border-radius: 8px;
	border: 2px solid #e97526;
	margin-bottom: 20px;
}
.rule-ttl2 {
	text-align: center;
	font-weight: bold;
	background: #e97526;
	color: #fff;
	padding: 10px 0;
}
.rule-text2 {
	text-align: left;
	padding: 10px 16px;
	line-height: 1.5em;
}
.rule-text2 p {
	color: #000;
}
/* ==============================================================================
    	  NEWS
============================================================================== */
.single-post-wrap {
	background: #fff;
	padding: 80px 20px;
}
.post-ttl {
	font-weight: bold;
	font-size: 22px;
	padding: 40px 0 10px 0;
}
.post-date {
	color: #999;
}
.post-content {
	margin: 40px 0;
}
.post-content p {
	line-height: 1.5em;
	margin-bottom: 2em;
}
.post-nav {
	display: flex;
	margin-top: 80px;
}
.post-nav li {
	width: 32%;
	background: var(--color_main);
	border: 1px solid #fff;
	text-align: center;
}
.post-nav .post-nav-center {
	width: 36%;
}
.post-nav li a {
	color: #fff;
	display: block;
	padding: 20px 0;
	text-decoration: none;
}
@media screen and (max-width:500px) {
.post-nav li a {
	font-size: 12px;
}
}
/* ==============================================================================
    	  NEWS アーカイブ
============================================================================== */
.archive-wrap {
	background-image: url(images/bg_court_DKorange.jpg);
	padding: 80px 20px;
}
.pagination {
	clear: both;
	padding: 20px 0;
	position: relative;
	font-size: 14px;
	line-height: 1em;
	text-align: center;
}
.pagination-box {
	display: inline-block;
}
.pagination span, .pagination a {
	display: block;
	float: left;
	margin: 2px 2px 2px 0;
	padding: 10px 14px 10px 14px;
	text-decoration: none;
	width: auto;
	color: #fff;	
	border: 2px solid #fff;
	border-radius: 50%;
}
.pagination span.page-of {
	border: none;
	color: #fff;
}
.pagination .current{
    padding: 10px 14px 10px 14px;
    color: #f15a24;
    background: #fff;
    font-weight: bold;
}
.archive-list ul {
	margin: 40px 0 80px 0;
	padding: 0 10px;
}
.archive-list li {
	position: relative;
	display: flex;
	align-items: center;
	background: #fff;
	border-radius: 100px;
	padding: 20px 20px;
	margin-bottom: 20px;
}
.archive-list-date {
	color: #999;
	font-size: 90%;
}
.archive-list-ttl {
	margin-left: 1em;
	line-height: 1.2em;
}
.archive-list li a {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
	text-decoration: none;
}