/*** izumishi HP style.css ***/

@font-face
{
font-family: 'はれのそら明朝';
src: url('https://cdn.leafscape.be/Harenosora/harenosora_web.woff2')
     format("woff2");
}

body {
  font-size: 14px;
  font-family: 'Noto Sans JP', 'Noto Serif JP', 'Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',YuGothic,'Yu Gothic','TsukuARdGothic-Regular','Meiryo UI',sans-serif;
}

ul {
  padding: 0;
}

li {
  list-style: none;
}

#container {
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
}


/* header *********************************************/
header {
  width: 100%;
  padding: .8vw 0 1vw 0;
  border-bottom: 1px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  position: fixed;
  z-index: 1;
}

#header-container {
  display: flex;
  width: max-content;
  min-width: 150px;
  margin-left: 5.5vw;
}

#header-container .item .logo {
  width: 50%;
}

#header-icon-container {
  display: flex;
}

#header-icon-container ul {
  display: flex;
}

#header-icon-container .link-animation {
  margin: 0 .2vw;
  padding: .5vw 1vw;
  width: max-content;
  text-align: center;
  white-space: nowrap;
  background-image: linear-gradient(90deg, #ccb8cc, #ccb8cc); /* 線の色 */
  background-repeat: no-repeat;
  background-position: center bottom; /* 線の起点を中央・下に設定 */
  background-size: 0 1px; /* 線の横幅を0、縦幅を1pxに */
  transition: background-size 0.6s; /* 線を伸ばすアニメーション実行時間を指定 */
}

#header-icon-container .link-animation:hover {
  background-size: 100% 1px; /* 線の横幅100% */
}

#header-icon-container li a {
  text-decoration: none;
  color: #4d4d4d;
}


/* hamburger-menu *************************************/
/* PCでは非表示、スマホのみ表示 */
#header-hamburger-menu {
  display: none;
}

/* 位置を右上に固定 */
#toggle {
  position: fixed;
  top: 20px;
  /* right: 25px; */
}
/* ハンバーガーメニューの大きさ指定 */
#toggle-box {
  position: relative;
  width: 36px;
  height: 32px;
  cursor: pointer;
}
#toggle-box > span {
  width: 100%;
  height: 3px;
  left: 0;
  display: block;
  background: #b18fc3;
  border-radius: 8px;
  position: absolute;
  transition: transform .6s ease-in-out;
}
#toggle-box > span:nth-child(1) {
  top: 3px;
}
#toggle-box > span:nth-child(2) {
  top: 50%;
  transform: translatey(-50%);
}
#toggle-box > span:nth-child(3) {
  bottom: 3px;
}

/* ハンバーガーメニュークリックで、「×」マークにアニメーション */
.is-open #toggle-box > span {
  background: #b18fc3;
}
.is-open #toggle-box > span:nth-child(1) {
  top: 50%;
  transform: rotate(45deg) translatey(-50%);
}
.is-open #toggle-box > span:nth-child(2) {
  width: 0;
}
.is-open #toggle-box > span:nth-child(3) {
  top: 50%;
  transform: rotate(-45deg) translatey(-50%);
}

/* 重なり順指定 */
#toggle {
  z-index: 1000;
}
#main {
  position: relative;
  z-index: 990;
}

/* 中身メニュー、初期は非表示 */
#nav-content {
  z-index: 900;
  overflow: auto;
  width: 100%;
  max-width: 100vw;
  height: 100%;
  background: #eae2ea;
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  text-align: center;
  opacity: 0;
  transform: translateX(100%); /* 初期表示では右画面外にスライドさせておく */
  transition: opacity .6s ease, visibility .6s ease;
  padding-top: 50px;
}
#nav-content ul {
  list-style: none;
}
#nav-content a {
  display: block;
  color: #4d4d4d;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  padding: 10px 0;
  transition: opacity .6s ease;
  pointer-events: none;
}
#nav-content a:hover {
  opacity: 0.6;
}

#nav-content .dropdown-nav-item {
  display: none;
}

.nav1 {
  border-bottom: 1px solid #4d4d4d;
  margin-right: 30px;
  margin-left: 30px;
  text-align: left;
}

.nav1 li:last-child {
  margin-bottom: 20px;
}

.nav2 {
  color: #4d4d4d;
  font-weight: bold;
  text-align: left;
  margin: 0 30px;
}

.nav2 p {
  font-size: 18px;

}

.nav2 .nav-item {
  padding: 10px 0;
}

.nav2 .nav-item span {
  font-size: 16px;
}

.nav2 .nav-item .dropdown-nav-item {
  margin: 0 20px;
}

.nav2 .nav-item .dropdown-nav-item li {
  margin: 5px 0;
}

.nav2 .nav-item .dropdown-nav-item li a {
  font-size: 14px!important;
}


/* is-openクラスが追加されると、メニューが表示される */
.is-open {
  overflow: hidden;
}
.is-open #nav-content {
  z-index: 999;
  visibility: visible;
  opacity: 1;
  transform: translateX(0); /* is-openクラスが追加されたら、スライドを戻す */
}
.is-open #nav-content a{
  pointer-events: auto;
}
/******************************************************/


/* main ***********************************************/
main {
  margin: auto;
  padding: 50px 0 30px;
  background: #f7f6f4;
}
/******************************************************/


/* slider add css *************************************/
.slick-slide img {
  object-fit: cover;
  width: inherit;
  height: 500px;
}

.slick-dotted.slick-slider {
  margin-top: 20px;
}

/* slider css */
#slick-box li {
  position: relative;
}

#slick-box .item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}

#slick-box .item p {
  position: absolute;
  color: #fff;
  text-align: right;
  font-size: 2.8vw;
  width: max-content;
  right: 5%;
  bottom: 10%;
  font-family: 'はれのそら明朝', 'Noto Serif JP', 'Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',YuGothic,'Yu Gothic','TsukuARdGothic-Regular','Meiryo UI',sans-serif;
}

#mediaplayer-area {
  text-align: center;
}

#mediaplayer-area button {
  background: none;
  border: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
}

#mediaplayer-area img {
  width: 100%;
  margin-right: 5px;
}

#mediaplayer-area .js-stop {
  opacity: .4;
}

/******************************************************/

/* topic container ************************************/

