@charset "utf-8";
/* CSS Document */
:root {
 font-size: 10px;
}
body {
 font-size: 20px; font-size: 2.0rem;
 line-height: 30px; line-height: 3.0rem;
 color: #000;
 word-break: break-all;
 background-color: #ffffff;
}
h1 {
 font-size: 32px; font-size: 3.2rem;
 line-height: 42px; line-height: 4.2rem;
 font-weight: bold;
}
h2 {
 font-size: 28px; font-size: 2.8rem;
 line-height: 38px; line-height: 3.8rem;
}
h3{
 font-size: 24px; font-size: 2.4rem;
 line-height: 34px; line-height: 3.4rem;
}
a {
 transition: all 0.1s;
 text-decoration-skip-ink: none;
}
a:hover {
 color: #a80000;
 transition: all 0.1s;
}

.wrapper {
 font-family: "ten-mincho-antique", sans-serif;
 font-weight: 400;
 font-style: normal;
 /*background-image: url("../img/bg_pattern/bg_pattern_6.png");*/
}

/*sectionの幅、間隔*/
section {
 margin: 0 auto;
}

/*TOPへ戻る*/
.backtotop {
 position: fixed;
 right: 20px;
 bottom: 20px;
 z-index: 9999;
 display: none;
}
.backtotop a {
 display: block;
 content: url("../img/back_top.png");
 padding: 10px; 
 margin: 0;
 background-color: #2aac48;
 border: 1px solid #ffffff;
 border-radius: 10px;
 text-decoration: none;
 font-weight: bold;
 transition: all 0.2s;
}
.backtotop a:hover {
 background-color: #007fb4;
 transition: all 0.2s;
}
/* デバイス幅が640px以下 */
@media only screen and (max-width: 600px) {
 .backtotop {
  bottom: 60px;
 }
 .backtotop a {
  background-color: rgba(42,172,72,0.70);
 }
}

