@charset "UTF-8";
/*各ページ独自のcss設定*/


/*以下に指定を記述する*/
body{
   background-color:#fffbf8;
}
.title{
   font-size: 28px;
   color: #333333;
   text-align: center;
   margin-top: 40px;
}


.linebox {
  position: relative;
  width: 265px;
  height: 4px;
  margin: 0 auto;
  margin-bottom: 60px;

}

.line {
  position: absolute;
  height: 4px;
}

.line1 {
  width: 120px;
  background: #edaa0b;
  border-radius: 10px;
  z-index: 3;
  left: 0;
}

.line2 {
  width: 100px;
  background: #f3c759;
  border-radius: 0 10px 10px 0;
  z-index: 2;
  left: 105px;
}

.line3 {
  width: 80px;
  background: #f9e3aa;
  border-radius: 0 10px 10px 0;
  z-index: 1;
  right: 0;
}


h1{
   color:#333333;
   font-size: 28px;
   margin:auto;
}

.back-to-top {
position: fixed;
bottom: 15px;
right: 15px;
background-color: #f3c75999;
color: white;
padding: 10px 14px;
border-radius: 25px;
text-decoration: none;
font-weight: bold;
font-size: 14px;
z-index: 999;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
transition: background-color 0.3s ease;
}

.back-to-top:hover {
background-color: #e07e0099;
}

/*タブ切り替え全体のスタイル*/
.tabs {
  margin-top: 50px;
  padding-bottom: 40px;
  background-color: #fffbf8;
  margin: 0 auto;}

/*タブのスタイル*/
.tab_item {
  width: calc(100%/3);
  height: 50px;
  border-bottom: 2px solid #edaa0b;
  background-color: #f2f2f2;
  line-height: 50px;
  font-size: 16px;
  text-align: center;
  color: #999999FF;
  display: block;
  float: left;
  text-align: center;
  transition: 0.3s all;
  border-top: solid 1px #99999980;
    border-right: solid 1px #99999980;
    border-left: solid 1px #99999980;
	
}
.tab_item:hover {
  opacity: 0.75;
}


/*ラジオボタンを全て消す*/
input[name="tab_item"] {
  display: none;
}



/*タブ切り替えの中身のスタイル*/
.tab_content {
  display: none;
  clear: both;
  overflow: hidden;
  background-color: #fffbf8;
  padding: 24px 16px;
}


/*選択されているタブのコンテンツのみを表示*/
#episode:checked ~ #episode_content,
#hotel:checked ~ #hotel_content,
#qa:checked ~ #qa_content {
  display: block;
}

/*選択されているタブのスタイルを変える*/
.tabs input:checked + .tab_item {
  background-color: #fffbf8;
  color: #333333;
  font-weight: 500;
  border-top: solid 2px #edaa0b;
    border-right: solid 2px #edaa0b;
    border-left: solid 2px #edaa0b;
    border-bottom: solid 2px transparent;
}
.box_komidashi{
  background-color: #ffffff;
    width: 300px;
    height: auto;
    border: 1px solid #edaa0b;
    margin: 0 auto;
    margin-bottom: 30px;
    position: relative;
}

.komidashi{
   width: 228px;
   height: 33px;
   background-color: #fffbf8;
   font-size: 16px;
   border-top: 1.5px solid #edaa0b;
   border-bottom: 1.5px solid #edaa0b;

    place-items: center;
    text-align: center;
    position: relative;
    margin: 0 auto;
    margin-top: 40px;
    margin-bottom: 20px;
	display: flex;
    justify-content: center;
}


.komidashi_p{
   color: #333333;
   font-size: 16px;
   font-weight: 500;
   margin: 0 auto;
   line-height: 33px;
   text-align: center;
   padding-left: 3px;
}

.komidashi::before{
   content:"";
   transform: rotate(135deg);
   border-top: 15px solid #edaa0b;
   border-right: 15px solid transparent;
   border-bottom: 15px solid transparent;
   border-left: 15px solid transparent;
   position: absolute;
   top: -15px;
   left: -14.5px;
}
.komidashi::after{
   content:"";
   transform: rotate(-45deg);
   border-top: 15px solid #edaa0b;
   border-right: 15px solid transparent;
   border-bottom: 15px solid transparent;
   border-left: 15px solid transparent;
   position: absolute;
   top: 17px;
   right: -14.5px;
}

.topic{
   background-color:#fffbf8;
   font-size: 15px;
   position: absolute;
   top: -22px;
   left: 0px;
}


