﻿@charset "utf-8"; /*文字コード指定*/

/* ----- css reset(各ブラウザで指定されているスタイルを初期化)と全体設定 ----- */

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, form, input, textarea, p, th, td, img {
	margin: 0; /*ボックス外側の余白(値1つは上下左右をまとめて指定)*/
	padding: 0; /*ボックス内側の余白(値1つは上下左右をまとめて指定)*/
	border: 0; /*境界線指定*/
}

body {
	background-color: #ffffff; /*背景色設定*/
	line-height: 1.5;	/*行の高さ指定(数値のみの場合はfont-sizeの倍数)*/
	font-family: "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro"; /*フォントの種類指定(左から優先順位)*/
	font-size: 75%; /* フォントサイズ指定(%はブラウザに設定した標準文字サイズ(通常16px)に対する値)*/
	color: #000000; /*文字色指定*/
	background-image: "background_1.png" ;
}

ul {
	list-style: none; /*リストマーカーの種類指定(noneはなし)*/
	margin-top: 0px
}

ul {
	list-style: none; /*リストマーカーの種類指定(noneはなし)*/
	margin-top: 0px
}

a { /*リンクの文字設定(マウスをのせる前)*/
	color: #0000FF; /*文字色指定*/
	text-decoration: none; /*テキストの装飾指定(下線、上線など)(noneはなし)*/
}

a:hover { /*リンクの文字設定(マウスをのせた時)*/
	color: #C74B15; /*文字色指定*/
	text-decoration: underline; /*テキストの装飾指定(下線、上線など)(underlineは下線を引く)*/
}

.color1 {
	color: #990000; /*文字色指定*/
}

/* ----- ヘッダー(ページの一番上の部分) ----- */

#header {
	position: relative; /*ボックスの配置方法(relativeは相対位置配置)*/
	height: 80px; /*領域の高さ指定*/
	width: 900px; /*幅指定*/
	margin: 0px auto; /*ボックス外側の余白(値2つは左から上下,左右の値)*/
}

/* ----- ロゴ ----- */

#logo {
	position: absolute; /*ボックスの配置方法(absoluteは絶対位置配置)*/
	left: 0; /*左からの距離(positionで指定している場合に適用)*/
	top: 10px; /*上からの距離(positionで指定している場合に適用)*/
	line-height: 30px; /*行の高さ指定*/
	font-family: 'IM Fell Great Primer SC', serif; /*Webフォントの種類指定*/
	font-size: 2.0em; /* フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
	text-align: center; /*行の水平方向の揃え方(centerは中央揃え)*/
}

#logo a {
	color: #555; /*文字色指定*/
}

#logo a:hover {
	text-decoration: none; /*テキストの装飾指定(下線、上線など)(noneはなし)*/
}

/* ----- ナビゲーションメニュー(ヘッダー内のメインメニュー) ----- */

#menu {
	position: absolute; /*ボックスの配置方法(absoluteは絶対位置配置)*/
	left: 60px; /*左からの距離(positionで指定している場合に適用)*/
	top: 20px; /*上からの距離(positionで指定している場合に適用)*/
	text-align: center; /*行の水平方向の揃え方(centerは中央揃え)*/
}

#menu a {
	color: #555; /*文字色指定*/
	font-family: 'IM Fell Great Primer SC', serif; /*Webフォントの種類指定*/
	font-size: 1.8em; /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
	text-transform: capitalize; /*フォントの大文字小文字指定(capitalizeは先頭文字を大文字)*/
	text-decoration: none; /*テキストの装飾指定(下線、上線など)(noneはなし)*/
	margin-right: 30px; /*ボックス外側右の余白*/
}

#menu a:hover, #menu a.active {
	color: #b22222; /*文字色指定*/
}

/* ----- 区切り線（グラデーション設定） ----- */

hr.style-one {
	border: 0; /*境界線指定*/
	height: 1px; /*領域の高さ指定*/
	background: #999; /*背景に関する指定をまとめて行う*/
	background-image: -webkit-linear-gradient(left, #eee, #999, #eee); /*背景画像指定*/
	background-image:    -moz-linear-gradient(left, #eee, #999, #eee); /*背景画像指定*/
	background-image:     -ms-linear-gradient(left, #eee, #999, #eee); /*背景画像指定*/
	background-image:      -o-linear-gradient(left, #eee, #999, #eee); /*背景画像指定*/
}

/* ----- h1 ----- */

h1 {
	margin-bottom: 50px; /*ボックス外側下の余白*/
	color: #777; /*文字色指定*/
	font-weight: normal; /*フォントの太さ指定(normalは標準)*/
	font-size: 2.2em; /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
	text-align: center; /*行の水平方向の揃え方(centerは中央揃え)*/
}

/* ----- レイアウト ----- */

#container { /*container(入れ物、容器)の中に各要素(ボックス)を配置*/
	width: 900px; /*幅指定*/
	margin: 0 auto; /*ボックス外側の余白(値2つは左から上下,左右の値(左右autoで中央配置))*/
}

#content {
	margin: 20px 0; /*ボックス外側の余白(値2つは左から上下,左右の値)*/
	text-align: left; /*行の水平方向の揃え方(centerは中央揃え)*/
}

#boder {
	width: 900px;
}

/* ----- フッター(ページの一番下の部分) ----- */

#footer {
	height: 110px; /*領域の高さ指定*/
	width: 100%; /*幅指定(100%は画面横幅いっぱいに表示)*/
  display: flex;
  justify-content: center;
  align-items: center;	
	
	
}

