/*
Theme Name: swim_run
*/
@charset "utf-8";

@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700);

/*===== CSS RESET =====*/

html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,cite,code,del,dfn,img,ins,kbd,q,s,samp,strike,tt,var,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,input,textarea,select{outline:none;border:0;font-size:100%;font:inherit;vertical-align:baseline;margin:0;padding:0}table{border-collapse:collapse;border-spacing:0}.clear{clear:both}.clearfix{display:inline-block}.clearfix:after{content:".";display:block;height:0;clear:both;visibility:hidden;line-height:0;font-size:0}* html .clearfix{height:1%}.clearfix{display:block}p,li,td{background:url('')}
ul, ol {list-style: none;}

/*===== COMMON =====*/

*,
*:before,
*:after{
	margin: 0;
	padding: 0
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

html, body {
	width: 100%;
	min-height: 100%;
}

body {
	font-size: 16px;
	font-family: 'Noto Sans JP', "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", Osaka, sans-serif;
	color: #333;
	-webkit-text-size-adjust: none;
	line-height: 1.7;
	letter-spacing: 0.05em;
}

.ft-os {
	font-family: 'Open Sans', sans-serif;
	font-weight: 700;
}
.red{
	color:#f00;
}
a {
	color: #333;
	text-decoration: none;
}
a:hover {
	color: #f90;
}

img {
	vertical-align: bottom;
}
.responsive {
    width: 100%;
}

.trans {
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	opacity: 1;
}
.trans:hover {
	-webkit-transition: all .3s ease-out;
	transition: all .3s ease-out;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
	filter: alpha(opacity=80);
	-moz-opacity: 0.8;
	-khtml-opacity: 0.8;
	opacity: .8;
}


.trans .fa {
	-webkit-transition:all 0.3s ease-out;
	transition:all 0.3s ease-out;
}
.trans:hover .fa {
    color: #023F7B;
	-webkit-transition:all 0.3s ease-out;
	transition:all 0.3s ease-out;
}
.readmore {
    opacity: 0;
    color: #f90;
	-webkit-transition:all 0.3s ease-out;
	transition:all 0.3s ease-out;
}
.trans:hover .readmore {
    opacity: 1;
	margin-left:15px;
	-webkit-transition:all 0.3s ease-out;
	transition:all 0.3s ease-out;
}

.container{
	max-width: 1080px;
	margin: 0 auto;
}

#gototop {
    position: fixed;
    right: 35px;
    bottom: 0;
    width: 35px;
    height: 35px;
    background: #404248;
    -moz-border-radius: 3px 3px 0px 0px;
    -webkit-border-radius: 3px 3px 0px 0px;
    border-radius: 3px 3px 0px 0px;
    cursor: pointer;
    text-align: center;
    line-height: 35px;
    color: #fff;
    font-size: 18px;
}

.anchor {
    display: block;
    position: relative;
    top: -80px;
    visibility: hidden;
}

/*===== HEADER =====*/
header {
	position: fixed;
	width: 100%;
	background-color: rgba(255,255,255,0.80);
	z-index: 9999;
	-webkit-box-shadow: 0px 1px 4px 0px rgba(0,0,0,0.5);
	-moz-box-shadow: 0px 1px 4px 0px rgba(0,0,0,0.5);
	box-shadow: 0px 1px 4px 0px rgba(0,0,0,0.5);
}
header .logo {
    font-size: 24px;
    display: table-cell;
    letter-spacing: normal;
    vertical-align: middle;
    color: #333;
}
header .logo img {
    width: 100px;
}
header .logo span {
	color: #f90;
}
header .menu {
    display: table-cell;
    vertical-align: middle;
    border-spacing: 40px 0;
    font-size: 13px;
    line-height: 1.4;
    text-align: center;
}
header .menu .main {
    display: table-cell;
    vertical-align: middle;
    font-weight: 700;
    padding: 22px 0;
}
header .menu .main a {
	color: #023F7B;
	display: block;
}
header .menu .main a:hover {
	color: #f90;
}
header .menu .main .sub {
    display: none;
    position: absolute;
    width: 240px;
    top: 80px;
    background-color: rgba(0,0,0,0.8);
    padding: 20px 30px;
    text-align: left;
    line-height: 2;
    border-top: 2px solid #f90;
}
header .menu .main .sub a {
	color: #BFBFBF;
}
header .menu .main .sub a:hover {
    text-indent: 5px;
    opacity: 0.6;
}