#topic-container {
  display: flex;
  justify-content: center;
  margin: 2vw auto;
}

#banner-container {
  display: block;
  align-self: center;
  margin-right: 3vw;
}

#banner-container .item {
  margin-bottom:  1vw;
}


#banner-container .item:last-child{
  margin-bottom: 0;
}


/******************************************************/


/* Youtube ********************************************/
#movie-area {
  text-align: center;
  padding: 3vw 0;
}

.movie-area.sp {
  display: none;
}
/******************************************************/


.title {
  margin-top: 1vw;
  text-align: center;
  font-size: 1.8vw;
  font-weight: normal;
  font-family: 'Noto Serif JP', 'Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',YuGothic,'Yu Gothic','TsukuARdGothic-Regular','Meiryo UI', sans-serif;;
  color: #4f3f54;
}


/* 新着更新情報 *****************************************/
#news-container {
  padding: 1vw;
  background: #fff;
}

#news-container ul {
  text-align: left;
  width: 70%;
  margin: auto;
}

#news-container li {
  padding: 1vw 0;
  border-top: 1px solid #ccb8cc;
}

#news-container li a {
  font-size: 14px;
  color: #4d4d4d;
  text-decoration: none;
}

#news-container li a:hover {
  color: dodgerblue;
}

#news-container li .news-items {
  display: flex;
  margin: 0 5vw;
}

#news-container li .news-items .date {
  width: 20%;
}

#news-container li .news-items .contents {
  width: 80%;
}

#news-container .more {
  margin: 1vw 0;
  text-align: center;
}

#news-container button {
  width: 220px;
  height: 50px;
  font-size: 14px;
  background: none;
  color: #b18fc3;
  border: none;
  cursor: pointer;
}

#news-container button:hover {
  text-decoration: underline;
}

#contents-container {
  width: 80%;
  margin: 3vw auto;
}
/******************************************************/


/* コンテンツドロップダウンメニュー *************************/
#contents-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  text-align: center;
  list-style-type: none;
  margin: 0 auto;
  padding: 0;
  color: #4d4d4d;
}

#contents-box .box-item {
  position: relative;
  display: block;
  width: 20%;
  margin: 10px;
  margin-bottom: 20px;
  text-align: left;
  border-radius: 3px;
  background: #fff;
}

#contents-box .box-item.coral {
  border: 3px solid #f38181;
}
#contents-box .box-item.lemon {
  border: 3px solid #fce38a;
}
#contents-box .box-item.green {
  border: 3px solid #8cb77b;
}
#contents-box .box-item.cyan {
  border: 3px solid #95e1d3;
}
#contents-box .box-item.pink {
  border: 3px solid #ffb6b9;
}
#contents-box .box-item.orange {
  border: 3px solid #f4c6b2;
}
#contents-box .box-item.leaf-green {
  border: 3px solid #64a999;
}
#contents-box .box-item.aqua {
  border: 3px solid #8ac6d1;
}

#contents-box .box-item::before {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  margin-bottom: 5px;
  border-right: 2px solid #67717d;
  border-bottom: 2px solid #67717d;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: center center;
  transform-origin: center center;
  -webkit-transition: transform .2s ease-in-out;
  transition: transform .2s ease-in-out;
  position: absolute;
  left: calc(50% - 7px);
  bottom: 10px;
  cursor: pointer;
}

#contents-box .box-item.is-active:before {
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

#contents-box .box-item.coral:hover,
#contents-box .box-item.coral.is-active {
  background: #fef5f5;
  border-color: #f38181;
}
#contents-box .box-item.lemon:hover,
#contents-box .box-item.lemon.is-active {
  background: #f9f6ed;
  border-color: #fce38a;
}
#contents-box .box-item.green:hover,
#contents-box .box-item.green.is-active {
  background: #ebf3e9;
  border-color: #8cb77b;
}
#contents-box .box-item.cyan:hover,
#contents-box .box-item.cyan.is-active {
  background: #eefaf8;
  border-color: #95e1d3;
}
#contents-box .box-item.pink:hover,
#contents-box .box-item.pink.is-active {
  background: #fff7f7;
  border-color: #ffb6b9;
}
#contents-box .box-item.orange:hover,
#contents-box .box-item.orange.is-active {
  background: #fcf3ef;
  border-color: #f4c6b2;
}
#contents-box .box-item.leaf-green:hover,
#contents-box .box-item.leaf-green.is-active {
  background: #f5faf9;
  border-color: #64a999;
}
#contents-box .box-item.aqua:hover,
#contents-box .box-item.aqua.is-active {
  background: #ecf5f7;
  border-color: #8ac6d1;
}

#contents-box .box-item .box-contents {
  display: grid;
  justify-items: center;
  cursor: pointer;
  padding: 30px 20px 35px 20px;
}

#contents-box .box-item .box-contents img {
  width: 25%;
}

#contents-box .box-item .drop-list {
  width: calc(100% + 6px);
  left: -3px;
  display: none;
  position: absolute;
  z-index: 1;
  padding: 20px 15px;
  padding-top: 0;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}

#contents-box .box-item .drop-list.coral {
  background: #fef5f5;
  border: 3px solid #f38181;
  border-top: none;
}
#contents-box .box-item .drop-list.lemon {
  background: #f9f6ed;
  border: 3px solid #fce38a;
  border-top: none;
}
#contents-box .box-item .drop-list.green {
  background: #ebf3e9;
  border: 3px solid #8cb77b;
  border-top: none;
}
#contents-box .box-item .drop-list.cyan {
  background: #eefaf8;
  border: 3px solid #95e1d3;
  border-top: none;
}
#contents-box .box-item .drop-list.pink {
  background: #fff7f7;
  border: 3px solid #ffb6b9;
  border-top: none;
}
#contents-box .box-item .drop-list.orange {
  background: #fcf3ef;
  border: 3px solid #f4c6b2;
  border-top: none;
}
#contents-box .box-item .drop-list.leaf-green {
  background: #f5faf9;
  border: 3px solid #64a999;
  border-top: none;
}
#contents-box .box-item .drop-list.aqua {
  background: #ecf5f7;
  border: 3px solid #8ac6d1;
  border-top: none;
}

#contents-box .box-item .drop-list li a{
  padding: 5px 0;
  display: block;
  color: #4d4d4d;
  text-decoration: none;
}

