@charset "utf-8";

/* サイト名 基本設定CSS */


/*

    0. reset
    1. 共通設定
    2. フォント・リンク設定
    3. 段落設定
    4. 汎用セレクタ
    5. ページ設定

*/
/* -------------------------------------------
    0. reset
------------------------------------------- */

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
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,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

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

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;
}

/* -------------------------------------------
    1. 共通設定
------------------------------------------- */

* {
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  margin: 0px;
  font-size: 16px;
  line-height: 28px;
  word-wrap: break-word;
  scroll-padding-top: 30px;
}

.clear {
  clear: both;
}

img {
  vertical-align: baseline;
  -ms-interpolation-mode: bicubic;
  max-width: 100%;
  display: block;
}

a img {
  border: 0;
}

.clearfix:after {
  content: ".";
  /* 新しい要素を作る */
  display: block;
  /* ブロックレベル要素に */
  clear: both;
  height: 0;
  font-size: 0;
  visibility: hidden;
}

.clearfix {
  min-height: 1px;
}

* html .clearfix {
  height: 1px;
  /*¥*/
  /*/
  height: auto;
  overflow: hidden;
  /**/
}

/* -------------------------------------------
    2. フォント・リンク設定
------------------------------------------- */

/* ------------ フォント ------------ */

body {
  font-family: Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
}


/* ------------ フォントカラー ------------ */

.fc-org {
  color: #FF6600;
}

.fc-pink {
  color: #E5004F;
}

.fc-red {
  color: #cf2a28;
}

.fc-blue {
  color: #0066cc;
}

.must {
  color: #b62020;
  font-weight: bold;
}

/* ------------ リンク ------------ */

a {
  color: #00AFF0;
  overflow: hidden;
  outline: none;
}

a:hover {
  opacity: 0.6;
  transition: all 0.5s ease 0s;
}

/* ------------ 選択時 ------------ */

/*

::selection {
  background: #ffdddd;
  color: #000;
}

::-moz-selection {
  background: #ffdddd;
  color: #000;
}

*/

/* -------------------------------------------
    3. 段落設定
------------------------------------------- */


/* -------------------------------------------
    4. 汎用セレクタ
------------------------------------------- */

/* ------------ マージン ------------ */

.mt-10 {
  margin-top: 10px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.ml-10 {
  margin-left: 10px !important;
}

.ml-20 {
  margin-left: 20px !important;
}

.ml-30 {
  margin-left: 30px !important;
}

.ml-40 {
  margin-left: 40px !important;
}

.mr-10 {
  margin-right: 10px !important;
}

.mr-20 {
  margin-right: 20px !important;
}

.mr-30 {
  margin-right: 30px !important;
}

.mr-40 {
  margin-right: 40px !important;
}

/* ------------ パディング ------------ */

.pt-10 {
  padding-top: 10px !important;
}

.pt-20 {
  padding-top: 20px !important;
}

.pt-30 {
  padding-top: 30px !important;
}

.pt-40 {
  padding-top: 40px !important;
}

.pb-10 {
  padding-bottom: 10px !important;
}

.pb-20 {
  padding-bottom: 20px !important;
}

.pb-30 {
  padding-bottom: 30px !important;
}

.pb-40 {
  padding-bottom: 40px !important;
}

.pl-10 {
  padding-left: 10px !important;
}

.pl-20 {
  padding-left: 20px !important;
}

.pl-30 {
  padding-left: 30px !important;
}

.pl-40 {
  padding-left: 40px !important;
}

.pr-10 {
  padding-right: 10px !important;
}

.pr-20 {
  padding-right: 20px !important;
}

.pr-30 {
  padding-right: 30px !important;
}

.pr-40 {
  padding-right: 40px !important;
}

.fw-bold {
  font-weight: bold !important;
}

@media (min-width: 897px) {
  .sp-none {
    display: block;
  }

  .pc-none {
    display: none;
  }
}

@media (max-width: 896px) {
  .sp-none {
    display: none;
  }

  .pc-none {
    display: block;
  }
}


/* -------------------------------------------
    5. ページ設定
------------------------------------------- */
#contest2025 {
  background-image: url(../img/bg.jpg);
  background-repeat: repeat;
}

