<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.1.3
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/

/*変数置き場*/
:root {
	--dark: #333;
	--dark-green: #023015;
	--light-green: #dbe6e0;
	--sub-green: #9aafa2;
}

/*スムーススクロール*/
/*html {
	scroll-behavior: smooth;
}*/

/*reCAPCHAバッジを消す*/
.grecaptcha-badge { visibility: hidden; }

/*見出しの文字をできるだけ上下中央に表示*/
.wp-block-heading {
	display: inline-flex !important;
	align-items: center !important;
	width: 100%;
}
.head {
	margin-bottom: -4px;
}

h2 {
	padding-left: 10px !important;
}
h4 {
	padding-left: 20px !important;
}

/*Googleページ翻訳*/
.goog-te-gadget-simple {
	font-size: 10px;
	border: 1px solid #333 !important;
}

/*--------------------------------------
 * トップページのスライダー
 * -----------------------------------*/
/*スライドに拡大アニメーションの追加*/
div.swiper-slide {
	overflow: hidden;
}
.swiper-slide-active .slide-image,
.swiper-slide-fully-visible .slide-image,
.swiper-slide-visible .slide-image,
.swiper-slide-prev .slide-image {
	animation-name: slide-anim;
	animation-duration: 15s;
	animation-timing-function: linear;
	animation-delay: 0s;
	animation-direction: normal;
	animation-fill-mode: both;
}
@keyframes slide-anim {
	from {
		transform: scale(1);
	}
	to {
		transform: scale(1.1);
	}
}
/*スライド内文章の調整*/
.slide-content-title {
	text-indent: -0.5em;
	text-shadow: 
		#000 1px 1px 2px, 
		#000 -1px -1px 2px, 
		#000 -1px 1px 2px, 
		#000 1px -1px 2px, 
		#333 0 0 0.5em;
}
.slide-content-subtitle {
	text-shadow: 
		#000 0 0 3px, 
		#333 -1px 0 5px,
		#333 1px 0 5px,
		#333 -1px 0 8px,
		#333 1px 0 8px;
}
.slide-content-button a {
	border: solid 4px #eee !important;
	background-color: rgba(0, 0, 0, 0.5) !important;
	transition: ease-in-out 0.3s !important;
}
.slide-content-button a:hover {
	opacity: 1 !important;
	text-shadow: 0 0 2px #333;
	filter: drop-shadow(0 0 10px #FFF);
}

/*モバイル用メニューを見やすく（階層表示）*/
.menu-drawer a::before {
	content: "●";
	display: inline-block;
	position: relative;
	width: 1em;
	height: 1em;
	margin-right: 3px;
}
.menu-drawer .sub-menu a::before {
	content: "";
	display: inline-block;
	position: relative;
	width: 1em;
	height: 1em;
	background-image: url('https://www.minami-h.tym.ed.jp/wp-content/uploads/2024/12/rightarrow.png');
	background-size: contain;
	background-repeat: no-repeat;
	margin-right: 3px;
	margin-bottom: -3px;
}
.menu-drawer .sub-menu .menu-item .sub-menu a::before {
	content: "";
	display: inline-block;
	position: relative;
	width: 1.5em;
	height: 1em;
	background-image: url('https://www.minami-h.tym.ed.jp/wp-content/uploads/2024/12/rightarrow.png'),url('https://www.minami-h.tym.ed.jp/wp-content/uploads/2024/12/rightarrow.png');
	background-size: contain, contain;
	background-repeat: no-repeat, no-repeat;
	background-position: left, right;
	margin-right: 3px;
	margin-bottom: -3px;
}

/*-------------------------------------
 * 目次のアコーディオン
 * ----------------------------------*/
/* アコーディオン全体 */
.m-index {
  	box-shadow: 0 0 0 1px #eee;
	max-width: 480px;
	margin: 1em auto;
}
/* アコーディオンの間隔 */
.m-index + .m-index 
{
  	margin-top:1em;
}
/* 三角アイコン削除（Safari） */
summary::-webkit-details-marker {
 &nbsp;	display: none !important;
}
/* タイトル */
summary {
	cursor: pointer;
	background-color: #eee;
	padding: 0.5em 1em 0.5em 1em;
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: center;
	gap: 1em;
	font-weight: bold;
	/* アイコンのはみ出し防止 */
	overflow: hidden;
}
/* アイコン共通 */
summary::before,
summary::after {
	/* アイコンの位置:1or2 */
	grid-column: 2;
	grid-row: 1;
	justify-self: end;
	content: '';
	width: 18px;
	border-bottom: 2px solid #333;
}
/* アイコン（クローズ時） */
summary::before {
	transform: rotate(-90deg);
	transition: transform .3s;
}
/* アイコン（オープン時） */
.is-open &gt; summary::before {
	transform: rotate(0deg);
}
/* コンテンツ */
.details-content {
	box-sizing: content-box;
  	overflow: hidden;
  	margin: 0;
  	padding: 0 1em;
  	opacity:0;
  	transition: padding .2s ease .1s, max-height .3s, opacity .7s;
}
.details-content p {
	margin-bottom: 0;
}
.details-content .l2 {
	margin-left: 1em !important;
	margin-bottom: 0;
}
.details-content a {
	text-decoration: none;
}
.details-content a::after {
	content: '';
	width: 0;
}
.details-content .l2 a {
	text-indent: 1em;
}
/* コンテンツ（オープン時） */
.is-open &gt; .details-content {
	padding-block: 1em;
	opacity:1;
	transition: padding .3s, max-height .3s, opacity .7s;
}


/*サイドバーの見出し文字の上下位置調整*/
.sidebar h3 {
	padding-bottom: 9px !important;
}

/*重ね順の調整用*/
.z-1 {
	z-index: 1;
}
.z-2 {
	z-index: 10;
}
.z-3 {
	z-index: 20;
}
.z-4 {
	z-index: 30;
}

/*マージンなし*/
body .nomargin {
	margin: 0;
}

/*要素を上部で固定*/
.sticky {
	position: sticky;
	top: 50px;
	z-index: 99999;
}

/*要素の幅をコンテンツに合わせて中央に配置*/
.fit-cont {
	width: fit-content;
	margin: auto;
}

/*タイルメニューのレイアウト*/
.m-tile-menu-columns {
	gap: 0 !important;
	margin: 0 !important;
	flex-direction: row !important;
}
.m-tile-menu-column {
	width: 34% !important;
	aspect-ratio: 1;
	box-shadow:
		4px 4px 4px #eee inset,
		-4px -4px 4px inset;
	margin: 0 !important;
	vertical-align: center;
	position: relative;
}
.m-tile-menu-column img{
	position: absolute;
	top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	padding: 1em;
}
.m-tile-menu-column .insta img{
	padding: 8vw;
}
.m-tile-menu-column .yt img{
	padding: 8vw;
}
.m-tile-menu-column a {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}
.m-tile-menu-column a:hover {
	background: rgba(0, 0, 0, 0) !important;
}
.m-tile-menu-sub {
	font-weight: bold;
	font-size: 4vw;
	white-space: nowrap;
	text-shadow:
		#FFF -1px -1px 2px,
		#FFF 1px 1px 2px,
		#FFF -1px 1px 2px,
		#FFF 1px -1px 2px;
}
.m-tile-menu-sub a {
	text-decoration: none;
	display: flex;
    justify-content: center;
	align-items: center;
}
.m-tile-menu-sub a:hover {
	background: rgba(0, 0, 0, 0) !important;
}
.m-tile-menu-sub a::after {
	content: '' !important;
	width: 0 !important;
}

/*アンカーリンクで移動したときにナビに重なるのを避ける--------------------------------------*/
:target {
	scroll-margin-top: 72px;
}

/*モバイルデバイス用のスイッチ--------------------------------------------------------------*/
/*モバイルでのみ表示するタイトル（通常は無効）*/
.m-title {
	display: none;
}
/*モバイル専用の改行位置（通常は無効）*/
.mobwrap {
	display: none;
}
/*モバイル専用のタイルメニュー*/
div.m-tile-menu {
	display: none;
}
.m-index {
	display: none;
}
/*見出し前用アイコン------------------------------------------------------------------------*/
/*お知らせ*/
.h-oshirase::before {
	content: "";
	display: inline-block;
	position: relative;
	width: 1.3em;
	height: 1.3em;
	background-image: url('https://www.minami-h.tym.ed.jp/wp-content/uploads/2024/09/news.png');
	background-size: contain;
	background-repeat: no-repeat;
	margin-right: 8px;
}
/*インフォメーション*/
.h-info::before {
	content: "";
	display: inline-block;
	position: relative;
	width: 1.3em;
	height: 1.3em;
	top: -0.2em;
	background-image: url('https://www.minami-h.tym.ed.jp/wp-content/uploads/2024/09/info.png');
	background-size: contain;
	background-repeat: no-repeat;
	margin-right: 8px;
}
/*海外旅行*/
.h-travel::before {
	content: "";
	display: inline-block;
	position: relative;
	width: 1.3em;
	height: 1.3em;
	background-image: url('https://www.minami-h.tym.ed.jp/wp-content/uploads/2024/11/travel.png');
	background-size: contain;
	background-repeat: no-repeat;
	margin-right: 8px;
}
/*おしゃべり*/
.h-talk::before {
	content: "";
	display: inline-block;
	position: relative;
	width: 1.3em;
	height: 1.3em;
	background-image: url('https://www.minami-h.tym.ed.jp/wp-content/uploads/2024/11/talk.png');
	background-size: contain;
	background-repeat: no-repeat;
	margin-right: 8px;
}
/*おしゃべり2*/
.h-talk2::before {
	content: "";
	display: inline-block;
	position: relative;
	width: 1.3em;
	height: 1.3em;
	background-image: url('https://www.minami-h.tym.ed.jp/wp-content/uploads/2024/11/talk2.png');
	background-size: contain;
	background-repeat: no-repeat;
	margin-right: 8px;
}
/*探訪*/
.h-search::before {
	content: "";
	display: inline-block;
	position: relative;
	width: 1.3em;
	height: 1.3em;
	background-image: url('https://www.minami-h.tym.ed.jp/wp-content/uploads/2024/11/search.png');
	background-size: contain;
	background-repeat: no-repeat;
	margin-right: 8px;
}
/*講演会*/
.h-lecture::before {
	content: "";
	display: inline-block;
	position: relative;
	width: 1.3em;
	height: 1.3em;
	background-image: url('https://www.minami-h.tym.ed.jp/wp-content/uploads/2024/11/lecture.png');
	background-size: contain;
	background-repeat: no-repeat;
	margin-right: 8px;
}
/*セミナー*/
.h-seminar::before {
	content: "";
	display: inline-block;
	position: relative;
	width: 1.3em;
	height: 1.3em;
	background-image: url('https://www.minami-h.tym.ed.jp/wp-content/uploads/2024/07/class.png');
	background-size: contain;
	background-repeat: no-repeat;
	margin-right: 8px;
}
/*食文化*/
.h-food::before {
	content: "";
	display: inline-block;
	position: relative;
	width: 1.3em;
	height: 1.3em;
	background-image: url('https://www.minami-h.tym.ed.jp/wp-content/uploads/2024/11/food.png');
	background-size: contain;
	background-repeat: no-repeat;
	margin-right: 8px;
}
/*進路（道路）*/
.h-shinro::before {
	content: "";
	display: inline-block;
	position: relative;
	width: 1.3em;
	height: 1.3em;
	background-image: url('https://www.minami-h.tym.ed.jp/wp-content/uploads/2024/12/route.png');
	background-size: contain;
	background-repeat: no-repeat;
	margin-right: 8px;
}
/*入札など*/
.h-boshu::before {
	content: "";
	display: inline-block;
	position: relative;
	width: 1.3em;
	height: 1.3em;
	background-image: url('https://www.minami-h.tym.ed.jp/wp-content/uploads/2024/09/vote.png');
	background-size: contain;
	background-repeat: no-repeat;
	margin-right: 8px;
}
/*教育（本を読む）*/
.h-kyouiku::before {
	content: "";
	display: inline-block;
	position: relative;
	width: 1.3em;
	height: 1.3em;
	background-image: url('https://www.minami-h.tym.ed.jp/wp-content/uploads/2024/09/study.png');
	background-size: contain;
	background-repeat: no-repeat;
	margin-right: 8px;
}
/*国際*/
.h-kokusai::before {
	content: "";
	display: inline-block;
	position: relative;
	width: 1.3em;
	height: 1.3em;
	background-image: url('https://www.minami-h.tym.ed.jp/wp-content/uploads/2024/09/earth.png');
	background-size: contain;
	background-repeat: no-repeat;
	margin-right: 8px;
}
/*生活（吹き出し）*/
.h-seikatsu::before {
	content: "";
	display: inline-block;
	position: relative;
	width: 1.3em;
	height: 1.3em;
	background-image: url('https://www.minami-h.tym.ed.jp/wp-content/uploads/2024/09/communication.png');
	background-size: contain;
	background-repeat: no-repeat;
	margin-right: 8px;
}
/*運動*/
.h-sports::before {
	content: "";
	display: inline-block;
	position: relative;
	width: 1.3em;
	height: 1.3em;
	background-image: url('https://www.minami-h.tym.ed.jp/wp-content/uploads/2024/09/sports.png');
	background-size: contain;
	background-repeat: no-repeat;
	margin-right: 8px;
}
/*文化・芸術*/
.h-art::before {
	content: "";
	display: inline-block;
	position: relative;
	width: 1.3em;
	height: 1.3em;
	background-image: url('https://www.minami-h.tym.ed.jp/wp-content/uploads/2024/09/art.png');
	background-size: contain;
	background-repeat: no-repeat;
	margin-right: 8px;
}

/*リンク矢印（段落の中にあるものにのみ適用）-------------------------------------------*/
p &gt; a::after {
	content: "";
	display: inline-block;
	position: relative;
	top: 0.2em;
	width: 1.3em;
	height: 1.3em;
	background-image: url('https://www.minami-h.tym.ed.jp/wp-content/uploads/2024/07/arrow.png');
	background-size: contain;
	background-repeat: no-repeat;
	transform: scale(-1,1) rotate(-120deg);
	margin-left: 4px;
}

/*PDFリンク（テーブルの中にあるものにのみ適用）------------------------------------------*/
.pdflink a::before{
	content: "";
	display: inline-block;
	position: relative;
	top: 0.2em;
	width: 1.3em;
	height: 1.3em;
	background-image: url('https://www.minami-h.tym.ed.jp/wp-content/uploads/2024/07/PDF_24.png');
	background-size: contain;
	background-repeat: no-repeat;
	margin-right: 4px;
}

/*インラインアイコン*/
.inline_icon img {
	width: 1.3em !important;
	margin-right: .5em !important;
	display: inline-block;
	vertical-align: middle;
}

/*マーカーを引くアニメーション---------------------------------------------------------*/
.marker-anim {
    background:linear-gradient(to right, rgba(255, 220, 123, 0.1) 0.5%, rgba(255, 220, 123, 0.5) 2%, rgba(255, 220, 123, 0.5) 96%, rgba(255, 220, 123, 1) 99%, rgba(255, 220, 123, 1));
    display: inline;
    /* 背景の繰り返しを停止 */
    background-repeat: no-repeat;
    /* 横方向を100% 線の太さを２番目で指定します。ピクセルでも%でも指定可能です */
    background-size: 0% 0.8em;
    /* 線の位置を指定　今回は１番下に線が来るように指定 */
    background-position: 0 100%;
	/* マーカーが引かれる速度を指定 */
	transition:background-size 1.2s;
}
/* マーカーが引かれる際に付与するクラス */
.marker-anim.on {
    /* 横方向を100%にして、マーカーを引く */
    background-size: 100% 0.8em;
}

/*ヘッダーメニューのホバーエフェクト--------------------------------------------------*/
body #navi .navi-in a:hover {
    background-color: rgba(255, 255, 255, 0);
}
body .menu-item:hover .item-label {
	transform: translateY(-5px);
}
body .menu-item:hover .item-description {
	transform: translateY(-5px);
}
body .item-label{
	transition: .2s ease-in-out;
}
body .item-description{
	transition: .2s ease-in-out;
}