#contents-box .box-item .drop-list li a:hover{
  text-decoration: underline;
}

/******************************************************/


/* 会議日程 *********************************************/
#calendar-container {
  padding: 1vw 1vw 3vw 1vw;
  background: #fff;
}

#calendar-container h3 {
  margin: 0 auto 1vw 22vw;
  width: max-content;
  font-size: 1.5vw;
  color: #b18fc3;
  padding-bottom: .2vw;
  border-bottom: 1px solid #b18fc3;
}

#calendar-container p .marker-purple {
  background: linear-gradient(transparent 50%, #eae2ea 50%);
}

#calendar-container p .marker-green {
  background: linear-gradient(transparent 50%, #ebf3e9 50%);
}

#calendar-container p .marker-coral {
  background: linear-gradient(transparent 50%, #fef5f5 50%);
}

/* FullCalendar ****************************************/
.fc .fc-button-group>.fc-button.fc-button-active,
.fc .fc-button-group>.fc-button:active,
.fc .fc-button-group>.fc-button:focus,
.fc .fc-button-group>.fc-button:hover,
.fc .fc-daygrid-body,
.fc .fc-daygrid-day-number,
.fc .fc-daygrid-event,
.fc-event .fc-event-main {
  z-index: unset!important;
}

.fc-daygrid-block-event .fc-event-time,
.fc-daygrid-block-event .fc-event-title {
  padding-left: 5px!important;
}

.fc-daygrid-event {
  white-space: break-spaces!important;
}

.fc .fc-toolbar-title {
  font-size: 1.3em!important;
}

.fc-col-header-cell {
  background-color: #f7f6f4!important;
}

.fc-col-header-cell.fc-day.fc-day-sun {
  background-color: #f0d9d7!important;
}

.fc-col-header-cell.fc-day.fc-day-sat {
  background-color: #d7e6f0!important;
}

.fc .fc-button-primary {
  background-color: #b18fc3!important;
  border-color: #b18fc3!important;
}

/* 土曜日 */
.fc-day-sat .fc-daygrid-day-top,
.fc-day-sat .fc-scrollgrid-sync-inner .fc-col-header-cell-cushion,
.fc-day-sat .fc-list-day-cushion {
    color: blue!important;
}

/* 日曜日 */
.fc-day-sun .fc-daygrid-day-top,
.fc-day-sun .fc-scrollgrid-sync-inner .fc-col-header-cell-cushion,
.fc-day-sun .fc-list-day-cushion {
  color: red!important;
}

.fc-h-event .fc-event-main {
  color: #4d4d4d!important;
}

#calendar-container p {
  width: max-content;
  margin: 1vw auto 1vw 22vw;
  font-size: 14px;
}
/******************************************************/


/* access-container ***********************************/
#access-container {
  text-align: center;
  padding: 1vw 1vw 3vw 1vw;
  background: #fff;
}

#access-container .map.sp {
  display: none;
}

#access-container .route {
  text-align: left;
  width: 50%;
  margin: 3vw auto;
}

#access-container .route li {
  list-style-type: disc;
  margin-bottom: 5px;
}


/******************************************************/

/* フッター *********************************************/
footer {
  font-size: 1.1vw;
  background: #f7f6f4;
  padding-bottom: 5vw;
}

#link-area {
  display: flex;
  margin: 0 auto;
  width: 900px;
}

#link-area li {
  padding: 0 1vw;
  border-right: 1px solid;
}

#link-area li:last-child {
  border-right: none;
}

#address {
  font-size: 1.1vw;
  text-align: left;
  width: 900px;
  padding-top: 10px;
  margin: 0 auto 3vw auto
}

#address p{
  margin: 0.5vw 0;
}

#address .first {
  margin-top: 0;
  font-size: 1.8vw;
}
/******************************************************/

/* このウェブサイトについて *******************************/
#about-website ul,
#about-personal ul {
  margin-left: 30px;
}

#about-accessibility .attainment {
  margin-left: 50px;
}

#about-website li,
#about-personal li,
#about-accessibility .attainment li {
  list-style: disc;
  margin-bottom: 5px;
}

#about-accessibility .margin {
  margin-left: 30px;
}
/******************************************************/

/* main-page ******************************************/
#main-page-contents {
  display: flex;
  margin-top: 25px;
  background: #fff;
}

#main-contents {
  width: 75%;
  margin-top: 15px;
  margin-bottom: 50px;
  padding-right: 30px;
  color: #4d4d4d;
}

#main-contents #breadcrumbs .break {
  padding: 0 3px;
}

#main-contents #breadcrumbs a {
  text-decoration: none;
}

#main-contents #breadcrumbs a:hover {
  text-decoration: underline;
}

#main-contents h1,
#sitemap-container h1 {
  padding: 0.5em;
  background: #eae2ea;
  border-bottom: solid 3px #ccb8cc;
  border-radius: 3px;
  font-size: 1.8vw;
  font-weight: bold;
  font-family: 'Noto Sans JP', 'Noto Serif JP', 'Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',YuGothic,'Yu Gothic','TsukuARdGothic-Regular','Meiryo UI', sans-serif;
}

#main-contents h2 {
  position: relative;
	border-bottom: 5px solid #ddd;
  margin-top: 50px;
  margin-left: 10px;
	padding: 10px 0;
  width: max-content;
  font-size: 1.5vw;
  font-family: 'Noto Sans JP', 'Noto Serif JP', 'Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',YuGothic,'Yu Gothic','TsukuARdGothic-Regular','Meiryo UI',sans-serif;
  font-weight: bold;
}

#main-contents h2::before {
  position: absolute;
	left: 0;
	bottom: -5px;
	width: 40%;
	height: 5px;
	content: '';
	background: #ccb8cc;
}

#main-contents h3 {
  position: relative;
  display: inline-block;
  margin-top: 50px;
  margin-bottom: 0;
  margin-left: 10px;
  padding: 0 25px;
  font-size: 16px;
  font-family: 'Noto Sans JP', 'Noto Serif JP', 'Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',YuGothic,'Yu Gothic','TsukuARdGothic-Regular','Meiryo UI',sans-serif;
  font-weight: bold;
}

