@charset "UTF-8";

/* cssリセット*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
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 {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* font-family（フォント）
--------------------------------------------------------- */
body {
  font-family: 'M PLUS Rounded 1c', sans-serif;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

/*
ベース設定
--------------------------------------------------------- */

html {
  font-size: 62.5%;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  background-color: #fff;
  color: #051F4B;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /*content: "";*/
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

a {
  text-decoration: none;
  cursor: pointer;
}

a.anchor {
  display: block;
  padding-top: 50px;
  margin-top: -50px;
}

img {
  vertical-align: middle;
  width: 100%;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

.color-red {
  color: #ce5400;
}

.bold {
  font-weight: 600;
}

h1 {
  display: none;
}

h2 {
  margin: 3rem auto 5rem;
  width: 216px;
  max-width: 90%;
  text-align: center;
}

h3 {
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1;
  color: #051F4B;
  background-color: #EBEFF2;
  margin: 4rem 0 2.5rem;
  padding: 1.5rem;
  padding-left: 2rem;
  border-radius: 5px;
}

h3::before {
  content: '';
  display: inline-block;
  height: .7em;
  width: .7em;
  border-radius: 3px;
  background-color: #B79964;
  margin-right: 4px;
}

p {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6em;
  padding: 0 1rem;
}

ul {
  width: 100%;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6em;
  padding: 0 1rem;
}

li {
  list-style: none;
}

.subheading {
  color: #fff;
  background-color: #B79964;
  font-size: 1.8rem;
  font-weight: 500;
  padding: .2rem 2rem;
  border-radius: 2rem;
  margin-right: 1rem;
}

#content {
  padding-top: 0;
}

@media screen and (max-width: 560px) {
  html {
    font-size: 2.66667vw;
  }

  body {
    font-size: 1.6rem;
  }

  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

  h2 {
    margin: 3rem auto;
  }

  h3 {
    font-size: 2.4rem;
    margin-bottom: 1.6rem;
  }

  .subheading {
    display: block;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
  }

}


/* フェードインエフェクト
--------------------------------------------------------- */
.fd-in {
  opacity: 0;
  transform: translate(0, 40px);
  -webkit-transform: translate(0, 40px);
  transition: all 0.8s;
}

.fd-done {
  opacity: 1;
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  transition: all 0.6s;
}

/* ヘッダー
--------------------------------------------------------- */
#header {
  width: 100%;
  background-color: #fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  position: fixed;
  z-index: 1;
}

#header #g-navi {
  width: 100%;
  max-width: 1000px;
  height: 70px;
  margin: 0 auto;
  padding-top: 35px
}

#header #g-navi ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-weight: 500;
}

#header #g-navi li {
  border-right: 1px solid #313143;
  padding: 0 30px;
  margin: 0;
}

#header #g-navi li:last-child {
  border-right: none;
}

#header #g-navi li a {
  color: #313143;
  font-size: 1.8rem;
}

/*ハンバーガーメニュー/

/*まずはボタン設置*/
.menu-btn {
  position: fixed;
  top: 15px;
  right: 10px;
  display: flex;
  height: 2.5rem;
  width: 2.5rem;
  justify-content: space-between;
  align-items: center;
  z-index: 90;
}

.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
  content: '';
  display: block;
  height: 5px;
  width: 2.5rem;
  border-radius: 5px;
  background-color: #313143;
  position: absolute;
  transition: all .5s;
}

.menu-btn span:before {
  bottom: 10px;
}

.menu-btn span:after {
  top: 10px;
}

/*ボタンがタップされたとき三本線を「×」マークにする*/
#menu-btn-check:checked~.menu-btn span {
  background-color: rgba(49, 49, 67, 0);
  /*メニューオープン時は真ん中の線を透明にする*/
}

#menu-btn-check:checked~.menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#menu-btn-check:checked~.menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
}

/*チェックボタンを隠す*/
#menu-btn-check {
  display: none;
}

/*メニュー内容の装飾*/
.menu-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  background-color: #fff;
}

.menu-content ul {
  padding: 70px 10px 0;
}

.menu-content ul li {
  border-bottom: solid 1px #313143;
  list-style: none;
}

.menu-content ul li a {
  display: block;
  width: 100%;
  font-size: 1.6rem;
  box-sizing: border-box;
  color: #000;
  text-decoration: none;
  padding: 9px 15px 10px 0;
  position: relative;
}

.menu-content ul li a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px #313143;
  border-right: solid 2px #313143;
  transform: rotate(45deg);
  position: absolute;
  right: 11px;
  top: 16px;
}

