@charset "utf-8";



/*Font Awesomeの読み込み
---------------------------------------------------------------------------*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");

/*Google Fontsの読み込み
---------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Reddit+Sans:ital,wght@0,200..900;1,200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');


/*テンプレート専用cssファイルの読み込み
---------------------------------------------------------------------------*/
@import url("inview.css");


/*CSSカスタムプロパティ（サイト全体を一括管理する為の設定）
---------------------------------------------------------------------------*/
:root {
	--text-color: #000;				/*テキストカラー*/

	--primary-color: #00A9CA;		/*テンプレートのメインとなる色*/
	--primary-text-color: #000;		/*メインカラーの上で使うテキスト色*/
    --primary-btn-text-color: #fff;		/*ボタンの上で使うテキスト色*/
	
	--global-space: 0;			/*サイト内の左右へとる余白を一括管理しています。画面幅100%＝100vwです。*/
}


/*animation1のキーフレーム設定（開閉ブロックのアニメーションに使用）
---------------------------------------------------------------------------*/
@keyframes animation1 {
	0% {left: -200px;}
	100% {left: 0px;}
}


/*opa1のキーフレーム設定（汎用的）
---------------------------------------------------------------------------*/
@keyframes opa1 {
	0% {opacity: 0;}
	100% {opacity: 1;}
}


/*fadeInのキーフレーム設定（テキストのフェードインに使用）
---------------------------------------------------------------------------*/
@keyframes fadeIn {
	0% {opacity: 0;transform: scale(0.8);}
	100% {opacity: 1;transform: scale(1);}
}


/*全体の設定
---------------------------------------------------------------------------*/
body * {box-sizing: border-box;}
html,body {
	height: 100%;
    font-size: clamp(13px, 1.8vw, 16px);
}



body {
	margin: 0;padding:0;
	font-family: "游ゴシック体", "YuGothic", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", Meiryo, "メイリオ", "Osaka", "MS PGothic", "ＭＳ Ｐゴシック", sans-serif;	/*フォント種類（ゴシック）*/
	font-optical-sizing: auto;
	/*font-weight: 300;*/
	-webkit-text-size-adjust: none;
	background: #fff;	/*背景色*/
	color: var(--text-color);	/*文字色。css冒頭で指定しているtext-colorを読み込みます*/
	line-height: 2;		/*行間*/
}

/*リセット*/
figure {margin: 0;}
dd {margin: 0;}
nav,ul,li,ol,div,p,h1,h2,h3,h4,h5 {margin: 0;padding: 0;}
nav ul {list-style: none;}

/*table全般の設定*/
table {border-collapse:collapse;}

/*画像全般の設定*/
img {border: none;height: auto;vertical-align: middle;}

/*videoタグ*/
video {max-width: 100%;}

/*iframeタグ*/
iframe {width: 100%;}

/*他*/
input {font-size: 1rem;}


/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
a {
	color: var(--text-color);	/*文字色。css冒頭で指定しているtext-colorを読み込みます*/
	transition: 0.3s;	/*hoverまでにかける時間。0.3秒。*/
}

/*マウスオン時*/
a:hover {
	text-decoration: none;	/*下線を消す*/
	color: var(--primary-color);	/*文字色。css冒頭で指定しているprimary-colorを読み込みます*/
}


/*コンテナー（サイト全体を囲むブロック）
---------------------------------------------------------------------------*/
body:not(.home) #container {
	height: 100%;
	display: flex;
	flex-direction: column;	/*子要素を縦並びにする*/
	justify-content: space-between;	/*並びかたの種類の指定*/
}


/*コンテンツ（フッター関連「以外」を囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	flex: 1;
	padding: var(--global-space);
    margin-bottom: 100px;
}

	/*画面幅600px以下の追加指定*/
	@media screen and (max-width:600px) {

	#contents {
		padding-top: 60px;	/*コンテンツ内の上の余白だけ上書き*/
	}

	}/*追加指定ここまで*/