/*===== FOOTER =====*/
footer{
	background: #d3eaff;
	padding: 30px 0 40px;
}
footer a {
	color: #023F7B;
}
footer a:hover,
footer a:hover .fa {
    color: #023F7B !important;
    opacity: 0.6;
}

footer .top {
    display: table;
    width: 100%;
}
footer .logo {
    font-size: 24px;
    display: table-cell;
    letter-spacing: normal;
    color: #FFF;
    vertical-align: middle;
}
footer .logo img {
	width: 100px;
}
footer .contact {
    display: table-cell;
    text-align: right;
    vertical-align: middle;
}
footer .contact span,
footer .contact .fa {
    display: inline-block;
	vertical-align: middle;
}
footer .contact .fa {
	margin-right: 5px;
}

footer .menu {
	margin: 30px 0 40px;
}
footer .menu .main {
    display: inline-block;
    vertical-align: top;
	font-size: 13px;
	margin-right: 15px;
}
footer .menu .main:last-child {
	margin-right: 0;
}
footer .menu .main a {
    display: block;
}
footer .menu .sub {
	margin-top: 5px;
	padding-top: 5px;
	border-top: 2px solid #f90;
}

footer .copy {
	text-align: right;
	color: #023F7B;
	font-size: 12px;
	font-weight: 300;
}

/*===== SECTION =====*/
/* top */
.sec_kv .ttl.top span {
    font-size: 48px;
    line-height: 1.1;
}
.sec_kv .ttl.top {
    top: 35%;
}
.sec_kv .ttl.top p {
    font-size: 18px;
    margin-top: 1.5em;
}
.sec_kv .ttl.top span:after {
    display: none;
}

.top_news {
    padding: 10px 0 !important;
}
.top_news dl {
    display: table;
    width: 100%;
    border-spacing: 25px 0;
}
.top_news dt,
.top_news dd {
    display: table-cell;
}
.top_news dt {
	width: 9%
}
.top_news dd span {
    margin-right: 1em;
	font-weight: 500;
}
.top_news .container {
    position: relative;
}
.top_news .more {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 12px;
}
.top_news .more i,
.top_news .more span {
    display: inline-block;
    vertical-align: middle;
}
.top_news .more .fa {
    margin-right: 5px;
    color: #f90;
    font-size: 14px;
}

.top_business {
    padding: 0px 0 80px;
}
.top_business a {
	display: block;
}
.top_business .fa {
    font-size: 80px;
    color: #999;
    margin-bottom: 20px;
}
.top_business .ttl {
    color: #023F7B;
    font-size: 18px;
    line-height: 1.3;
    position: relative;
    height: 3em;
	display: inline-block;
}
.top_business .ttl:after {
    content: "";
    position: absolute;
    display: block;
    width: 40px;
    height: 2px;
    background: #f90;
    margin: 10px 0 0;
    left: 50%;
    bottom: 0;
    margin-left: -20px;
}
.top_business .ttl.top_h2:after{
	bottom:-100%;
	background:none;
}
.top_business .txt {
    text-align: left;
    margin: 2em 0;
	color: #333;
}

.top_company .box {
    background: #d3eaff;
    padding: 40px;
}
.top_company .box .ttl {
    font-size: 24px;
    position: relative;
    margin-bottom: 30px;
}
.top_company .box .ttl:after {
    content: "";
    position: absolute;
    display: block;
    width: 40px;
    height: 2px;
    background: #f90;
    margin: 15px 0 0;
}
.top_company .box a {
    color: #023F7B;
}
.top_company .link {
    width: 80%;
    display: table;
    text-align: center;
    margin: 35px auto 0;
}
.top_company .link li {
    width: 50%;
}
.top_company .link a {
    color: #023F7B;
}
.top_company .link a:hover {
    opacity: 0.6;
}
.top_company .link a .fa {
    color: #f90;
    margin-right: 8px;
}