/*ヘッダー*/
#header {
 width: 100%;
}
#header .title_area {
 display: flex;
 flex-direction: row;
 align-items: center;
 width: 100%;
 padding: 10px;
 padding-left: 30px;
 background: linear-gradient(to right, #005064 0%, #41bbc4 100%);
 box-sizing: border-box;
}
#header .title_area figure img {
 width: 100px;
 vertical-align: middle;
}
#header .title_area p {
 font-size: 30px;
 line-height: 40px;
 margin-left: 20px;
 color: #ffffff;
 font-weight: bold;
}
.nav_area {
 font-family: "ten-mincho-antique", sans-serif;
 font-weight: 400;
 font-style: normal;
 position: sticky;
 top: 0;
 z-index: 99;
 display: flex;
 flex-direction: row;
 justify-content: flex-end;
 align-items: center;
 width: 100%;
 background: linear-gradient(to right, #2aac48 0%, #007fb4 100%);
 box-shadow: 0px 2px 2px rgba(0,0,0,0.20);
 box-sizing: border-box;
}
.nav_area li {
 font-size: 18px;
 line-height: 22px;
 display: flex;
 justify-content: center;
 align-items: center;
 text-align: center;
 padding: 10px 0;
 box-sizing: border-box;
}
.nav_area li a {
 display: inline-block;
 padding: 0 10px;
 color: #ffffff;
 text-decoration: none;
 border-right: 1px solid #ffffff;
 box-sizing: border-box;
 transition: all 0.2s;
}
.nav_area li:last-child a {
 border: none;
}
.nav_area li a:hover {
 opacity: 0.7;
 transition: all 0.2s;
}
.nav_area .nav_null {
 color: #cccccc;
 box-sizing: border-box;
}
.nav_area .nav_null span {
 padding: 0 10px;
 border-right: 1px solid #ffffff;
 box-sizing: border-box;
}

.marathon_bread_crumb {
 display: none;
 margin: 1px auto 25px;
	max-width: 1130px;
	padding: 0 5px;
 line-height: 1.2;
}
.marathon_bread_crumb li {
 font-size: 1.0rem;
	color: #999;
	line-height: 2.1;
 margin-right: 14px;
}
.marathon_bread_crumb li a {
 color: #125687;
 text-decoration: none;
}
.marathon_bread_crumb li a:hover {
 color: #cc0000;
}

.marathon_nav_sp {
 font-family: "ten-mincho-antique", sans-serif;
 font-weight: 400;
 font-style: normal;
 width: 100%;
 display: none;
 flex-direction: row;
 flex-wrap: wrap;
 justify-content: center;
 padding: 10px;
 box-sizing: border-box;
}
.marathon_nav_sp li {
 width: 100%;
 display: flex;
 justify-content: center;
 align-items: center;
 font-size: 18px;
 line-height: 22px;
 font-weight: bold;
 text-align: center;
 margin: 10px;
}
.marathon_nav_sp li a {
 display: flex;
 justify-content: center;
 align-items: center;
 width: 100%;
 height: 35px;
 color: #ffffff;
 text-decoration: none;
 background-color: #007fb4;
 border-radius: 17.5px;
 box-shadow: 0 5px 0 #2aac48;
 box-sizing: border-box;
 transition: all 0.2s;
}
.marathon_nav_sp li a:hover {
 box-shadow: none;
 transform: translate3d(0,5px,0);
 transition: all 0.2s;
}
/* デバイス幅が600px以下 */
@media only screen and (max-width:600px) {
 #header,
 .nav_area,
 .breadcrumb {
  display: none;
 }
 .marathon_bread_crumb, 
 .marathon_nav_sp {
  display: flex;
 }
 /*.wrapper {
  padding-top: 50px;
 }*/
}

/*ハンバーガーメニュー*/
#menu-button {
 display: none;
 position: fixed;
 z-index: 9999999;
 top: 0;
 width: 100%;
 height: 50px;
 color: #ffffff;
 background-color: #007fb4;
 /*background-image: url("../img/logo_jtb.png");*/
 background-repeat: no-repeat;
 background-position: left center;
 background-size: 50px;
 box-sizing: border-box;
 box-shadow: 0px 2px 2px rgba(0,0,0,0.30);
}
.icon {
 cursor: pointer;
 position: relative;
}
.icon span {
  position: absolute;
  right: 15px;
  width: 30px; /* 線の幅 */
  height: 3px; /* 線の太さ */
  background-color: #ffffff; /* 線の色 */
  transition: ease 0.3s;
}
.icon span:nth-of-type(1) {
  top: 15px; /* 上の線の位置調整 */
}
.icon span:nth-of-type(2) {
  top: 25px; /* 真ん中の線の位置調整 */
}
.icon span:nth-of-type(3) {
  top: 35px; /* 下の線の位置調整 */
}
.open span:nth-of-type(1) {
  top: 25px;
  transform: rotate(-45deg); /* 線の角度調整 */
}
.open span:nth-of-type(2) {
  opacity: 0; /* 透明化 */
}
.open span:nth-of-type(3) {
  top: 25px;
  transform: rotate(45deg);  /* 線の角度調整 */
}
.hun_tit {
 padding: 10px;
 padding-left: 30px;
 font-size: 20px;
 line-height: 24px;
 font-weight: bold;
 box-sizing: border-box;
}
.s_sp {
 display: none;
}
.sample-menu {
 display: none;
 width: 100%;
 position: fixed;
 z-index: 9999999;
 top: 50px;
 left: 0;
 background-color: #007fb4;
}
.sample-menu li {
 border-top: 1px solid #ffffff;
 box-sizing: border-box;
}
.sample-menu li:last-child {
 border-bottom: 1px solid #ffffff;
}
.sample-menu li a {
 display: inline-block;
 width: 100%;
 padding: 10px;
 color: #ffffff;
 font-weight: bold;
 text-decoration: none;
 box-sizing: border-box;
}
/* デバイス幅が600px以下 */
@media only screen and (max-width: 600px) {
 #menu-button {
  display: block;
 }
 .top_hum {
  margin-top: 50px;
 }
}