/*リンクテキストのホバーエフェクト--------------------------------------------------*/
a {
	transition: background color 0.3s;
}
a:hover {
	color: var(--dark);
}

/*サイドバーのマージン調整*/
body .widget-sidebar {
	margin-bottom: 0 !important;
}

/*サイドメニューのバナー-----------------------------------------------------------*/
/*instagram*/
.wrapper a{
	text-decoration: none;
	width: 100%
}
.wrapper a:hover {
	color: var(--dark);
}
.instagram {
	display: flex;
	justify-content: center;
	align-items: center;
	transition-duration: 0.3s;
}
.instagram:hover {
	background: #f0f0f0;
	transition-duration: 0.3s;
}
.instagram img {
	width: 120px;
	padding: 30px;
}
.instagram a {
	text-decoration: none;
}
.instagram a:hover {
	color: var(--dark);
}
.Policy {
	text-align: right;
	font-size: 12px;
}

/*電子図書館*/
.d-lib {
	font-size: small;
	text-align: center;
	display: flex;
	align-items: center;
}
.d-lib img {
	width: 95%;
	padding-top: 2px;
}
.d-lib a {
	text-decoration: none;
	width: 100%;
}
.d-lib a:hover {
	color: var(--dark);
}

/*Youtube*/
.youtube {
	display: flex;
	height: 80px;
	align-items: center;
	justify-content: center;
}
.youtube img {
	width: 50%;
	margin-right: 1em;
}
.youtube a {
	text-decoration: none;
}
.youtube a:hover {
	color: var(--dark);
}