/*header（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	display: flex;					/*flexボックスを使う指定*/
	align-items: center;			/*垂直揃えの指定。天地中央に配置されるように。*/
	justify-content: flex-start;
	height: 60px;					/*ヘッダーの高さ*/
	padding: 1vw 3vw;				/*ヘッダー内の余白。上下、左右への順番。*/
	font-family: "Reddit Sans", "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: 700;
	font-style: normal;
    z-index: 1;
    width: 100%;
    background: #fff;
}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {
	
	/*ヘッダーブロック*/
	header {
        height: 200px;
        justify-content: space-evenly;
	}
	
	}

/*ロゴ（※画像にする場合）*/
#logo img {
	display: block;
	max-width: 160px;	/*ロゴ画像の幅*/
}

/*ロゴ（テキストにする場合）*/
#logo a {
	display: block;text-decoration: none;
	font-size: 1.2rem;	/*文字サイズを120%に*/
	font-weight: 800;	/*文字の太さ*/
}

	/*画面幅900px以上の追加指定*/
	@media screen and (max-width:900px) {
	
	/*ヘッダーブロック*/
	#logo img {
	max-width: auto;	/*ロゴ画像の幅*/
        height: 60px;
}
	
	}


/*メニューブロック初期設定
---------------------------------------------------------------------------*/
/*メニューをデフォルトで非表示*/
#menubar {display: none;}
#menubar ul {list-style: none;margin: 0;padding: 0;}
#menubar a {display: block;text-decoration: none;}

/*上で非表示にしたメニューを表示させる為の設定*/
.large-screen #menubar {display: block;}
.small-screen #menubar.display-block {display: block;}

/*3本バーをデフォルトで非表示*/
#menubar_hdr.display-none {display: none;}

/*ドロップダウンをデフォルトで非表示*/
.ddmenu_parent ul {display: none;}

/*ドロップダウンの親メニューのカーソル表示を変更*/
a.ddmenu {cursor: default;}

/*ddmenuを指定しているメニューに矢印アイコンをつける設定*/
a.ddmenu::before {
	font-family: "Font Awesome 5 Free";	/*Font Awesomeを使う指示*/
	content: "\f078";		/*使いたいアイコン名（Font Awesome）をここで指定*/
	font-weight: bold;		/*この手の設定がないとアイコンが出ない場合があります*/
	margin-right: 0.5em;	/*アイコンとテキストとの間に空けるスペース*/
}


/*大きな端末用のメニューブロック設定
---------------------------------------------------------------------------*/
/*メニューブロック全体の設定*/
.large-screen #menubar > nav > ul {
	display: flex;		/*横並びにする*/
	font-size: 0.85rem;	/*文字サイズ。85%。*/
	gap: 0.5rem;		/*メニュー同士の間に空けるマージン的な要素*/
}

/*メニュー１個あたりの設定*/
.large-screen #menubar li a {
	border-radius: 100px;	/*角を丸くする指定。適当に大きければOKです。*/
	padding: 0.2rem 1rem;	/*上下、左右へのメニュー内の余白*/
}

/*マウスオン時*/
.large-screen #menubar li a:hover {
	background: #fff;		/*背景色*/
}


/*大きな端末、小さな端末、共通のドロップダウンメニュー設定
---------------------------------------------------------------------------*/
/*ドロップダウンブロック*/
.large-screen #menubar ul ul,
.small-screen #menubar ul ul {
	animation: opa1 0.5s 0.1s both;	/*0.1秒待機後、0.5秒かけてフェードイン表示*/
}


/*大きな端末用のドロップダウンメニュー
---------------------------------------------------------------------------*/
/*ドロップダウンメニューブロック全体*/
.large-screen #menubar ul ul {
	position: absolute;z-index: 100;
}

/*メニュー１個あたり*/
.large-screen #menubar ul ul a {
	margin-top: 0.4rem;	/*上に空けるスペース。メニュー同士の隙間です。*/
}