.accordion {
    max-width: 500px;
	margin: 0 auto;
    margin-bottom: 30px;
    border-radius: 5px;
    box-shadow: 0 7px 15px -5px rgb(0 0 0 / 5%);
    background-color: #fff;
	padding: 1px;
}

.accordion summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em;
    color: #333333;
    font-weight: 600;
    cursor: pointer;
}

.accordion summary::-webkit-details-marker {
    display: none;
}

.accordion summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #333333b3;
    border-right: 3px solid #333333b3;
    content: '';
    transition: transform .3s;
}

.accordion[open] summary::after {
    transform: rotate(225deg);
}

.accordion p {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 2em 1.5em;
    color: #333333;
    transition: transform .5s, opacity .5s;
}

.accordion[open] p {
    transform: none;
    opacity: 1;
}

.accordion {
	max-width: 500px;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 7px 15px -5px rgb(0 0 0 / 5%);
    background-color: #f5f5f5;
}

summary{
	display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding-top: 0px;
    padding-bottom: 0px;
    padding: 0.6em 1em;
    color: #3e3a39;
    font-weight: 600;
    cursor: pointer;
}

summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #3e3a39b3;
    border-right: 3px solid #3e3a39b3;
    content: '';
    transition: transform .3s;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding-top: 0px;
    padding-bottom: 0px;
    padding: 0.6em 1em;
    color: #3e3a39;
    font-weight: 600;
    cursor: pointer;
  
}

accordion-content {
   width: 300px;
   height: auto;
  padding: 15px;
  line-height: 1.5;
  background-color: #ffffff;
}

/* アコーディオンが開いている時のヘッダー部分のスタイル */
.accordion[open] .accordion-header {
  background-color: #e7e7e7;
}

/* アコーディオンの矢印を非表示にするためのスタイリング */
.accordion .accordion-header::-webkit-details-marker {
  display: none;
}

.accordion .accordion-header::before {
  content: '';
}

.box {
    background-color: #ffffff;
    width: 335px;
    height: auto;
    border: 1px solid #edaa0b;
    margin: 0 auto;
    padding: 15px;
    position: relative;
	text-decoration: none;
	text-align: justify;
 	text-align-last: left;
	font-size:14px;
}

.c-txtsp{
   font-size: 14px;
}

.topic{
   background-color:#fffbf8;
   font-size: 15px;
   position: absolute;
   top: -22px;
   left: 0px;
}

.pie-chart1 {
		background:
			radial-gradient(
				circle closest-side,
				transparent 40%,
				white 0
			),
			conic-gradient(
				#4e79a7 0,
				#4e79a7 30.9%,
				#f28e2c 0,
				#f28e2c 100%
		);
		position: relative;
		max-width: 500px;
		min-height: 300px;
		margin: auto;
		outline: 1px solid #ccc;
	}

	.pie-chart1 cite {
		position: absolute;
		bottom: 0;
		font-size: 80%;
		padding: 1rem;
		color: gray;
	}
	.pie-chart1 figcaption {
		position: absolute;
		bottom: 1em;
		right: 1em;
		font-size: smaller;
		text-align: left;
	}
	.pie-chart1 span:after {
		display: inline-block;
		content: "";
		width: 0.8em;
		height: 0.8em;
		margin-left: 0.4em;
		height: 0.8em;
		border-radius: 0.2em;
		background: currentColor;
}


.pie-chart2 {
		background:
			radial-gradient(
				circle closest-side,
				transparent 40%,
				white 0
			),
			conic-gradient(
				#4e79a7 0,
				#4e79a7 37.9%,
				#f28e2c 0,
				#f28e2c 72.8%,
				#e15759 0,
				#e15759 74.9%,
				#76b7b2 0,
				#76b7b2 78%,
				#59a14f 0,
				#59a14f 80.1%,
				#edc949 0,
				#edc949 84.7%,
				#af7aa1 0,
				#af7aa1 88.3%,
				#ff9da7 0,
				#ff9da7 93.4%,
				#9c755f 0,
				#9c755f 96.5%,
				#bab0ab 0,
				#bab0ab 100%
		);
		position: relative;
		max-width: 500px;
		min-height: 300px;
		margin: 0;
		outline: 1px solid #ccc;
		margin-top: 25px;
	}

	.pie-chart2 figcaption {
		position: absolute;
		bottom: 1em;
		right: 1em;
		font-size: smaller;
		text-align: left;
	}
	.pie-chart2 span:after {
		display: inline-block;
		content: "";
		width: 0.8em;
		height: 0.8em;
		margin-left: 0.4em;
		height: 0.8em;
		border-radius: 0.2em;
		background: currentColor;
	}

   

