body{
	background: #f3f4f4;
	color: #2a2f33;
}

@import "https://use.fontawesome.com/releases/v5.13.0/css/all.css";


/*　コンテンツ下のスペース空間 */
.space-bottom-0.5rem{
	height: 0.5rem;
}
.space-bottom-1rem{
	height: 1rem;
}
.space-bottom-2rem{
	height: 2rem;
}
.space-bottom-3rem{
	height: 3rem;
}
.space-bottom-4rem{
	height: 4rem;
}
@media (max-width: 768px) {
	.space-bottom-4rem{
		height: 0;
		}
}

/* 画像　通常2列　レスポンシブ1列 */
    .container-image {
      display: flex;
      flex-wrap: wrap;
      gap: 25px;
      margin-left: 50px;
      margin-right: 50px;
    }

    .item {
      flex: 1 1 45%;
      box-sizing: border-box;
    }

    .item img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 1rem;
      
    }

    .item p {
      margin-top: 10px;
      font-size: 1.5rem;
      text-align: center;
      
      font-family: "Zen Maru Gothic", sans-serif;
	  font-weight: 500;
	  font-style: normal;
    }

    /* レスポンシブ対応：画面幅が768px以下なら縦並び */
    @media (max-width: 768px) {
      .container-image {
        flex-direction: column;
        margin-left: 10px;
        margin-right: 10px;
      }
      .item {
        flex: 1 1 100%;
      }
      .item p {
	      font-size: 1.2rem;
      }
    }



/* 画像　通常1列　レスポンシブ1列 */
    .container-image-1 {
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin: 0 50px;
    }

    .container-image-1-item {
      width: 100%;
      box-sizing: border-box;
    }

    .container-image-1-item img {
      width: 100%;
      height: auto;
      display: block;
    }

    .container-image-1-item p {
      margin-top: 10px;
      font-size: 1.2rem;
      text-align: center;
    }
    @media (max-width: 768px) {
      .container-image-1 {
        flex-direction: column;
        margin-left: 10px;
        margin-right: 10px;
      }

      .container-image-1-item {
  flex: 1 1 100%;
}

    }



/* メインヘッダー画像 */
.main-picture {
  margin-top: 0px;
  display: block;
}
@media (max-width: 768px) {
  .main-picture img {
    margin-top: 68px;
  }
}
.main-picture img {
  width: 100%;
  height: auto;
  display: block;
}


/* 紹介画像　1 */
.centered-box {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 20px;
  background-image: linear-gradient(150deg, rgba(242, 255, 140, 1) 10%, rgba(255, 229, 208, 0.5) 49%, rgba(166, 245, 249, 1));
  padding: 30px 0;
  text-align: center;
  margin-top: 50px;

  background-image: url(image/bg1.jpg);
  background-size: 50% auto;
  background-repeat: repeat;
  background-position: center center;

}
@media (max-width: 768px) {
	.centered-box {
		margin: 20px 15px 10px 15px;
		padding: 25px 10px;
		width: auto;
		background-size: auto 100%; /* 横は自動、縦を100%にフィット */
		background-repeat: no-repeat; /* 縦に合わせる場合はリピートしない方が自然 */
	}
}
.centered-box .title{
	font-size: 4rem;
	font-family: "Zen Maru Gothic", sans-serif;
	font-weight: 600;
	font-style: normal;
	margin-bottom: 20px;
}
@media (max-width: 768px) {
	.centered-box .title{
		font-size: 2.5rem;
		}
}	


/* 紹介画像　2 */
.centered-box2 {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 20px;
  background-image: linear-gradient(150deg, rgba(254, 158, 139, 1) 10%, rgba(255, 229, 208, 0.5) 49%, rgba(166, 245, 249, 1));
  padding: 30px 0;
  text-align: center;
  margin-top: 50px;

  background-image: url(images/bg3.jpg);
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-size: cover; 
  background-position: center center;

}
@media (max-width: 768px) {
	.centered-box2 {
		margin: 20px 15px 20px 15px;
		padding: 25px 10px;
		width: auto;
	}
}
.centered-box2 .title{
	font-size: 4rem;
	font-family: "Zen Maru Gothic", sans-serif;
	font-weight: 600;
	font-style: normal;
	margin-bottom: 20px;
}
@media (max-width: 768px) {
	.centered-box2 .title{
		font-size: 2.5rem;
		}
}