/*小さな端末用の開閉ブロック
---------------------------------------------------------------------------*/
/*メニューブロック設定*/
.small-screen #menubar.display-block {
	position: fixed;overflow: auto;z-index: 100;
	left: 0px;top: 0px;
	width: 100%;
	height: 100%;
	padding-top: 90px;
	background: #00A9CA;		/*背景色*/
	animation: animation1 0.2s both;	/*animation1を実行する。0.2sは0.2秒の事。*/
}

/*メニュー１個あたりの設定*/
.small-screen #menubar nav ul li {
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	margin: 1rem;			/*メニューの外側に空けるスペース*/
	border-radius: 5px;		/*角を丸くする指定*/
	padding: 0 2rem;		/*メニュー内の余白。上下、左右へ。*/
}
.small-screen #menubar a {
	padding: 1rem;	/*メニュー内の余白*/
}

/*文字色*/
.small-screen #menubar, .small-screen #menubar a {
	color: #fff;
}

/*900px以下でのみ表示させるブロック*/
#menubar .sh {
	font-weight: normal;		/*文字の太さを標準にする*/
	padding: 1rem 2rem 2rem;	/*上、左右、下へのブロック内の余白*/
}


/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
/*３本バーを囲むブロック*/
#menubar_hdr {
	animation: opa1 0s 0.2s both;
	position: fixed;z-index: 101;
	cursor: pointer;
	right: 3vw;			/*右からの配置場所指定*/
	top: 1vw;				/*上からの配置場所指定*/
	padding: 16px 14px;		/*上下、左右への余白*/
	width: 46px;			/*幅（３本バーが出ている場合の幅になります）*/
	height: 46px;			/*高さ*/
	display: flex;					/*flexボックスを使う指定*/
	flex-direction: column;			/*子要素（３本バー）部分。flexはデフォルトで横並びになるので、それを縦並びに変更。*/
	justify-content: space-between;	/*並びかたの種類の指定*/
}

/*バー１本あたりの設定*/
#menubar_hdr span {
	display: block;
	transition: 0.3s;	/*アニメーションにかける時間。0.3秒。*/
	border-top: 1.5px solid #000;	/*線の幅、線種、色*/
}

/*×印が出ている状態の3本バーの背景色*/
#menubar_hdr.ham {
	background: #000000;
}

/*×印が出ている状態の設定。※１本目および２本目のバーの共通設定。*/
#menubar_hdr.ham span:nth-of-type(1),
#menubar_hdr.ham span:nth-of-type(3) {
	transform-origin: center center;	/*変形の起点。センターに。*/
	width: 20px;						/*バーの幅*/
	border-color: #fff;					/*線の色だけ上書き*/
}

/*×印が出ている状態の設定。※１本目のバー。*/
#menubar_hdr.ham span:nth-of-type(1){
	transform: rotate(45deg) translate(3.8px, 5px);	/*回転45°と、X軸Y軸への移動距離の指定*/
}

/*×印が出ている状態の設定。※３本目のバー。*/
#menubar_hdr.ham span:nth-of-type(3){
	transform: rotate(-45deg) translate(3.8px, -5px);	/*回転-45°と、X軸Y軸への移動距離の指定*/
}

/*×印が出ている状態の設定。※２本目のバー。*/
#menubar_hdr.ham span:nth-of-type(2){
	display: none;	/*２本目は使わないので非表示にする*/
}

/*ボタン
---------------------------------------------------------------------------*/
.btn {
    display: block;
    text-align: right;
}
.btn a {
    z-index:0;
    display: inline-block;
    text-decoration: none;
	font-size: 1rem;
	text-align: center;		/*テキストをセンタリング*/
	color: var(--primary-btn-text-color) !important;	/*文字色。css冒頭で指定しているprimary-text-colorを読み込みます*/
	padding: 0.5rem 1rem !important;		/*ボタン内の余白*/
	margin-top: 1rem !important;
    border-radius: 36px;
    background-color: #000;
    width: 100%;
    max-width: 300px;
    position: relative;
}

