@charset "UTF-8";

:root {
    --font-family-base:"Noto Sans JP", sans-serif;
    --font-family-eng:"Oswald", serif;
    --line-height-base: 1.5;
    --line-height-small: 1.3; 
    --line-height-large: 2; 
    --letterspacing-base: 0.1em;
    --letterspacing-small: 0.05em; 
    --white: #fff;
    --black: #000;
    --green: #149C3C;
    --lightgreen:#AFD51B;
    --yellow: #FFF301;
  }

body{
    font-family: var(--font-family-base);
    line-height: var(--line-height-base);
    letter-spacing: var(--letterspacing-base);
    font-feature-settings: "palt";
    overflow-x: hidden;
}
/* 実装レイアウト用 */
/* body{
    background-color: #aaa;
} */
header{
    background-color: white;
}
header {
    width: 250px;
    height: 100vh;
    position: fixed;
    z-index: 10;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    box-shadow: 0 0 5px 2px rgb(0 0 0 / 10%);
}
header .wrap{
    overflow-y: scroll;
}
header .wrap::-webkit-scrollbar {
    display: none;
}

#wrap{
    display: flex;
}
/* ヘッダー */
/* forSP */
.drawer-nav {
    background: var(--white);
    position: fixed;
    width: 100%;
    height: 80px;
    z-index: 100;
    box-shadow: 0 0 5px 2px rgb(0 0 0 / 20%);
  }
  
  /* Nav items */
  .menu {
    list-style: none;
    position: absolute;
    width: 100vw;
    height: 96vh;
    top: 0;
    margin-top: 80px;
    padding: 0 0 10px 0;
    clear: both;
    background: var(--green);
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
    transform: scale(1, 0);
    transform-origin: top;
}
  
  /* Hamburger menu button */
  .menu-btn:checked ~ .menu {
    transform: scale(1, 1);
    transform-origin: top;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
	height: calc(100vh - 80px);
	overflow-y: auto;
  }
  
  /* Hamburger menu text */
  .menu>.comm>a>span,
  .menu a {
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 2px;
    font-size: 24px;
    text-transform: capitalize;
    color: var(--white);
    opacity: 0;
    transition: 0.5s;
  }
  .menu>.comm>a,
  .menu a span{
    display: block;
    font-size: 14px;
  }
  .menu li.comm,
  .menu li {
    border-top: 1px solid rgb(75 75 75 / 16%);
    padding: 15px 0;
    margin: 0 54px;
/*    opacity: 0;*/
    transition: 0.5s;
  }
  
  .menu-btn:checked ~ .menu a,
  .menu-btn:checked ~ .menu>.comm>a>span,
  .menu-btn:checked ~ .menu li.comm,
  .menu-btn:checked ~ .menu li {
    opacity: 1;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.2s;
  }
  
.menu-btn {
    display: none;
  }
  
  .menu-icon {
    display: inline-block;
    position: relative;
    cursor: pointer;
    padding: 0;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }

  .navicon {
    background: var(--green);
    display: block;
    height: 3px;
    width: 26px;
	  margin: 1.5em 1em;
    position: relative;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  }
  
  .navicon:before,
  .navicon:after {
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    background: var(--green);
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  }
  
  .navicon:before {
    top: 9px;
  }
  
  .navicon:after {
    bottom: 9px;
  }
  
  /* Hamburger Menu Animation Start */
  .menu-btn:checked ~ .menu-icon .navicon:before {
    transform: rotate(-45deg);
  }
  
  .menu-btn:checked ~ .menu-icon .navicon:after {
    transform: rotate(45deg);
  }
  
  .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before {
    top: 0;
  }
  .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
    bottom: 0;
  }
  
  .menu-btn:checked ~ .menu-icon .navicon {
    background: rgba(0, 0, 0, 0);
    transition: 0.2192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  }
  /* Hamburger Menu Animation End */
  
  /* Navbar Container */
  .navtext-container {
    width: 100%;
    height: 80px;
    position: absolute;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  /* Navbar Text */
  .navtext {
    position: absolute;
    text-transform: uppercase;
    color: #ddd;
    letter-spacing: 4px;
    font-size: 20px;
    width: 220px;
  }
/* forPC */
header .wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
}
header a#logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 0; 
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 200px;
    height: 150px;
    text-align: center;
}
header nav#g_nav{
    width: 100%;
}
header nav#g_nav ul li {
    min-height: 66px;
    border-bottom: none;
    position: relative;
}
header nav#g_nav ul li a {
    /* position: relative; */
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    height: 66px;
    -ms-flex-pack: start;
    justify-content: flex-start;
    border-bottom: 1px solid #f2f2f2;
    padding: 0 24px 0 20px;
}
header nav#g_nav ul li.ext a {
    font-size: 14px;
}
header nav#g_nav ul li a p{
    margin-left: 10px;
}
header nav#g_nav ul li a img{
    max-width: 30px;
}
header nav#g_nav ul li.ext a img{
    max-width: 16px;
}
header nav#g_nav ul li.ext::before{
    position: absolute;
    top: 26px;
    right: 24px;
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url(/img/link_out.png);
    background-size: contain;
    vertical-align: middle;
}

