@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@300;400;500;700&display=swap');

/* reset
------------------------------------------------------- */
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)

   fixed
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
	word-break: break-all;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

div,p,dl,dt,dd,ol,ul,li,
h1,h2,h3,h4,h5,h6,
form,input,button,textarea,table,tr,th,td,
article,aside,header,footer,section,nav{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* -------------------------------------------------------
   font
------------------------------------------------------- */
/*
フォント指定 游ゴシック
*/
body,
html,
td,
th,
input[type="text"],
textarea {
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 170%;
}


a:link,
a:visited {
    color: #0074BE;
    text-decoration: none;
  transition:all 0.2s;
}

a:hover {

}

.fontAwesome::before {
  font-family: "Font Awesome 5 Free";
  content: '\f1e2';
  font-weight: 900;
}

img {
	vertical-align:bottom;
  max-width: 100%;
}

/* -------------------------------------------------------
   一括指定 boxsizing / clearfix / image hover / contents width
------------------------------------------------------- */
/* boxsizing */
*, *:before, *:after {
  -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
}

/* clearfix */
.clearfix:after {
  content: "";
  clear: both;
  display: block;
}

/* image hover */
.class:hover {
    opacity: 0.7;
    text-decoration: none;
}

/* contents width */
.class {
    width: 980px;
    margin: 0 auto;
    position: relative;
}

/* form style reset */
/*
input, button, textarea, select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
*/

/* flex content */
.flexContent {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* 3カラム */
.flexContent {
    margin-left: 10%;
    margin-right: 10%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.flexContent li {
    flex-basis: 31%;
    margin-bottom: 10px;
}

.flexContent li:nth-child(3n+1):last-child {
    margin-left: auto;
    margin-right: calc(35% * 2);
}

.flexContent li:nth-child(3n+2):last-child {
    margin-left: auto;
    margin-right: 35%;
}


/* 4カラム */

/* -------------------------------------------------------

------------------------------------------------------- */
@media (min-width: 992px) {
	body {
		background: #efefef;
	}
}
@media (min-width: 992px) {
	.Container {
		width: 1090px;
		background: #fff;
		margin-left: auto;
		margin-right: auto;
		margin-top: 1em;
		border-radius: 20px;
		box-shadow: 0 0 5px rgba(0, 0, 0, .3);
	}
}

/* -------------------------------------------------------
ヘッダー
------------------------------------------------------- */
.Header {
	background: url("../images/bg-head.png") no-repeat center top;
	background-size: 100%;
	padding-top: 2em;
	padding-bottom: 3em;
}

#siteTop .Header {
	padding-top: 7em;
	padding-bottom: 3em;
}

.boxHeader {
	margin-left: 1em;
	margin-right: 1em;
	border-bottom: 3px solid #eff1f8;
	padding-bottom: 1em;
}

.headerLogo {
	text-align: center;
}

.headerLogo__image {
	width: 45%;
	margin-left: auto;
	margin-right: auto;
}

#siteTop .headerLogo__image {
	width: 75%;
	margin-left: auto;
	margin-right: auto;
}

.headerLogo__message {
	font-size: 1.2rem;
	margin-top: .3em;
}

#siteTop .headerLogo__message {
	font-size: 1.8rem;
	margin-top: .5em;
}

.headerLogo__ilec {
	font-weight: bold;
	font-size: 1.8rem;
}

#siteTop .headerLogo__ilec {
	font-weight: bold;
	font-size: 3.0rem;
	margin-top: .3em;
}

/* ナビゲーション */
.hamburger {
  width: 60px;
  height: 52px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  position: fixed;
  right: 0;
  top: 0;
	background: #f69e00;
  z-index: 1001;
	padding: 1em;
	border-bottom-left-radius: 10px;
}

.hamburger span {
  display: block;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: 0.4s;
}

/* 開いた時のアイコン変形 */
.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* オーバーレイメニュー */
.overlay-nav {
  position: fixed;
  inset: 0;
  background: #eff1f8;
  opacity: 0;
  pointer-events: none;
  transition: 0.5s;
  z-index: 1000;
}