.top_recruit {
    padding: 50px 0 100px;
}
.top_recruit .img {
    position: relative;
    overflow: hidden;
}
.top_recruit .ttl {
    position: absolute;
    top: 45%;
    color: #FFF;
    font-size: 20px;
    width: 100%;
}
.top_recruit .txt {
    text-align: left;
    margin: 15px 0;
}
.top_recruit a .txt {
    color: #333;
}
.top_recruit a:hover .img img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
.top_recruit .img img {
    -moz-transition: -moz-transform 0.2s linear;
    -webkit-transition: -webkit-transform 0.2s linear;
    -o-transition: -o-transform 0.2s linear;
    -ms-transition: -ms-transform 0.2s linear;
    transition: transform 0.2s linear;
}

/* sec_kv */
.sec_kv {
    height: 640px;
    position: relative;
}
.sec_kv.bg01 {
	background: url(img/top_bg.jpg) no-repeat center;
	background-size: cover;
}
.sec_kv.bg01.association_bg{
	background: url(img/association_bg.jpg) no-repeat center;
	background-size: cover;
}
.sec_kv.bg01.contact_bg {
	background: url(img/contact_bg.jpg) no-repeat center;
	background-size: cover;
}
.sec_kv.bg01.news_bg {
	background: url(img/news_bg.jpg) no-repeat center;
	background-size: cover;
}
.sec_kv.bg01.faq_bg {
	background: url(img/faq_bg.jpg) no-repeat center;
	background-size: cover;
}
.sec_kv.bg01.swimrun_bg {
	background: url(img/swimrun_bg.jpg) no-repeat center;
	background-size: cover;
}
.sec_kv.bg01.event_bg {
	background: url(img/event_bg.jpg) no-repeat center;
	background-size: cover;
}


.sec_kv .ttl {
    position: absolute;
    top: 48%;
    color: #FFF;
}
.sec_kv .ttl span {
    font-size: 16px;
    position: relative;
}
.sec_kv .ttl span:after {
	content: "";
	display: block;
	width: 40px;
	height: 2px;
	background: #f90;
	margin: 15px 0 10px;
}
.sec_kv .ttl p {
    font-size: 36px;
    font-weight: 500;
}

/* sec_txt */
.sec_txt {
    padding: 100px 0;
}
.sec_txt.bg01 {
	background: #d3eaff;
}
.sec_txt .ttl {
    text-align: center;
    position: relative;
    color: #023F7B;
    font-weight: 500;
}
.sec_txt .ttl p {
    font-size: 30px;
}
.sec_txt .ttl p:after {
	content: "";
	position: absolute;
	display: block;
	width: 40px;
	height: 2px;
	background: #f90;
	margin: 10px 0 0;
	left: 50%;
	margin-left: -20px;
}
.sec_txt .ttl span {
	display: block;
	margin-top: 30px;
}
.sec_txt .txt {
    width: 800px;
    margin: 50px auto 0;
}
.sec_txt .txt .fl {
	float: left;
	width: 200px;
	margin: 0 20px 0 0;
}
.sec_txt .img {
    width: 800px;
    margin: 2em auto 0;
}
.sec_txt .name {
    text-align: right;
}
.sec_txt .name img {
    width: 200px;
    margin-top: 10px;
}
.sec_txt .txt .catch {
	font-size: 1.5em;
	text-align: center;
	display: inline-block;
	width: 100%;
	/* margin-bottom: 1em; */
	color: #f90;
}

/* column */
.col_02 {
    display: table;
    width: 100%;
    border-spacing: 40px 0;
    margin-top: 50px;
}
.col_02 li {
    display: table-cell;
    width: 45%;
    text-align: center;
}
.col_02 .ttl01 {
    font-size: 18px;
    color: #023F7B;
}
.col_02 .txt01 {
    font-size: 20px;
    min-height: 3.5em;
}
.col_02 .txt02 {
    font-size: 18px;
    margin-top: 1em;
}
.col_02 .txt03 {
	margin-top: 1.5em;
}

.col_03 {
    display: table;
    width: 100%;
    text-align: center;
    border-spacing: 30px 0;
}
.col_03 li {
    display: table-cell;
	width: 26.6%;
}

.w_100 {
    width: 100%;
    display: table;
}
.w_100 li {
    display: table-cell;
    vertical-align: middle;
}

/* icon */
.ico {
    width: 70px;
    margin: 25px auto 20px;
}