/*トップ*/
.hm_top {
}
.top_tit {
 width: 100%;
}
.top_tit_sp {
 width: 100%;
 display: none;
}
.top_tit img ,
.top_tit_sp img {
 width: 100%;
}
/* デバイス幅が600px以下 */
@media only screen and (max-width:600px) {
 .top_tit {
  display: none;
 }
 .top_tit_sp {
  display: block;
 }
}
.top_vis {
 display: flex;
 justify-content: center;
 align-items: center;
 color: #ffffff;
 position: relative;
 height: 700px;
 background-image: url("../img/top_vis.jpg");
 background-size: cover;
 background-attachment: fixed;
 background-repeat: no-repeat;
 background-position: center center;
 box-sizing: border-box;
}
.top_vis .vis_tit {
 padding: 10px 20px;
 background: linear-gradient(to right, #007fb4 0%, #2aac48 100%);
 box-shadow: 5px 5px #999999;
 box-sizing: border-box;
}
.top_vis h1 {
 font-size: 50px;
 line-height: 60px;
}

/* デバイス幅が600px以下 */
@media only screen and (max-width:600px) {
 .top_vis {
  height: 500px;
  background-size: cover;
		background-attachment: scroll;
 }
 .top_vis h1 {
  font-size: 30px;
  line-height: 40px;
 }
}

/*各項目*/
.main {
 width: 100%;
 padding: 30px 10px;
 background-color: #ffffff;
 box-sizing: border-box;
}
.main:nth-child(3),
.main:nth-child(5) {
 background-color: rgba(0,127,180,0.20);
}
.main:nth-child(4) {
 background-color: rgba(42,172,72,0.20);
}
.txt_area {
 max-width: 1400px;
 margin: 0 auto;
 margin-top: 20px;
}
/* デバイス幅が600px以下 */
@media only screen and (max-width:600px) {
 .main {
  text-align: left;
 }
}

.main_tit {
 width: 100%;
 max-width: 1400px;
 text-align: center;
 font-weight: bold;
 margin: 0 auto;
}
/* デバイス幅が600px以下 */
@media only screen and (max-width:600px) {
 .main_tit {
  font-size: 22px;
  line-height: 32px;
 }
}

/*スライダー*/
.slide_img {
 max-width: 1400px;
 margin: 0 auto;
 margin-top: 20px;
}
.img_item {
 padding: 10px;
 box-sizing: border-box;
}
.img_item img {
 width: 100%;
 vertical-align: middle;
 box-shadow: 3px 3px 3px rgba(0,0,0,0.30);
}

/*競技種目*/
.t_area {
 position: relative;
 padding: 30px;
 padding-top: 10px;
 background-color: #ffffff;
 box-sizing: border-box;
}
.double {
 display: flex;
 flex-direction: row;
 flex-wrap: wrap;
}
.sub_tit {
 color: #007fb4;
 margin-right: 40px;
 margin-top: 20px;
}
.sub_tit span {
 color: #000000;
}
.kyoryo {
 position: absolute;
 top: 30px;
 right: 30px;
}
.kyoryo span {
 display: inline-block;
 padding: 10px;
 border: 1px solid #cccccc;
 box-sizing: border-box;
}
.kyoryo img {
 width: 200px;
 margin-left: 20px;
 vertical-align: top;
}
.gaiyo {
 width: 48%;
 margin-right: 2%;
}
.gaiyo:last-child {
 margin-right: 0;
}
.gaiyo p {
 padding-left: 1em;
}
.jo_kai_7 {
 text-indent: -7em;
 padding-left: 7em;
}
.jo_kai_8 {
 text-indent: -8em;
 padding-left: 8em;
}
/* デバイス幅が1200px以下 */
@media only screen and (max-width:1200px) {
 .jo_kai_8 {
  text-indent: 0;
  padding: 0;
 }
}
/* デバイス幅が1000px以下 */
@media only screen and (max-width:1000px) {
 .kyoryo {
  position: static;
  text-align: right;
 }
}
/* デバイス幅が600px以下 */
@media only screen and (max-width:600px) {
 .t_area {
  padding: 20px;
 }
 .double {
  flex-direction: column;
 }
 .kyoryo {
  top: 20px;
  right: 20px;
 }
 .gaiyo {
  width: 100%;
  margin-right: 0;
 }
 .jo_kai_7 {
  text-indent: 0;
  padding: 0;
 }
}

.shumoku {
 width: 100%;
 margin: 0 auto;
 font-size: 16px;
 line-height: 26px;
 border-collapse: collapse;
}
.shumoku tr th,
.shumoku tr td {
 text-align: center;
 padding: 2px;
 border: 2px solid #ffffff;
 box-sizing: border-box;
}
.shumoku tr th {
 color: #ffffff;
 background-color: #2aac48;
}
.shumoku tr {
 background-color: #b3d6f2;
}
.shumoku .half {
 background-color: #c7e2f5;
}
.shumoku .ten {
 background-color: #d8e9f9;
}

/*コースマップ*/
.course_map {
 width: 100%;
 max-width: 1000px;
 margin: 0 auto;
 margin-top: 30px;
}
.course_map:first-child {
 margin-top: 0;
}
.course_map figcaption {
 font-size: 22px;
 font-weight: bold;
 color: #007fb4;
 margin-bottom: 10px;
}
.course_map img {
 width: 100%;
}

/*日本語での大会エントリーはJTBへ*/
.merit {
 max-width: 1100px;
 margin: 0 auto;
 margin-top: 20px;
 font-weight: bold;
 list-style-type: disc;
 list-style-position: inside;
}
.button {
 margin-top: 20px;
 display: flex;
 justify-content: center;
 align-items: center;
 font-weight: bold;
}
.button a {
 display: flex;
 justify-content: center;
 align-items: center;
 width:100%;
 max-width: 600px;
 height: 60px;
 color: #ffffff;
 text-decoration: none;
 background-color: #ee1c25;
 border-radius: 30px;
 box-shadow: 0 5px 0 #a6141a;
 box-sizing: border-box;
 transition: all 0.2s;
}
.button a:hover {
 box-shadow: none;
 transform: translate3d(0,5px,0);
 transition: all 0.2s;
}

/*お問い合わせ*/
.con_area {
 width: 100%;
 max-width: 1400px;
 margin: 0 auto;
 margin-top: 20px;
 padding: 20px;
 border: 1px solid #007fb4;
 text-align: center;
 box-sizing: border-box;
}
.con_area h3 {
 margin-bottom: 20px;
}
.con_area p {
}
/* デバイス幅が600px以下 */
@media only screen and (max-width:600px) {
 .con_area {
  padding: 10px;
 }
}

/*フッター*/
#footer {
 width: 100%;
 padding: 20px 10px;
 background: linear-gradient(to right, #007fb4 0%, #2aac48 100%);
 box-sizing: border-box;
}
#footer p {
 text-align: center;
 color: #ffffff;
}