/*AED設置場所画像*/
.widget-sidebar.widget_media_image img{
	width: 100%;
}
.widget-footer-mobile .textwidget img {
	width: 100% !important;
}

/*ヘッダーナビゲーション------------------------------------------------------------*/
.menu_wrap {
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}
.menu_wrap img {
	height: 3em;
	padding: .2em .5em .7em .5em;
}
.menu_wrap .item-label {
	margin-bottom: -.7em;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}

/*メニューの文字を太字に*/
.sub-caption {
	font-weight: bold;
}

/*上部固定時のメニューアイテムレイアウト(PC)*/
.fixed-header .navi-in &gt; ul li {
	width: 110px;
}
.fixed-header .navi-in &gt; ul {
	justify-content: right;
	margin-top: .5em;
	margin-right: 1em;
}

/*全体のレイアウト調整-----------------------------------------------------------------*/
/*コンテンツ上下の余白*/
.content-in {
padding-top: 1em;
padding-bottom: 1em;
}
/*コンテンツ上部のマージン調整*/
#content-top {
	margin-top: -8px;
	margin-bottom: 0;
}
#content-bottom {
	margin: 0;
}
#main {
	border: 1px solid var(--dark);
	margin: 5px;
}
#sidebar {
	border: 1px solid var(--dark);
	margin: 5px;
}
.widget.widget-content-top {
	margin-bottom: 0;
}
.content.cf {
	margin: 0;
	background: var(--cocoon-white-color);
}
.main {
	padding: 1.5%;
}
/*ヘッダーロゴの上下に空白をつける*/
.header-site-logo-image {
	padding-top: 10px;
	padding-bottom: 10px;
}
/*navリンク下線エフェクト*/
.menu-header a::after {
	position: absolute;
	left: 0;
	content: '';
	width: 100%;
	height: 2px;
	background: var(--dark);
	bottom: 2px;
	transform: scale(0, 1);
	transform-origin: center top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
	transition: transform 0.3s;   /*変形の時間*/
}
.menu-header a:hover::after {
	transform: scale(0.9, 1); /*ホバー後、x軸方向に0.9（相対値）伸長*/
}