#main-contents h3::before,
#main-contents h3::after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 20px;
  height: 1px;
  background-color: #4d4d4d;
}

#main-contents h3::before {
  left: 0;
}

#main-contents h3::after {
  right: 0;
}

#main-contents h4 {
  margin-left: 10px;
  font-size: 14px;
}

#main-contents h4::before {
  content: '●';
  margin-right: 2px;
}

#main-contents .headline {
  color: #4d4d4d;
	background: #eae2ea;
  margin: 0 0 0 10px;
	padding: 1vw;
	position: relative;
  width: 150px;
  font-size: 1.7vw;
  font-weight: bold;
}

#main-contents .headline::before {
  position: absolute;
  content: '';
  top: 100%;
  left: 0;
  border: none;
  border-bottom: solid 10px transparent;
  border-right: solid 20px #ccb8cc;
}

#main-contents .link-area,
#page-link {
  margin-left: 20px;
}

#main-contents .link-area li,
#page-link li {
  margin: 10px 0;
}

#main-contents .text {
  margin: 10px 20px;
  font-size: 14px;
  line-height: 1.8;
}

#main-contents .text .bold {
  font-size: 15px;
  font-weight: bold;
}

#main-contents .text .red {
  color: red;
}

#main-contents .opinion {
  margin-bottom: 6vw;
}

#main-contents .opinion .text .center {
  text-align: center;
}

#main-contents .opinion .text .right {
  text-align: right;
}

#main-contents .opinion .result {
  text-align: center;
  font-weight: bold;
}

#main-contents .table-container .title {
  margin: 30px auto 10px;
  font-size: 16px;
}

#main-contents .table-container table {
  margin: auto;
  width: 700px;
}

#main-contents .table-container .sp-view {
  display: none;
}

#main-contents .table-container th {
  padding: 1vw 2vw;
  border: 1px solid #4d4d4d;
  background: #f7f6f4;
  font-size: 14px;
}

#main-contents .table-container td {
  padding: 1vw 2vw;
  border: 1px solid #4d4d4d;
  line-height: 1.8;
  word-break: break-all;
  font-size: 14px;
}

#main-contents .browsing-place .table-container td {
  padding: 1vw;
}

#main-contents .committee-list {
  margin: 2vw 3vw;
}

#main-contents .committee-list li {
  margin-bottom: 30px;
}

#main-contents .committee-list .committee-name {
  width: max-content;
  border-bottom: double 5px #ccb8cc;
}

#main-contents .committee-list p {
  margin: 10px 20px;
}

#main-contents .etc {
  width: max-content;
  padding: .5vw 1vw;
  margin-top: 50px;
  background: #eae2ea;
  font-size: 16px;
}

#main-contents .scroll-button {
  text-align: end;
  margin: 20px;
}

#main-contents #scroll-top {
  background: none;
  border: none;
  color: #b18fc3;
  cursor: pointer;
}

#main-contents .triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 25px solid transparent;
  border-left: 25px solid transparent;
  border-top: 50px solid #ccb8cc;
  border-bottom: 0;
  margin: 30px auto 0 auto;
}

#main-contents .flow {
  counter-reset: step-counter; /* 連番カウンター名の定義 */
  position: relative; /* 縦棒との位置関係 */
  margin: 3vw 2vw;
  padding-left: 2rem; /* 縦棒と連番のためのスペース */
}

#main-contents .flow::before {
  content: '';
  background-color: #b18fc3;
  width: 2px;
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  height: calc(100% - 0.7rem);
}

#main-contents .flow li .bold {
  counter-increment: step-counter; /* 連番カウンターを +1 */
  display: flex;
  align-items: center;
  font-size: 1.5vw;
  font-weight: bold;
}

#main-contents .flow li .bold::before {
  content: counter(step-counter); /* 連番カウンターの値を表示 */
  background: #b18fc3;
  color: #fff;
  font-size: 0.8rem;
  line-height: 1.5rem;
  text-align: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 1.5rem;
  position: absolute; /* .flowでmargin-left +2rem した分を左に戻す */
  left: 0;
}

#main-contents .file-container ul {
  margin-left: 40px;
}

#main-contents .file-container ul li {
  margin-bottom: 5px;
  list-style-type: disc;
}

#main-contents .file-container .more {
  margin: 3vw 0;
  text-align: center;
}

#main-contents .file-container .more a {
  background: none;
  color: #b18fc3;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

#main-contents .img-container.news-info,
#main-contents .img-container.honkaigi,
#main-contents .img-container.iinkai {
  display: flex;
  margin: 2vw;
}

#main-contents .img-container.news-info img,
#main-contents .img-container.honkaigi img,
#main-contents .img-container.iinkai img {
  width: 40%;
}

#main-contents .img-container.honkaigi img {
  margin-right: 10px;
}

#main-contents .hearing-group {
  display: flex;
  align-items: center;
}

#main-contents .hearing-group img {
  width: 17%;
}

#main-contents .img-container.news-info .info {
  margin: 2vw 3vw;
}

#main-contents .img-container.news-info .info h3 {
  margin-top: 0;
  margin-bottom: 20px;
  margin-left: 0;
}

#main-contents .img-container.news-info a {
  margin: 0;
}

#main-contents .img-container.news-info .info ul {
  margin-left: 20px;
}

#main-contents .img-container.news-info .info ul li {
  list-style-type: disc;
}

#main-contents .img-container.news-info .info .more {
  margin-top: 50px;
}

#main-contents .img-container.news-info .info .more a {
  background: none;
  color: #b18fc3;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

#main-contents .img-container.app {
  display: flex;
}

#main-contents .img-container.app a {
  display: flex;
  justify-content: center;
  width: 60%;
  margin: 0 1.5vw 0 0;
}

#main-contents .img-container.app img {
  width: 100%;
  max-width: 250px;
}

#main-contents .img-container a {
  margin: 0 20px;
}

#main-contents .img-container.relay {
  display: flex;
  margin: 3vw 0;
}

#main-contents .img-container.relay .item {
  width: 50%;
  display: flex;
}

#main-contents .img-container.relay .item img {
  width: 100%;
}

#main-contents .relay-category {
  margin-bottom: 50px;
}

#main-contents .relay-category h3,
#main-contents .relay-category .internet {
  margin-top: 20px;
}

