body.top {
	background-color: #fff;
}
.mainContentsTitle {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	padding: 0;
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
}
.top_section,
.top_section * {
	box-sizing: border-box;
}
.top_section_title {
	margin: 0 auto;
  text-align: center;
  font-family: 'Ropa sans', sans-serif;
  font-size: 3.2rem;
  color: #917148;
}
.top_section_title .sub_title_text {
	display: inline-block;
	margin-top: 15px;
	font-size: 1.6rem;
	font-weight: normal;
	color: inherit;
}
.sp_break {
	display: none;
}
/* anchor arrow icon
---------------------------- */
.anchor_arrow {
	display: inline-block;
	position: relative;
	padding-right: 13px;
	text-decoration: none;
}
.anchor_arrow:hover {
	text-decoration: underline;
}
.anchor_arrow::after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	right: 2px;
	margin-top: -4px;
	width: 6px;
	height: 6px;
	border-top: 2px solid #94754d;
	border-right: 2px solid #94754d;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
/* option white color
---------------------------- */
.anchor_arrow.o-white {
	color: #fff;
}
.anchor_arrow.o-white::after {
	border-color: #fff;
}
/* option down
---------------------------- */
.anchor_arrow.o-down::after {
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
	margin-top: -6px;
}
/* option up
---------------------------- */
.anchor_arrow.o-up::after {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	margin-top: -2px;
}
/* -----------------------------------------------------
 * main visual slider
 * -------------------------------------------------- */
.wrap_slider {
	width: 100%;
	border-bottom: 1px solid #94754d;
	background-color: #fff;
	position: relative;
}
.wrap_slider:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 400px;
	background-color: #ededee;
}
/* スライダーコントローラー
------------------------- */
.wrap_control {
	width: 1100px;
	height: 400px;
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	margin: auto;
}
/* スライダーコントローラー ページャー */
.wrap_control .wrap_dots {
	width: 1100px;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 1;
}
.wrap_control .dots_pager {
	width: 100%;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}
.wrap_control .dots_pager .slide_page_dot {
	flex: 1 0 275px;
	width: 275px;
	height: 0;
	overflow: hidden;
	padding-top: 5px;
	background-color: #ededee;
	box-sizing: border-box;
}
.wrap_control .dots_pager .slide_page_dot_current {
	background-color: #c71528;
}
/* スライダーコントローラー 本体 */
.wrap_control .wrap_ui {
	width: 166px;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	position: absolute;
	right: 10px;
	bottom: 10px;
	z-index: 1;
}
.wrap_control .ui {
	cursor: pointer;
	display: block;
	background-color: rgba(35, 24, 21, 0.5);
	flex: none;
	height: 0;
	padding-top: 40px;
	overflow: hidden;
	position: relative;
}
.wrap_control .ui:hover {
	/* background-color: #c71528; */
}
.wrap_control .ui::after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
}
.wrap_control .ui.ui_next,
.wrap_control .ui.ui_prev {
	width: 40px;
	border-radius: 50%;
}
.wrap_control .ui.ui_next::after,
.wrap_control .ui.ui_prev::after {
	margin-top: -4px;
	width: 7px;
	height: 7px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
}
.wrap_control .ui.ui_next::after {
	margin-left: -5px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.wrap_control .ui.ui_prev::after {
	margin-left: -3px;
	-webkit-transform: rotate(-135deg);
	transform: rotate(-135deg);
}
.wrap_control .ui.ui_next:hover::after,
.wrap_control .ui.ui_prev:hover::after {
	border-top-color: #fff;
	border-right-color: #fff;
}
.wrap_control .ui.ui_pause,
.wrap_control .ui.ui_play {
	display: none;
	width: 68px;
	border-radius: 20px;
}
.wrap_control .ui.ui_pause::after {
	width: 7px;
	height: 12px;
	border-left: 2px solid #fff;
	border-right: 2px solid #fff;
	margin-top: -6px;
	margin-left: -4px;
}
.wrap_control .ui.ui_pause:hover::after {
	border-left-color: #fff;
	border-right-color: #fff;
}
.wrap_control .ui.ui_play::after {
	width: 0;
	height: 0;
	border-width: 8px;
	border-style: solid;
	border-color: transparent;
	border-left-color: #fff;
	margin-top: -8px;
	margin-left: -2px;
}
.wrap_control .ui.ui_play:hover::after {
	border-left-color: #fff;
}
.wrap_control .ui.ui_pause.is_active {
	display: block;
}
.wrap_control .ui.ui_play.is_active {
	display: block;
}
/* スライダー本体 */
.slider_main {
	width: 1100px;
	margin: 0 auto;
	overflow: hidden;
	position: relative;
}
.slider_main .slide {
	width: 100%;
	height: 100%;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column-reverse;
	flex-direction: column-reverse;
	justify-content: flex-end;
	text-decoration: none;
}
.slider_main .slide:hover {
	text-decoration: none;
}
.slider_main .heading_box {
	width: 1100px;
	padding-top: 20px;
}
.slider_main .heading {
	color: #676767;
	font-size: 1.4rem;
	line-height: 1.75;
	text-align: center;
}
.slider_main .slide:hover .heading {
	color: #c71528;
}
.slider_main .date {
	border-right: 1px solid #fff;
	-webkit-box-ordinal-group: 2;
	font-size: 1.7rem;
	width: 190px;
	-ms-flex-order: 1;
	-webkit-order: 1;
	order: 1;
	margin-right: 38px;
	text-align: center;
}
.slider_main .slide_image {
	width: 1100px;
	height: 395px;
}
.slider_main .slide_image img {
	width: 1100px;
	height: 395px;
	vertical-align: top;
}
/* -----------------------------------------------------
 * count down
 * -------------------------------------------------- */
#countdown_block {
	width: 1100px;
	margin: 30px auto;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
}
/* -----------------------------------------------------
 * top contents
 * -------------------------------------------------- */
