<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* CSS Document */
/**{
    outline: #FD00FC  1px solid;
}*/
/*googlefontの適用とfont-sizeの指定*/
html,body{
	font-family: "UD Shin Go Medium"; 
	color: #666;
	font-size: 16px;
}
article,aside,header,footer{
	width: 100%;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}
/*article直下のsectionのみ1200px※.maxで外れる*/
article &gt; section:not(.max),aside &gt; ul,.w-1200,#top ul,footer ul,#first-view,#aichi-shouboudan-link{
	max-width: 1200px;
}
article &gt; section,aside &gt; ul,section.max &gt; ul,#top &gt; ul &gt; li,footer &gt; ul &gt; li,#first-view-top,#first-view,#news,#aichi-shouboudan-link{
	width: 100%;
	padding-right: 2rem;
	padding-left: 2rem;	
}



/*aタグの中身は横幅、高さ100％、文字画像中央配置に指定*/
a{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 100%;
	/*height: 100%;*/
}
/*aタグのclickアクションのcolor指定※:hoverは各所で設定。*/
a,a:active,a:visited,a:link{
	color: #666;
	transition: 0.2s;
}
#top nav a:hover{
	color:#fff;
}

/*★★★header★★★*/
.header{
	background-color: #ffcc00;
}
#top{
	position: sticky;
	top: -127px;
	z-index: 100;
	}
@media (max-width:767px) {
#top{
	top: 0;
	}
}
#top h1,#top .h1{
	font-weight: bold;
	text-align: center;
	margin-top: 1rem;
	line-height: 1;
	height: 80px;
}
@media screen and (max-width: 575px) {
  #top h1,#top .h1{
	height: 90px;
}
} 

@media screen and (min-width: 767px) {
	h1{
	font-size: 2.5rem;
}  }
.h1 {
  margin-top: 0;
  margin-bottom: .5rem;
  font-weight: 500;
  line-height: 1.2
}
.h1 {
  font-size: calc(1.375rem + 1.5vw);
}

@media (min-width:1200px) {
 .h1 {
    font-size: 2.5rem;
  }
}
/*h1の60％表示*/
#top h1 span.small,#top .h1 span.small{
	font-size: 0.6em;
}

/*★★★nav★★★*/
#nav ul li,aside ul li{
	list-style:none;
	font-weight: bold;
}

#nav a{
	height: 100%;
}

@media screen and (max-width: 992px) {
  /*navの形を変えて、収納*/
	header{
		z-index: 12350;
	}
  .site-nav {
	  z-index: 203;
    flex-direction: column;
    background: #ffcc00;
    padding-top: 5vh;
	  width: 50vw;
	  height: 100vh;
    min-width: 350px;  
    align-items: flex-start !important;
    justify-content: flex-start !important;
    position: fixed;
    top: 0;
    right: -100vw;
    transition: 0.3s
  }

  nav#nav ul li {
    padding: 1.2rem 1rem;
    max-width: none;
  }
	
	#nav a{
	justify-content: flex-start;
		
}
	#site-nav li:nth-child(1){
		justify-content: flex-end;
	}
	/*ナビの健太郎の大きさを調節*/
    #site-nav li {
        position: relative;
    }
	#site-nav li img{
        position: absolute;
		width: 70%;
		text-align: right;
        bottom: -35px;
        right: 0;
	}

  /*ハンバーガーメニューボタン作成*/
	@media screen and (min-width: 768px) and (max-width: 991px) {
		#menu{
			flex-direction: column!important;	}	
	} 
  .menu-btn {
    z-index: 204;
    position: fixed;
    top: 10px;
    right: 10px;
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    background-color: transparent;
  }
  /*三本線*/
  .menu-btn span, .menu-btn span:before, .menu-btn span:after {
    content: '';
    display: block;
    height: 2px;
    width: 25px;
    border-radius: 3px;
    background-color: #666666;
    position: absolute;
	  transition: 0.2s;
  }
  .menu-btn span:before {
    bottom: 8px;
  }
  .menu-btn span:after {
    top: 8px;
  }

  .dropdown-menu{
      display: block;
      position: static;
      border: 0;
  }
  /*ハンバーガーメニューを開いたときに背景薄い黒にする*/

}

.back-btn {
  z-index: 202;
  background: rgba(0, 0, 0, 0.30);
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  right: -100%;
  transition: 0.4s;
  transition-delay: 0.1s;
  opacity: 0
}
/*三本線をXに*/
#menu-btn-check:checked ~ .menu-btn span {
  background-color: rgba(255, 255, 255, 0); /*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
	height: 3px;
}
#menu-btn-check:checked ~ .menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
	height: 3px;
}
#menu-btn-check {
  display: none;
}
/*ハンバーガーメニューボタンを押すとナビが出てくるよ*/
#menu-btn-check:checked ~ .site-nav {
  right: 0 !important; /*メニューを画面内へ*/
}
#menu-btn-check:checked ~ .back-btn {
  right: 0 !important; /*メニューを画面内へ*/
  opacity: 1
}

/*★★★searchtextコード★★★*/
.sitesearch,.p-relative {
	position: relative;
}
.btn-search {
  border: none;
  border-radius: 5px;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  margin: 0;
}
.sitesearch .btn-search{
	position: absolute;
	top: 0;
	right: 1rem;
	height: 100%;
	margin: auto;
}
.sitesearch label{
	position: fixed;
	top:0;
}