#main-contents .relay-category .internet li{
  list-style: none;
}

#main-contents .notes {
  background-color: #eee;
  padding: 0 1vw 3vw 1.5vw;
}

#main-contents .notes ul {
  margin-left: 1vw;
}

#main-contents .notes ul li {
  list-style: disc;
}

#main-contents .notes .red {
  color: red;
}

#main-contents .notes .head {
  display: flex;
  align-items: center;
  padding-top: 20px;
}

#main-contents .notes .head span {
  font-size: 16px;
}

#main-contents .notes .head img {
  width: 5%;
}

#main-contents .inspection-report,
#main-contents .expenses {
  padding: 3vw 2vw;
}

#main-contents .expenses .table-container td {
  text-align: center;
}

#main-contents .petition .method-area .method {
  margin: 20px;
}

#main-contents .petition .method-area .method ul {
  margin-left: 30px;
}

#main-contents .petition .method-area .method li {
  list-style: disc;
  margin-bottom: 5px;
}

#main-contents .petition .method-area .notice {
  background: #eae2ea;
  margin: 20px;
  padding: 10px;
}

#main-contents .petition .table-container {
  margin: 50px 0 20px;
}

#main-contents .petition .table-container p {
  text-align: center;
  font-size: 16px;
}

#main-contents .petition .sample-area {
  background: #eae2ea;
  border-radius: 15px;
  margin: 50px 0 30px;
  padding-bottom: 30px;
}

#main-contents .petition .sample-area h3 {
  margin: 30px 20px 10px;
}

#main-contents .petition .sample-container {
  display: flex;
  width: 90%;
  margin: 0 auto;
}

#main-contents .petition .sample-container .sample-items .item {
  margin: 10px 0;
}

#main-contents .petition .sample-container .sample-items img {
  width: 85%;
  border: 1px solid;
}

#main-contents .petition .sample-area .notice {
  margin: 20px;
  padding: 10px;
  background: #fff;
}

#main-contents .petition .sample-area .notice ul {
  margin: 10px 30px;
}

#main-contents .petition .sample-area .notice li {
  list-style: disc;
  margin-bottom: 5px;
}

#main-contents .petition .sample-area .notice .red {
  color: red;
}

#main-contents .color-box {
  width: max-content;
  font-size: 18px;
  padding: 20px 30px;
  margin: 50px auto;
  background: #eae2ea;
  box-shadow: 0px 0px 0px 10px #eae2ea;
  border: dashed 2px #fff;
}

#main-contents .img-container.publish-area {
  text-align: center;
}

#main-contents .img-container.publish-area img {
  width: 30%;
}

#main-contents #mailform {
  margin: 50px 0;
  text-align: center;
}

#main-contents #mailform a {
  text-decoration: none;
  background: #b18fc3;
  color: #fff;
  padding: 15px 30px;
  font-size: 18px;
  border-radius: 50px;
}

#main-contents #mailform a:hover {
  opacity: .8;
}


/* roster page ****************************************/
#main-contents .roster-container h2 {
 margin-top: 30px;
}

#main-contents .intro-block {
  margin-top: 70px;
}

.roster-profile {
  display: flex;
  margin-left: 1vw;
}

.roster-profile .photo {
  width: 20%;
}

.roster-profile .photo img {
  width: 70%;
}

.roster-profile .info p {
  margin-top: 0;
  font-size: 14px;
}

.roster-profile .info h3 {
  margin-top: 2vw!important;
  margin-left: 0!important;
}

.roster-profile .info .text {
  margin-left: 0!important;
  margin-right: 0!important;
}
/******************************************************/


/* キッズページ *****************************************/
#main-contents .kids-page #page-link {
  margin-top: 50px;
  margin-bottom: 50px;
}

#main-contents .kids-page #page-link li a {
  display: flex;
  align-items: end;
}

#main-contents .kids-page #page-link li a img {
  width: 35px;
  margin-right: 5px;
}

#main-contents .kids-page .number {
  margin-top: 50px;
}

#main-contents .kids-page .kids-items {
  display: flex;
  align-items: center;
}

#main-contents .kids-page .kids-items .img-item {
  width: 5%;
}

#main-contents .kids-page .kids-items .img-item img {
  width: 100%;
}

#main-contents .kids-page .kids-items .text-item {
  height: max-content;
}

#main-contents .kids-page .kids-items .text-item h2 {
  margin: 0;
  margin-left: 5px;
  padding: 0;
  border-bottom: unset;
}

#main-contents .kids-page .kids-items .text-item h2::before {
  display: none;
}

#main-contents .kids-page li {
  margin-bottom: 10px;
}

#main-contents .kids-page .img-container {
  text-align: center;
}

#main-contents .kids-page .img-container img {
  width: 65%;
}

#main-contents .kids-page .text {
  line-height: 3;
}

#main-contents .kids-page #no2 .img-container img,
#main-contents .kids-page #no5 .img-container img {
  width: 80%;
}

#main-contents .kids-page .purple {
  color: #b18fc3;
}

#main-contents .kids-page .proccess, 
#main-contents .kids-page .activity {
  background: #eae2ea;
  border-radius: 20px;
  padding: 10px 20px;
  margin-bottom: 30px;
}

#main-contents .kids-page .proccess .title,
#main-contents .kids-page .activity .title {
  font-family: 'Noto Sans JP', 'Noto Serif JP', 'Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',YuGothic,'Yu Gothic','TsukuARdGothic-Regular','Meiryo UI', sans-serif;
  font-weight: bold;
  width: max-content;
  margin: 15px auto;
  padding: 15px 30px 10px 30px;
  background: #fff;
  border-radius: 15px;
}

#main-contents .kids-page .proccess .contents, 
#main-contents .kids-page .activity .contents {
  background: #fff;
}

#main-contents .kids-page .point-area {
  margin-bottom: 50px;
  padding: 10px 10px 15px;
}

#main-contents .kids-page .point-area .bold {
  font-weight: bold;
}

#main-contents .kids-page .point-area .text .bold {
  font-size: unset;
}

#main-contents .kids-page .proccess .img-container img {
  width: 80%;
  margin-top: 15px;
}

#main-contents .kids-page .proccess ul,
#main-contents .kids-page .activity ul {
  background: #fff;
  padding: 10px;
}