@media (max-width: 896px) {
  #contest2025 {
    overflow: hidden;
  }
}

header {
  padding: 10px;
  max-width: 1440px;
  margin: 0 auto;
}

header h1.logo {
  max-width: 322px;
}

@media (max-width: 768px) {
  header h1.logo {
    max-width: 180px;
  }
}

#contest2025 main {
  max-width: 1200px;
  margin: auto;
}

#contest2025 section.mv {}

/* ------------- トップのボタン ------------- */

#contest2025 section.read_btn {
  padding: 2rem 1rem 3rem;
  display: flex;
  justify-content: space-between;
}

#contest2025 section.read_btn a {
  display: block;
  margin: 0 1rem;
}

@media (max-width: 896px) {
  #contest2025 section.read_btn {
    display: block;
  }

  #contest2025 section.read_btn a {
    margin: 0 1rem 1rem;
  }
}


/* ------------- トップのリード文 ------------- */

#contest2025 section.read {
  padding: 0 2rem 3rem;
}

#contest2025 section.read img {
  margin: 0 auto 2rem
}

#contest2025 section.read img.hakase {
  max-width: 370px;
}

@media (max-width: 896px) {
  #contest2025 section.read {
    padding: 0 1rem 3rem;
  }

  #contest2025 section.read img.hakase {
    max-width: 90%;
    margin: 0 auto;
  }
}


/* ------------- コンテンツ ------------- */

#contest2025 section.content {
  margin: 0 2rem 3rem;
  padding: 5rem 4rem 11rem;
  border: 12px solid #008a32;
  border-radius: 20px;
  position: relative;
  background: url(../img/img_pencil.png) no-repeat;
  background-position: right 100px bottom 0;
  background-size: 50px auto;
}

@media (max-width: 896px) {
  #contest2025 section.content {
    margin: 0 0.5rem 3rem;
    padding: 3rem 1rem 8rem;
    border: 6px solid #008a32;
    border-radius: 10px;
    background-position: right 50px bottom 0;
    background-size: 30px auto;
  }
}

#contest2025 section.content h2.corner-title {
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
}

#contest2025 section.content h2.corner-title img {
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 896px) {
  #contest2025 section.content h2.corner-title {
    top: -40px;
  }

  #contest2025 section.content h2.corner-title img {
    max-width: 90%;
  }
}

#contest2025 section.content table {
  background: url(../img/bg_table.png) no-repeat center top;
  background-size: 100% auto;
}

#contest2025 section.content tr {
  background: url(../img/bg_table.png) no-repeat center bottom;
  background-size: 100% auto;
}

@media (max-width: 896px) {
  #contest2025 section.content table {
    background: url(../img/sp_bg_table.png) no-repeat center top;
  }

  #contest2025 section.content tr {
    background: url(../img/sp_bg_table.png) no-repeat center bottom;
  }
}

#contest2025 section.content tr:first-child th,
#contest2025 section.content tr:first-child td {
  padding-top: 2.6rem;
}

#contest2025 section.content th,
#contest2025 section.content td {
  padding: 1.4rem 1.8rem 1.8rem;
  text-align: left;
}

@media (max-width: 896px) {

  #contest2025 section.content tr:first-child th {
    padding-top: 1.6rem;
  }

  #contest2025 section.content tr:first-child td {
    padding-top: 0;
  }

  #contest2025 section.content th {
    display: block;
    width: 100% !important;
    padding: 0.6rem 0.6rem 0rem;
    color: #008a32;
  }

  #contest2025 section.content td {
    display: block;
    width: 100% !important;
    padding: 0rem 0.6rem 1.8rem;
    text-align: left;
  }
}