.overlay-nav.active {
  opacity: 1;
  pointer-events: auto;
}

.overlay-navHead {
	text-align: center;
	margin-bottom: 2em;
	margin-top: 3em;
}

.navHeadLogo {
	width: 200px;
	margin-left: auto;
	margin-right: auto;
}

.navHeadLogoMessage {
	font-size: 1.4rem;
}

.navHeadLogoIlec {
	font-weight: bold;
	font-size: 2.0rem;
}

ul.overlay-navList {
  list-style: none;
	width: 80%;
	margin-left: auto;
	margin-right: auto;
}

ul.overlay-navList li {
  margin: 20px 0;
	width: 100%;
}

ul.overlay-navList li span,
ul.overlay-navList li a {
	background: #fff;
	padding: .5em;
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
}

ul.overlay-navList a {
	color: #67ae53;
  transition: 0.3s;
	position: relative;
}

ul.overlay-navList span {
	
}

.overlay-nav a:hover {
  opacity: 0.7;
}

ul.overlay-navList li a::before,
ul.overlay-navList li span::before{
	content: "";
	display: inline-block;
	margin-right: 1em;
	width: 30px;
	height: 30px;
}

ul.overlay-navList li.navLink001 a::before {
	background: url("../images/icon-30th.png") no-repeat left center;
	background-size: 30px auto;
}

ul.overlay-navList li.navLink002 a::before {
	background: url("../images/icon-ayumi.png") no-repeat left center;
	background-size: 30px auto;
}

ul.overlay-navList li.navLink003 a::before,
ul.overlay-navList li.navLink003 span::before{
	background: url("../images/icon-movie.png") no-repeat left center;
	background-size: 30px auto;
}

ul.overlay-navList li.navLink004 a::before,
ul.overlay-navList li.navLink004 span::before{
	background: url("../images/icon-digest.png") no-repeat left center;
	background-size: 30px auto;
}

ul.overlay-navList li a::after {
	font-family: "Font Awesome 5 Free";
	  content: '\f0a9';
	  font-weight: 900;
	display: inline-block;
	color: #aaaaaa;
	font-size: 13px;
	position: absolute;
	right: 1em;
	top: 20%;
}

/* -------------------------------------------------------
フッター
------------------------------------------------------- */
.Footer {
	background: url("../images/bg-foot.png") no-repeat center bottom;
	background-size: 100%;
	padding-top: 3em;
}

@media (min-width: 992px) {
	.Footer {
		padding-top: 12rem;
		margin-bottom: 1em;
	}
}

.boxFooter {
	
}

.copyright {
	text-align: center;
	color: #808080;
	font-size: 1.2rem;
}

/* -------------------------------------------------------
コンテンツ
------------------------------------------------------- */
/* パンクズナビ */
.pageList {
	margin-left: 1em;
	margin-right: 1em;
	margin-top: -3em;
	margin-bottom: 1.5em;
}

.pageList ul {
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 1.1rem;
	color: #999;
}

.pageList li {
	display: inline-block;
}

.pageList li a {
	color: #000;
}

.pageList li:first-child a::before {
	font-family: "Font Awesome 5 Free";
    font-weight: bold;
    content: "\f015";
    color: #999;
    font-size: 12px;
    display: inline-block;
    margin-right: 5px;
}
.pageList li a::after {
	font-family: "Font Awesome 5 Free";
    font-weight: bold;
    content: "\f0da";
    color: #999;
    font-size: 12px;
    display: inline-block;
    margin-left: 5px;
}

/* -------------------------------------------------------
page:トップ
------------------------------------------------------- */

.blockTopMessage {
	margin-left: 1em;
	margin-right: 1em;
	padding-top: 1em;
	padding-bottom: 1em;
	font-size: 2.4rem;
	text-align: center;
	line-height: 140%;
	font-weight: bold;
	color: #67ae53;
	background-image: url("../images/bar-001.png"), url("../images/bar-001.png");
	background-position: center top, center bottom;
	background-repeat: no-repeat;
	background-size: 100% auto, 100% auto;
}