#main-contents .kids-page .proccess ul .no-text,
#main-contents .kids-page .activity ul .no-text {
  margin-top: 5px;
  margin-left: 30px;
}

#main-contents .kids-page .activity .contents .text {
  padding-top: 20px;
}

#main-contents .kids-page .img-container.flex {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}

#main-contents .kids-page .img-container.flex img {
  width: 48%;
  margin-right: 5px;
}

#main-contents .kids-page .point-area .img-container {
  text-align: left;
}

#main-contents .kids-page .point-area .img-container img {
  width: 20%;
}

#main-contents .kids-page .point-area .contents {
  border: 3px solid #4d4d4d;
  border-radius: 15px;
  padding: 5px 10px;
}

#main-contents .kids-page .point-area .contents ul {
  margin-left: 35px;
}

/******************************************************/

/* サイトマップ *****************************************/
#sitemap {
  background: #fff;
}

#sitemap-page-contents {
  margin: 50px auto 20px;
  width: 90%;
}

#sitemap-container {
  margin: 20px;
}

#contents-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  column-gap: 15px;
  row-gap: 15px;
}

#contents-list .list-item.coral {
  border: 3px solid #f38181;
}

#contents-list .list-item.lemon {
  border: 3px solid #fce38a;
}

#contents-list .list-item.green {
  border: 3px solid #8cb77b;
}

#contents-list .list-item.cyan {
  border: 3px solid #95e1d3;
}

#contents-list .list-item.pink {
  border: 3px solid #ffb6b9;
}

#contents-list .list-item.orange {
  border: 3px solid #f4c6b2;
}

#contents-list .list-item.leaf-green {
  border: 3px solid #64a999;
}

#contents-list .list-item.aqua {
  border: 3px solid #8ac6d1;
}

#contents-list .list-item .contents-name {
  padding: 10px;
  font-size: 16px;
}

#contents-list .list-item.coral .contents-name {
  background: #fef5f5;
  border-bottom: 3px solid #f38181;
}

#contents-list .list-item.lemon .contents-name {
  background: #f9f6ed;
  border-bottom: 3px solid #fce38a;
}

#contents-list .list-item.green .contents-name {
  background: #ebf3e9;
  border-bottom: 3px solid #8cb77b;
}

#contents-list .list-item.cyan .contents-name {
  background: #eefaf8;
  border-bottom: 3px solid #95e1d3;
}

#contents-list .list-item.pink .contents-name {
  background: #fff7f7;
  border-bottom: 3px solid #ffb6b9;
}

#contents-list .list-item.orange .contents-name {
  background: #fcf3ef;
  border-bottom: 3px solid #f4c6b2;
}

#contents-list .list-item.leaf-green .contents-name {
  background: #f5faf9;
  border-bottom: 3px solid #64a999;
}

#contents-list .list-item.aqua .contents-name {
  background: #ecf5f7;
  border-bottom: 3px solid #8ac6d1;
}

#contents-list .list-item ul {
  margin: 20px;
}

#contents-list .list-item li {
  margin-bottom: 5px;
}
/******************************************************/

/* リニューアルページ ************************************/
#change-point {
  position: relative;
  margin: 5em 0;
  padding: 0.5em 1em;
  width: 80%;
  border: solid 3px #ccb8cc;
}

#change-point .box-title {
  position: absolute;
  display: inline-block;
  top: -30px;
  left: -3px;
  padding: 5px 10px;
  height: 30px;
  line-height: 20px;
  font-size: 20px;
  background: #ccb8cc;
  color: #ffffff;
  font-weight: bold;
  border-radius: 5px 5px 0 0;
}

#change-point ul {
  margin-left: 30px;
}

#change-point li {
  list-style: disc;
  margin-bottom: 5px;
}
/******************************************************/

/* サイドバー *******************************************/
#sidebar {
  margin: 15px;
  padding: 0 10px;
  width: 20%;
  min-height: 600px;
  height: max-content;
  background: #f7f6f4;
  border-radius: 3px;
}

#sidebar-list {
  display: block;
  justify-content: space-around;
  margin-top: 5px;
}

#sidebar-list .list-item {
  position: relative;
  display: block;
  padding: 10px 0;
  width: 150px;
  text-align: left;
  cursor: pointer;
}

#sidebar-list .list-item::after {
  content: '';
  display: block;
  position: absolute;
  right: -25px;
  bottom: 18px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #67717d;
  border-bottom: 2px solid #67717d;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: center center;
  transform-origin: center center;
  -webkit-transition: transform .2s ease-in-out;
  transition: transform .2s ease-in-out;
  cursor: pointer;
}

#sidebar-list .list-item.is-active::after {
  top: 18px;
  right: -25px;
  bottom: unset;  
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

#sidebar-list .list-item button {
  cursor: pointer;
  border: none;
  background: unset;
  color: #4d4d4d;
  padding: 10px 0;
}

#sidebar-list .list-item .dropdown-panel-list {
  top: 52px;
  left: 0;
  right: 0;
  margin: auto;
  overflow: hidden;
  width: 100%;
  display: none;
}

#sidebar-list .list-item .dropdown-panel-list .panel-item {
  display: block;
  padding: 5px 0;
  margin: 5px 0 5px 2vw;
}
/******************************************************/