/* content */
#main_col{
    background-color: var(--white);
    width: calc(100% - 251px);
    margin-left: 250px;
    min-height: 100vh;
    /* display: flex;
    flex-direction: column;
    justify-content: space-between; */
}
#fv{
    background-color: var(--green);
    padding: 140px 100px;
    padding: clamp(20px, 12.3%, 140px) clamp(10px, 8.8%, 100px);
    background-image: url(/img/fv_bg.png);
    background-position: center 5%;
    background-size: contain;
    background-repeat: no-repeat;
    overflow-x: hidden;
}
#fv a{
    display: block;
    padding-bottom: 5em;
}
#fv .fv_wrap{
    /* background-color: white; */
    position: relative;
    max-width: 1400px;
    margin-inline: auto;
}
#fv .lead_wrap {
    background-color: var(--green);
    position: absolute;
    bottom: 0;
    max-width: 700px;
    padding: 12px;
    transform: translateY(calc(50%));
    color: var(--white);
}
#fv .lead_txt {
    font-size: 16px;
    font-size: clamp(16px, 1vw, 20px);
    line-height: var(--line-height-large);
    margin-bottom: 10px;
}
#fv .lead_meta {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
}
#fv .lead_meta p.lead_cat{
    font-size: 16px;
    font-weight: 600;
    background-color: var(--white);
    color: var(--green);
    padding: 4px 10px;
    border-radius: 20px;
    line-height: normal;
}
#fv .lead_meta p.lead_date{
    font-family: var(--font-family-eng);
}
#fv .lead_site{
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        font-size: 18px;
}
#fv .lead_site span{
        display: block;
        padding-right: 6px;
        max-width: 40px;
}
/* swiper設定 */
.swiper {
    overflow: visible;
    background-color: var(--green);
}
/* 非表示スライドのスタイル */
/* .hidden-slide {
    visibility: hidden;      
    opacity: 0;              
    pointer-events: none;    
    transition: opacity 0.5s ease, visibility 0.5s ease;
  } */
  
.custom-prev,
.custom-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    background-size: contain;
    background-repeat: no-repeat;
    cursor: pointer;
}

.custom-prev {
    background-image: url(/img/slider_pager.png);
    left: 0px;
}
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
    content: none;
}
.custom-next {
    background-image: url(/img/slider_pager.png);
    right: 0px;
    transform: rotate(180deg);
}
.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
    content: none;
}
@media screen and (max-width: 1440px) {
    .custom-prev {
        left: -25px;
    }
    .custom-next {
        right: -25px;
        transform: rotate(180deg);
    }
}
#content{
    background-color: white;
    /* max-width: 1400px;
    margin-inline: auto; */
    /* padding: clamp(20px, 12.3%, 140px) clamp(10px, 8.8%, 100px); */
}
section > div{
    max-width: 1400px;
    margin-inline: auto;
	padding-inline: clamp(10px, 8.8%, 100px);
}

section + section{
    margin-top: 130px;
}

#about  {
    position: relative;
    margin-top: 80px;
}

