@charset "UTF-8";
/* CSS Document */
html {
  font-size: 100%;
}
body {
  max-width: 900px;
  color: #76491b;
  margin: auto;
  background-color: #f2f5f8;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 0.8rem;
  padding: 0.5rem;
}
img {
  max-width: 100%;
  margin: auto;
}
main {
  background-image: url("../img/bg.png");
  background-size: contain;
  background-repeat: repeat-y;
}
h1 {
	max-width: 350px;
  background-image: url("../img/main.png");
  background-size: 350px auto;
  background-repeat: no-repeat;
  padding: 5rem 1rem;
  margin: auto;
}


a {
  text-decoration: none;
  color: #76491b;
}
h1 a {
  font-size: 0.5rem;
  border: 3px #fff solid;
  padding: 0 1rem;
  margin: 2rem;
  border-radius: 10px;
}
a.hokkaidou {
  background-color: #bccee7;
  position: absolute;
  left: 10%;
  top: 22%;
}
a.yokohama {
  background-color: #f5c4bd;
  position: absolute;
  left: 10%;
  top: 30%;
}
a.oosaka {
  background-color: #fbdc87;
  position: absolute;
  left: 10%;
  top: 39%;
}
h2 {
font-size: 1.2rem;
  text-align: center;
  text-shadow:
    3px 0 0 #fff, -3px 0 0 #fff, 0 3px 0 #fff, 0 -3px 0 #fff;
}
h3 {
  margin-top: 2rem;
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 0.5rem;
}
h4 {
  font-size: 1.1rem;
  text-align: center;
}

.big{
	text-align: center;
	font-size: 1.2rem;
	padding: 1rem;
}

.mainpage{
	font-size: 1.3rem;
text-align: end;
	margin-bottom: 2rem;
}
/* タイトル付きボックス（ラベル） */
.title {
  position: relative;
}
.cstm-box-label {
  --box-color: #76491b; /* 基本色 */
  position: relative; /* タイトル配置の基準 */
  margin: 2em auto; /* 外側余白（上下・中央寄せ） */
  border: 2px solid var(--box-color); /* 枠線 */
  border-radius: 10px; /* 角丸 */
  max-width: 800px; /* 最大幅 */
	width:100%;
}
.cstm-box-label .box-title {
  position: absolute; /* タイトル位置指定 */
  top: -0.5em; /* 上に少し移動 */
  left: 1em; /* 左端からの距離 */
  background-color: #f2f5f8;
  color: #bccee7;
  ; /* タイトル文字色 */
  padding: 0 .5em; /* 内側余白 */
  font-weight: bold; /* 太字 */
  line-height: 1; /* 行の高さ */
  display: inline-block; /* 幅を内容に合わせる */
  width: auto; /* 幅自動調整 */
  max-width: calc(100% - 2em); /* 左右の余白を考慮 */
  white-space: nowrap; /* 折り返さない */
  overflow: hidden; /* はみ出し非表示 */
  text-overflow: ellipsis; /* 省略記号表示 */
}
.cstm-box-label .box-content {
  padding: 2em; /* 内側余白 */
}
/* 段落の余白リセット */
.cstm-box-label p {
  margin: 0;
}
.box-content {
  display: flex;
  gap: 1rem;
}
.box-photo {
  text-align: center;
}
.box-photo img {
  margin-bottom: 1rem;
}
.center{
	width: 100%;
	justify-content: center;
}
.btn {
  display: flex;
  gap: 0.5rem;
  font-size: 1rem;
}
.blue {
  border-bottom: solid #bccee7 4px;
}
.pink {
  border-bottom: solid #f5c4bd 4px;
}
.yellow {
  border-bottom: solid #fbdc87 4px;
}
.sample {
  border: 1px #76491b solid;
  padding: 0.3rem 1rem;
  border-radius: 30px;
  width: 100%;
  white-space: nowrap;
}
.hokkaidou2 {
  border: 1px #76491b solid;
  padding: 0.3rem 0.5rem;
  border-radius: 30px;
  background-color: #bccee7;
  width: 100%;
  white-space: nowrap;
}
.yokohama2 {
  border: 1px #76491b solid;
  padding: 0.3rem 0.5rem;
  border-radius: 30px;
  background-color: #f5c4bd;
  width: 100%;
  white-space: nowrap;
}
.oosaka2 {
  border: 1px #76491b solid;
  padding: 0.3rem 0.5rem;
  border-radius: 30px;
  background-color: #fbdc87;
  width: 100%;
  white-space: nowrap;
}
.song {
  padding: 1rem;
}

/* ホバーすると画像が浮かんでくる仕様 */
a.imgtap {
  display: inline-block;
  position: relative;
}
a.imgtap img {
  display: block;
}
a.imgtap .cover {
  position: absolute;
  inset: 0;
  width: 50%;
  height: 50%;
  object-fit: contain;
  opacity: 0;
  transition: .3s;
}
a.imgtap:hover .cover {
  opacity: 1;
}

img.base{
  width: 200px;
  height: auto; 
}
/*------------デスクトップ版-------------*/
@media(min-width:800px) {
  h1 {
	  min-width: 700px;
    background-size: 700px auto;
  }
  .box {
    display: flex;
    gap: 0.5rem;
  }
  .box-photo {
    width: 60%;
  }
  .box-text {
    width: 40%;
  }
  h1 {
    padding: 12rem 1rem;
  }
  h1 a {
    font-size: 1.5rem;
  }
  a.hokkaidou {
    position: absolute;
    left: 25%;
    top: 28%;
  }
  a.yokohama {
    background-color: #f5c4bd;
    position: absolute;
    left: 25%;
    top: 39%;
  }
  a.oosaka {
    background-color: #fbdc87;
    position: absolute;
    left: 25%;
    top: 50%;
  }
  h2 {
    font-size: 2rem;
  }
	img.base{
  width: 150px;
  height: auto; 
}
.cstm-box-label {

	width:50%;
			margin: 2em 0;
}	
	.box{
		justify-content:flex-start !important;
		  text-align: left !important;

	}	
}