/* スマホ・タブレット ************************************/
@media screen and (min-width:415px) and (max-width:1024px) {
  header {
    justify-content: flex-start;
  }

  #header-container {
    margin-left: 2.8vw;
  }

  #header-container .item {
    max-width: 200px;
  }

  #header-container .item .logo {
    width: 60%;
  }

  #slick-box .item p {
    font-size: 3.8vw;
  }
  
  #topic-container {
    display: block;
  }

  #banner-container {
    margin: 0;
  }

  #banner-container .item {
    width: max-content;
    margin-right: auto;
    margin-left: auto;
  }

  .title {
    font-size: 24px;
  }

  #news-container li a {
    font-size: 16px;
  }

  #news-container button {
    font-size: 16px;
  }

  #contents-container {
    width: 90%;
  }

  #contents-box .box-item .box-contents {
    padding: 30px 10px 35px 10px;
    font-size: 16px;
  }

  #calendar-container p {
    margin: 1vw auto;
    font-size: 1.8vw;
  }

  #access-container .route {
    font-size: 16px;
    width: 65%;
  }

  footer {
    font-size: 16px;
  }

  #address {
    width: 80%;
    font-size: 16px;
  }

  #address .first {
    font-size: 2.4vw;
  }

  #link-area {
    width: 80%;   
  }

  #main-page-contents {
    margin-top: 40px;
  }

  #sidebar-list .list-item {
    width: fit-content;
  }

  #sidebar-list .list-item::after {
    right: -20px;
  }

  #sidebar-list .list-item.is-active::after {
    right: 20px;
  }

  #sidebar-list .list-item.is-active.adjust::after {
    right: -20px;
  }

  #sidebar-list .list-item .dropdown-panel-list .panel-item {
    margin: 5px 0 5px 1vw;
  }

  #main-contents .text {
    font-size: 14px;
  }

  #main-contents .text .bold {
    font-size: 15px;
  }

  #main-contents h1,
  #sitemap-container h1 {
    padding-top: 1em;
    font-size: 2.8vw;
  }

  #main-contents h2 {
    font-size: 2.5vw;
  }

  #main-contents h3 {
    font-size: 2.2vw;
  }

  #main-contents h4 {
    font-size: 16px;
  }

  #main-contents .headline {
    font-size: 18px;
  }

  #main-contents .table-container .title {
    font-size: 2.4vw;
  }

  #main-contents .table-container table {
    width: 100%;
  }

  #main-contents .table-container th,
  #main-contents .table-container td {
    font-size: 14px;
  }

  #main-contents .etc {
    font-size: 16px;
  }

  #main-contents .kids-page .text {
    line-height: 2.8;
  }

  #main-contents .kids-page .kids-items .img-item {
    width: 7%;
  }

  #main-contents .kids-page .img-container img,
  #main-contents .kids-page #no2 .img-container img, 
  #main-contents .kids-page #no5 .img-container img {
    width: 100%;
  }

  #main-contents .kids-page .proccess .title, 
  #main-contents .kids-page .activity .title {
    font-size: 2.8vw;
  }

  #main-contents .kids-page .proccess .img-container img,
  #main-contents .kids-page .proccess .contents .img-container.flex img {
    width: 95%;
  }

  #main-contents .kids-page .point-area .img-container img {
    width: 40%;
  }

  #main-contents .kids-page .point-area .contents ul {
    margin-left: 10px;
  }

  #main-contents .kids-page .img-container.flex {
    display: block;
  }

  #main-contents .kids-page .img-container.flex img {
    width: 100%;
    margin-bottom: 5px;
    margin-right: 0;
  }

  #main-contents .img-container.relay .item {
    width: 100%;
  }

  #main-contents .img-container a {
    margin: 0 10px;
  }

  #main-contents .notes {
    padding-left: 2.5vw;
  }

  #main-contents .notes .head span {
    font-size: 16px;
  }

  .roster-profile .photo {
    min-width: 105px;
  }

  .roster-profile .photo img {
    width: 90px;
  }

  #main-contents .flow li .bold {
    font-size: 18px;
  }

  #main-contents .img-container.news-info,
  #main-contents .img-container.honkaigi,
  #main-contents .img-container.iinkai {
    justify-content: center;
  }

  #main-contents .img-container.news-info img,
  #main-contents .img-container.honkaigi img,
  #main-contents .img-container.iinkai img,
  #main-contents .img-container.publish-area img {
    width: 50%;
  }

  #main-contents .img-container.app {
    display: block;
  }

  #main-contents .img-container.app a {
    margin: 0 auto;
  }

  #main-contents .petition .sample-area {
    text-align: center;
  }

  #main-contents .petition .sample-container {
    display: block;
    width: 80%;
  }

  #main-contents .petition .sample-container .sample-items {
    text-align: center;
  }

  #main-contents .petition .sample-area .notice {
    text-align: left;
  }
}