.pie-chart3 {
		background:
			radial-gradient(
				circle closest-side,
				transparent 40%,
				white 0
			),
			conic-gradient(
				#4e79a7 0,
				#4e79a7 42.5%,
				#f28e2c 0,
				#f28e2c 50%,
				#e15759 0,
				#e15759 75%,
				#76b7b2 0,
				#76b7b2 100%
		);
		position: relative;
		max-width: 500px;
		min-height: 300px;
		margin: 0;
		outline: 1px solid #ccc;
	}

	.pie-chart3 figcaption {
		position: absolute;
		bottom: 1em;
		right: 1em;
		font-size: smaller;
		text-align: left;
	}
	.pie-chart3 span:after {
		display: inline-block;
		content: "";
		width: 0.8em;
		height: 0.8em;
		margin-left: 0.4em;
		height: 0.8em;
		border-radius: 0.2em;
		background: currentColor;
	}

	.pie-chart4 {
		background:
			radial-gradient(
				circle closest-side,
				transparent 40%,
				white 0
			),
			conic-gradient(
				#4e79a7 0,
				#4e79a7 43.2%,
				#f28e2c 0,
				#f28e2c 59.1%,
				#e15759 0,
				#e15759 61.4%,
				#76b7b2 0,
				#76b7b2 63.7%,
				#59a14f 0,
				#59a14f 93.2%,
				#edc949 0,
				#edc949 100%
		);
		position: relative;
		max-width: 500px;
		min-height: 300px;
		margin: 0;
		outline: 1px solid #ccc;
		margin-top: 25px;
	}

	.pie-chart4 figcaption {
		position: absolute;
		bottom: 1em;
		right: 1em;
		font-size: smaller;
		text-align: left;
	}
	.pie-chart4 span:after {
		display: inline-block;
		content: "";
		width: 0.8em;
		height: 0.8em;
		margin-left: 0.4em;
		height: 0.8em;
		border-radius: 0.2em;
		background: currentColor;
	}

.pie-chart5 {
		background:
			radial-gradient(
				circle closest-side,
				transparent 40%,
				white 0
			),
			conic-gradient(
				#4e79a7 0,
				#4e79a7 13.2%,
				#f28e2c 0,
				#f28e2c 22.6%,
				#e15759 0,
				#e15759 47.1%,
				#76b7b2 0,
				#76b7b2 66%,
				#59a14f 0,
				#59a14f 73.5%,
				#edc949 0,
				#edc949 92.4%,
				#af7aa1 0,
				#af7aa1 99.9%
		);
		position: relative;
		MAX-width: 500px;
		min-height: 300px;
		margin: 0;
		outline: 1px solid #ccc;
		margin-top: 25px;
	}
	.pie-chart5 cite {
		position: absolute;
		bottom: 0;
		font-size: 80%;
		padding: 1rem;
		color: gray;
	}
	.pie-chart5 figcaption {
		position: absolute;
		bottom: 1em;
		right: 1em;
		font-size: smaller;
		text-align: left;
	}
	.pie-chart5 span:after {
		display: inline-block;
		content: "";
		width: 0.8em;
		height: 0.8em;
		margin-left: 0.4em;
		height: 0.8em;
		border-radius: 0.2em;
		background: currentColor;
	}

.pie-chart6 {
		background:
			radial-gradient(
				circle closest-side,
				transparent 40%,
				white 0
			),
			conic-gradient(
				#4e79a7 0,
				#4e79a7 27.7%,
				#f28e2c 0,
				#f28e2c 34.1%,
				#e15759 0,
				#e15759 59.6%,
				#76b7b2 0,
				#76b7b2 61.7%,
				#59a14f 0,
				#59a14f 74.5%,
				#edc949 0,
				#edc949 80.9%,
				#af7aa1 0,
				#af7aa1 100%
		);
		position: relative;
		max-width: 500px;
		min-height: 300px;
		margin: 0;
		outline: 1px solid #ccc;
	}
	
	.pie-chart6 cite {
		position: absolute;
		bottom: 0;
		font-size: 80%;
		padding: 1rem;
		color: gray;
	}
	.pie-chart6 figcaption {
		position: absolute;
		bottom: 1em;
		right: 1em;
		font-size: smaller;
		text-align: left;
	}
	.pie-chart6 span:after {
		display: inline-block;
		content: "";
		width: 0.8em;
		height: 0.8em;
		margin-left: 0.4em;
		height: 0.8em;
		border-radius: 0.2em;
		background: currentColor;
	}