#top_contents {
	padding: 44px 0 120px;
	background-color: #fff;
}
#top_contents .top_contents_tab {
	width: 1100px;
	margin: 44px auto 0;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}
#top_contents .top_contents_tab_item {
	-webkit-flex: 1 0 360px;
	flex: 1 0 360px;
	border-top: 1px solid #94754d;
	border-right: 1px solid #94754d;
}
#top_contents .top_contents_tab_item:first-child {
	border-left: 1px solid #94754d;
}
#top_contents .top_contents_tab_anchor {
	width: 100%;
	height: 54px;
	text-decoration: none;
	font-size: 1.8rem;
	color: #917148;
	background-color: #fff;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
}
#top_contents .top_contents_tab_anchor:hover,
#top_contents .top_contents_tab_anchor[aria-selected="true"] {
	background-color: #917148;
	color: #fff;
}
#top_contents .top_contents_tab_container {
	width: 1100px;
	margin: 0 auto;
}
#top_contents .top_contents_tab_block {
	width: 100%;
	padding: 40px 39px;
	border-width: 1px;
	border-style: solid;
}
#top_contents .top_contents_tab_block[aria-hidden="true"] {
	display: none;
}
#top_contents .top_contents_tab_block[aria-hidden="false"] {
	display: block;
	border-color: #917148;
}
#top_contents .top_contents_tab_block_main,
#top_contents .top_contents_tab_block_sub {
	width: 100%;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
#top_contents .top_contents_tab_block_main_item {
	width: 320px;
	margin-bottom: 20px;
}
#top_contents .top_contents_tab_block_main_item:not(:nth-child(3n + 1)) {
	margin-left: 30px;
}
#top_contents .top_contents_tab_block_main_anchor {
	display: block;
	width: 100%;
	text-decoration: none;
	color: #917148;
	font-size: 1.4rem;
}
#top_contents .top_contents_tab_block_main_anchor img {
	width: 100%;
	height: auto;
}
#top_contents .top_contents_tab_block_main_anchor:hover {
	color: #c71528;
}
#top_contents .top_contents_tab_block_main_anchor:hover .anchor_arrow::after {
	border-color: #c71528;
}
#top_contents .top_contents_tab_block_main_anchor .anchor_arrow:hover {
	text-decoration:none;
}
#top_contents .top_contents_tab_block_main_visual {
	width: 100%;
	height: 132px;
	line-height: 0;
}
#top_contents .top_contents_tab_block_main_anchor:hover .top_contents_tab_block_main_visual {
	position: relative;
}
#top_contents .top_contents_tab_block_main_anchor:hover .top_contents_tab_block_main_visual::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border: 2px solid #c71528;
	box-sizing: border-box;
}
#top_contents .top_contents_tab_block_main_text {
	width: 100%;
	padding: 0;
	height: 40px;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
}
#top_contents .top_contents_tab_block_main_text.o-no_gradient {
	background: none;
	color: #000;
}
#top_contents .top_contents_tab_block_sub_item {
	width: 320px;
	border-bottom: 1px solid #c8baa7;
}
#top_contents .top_contents_tab_block_sub_item:not(:nth-child(3n + 1)) {
	margin-left: 30px;
}
#top_contents .top_contents_tab_block_sub_item:nth-child(-n + 3) {
	border-top: 1px solid #c8baa7;
}
#top_contents .top_contents_tab_block_sub_anchor {
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	width: 100%;
	height: 100%;
	padding: 15px 10px;
	color: #676767;
}
#top_contents .top_contents_tab_block_sub_anchor::after {
	right: 12px;
}
#top_contents .anchor_arrow:hover {
	color: #c71528;
	text-decoration: underline;
}
#top_contents .anchor_arrow:hover::after {
	border-color: #c71528;
}
/* -----------------------------------------------------
 * what's up
 * -------------------------------------------------- */