/* カラーラインナップ */
h3.koguchizome {
  font-size: 4rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 600;
  font-style: normal;
  margin-bottom: 20px;
  text-align: center; /* ← これだけでOK */
}
@media (max-width: 768px) {
	h3.koguchizome {
		font-size: 3rem;
		}
}
.box-color {
  width: 100%;
  background-color: #f0f0f0; /* 親の背景 */
  padding: 50px 0;
  margin: 40px 0 0 0;
}

.box-color .item {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
  background-color: #fdd4d4; /* 子の背景（赤） */
  background-image: linear-gradient(170deg, rgba(18,188,211,1) 10%, rgba(235,255,217,0.5) 49%, rgba(242,245,139,1) 100%);
  padding: 60px;
  border-radius: 20px;
  margin-bottom: 50px;
}

.box-color .item .box {
  	background-color: white; /* 孫の背景（白） */
  	padding: 20px;
  	border-radius: 15px;
  	margin-bottom: 20px;
	font-family: "Zen Maru Gothic", sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: 1.5rem;
}
.box-color .item .box .center{
	text-align: center;
	font-family: "Zen Maru Gothic", sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: 1.5rem;
}


.box-color .item .box .all-color{
	line-height: 2.0;
	font-family: "Zen Maru Gothic", sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: 1.5rem;
	padding: 10px 20px;
	}


.box-color h4{
	font-family: "Zen Maru Gothic", sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: 4rem;
	text-align: center;
	padding-bottom: 10px;
	letter-spacing: 0.2em; /* ← 字間を少し広げる例 */
	color: white;
	text-shadow: 0px 0px 10px #3a7ea5;
	margin-bottom: 15px;
	
}