@media (min-width: 992px) {
	.blockTopMessage {
		background-repeat: repeat-x;
		background-size: auto 10px, auto 10px;
		margin-left: 90px;
		margin-right: 90px;
		font-size: 3.4rem;
	}
}

.blockContents {
	margin-left: 1em;
	margin-right: 1em;
}

@media (min-width: 992px) {
	.blockContents {
		margin-left: 90px;
		margin-right: 90px;
	}
}

.blockContentsHead {
	margin-top: 3em;
}

.blockContentsHead__logo {
	width: 140px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 2em;
}

.contentsItem {
	border-right: 6px solid #eff1f8;
	border-bottom: 6px solid #eff1f8;
	border-left: 6px solid #eff1f8;
	padding: 1em;
	background: url("../images/bar-001.png") no-repeat center top;
	background-size: 100% auto;
}

@media (min-width: 992px) {
	.contentsItem {
		background: none;
		border-radius: 20px;
		border: 10px solid #eff1f8;
		position: relative;
	}
	.contentsItem::before {
		content: "";
		display: block;
		background-image: url("../images/bar-002.png");
		background-repeat: no-repeat;
		background-size: 100% auto;
		width: 870px;
		height: 100px;
		position: absolute;
		left: -10px;
		top: -20px;
	}
}

.contentsItem + .contentsItem {
	margin-top: 2em;
}

.contentsItem__category {
	text-align: center;
	margin-top: 1em;
	margin-bottom: 1em;
}

.contentsItem__category img {
	width: 80px;
}

.contentsItem__title {
	text-align: center;
	font-weight: bold;
	font-size: 2.2rem;
}

.contentsItem__title a {
	color: #67ae53;
	
}

.contentsItem__title a::after {
	font-family: "Font Awesome 5 Free";
	  content: '\f0a9';
	  font-weight: 900;
	display: inline-block;
	margin-left: .5em;
	color: #aaaaaa;
	font-size: 13px;
}

.contentsItem__caption {
	margin-top: 1em;
}


/* -------------------------------------------------------
page:中ページ
------------------------------------------------------- */
.blockContentsTitle {
	text-align: center;
	margin-top: 2em;
	margin-bottom: 4em;
}
.title001 {
	display: inline-block;
	border-bottom: 5px solid #67ae53;
	font-size: 2.4rem;
	font-family: 'Zen Maru Gothic', sans-serif;
	font-weight: 800;
}

@media (min-width: 992px) {
	.title001 {
		font-size: 3.4rem;
		padding-bottom: .3em;
	}
}
.pageHead {
	text-align: center;
}

@media (min-width: 992px) {
	.pageHead {
		margin-top: 60px;
		margin-bottom: 40px;
	}
}

.pageHead__image {
	margin-left: auto;
	margin-right: auto;
	width: 80px;
	margin-bottom: 1em;
}

@media (min-width: 992px) {
	.pageHead__image {
		margin-bottom: 40px;
	}
}

.pageHead__title {
	font-weight: bold;
	font-size: 2.4rem;
}

@media (min-width: 992px) {
	.pageHead__title {
		font-size: 3.4rem;
		margin-bottom: .3em;
	}
}

.pageHead__titleSub {
	color: #67ae53;
	font-size: 1.2rem;
}

/* -------------------------------------------------------
page:あゆみ
------------------------------------------------------- */
.blockAyumiList {
	
}


dl.listAyumiYears {
	border-left: 1px solid #999;
	padding-left: 1em;
}

dl.listAyumiYears dt {
	color: #67ae53;
	font-family: 'Noto Serif JP', serif;
  	font-weight: 800;
	font-size: 1.8rem;
	margin-bottom: .5em;
	position: relative;
	left: -2.5rem;
	top: -.5em;
}

@media (min-width: 992px) {
	dl.listAyumiYears dt {
		font-size: 2.2rem;
		left: -28px;
	}
}

dl.listAyumiYears dt::before {
	content: "●";
	display: inline-block;
	color: #67ae53;
	margin-right: .4em;
}

dl.listAyumiYears dd {
	margin-top: .5em;
	position: relative;
	top: -.5em;
}