.pie-chart7 {
		background:
			radial-gradient(
				circle closest-side,
				transparent 40%,
				white 0
			),
			conic-gradient(
				#4e79a7 0,
				#4e79a7 15.9%,
				#f28e2c 0,
				#f28e2c 27%,
				#e15759 0,
				#e15759 52.4%,
				#76b7b2 0,
				#76b7b2 69.9%,
				#59a14f 0,
				#59a14f 100%
		);
		position: relative;
		max-width: 500px;
		min-height: 300px;
		margin: 0;
		outline: 1px solid #ccc;
	}

	.pie-chart7 figcaption {
		position: absolute;
		bottom: 1em;
		right: 1em;
		font-size: smaller;
		text-align: left;
	}
	.pie-chart7 span:after {
		display: inline-block;
		content: "";
		width: 0.8em;
		height: 0.8em;
		margin-left: 0.4em;
		height: 0.8em;
		border-radius: 0.2em;
		background: currentColor;
	}

	.piechart_p{
		position: absolute;
		font-size: 20px;
		font-weight: bold;
		margin-top: 30px;
		margin-left: 15px;
	}

	.img_local_content1{
    width: 78px;
    position: absolute;
    left: 227px;
    top: -22px;
	}
	.img_local_content2{
    width: 71px;
    position: absolute;
    left: 224px;
    top: -22px;
	}
	.img_local_content3{
    width: 71px;
    position: absolute;
    left: 225px;
    top: -22px;
	}


.back{
      font-size: 17px;
      font-weight: 500;
      color: #333333;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #f9f9f9;
      width: 180px;
      height: 45px;
      margin: 0 auto;
      box-shadow: 1px 1px 1px #00000080;
      margin-top: 40px;
      margin-bottom: 30px;
      position: relative;
	  text-decoration: none;
}

.back::before{
   content: "";
    position: absolute;
    top: 30px;
    left: 0px;
    width: 15px;
    height: 15px;
    background-color: #edaa0b;
    clip-path: polygon(0 0, 0 100%, 100% 100%);
}

.back::after{
    content: "";
    position: absolute;
    top: 0px;
    left: 166px;
    width: 15px;
    height: 15px;
    background-color: #b3b3b3;
    clip-path: polygon(0 0, 100% 0, 100% 100%);
}


.yokoline {
    display: inline-block;
    width: 30px;
    height: 0.75px;
    background: #4d4d4d;
    position: absolute;
    top: 55%;
    transform: translateY(-60%);
    left: 33px;
}

.nanameline {
    display: inline-block;
    width: 10px;
    height: 0.75px;
    background: #4d4d4d;
    transform: rotate(-45deg) translateY(-60%);
    transform-origin: left bottom;
    position: absolute;
    top: 55%;
    left: 33px;
}

.capbox {
    position: relative;
    width: 345px;
    margin: 0 auto;
    padding: 15px 20px;
    border-top: 1px solid #edaa0b;
    border-bottom: 1px solid #edaa0b;
	margin-bottom: 40px;
	margin-top: 40px;
}

.capbox::before,
.capbox::after {
    position: absolute;
    width: 1px;
    top: 50%;
    transform: translateY(-50%);
    height: calc(100% + 10px);
    background-color: #edaa0b;
    content: '';
}

.capbox::before {
    left: 5px;
}

.capbox::after {
    right: 5px;
}

.honbun{
   font-size: 14px;
   text-align: justify;
}

	h5 {
		position: absolute;
		margin: 1rem;
		font-size: 20px;
	}