.box h5.charactor{
	font-family: "Zen Maru Gothic", sans-serif;
	font-weight: 600;
	font-style: normal;
	font-size: 2.5rem;
	text-align: center;
	padding-bottom: 10px;
	letter-spacing: 0.2em;
	
	background-color: #fff176;
	background: linear-gradient(transparent 60%, #a3f3fa 60%);
	padding: 0.2em 0.8em;
	border-radius: 0.2em;
	margin-bottom: 10px;
}
.box-color h5.color{
	font-family: "Zen Maru Gothic", sans-serif;
	font-weight: 600;
	font-style: normal;
	font-size: 2.5rem;
	text-align: center;
	padding-bottom: 10px;
	letter-spacing: 0.2em;
	
	background-color: #fff176;
	background: linear-gradient(transparent 60%, #fff176 60%);
	padding: 0.2em 0.8em;
	border-radius: 0.2em;
	margin-bottom: 10px;
}
.box-color h5.note{
	font-family: "Zen Maru Gothic", sans-serif;
	font-weight: 600;
	font-style: normal;
	font-size: 2.0rem;
	text-align: center;
	padding-bottom: 10px;
	letter-spacing: 0.2em;
	
	background-color: #fff176;
	background: linear-gradient(transparent 60%, #a3f3fa 60%);
	padding: 0.2em 0.8em;
	border-radius: 0.2em;
	margin-bottom: 10px;
}

.box-color .item .box a{
	font-family: "Zen Maru Gothic", sans-serif;
	font-weight: 500;
	font-style: normal;
	color: #40cfd7;
}
.box-color .item .box a:hover{
	color: #40cfd7;
}

@media (max-width: 768px) {
	.box-color{
		margin-top: 15px;
		margin-bottom: -20px;
	}
	.box-color .item {
		margin: 0 15px;
		width: auto;
		padding: 10px;
		margin-bottom: 10px;
	}
	.box-color .item .box,
	.box-color .item .box .all-color,
	.box-color .item .box .center {
		font-size: 1.5rem;
	}
	.box-color .item .box .center {
		text-align: left;
	}
	.box-color .item .box{
		padding: 10px;
	}
	.box-color h4{
		font-size: 2.8rem;
		margin-top: 15px;
		margin-bottom: 10px;
	}
}


/* 画像2列表示　レスポンシブ1列 */
.image-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
  margin-bottom: 30px;
}

.image-item {
  flex: 1 1 calc(50% - 16px); /* 2列用 */
  box-sizing: border-box;
  text-align: center;
}

.image-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.caption {
  margin-top: 8px;
  font-size: 14px;
  color: #555;
}

@media (max-width: 768px) {
  .image-item {
    flex: 1 1 100%;
  }
}


/* 画像1列表示 */
.single-image-block {
  text-align: center;
  margin-bottom: 30px;
  margin-left: 0;
  margin-right: 0;
}
@media (max-width: 768px) {
	.single-image-block {
		margin-bottom: 10px;
	}
}
.single-image-block img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px; /* お好みで */
}

.single-caption {
  margin-top: 8px;
  font-size: 14px;
  color: #555;
}


.zen-maru-gothic-regular {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.line-height{
	line-height:2.0;
}




/* 注意点 */
.box-caution {
  width: 100%;
  background-color: #f1f4ca; /* 親の背景 */
  padding: 50px 15px;
}

.box-caution .item {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
  background-color: #fdd4d4; /* 子の背景（赤） */
  background-image: linear-gradient(150deg, rgba(242, 245, 139, 1) 10%, rgba(202, 255, 181, 0.5) 49%, rgba(166, 245, 249, 1));
  padding: 20px;
  border-radius: 20px;
  margin-bottom: 0px;
}

.box-caution .item .box {
  	background-color: white; /* 孫の背景（白） */
  	padding: 20px;
  	border-radius: 15px;
	font-family: "Zen Maru Gothic", sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: 1.5rem;
}
.box-caution .item .box p{
	text-align: center;
	line-height: 2.0;
}
@media (max-width: 768px) {
	.box-caution{
		padding: 30px 15px;
	}
	.box-caution .item .box p{
		text-align: left;
		font-size: 1.3rem;
		}
}

/* 仕様 */
.box-spec {
  width: 100%;
  background-color: #e6eab9; /* 親の背景 */
  padding: 50px 15px;
  margin-bottom: -40px;
}

.box-spec .item {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
  background-color: #fdd4d4; /* 子の背景（赤） */
  background-image: linear-gradient(150deg, rgba(242, 245, 139, 1) 10%, rgba(202, 255, 181, 0.5) 49%, rgba(166, 245, 249, 1));
  padding: 20px;
  border-radius: 20px;
  margin-bottom: 0px;
}

.box-spec .item .box {
  	background-color: white; /* 孫の背景（白） */
  	padding: 20px;
  	border-radius: 15px;
	font-family: "Zen Maru Gothic", sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: 1.5rem;
}
.box-spec .item .box p{
	text-align: center;
	line-height: 2.0;
}
@media (max-width: 768px) {
	.box-spec{
		padding: 30px 15px;
		margin-bottom: 0px;
	}
	.box-spec .item .box p{
		text-align: left;
		font-size: 1.3rem;
		}
}


/* 締切 */
.box-date {
  width: 100%;
  background-color: #f8dade; /* 親の背景 */
  padding: 50px 15px;
}

.box-date .item {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
  background-color: #fdd4d4; /* 子の背景（赤） */
  background-image: linear-gradient(150deg, rgba(242, 245, 139, 1) 10%, rgba(202, 255, 181, 0.5) 49%, rgba(166, 245, 249, 1));
  padding: 20px;
  border-radius: 20px;
  margin-bottom: 0px;
}

.box-date .item .box {
  	background-color: white; /* 孫の背景（白） */
  	padding: 20px;
  	border-radius: 15px;
	font-family: "Zen Maru Gothic", sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: 1.5rem;
}
.box-date .item .box p{
	text-align: center;
	line-height: 2.0;
}
@media (max-width: 768px) {
	.box-date{
		padding: 30px 15px;
	}
	.box-date .item .box p{
		text-align: left;
		font-size: 1.3rem;
		}
}



/* 最下部ありがとうございましたボックス */
.box-btm {
  width: 100%;
  background-color: #dddddd; /* 親の背景 */
  background-image: linear-gradient(150deg, rgba(242, 245, 139, 1) 10%, rgba(202, 255, 181, 0.5) 49%, rgba(166, 245, 249, 1));
  padding: 50px 15px;
}

.box-btm .item {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
  background-color: #fdd4d4; /* 子の背景（赤） */
  background-image: linear-gradient(150deg, rgba(166, 245, 249, 1) 10%, rgba(235, 255, 217, 0.5) 49%, rgba(242, 245, 139, 1));
  padding: 20px;
  border-radius: 20px;
  margin-bottom: 0px;
}

.box-btm .item .box {
  	background-color: white; /* 孫の背景（白） */
  	padding: 20px;
  	border-radius: 15px;
	font-family: "Zen Maru Gothic", sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: 1.5rem;
}
.box-btm .item .box p{
	text-align: center;
	line-height: 2.0;
}
@media (max-width: 768px) {
	.box-btm{
		padding-top: 30px;
	}
	.box-btm .item .box p{
		text-align: left;
		font-size: 1.3rem;
		}
}




/* ボタン周り */
.submit-base{
	border: none; 
	box-shadow: none; 
  	outline: none; 
  	-webkit-appearance: none; 
  	-moz-appearance: none;
  	appearance: none;  
  
    border-radius: 50px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    margin-top: 10px;
    margin-bottom: 0px;
    padding: 15px 25px;
    transition: 0.3s ease-in-out;
    font-weight: 900;
    font-size: 1.8rem;
    
	font-family: "Zen Maru Gothic", sans-serif;
	font-weight: 500;
	font-style: normal;
    }
.submit-go{
	background: #40cfd7;
    color: white !important;
    max-width: 500px;
    width: 500px;
}
.submit-padding{
	width: ;
}
@media screen and (max-width: 768px) {
  .submit-base {
    width: 100%;     /* ボタンの幅 */
    max-width: 500px; /* 任意：大きくなりすぎ防止 */
    padding: 10px;
    margin: 0 auto;
    font-size: 1.8rem;
    text-align: center;
  }
  .submit-go{
    margin-top: 15px;
    margin-bottom: 5px;
  }
}
.submit-back{
	background-color: #d1d1d1;
    color: #313131;
}
.submit-base:hover {
  background: #fe7e5d;
  color: #FFF;
  cursor: pointer;
}
.submit-base:hover:after {
  border-color: #FFF;
}






/* いろいろ */
.logo-koguchi {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  width: fit-content; /* または必要に応じて指定幅 */
}
.logo-koguchi img{
	width: 500px;
	}
@media (max-width: 768px) {
	.logo-koguchi img{
		width: 80%;}
}

.marker-yellow{
	font-family: "Zen Maru Gothic", sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: 2.0rem;
}

.faws-koguchi{
	font-size: 4rem;
	padding-right: 5px;
}
@media (max-width: 768px) {
	.faws-koguchi{
		font-size: 3rem;
		}
}

.last-image {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 10px;
  width: 100%; /* 追加：画像幅の基準を画面幅に */
}

.last-image img {
  max-width: 100%;
  height: auto;
  display: block;
  width: 60%; /* 通常時 → 画面幅の50% */
  border-radius: 0;
}

@media (max-width: 768px) {
  .last-image {
    margin-top: 25px;
  }

  .last-image img {
    width: 100%; /* スマホなどでは画面幅にフィット */
    border-radius: 0;
  }
}


/* リンク */
.center-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 10px 0;
  padding: 0 10px;
}
.center-links a {
  background-color:#2bb1e2 ;
  color: white;
  text-decoration: none;
  padding: 2rem 15rem;
  border-radius: 5rem;
  font-size: 3.5rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 600;
  transition: background-color 0.4s ease;
  text-align: center;
}
.center-links a {
  flex: 0 1 auto;
}
.center-links a:hover {
  background-color: var(--maincolor);
  color: #333;
  text-decoration: none;
}
@media (max-width: 768px) {
  .center-links {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-bottom: 20px;
    text-align: center;
  }
  .center-links a {
    width: 100%;
    padding: 3rem 3rem;
    font-size: 1.8rem;
    text-align: center;
  }
}



/* 2列テーブル */

table{
  border-collapse: collapse;
  width: 89%;
  margin: 0.5em 3.5em 0em 3.5em;
}
.tb1 th,
.tb1 td{
  padding: 10px;
  border: solid 1px var(--border-lightgray);
  text-align:left;
  box-sizing:border-box;
  font-size: 0.9em;
  line-height: 1.8;
}
.tb1 th {
  background: var(--cell-lightgray);
  color: var(--fontcolor-main);
  font-size: 0.9em;
  width: 250px;
  text-align: center;
  
}
.tb1 td a{
	color: var(--maincolor-link);
}
@media screen and (max-width: 420px) {
  .tb1 {
    width: 91%;
    margin: 0 auto;
  }
  table.tb1 th,
  table.tb1 td {
    display: block;
    width: 100%;
    border-bottom:none;
  }
  .tb1 tr:last-child{
    border-bottom: solid 1px #ccc;
  }
}


.tb1 .faws{
	color: #0eb252;
	margin-right: 5px;
}



/*フェードイン*/
.fade-up-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up-on-scroll.show {
  opacity: 1;
  transform: translateY(0);
}
}