.btn a:after {
    z-index:-1; /* 擬似要素の重なり順序を指定する */
position:absolute; /* 擬似要素の配置を指定する */
content: ''; /* 擬似要素 */
bottom:0; /* 下からの配置位置を指定する */
right:0; /* 左からの配置位置を指定する */
width:50%; /* 要素の横幅を指定する */
height:100%;
border-radius: 36px;
max-width:50%; /* 横幅の最大値を指定する */
    box-shadow: 15px 10px 0px 0 rgb(60, 194, 235);
    transition: .5s;
}

.btn a:hover {
    box-shadow: 10px 10px 0px 0 rgb(60, 194, 235);
}

@media screen and (max-width:900px) {
    .btn {
    text-align: center;
}
}


/*main
---------------------------------------------------------------------------*/
#mainimg {
    display:flex;
    justify-content: space-evenly;
    width: 100%;
}

#mainimg .img_logo{
    max-width:700px;
    width: 45%;
}

#mainimg .img_logo img{
        width: 100%;
    }

#mainimg div.main_copy{
    margin-top: 180px;
    display: block;
    width: 45%;
}

#mainimg h1 {
    font-size: clamp(36px, 4.8vw, 70px);
}

@media screen and (max-width:900px) {
#mainimg {
    display:block;
    width: 100%;
}
#mainimg .img_logo{
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
}
#mainimg .img_logo img{
        margin-top: 50px;
    }
#mainimg div.main_copy{
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: 90%;
}
	
}

/*h2(見出し)要素*/
main h2 {
	font-family: "Reddit Sans", "Noto Sans JP", sans-serif;
	font-size: 3rem;		/*文字サイズ。基準の3倍の大きさに。*/
    line-height: 1.2;
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広く*/
	color: #000;	/*文字色*/
}

/*bg1背景の上でのh2*/
.bg1 h2 {
	color: var(--primary-text-color);	/*文字色。css冒頭で指定しているprimary-text-colorを読み込みます*/
}

/*h2内の小文字部分*/
main h2 .hosoku {
	display: block;font-weight: normal;
	font-size: 0.3em;	/*親要素の40%のサイズに*/
    color: #ccc;
}

/*h3(見出し)要素*/
main h3 {
	display: inline-block;
}


.sec_area {
    position: relative;
    overflow: hidden;
    padding: 100px;
    height: 110vh;
}
@media screen and (max-width:900px) {
.sec_area {
    padding: 0;
    height: auto;
}
}
/*TOP-What's New*/
.sec_what{
    height: 80vh;
    min-height: 660px;
}

.top_what_block {
    position: absolute;
    width: 100vw;
    left:5vw;
    border: 1px #ccc solid;
    border-radius: 50px;
    display: flex;
}

.top_what_block h2{
    margin-left: 5%;
    margin-top: auto;
    margin-bottom: auto;
    width: 30%;
    height: 150px;
}

.top_what_block h2 a{
    text-decoration: none;
}

.top_what_box{
    padding: 100px 0;
}

@media screen and (max-width:900px) {
    .sec_what{
    height: auto;
    margin-bottom: 100px;
        min-height: inherit;
}
    .top_what_block {
    position: inherit;
        left:inherit;
    display:block;
}
    .top_what_block h2{
    margin-left: 5%;
    margin-top: 30px;
    margin-bottom: 0;
    height: auto;
    width: 95%;
}
    .top_what_box{
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    padding: 10px;
}
}

/*TOP-SERVICES*/
.service_block {
    position: absolute;
    width: 100vw;
    right:5vw;
    border: 1px #00A9CA solid;
    background: #00A9CA;
    border-radius: 50px;
    display: flex;
}

.service_col1{
    padding-left: 10vw;
    margin-left: 6%;
    margin-right: 1%;
    width: 46%;
    color: #fff;
}


.service_col1 .btn a:after {
    box-shadow: 15px 10px 0px 0 rgb(255, 255, 255);
}

.service_col1 .btn a:hover {
    box-shadow: 10px 10px 0px 0 rgb(255, 255, 255);
}