/*メニューを画面の外へ飛ばす*/
.menu-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%;
  /*leftの値を変更してメニューを画面外へ*/
  z-index: 80;
  background-color: #fff;
  transition: all 0.5s;
  /*アニメーション設定*/
}

/*メニューを画面内へ移動させる*/
#menu-btn-check:checked~.menu-content {
  left: 0;
}

@media screen and (max-width: 1000px) {
  #header #g-navi li {
    padding: 0 15px;
  }
}

@media screen and (max-width: 560px) {
  #header {}

  #header #g-navi {
    width: 100%;
    max-width: 1000px;
    height: auto;
    padding-top: 10px
  }

  #header #g-navi ul {
    flex-wrap: wrap;
    justify-content: space-around;
  }

  #header #g-navi li {
    padding: 0;
    text-align: center;
    border-right: none;
    border-bottom: 1px solid #313143;
  }

  #header #g-navi li a {
    font-size: 1.3rem;
  }
}



/* メインビジュアル
--------------------------------------------------------- */
.mainvisual {
  background-color: #f8f8f8;
  overflow: hidden;
  padding-top: 60px;
  background-image: url(https://ssl.samidare.jp/~tukiyamaf/komeko/c/komeko/komekopan2025/mv_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

.mainvisual .container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding-bottom: 80px;
}

.mainvisual .mv_title {
  width: 80%;
  max-width: 800px;
  margin: 0 auto 30px;
  padding-top: 55px;
}

.mainvisual .mv_purpose p {
  margin: 0 auto 40px;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2.2em;
  text-align: center;
}

.mainvisual .mv_ribon_wrap {
  position: relative;
}

.mainvisual .mv_ribon {
  width: 100%;
  margin: 0 auto 40px;
}

.mainvisual .mv_ribon_badge {
  width: 15%;
  max-width: 180px;
  margin: 0 auto 40px;
  position: absolute;
  top: -30%;
  right: 8%;
}

.mainvisual .mv_period {
  width: 100%;
  max-width: 590px;
  padding: 0 30px;
  margin: 0 auto;
}

@media screen and (max-width: 1000px) {}

@media screen and (max-width: 560px) {
  .mainvisual {
    padding-top: 20px;
  }

  .mainvisual .container {
    padding-bottom: 60px;
    background-image: none;
  }

  .mainvisual .mv_title {
    width: 90%;
    margin: 0 auto 30px;
  }

  .mainvisual .mv_purpose p {
    width: 95%;
    font-size: 1.6rem;
    line-height: 3rem;
    margin: 0 auto;
  }

  .mainvisual .mv_ribon {
    margin: 0 auto;
  }

  .mainvisual .mv_period {
    padding: 0 30px;
    margin: 0 auto;
  }

}


/* 応募ボタン関係
--------------------------------------------------------- */
.application {
  background-color: #fff;
}

.application .container {
  width: 95%;
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 50px;
}

.btn_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  padding: 0 0 50px;
}

.btn_wrap div {
  width: 360px;
  margin: 1.5rem;
}

.btn_wrap div a {
  display: block;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 100%;
  color: #ce5400;
  background-color: #fff;
  padding: 2rem 1rem;
  border: 3px #ce5400 solid;
  border-radius: 4rem;
  cursor: pointer;
  transition: background-color .2s ease;
}

.btn_wrap div a:hover {
  background-color: #ffdec9;
}

.btn_wrap div a span {
  font-size: .8em;
  padding-left: .8rem
}

.btn_wrap div.btn_yellow {
  width: 460px;
  margin: 1rem;
}

.btn_wrap div.btn_yellow a {
  display: block;
  font-size: 3.7rem;
  background-color: #ffd44f;
}

.btn_wrap div.btn_yellow a:hover {
  background-color: #ffeaaa;
}

.btn_wrap .btn_yellow.fin a {
  font-size: 3.2rem;
  color: #3b3b3b;
  background-color: #cfcfcf;
  border: none;
  pointer-events: none;
}

@media screen and (max-width: 560px) {
  .application .container {
    width: 100%;
    padding: 0 15px;
  }

  .btn_wrap {
    padding: 60px 0 10px;
  }

  .btn_wrap div {
    width: 100%;
    margin: 0 0 2rem;
  }

  .btn_wrap div a {
    font-size: 2.2rem;
    padding: 2rem 1rem;
  }

  .btn_wrap div.btn_yellow {
    width: 100%;
    margin: 0 0 2rem;
  }

  .btn_wrap div.btn_yellow a {
    font-size: 2.4rem;
  }
}

/* 結果発表
--------------------------------------------------------- */
.result {
  padding: 70px 15px 40px;
  background-color: #ffd8b3;
}