dl.listAyumiYears dd a {
	color: #67ae53;
}

dl.listAyumiYears dd a::after {
	    font-family: "Font Awesome 5 Free";
    content: '\f0a9';
    font-weight: 900;
    display: inline-block;
    margin-left: .5em;
    color: #aaaaaa;
    font-size: 13px;
}

dl.listAyumiYears dd + dt {
	margin-top: 4em;
}

.blockContentsAyumi {
	margin-top: 2em;
}

@media (min-width: 992px) {
	.blockContentsAyumi + .blockContentsTitle {
		margin-top: 160px;
	}
}

.blockContentsAyumi__item {
	
}

@media (min-width: 992px) {
	.blockContentsAyumi__item {
		display: flex;
		flex-wrap: nowrap;
		justify-content: space-between;
	}
}

.blockContentsAyumi__item + .blockContentsAyumi__item {
	margin-top: 2em;
}

@media (min-width: 992px) {
	.blockContentsAyumi__item + .blockContentsAyumi__item {
		margin-top: 60px;
	}
}

.blockContentsAyumi__itemText {
	
}

@media (min-width: 992px) {
	.blockContentsAyumi__itemText {
		width: 50%;
	}
}

.blockContentsAyumi__itemImages {
	
}

@media (min-width: 992px) {
	.blockContentsAyumi__itemImages {
		width: 48%;
	}
}

.ayumiItemDate {
	color: #67ae53;
	font-family: 'Noto Serif JP', serif;
  	font-weight: 800;
	font-size: 1.8rem;
	margin-bottom: .5em;
}

.ayumiItemTitle {
	font-family: 'Noto Serif JP', serif;
  	font-weight: 800;
	font-size: 2.0rem;
	margin-bottom: 1em;
}

@media (min-width: 992px) {
	.ayumiItemTitle {
		line-height: 170%;
	}
}

.ayumiItemDetail {
	margin-bottom: 1em;
}

.ayumiItemDetail.pt-001 {
	border: 1px solid #ccc;
	padding: 1em;
}

.ayumiItemDetail a {
	color: #67ae53;
}

.ayumiItemDetail a::after {
	font-family: "Font Awesome 5 Free";
    content: '\f0a9';
    font-weight: 900;
    display: inline-block;
    margin-left: .5em;
    color: #aaaaaa;
    font-size: 13px;
}