/*フッター----------------------------------------------------------------------------*/
.copyright {
	margin: 0;
}
.footer-bottom {
	margin-top: 0;
}

/*コンテンツ下部のアクセスマップ------------------------------------------------------*/
/*マップと住所を横並び*/
.access {
	display: flex;
	flex-wrap: wrap;
	padding: 1em;
	margin: auto !important;
}
.map {
	margin: 1em;
}
.address {
	margin: 1em;
	color: var(--dark);
	display: flex;
	flex-flow: column;
	place-items: start center;
}
.address img {
	height: 1em;
	width 1em;
	margin-right: .2em;
}
/*SNSボタン*/
.sns-block {
	display: block;
	place-items: start center;
}
.sns-block img {
	height: 3em;
	padding: 0.5em;
}
.widget.widget-content-bottom.widget_block {
	background: #dbe6e0;
	margin-bottom: 0 !important;
}
.content-bottom.wwa {
	margin-bottom: 0 !important;
}
.footer.footer-container.nwa {
	margin-top: 0 !important;
}

/*学校紹介-----------------------------------------------------------------*/
/*南高校の歩み　年表背景画像*/
.ayumi-bk {
	position:relative;
	width:100%;
	opacity: 0.2;
}
.ayumi-bk img {
	position:absolute;
	width:100%;
}