#whats_up {
	background-color: #ededee;
	padding: 44px 0 64px;
}
#whats_up .top_section_title {
	color: #7c664a;
}
#whats_up .whats_up_list {
	padding-top: 44px;
	width: 1100px;
	margin: 0 auto -30px;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
#whats_up .whats_up_item {
	width: 240px;
	margin-left: 30px;
	margin-bottom: 30px;
}
#whats_up .whats_up_item:nth-child(1),
#whats_up .whats_up_item:nth-child(5) {
	margin-left: 0;
}
#whats_up .whats_up_item:nth-child(1) {
	order: 1;
}
#whats_up .whats_up_item:nth-child(2) {
	order: 2;
}
#whats_up .whats_up_item:nth-child(3) {
	order: 3;
}
#whats_up .whats_up_item:nth-child(4) {
	order: 5;
}
#whats_up .whats_up_item:nth-child(5) {
	order: 4;
}
#whats_up .whats_up_item:nth-child(6) {
	order: 6;
}
#whats_up .whats_up_anchor,
#whats_up .whats_up_block {
	position: relative;
	text-decoration: none;
  display: block;
	width: 100%;
	height: 100%;
	background-color: #fff;
	color: #676767;
}
#whats_up .whats_up_visual {
	width: 100%;
	overflow: hidden;
}
#whats_up .whats_up_entry {
	width: 100%;
	padding: 10px 10px 20px;
}
#whats_up .whats_up_entry_label {
	text-align: center;
	display: inline-block;
	padding: 4px 5px;
	background-color: #9f122c;
	font-size: 1rem;
	color: #fff;
	margin-bottom: 13px;
	min-width: 133px;
}
#whats_up .whats_up_entry_title {
	line-height: 1.428;
}
#whats_up .whats_up_item .whats_up_anchor:hover::after {
	border: 2px solid #c71528;
	box-sizing: border-box;
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
	left: 0;
}
/* メインカラム */
#whats_up .whats_up_item:nth-child(3n + 1) {
	width: 540px;
}
#whats_up .whats_up_item:nth-child(3n + 1) .whats_up_visual {
	height: 240px;
}
#whats_up .whats_up_item:nth-child(3n + 1) img {
	width: 100%;
	height: auto;
}
/* サブカラム */
#whats_up .whats_up_item:not(:nth-child(3n + 1)) .whats_up_visual {
	width: 240px;
	height: 240px;
	overflow: hidden;
	line-height: 1;
	position: relative;
}
#whats_up .whats_up_item:not(:nth-child(3n + 1)) .whats_up_visual img {
	height: 240px;
}
#whats_up .whats_up_item:not(:nth-child(3n + 1)) img {
	width: 100%;
	height: auto;
}
#whats_up .whats_up_new {
	width: 60px;
	height: 60px;
	position: absolute;
	top: 0;
	left: 0;
}
#whats_up .whats_up_item .whats_up_anchor:hover .whats_up_entry_title {
	color: #c71528;
}
/* -----------------------------------------------------
 * news
 * -------------------------------------------------- */