#about .about_cont {
    display: flex;
    justify-content: space-between;
}
#about .ttl_wrap {
    margin-bottom: 30px;
}
#about .ttl_wrap h3.sec_ttl{
    font-size: clamp(60px, 9vw, 130px);
    font-weight: 700;
    color: var(--green);
    font-family: var(--font-family-eng);
    line-height: 1;
    margin-bottom: 10px;
}
#about .ttl_wrap .ttl_sub{
    font-size: clamp(22px, 2.5vw, 40px);
    font-weight: 700;
    color: var(--black);
    height: auto;
}
#about .about_column {
    /* width: 31.5vw; */
    width: 48%;
    line-height: var(--line-height-large);
    text-align: justify;
}
#about .about_column .column_ttl{
    font-size: clamp(20px, 2vw, 30px);
    color: var(--lightgreen);
    font-family: var(--font-family-eng);
    font-weight: 700;
}
#about .about_column .column_txt{
    font-size: clamp(16px, 1.2vw, 18px);
/*    line-height: 2.6;*/
    letter-spacing: 0.1em;
}
#about .about_visual{
    /* margin-top: 10%; */
    /* width: 32.6vw; */
    max-width: 610px;
    width: 48%;
    text-align: center;
}

/* 特集記事、大会情報 */
#feature .ttl_wrap,#event .ttl_wrap {
    color: var(--green);
    border-left: 10px solid var(--yellow);
    padding-left: 22px;
    margin-bottom: 76px;
}
#feature .ttl_wrap .ttl_sub,#event .ttl_wrap .ttl_sub{
    font-size: 12px;
    border: 1px solid;
    font-weight: 600;
    padding: 4px 20px;
    border-radius: 20px;
    width: fit-content;
    line-height: normal;
}
.ttl_wrap h2.sec_ttl{
    font-size: clamp(40px, 5vw, 100px);
    font-weight: 700;
    font-family: var(--font-family-eng);
    line-height: 1;
    margin-top: 10px;
}
.atcl_list {
    display: flex;
    flex-wrap: wrap;
    gap: 60px 40px;
    margin-bottom: 60px;
}
.atcl_list li{
    width: calc((100% - 40px) /2);
}
.atcl_list .atcl_tmb{
    margin-bottom: 20px;
}
.atcl_list .atcl_tmb img{
    border-bottom-left-radius: 60px;
}
.atcl_list .atcl_lead{
    font-size: 18px;
    font-weight: 600;
}

.atcl_list .atcl_meta{
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
    font-weight: 600;
}
.atcl_list .atcl_meta .lead_cat{
    font-size: 14px;
    background-color: var(--green);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 20px;
    line-height: normal;
    width: fit-content;
}
.atcl_list .atcl_meta .lead_date{
    font-size: 14px;
    color: var(--green);
    font-family: var(--font-family-eng);
}
.more_btn{  
    border-bottom: 1px solid;
    color: var(--green);
    padding-bottom: 10px;
    width: 60%;
    margin-left: auto;
    font-weight: 800;
    font-family: var(--font-family-eng);
    font-size: clamp(18px, 1.8vw, 28px);
}
.more_btn a{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}
.more_btn a img{
    max-width: 40px;
}
/* バナーエリア */
#other_info .banner_wrap{
    max-width: 800px;
    margin: 100px auto;
    padding-inline: 20px;
}
/* ロケーション */
#location{
    background-color: var(--green);
    /* margin: 0 calc(50% - 50vw);
	width: 100vw; */
    background-image: url(/img/location_bg_ccl.png),url(/img/location_bg_dots.png);
    background-position: -500px top,left 110%;
    background-size: auto,420px;
    background-repeat: no-repeat,no-repeat;
}
#location .location_inner{
    max-width: 1400px;
    margin-inline: auto;
    padding-block: 140px;
}
#location .ttl_wrap{
    writing-mode: vertical-rl;
    width: fit-content;
    width: 10%;
    display: flex;
    align-items: center;
    color: var(--white);
    gap: 10px;
}
#location .location_cont{
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    gap: 40px;
}
  
#location .ttl_wrap .line {
    display: block;
    width: 2px; 
    height: 30px; 
    background-color: var(--white); 
    flex-shrink: 0; 
}
#location .ttl_wrap p {
    font-family: var(--font-family-base);
    letter-spacing: 0.4em;
}
#location .location_wrap{
    max-width: 900px;
    width: 80%;
    padding-top: 114px;
}
#location .location_wrap > * + *{
    margin-top: 20px;
}
summary {
    display: block;
}
summary::-webkit-details-marker {
    display: none;
}