.ayumiItemImage {
	width: 80%;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.ayumiItemImage img + img {
	margin-top: 1em;
}

@media (min-width: 992px) {
	.ayumiItemImage img {
		margin-top: 0;
		margin-bottom: 10px;
		margin-left: 10px;
	}
}


/* media query pattern
--------------------------------------------------------------------------- */

/* 576px以上  */
@media (min-width:576px) {
}

/* 576px以上 767.98px以下  */
@media (min-width:576px) and (max-width:767.98px) {
}

/* 768px以上  */
@media (min-width:768px) {
}

/* 768px以上 991.98px以下  */
@media (min-width:768px) and (max-width:991.98px) {
}

/* 783px以上  */
@media (min-width:783px) {
}

/* 991.98px以上  */
@media (min-width:991.98px) {
}

/* PC main  */
/* 992px以上  */
@media (min-width:992px) {
}

/* 992px以上 1199.98px以下  */
@media (min-width:992px) and (max-width:1199.98px) {

}

/* 1200px以上  */
@media (min-width:1200px) {

}

/* / PC main  */
/* 1400px以上  */
@media (min-width:1400px) {
}

/* 991.98px以下  */
@media (max-width:991.98px) {
}

/* 991px以下  */
@media (max-width:991px) {

}

/* 782px以下  */
@media (max-width:782px) {
}

/* 782px以下  */
@media screen and (max-width:782px) {
}

@media (max-width:767.98px) {}

@media (max-width:600px) {
}

@media (max-width:575.98px) {
}






/* -------------------------------------------------------
 utilities
------------------------------------------------------- */
.bold {font-weight: bold;}
.u-mt0:not(:root) { margin-top: 0; }
.u-mt10:not(:root) { margin-top: 10px; }
.u-mt20:not(:root) { margin-top: 20px; }
.u-mt30:not(:root) { margin-top: 30px; }
.u-mt40:not(:root) { margin-top: 40px; }
.u-mt50:not(:root) { margin-top: 50px; }
.u-mt60:not(:root) { margin-top: 60px; }
.u-mt70:not(:root) { margin-top: 70px; }
.u-mt80:not(:root) { margin-top: 80px; }
.u-mt90:not(:root) { margin-top: 90px; }
.u-mt100:not(:root) { margin-top: 100px; }

.u-mtM10:not(:root) { margin-top: -10px; }
.u-mtM20:not(:root) { margin-top: -20px; }
.u-mtM30:not(:root) { margin-top: -30px; }
.u-mtM40:not(:root) { margin-top: -40px; }
.u-mtM50:not(:root) { margin-top: -50px; }
.u-mtM60:not(:root) { margin-top: -60px; }
.u-mtM70:not(:root) { margin-top: -70px; }
.u-mtM80:not(:root) { margin-top: -80px; }
.u-mtM90:not(:root) { margin-top: -90px; }
.u-mtM100:not(:root) { margin-top: -100px; }

.u-mb0:not(:root) { margin-bottom: 0; }
.u-mb10:not(:root) { margin-bottom: 10px; }
.u-mb20:not(:root) { margin-bottom: 20px; }
.u-mb30:not(:root) { margin-bottom: 30px; }
.u-mb40:not(:root) { margin-bottom: 40px; }
.u-mb50:not(:root) { margin-bottom: 50px; }
.u-mb60:not(:root) { margin-bottom: 60px; }
.u-mb70:not(:root) { margin-bottom: 70px; }
.u-mb80:not(:root) { margin-bottom: 80px; }
.u-mb90:not(:root) { margin-bottom: 90px; }
.u-mb100:not(:root) { margin-bottom: 100px; }

.u-mbM10:not(:root) { margin-bottom: -10px; }
.u-mbM20:not(:root) { margin-bottom: -20px; }
.u-mbM30:not(:root) { margin-bottom: -30px; }
.u-mbM40:not(:root) { margin-bottom: -40px; }
.u-mbM50:not(:root) { margin-bottom: -50px; }
.u-mbM60:not(:root) { margin-bottom: -60px; }
.u-mbM70:not(:root) { margin-bottom: -70px; }
.u-mbM80:not(:root) { margin-bottom: -80px; }
.u-mbM90:not(:root) { margin-bottom: -90px; }
.u-mbM100:not(:root) { margin-bottom: -100px; }

.u-ml0:not(:root) { margin-left: 0; }
.u-ml10:not(:root) { margin-left: 10px; }
.u-ml20:not(:root) { margin-left: 20px; }
.u-ml30:not(:root) { margin-left: 30px; }
.u-ml40:not(:root) { margin-left: 40px; }
.u-ml50:not(:root) { margin-left: 50px; }
.u-ml60:not(:root) { margin-left: 60px; }
.u-ml70:not(:root) { margin-left: 70px; }
.u-ml80:not(:root) { margin-left: 80px; }
.u-ml90:not(:root) { margin-left: 90px; }
.u-ml100:not(:root) { margin-left: 100px; }

.u-mr0:not(:root) { margin-right: 0; }
.u-mr10:not(:root) { margin-right: 10px; }
.u-mr20:not(:root) { margin-right: 20px; }
.u-mr30:not(:root) { margin-right: 30px; }
.u-mr40:not(:root) { margin-right: 40px; }
.u-mr50:not(:root) { margin-right: 50px; }
.u-mr60:not(:root) { margin-right: 60px; }
.u-mr70:not(:root) { margin-right: 70px; }
.u-mr80:not(:root) { margin-right: 80px; }
.u-mr90:not(:root) { margin-right: 90px; }
.u-mr100:not(:root) { margin-right: 100px; }

.u-alLeft:not(:root) { text-align: left; }
.u-alRight:not(:root) { text-align: right; }
.u-alCenter:not(:root) { text-align: center; }