#news {
	background-color: #fff;
	padding-top: 44px;
	width: 100%;
	border-bottom: 1px solid #c8baa7;
}
#news .top_section_title {
	margin-bottom: 10px;
}
#news .news_rss_wrapper {
	width: 1100px;
	margin: 0 auto 20px;
}
#news .news_main_list {
	width: 1100px;
	margin: 0 auto 55px;
	display: -webkit-flex;
	display: flex;
}
#news .news_main_item {
	width: 264px;
}
#news .news_main_item:not(:first-child) {
	margin-left: 20px;
}
#news .news_main_anchor {
	display: block;
	width: 100%;
	text-decoration: none;
	color: #676767;
}
#news .news_main_visual {
	margin-bottom: 10px;
	width: 100%;
	height: 136px;
	position: relative;
}
#news .news_main_anchor:hover .news_main_visual::after {
	border: 2px solid #c71528;
	box-sizing: border-box;
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
#news .news_main_anchor:hover .news_main_entry_time,
#news .news_main_anchor:hover .news_main_entry_title {
	color: #c71528;
}
#news .news_main_visual img {
	width: 100%;
	height: 136px;
}
#news .news_main_label {
	display: inline-block;
	padding: 3px 0 2px;
	border: 1px solid #c71528;
	font-size: 1rem;
	color: #c71528;
	margin-bottom: 13px;
	width: 100px;
	text-align: center;
}
/*
#news .news_main_label.o-notice {
	border-color: #d90000;
}
#news .news_main_label.o-rio2016 {
	border-color: #39961b;
}
#news .news_main_label.o-sponsor {
	border-color: #ff9900;
}
#news .news_main_label.o-event {
	border-color: #0066cc;
}
#news .news_main_label.o-bid {
	border-color: #9900cc;
}
#news .news_main_label.o-release {
	border-color: #00ccff;
}
*/
#news .news_main_entry_time {
	display: block;
	font-size: 1.2rem;
	margin-bottom: 6px;
}
#news .news_main_tag:hover {
	text-decoration: underline;
}
#news .news_nav {
	width: 1100px;
	margin: 0 auto 60px;
}
#news .news_nav_button {
	margin-top: 15px;
}
#news .news_sub {
	width: 100%;
	border-top: 1px solid #c8baa7;
}
#news .news_nav_anchor {
	display: inline-block;
	padding-right: 1em;
	font-size: 1.5rem;
	color: #917148;
}
#news .news_nav_anchor:hover {
	color: #c71528;
}
#news .news_nav_anchor:hover::after {
	border-color: #c71528;
}
#news .news_sub_inner {
	width: 1100px;
	margin: 0 auto;
	padding: 40px 0;
	display: -webkit-flex;
	display: flex;
}
#news .news_sub_title {
	width: 220px;
	flex: 0 0 220px;
	font-size: 2rem;
	color: #917148;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
	border-right: 1px solid #c8baa7;
}
#news .news_sub_list {
	width: 100%;
	padding: 0 88px;
}
#news .news_sub_list li:not(:first-child) {
	margin-top: 1.6rem;
}
#news .news_sub_list a {
	display: inline-block;
	padding-left: 16px;
	position: relative;
	color: #676767;
}
#news .news_sub_list a::before {
	content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: -2px;
  margin-top: -4px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #676767;
  border-right: 2px solid #676767;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
#news .news_sub_list a:hover {
	color: #c71528;
}
#news .news_sub_list a:hover::before {
	border-color: #c71528;
}
/* -----------------------------------------------------
 * links
 * -------------------------------------------------- */
#links {
	background-color: #fff;
	padding: 55px 0 135px;
}
#links .links_title {
	width: 150px;
	margin: 0 auto;
}
#links .links_title_image {
	width: 100%;
	height: auto;
}
#links .links_list {
	width: 1100px;
	margin: 0 auto;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-top: 40px;
	margin-bottom: -61px;
}
#links .links_item {
	width: 330px;
	margin-bottom: 61px;
	margin-left: 55px;
}
#links .links_list .links_item:nth-child(n + 10) {
	display: none;
}
#links .links_list.o-list_open .links_item:nth-child(n + 10) {
	display: block;
}
#links .links_item:nth-child(3n + 1) {
	margin-left: 0;
}
#links .links_anchor {
	display: block;
	width: 100%;
	text-decoration: none;
}
#links .links_anchor:hover .links_image_container::after {
	border: 2px solid #c71528;
	box-sizing: border-box;
}
#links .links_anchor:hover .links_text {
	color: #c71528;
}
#links .links_anchor.o-no_hover .links_image_container::after {
	background-color: #917148;
	opacity: 0.5;
}
#links .links_image_container {
	width: 100%;
	height: 165px;
	overflow: hidden;
	line-height: 0;
	position: relative;
}
#links .links_image_container::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
#links .links_image {
	width: 100%;
	height: 100%;
}
#links .links_text {
	margin-top: 15px;
	color: #676767;
}
#links .links_more {
	width: 1100px;
	margin: 55px auto 0;
}
#links .links_more_anchor {
	color: #917148;
	font-size: 1.5rem;
}
#links .links_more_anchor:hover {
	color: #c71528;
}
/* -----------------------------------------------------
 * vision - overwrite
 * -------------------------------------------------- */