.summary_inner{
    cursor: pointer;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background-color: var(--white);
    border: 1px solid var(--black);
    font-size: 20px;
    font-weight: bold;
    color: var(--black);
}
summary .icon {
    max-width: 31px;
    transition: transform 0.4s;
  }
/* アコーディオンが開いた時のスタイル */
details[open] summary .icon {
    transform: rotate(180deg);
  }
.details_inner{
    background-color: var(--white);
    /* padding: 20px 30px; */
    border: 1px solid var(--black);
    margin-inline: auto;
}  
#location h4 {
    padding: 20px 30px;
    background: var(--lightgreen);
    font-weight: 600;
    font-size: 20px;
}
#location ul.location_list li:nth-child(even) {
    background-color: #e7e7e7;
}
#location li.location_item {
    padding: 20px 30px;
}
#location p.location_name {
    margin-bottom: 0.5em;
}
#location dl.location_data {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 10px;
}
dl.location_data>dt,
#location dt.location_ttl {
    width: 6em;
    text-align: center;
    background-color: var(--black);
    color: var(--white);
    font-size: 14px;
}

dl.location_data>dd,
#location dd.location_txt {
    width: calc(100% - (6em + 10px));
}
dl.location_data>dd:has(span),
#location dd.location_txt:has(span) {
    width: 100%;
}

#location dd span.cat { 
    display: block;
    color: var(--green);
    border: 1px solid;
    border-radius: 20px;
    width: fit-content;
    padding: 0 16px;
    font-size: 14px;
    font-weight: 600;
}
/* フッター */
footer {
    background-color: var(--black);
    color: var(--green);
    padding: 20px;
}
.copyright{
    text-align: right;
    font-size: 25px;
    font-weight: 800;
    font-family: var(--font-family-eng);
}

/* 大会・特集下層ページ */
/* 一覧ページ */
.topic_inner{
    margin-bottom: 100px;
}
#feature_sub .ttl_wrap, #taikai_sub .ttl_wrap, #taikai_tpc .ttl_wrap{
    padding: 60px 0;
    color: var(--white);
    background-color: var(--green);
    font-family: var(--font-family-eng);
    font-weight: 900;
    text-align: center;
    width: 100%;
    max-width: inherit;
    border-left: none;
}
#feature_sub .ttl_wrap h2, #taikai_sub .ttl_wrap h2,#taikai_tpc .ttl_wrap h1{
    font-family: var(--font-family-eng);
    font-size: clamp(40px, 4vw, 60px);
    font-weight: 900;
}
#taikai_tpc .ttl_wrap h1 {
    font-family: var(--font-family-base);
}
#feature_sub .ttl_wrap p, #taikai_sub .ttl_wrap p, #taikai_tpc .ttl_wrap p {
    font-size: 14px;
    font-family: var(--font-family-base);
    font-weight: normal;
}
#feature_sub .feature_inner, #taikai_sub .feature_inner, #taikai_tpc .feature_inner {
    margin-block: 100px;
}
/* 個別記事ページ */
#taikai_tpc section > div,#featured_tpc section > div{
    max-width: 830px;
    padding-inline: 0;
}
#taikai_tpc .sub_mv ,#featured_tpc .sub_mv{
    display: flex;
    flex-wrap: wrap;
    /* min-height: 600px; */
    height: 70vh;
    min-height: 530px;
}
#taikai_tpc .sub_mv + *,#featured_tpc .sub_mv + *{
    margin-top: 80px;
}
#taikai_tpc .sub_mv .sub_mvimg,#featured_tpc .sub_mv .sub_mvimg {
    width: 50%;
    height: auto;
    background-image: url(/img/pick_thumb.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
#taikai_tpc .sub_mv .sub_mvcont,#featured_tpc .sub_mv .sub_mvcont {
    position: relative;
    width: 50%;
    padding: 6%;
    background-color:var(--green);
    /* background-color:rgba(0, 128, 0, 0.411); */
    background-image: url(/img/pick_thumb.jpg);
    background-position: center center;
    /* background-size: 160%; */
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#taikai_tpc .sub_mv .sub_mvcont::before,
#featured_tpc .sub_mv .sub_mvcont::before {
    content: '';
    background-color: rgb(20 156 60 / 93%);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
  }