/*トップページ-----------------------------------------------------------------*/
/*付箋モード*/
.sticky_note_wrap {
	transform: rotate(-2deg) scale(1.2);
	margin-top: -1.5em;
	padding-left: 1em;
}
.sticky_note {
    display: inline-block;
    position: relative;
	width: 95%;
    padding: .5em 1em;
    border-right: 27px solid #2589d0;
    background-color: #f5f5f5;
    color: var(--dark);
}
.sticky_note::before {
    position: absolute;
    bottom: 2px;
    right: -20px;
    z-index: -1;
    transform: rotate(5deg);
    width: 100%;
    height: 50%;
    background-color: #d0d0d0;
    content: "";
    filter: blur(4px);
}
.sticky_note span {
	display: inline-block;
	word-break: keep-all;
}

/*とりあえず背面に移動*/
.most_bottom {
	z-index: -9999;
}

/*ゼロマージン*/
.0-margin {
	margin: 0 !important;
}

/*クリップモード（クリップでとめられた紙のような見た目）*/
.clipmode {
	position: absolute;
	padding: .5em 3em;
	transform:rotate(-5deg);
	box-shadow: 0 2px 6px var(--dark);
}
.clipmode.top {
	top: 0;
}
.clipmode.bottom {
	bottom: 10px;
}