/* table */
.tb01 th {
    width: 25%;
    text-align: left;
    position: relative;
    vertical-align: middle;
}
.tb01 th,
.tb01 td {
    padding: 10px;
    border-bottom: 1px solid #DDD;
}
.tb01 .flag {
	position: absolute;
	right: 0;
	background: #f90;
	color: #FFF;
	padding: 0 5px;
}
.tb01 input[type=text],
.tb01 input[type=tel],
.tb01 input[type=email],
.tb01 textarea {
	background: #d3eaff;
	width: 100%;
	padding: 3px;
}
.bg01 .tb01 input[type=text],
.bg01 .tb01 input[type=tel],
.bg01 .tb01 input[type=email],
.bg01 .tb01 textarea {
	background: #FFF;
}
.tb01 textarea {
	height: 7em;
}
.tb01 .check {
	display: inline-block;
	margin-right: 1em;
}
.tb01 .check.other {
	display: block;
}

.form_btn {
	text-align: center;
	margin-top: 40px;
}
.form_btn input[type=submit] {
	background: #f90;
	color: #FFF;
	font-size: 20px;
	padding: 10px;
}

/* news */
.news_ttl {
	margin-bottom: 15px;
}
.news_ttl > a {
    color: #023F7B;
    font-weight: 500;
    float: left;
    font-size: 26px;
}
.news_post {
    border-bottom: 3px solid #d3eaff;
    padding-bottom: 30px;
    margin-bottom: 30px;
}
.news_date {
    float: right;
    margin-top: 10px;
	display: block;
}
.more-link {
    /* position: absolute; */
    /* bottom: -1em; */
    /* right: 0; */
    color: #023F7B;
    font-weight: 500;
    display: block;
    margin-top: 1em;
}
.news_txt {
    position: relative;
}
.news_cate {

    text-align: right;
    margin-top: 20px;
}
.news_navi {
    text-align: center;
}

.breadcrumb li{
	float: left;
	margin-right: 10px;
}

#faq a{
	color: #f90;
	text-decoration: underline;
}
.txt_q{
	font-size: 20px;
	margin-top: 30px;
	color: #023F7B;
	text-decoration: underline;
}
.txt_a{
	font-size: 16px;
}

#rules div{
	width: 960px;
	margin: 0 auto;
}
#rules .txt{
	text-align: center;
}
#rules  h3.ttl{
	font-size: 24px;
	text-align: left;
	margin-top: 30px;
}
#rules ul{
	margin-bottom: 30px;
}
#rules ul li{
	list-style-type: disc;
}

#rules .nest .nest_txt{
	margin-bottom: 20px;
}

#rules .nest ul{
	margin-bottom: 20px;
}
#rules .nest ul li ul{
	margin-left: 35px;
}
#rules a{
	text-decoration: underline;
}
.top_business .responsive{
	max-height: 214px;
	margin-bottom: 2%;
}
.sns{
	margin-top: 40px;
}
.fl{float:left;}
.fr{float:right;}
.top_recruit dd a span{margin-right:20px;}
.sec_txt a{
	text-decoration: underline;
	color: #f90;
}
.top_news.bg01 {
    background: #d3eaff;
}
.mgb5{
	margin-bottom: 5%;
}

.link_btn a {
	position: relative;
	width: 30%;
	text-align: center;
	float: left;
	margin-right: 3%;
	z-index: 2;
	background-color: #f90;
	border: 2px solid #f90;
	color: #fff;
	line-height: 50px;
}
.link_btn a:hover {
	background-color: #fff;
	border-color: #f90;
	color: #f90;
}
.link_btn a::before,
.link_btn a::after {
	left: 0;
	width: 100%;
	height: 50%;
	background-color: #f90;
}
.link_btn a::before {
	top: 0;
}
.link_btn a::after {
	bottom: 0;
}
.link_btn a:hover::before,
.link_btn a:hover::after {
	height: 0;
	background-color: #f90;
}
.top_h2{
	margin: 8% auto;
	text-align: center;
}

/*.link_btn a {
    border: 1px solid #f90;
    display: inline-block;
    padding: 10px;
    font-size: 14px;
    color: #f90;
    min-width: 110px;
    letter-spacing: 0.05em;
    text-align: center;
    transition: background-color .2s linear;
    width: 30%;
    float: left;
    margin-right: 3%;
}
.link_btn a:hover {
    background: #f90;
    color: #fff;
}*/
