@charset "UTF-8";
/* ============================
body
  全体の指定
=============================== */
body {
  background-color: #FEFEFE;
}
a{
  text-decoration: none;
}
/* ============================
改行設定
  br-sp=スマホのみ改行
  pc-sp=PCのみ改行
=============================== */
.br-sp {
    display: none;
}
.br-pc {
    display: block;
}
@media (max-width: 526px) {
    .br-sp {
        display: block;
    }
    .br-pc {
        display: none;
    }    
}

/* ============================
ぱんくずリスト
=============================== */
.breadcrumb-001 {
    display: flex;
    gap: 0 22px;
    list-style: none;
    padding: 0;
    font-size: 1.2em;
    margin:30px 0 0 auto;
    width: 88%;
}

.breadcrumb-001 li {
    display: flex;
    align-items: center;
}

.breadcrumb-001 li:first-child::before {
    display: inline-block;
    width: 1em;
    height: 1em;
    margin-right: 4px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 20C20 20.5523 19.5523 21 19 21H5C4.44772 21 4 20.5523 4 20V11L1 11L11.3273 1.6115C11.7087 1.26475 12.2913 1.26475 12.6727 1.6115L23 11L20 11V20ZM11 13V19H13V13H11Z' fill='%23cd4187'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    content: '';
}

.breadcrumb-001 li:not(:last-child)::after {
    display: inline-block;
    transform: rotate(45deg);
    width: .3em;
    height: .3em;
    margin-left: 10px;
    border-top: 1px solid #cd4187;
    border-right: 1px solid #cd4187;
    content: '';
}

.breadcrumb-001 a {
    color: #000;
    text-decoration: none;
}

@media only screen and (max-width:526px) {
  .breadcrumb-001 {
    margin:14px 0 -10px 26px;
  }
}

/* ============================
|.mv
  - mv上の文字を変更するときは" .mv_wrap"から
=============================== */
.mv {
  width: 100%;
  height: 400px;
  background-image: url(../img/mv_bg.png);
  background-repeat: no-repeat;
  position: relative;
}

.fade{
    animation-name: fadein;
    animation-duration: 3s;
}
@keyframes fadein{
    from{
    opacity: 0;
    transform: translatey(20px);
    }
    to{
    opacity: 1;
    transform: translatey(0);
    }
}
@media only screen and (max-width:960px) {
  .mv .mv_bg .-pc {
    display: none;
  }
}
.mv .mv_bg .-tab {
  width: 100%;
  display: none;
}
@media only screen and (max-width:960px) {
  .mv .mv_bg .-tab {
    display: block;
  }
}
@media only screen and (max-width:526px) {
  .mv .mv_bg .-tab {
    display: none;
  }
}
.mv .mv_bg .-sp {
  width: 100%;
  display: none;
}
@media only screen and (max-width:526px) {
  .mv .mv_bg .-sp {
    display: block;
  }
}

.mv_wrap {
  text-align: end;
  position: absolute;
  top: 23%;
  right: 15%;
  width: 35%;
}
@media only screen and (min-width:1600px) {
  .mv_wrap {
    margin-right: 4%;
  }
}
@media only screen and (max-width:960px) {
  .mv_wrap {
    text-align: center;
    top: 77%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 80%;
  }
}
@media only screen and (max-width:526px) {
  .mv_wrap {
    left: 40%;
    width: 74%;
    top:50%;
  }
}

/*タブレット追加*/
@media screen and (min-width: 527px) and (max-width: 960px) {
  .mv_wrap{
    top:50%;
  }
.mv_wrap img {
  max-width: 100%;
  height: auto;
  width: clamp(280px, 80vw, 600px);
  width: 78vw;
}
}


.mv_wrap p {
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
  color: #802511;
  text-shadow: 0 2px 4px #fff;
  letter-spacing: 0.4rem;
  font-size: 45px;
}
@media only screen and (max-width:960px) {
  .mv_wrap p {
    font-size: 40px;
  }
}
@media only screen and (max-width:526px) {
  .mv_wrap p {
    font-size: 30px;
  }
}
.mv_wrap h1 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 95px;
  font-weight: 800;
  color: #D43E1D;
  text-shadow: 0.03em 0.03em 0.03em #E9B900, -0.03em -0.03em 0.03em #E9B900, -0.03em 0.03em 0.03em #E9B900, 0.03em -0.03em 0.03em #E9B900, 0 2px 4px rgba(0, 0, 0, 0.25);
  width: 130%;
}
@media only screen and (max-width:960px) {
  .mv_wrap h1 {
    font-size: 70px;
  }
}
@media only screen and (max-width:526px) {
  .mv_wrap h1 {
    font-size: 45px;
  }
}

/* ============================
|.notice
  - MV直下の文言......notice_txt
=============================== */

