@charset "UTF-8";

/* 接頭 */
h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	padding: 0;
	font-family: inherit;
	font-weight: normal;
	line-height: 1.2;
	color: inherit;
}

/* 共通設定 */
/* common setting
-----------------------------------------------------*/
html {
	height: 100%;
	font-family: Helvetica, "游ゴシック", "Yu Gothic", sans-serif;
	font-size: 14px;
}

body {
	line-height: 1.8rem;
	color: #707070;
}

ul {
	padding-inline-start: 0px;
	margin-bottom: 0px;
}

li {
	list-style: none;
}

a {
	text-decoration: none;
	cursor: pointer;
	outline: none !important;
}

a:link {
	color: #87a503;
}

a:visited {
	color: #87a503;
}
.btn-secondary:visited {
	color: white;
}
a:hover {
	color: #87a503;
	opacity: 0.5;
}

a:active {
	color: #87a503;
}

/* colour styles
-----------------------------------------------------*/
.color-base {
	color: #A1C40D;
}

.color-bg {
	color: #FFFCF4;
}

/* margin & float
-----------------------------------------------------*/
/* margin */
.mt_100 {
	margin-top: 100px;
}

.mb_100 {
	margin-bottom: 100px;
}


.mt_60 {
	margin-top: 60px;
}

.mb_60 {
	margin-bottom: 60px;
}

.mt_40 {
	margin-top: 40px;
}

.mb_40 {
	margin-bottom: 40px;
}

.mt_20 {
	margin-top: 20px;
}

.mb_20 {
	margin-bottom: 20px;
}

/* bottun
-----------------------------------------------------*/
.btn {
	min-width: 100px;
	font-size: 1rem;
	border-radius: 3rem;
}

.btn-primary {
	background-color: #A1C40D;
	border-color: #A1C40D;
}

.btn-primary:hover{
	background-color: #A1C40D;
	border-color: #A1C40D;
	opacity: 0.7;
}

.btn-primary:first-child:active {
	background-color: #87a503;
	border-color: #87a503;
	color:#fff;
}

.btn-primary:visited,
.btn-primary:focus, 
.btn-primary:link {
	background-color: #A1C40D;
	border-color: #A1C40D;
	color:#fff;
}

.btn-info {
	background-color: #E6AA83;
	border-color: #E6AA83;
}

.btn-info:hover{
	background-color: #E6AA83;
	border-color: #E6AA83;
	opacity: 0.7;
}

.btn-info:first-child:active {
	background-color: #d57839;
	border-color: #d57839;
	color:#fff;
}

.btn-info:visited,
.btn-info:focus,
.btn-info:link {
	background-color: #E6AA83;
	border-color: #E6AA83;
	color:#fff;
}

.btn-outline-primary {
	line-height: 26px;
	background-color: #fff;
	border-color: #A1C40D;
	color:#707070;
	border-radius: 0.5rem;
}
.btn-outline-primary a {
  color: inherit;
}

.btn-check+.btn:hover {
	background-color: #fff;
	border-color: #A1C40D;
	color:#A1C40D;
}

.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
	background-color: #A1C40D;
	border-color: #A1C40D;
	color:#fff;
}

/* burger menu
-----------------------------------------------------*/
.navbar-toggler{
  border: none;
  padding: 5px;
}

.navbar-toggler:focus {
  box-shadow: inherit;
}

.navbar-light .navbar-toggler {
  border-color: rgba(0, 0, 0, 0);
  outline: none;
}

.navbar-light .navbar-toggler-icon {
  background-image: none;
}

.navbar-toggler-icon {
  position: relative;
  width: 32px;
  height: 32px;
  background: none;
  appearance: none;
  cursor: pointer;
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
}

.navbar-toggler-icon span {
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
}

.navbar-toggler-icon span {
  position: absolute;
  left: 5px;
  width: 80%;
  height: 1px;
  background-color: rgba(165, 165, 165, 1);
  border-radius: 1px;
}

.navbar-toggler-icon span:nth-of-type(1) {
  top: 8px;
}

.navbar-toggler-icon span:nth-of-type(2) {
  top: 16px;
}

.navbar-toggler-icon span:nth-of-type(3) {
  top: 24px;
}

.navbar-toggler[aria-expanded='true'] span.navbar-toggler-icon span:nth-of-type(1) {
  transform: translateY(8px) rotate(45deg);
}

.navbar-toggler[aria-expanded='true'] span.navbar-toggler-icon span:nth-of-type(2) {
  opacity: 0;
}

.navbar-toggler[aria-expanded='true'] span.navbar-toggler-icon span:nth-of-type(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width:994px) {
  .navbar-collapse {
    width: calc(100% + 30px);
    margin: 0 -15px;
    border-top: 1px solid #ccc;
  }
  
  .nav-item {
    text-align: center;
    padding: 10px 15px;
    background-color: #f3f3f3;
    border-bottom: 1px solid #ccc;
  }
  
  .nav-item:hover {
    background-color: #f3f9ff;
  }

  .nav-search {
    padding: 10px 15px;
  }
}

/* form custom
-----------------------------------------------------*/
label {
	order: 1;
	padding-right: 0.5em;
}

input,
textarea,
select {
	display: inline-block;
	//order: 2;
	flex: 1 1 auto;
	padding: 0 5px;
	vertical-align: middle;
	background-color: #FFF;
}

/* form element */
select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	position: relative;
	z-index: 2;
	width: 200%;
	/* fallback non calc support */
	width: -webkit-calc(100% + 5em);
	margin: 0;
	padding: 0 15px 0 5px;
	background: transparent;
	border: 0;
	outline: none;
}