#footer p {
	margin-top: 10px; /*ボックス外側上の余白*/
	text-align: center; /*行の水平方向の揃え方(centerは中央揃え)*/
	vertical-align: middle;
	padding-left: 20px;
	font-size: 0.75em; /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
	color: #000000; /*文字色指定*/
}

#footer {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background: #b0c4de ;
}

#footer .copy-right_text {
  padding: 30px 0;
}

#footer .copy-right_text .copy_right {
  font-size: 10px;
  color: #fff;
  margin-bottom: 0;
  font-weight: 500;
}

@media (max-width: 767px) {
#footer .copy-right_text .copy_right {
    font-size: 13px;
  }
}

#position-center {
  margin-top: 30px 0;
}

#footer .img {
	
  display: flex;
  justify-content: right;
  align-items: center;	
}












/* ----- コンテンツ ----- */

#content h2 {
	font-size: 2em; /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
	font-weight: bold; /*フォントの太さ指定(normalは標準)*/
	margin: 10px 0; /*ボックス外側の余白(値2つは左から上下,左右の値)*/
}

#content h3 {
	font-size: 1.5em; /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
	font-weight: bold; /*フォントの太さ指定(normalは標準)*/
	margin: 10px 0; /*ボックス外側の余白(値2つは左から上下,左右の値)*/
}

#content p {
	margin-bottom: 20px; /**/
	font-size: 1.5em; /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/	
}

#content ul {
	margin-bottom: 20px; /*ボックス外側下の余白*/
}

#content ul li {
	padding: 10px 0; /*ボックス内側の余白(値2つは左から上下,左右の値)*/
	font-size: 1.5em; /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
	text-indent: 20px; /* 例: 20ピクセル字下げ */
	text-align: justify; 
	padding-left: 20px; /* 全体を右に移動 */
	margin: 0, auto
}

#content ol li {
	padding: 10px 0; /*ボックス内側の余白(値2つは左から上下,左右の値)*/
	font-size: 1.2em; /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
	text-align: justify; 
	padding-left: 20px; /* 全体を右に移動 */
	margin: 0, auto
}

#content a:hover img {
	border: solid 1px #c9171e; /*境界線の一括指定(solidは1本線,線の太さ,線の色)*/
}

/* ----- テーブル設定 ----- */

.ta {
	width: 800px; /*幅指定*/
	margin: 0 auto; /*ボックス外側の余白(値2つは左から上下,左右の値(左右autoで中央配置))*/
	margin-bottom: 10px; /*ボックス外側下の余白*/
	border-collapse: collapse; /*境界線の表示指定(collapseは重ねて表示)*/
}

.ta th, td {
	border: none; /*境界線の一括指定(noneはなし)*/
	padding: 0 0 10px 10px; /*ボックス内側の余白(値4つは左から上,右,下,左の値)*/
	font-size: 1.5em; /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
	font-weight: normal; /*フォントの太さ指定(normalは標準)*/
	text-align: left; /*行の水平方向の揃え方(centerは中央揃え)*/
}
.button-4 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 350px;
    margin:0 auto;
    padding: .9em 2em;
    border: none;
    border-bottom: solid 5px #0059a0;
    border-radius: 5px;
    background-image: linear-gradient(0deg, #2589d0 0%, #2589d080 100%);
    color: #fff;
    font-weight: 600;
    font-size: 1.0em;
    transition: .5s ease;
}

.button-4:hover {
    transform: translateY(3px);
    border-bottom-width: 2px;
}

.btn-sticky {
  display: inline-block;
  padding: 0.5em 1em;
  text-decoration: none;
  background: #f7f7f7;
  border-left: solid 6px #ff7c5c;/*左線*/
  color: #000000;/*文字色*/
  font-weight: normal;
  font-family: メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.29);
}
.btn-sticky:active {
  box-shadow: inset 0 0 2px rgba(128, 128, 128, 0.1);
  transform: translateY(2px);
}

YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif"



.btn002-02 {
　height: 60px;
  position: relative;
  text-decoration: none;
  outline: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gaps: 15px;
  transition: all 0.3s ease;
}
/*字のアイコン */
.btn002-02 .arrow {
　width: 60px;
　height: 60px;
  position: relative;
  display: grid;
  place-items: center;
  background-color: #1887f0;
  border-radius: 30px;
  overflow: hidden;
}
.btn002-02 .arrow span {
  margin-left: 7px;
  clip-path: polygon(0 7%, 7% 0, 57% 50%, 7% 100%, 0 93%, 43% 50%, 0 7%);
  height: 14px;
  aspect-ratio: 1;
  background-color: #fff;
}
.btn002-02 .arrow__item02  {
  position: absolute;
  transform: translate(-400%);
}
/*ホバーアニメーション */
.btn002-02:hover .arrow__item01 {
  transition: transform 0.3s ease-in-out;
  transform: translatex(400%);
}
.btn002-02:hover .arrow__item02 {
  transition: transform 0.3s ease-in-out 0.1s;
  transform: translatex(400%);
}






/* 上に戻るボタン */
.pagetop {
	color: #fff;
	background-color: rgba(0,0,0,0.3);
	text-decoration: none;
	display: none;
	position: fixed;
	bottom: 1rem;
	right: 1rem;
	font-size: 1.5rem;
	width: 3.3rem;
	height: 3.3rem;
	line-height: 3.3rem;
	border-radius: 3.3rem;
	text-align: center;
	cursor: pointer;
}

.pagetop:hover {
	color: #fff !important;
	background-color: #1A87ED;
	text-decoration: none;
}