.result .container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 60px;
  padding: 30px 35px 60px;
  background-color: #fff;
  border-radius: 15px;
}

.result h2 {
  width: 100%;
  max-width: 505px;
  margin-bottom: 30px;
}

.result h3 {
  border: none;
  width: 100%;
  max-width: 452px;
  margin: 40px auto 10px;
  background-color: #fff;
}

.result h3::before {
  display: none;
}

.result h4 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.5em;
  text-align: center;
  margin: 1em 0 .5em;
}

.result p {
  text-align: center;
}

.result .img_1row {
  width: 100%;
  max-width: 698px;
  margin: 0 auto;
}

.result .img_1row a {
  transition: opacity .2s ease;
}

.result .img_1row a:hover {
  opacity: .7;
}

.result .img_2rows {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.result .img_2rows a {
  width: 49%;
  margin-bottom: 30px;
  transition: opacity .2s ease;
}

.result .img_2rows a:hover {
  opacity: .7;
}

.result .img_3rows {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 30px 0 5px;
}

.result .img_3rows a {
  width: 31%;
  margin: 0 1% 30px;
  transition: opacity .2s ease;
}

.result .img_3rows a:hover {
  opacity: .7;
}

@media screen and (max-width: 560px) {
  .result {
    width: 100%;
  }

  .result .container {
    margin: 0 auto 60px;
    padding: 10px 20px 40px;
    border-radius: 10px;
  }

  .result h2.h2long {
    font-size: 2.4rem;
    width: 100%;
    line-height: 1.2em;
    border-radius: 10px;
  }

  h2.h2long::after,
  h2.h2long::before {
    display: none;
    /* border-top: 3.7rem solid #313143;
    border-bottom: 3.7rem solid #313143;
    border-right: 1.5rem solid transparent;
    border-left: 1.5rem solid transparent; */
  }

  .result h3 {
    margin: 40px auto 10px;
  }

  .result p {
    text-align: left;
  }

  .result .img_2rows a {
    width: 100%;
  }

  .result .img_3rows a {
    width: 45%;
    margin-bottom: 25px;
  }
}



/* 大会概要
--------------------------------------------------------- */
.overview {
  padding: 30px 0 70px;
}

.overview .container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 15px;
}

.overview ul {
  padding-left: calc(1rem + 1em);
  margin-top: 1rem;
}

.overview li {
  list-style: none;
  text-indent: -1em;
}

.overview li::before {
  content: "";
  width: .8em;
  height: .8em;
  display: inline-block;
  background-color: #051F4B;
  border-radius: 50%;
  position: relative;
  margin-right: .2em;
}

.overview ul p {
  text-indent: -2em;
  padding-left: 2em;
}

.overview .ex_box {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.6em;
  width: 100%;
  max-width: 900px;
  text-align: center;
  border: 1px solid #ce5400;
  padding: 1.5em 1em;
  margin: 0 auto;
}

.overview .ex_img {
  padding: 20px 10px;
}

.overview .name {
  line-height: 1.8em;
  margin-bottom: .8rem;
}

.overview .name span {
  font-size: 2rem;
  font-weight: 500;
}

.overview .ex_guest {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  height: auto;
  min-height: 150px;
  align-items: center;
}

.overview .ex_guest .name {
  width: 30%;
  font-size: 1.8rem;
}

.overview .ex_guest .name span {
  font-size: 2.4rem;
}

.overview .ex_guest .photo {
  width: 45%;
  padding: 0 20px;
}

.overview .ov_photo {
  width: 100%;
  max-width: 1400px;
  margin: 100px auto 70px;
}

@media screen and (max-width: 560px) {
  .overview {
    width: 100%;
    padding: 0 0 40px;
  }

  .overview .ex_box {
    text-align: left;
  }

  .overview .ex_img {
    padding: 20px 30px;
  }

  .overview .name {
    line-height: 1.5em;
  }

  .overview .name span {
    font-size: 2rem;
    font-weight: 500;
  }

  .overview .ex_guest .name {
    width: 45%;
    font-size: 1.5rem;
  }

  .overview .ex_guest .name span {
    font-size: 2rem;
  }

  .overview .ex_guest .photo {
    width: 55%;
    padding: 0;
  }

  .overview .ov_photo {
    margin: 4em auto;
  }

}

/* 表彰・入賞特典
--------------------------------------------------------- */
.prize {
  background-image: url(https://ssl.samidare.jp/~tukiyamaf/komeko/c/komeko/komekopan2025/pr_bg1.png), url(https://ssl.samidare.jp/~tukiyamaf/komeko/c/komeko/komekopan2025/pr_bg2.png), linear-gradient(#F5E988, #D1B352);
  background-repeat: no-repeat, no-repeat;
  background-position: top left, bottom right;
  background-size: 400px, 400px, 100%;
  text-align: center;
}

.prize .container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 10px 50px;
}

