@charset "UTF-8";

/* === 本文（コンテンツ） =============== */


/* 見出し */
h1 {
  margin: 2rem 0 4rem 0;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
}

h2 {
  margin: 2rem 0;
  padding: 0.5rem 1rem;
  font-size: 1.3rem;
  font-weight: bold;
  border: 2px dotted #666;
}

h3 {
  margin: 1rem 0;
  font-size: 1.2rem;
  font-weight: bold;
  border-left: 10px solid #333;
  padding-left:10px;
}

h4 {
  margin: 1rem 0;
  font-size: 1.1rem;
  font-weight: bold;
}

h5 {
  font-size: 1.1rem;
  font-weight: bold;
}
@media (min-width:768px) {
  h1 {
    font-size: 2.4rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.4rem;
  }
  
  h4 {
    font-size: 1.3rem;
  }
  h5 {
  font-size: 1.2rem;
}
}

/* 強調 */
strong {
  color: #f00;
  font-weight: bold;
}
.aka {
  color: #f00;
}

/* 導入文 */
.lead {
  font-size: 1.1rem;
}

.catch01 {
  text-align: center;
  font-size: 1.5rem;
}

.catch02 {
  text-align: center;
  font-size: 1.1rem;
  margin: 30px 0 0 0;
}
@media (min-width:768px) {
.catch01 {
  font-size: 1.8rem;
}

.catch02 {
  font-size: 1.3rem;
  margin: 30px 0 0 0;
}
}

/* 囲み */
.kakomi {
  margin: 2rem 0;
  padding: 1.4rem 1.6rem;
  border: 1px solid #ccc;
}

.kakomi h4 {
  margin: 0 0 1rem 0;
}

.kakomi p {
  font-size: 0.95rem;
  line-height: 1.7;
}

.kakomi p:last-child {
  margin-bottom: 0;
}

/* 注釈 */
.hosoku {
  margin-bottom: 2rem;
  font-size: 0.8rem;
  line-height: 1.5;
}

.hosoku ul {
  margin: 2rem 0;
  list-style: none;
}

.hosoku li {
  margin-left: 1rem;
  margin-bottom: 0.3rem;
  text-indent: -1rem;
}

.hosoku li::before {
  content: '※';
  margin-right: 0.2rem;
}

/* テーブル */
table {
  width: 100%;
  margin: 2rem 0;
  border-collapse: collapse;
  border-spacing: 0;
}

th,
td {
  padding: 0.3rem 0.5rem;
  font-size: 0.9rem;
  border: 1px solid #ccc;
}

th {
  background-color: #f1f1f1;
  vertical-align: middle;
  font-weight: bold;
}
/* === マージン調整 ===============  */
.mb_0 {
  margin-bottom: 0;
}
.mb_1 {
  margin-bottom: 1rem;
}
.mb_2 {
  margin-bottom: 2rem;
}
.mb_3 {
  margin-bottom: 3rem;
}
.mb_4 {
  margin-bottom: 4rem;
}
.mb_5 {
  margin-bottom: 5rem;
}
.mt_0 {
  margin-bottom: 0;
}
.mt_1 {
  margin-top: 1rem;
}
.mt_2 {
  margin-top: 2rem;
}
.mt_3 {
  margin-top: 3rem;
}
.mt_4 {
  margin-top: 4rem;
}
.mt_5 {
  margin-top: 5rem;
}

.mx_auto {
  margin-left: auto!important;
  margin-right: auto!important;
}

.my_auto {
  margin-top: auto!important;
  margin-bottom: auto!important;
}

/* テキスト配置 */
.text_center {
  text-align: center!important;
}
.text_right {
  text-align: right!important;
}
.text_left {
  text-align: left!important;
}

/* === 分割 =============== */

.bunkatsu {
  display: block;
}

.bun02_item {
  padding: 10px;
}

.bun03_item {
  padding: 10px;
}

.bun03_item02 {
  padding: 10px;
}