/*アコーディオン用*/
.submenu_title {
 cursor:pointer;
 color: #0000ff;
 /*color: #004986;*/
 text-decoration: underline;
 transition: all 0.2s;
}
.submenu_title:hover {
 opacity: 0.7;
 transition: all 0.2s;
}
.submenu {
 display: none;
}

/*文字装飾*/
.bold {
 font-weight: bold;
}
.nomal {
 font-weight: normal;
}
.red {
 color: #a80000;
}
.blue {
 color: #0000cc;
}
.yellow {
 color: #fcc601;
}
.black {
 color: #4d4d4d;
}
.mark {
 background-color: #ffff00;
}
.line {
 text-decoration: underline;
 text-decoration-skip-ink: none;
}
.small {
 font-size: 0.8em;
}
.large {
 font-size: 1.2em;
}
.large_2 {
 font-size: 1.5em;
}
.cen {
 text-align: center;
}

/*二行目以降字下げ*/
.kai {
 text-indent: -1em;
 padding-left: 1em;
}
.kai_1-3 {
 text-indent: -1.3em;
 padding-left: 1.3em;
}
.kai_2 {
 text-indent: -2em;
 padding-left: 2em;
}
.kai_2-5 {
 text-indent: -2.5em;
 padding-left: 2.5em;
}
.kai_3 {
 text-indent: -3em;
 padding-left: 3em;
}
.kai_4 {
 text-indent: -4em;
 padding-left: 4em;
}
.kai_5 {
 text-indent: -5em;
 padding-left: 5em;
}

/*サイズ毎の表示変更*/
.pc {
 display: block;
}
.tb {
 display: none;
}
.sp {
 display: none;
}
/* デバイス幅が1200px以下 */
@media only screen and (max-width:1200px) {
 .pc {
  display: none;
 }
 .tb {
  display: block;
 }
}
/* デバイス幅が600px以下 */
@media only screen and (max-width: 600px) {
 .tb {
  display: none;
 }
 .sp {
  display: block;
 }
}

/*フロート解除*/
.clear {
 clear: both;
}

.none {
 display: none;
}