.notice {
  font-family: "Noto Sans JP", sans-serif;
  padding-top: 80px;
  padding-bottom: 100px;
  background-image: url(img/notice_bg.png);
  background-size: cover;
  background-position: center;
}
@media only screen and (max-width:960px) {
  .notice {
    padding-top: 25px;
    padding-bottom: 40px;
    background-position: right;
  }
}
.notice_txt {
  width: 77%;
  text-align: center;
  margin: 0 auto 31px;
  padding: 24px 47px;
  background: #FFE8EC;
  -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);

}
.notice_txt h2{
  font-size: 32px;
  letter-spacing: 4px;
}
@media only screen and (max-width:526px) {
  .notice_txt {
    width: 95%;
    padding: 15px;
    margin-bottom: 29px;
  }
  .notice_txt h2{
    font-size: 23px;
  }
}
.notice_txt p {
  color: #000000;
  font-size: 20px;
  line-height: 40px;
  letter-spacing: 0.15rem;
}
.notice_txt_from{
  padding: 20px 20px 0 0;
  text-align: right;
}
@media only screen and (max-width:526px) {
  .notice_txt p {
    font-size: 15px;
    letter-spacing: 0.06rem;
    line-height: 29px;
  }
}
.notice_desc {
  max-width: 56%;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.notice_desc1111{
  width: 64%;
  margin:0 auto;
}
@media only screen and (max-width:526px) {
  .notice_desc1111{
    width: 90%;
    margin-bottom: 86px;
  }
}
@media only screen and (max-width:960px) {
  .notice_desc {
    width: 80%;
  }
}
@media only screen and (max-width:526px) {
  .notice_desc {
    width: 90%;
  }
}
.notice_desc_title {
  color: #000000;
  text-align: left;
  font-size: 28px;
  font-weight: 700;
  line-height: 45px;
  letter-spacing: 0.05rem;
  margin-bottom: 29px;
  background: linear-gradient(transparent 70%, #FFE8EC 70%);
  width: 37%;
}
@media only screen and (max-width:1230px) {
  .notice_desc_title {
    font-size: 27px;
    line-height: 45px;
    margin: 0 auto 37px auto;
    text-align: center;
    width: 89%;
  }
}
.notice_desc_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width:960px) {
  .notice_desc_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.notice_desc_wrap_left {
  width: 68%;
}
@media only screen and (max-width:960px) {
  .notice_desc_wrap_left {
    width: 100%;
  }
}
.notice_desc_wrap_left-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 40px;
  margin-right: 85px;
}
@media only screen and (max-width:960px) {
  .notice_desc_wrap_left-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-right: 0;
    margin-bottom: 25px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.notice_desc_wrap_left-item:last-of-type {
  margin-bottom: 0;
}
@media only screen and (max-width:960px) {
  .notice_desc_wrap_left-item:last-of-type {
    margin-bottom: 30px;
  }
}
.notice_desc_wrap_left-item h5 {
  color: #000000;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.15rem;
}
@media only screen and (max-width:526px) {
  .notice_desc_wrap_left-item h5 {
    font-size: 18px;
    margin-bottom: 8px;
  }
}
.notice_desc_wrap_left-item p,
.notice_desc_wrap_left-item ul {
  color: #000000;
  font-size: 22px;
  line-height: 26.4px;
  letter-spacing: 0.15rem;
  text-align: left;
}

/* ============================
|エントリー
=============================== */
.entry_box{
  width: 1000px;
}
.entry_box {
  list-style: none;
}
@media only screen and (max-width:526px) {
  .entry_box{
    width: 98%;
  }
}
@media only screen and (min-width: 1101px) and (max-width: 1230px)  {
  .entry_box{
    width: 827px;
  }
}
.entry_box_mark {
  position: relative;
  padding-left: 24px;
  margin-bottom: 22px;
  font-size: 19px;
  text-align: left;
}
@media only screen and (max-width:526px) {
  .entry_box_mark {
    margin-bottom: 11px;
  }
}
.entry_box_mark::before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 8px;
  left: 1px;
  width: 15px;
  height: 15px;
  background-color: #CD4187;
  border-radius: 10px;
}

.entry_attention{
  width: 92%;
  margin: 30px auto 30px auto;
  border: 2px solid #CD4187;
  border-radius: 21px;
  padding: 22px;
}
@media only screen and (max-width:526px) {
  .entry_attention{
    margin: 22px auto 30px auto;
  }
}
.entry_attention p{
  font-size: 15px;
}
.entry_title{
  margin-top: 67px;
  margin-bottom: 93px;
}
@media only screen and (max-width:526px) {
  .entry_title{
    margin-top:34px;
    margin-bottom: 44px;
  }
}
.entry_bottom{
  display: flex;
  justify-content: space-around;
  width: 62%;
}
@media only screen and (max-width:526px) {
  .entry_bottom{
    display: block;
    width: 100%;
    margin: 0 auto;
  }
}
.li_margin{
  margin-bottom: 55px;
}
@media only screen and (max-width:800px) {
  .notice_desc_wrap_left-item p,
  .notice_desc_wrap_left-item ul {
    width: 100%;
  }
}
@media only screen and (min-width:801px) and (max-width: 1100px) {
  .notice_desc_wrap_left-item p,
  .notice_desc_wrap_left-item ul {
    width: 100%;
  }
}

.notice_desc_wrap_left-item ul .ireko{
  list-style-type: none;
  margin-left: 20px;
  width: 350px;
}
@media only screen and (max-width:526px) {
  .notice_desc_wrap_left-item p span,
  .notice_desc_wrap_left-item ul span {
    font-size: 15px;
  }
}
.notice_desc_wrap_right ul a {
  display: block;
  color: #000;
  text-align: center;
  text-decoration: none;
  margin-bottom: 15px;
}
.notice_desc_wrap_right ul a:last-of-type {
  margin-bottom: 0;
}
/*
.notice_desc_wrap_right ul li {
  cursor: pointer;
  border-radius: 15px;
  border: 2px solid #802511;
  background: #fff;
  -webkit-box-shadow: 2px 2px 4px 0px rgba(128, 37, 17, 0.16);
          box-shadow: 2px 2px 4px 0px rgba(128, 37, 17, 0.16);
  width: 300px;
  font-size: 18px;
  font-weight: 500;
  line-height: 33px;
  letter-spacing: 2.7px;
  padding-top: 16px;
  padding-bottom: 16px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
*/
.button-14,
.button-14 span {
    display: flex;
    justify-content: center;
    align-items: center;
}

.button-14 {
    position: relative;
    width: 250px;
    margin: 0 auto;
    padding: 0;
    border-radius: 5px;
    border: none;
    font-size: 1em;
}
  @media (max-width: 526px) {
  .button-14{
    width: 307px;
    margin-bottom: 34px;
  } 
  }
.button-14::before {
    position: absolute;
    top: 7px;
    z-index: -1;
    width: 100%;
    height: 100%;
    border: 2px solid #000;
    border-radius: inherit;
    box-sizing: inherit;
    box-shadow: 0 5px 0 0 rgba(0, 0, 0, .2);
    background-color: #cf6e9d;
    content: '';
}

.button-14 span {
    width: 100%;
    padding: .9em 2em;
    border: 2px solid #000;
    border-radius: inherit;
    background-color: #FFE8EC;
    color: #000;
    font-weight: 600;
    line-height: 1.5;
    font-size: 17px;
}

.button-14 span::after {
    display: inline-block;
    transform: rotate(45deg);
    width: 5px;
    height: 5px;
    margin-left: 10px;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    content: '';
}

.button-14:hover::before {
    transition: box-shadow .2s;
    box-shadow: 0 3px 0 0 rgba(0, 0, 0, .2);
}

.button-14:hover span {
    transition: transform .2s;
    transform: translateY(2px);
}
@media only screen and (max-width:320px) {
  .notice_desc_wrap_right ul li {
    width: 90%;
    font-size: 16px;
    margin-right: 0;
  }
}
.notice_desc_wrap_right ul li:last-of-type {
  line-height: 26.4px;
  margin-bottom: 40px;
}
.notice_desc_wrap_right ul li:hover {
  background-color: #802511;
  color: #ffffff;
  font-weight: bold;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

/* ============================
|.finish
  滝の写真とその上の文字
  *滝の写真は背景のピンクと一緒に画像化済
=============================== */
.finish {
  position: relative;
}
.finish img {
  width: 100%;
  height: 509px;
  -o-object-fit: cover;
     object-fit: cover;
}
.finish p {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-left: 11%;
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.75);
  font-size: 22px;
  font-weight: 500;
}

/* ============================
|.sns
  Twitterの縦幅変更時→htmlから修正
  横幅等はcssから変更
=============================== */
.sns {
  text-align: center;
  margin-top: 68px;
  margin-bottom: 32px;
  color: #000;
}
.sns_title {
  font-size: 25px;
  margin-bottom: 10px;
}
.sns_title h3 {
  color: #000;
}

.fb {
  margin: 0 auto !important;
  overflow: hidden;
}

.youtube {
  margin: 48px auto 0;
}
@media only screen and (max-width:526px) {
  .youtube {
    width: 90%;
  }
}
.youtube p {
  margin-bottom: 8px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 500;
}
.youtube iframe {
  margin: 0 auto 20px;
}
@media only screen and (max-width:960px) {
  .youtube iframe {
    width: 90%;
    height: auto;
    aspect-ratio: 16/9;
  }
}
.youtube_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.youtube_btn a {
  color: #FEFEFE;
  background-color: #D43E1D;
  text-decoration: none;
  font-weight: bold;
  padding: 8px 20px;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
}

/* ============================
|.label
  大会ギャラリー写真
  写真変更時→.label_column以下を都度変更
=============================== */
.label {
  color: #000;
  background-image: url(./img/label_bg.png);
  background-size: 100%;
  background-repeat: no-repeat;
  /* ============================
  |.notice_info
    お問い合わせ先
  =============================== */
}
@media only screen and (max-width:526px) {
  .label {
    background-image: url(./img/label_bg_sp.png);
  }
}
.label_inner {
  padding: 0 0 48px;
  margin: 0 15%;
}
@media only screen and (max-width:526px) {
  .label_inner {
    padding: -35px 0 45px;
    margin: 0 5%;
  }
}
.label_title h3 {
  color: #000;
  text-align: center;
  font-size: 35px;
  letter-spacing: 0.05rem;
  margin-bottom: 15px;
}
@media only screen and (max-width:526px) {
  .label_title h3 {
    font-size: 30px;
  }
}
.label_title p {
  color: #000;
  font-size: 16px;
  text-align: right;
  margin-bottom: 14px;
  letter-spacing: 0.15rem;
}
@media only screen and (max-width:526px) {
  .label_title p {
    font-size: 15px;
    margin-bottom: 5px;
  }
}
.label_clumn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 48px;
}
@media only screen and (max-width:526px) {
  .label_clumn {
    display: block;
  }
}
.label_info {
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
  padding-top: 22px;
  border-top: 2px solid #d3d3d3;
  margin-top: 39px;
}
.info_entry{
  padding-top: 43px;
}
@media only screen and (max-width:960px) {
  .label_info {
    padding-top: 45px;
  }
}
.label_info_colmun {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 3%;
  letter-spacing: 0.15rem;
}
@media only screen and (max-width:960px) {
  .label_info_colmun {
    display: block;
  }
}
.label_info_title {
  font-size: 22px;
}
@media only screen and (max-width:960px) {
  .label_info_title {
    font-size: 24px;
    text-align: center;
    margin-bottom: 6px;
  }
}
.label_info_desc {
  text-align: right;
}
.label_info_desc h5 {
  color: #000;
  font-size: 18px;
  margin-bottom: 17px;
}
@media only screen and (max-width:526px) {
  .label_info_desc h5 {
    margin-bottom: 15px;
    letter-spacing: 0.04rem;
  }
}
.label_info_desc p {
  color: #000;
  margin-bottom: 8px;
}
.label_info_desc p:last-child {
  margin-bottom: 0;
}
.label_info_desc p:nth-child(3) {
  font-weight: bold;
}
@media only screen and (max-width:526px) {
  .label_info_desc p {
    font-size: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

/* ============================
スライドショーの設定
=============================== */

.label_inner_slider {
  margin: 0 0;
}
:root {
  --img-width: 420px;       /* PC */
  --img-ratio: 338 / 487;
  --duration: 60s;          /* スクロール速度 */
}

/* ===== 共通スライダー設定 ===== */
.slider {
  width: 100%;
  overflow: hidden;
  margin-bottom: 8px;      /* 上下スライダーの間隔 */
}

.slider-track {
  display: flex;
  width: max-content;
  animation: scroll var(--duration) linear infinite;
}

.slider-track img {
  width: var(--img-width);
  height: calc(var(--img-width) * var(--img-ratio));
  object-fit: cover;
  flex-shrink: 0;
}

/* ===== 上段アニメーション（右から左） ===== */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-1 * var(--img-width) * 3)); }
}

/* ===== 下段逆方向（左から右） ===== */
.slider.reverse .slider-track {
  animation: scroll-reverse var(--duration) linear infinite;
}

@keyframes scroll-reverse {
  0% { transform: translateX(calc(-1 * var(--img-width) * 3)); }
  100% { transform: translateX(0); }
}

/* ===== レスポンシブ ===== */
@media (max-width: 1024px) {
  :root { --img-width: 320px; }
}

@media (max-width: 768px) {
  :root { --img-width: 300px; }
  
  /* 中央寄せ感 */
  .slider-track {
    justify-content: center;
  }
}

/* ============================
|.footer
  コピーライトの表記のみ
=============================== */
.copy {
  color: #000;
  text-align: center;
  font-size: 12px;
  font-family: "Noto Sans JP", sans-serif;
  padding: 30px 0;
}
@media only screen and (max-width:526px) {
  .copy {
    font-size: 10px;
    padding: 50px 0 20px 0;
  }
}/*# sourceMappingURL=style.css.map */