.bun04_item {
  padding: 10px;
}

.bun05_item {
  padding: 10px;
}

.bun06_item {
  padding: 10px;
}

.bun07_item {
  padding: 10px;
}

@media (min-width:768px) {
.bunkatsu {
  display: flex;
  flex-wrap: wrap;
}

/* 2分割 */
.bun02_item {
  flex: 0 1 50%;
}
/* 3分割 */
.bun03_item {
  flex: 0 1 33.3333%;
}
.bun03_item02 {
  flex: 0 1 66.6666%;
}
/* 4分割 */
.bun04_item {
  flex: 0 1 25%;
}
/* 5分割 */
.bun05_item {
  flex: 0 1 20%;
}
}

/* === 分割配置調整 =============== */

.j_c_center {
  justify-content: center;
}

/* === 順番入れ替え =============== */

@media (min-width:768px) {
.order01 {
  order: 1;
}

.order02 {
  order: 2;
}
}

/* === 表示・非表示 =============== */

.disp_pc {
  display: none;
}
@media (min-width:768px) {
.disp_pc {
  display: block;
}
.disp_sp {
  display: none;
}
}

/* === 標準ボタン =============== */

/* 詳細へボタン */
    .more_btn a {
      position: relative;
      display: inline-block;
      padding: 1rem 1.5rem;
      color: #333;
      line-height: 1;
      background-color: #ffff00;
      box-shadow: 0 4px #cccc00;
      border-radius: 100vh;
      text-decoration: none;
      text-align: center;
      position: relative;
      top: 0;
		display: block;
  
    }

    .more_btn a:hover {
      top: 4px;
    }


    /* カーソルが当たったとき */
    .more_btn a:hover {
      color: #000;
      background-color: #f9fa81;
    }
    .more_btn a:active {
      color: #fff;
      background-color: #f9fa81;
    }

/* 詳細へボタン　アウトライン */
    .m_outline_btn a {
      position: relative;
      display: inline-block;
      padding: 1rem 2.5rem 1rem 1.2rem;
      color: #555555;
      line-height: 1;
      background-color: #fff;
      border-radius: 0;
      text-decoration: none;
      text-align: center;
      border: 2px solid #555555;
    }

    /* カーソルが当たったとき */
    .m_outline_btn a:hover {
      color: #fff;
      background-color: #777777;
    }
    .m_outline_btn a:active {
      color: #fff;
      background-color: #333333;
    }

    .block_btn a {
display: block;
    }


/* === メールフォーム ==================== */
/* 見出し */
.ouboform h4 {
  display: inline-block;
  margin-bottom: 0;
}
    /* 必須項目 */
strong {
  color: #f00;
}

/* グループ化 */
fieldset {
  margin: 0;
  padding: 0 2rem 2rem 2rem;
  border-style: none;
  border-radius: 10px;
  background-color: #f1f1f1;
}