.service_col1 h2 {
    color: #fff;
    margin-top: 40px;
}
.service_col1 h2 .hosoku {
    color: #fff;
}
.service_col2{
    margin: 50px;
    padding: 40px;
    width: calc(60% - 100px);
    border-radius: 50px;
    background: #fff;
    text-align: center;
}
.service_col2 h3{
    color: #00A9CA;
    width: 100%;
    margin: 0;
    border-bottom: 1px solid #ccc;
    font-size: clamp(14px, 1.8vw, 24px);
}
.service_col2 h3 img{
    width: 130px;
}
.service_col2 ul{
    list-style: none;
}
.service_col2 ul li{
    font-size: clamp(16px, 1.8vw, 30px);
    font-weight: bold;
    text-align: left;
    padding-left: 2.5em;
    padding: 20px 0 20px 2.5em;
    background-image: url(../images/logo_only.png);
    background-repeat: no-repeat;
    background-size: 2em auto;
    background-position: left;
    border-bottom: 1px #ccc solid;
}
.service_col2 .btn {
    text-align: center;
}

@media screen and (max-width:900px) {
    .service_block {
    display: block;
    width: 100%;
        right: inherit;
    position: inherit;
}
    .service_col1{
    padding-left: 0;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
}
    .service_col1 .btn{
        text-align: center;
    }
    .service_col2{
    margin-top: 70px;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
    width:90%;
    border-radius: 50px;
}
    .service_col2 h3 img{
    width: 65px;
}
    .service_col2 ul li{
}
    
}

/*TOP-MESSAGE*/
.message_area {
    margin-top: 100px;
    width: 100%;
}
.message_area h2 {
    text-align: center;
}
.message_block {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
}
.message_col1 {
    margin-top: 100px;
    width: 44%;
    order: 2;
}
.message_col1 h3{
    font-size: clamp(14px, 1.8vw, 24px);
    line-height: 1.4;
}

.message_col1 h4{
    font-size: clamp(16px, 1.8vw, 32px);
    line-height: 1.4;
}

.message_col1 p.fw{
    font-size: clamp(13px, 1.8vw, 20px);
    font-weight: bold;
    line-height: 1.4;
}
.message_col2 {
    margin-top: 100px;
    width: 22%;
    order: 1;
}
.message_col2 p.message_photo{
    width: 100%;
    max-width: 400px;
}
.message_col2 p.message_photo img{
    width: 100%;
}

.message_col2 p.fw {
    font-size: clamp(14px, 1.8vw, 24px);
    font-weight: bold;
    line-height: 1.4;
}

.message_col2 p span {
    color: #00A9CA;
}
.message_col2 img{
    box-shadow: 100px 100px 0 -80px rgb(60, 194, 235);
}

@media screen and (max-width:900px) {
   .message_block {
        display: block;
        width: 100%;
    }
    .message_col1 {
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
}
    .message_col2 {
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
}
    .message_col2 p.message_photo{
        margin-left: auto;
        margin-right: auto;
    max-width: 300px;
        
}
}


/*ABOUT US*/
.about_area {
    margin-top: 100px;
    width: 100%;
}
.about_area h2 {
    text-align: center;
}
.about_block {
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    max-width: 1200px;
}

.about_block table {
    width: 100%;
}

.about_block th,.about_block td{
    font-weight: 400;
    text-align: left;
    vertical-align: top;
    padding: 10px;
    border-bottom: 1px #ccc solid;
    line-height: 3.0;
}

.about_block td ul{
    list-style: none;
}
.about_block td ul li{
    line-height: 2;
    margin: 10px 0;
}

@media screen and (max-width:900px) {
    .about_area {
    margin-top: 0;
}
    .about_block th{
        width: 6em;
}
}

/*CORPORATE PHILOSOPHY*/
.corporate_area {
    margin-top: 100px;
    width: 100%;
}
.corporate_area h2 {
    text-align: center;
}
.corporate_block {
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    max-width: 1200px;
}