/*小さい画像を拡大*/
.minipic {
	width:100% !important;
	margin:0 !important;
}
.minipic &gt; img {
	width:100vw !important;
	height:auto !important;
	display:block;
}
.minipic a img {
	width:100vw !important;
	height:auto !important;
	display:block;
}

/*テキストエリアの拡張*/
.minitext {
	width:100%;
	height:100%;
}

/*要素を傾ける*/
.katamukeL {
	transform:rotate(-3deg);
}
.katamukeR {
	transform:rotate(3deg);
}
.katamuke3D {
	transform:rotate3d(5,5,0,15deg);
}

/*リンク画像のホバーエフェクト*/
.linkimg {
	position: relative;
	transition-duration:500ms;
}
.linkimg img {
	box-shadow: 0 2px 6px var(--dark);
}
.linkimg.rotate:hover {
	transform:rotate(7deg) scale(1.3);
	transition-duration:200ms;
	z-index: 100;
}
.linkimg.scale:hover {
	transform:scale(1.3);
	transition-duration:200ms;
	z-index: 100;
}

/*コンテンツ内のリンクホバー*/
.widget.widget-content-top.widget_new_entries {
	background: var(--cocoon-white-color);
	margin: 0;
	padding-left: 18px;
	padding-right: 18px;
}
.new-entry-cards.widget-entry-cards.no-icon.cf {
	margin: 0;
}
.widget.widget-content-top.widget_new_entries a {
	transition-duration: 0.5s;
}
.widget.widget-content-top.widget_new_entries a:hover {
	background: #f0f0f0 !important;
}
.content a {
	transition-duration: 0.5s;
}
.content a:hover {
	background: #f0f0f0;
	transition-duration: 0.2s;
}