.prize h2 {
  width: 302px;
}

.prize .pr_img {
  margin: 30px 0;
}

@media screen and (max-width: 560px) {
  .prize {
    background-size: 50%, 50%, 100%;
  }

  .prize .container {
    width: 100%;
    padding: 5px 15px 20px;
  }

  .prize .pr_img {
    margin: 20px 0;
  }
}

/* 大会スケジュール
--------------------------------------------------------- */
.schedule {
  padding: 60px 0 70px;
}

.schedule .container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 15px;
}

.schedule h2 {
  width: 330px;
}

.schedule h3::before {
  display: none;
}

.schedule .sc_img {
  padding: 30px 0 20px;
}

.schedule .color-green {
  color: #4D8644;
}

.schedule .bgcolor-green {
  background-color: #4D8644;
}

.schedule .color-blue {
  color: #3E6FB4;
}

.schedule .bgcolor-blue {
  background-color: #3E6FB4;
}

.schedule .color-pink {
  color: #CB5B87;
}

.schedule .bgcolor-pink {
  background-color: #CB5B87;
}

.schedule .color-orange {
  color: #CC5C53;
}

.schedule .bgcolor-orange {
  background-color: #CC5C53;
}

.schedule .sc_flexwrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  width: 100%;
  margin: 30px 0 10px;
}

.schedule .sc_flexwrap p {
  margin-bottom: 10px;
}

.schedule .sc_flexwrap p:nth-child(odd) {
  width: 20%;
}

.schedule .sc_flexwrap p:nth-child(even) {
  width: 80%;
}

.schedule .sc_flexwrap .subheading {
  display: block;
  text-align: center;
  margin: 0;
}

@media screen and (max-width: 560px) {
  .schedule {
    padding: 0 0 60px;
  }

  .schedule .sc_img {
    padding: 0 0 20px;
  }

  .schedule .sc_period {
    margin-bottom: 10px;
    padding: 0;
  }

  .schedule .sc_period .color-red {
    font-size: 2rem;
    line-height: 1.5em;
  }

  .schedule .sc_flexwrap {
    display: block;
  }

  .schedule .sc_flexwrap p {
    margin-bottom: 10px;
  }

  .schedule .sc_flexwrap p:nth-child(odd) {
    width: 100%;
  }

  .schedule .sc_flexwrap p:nth-child(even) {
    width: 100%;
  }

}


/* 問い合わせ
--------------------------------------------------------- */
footer {
  width: 100%;
  background-color: #ededed;
}

footer .contact {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 35px 0;
  font-size: 1.6rem;
  line-height: 1.6em;
}

footer h4 {
  font-size: 2.8rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 20px;
}

footer .contact>div {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-around;
}

footer .ct_form {
  width: 40%;
}

footer .ct_form a {
  color: #fff;
  background-color: #051F4B;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  display: block;
  padding: 2.2rem;
  border-radius: 4px;
  transition: background-color .2s ease;
}

footer .ct_form a:hover {
  background-color: #4b4b67;
}

footer .sponsored {
  font-size: 1.6rem;
  line-height: 1.5em;
  text-align: center;
  width: 100%;
  background-color: #fff;
  padding: 40px 15px;
}

@media screen and (max-width: 1000px) {}

@media screen and (max-width: 560px) {
  footer {
    text-align: center;
  }

  footer .contact {
    padding: 30px 15px 30px;
  }

  footer .contact>div {
    display: block;
    font-size: 1.3rem;
  }

  footer .ct_form {
    width: 100%;
    margin-left: 0;
    margin-top: 1.5rem;
  }

  footer .ct_form a {
    font-size: 1.5rem;
    transition: none;
  }

  footer .sponsored {
    font-size: 1.5rem;
    padding: 20px 15px;
  }

}

/* footer
--------------------------------------------------------- */
.footer {
  background-color: #fff;
  border-top: 1px #c9caca solid;
}

.footer>.container {
  padding: 20px;
  text-align: center;
}

.footer>.container .copyright {
  color: #000;
  font-size: 1.3rem;
  line-height: 1.5em;
}

.footer>.container .ft-logo {
  width: 14%;
  margin: 0 auto 1.5vw auto;
}

@media screen and (max-width: 560px) {
  .footer>.container {
    padding: 15px;
    text-align: center;
  }

  .footer>.container .copyright {
    font-size: 0.9rem;
  }

  .footer>.container .ft-logo {
    width: 40%;
    margin: 0 auto 3vw auto;
  }
}