#contest2025 section.content th {
  font-weight: bold;
  width: 20%;
}

#contest2025 section.content td {
  width: 78%;
}

#contest2025 section.content img.etnry_btn {
  min-width: 410px;
  width: 70%;
  margin: 0 auto 1rem;
}

@media (max-width: 896px) {
  #contest2025 section.content img.etnry_btn {
    min-width: 100%;
    width: 70%;
    margin: 0 auto 1rem;
  }
}

#contest2025 section.content hr {
  margin: 3rem 0;
  border: 1px solid #bbb;
}

#contest2025 section.content span.dandai {
  color: #f00;
  font-weight: bold;
}

#contest2025 section.content span.shou {
  color: #008a32;
}

@media (max-width: 896px) {
  #contest2025 section.content span.shou {
    display: block;
  }
}

#contest2025 section.content .flex_box {
  display: flex;
  margin-bottom: 2rem;
}

#contest2025 section.content .flex_box .text_box {
  margin-right: 1rem;
}

#contest2025 section.content .flex_box .text_box span.bold {
  font-size: 18px;
  color: #E5004F;
  font-weight: bold;
}

#contest2025 section.content .flex_box img {
  width: 300px;
  height: auto;
}

@media (max-width: 896px) {
  #contest2025 section.content .flex_box {
    display: block;
    margin-bottom: 2rem;
  }

  #contest2025 section.content .flex_box .text_box {
    margin-right: 0;
    margin-bottom: 1rem;
  }

  #contest2025 section.content .flex_box img {
    width: 300px;
    height: auto;
    margin: 0 auto;
  }
}

#contest2025 section.content ul.koen li {
  display: inline-block;
}

#contest2025 section.content ul.koen li:not(:last-child)::after {
  content: "・";
  margin: 0 0.4em;
  /* 点の前後の余白調整 */
}

@media (max-width: 896px) {
  #contest2025 section.content ul.koen {
    list-style: disc !important;
    margin: 0;
    padding: 0 0 0.4rem;
  }

  #contest2025 section.content ul.koen li {
    display: block;
  }

  #contest2025 section.content ul.koen li:not(:last-child)::after {
    content: none;
    margin: 0 0.4em;
    /* 点の前後の余白調整 */
  }

}

/* バナーエリア */

#contest2025 section.banner_area {
  display: flex;
  justify-content: space-between;
  max-width: 900px;
  margin: 0 auto 3rem;
  flex-wrap: wrap;
}

@media (max-width: 896px) {
  #contest2025 section.banner_area {
    display: block;
  }
}

#contest2025 section.banner_area img {
  max-width: 400px;
  margin-bottom: 2rem;
}

@media (max-width: 896px) {
  #contest2025 section.banner_area img {
    max-width: 80%;
    margin: 0 auto 1rem;
  }
}

footer {
  background: url(../img/bg_footer.png) no-repeat bottom center;
  padding: 11rem 0 4rem;
  color: #fff;
  text-align: center;
  position: relative;
}

footer a {
  color: #fff;
  font-size: 14px;
  display: inline-block;
  margin: 0 0.5rem;
}

footer img.car {
  position: absolute;
  width: 290px;
  top: 0px;
  right: 60px;
}

@media (max-width: 896px) {
  footer {
    padding: 6.5rem 0 3rem;
  }

  footer .footer-sub-menu {
    line-height: 1.6;
  }

  footer img.car {
    position: absolute;
    width: 50%;
    top: 0px;
    right: 10px;
  }

  footer p.copy {
    font-size: 12px;
  }
}

.go-top {
  position: fixed;
  bottom: 50px;
  right: 50px;
}

.go-top img {
  width: 100px;
  height: auto;
}

@media (max-width: 896px) {
  .go-top {
    bottom: 30px;
    right: 30px;
  }

  .go-top img {
    width: 80px;
    height: auto;
  }
}