/*
css概説（復習用　要らなければ消してください）

vol.1 用語の解説

セレクタ…装飾をつけたい対象の要素のこと
属性…セレクタに施したい装飾の種類
値…セレクタに施したい装飾の具体的内容

例：h1{color:red;}
h1がセレクタ　colorが属性　redが値

vol.2 セレクタの指定
①要素名で指定
h1{color:red;}

②class名で指定
.class{color:red;}

③id名で指定
#id{color:red;}

④要素名プラスclass名で指定
div.class{color:red;}

⑤要素名プラスid名で指定
div#id{color:red;}

⑥要素の位置から指定
header div{color:red;}   
↑スペースを入れる（ここではheader内のdiv要素を指定）

vol.3 属性・値の指定

①{属性:値;}の形で記述
{color:red;}

②１つのセレクタに対する指定はまとめて記述できる
h1{
   color:red;
   width:90%;
}

③指定が重複したら後の行にあるものが優先
h1{
   color:red;
   width:90%;
   color:blue;
}
↑ここではh1はblueになる

④指定が重複したらより特定が強いものが優先
h1{
   color:red;
   width:90%;
}
header h1{
   color:blue;
}
↑ここではheader内のh1はcolorがblue、widthが90%になる
*/

@media screen and (min-width:1024px) {
    /*レスポンシブ用*/
.title{
   font-size:32px;
}
h1{
   font-size:32px;
}
.back-to-top{
   font-size:18px;
}
.box {
    background-color: #ffffff;
    width: 80%;
    height: auto;
    border: 1px solid #edaa0b;
    margin: 0 auto;
    margin-bottom: 30px;
    padding: 15px;
    position: relative;
    text-align: justify;
    text-align-last: left;
    font-size:18px;
}
.topic{
   font-size: 19px;
}
.c-txtsp{
   font-size: 18px;
   margin: auto;
}
.komidashi{
   width: 270px;
   font-size: 20px;
   height: 41px;
}
.komidashi_kakko{
    padding-left: 6px;
}
.komidashi_p{
   font-size: 20px;
}
.komidashi::before{
   content:"";
   transform: rotate(135deg);
   border-top: 15px solid #edaa0b;
   border-right: 15px solid transparent;
   border-bottom: 15px solid transparent;
   border-left: 15px solid transparent;
   position: absolute;
   top: -15px;
   left: -14.5px;
}
.komidashi::after{
   content:"";
   transform: rotate(-45deg);
   border-top: 15px solid #edaa0b;
   border-right: 15px solid transparent;
   border-bottom: 15px solid transparent;
   border-left: 15px solid transparent;
   position: absolute;
   top: 25px;
   left: 255.5px;
}

.honbun {
    font-size: 18px;
    text-align: center;
}
summary{
	font-size: 18px;
}
.c-txtsp{
   font-size: 18px;
   margin: auto;
}

.back{
   width: 188px;
   height: 53px;
   font-size: 18px;
}
.back::before{
   content: "";
    position: absolute;
    top: 33px;
    left: 0px;
    width: 20px;
    height: 20px;
    background-color: #edaa0b;
    clip-path: polygon(0 0, 0 100%, 100% 100%);
}

.back::after{
    content: "";
    position: absolute;
    top: 0px;
    left: 168px;
    width: 20px;
    height: 20px;
    background-color: #b3b3b3;
    clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.img_local_content1{
    width: 120px;
    position: absolute;
    left: 272px;
    top: -50px;
}
.img_local_content2{
    width: 100px;
    position: absolute;
    left: 272px;
    top: -45px;
}
.img_local_content3{
    width: 92px;
    position: absolute;
    left: 272px;
    top: -39px;
}

.accordion{
   margin: 30px auto;
   max-width: none;
 width: 80%;
}

.back:hover{
   transform: translateY(4px);
   box-shadow: none;
}
.tab_item:hover{
	opacity: 0.6;
}

.accordion .charts {
  display: flex;
  justify-content: center; /* 中央寄せ */
  gap: 20px;              /* グラフ同士の間隔 */
  flex-wrap: wrap;        /* 画面が狭いときは折り返す */
}

.accordion figure {
  flex: 1 1 200px;        /* 幅を調整しつつレスポンシブ */
  margin: auto;
  max-width: none;
  min-height: 370px;
}

.accordion .three-charts {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr)); /* 上段2列 */
  gap: 20px;
  margin: auto;
}

.accordion .three-charts > figure {
  margin: 0;
  width: 100%;
}

/* 下段の1つを両列にまたがらせる */
.accordion .three-charts > figure:nth-child(3) {
  grid-column: 1 / -1;
  margin: auto;
}

/* スマホ等の狭い画面では1列 */
@media (max-width: 600px) {
  .accordion .three-charts {
    grid-template-columns: 1fr;
  }
  .accordion .three-charts > figure:nth-child(3) {
    grid-column: auto;
  }
}
.accordion figcaption{
    font-size: 18px;
}
}
    