@media screen and (max-width:414px) {
  body {
    width: 100%;
    font-size: 16px;
  }

  header {
    display: flex;
    justify-content: flex-start;
    margin: 0;
    padding: 0 10px;
    max-width: 100vw;
  }

  #header-container {
    display: unset;
    margin: 0;
    padding: 0;
    width: 88%;
  }

  #header-container .item {
    width: max-content;
    margin: 2vw;
  }

  #header-icon-container {
    display: none;
  }

  #header-hamburger-menu {
    display: block;
  }

  #___gcse_0 {
    display: none;
  }

  /* slider add css */
  .slick-slide img {
    height: 250px;
  }

  /* slider css */
  #slick-box .item p {
    font-size: 5.8vw;
  }

  /* banner-container */
  #banner-container {
    width: 90%;
    margin: 0 3vw;
  }

  #banner-container .item {
    margin: 3vw 0;
  }

  #banner-container .item img {
    width: 100%;
  }

  /* Youtube */
  #movie-area {
    margin: auto;
    margin-bottom: 3vw;
  }

  .movie-area.pc {
    display: none;
  }

  .movie-area.sp {
    display: block;
  }

  .title {
    font-size: 20px;
  }

  /* 新着更新情報 */
  #news-container {
    padding: 3vw 0;
  }

  #news-container ul {
    width: 80%;
  }

  #news-container li a {
    font-size: 3.6vw;
  }

  #news-container li .news-items {
    display: block;
    margin: 0 2vw;
  }

  #news-container li .news-items .date,
  #news-container li .news-items .contents {
    width: unset;
  }

  #news-container button {
    font-size: 3.6vw;
    width: 180px;
  }

  /* コンテンツドロップダウンメニュー */
  #contents-container {
    width: 100%;
    padding: 0 3px;
  }

  #contents-box .box-item{
      width: 43%;
  }

  #contents-box .box-item .box-contents {
    font-size: 16px;
  }

  #contents-box .box-item .drop-list li a {
    font-size: 16px;
  }

  #contents-box .box-item .box-contents img {
    width: 50%;
  }

  /* 会議日程 */
  #calendar-container {
    padding: 3vw 1vw;
  }

  #calendar-container h3 {
    margin: 0 0 2vw 1vw;
    font-size: 3.4vw;
  }

  #calendar-container p {
    width: auto;
    margin: 2vw 3vw;
    font-size: 14px;
  }

  .fc-list-event-time {
    display: none!important;
  }

  .fc-list-event-title {
    white-space: break-spaces!important;
  }


  /* アクセス */
  #access-container .map.pc {
    display: none;
  }

  #access-container .map.sp {
    display: block;
  }

  #access-container .route {
    width: 80%;
  }

  #access-container .route li {
    font-size: 14px;
  }


  /* フッター */
  #address {
    width: 90%;
    font-size: 14px;
  }

  #link-area {
    width: 90%;
    display: block;
    font-size: 12px;
  }

  #link-area li {
    padding: 1vw 2vw;
    border: none;
  }

  #address .first {
    font-size: 5.6vw;
  }

  #sidebar {
    display: none;
  }

  /* サイトマップ */
  #sitemap-container h1 {
    font-size: 24px;
  }

  #contents-list {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
  }

  /* このウェブサイトについて *******************************/
  #about-website ul,
  #about-personal ul {
    margin: 0 30px;
  }

  #change-point {
    width: 100%;
  }

  /* main */
  #main-contents {
    width: 100%;
    padding: 0 15px;
  }

  #main-contents h1 {
    margin-left: 1vw;
    font-size: 24px;
  }

  #main-contents .headline {
    font-size: 22px;
  }

  #main-contents h2 {
    max-width: 350px;
    font-size: 20px;
  }

  #main-contents h3 {
    max-width: 350px;
    font-size: 18px;
  }

  #main-contents h4 {
    font-size: 16px;
  }

  #main-contents .text {
    font-size: 16px;
  }

  #main-contents .text .bold {
    font-size: 16px;
  }

  #main-contents #scroll-top {
    font-size: 16px;
  }

  #main-contents .table-container .title {
    font-size: 18px;
  }

  #main-contents .table-container table {
    width: 350px;
  }

  #main-contents .table-container .pc-view {
    display: none;
  }

  #main-contents .table-container .sp-view {
    display: table;
  }

  #main-contents .table-container td {
    font-size: 16px;
    word-break: normal;
  }

  #main-contents .browsing-place .table-container th {
    font-size: 16px;
  }

  #main-contents .table-container .sp-view td {
    word-break: normal;
  }

  #main-contents .table-container .sp-color {
    background: #f7f6f4;
  }

  #main-contents .table-container .center {
    text-align: center;
  }

  #main-contents .triangle {
    border-right: 15px solid transparent;
    border-left: 15px solid transparent;
    border-top: 30px solid #ccb8cc;
  }

  #main-contents .committee-list {
    margin: 40px 3vw;
  }

  #main-contents .etc {
    font-size: 16px;
  }

  #main-contents .img-container.relay {
    display: block;
  }

  #main-contents .img-container.relay .item {
    width: 100%;
    display: block;
    margin-bottom: 15px;
  }

  #main-contents .img-container a {
    margin: 0;
  }

  #main-contents .img-container.look-for a {
    display: flex;
    width: 100%;
  }

  #main-contents .img-container.look-for img {
    width: 100%;
  }

  #main-contents .img-container.honkaigi,
  #main-contents .img-container.iinkai {
    display: block;
    text-align: center;
  }

  #main-contents .img-container.honkaigi img,
  #main-contents .img-container.iinkai img {
    width: 80%;
    margin: 0 auto 5px auto;
  }

  #main-contents .hearing-group {
    display: block;
    text-align: center;
  }

  #main-contents .hearing-group img {
    width: 50%;
  }

  #main-contents .hearing-group .text {
    text-align: left;
  }

  #main-contents .img-container.news-info {
    display: block;
  }

  #main-contents .img-container.news-info img {
    width: 80%;
    margin: 0 40px;
  }

  #main-contents .img-container.news-info .info .more {
    margin: 50px 0;
  }

  #main-contents .img-container.app {
    display: block;
  }

  #main-contents .img-container.app a {
    width: 70%;
    margin: 0 auto;
  }

  #main-contents .notes ul {
    margin-left: 20px;
  }

  #main-contents .file-container .more {
    margin: 50px 0;
  }

  #main-contents .flow {
    margin: 40px 2vw;
  }

  #main-contents .flow li .bold {
    font-size: 18px;
  }

  #main-contents .relay-category .internet ul{
    width: 90%;
    margin: 0 auto;
  }

  #main-contents .petition .sample-container {
    display: block;
  }

  #main-contents .petition .sample-area {
    text-align: center;
  }

  #main-contents .petition .sample-container {
    display: block;
  }

  #main-contents .petition .sample-container .sample-items {
    text-align: center;
  }

  #main-contents .petition .sample-container .sample-items img {
    width: 100%;
  }

  #main-contents .petition .sample-area .notice {
    text-align: left;
  }

  #main-contents .color-box {
    padding: 20px 15px;
  }

  #main-contents .img-container.publish-area img {
    width: 80%;
  }

  #main-contents #mailform {
    margin: 80px 0 50px;
  }

  #main-contents .kids-page .text {
    line-height: 2.5;
  }

  #main-contents .kids-page .kids-items .img-item {
    width: 8%;
  }

  #main-contents .kids-page .img-container img,
  #main-contents .kids-page #no2 .img-container img,
  #main-contents .kids-page #no5 .img-container img {
    width: 100%;
  }

  #main-contents .kids-page .img-container.flex {
    display: block;
  }

  #main-contents .kids-page .img-container.flex img {
    width: 100%;
    margin-bottom: 5px;
    margin-right: 0;
  }

  #main-contents .kids-page .proccess .img-container img {
    width: 95%;
  }

  #main-contents .kids-page .point-area .img-container img {
    width: 60%;
  }

  #main-contents .roster-container h2 {
    width: 90%;
  }

  #main-contents .kids-page .point-area .contents ul {
    margin-left: 0;
  }

  #main-contents .expenses .table-container th,
  #main-contents .expenses .table-container td {
    font-size: 14px;
  }

  .roster-profile {
    display: block;
    margin-left: 1vw;
  }

  .roster-profile .photo {
    width: 50%;
    margin: auto;
  }

  .roster-profile .info {
    margin-top: 15px;
    margin-left: 15px;
  }

  .roster-profile .info h3 {
    margin-top: 5vw!important;
  }

  .roster-profile .info p {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 16px;
  }
}