/* フォーム入力欄 */
input[type="text"], input[type="email"], input[type="tel"] {
  box-sizing: border-box;
  width: 100%;
  padding: 15px;
  font-size: 0.9rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

input[name="zip"] {
  width: unset;
}

/* ラジオボタンとチェックボックス */
input[type="radio"], input[type="checkbox"] {
  margin-left: 30px;
  margin-right: 10px;
}

/*フォームボタン*/
.form_btn {
  text-align: center;
}

input[type="submit"] {
  margin: 2rem 0;
  padding: 1rem 1.5rem;
  font-size: 1rem; /* どこかで小さくした？ */
  color: #fff;
  border: unset;
  border-radius: 5px;
  background-color: #39f;
}

input[type="submit"]:hover {
  background-color: #00f;
}

/* プルダウンメニュー */
select {
  display: inline-block;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  background-color: #fff;
}

/* 備考欄 */
textarea {
  box-sizing: border-box;
  width: 100%;
  padding: 15px;
  font-family: sans-serif;
  font-size: 0.9rem;
  border: 1px solid #ccc;
}


/* === ぬりえ ==================== */


/*背景*/
.background {
  background: url(images/syutyusen_sp.svg);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
}

/*top画像*/
.top-img {
  margin-top: 20px;
  margin-bottom: 20px;
}

.top-width {
  padding: 0 15px
}

@media (min-width:768px) {
.top-img {
  margin-top: 40px;
  margin-bottom: 20px;
}
.background {
  background: url(images/syutyusen.svg);
  background-size: 100%;
}
  .top-width {
    max-width: 1200px;
    margin: 0 auto;
  }
}

.oubokikan {
	background-color: #f0621c;
	padding: 20px 0;
}

.oubokikan .container {
	padding: 0 15px;
}

@media (min-width:768px) {
.oubokikan .container {
	padding: 0 5px;
}
}

.nurie_area h2 {
  font-size: 2rem;
  text-align: center;
  border: none;
  margin-top: 0px;
  margin-bottom: 70px;
}


@media (min-width:768px) {


  .nurie_kikan p {
    display: inline-block;
}
}

/* === 受賞者プレゼント === */
.nurie_present_area {
  background-color: #f69d42;
	padding-top: 1rem;
	padding-bottom: 1px;

}
.nurie_present {
  margin: 30px auto 80px;
  padding: 20px 20px 0 20px;
  border: 5px solid #fff;
  background-color: #fff;
  position: relative;

}

.nurie_present .nurie_p_tit {
  width: 90%;
  max-width: 450px;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width:768px) {
  
.nurie_present_area {
	padding-top: 4rem;
	padding-bottom: 2rem;

}
.nurie_present {
  margin: 30px auto 120px;
  padding: 30px 30px 0;
  font-size: 0.9rem;
}

.nurie_present .nurie_p_tit {
  width: 80%;
  top: -50px;
}
}
.nurie_present .nurie_p_tit p{
  display: inline-block;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.5;
  margin: 0 auto;
  padding: 0 10px;
}
.nurie_present .nurie_p_tit p span {
  padding: 5px 10px;
  background: linear-gradient(transparent 60%, #aaa 60%);
}

/* プレゼント囲み */
.nurie_p_waku {
  padding: 30px 10px;
}
.nurie_p_waku .row {
  align-items:center;
}
.nurie_p_content {
  padding: 15px;
  background-color: #d1f8b5;
  background-color: #ffffa8;
  border-radius: 10px;
  margin-top: 15px;
  margin-bottom: 5px;

}
.nurie_p_content p {
margin: 0.5rem 0;
}
.nurie_p_content img {
  max-width: 200px;
  margin: 0 auto;
  }

@media (min-width: 768px) {
.nurie_p_content {
  margin-top: 0;
  margin-bottom: 30px;

}
}
.yushu_shou {
  display: inline-block;
  padding:0px 10px;
  color: #000;
  font-size: 1.6rem;
  position: relative;
  margin-left: 10px;
  background: #fff;
  border-radius: 10px;
}

.yushu_shou::before {
  display: block;
  content: "";
  width: 70px;
  height: 70px;
  background: url(images/kin.svg);
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: -30px;
  left: -55px;
}

.kingas_shou {
  display: inline-block;
  padding:4px 10px;
  color: #000;
  font-size: 1.4rem;
  position: relative;
  margin-left: 10px;
  background: #fff;
  border-radius: 10px;
}

.kingas_shou::before {
  display: block;
  content: "";
  width: 70px;
  height: 70px;
  background: url(images/gin.svg);
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: -30px;
  left: -55px;
}
.kids_shou {
  display: inline-block;
  padding:5px 10px;
  color: #000;
  font-size: 1.2rem;
  position: relative;
  margin-left: 10px;
  background: #fff;
  border-radius: 10px;
}
.senior_shou {
  display: inline-block;
  padding:5px 10px;
  color: #000;
  font-size: 1.2rem;
  position: relative;
  margin-left: 10px;
  background: #fff;
  border-radius: 10px;
}

.kids_shou::before,
.senior_shou::before {
  display: block;
  content: "";
  width: 70px;
  height: 70px;
  background: url(images/dou.svg);
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: -30px;
  left: -55px;
}

/* 参加方法 */
.nurie_sanka {
  padding: 60px 20px 30px 20px;
  background: #fff;
  margin-bottom: 20px;
  margin-top: -40px;
  border: 5px solid #fff;
  position: relative;
}

@media (min-width: 768px) {
.nurie_sanka {
  padding: 70px 30px 50px 30px;
  margin-bottom: 70px;
}
  .nurie_sanka {
  padding: 70px 30px 0 30px;
  }
}
.sanka-tit {
  width: 80%;
  max-width: 380px;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 768px) {
.sanka-tit {
  width: 70%;
}
}
/*方法1,2*/
.nurie_sanka .way {
  width: 80px;
}
/*吹き出し*/
.hukidasi {
  border: 2px solid #000;
  border-radius: 20px;
  text-align: center;
  padding: 15px 0;
  margin-bottom: 30px;
  position: relative;
}

.hukidasi::before {
  position: absolute;
  content: "";
  background-color: #fff;
  width: 20px;
  height: 20px;
  border-bottom: #000 2px solid;
  border-right: #000 2px solid;
  transform: rotate(-135deg);
  top: -12px;
}

.hukidasi p {
  margin-bottom: 0;
  font-weight: bold;
}
/*曜日の色*/
.nurie_sanka .blue {
  color: #00d;
}

.nurie_sanka .red {
  color: #d00;
}
/**/
.nurie_sanka .big {
  font-size: 1.2rem;
  color: #ff130d;
}

.nurie_img img {
  max-width: 220px;
  text-align: center;
  margin: 10px auto;
}

@media (min-width:768px) {
  .nurie_img img {
    max-width: 380px;
    margin: 30px auto;
  }
}

.nurie_sanka .more_btn {
  text-align: center;
}

.nurie_sanka .more_btn a {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
}
@media (min-width:768px) {
  .nurie_sanka .more_btn a {
    width: 350px;
  }
.nurie_sanka .order_1 {
 order: 1;
}
.nurie_sanka .order_2 {
  order: 2;
  }
}
@media (min-width: 992px) {
  .nurie_sanka .more_btn a {
    width: 400px;
  }
}

ol.houhou_2 {
  list-style: none;
  counter-reset: list-counter;
  padding: 0;
  margin: 0 0 2rem 0;
}

ol.houhou_2 li {
  line-height: 1.5;
  margin: 20px 0 20px 0;
  padding-left: 40px;
  position: relative;
  font-size: 1.2rem;
}

ol.houhou_2 li:before {
  content: counter(list-counter);
  counter-increment: list-counter;
  background-color: #ff0000;
  color: #fff;
  box-sizing: border-box;
  border-radius: 50%;
  height: 25px;
  width: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 85%;
}

p.text_l {
  font-size: 1.2rem;
  color: #ff6600;
}

/* 応募要項 */
:root {
  --attention_color: #099edb;
}
.attention_area {
  border: 5px solid var(--attention_color);
  margin: 20px 0 !important;
  border-radius: 20px;
}

@media (min-width:768px) {
.attention_area {
  margin: 70px 0 !important;
}

  }
  
.attention_area h3 {
  text-align: center;
  margin:0;
  padding: 15px 0;
  border: none;
  background-color: var(--attention_color);
  border-radius: 15px 15px 0 0;
  color: #fff;
  
}

.attention_area h4 {
  font-size: 1.2rem;
  border-bottom: 1px solid #333;
  width: fit-content;
  padding: 2px 10px;
}

.attention_content {
  padding: 20px 20px 0 20px !important;
}
.attention_content02 {
  font-size: 0.9rem;
  border: 0 solid !important;
  margin: 50px 0;
}
.attention_content02 h4 {
  font-size: 1rem;
}