#taikai_tpc .sub_mv .sub_mvcont .mvcont_txt,
#featured_tpc .sub_mv .sub_mvcont .mvcont_txt{
    z-index: 2;
}
#taikai_tpc .sub_mv .cat_txt,#featured_tpc .sub_mv .cat_txt {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-family: var(--font-family-eng);
}
#taikai_tpc .sub_mv .cat_txt span,
#featured_tpc .sub_mv .cat_txt span{
    display: block;
    padding-right: 6px;
}
#taikai_tpc .sub_mv .cat_txt span img,
#featured_tpc .sub_mv .cat_txt span img{
    max-width: 30px;
    filter: invert(88%) sepia(61%) saturate(0%) hue-rotate(229deg) brightness(107%) contrast(101%);
}
#taikai_tpc .sub_mv .sub_mvttl,
#featured_tpc .sub_mv .sub_mvttl{
    /* font-size: 2vw; */
    font-size: clamp(22px, 2vw, 2vw);
    font-weight: 500;
    margin-bottom: 40px;
}
#taikai_tpc .sub_mv .sub_mvdate,
#featured_tpc .sub_mv .sub_mvdate {
    font-family: var(--font-family-eng);
    font-size: 14px;
    margin-bottom: 10px;
}
#taikai_tpc .sub_mv .sub_mvtxt,
#featured_tpc .sub_mv .sub_mvtxt {
    font-size: 20px;
}
#index{
    max-width: 720px;
    margin-inline: auto;
    background-color: #f6ee000e;
    border: 1px solid var(--yellow);
    padding: 3% 4%;
}
#index .index_ttl{
    font-family: var(--font-family-eng);
    font-size: 20px;
    text-align: center;
}
#index .index_list > li + li{
    margin-top: 20px;
}
#index .index_list > li a{
    text-decoration: underline;
    color: var(--green);
}
#index .index_list > li span + span{
    margin-left: 20px;
}
#index .index_list > li img{
    max-width: 20px;
    /* rotate: 270deg; */
    /* filter: opacity(0.3); */
}
#index hr{
    margin-block: 20px 30px;
    color: #ddd;
}
#index + * {
    margin-top: 60px;
}
#topic h2{
    font-size: clamp(22px, 2.4vw, 2.4vw);
    padding-left: 20px;
    border-left: 6px solid var(--yellow);
    font-weight: 700;
    color: var(--green);
}
#topic h2 span{
    font-size: 18px;
    line-height: var(--line-height-large);
    display: inline-block;
}
#topic h2 + *,#topic h3 + *{
    margin-top: 20px;
}
#topic h3 {
    font-size: clamp(18px, 1.8vw, 1.8vw);
    font-weight: 500;
    color: var(--green);
}

#topic .topic_sec{
    margin-top: 80px;
}
#topic .topic_img{
    margin-bottom: 40px;
}
#topic .topic_img.sub{
    max-width: 400px;
}
#topic .topic_txt{
    line-height: 2.4;
    text-align: justify;
    margin-bottom: 50px;
    font-size: 18px;
}
#topic .topic_txt span.topic_subttl{
    font-weight: 700;
}
#topic .other_list{
    width: fit-content;
    padding: 1em 2em;
    background-color: #dfdfdf;
    line-height: var(--line-height-large);
    border-radius: 10px;
}
#topic li span{
    font-weight: 600;
}
#topic .other_list li + li{
    margin-top: 10px;
}
#topic .site_sec{
    margin-top: 40px;
}
#topic .camp_btn{
    width: fit-content;
    margin-bottom: 10px;
    border-bottom: 1px solid;
    color: var(--green);
    padding-bottom: 10px;
    font-weight: 800;
    font-size: clamp(18px, 1.8vw, 28px);
}
#topic .camp_btn a {
    display: flex;
    align-items: center;
    gap: 10px;
}
#topic .camp_btn a img {
    max-width: 40px;
}
#topic .topic_link {
    text-decoration: underline;
    color: var(--green);
}
.event_list{
    max-width: 580px;
}
.event_list dt{
    padding: 1em 0;
    font-weight: 600;
    border-bottom: 2px solid var(--green);
    color: var(--green);
}
.event_list dd{
    padding: 0.6em 0 1.5em;
}
.event_list dd a,.site_list li a,.topic_link{
    font-weight: 600;
    text-decoration: underline;
    color: var(--green);
}
.sight_box {
    max-width: 780px;
    margin: 40px 0;
    border: 2px solid var(--green);
    border-radius: 20px;
    padding: 3em;
}
.sight_box .site_cat{
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    font-size: 18px;
}
.sight_box .site_cat span{
    display: block;
    padding-right: 6px;
    max-width: 40px;
}
.sight_box h4{
    margin-bottom: 20px;
    font-size: clamp(18px, 118vw, 1.8vw);
    font-weight: 600;
    line-height: 1.0;
    color: var(--green);
}
.sight_box p.site_txt{
    margin-bottom: 30px;
}
.sight_box h4 span{
    font-weight: normal;
    font-size: 16px;
}
.sight_box figure + figure{
    margin-top: 20px;
}
.sight_box figcaption{
    margin-top: 10px;
}
.site_list{
    margin-bottom: 20px;
}
.site_list li{
    padding: 0.4em 0;
}
.site_list li > span{
    margin-bottom: 4px;
    padding: 0.4em 0;
    font-weight: 600;
    display: block;
    border-bottom: 1px solid var(--green);
    color: var(--green);
}
.cate_list{
    margin-bottom: 20px;
}
.cate_list li{
    display: inline-block;
    padding: 4px 10px;
    color: var(--green);
    border: 1px solid var(--green);
    border-radius: 100px;
    font-weight: 600;
    font-size: 14px;
}
/* レスポンシブ */
@media screen and (min-width: 769px) {
    .pc_none{
        display: none;
    }
}