/*サイドメニューのテキストリンクホバー*/
.widget_nav_menu ul&gt;li a {
	background: linear-gradient(#f0f0f0, #f0f0f0) 0 100%/0 100% no-repeat !important;
	transition-duration: 0.4s;
}
.widget_nav_menu ul&gt;li a:hover {
	background-size: 0.5em 100% !important;
	padding-left: 0.5em;
	transition-duration: 0.2s;
}

/*アンダーラインアニメ*/
.underline-before {
	background: linear-gradient(black, black) 0 100%/0 2px no-repeat;
	/*左から、カラー（始点と終点それぞれ同じものを指定）、position / サイズ横縦 繰り返しの有無 */
	transition: background 1.2s;
	/*トランジションの設定。下線を引く動きをアニメーションにするのに必要 */
	text-decoration: none;
	/*テキストの装飾の設定 */
}
.underline-after {
	background-size: 100% 2px;
  /* 変化後のスタイル。横サイズを0から100%に変えることで指定の文字列に下線を引く */
}

/*ノートのような見た目*/
.note {
	background-color: #f8f4e6; /* 背景色 */
	background-image: linear-gradient(180deg, #ccc 1px, transparent 1px); /* 罫線の色と太さ */
	background-size: 100% 2em; /* 行の高さ */
	line-height: 2em; /* 文字の高さ */
	padding-bottom: 1px; /* 最終行の下にも罫線を引く */
	padding-left: 10px;
	padding-right: 10px;
}

/*キラっとさせる*/
.reflection{
	display:inline-block;
	position:relative;
	overflow:hidden;
}
.reflection:after {
	content:"";
	height:100%;
	width:30px;
	position:absolute;
	top:-180px;
	left:0;
	background-color: #fff;
	opacity:0;
	-webkit-transform: rotate(45deg);
	-webkit-animation: reflection 4s ease-in-out infinite;
}
@keyframes reflection {
	0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
	80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
	81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
	100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}

/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1235px以下*/
@media screen and (max-width: 1235px){
  /*必要ならばここにコードを書く*/
	/*お知らせスライダーのレイアウト調整*/
	.caroufredsel_wrapper&gt;ul {
		padding: 0;
		justify-content: center;
	}
	.caroufredsel_wrapper&gt;ul&gt;li {
		margin: 1vw 4vw;
	}
}

/*1023px以下*/
@media screen and (max-width: 1023px){
  /*必要ならばここにコードを書く*/
	/*モバイルでのみ表示するタイトル*/
	.m-title {
		display: block;
	}
	/*お知らせスライダーのレイアウト調整*/
	.caroufredsel_wrapper&gt;ul {
		padding: 0;
		justify-content: center;
	}
	.caroufredsel_wrapper&gt;ul&gt;li {
		margin: 0 7vw 2vw;
	}
}

/*834px以下*/
@media screen and (max-width: 834px){
  /*必要ならばここにコードを書く*/
	/*デザインの最適化*/
	#main {
		border: none;
		margin: 0;
		padding: 0 8px;
	}
	#content-bottom {
		margin-top: -1em;
		z-index: 99999;
	}
	#footer {
		margin-top: -2em !important;
	}
	
	/*ブロックアニメーションの無効化*/
	body .aos-init {
		transition-duration: 0s !important;
		transform: scale(1) !important;
		opacity: 1 !important;
	}
	
	/*付箋モードのレイアウト調整*/
	.sticky_note_wrap {
		transform: rotate(-2deg) scale(1.0);
		margin-top: -1.5em;
		margin-bottom: -0.5em;
		padding-left: 0em;
	}
	.sticky_note {
		width: 50%;
	}
	
	/*クリップのような見た目のレイアウト調整*/
	.clipmode span {
		font-size: 1.2em ;
	}
	
	/*お知らせスライダーのレイアウト調整*/
	.caroufredsel_wrapper&gt;ul {
		padding: 0;
		justify-content: center;
	}
	.caroufredsel_wrapper&gt;ul&gt;li {
		margin: 0 7vw;
	}
	
	/*AED設置場所の大きさ調整*/
	.widget-footer-mobile {
		width: 60% !important;
		margin: 0 auto;
	}
	
	/*アクセスマップの調整*/
	.access {
		justify-content: center;
	}
	/*モバイル専用のタイルメニュー*/
	div.m-tile-menu {
	display: grid;
	}
	/*モバイル用の目次*/
	.m-index {
		display: block;
		transition-duration: .5s;
	}
}

/*480px以下*/
@media screen and (max-width: 480px){
	/*レイアウトの調整*/
	#main {
		padding-top: 0 !important;
		padding-bottom: 0 !important;
	}
	#content-bottom {
		margin-top: -1em;
		z-index: 99999;
	}
	#footer {
		margin-top: -1em !important;
	}
	
	/*付箋モードの幅調整*/
	.sticky_note {
		width: 100%;
	}
	
	/*モバイル専用の改行位置*/
	.mobwrap {
		display: block;
	}
	
	/*AED設置場所の大きさ調整*/
	.widget-footer-mobile {
		width: 100% !important;
		margin: 0 auto;
	}
	.m-center {
		text-align: center;
	}
	
	/*アクセスマップのレイアウト調整*/
	.access {
		justify-content: left;
	}
	.map {
		margin: 0 auto;
	}
	.address {
		margin: 0;
	}
	.footer-mobile {
		padding: 8px;
	}
}

/*スマホなどではホバーアニメーションをしない*/
@media (hover: none){
	a:hover {
		transform: scale(1) rotate(0deg) !important;
	}
	.linkimg:hover {
		transform: scale(1) rotate(0deg) !important;
	}
	.katamukeL {
		transform:rotate(0deg) !important;
	}
	.katamukeR {
		transform:rotate(0deg)!important;
	}
}</pre></body></html>