#vision {
	position: static;
}
#vision .vision_main_link {
	width: 100%;
	height: auto;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
	position: relative;
	text-decoration: none;
}
#vision .vision_main_link::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 54.87%;
	min-width: 604px;
	height: 100%;
	background: url(/assets/img/pages/top/m/photo_vistion_01.jpg) no-repeat center right;
	background-size: cover;
}
#vision .vision_main_link:hover {
}
#vision .vision_main_link:hover:after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	width: 100%;
	height: 100%;
	background-color: #000;
	opacity: 0.3;
}
#vision .vision_main_link:hover .anchor_arrow {
	text-decoration: none;
}
#vision .vision_main_inner {
	width: 45.13%;
	height: auto;
	min-width: 496px;
	min-height: 424px;
	background-color: #9f122c;
	padding: 44px;
}
#vision .top_section_title {
	font-weight: 400;
	color: #fff;
	font-size: 3.8rem;
	line-height: 1;
	margin-bottom: 30px;
	text-align: left;
}
#vision .top_section_title .sub_title_text {
	display: block;
	font-size: 1.6rem;
}
#vision .vision_main_content dt {
	font-size: 2.2rem;
	margin-bottom: 15px;
	color: #fff;
}
#vision .vision_main_content dd {
	font-size: 1.4rem;
	font-weight: normal;
	line-height: 1.7;
	margin-bottom: 30px;
	color: #fff;
}
#vision .vision_main_menu {
	font-size: 1.4rem;
}
#vision .vision_main_menu .anchor_arrow {
	text-decoration: underline;
}
/* -----------------------------------------------------
 * about - overwrite
 * -------------------------------------------------- */
#about {
	padding: 0;
	width: 100%;
	border-bottom: none;
}
#about .about_wrapper {
	width: 100%;
	display: -webkit-flex;
	display: flex;
}
#about .about_column {
	width: 50%;
	height: 423px;
	min-width: 550px;
}
#about .about_anchor {
	display: block;
	width: 100%;
	height: 100%;
	padding-top: 320px;
	position: relative;
	text-decoration: none;
}
#about .about_anchor:hover::after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	width: 100%;
	height: 100%;
	background-color: #000;
	opacity: 0.3;
}
#about .about_anchor:hover .about_title_text {
	text-decoration: none;
}
#about .about_anchor::before {
	content: "";
	display: block;
	width: 100%;
	height: 320px;
	position: absolute;
	top: 0;
	left: 0;
}
#about .about_anchor.o-olympic::before {
	background: url(/assets/img/pages/top/photo_olympic.jpg) no-repeat center center;
	background-size: cover;
}
#about .about_anchor.o-paralympic::before {
	background: url(/assets/img/pages/top/photo_about_02.jpg) no-repeat center center;
	background-size: cover;
}
#about .about_anchor .about_title_wrapper {
	width: 100%;
	height: 103px;
	display: flex;
	align-items: center;
	justify-content: center;
}
#about .about_anchor.o-olympic .about_title_wrapper {
	background-color: #c71528;
}
#about .about_anchor.o-paralympic .about_title_wrapper {
	background-color: #912746;
}
#about .about_title {
	color: #fff;
	font-size: 3.8rem;
	font-weight: 400;
	font-family: 'Ropa sans', sans-serif;
}
#about .about_title_text {
	margin-top: 1em;
	margin-left: 55px;
	text-decoration: underline;
}
/* -----------------------------------------------------
 * sns - overwrite
 * -------------------------------------------------- */