@media screen and (min-width: 1101px) {
    .drawer-nav{
        display: none;
    }

	#g_nav>ul>.comm>a>span {display: none;}
	#g_nav>ul>.comm:not(.ext)>a:before {
		content: '';
		display: inline-block;
		width: 30px;/*画像の幅*/
		height: 30px;/*画像の高さ*/
		margin-right: 10px;
		background-size: contain;
		vertical-align: middle;
	}
	#g_nav>ul>.comm>a[href*="content"]:before {background-image: url(/img/navicon_about.png);}
	#g_nav>ul>.comm>a[href*="feature"]:before {background-image: url(/img/navicon_feature.png);}
	#g_nav>ul>.comm>a[href*="event"]:before {background-image: url(/img/navicon_event.png);}
	#g_nav>ul>.comm>a[href*="location"]:before {background-image: url(/img/navicon_location.png);}
	#g_nav>ul>.comm>a[href*="contact"]:before {background-image: url(/img/navicon_contact.png);}
	#g_nav>ul>.ext.comm>a {margin-left: 10px;}

	#about .about_column .column_txt {line-height: 2.6;}

}
@media screen and (max-width: 1400px) {
    #fv{
        padding: clamp(20px, 12.3%, 140px) clamp(10px, 8.8%, 100px);
    }
    /* #content{
        padding-inline: clamp(10px, 8.8%, 100px);
    } */
    .location_inner{
        padding-inline: clamp(10px, 8.8%, 100px);
    }
}

@media screen and (max-width: 1100px) {
    header{
        display: none;
    }
    #fv {
        padding-top: 200px;
        background-position: center 18%;
    }
    #main_col{
        width: 100%;
        margin-left: 0;
    }
    #main_col.contact,#main_col.featured,#main_col.taikai{
        padding-top: 80px;
    }

	#event,
	#feature {
		margin-top: -1em;
		padding-top: calc(80px + 1em);
	}

	#content {
		margin-top: -80px;
		padding-top: 80px;
	}


	#location {
		padding-top: 2em;
	}
}