.p-relative .mobile-modal-btn{
	position: absolute;
	top: 21px;
}
.p-relative .mobile-modal-btn div{
	padding-left: 10px;
}

#srach-text1 {
  height: 42px;
  width: 10rem;
  max-width: 200px;
  min-width: 110px;
  border-radius: 50px;
  border: 1px solid #999999;
  outline: none;
  background: #fff;
  padding: 1rem;
}
/* 検索ボタン　*/
.header-search-btn {
  fill: #666666;
	background-color: transparent;
}
.header-search-btn:hover {
  fill: #333;
}

#header-search-btn-2{
	fill:#666666;
	cursor:pointer;
	padding-bottom: 0.2rem
}

/*検索モバイル時のmodal*/
.modal-body-y {
  width: 80vw;
  max-width: 960px;
  margin-right: auto;
  margin-left: auto;
  background-color: #fff;
  height: 25vh;
  margin-top: 13vh;
  border-radius: 20px;
}

/*パンくずリスト*/
aside#pan{
	align-items: flex-start;
	justify-content: flex-start!important;
	flex-direction: row;
	margin-top: 1.5rem;
	margin-bottom:1.5rem;
}
@media screen and (max-width: 767px) {
  aside#pan{
	margin-bottom: 0.5rem;
	  margin-top: 0.5rem;
}
	
}

aside#pan ul {
	display: inline-flex;
	justify-content: flex-start;
	/*flex-wrap: wrap;*/
	margin-left: auto;
	margin-right: auto;
    overflow-x: auto;
    white-space: nowrap;
}
aside#pan ul li a,.breadcrumb__item{
	justify-content: flex-start;
	align-items: center;
}
.breadcrumb__item{
	font-weight: 100;
	display: inline-block;
}


.breadcrumb__list li a:hover {
  color: #ccc;
}

.breadcrumb__list li span:after {
  content: '\003e'; /* 「&gt;」を要素間の区切り文字として表示 */
  margin-left: 1.2rem; /* 区切り文字と要素の間隔を調整 */
  margin-right: 1.2rem; /* 区切り文字と要素の間隔を調整 */
  color: #666666; /* 区切り文字の文字色 */
}

/*★★★footer★★★*/
footer{
	background-color: #ffcc00;
}
.footer-font{
	text-align: center;
	font-weight: bold;
	line-height: 1.1;
}
.footer-font span.small{
	font-size: 0.7em;
}

.link-btn a,.link-btn.nohover{
	background: #fff;
	border: 3px solid #ff6633;
	border-radius: 10px;
	padding: 0.7em;
	font-weight: bold;
	justify-content: center;
	fill: #666;
}
.link-btn a:hover{
	background: #ffcc00;
	border: 3px solid #ff6633;
	color: #ff6633;
	fill: #ff6633;
}



/*mail-markの色大きさ調整*/
#mail-mark{
	height: auto;
	width: 100%;
	max-width: 55px;
	margin-right: 1rem;
	
}
 #mail-mark .mail-color {
        fill: inherit;
      }
.mail-mark a.mail-position{
		justify-content: center;
	}

@media screen and (max-width: 575px) {
#mail-mark{
	max-width: 40px;
	width: 20%;
	flex: 0 0 auto;
	
}  
	.mail-mark span{
		width: 50%;
		font-size: 1rem;
	}
}

@media screen and (max-width: 400px) {
.mail-mark a.mail-position{
		justify-content: flex-start
	}  
}

/*topに戻る*/
#page_top{
	position: fixed;
	right: 4vw;
	bottom: 1vw;
	z-index: 99;
}

.back a{
	width: 7vw;
	transform: translateY(100%);
	opacity: 0;
	transition: transform 3s, opacity 0.5s;
	position: relative;
	min-width: 128px;

}
.back a img{
	padding-left: 1rem;
}

.back a::before{
	content: url("../img/footer/back_up_comment.svg");
	position: absolute;
    top: -33px;
    right: -22px;
    height: 200px;
    width: 20px;
    transform-origin: bottom left;
    transform: scale(100%,100%);
}

.back.show a{
	transform: translateY(70%);
	transition: 0.5s;
	opacity: 1;
}


@media screen and (max-width: 767px) {
	.back a::before{
    top: -55px;
    right: -6px;
	}
	.back.show a{
	transform: translateY(64%);
	transition: 0.5s;
	opacity: 1;
}
}

.back.show a:hover{
	transform: translateY(35%);
	transition: 0.2s;
}

.back.show.active a,.back:hover.show.active a{
	transform: translateY(0);
	transition: 0.2s;
}

/*YouTube埋め込み時仕様*/
.youtube {
  width: 100%;
  aspect-ratio: 16 / 9;
}
.youtube iframe {
  width: 100%;
  height: 100%;
}

.sns{
	max-height: 80px;
	margin-top: 2rem;
	margin-bottom: 5rem;
}

.sns a{
	justify-content: center!important;
}
	
	.sns a:hover{
	opacity: 0.7;
	
}

/*別ウィンドウで開く*/
.link-window{
   position: absolute;
   top:10px;
   right:10px;
}


.big110{
	font-size: 110%;
}
.big120{
	font-size: 120%;
}
.big130{
	font-size: 130%;
}
.big140{
	font-size: 140%;
}
.big150{
	font-size: 150%;
}
.small90{
	font-size: 90%;
}
</pre></body></html>