.entypo-down-open-mini:before {
	content: '';
	position: absolute;
	z-index: 1;
	width: 0;
	height: 0;
	border: 5px solid transparent;
	border-top: 8px solid #C4D6E8;
	top: calc(50% - 5px);
	right: 10px;
}

option {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	padding: 10px;
	background-color: #ccc;
	color: #000;
	border-bottom: 1px solid #FFF;
}

option:last-child {
	border-bottom: none;
}

.checkbox-input {
	display: none;
}

.checkbox-parts {
	position: relative;
}

.checkbox-parts::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 15px;
	height: 15px;
	border: 1px solid #999;
}

.checkbox-input:checked+.checkbo-parts {
	color: #009a9a;
}

.checkbox-input:checked+.checkbox-parts::after {
	content: "";
	display: block;
	position: absolute;
	top: -2px;
	left: 5px;
	width: 6px;
	height: 14px;
	transform: rotate(40deg);
	border-bottom: 2px solid #009a9a;
	border-right: 2px solid #009a9a;
}

/* page navigation */
.page-item {
	margin: 0 5px;
}

.active>.page-link,
.page-link.active {
	background-color: #A1C40D;
	border-color: #A1C40D;
	color:#fff;
}

/* wrap */
.wrap_white {
	padding: 30px;
	box-shadow: 0px 0px 15px -5px #777777;
	border-radius: 10px;
	background-color: #fff;
}

/* hr */
.juncture_line {
	width: 100%;
	border: 1px solid #ccc;
	margin: 40px 0;
	clear: both;
}

/* logo */
.logo_icon {
	width: 80px;
	margin-bottom: 10px;
}

/* header */
.bg-white {
	overflow: hidden;
	background-color: #fff;
	padding: 0;
	box-shadow: 0px 0px 15px -5px #777777;
}

.page_header-logo {
	border-right: 1px solid #87a503;
	margin-left: -10px;
}

.page_header-logo img {
	width: 50px;
	margin: 0 10px;
}

.username {
	line-height: 36px;
	padding: 0 20px;
}

/* login page */
.wrap_login {
	min-height: 100vh;
	background-image: url("/site/images/login_bg.jpg");
	background-position: center;
	background-size: cover;
	background-attachment: fixed;
}

.login_sub {
	font-size: 1.4rem;
}

.wrap_photo_r {
	display: inline-block;
	width: 200px;
	height: 200px;
	border-radius: 100px;
	background-color: #999;
}

.photo_cap {
	font-size: 1.2rem;
}

/* rules page */
.wrap_rules .container {
	max-width: 960px;
}

/* list page */
.wrap_list {
	overflow: hidden;
	min-height: calc(100vh - 60px);
	padding-top: 20px;
	background-color: #FCF6E8;
}

.course_list {
	table-layout: fixed;
	border-collapse: separate;
	border-spacing: 3px;
	background-color: #fff;
	color: #707070;
}

.course_list-number {
	line-height: 36px;
}

.course_list th,
.course_list td {
	vertical-align: middle;
}

.course_list td {
	text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  max-width: 0;
}

.course_list tr th:first-child,
.course_list tr th:last-child {
	text-align: center;
	width: 120px;
}

.list_pagna {
	padding: 10px 0 40px;
}

/* list thumbnail */
.thumb_mov {
	background-color: #777777;
}

.thumb_footer {
	height: 130px;
	padding: 15px;
	background-color: #fff;
}

.thumb_cap {
	line-height: 1.2rem;
	word-wrap: break-word;
}

.thumb_btn {
	text-align: center;
}

/* info page */
.wrap_info {
	overflow: hidden;
	min-height: calc(100vh - 60px);
	padding-top: 80px;
	padding-bottom: 200px;
	background-color: #FCF6E8;
	background-image: url("/site/images/bg_foot.jpg");
	background-position: bottom center;
	background-repeat: no-repeat;
	background-size: 960px;
	background-attachment: fixed;
}

.wrap_info .container {
	max-width: 960px;
}

.info_icon {
	width: 50px;
}

/* viiewing page */
.wrap_view {
	overflow: hidden;
	min-height: calc(100vh - 60px);
	padding-top: 80px;
	padding-bottom: 80px;
	background-color: #FCF6E8;
}

.view_tit {
	line-height: 2rem;
	word-wrap: break-word;
}

.view_tit-number {
	display: inline-block;
	padding: 0 20px;
	border-right: 1px solid #87a503;
	margin-right: 20px;
}

.view_mov {
	background-color: #777777;
}


@media (max-width:994px) {
	.wrap_white {
		padding: 15px;
	}
	.view_tit {
		line-height: 1.5rem;
	}
	.view_tit-number {
		padding: 0;
		border: none;
		line-height: 1.2rem;
	}
}

/* 202305 add */

.wrap_white {
	padding: 30px 10px; /* 修正 */
	box-shadow: 0px 0px 15px -5px #777777;
	border-radius: 10px;
	background-color: #fff;
}

@media (max-width: 994px) {
	.navbar-collapse {
			width: calc(100% + 30px);
			margin: 0 -15px;
			padding: 0px 15px; /* 修正 */
			border-top: 1px solid #ccc;
	}
}

.wrap_list .wrap_white a h2 {
	font-size: 1.6rem;
	list-style: 3rem;
	color: #666;
}

.wrap_list .wrap_white a p {
	margin-top: 10px;
	margin-bottom: 0;
}