@media screen and (max-width: 768px) {
    .sp_none{
        display: none;
    }   
    section + section {
        margin-top: 80px;
    }
    section > div {
        padding-inline: 20px;
    }
    #feature_sub .feature_inner, #taikai_sub .feature_inner {
        margin-block: 40px;
    }
    #fv {
        padding: 0;
        padding-block: 200px 40px;
        background-position: center 18%;
    }
    #fv a {
        padding-bottom: 0;
    }
    #fv .lead_wrap {
        position: inherit;
        transform: inherit;
    }
    #fv .lead_meta {
        flex-direction: column;
        align-items: flex-start;
    }
    .custom-prev,
    .custom-next {
    display: none;
    }
    #about {
        margin-top: 60px;
    }
    #about .ttl_wrap {
        margin-bottom: 10px;
    }
    #about .ttl_wrap h3.sec_ttl {
        font-size: clamp(2.5rem, 0.268rem + 11.16vw, 5.625rem);
    }
    #about .about_cont {
        flex-direction: column;
        align-items: flex-end;
        gap: 0;
    }
    #about .about_column {
        width: 100%;
    }
    #about .about_column .column_txt {
        line-height: 2;
    }
    #about .about_visual {
        width: 60%;
    }
    .atcl_list {
        gap: 50px 40px;
        margin-bottom: 20px;
    }
    .atcl_list li {
        width: 100%;
    }
    .atcl_list .atcl_lead {
        font-size: 16px;
    }
    #feature .ttl_wrap, #event .ttl_wrap {
        /* padding: 30px 0; */
        margin-bottom: 30px;
    }
    #other_info .banner_wrap {
        margin: 60px auto;
    }
    #location .location_cont {
        flex-direction: column;
        gap: 20px;  
    }
    #location .ttl_wrap {
        writing-mode: inherit;
        width: fit-content;
        width: 100%;
        display: block;
        /* gap: 10px; */
    }
    .ttl_wrap h2.sec_ttl {
        margin-bottom: 10px;
    }
    #location .ttl_wrap .line {
        width: 30px;
        height: 2px;
        display: inline-block;
    }
    #location .ttl_wrap p {
        display: inline-block;
        margin-left: 10px;
        letter-spacing: 0.2em;
    }
    #location .location_inner {
        padding-block: 60px;
        padding-inline: 20px;
    }
    #location .location_wrap {
        width: 100%;
        padding-top: 0;
    }
    #location li.location_item {
        padding: 20px 16px;
    }
    #location h4 {
        padding: 16px;
        font-size: 16px;
    }
	dl.location_data>dt,
    #location dt.location_ttl {
        font-size: 12px;
        font-weight: 500;
    }
	dl.location_data>dd,
    #location dd.location_txt {
        font-size: 14px;
    }
    .summary_inner {
        padding: 16px 20px;
        font-size: 16px;
    }
    summary .icon {
        max-width: 20px;
    }
    .copyright {
        font-size: 16px;
    }
    /* 大会下層ページ */
    #taikai_tpc .sub_mv, #featured_tpc .sub_mv {
        min-height: auto;
        height: auto;
    }
    #taikai_tpc .sub_mv .sub_mvimg, #featured_tpc .sub_mv .sub_mvimg {
        width: 100%;
        height: 300px;
    }
    #taikai_tpc .sub_mv .sub_mvcont, #featured_tpc .sub_mv .sub_mvcont {
        padding: 50px 24px;
        width: 100%;
    }
    #taikai_tpc .sub_mv .cat_txt {
        font-size: 14px;
    }
    #taikai_tpc .sub_mv .sub_mvttl, #featured_tpc .sub_mv .sub_mvttl {
        margin-bottom: 20px;
    }
    #taikai_tpc .sub_mv .sub_mvtxt, #featured_tpc .sub_mv .sub_mvtxt {
        font-size: 16px;
    }
    #index {
        margin-inline: 20px;
        padding: 3% 6%;
    }
    #topic {
        margin-inline: 20px;
    }
    #topic .topic_txt {
        line-height: 2.0;
        font-size: 16px;
    }
    #topic span.topic_subttl{
        font-weight: 700;
    }
    .sight_box {
        padding: 2em 1.3em;
    }
    .sight_box .site_cat span {
        max-width: 26px;
    }
    .sight_box .site_cat {
        font-size: 14px;
    }
    .sight_box h4 span {
        font-size: 12px;
    }
}
@media screen and (max-width: 540px){
    #fv {
        padding-block: 140px 20px;
    }
}

.pointHide {
	pointer-events: none;
	opacity: .6;
}
/*設置個所アンアクティブ*/
/*#g_nav>ul>li>.pointHide {background-color: #ccc;}
.menu-btn:checked ~ .menu>li:has(.location) {
	background-color: inherit;
	color: #999;
	opacity: .6;
}
.location_wrap {
	text-align: center;
	font-size:2em;
	font-weight:bolder;
	color:#fff;
	background-color: rgba(0,96,0,.7);
	border-radius: 1em;
}*/