.corporate_block .corporate_img{
    margin-left: auto;
    margin-right: auto;
    width: 20%;
    min-width: 200px;
    max-width: 250px;
}
.corporate_block .corporate_img img{
    width: 100%;
}

.corporate_block h3 {
    font-size: clamp(14px, 1.8vw, 24px);
}

.corporate_block p{
    margin-bottom: 50px;
}
.corporate_block p.la_font{
    font-size: clamp(18px, 1.8vw, 40px);
    font-weight: bold;
}


@media screen and (max-width:900px) {
    .corporate_area {
    margin-top: 0;
}
}

/*SERVICES*/
.sec_2_area {
    width: 100%;
    overflow: hidden;
}
@media screen and (max-width:900px) {
.sec_2_area {
    padding: 0;
    height: auto;
}
}

.service_2_block {
    width: 100%;
    margin-left: 5vw;
    border: 1px #00A9CA solid;
    border-radius: 50px;
    padding: 50px;
    text-align: center;
}

.service_2_block h3{
    font-size: clamp(18px, 1.8vw, 40px);
}

.service_2_block h3 img {
    margin-left: auto;
    margin-right: auto;
    width: 20%;
    min-width: 130px;
    max-width: 150px;
    margin-bottom: 15px;
}

.service_2_block .service_2_box {
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    text-align: left;
}

.service_2_block .service_2_box h4{
    font-size: clamp(14px, 1.8vw, 24px);
}

.service_2_block p{
    margin-bottom: 50px;
}

.service_2_block img{
    border-radius: 50px;
    width: 50vw;
    max-width: 500px;
    min-width: 280px;
    margin: 20px;
}


.sec_2_area .btn {
    text-align: center;
}

@media screen and (max-width:900px) {
    .service_2_block {
    margin-left: 0;
    margin-top: 50px;
    padding: 30px;
        width: 100%;
}
    .service_2_block img{
        margin: 20px auto;
}  
}

/*PP*/
.pp_area {
    margin-top: 100px;
    width: 100%;
}
.pp_area h2 {
    text-align: center;
}
.pp_block {
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    max-width: 1200px;
}

.pp_block h4 {
    font-size: clamp(14px, 1.8vw, 24px);
}

.pp_block p{
    margin-bottom: 50px;
}

@media screen and (max-width:900px) {
    .pp_area {
    margin-top: 0;
}
}

/*NEWS*/
.news_area {
    margin-top: 100px;
    width: 100%;
}
.news_area h2 {
    text-align: center;
}
.news_block {
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    max-width: 1200px;
}
.news_block .news_midashi .midashi_01 {
}
.news_block .news_midashi .midashi_01 span {
    display: inline-block;
    text-align: left;
    line-height: 1.8;
    width: 8rem;
    color: #000;
    font-weight: bold;
}
.news_block .news_midashi .midashi_02 {
    font-size: clamp(13px, 1.8vw, 20px);
}


@media screen and (max-width:900px) {
    .news_area {
    margin-top: 0;
}
}


/*フッターメニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体*/
#footermenu {
	padding: 100px 20px;		/*ブロック内の余白*/
	text-align: center;	/*テキストを中央に*/
	font-size: 0.8rem;	/*文字サイズ。bodyのfont-sizeの80%です。*/
    display: flex;
    justify-content: center;
    border-top: 1px #ccc solid;
}

/*メニュー１個あたり*/
#footermenu li {
	display: inline-block;	/*簡易的に横並びにする*/
	margin: 10px;
    max-width: 300px;
}

#footermenu li img {
    width: 100%;
}

@media screen and (max-width:700px) {
    #footermenu {
    padding: 20px 20px;
    display: block;
}
}


/*フッター設定
---------------------------------------------------------------------------*/
footer small {font-size: 100%;}
footer {
	font-size: 0.7rem;		/*文字サイズ。bodyのfont-sizeの70%です。*/
	text-align: center;		/*内容をセンタリング*/
	padding: 20px;			/*ボックス内の余白*/
    border-top: 1px #ccc solid;
}