#sns * {
	box-sizing: border-box;
}
#sns {
	box-sizing: border-box;
	border: none;
	border-top: 2px solid #fff;
	border-bottom: 1px solid #c7baa6;
	width: auto;
	height: 210px;
	padding: 30px 0 0;
	margin-bottom: 110px;
}
#sns .top_section_title {
	font-size: 3.2rem;
	font-weight: 400;
	color: #917148;
	line-height: 1;
	margin-bottom: 30px;
}
#sns .sns_title {
	width: 302px;
	margin: 0 auto 75px;
	color: #fff;
}
#sns .sns_title_image {
	width: 100%;
	height: auto;
}
#sns .sns_title_text {
	margin-top: 15px;
	display: inline-block;
	font-size: 2rem;
}
#sns .sns_list {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	width: 880px;
	margin: 0 auto;
}
#sns .sns_list li {
	display: block;
	width: 80px;
	margin: 0 15px;
}
#sns .sns_list li:after {
	display: none;
}
#sns .sns_list li a {
	width: 80px;
	height: auto;
	font-size: 1.4rem;
	font-weight: normal;
	color: #917148;
	text-decoration: none;
}
#sns .sns_list li a img {
	vertical-align: top;
	width: 46px;
}
#sns .sns_text {
	display: inline-block;
	margin-top: 14px;
	text-align: center;
}
@media only screen and (max-width: 767px) {
	.top_section_title {
	  font-size: 2rem;
	}
	.top_section_title .sub_title_text {
		display: inline-block;
		margin-top: 15px;
		font-size: 1.6rem;
		font-weight: normal;
		color: inherit;
	}
	.sp_break {
		display: inline;
	}
	/* -----------------------------------------------------
	 * main visual slider
	 * -------------------------------------------------- */
	.wrap_slider {
		width: 100%;
		position: relative;
		border-top: none;
	}
	.wrap_slider:before {
		display: none;
	}
	.wrap_control {
		width: 100%;
		height: 0;
		padding-top: 67.6%; /* 750px × 500px */
		/* padding-top: 66.66%; 750px × 500px */
		overflow: hidden;
	}
	.wrap_control .wrap_dots {
		width: 100%;
	}
	.wrap_control .dots_pager .slide_page_dot {
		flex: 1 1 1px;
		width: 1px;
	}
	.wrap_control .wrap_ui {
		bottom: 15px;
	}
	.slider_main {
		width: 100%;
		height: auto;
		overflow: hidden;
		border-bottom: 1px solid #94754d;
	}
	.slider_main .slick-list {
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
	}
	.slider_main .heading_box {
		width: 100%;
		box-sizing: border-box;
		padding: 10px 15px;
	}
	.slider_main .heading_box_inner {
		-ms-flex-direction: column;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		flex-direction: column;
		width: auto;
		-webkit-align-items: flex-start;
		align-items: flex-start;
		-webkit-box-align: start;
		-ms-flex-align: start;
	}
	.slider_main .heading {
		font-size: 1.4rem;
		text-align: left;
	}
	.slider_main .date {
		border: none;
		font-size: 1.2rem;
		width: auto;
		margin-right: 0;
		margin-bottom: 6px;
	}
	.slider_main .slide_image {
		width: 100%;
		height: auto;
	}
	.slider_main .slide_image img {
		width: 100%;
		height: auto;
	}
	.slide_main_control .control_inner {
		width: 100%;
		height: auto;
		position: static;
		-webkit-flex-direction: column;
		flex-direction: column;
	}
	/* -----------------------------------------------------
	 * count down
	 * -------------------------------------------------- */
	 #countdown_block {
		 width: 100%;
		 -webkit-flex-direction: column;
		 flex-direction: column;
		 margin: 5px 0;
	 }
	/* -----------------------------------------------------
	 * top contents
	 * -------------------------------------------------- */
	#top_contents {
		padding: 40px 0 70px;
	}
	#top_contents .top_contents_tab {
		width: 100%;
		margin: 40px auto 0;
		padding: 0;
		display: -webkit-flex;
		display: flex;
	}
	#top_contents .top_contents_tab_item {
		width: 33.33%;
		margin: 0;
		flex: 1 0 33.33%;
	}
	#top_contents .top_contents_tab_block_main_item:not(:nth-child(3n + 1)) {
		margin-left: 0;
	}
	#top_contents .top_contents_tab_item:not(:first-child) {
		margin-left: 0;
	}
	#top_contents .top_contents_tab_anchor {
		width: auto;
		font-size: 1.1rem;
		flex: 1 0 105px;
		min-width: 105px;
	}
	#top_contents .top_contents_tab_container {
		width: 100%;
	}
	#top_contents .top_contents_tab_block {
		padding: 15px 10px 0;
		border-right: none;
		border-left: none;
		border-bottom: none;
	}
	#top_contents .top_contents_tab_block_main {
		width: auto;
		margin-right: -5px;
		margin-left: -5px;
	}
	#top_contents .top_contents_tab_block_main_item {
		width: 50%;
		height: auto;
		padding-left: 5px;
		padding-right: 5px;
		margin-bottom: 14px;
	}
	#top_contents .top_contents_tab_block_main_visual {
		width: 100%;
		height: auto;
	}
	#top_contents .top_contents_tab_block_main_visual::after {
		display: none;
	}
	#top_contents .top_contents_tab_block_main_visual.o-no_gradient::after {
		background: none;
	}
	#top_contents .top_contents_tab_block_main_text {
		position: static;
		background: none;
		font-size: 1.3rem;
		height: auto;
		padding: 10px 0;
	}
	#top_contents .top_contents_tab_block_main_text .anchor_arrow.o-white {
		color: #000;
		font-weight: bold;
	}
	#top_contents .top_contents_tab_block_main_text.o-no_gradient {
		font-weight: bold;
	}
	#top_contents .top_contents_tab_block_main_text	.anchor_arrow.o-white::after {
		border-color: #001F63;
	}
	#top_contents .top_contents_tab_block_sub_item {
		width: 100%;
	}
	#top_contents .top_contents_tab_block_sub_item:not(:nth-child(3n + 1)) {
		margin-left: 0;
	}
	#top_contents .top_contents_tab_block_sub_item:nth-child(-n + 3) {
		border-top: none;
	}
	#top_contents .top_contents_tab_block_sub_item:first-child {
		border-top: 1px solid #c8baa7;
	}
	#top_contents .top_contents_tab_block_sub_anchor {
		font-size: 1.4rem;
		padding-left: 10px;
		padding-right: 25px;
	}
	#top_contents .top_contents_tab_block_sub_anchor:hover {
		color: #cc0000;
	}
	#top_contents .top_contents_tab_block_sub_anchor::after {
		right: 15px;
	}
	/* -----------------------------------------------------
	 * what's up
	 * -------------------------------------------------- */
	#whats_up {
		padding: 41px 0;
	}
	#whats_up .top_section_title {
		color: #7c664a;
	}
	#whats_up .whats_up_list {
		padding: 41px 20px 0;
		width: auto;
		margin-right: -10px;
		margin-left: -10px;
		margin-bottom: -20px;
	}
	#whats_up .whats_up_item {
		width: 50%;
		padding-left: 10px;
		padding-right: 10px;
		margin-left: 0;
		margin-bottom: 20px;
		display: flex;
		align-items: stretch;
	}
	#whats_up .whats_up_anchor {
		height: auto;
	}
	#whats_up .whats_up_item:nth-child(4) {
		order: 4;
	}
	#whats_up .whats_up_item:nth-child(5) {
		order: 5;
	}
	#whats_up .whats_up_entry {
		padding: 10px;
	}
	#whats_up .whats_up_entry_label {
		min-width: 88px;
		margin-bottom: 10px;
	}
	#whats_up .whats_up_entry_title {
		font-size: 1.4rem;
	}
	/* メインカラム */
	#whats_up .whats_up_item:nth-child(3n + 1) {
		width: 100%;
	}
	#whats_up .whats_up_item:nth-child(3n + 1) .whats_up_anchor,
	#whats_up .whats_up_item:nth-child(3n + 1) .whats_up_block {
		display: block;
		width: 100%;
	}
	#whats_up .whats_up_item:nth-child(3n + 1) .whats_up_visual {
		position: relative;
		height: 0;
		overflow: hidden;
		padding-top: 47.76%;
	}
	#whats_up .whats_up_item:nth-child(3n + 1) .whats_up_visual img {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
	}
	/* サブカラム */
	#whats_up .whats_up_item:not(:nth-child(3n + 1)) .whats_up_visual,
	#whats_up .whats_up_item:not(:nth-child(3n + 1)) .whats_up_visual img {
		width: 100%;
		height: auto;
	}
	/* -----------------------------------------------------
	 * news
	 * -------------------------------------------------- */
	#news {
		padding-top: 42px;
	}
	#news .news_main_list {
		width: auto;
		padding: 0 20px;
		margin-top: 37px;
		margin-right: -5px;
		margin-left: -5px;
		margin-bottom: -20px;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	#news .news_main_item {
		width: 50%;
		padding: 0 5px;
		margin-bottom: 20px;
	}
	#news .news_main_item:not(:first-child) {
		margin-left: 0;
	}
	#news .news_main_visual,
	#news .news_main_visual img {
		height: auto;
	}
	#news .news_main_entry_title {
		font-size: 1.4rem;
	}
	#news .news_nav {
		width: 100%;
		padding: 35px 20px 0;
		margin-bottom: 30px;
		font-size: 1.6rem;
		display: block;
	}
	#news .news_sub_inner {
		width: 100%;
		margin: 0 auto;
		padding: 35px 0;
		display: block;
	}
	#news .news_sub_title {
		width: 100%;
		border-right: none;
		display: block;
		text-align: center;
		margin-bottom: 35px;
	}
	#news .news_sub_list {
		width: 100%;
		padding: 0 20px;
	}
	#news li {
		font-size: 1.2rem;
	}
	#news .news_sub_list a::before {
		top: 0.75em;
	}
	/* -----------------------------------------------------
	 * links
	 * -------------------------------------------------- */
	#links {
		background-color: #fff;
		padding: 41px 0 70px;
	}
	#links .links_list {
		width: 100%;
		padding: 0 23px;
		display: block;
		margin-top: 41px;
		margin-bottom: 0;
	}
	#links .links_item {
		width: 100%;
		margin: 0;
	}
	#links .links_item:not(:first-child) {
		margin-top: 30px;
	}
	#links .links_image_container {
		height: auto;
	}
	#links .links_image {
		height: auto;
	}
	#links .links_text {
		font-size: 1.4rem;
		margin-top: 10px;
	}
	#links .links_more {
		width: 100%;
		margin: 42px auto 0;
		padding: 0 20px;
	}
	#links .links_more_button {
		width: 100%;
		font-size: 1.6rem;
		height: 40px;
		border-radius: 20px;
	}
	#links .links_list .links_item:nth-child(n + 4) {
		display: none;
	}
	/* -----------------------------------------------------
	 * vision - overwrite
	 * -------------------------------------------------- */
	#vision .vision_main_link {
		width: 100%;
		display: block;
	}
	#vision .vision_main_link::before {
		position: static;
		width: 100%;
		min-width: initial;
		height: 0;
		overflow: hidden;
		padding-top: 74.66%;
		background: url(/assets/img/pages/top/m/photo_vistion_01_sp.jpg) no-repeat 0 0;
		background-size: 100%;
	}
	#vision .vision_main_inner {
		width: 100%;
		min-width: initial;
		min-height: initial;
		padding: 40px 20px;
	}
	#vision .top_section_title {
		font-size: 3rem;
		margin-bottom: 25px;
	}
	#vision .vision_main_content dt {
		font-size: 2.1rem;
	}
	/* -----------------------------------------------------
	 * about - overwrite
	 * -------------------------------------------------- */
	#about {
		width: 100%;
		border-top: none;
	}
	#about .about_wrapper {
		display: block;
	}
	#about .about_column {
		width: 100%;
		height: auto;
		min-width: initial;
	}
	#about .about_anchor {
		height: auto;
		padding-top: 0;
	}
	#about .about_anchor::before {
		position: static;
		height: 0;
		overflow: hidden;
		padding-top: 61.33%;
	}
	#about .about_anchor .about_title_wrapper {
		display: block;
		height: auto;
		padding: 25px 20px;
	}
	#about .about_title {
		font-size: 3rem;
		line-height: 1;
	}
	#about .about_title_text {
		font-size: 1.5rem;
		margin: 20px 0 0 0;
	}
	/* -----------------------------------------------------
	 * sns - overwrite
	 * -------------------------------------------------- */
	#sns {
		padding: 25px 0;
		height: auto;
		margin: 0;
	}
	#sns .top_section_title {
		font-size: 2rem;
		margin-bottom: 25px;
	}
	#sns .sns_list {
		width: 100%;
		padding: 0 10px;
		flex-wrap: wrap;
		justify-content: flex-start;
	}
	#sns .sns_list li {
		width: 20%;
		margin: 0;
		display: flex;
		flex-direction: column;
		padding: 0 3%;
	}
	#sns .sns_list li a {
		display: block;
		width: 100%;
		font-size: 1em;
		line-height: 1.25;
	}
	#sns .sns_list li a img {
		padding: 0 10px;
		width: 100%;
	}
	#sns .sns_text {
		width: 100%;
	}
	#sns .sns_list li:nth-of-type(n+6){
		margin-top:6%;
	}
}
/* -----------------------------------------------------
 * supporters - overwrite
 * -------------------------------------------------- */
@media only screen and (max-width: 767px) {
	.supporters {
		border-top: none;
		margin-top: 0;
		padding-top: 52px;
	}
	.supporters .olympic_list_view ul.olympic_list {
		display: -webkit-flex;
		display: flex;
		padding: 0 10px;
	}
	.supporters .olympic_list_view ul.olympic_list li,
	.supporters .olympic_list_view ul.olympic_list li.logo.ioc {
		margin: 0;
		padding: 10px;
		float: none;
		width: 25%;
	}
	.supporters .olympic_list_view ul.olympic_list li.pyeongChang {
		border-left: 2px solid #ededee;
	}
	.supporters .olympic_list_view ul.olympic_list li.logo.ipc {
		margin-right: 12.5%;
		margin-left: 12.5%;
	}
	.supporters .olympic_list_view ul.olympic_list li a {
		display: inline-block;
		width: 42.5%;
	}
	.supporters_anchor_wrapper {
		width: 100%;
		margin-bottom: 40px;
		padding: 0 20px;
	}
	.supporters_anchor_wrapper .supporters_anchor {
		font-size: 1.5rem;
		color: #917148;
	}
}
.logoListMainTitle {
	width: 50%;
}