/*リンクテキスト*/
footer a {color: inherit;text-decoration: none;}

/*著作部分*/
footer .pr {display: block;}


/*テキストのフェードイン設定
---------------------------------------------------------------------------*/
/* 初期状態でテキストを非表示にする */
.fade-in-text {
    visibility: hidden;
}

/* アニメーションを適用するクラス。
animationの行の「0.05s」が文字の出現のなめらかさで、大きいほどなめらかに出てきます。
１文字ずつの出現する際の時差は、js/main.jsの「テキストのフェードイン効果」の中にある「0.2」で調整できます。*/
.char {
    display: inline-block;
    opacity: 0;
    animation: fadeIn 0.05s linear both;
}


/*お知らせブロック
---------------------------------------------------------------------------*/
/*記事の下に空ける余白*/
.new {
		display: grid;	/*gridを使う指定*/
		grid-template-columns: auto 1fr;	/*横並びの指定。日付とアイコン部分の幅は自動で、内容が入るブロックは残り幅一杯とる。*/
	}
dl.new {
    border-top: 1px #ccc dotted;
}
.new dd,.new dt {
	padding: 1rem;
    border-bottom: 1px #ccc dotted;
}

/*ブロック内のspan。日付の横のアイコン的な部分の共通設定*/
.new dt span {
	display: inline-block;
	text-align: center;
	line-height: 1.8;		/*行間（アイコンの高さ）*/
	width: 10rem;			/*幅。６文字分。*/
	color:#000;			/*文字色*/
    font-weight: bold;
}

@media screen and (max-width:900px) {
       .new {
		grid-template-columns: auto;
	} 
    .new dt span {
	text-align: left;
}
    .new dt {
	padding: 1rem 1rem 0 1rem;
    border-bottom: none;
}
    .new dd {
	padding: 0 1rem 1rem 1rem;
}

	}/*追加指定ここまで*/










/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
.pagetop-show {display: block;}

/*ボタンの設定*/
.pagetop a {
	display: block;text-decoration: none;text-align: center;z-index: 99;
	position: fixed;	/*スクロールに追従しない(固定で表示)為の設定*/
	right: 20px;		/*右からの配置場所指定*/
	bottom: 20px;		/*下からの配置場所指定*/
	color: #fff;		/*文字色*/
	font-size: 1.5rem;	/*文字サイズ*/
	background: rgba(0,0,0,0.2);	/*背景色。0,0,0は黒の事で0.2は色が20%出た状態。*/
	width: 60px;		/*幅*/
	line-height: 60px;	/*高さ*/
	border-radius: 50%;	/*円形にする*/
}


/*その他
---------------------------------------------------------------------------*/
.clearfix::after {content: "";display: block;clear: both;}
.color-check, .color-check a {color: #ff0000 !important;}
.l {text-align: left !important;}
.c {text-align: center !important;}
.r {text-align: right !important;}
.ws {width: 95%;display: block;}
.wl {width: 95%;display: block;}
.mb0 {margin-bottom: 0px !important;}
.mb30 {margin-bottom: 30px !important;}
.look {display: inline-block;padding: 0px 10px;background: #eee;color: #333;border: 1px solid #ccc; border-radius: 3px;margin: 5px 0; word-break: break-all;}
.small {font-size: 0.75em;}
.large {font-size: 2em; letter-spacing: 0.1em;}
.pc {display: none;}
.dn {display: none !important;}
.block {display: block !important;}

.mg-t300{margin-top: 30px;}
.mg-t100{margin-top: 30px;}
.img_right{float:none;}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

	.ws {width: 48%;display: inline;}
	.sh {display: none;}
	.pc {display: block;}
.mg-t100{margin-top: 100px;}
.mg-t300{margin-top: 300px;}
        .img_right{float:right;}
	}/*追加指定ここまで*/

.page-404{
	text-align: center;
    margin: 100px 0;
}