/*@charset "utf-8";*/
/* CSS Document */

/* Reset */
/* ============================================ */
* {
  box-sizing: border-box;
}

body, h1, h2, p, form, input, ul {
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
/*  font-family: "Hiragino Kaku Gothic ProN";*/
	font-family: "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    Meiryo,
    sans-serif;
  color: #474d67;
}

main {
  display: block;
}

a {
  text-decoration: none;
}

ul {
	list-style: none;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

table {
	border-collapse: collapse; /* セルの線を重ねる */
	table-layout: auto;
    width: 100%;
	max-width: 90%;
	margin: 0 auto;
}
th,td {
    border: solid 1px;  /* 枠線指定 */
    padding: 5px;      /* 余白指定 */
	font-size: 12px;
}
th {
	background-color: #f4f4f4;
}
td {
	text-align: left;
}



/* floatを解除 */
/* ============================================ */
.clear {
  clear: left;
}



/* ヘッダー */
/* ============================================ */
header {
    height: 65px;
    width: 100%;
	background-color: rgba(255, 255, 255, 0.8);
	/*background-color: #fff;*/
    position: fixed;
    top: 0;
    z-index: 10;
    transition: 0.5s;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
	border-bottom: 1px solid #474d67;
}
/*　サイトタイトル　*/
.sitetitle {
    display:　block;
    line-height: 65px;
    color: #474d67;
	margin-left: 30px;
	flex-shrink: 0; /*折り返さない*/
}
.sitetitle a {
	color: #474d67;
}
/*　ヘッダーメニュー上部　*/
/*新変更箇所*/
.header-menu ul {
	height: 65px;
    padding-left: 10px;
    padding-right: 10px;
    display: flex;
    font-size: 14px;
    font-weight: bold;
}
.header-menu li a {
    height: 65px;
	min-width: 80px;
    padding: 0 25px;
    color: #474d67;
    display: flex;
    flex-direction: row;
	justify-content: center;
   /*justify-self: center;*/ /*IEで表示されない場合に「justify-content: center;」と置き換え*/
	align-items: center;
    text-align: center;
    text-decoration: none;
    width: 100%;
}
.header-menu li a:hover {
  background-color: #474d67;
  transition: 0.5s;
	color: #fff;
}
/*.header-menu li a:hover {
  color: #fff;
}*/


/*　ハンバーガーボタン　*/
.hamburger {
  cursor: pointer;
  position: relative;
  /*right: 0;
  top: 0;*/
  width: 60px;
  height: 65px;
  /*margin-right: 10px;*/
  z-index: 300;
  display:block;
}
.hamburger span {
  background-color: #111;
  height: 1px;
  left: 11px;
  position: absolute;
  transition: all 0.6s;
  width: 30px;
}
.hamburger__lineTop {
  top: 20px;
}
.hamburger__lineCenter {
  top: 30px;
}
.hamburger__lineBottom {
  top: 40px;
}

/* サイドスライドメニューを隠す */
.sideMenu {
	display: none;
}
.overlay {
	display: none;
}

/*　サイドスライドメニューOPEN時に背景固定（jsで使用）　*/
.fixed {
  position: fixed;
  height: 100%; 
  width: 100%; 
}
/* 背景固定オーバーレイ */
.overlay {
  background-color: #000;
  cursor: pointer;
  height: 100vh;
  left: 0;
  opacity: 0;
  position: fixed;
  top: 0;
  transition: all 0.6s;
  visibility: hidden;
  width: 100vw;
  z-index: 100;
  display:block;
}

/* サイドスライドメニュー */
.sideMenu {
  width: 40%;
  background: #FFFFCC; /*後で変更*/
  color: #474d67;
  position: fixed;
  transform: translate(-100%);
  transition: 0.5s ease-out;
  display:block;
  height:100%;
  top: 0;
  overflow-y: auto;
  z-index: 200;
  padding-bottom: 30px;
}
.sideMenu nav {
  margin: 0 auto;
  background: #FFC;
}
/*.sideMenu nav ul {
  list-style: none;
}*/
.sideMenu nav li {
  padding: 0;
  width: 100%;
  /*list-style: none;*/
}
.sideMenu nav a {
  color: #474d67;
}
.sideMenu nav li a:hover{
  background: #FFFAB1;
  color: #474d67;
}
.smenutitle {
	padding: 2em; /*変更箇所*/
    text-decoration: none;
    border-bottom: 1px solid #FFFAB1;
    display: block;
    background-color: #74EBD5;
}
.smenu {
  padding-left: 2em;
  height: 3em;
  line-height: 3em;
  border-bottom: 1px solid #FFFAB1;
  display: block;
  font-weight: bold;
}
.smenusub {
  padding-left: 4em;
  height: 2.2em;
  line-height: 2.2em;
  border-bottom: 1px solid #FFFAB1;
  display: block;
  font-weight: bold;
/*  font-size: 15px;*/
}
.smenu-icon {
	display: inline-block;
	margin-right: 0.5em;
	vertical-align: middle;
}

/* メニューが開いた時のCSS */
.nav-open .sideMenu {
  background-color: #FFFFCC; /*後で変更*/
  transform: translate(0);
  transition: 0.5s ease-out;
}
.nav-open .hamburger__lineTop {
  top: 30px;
  transform: rotate(45deg);
}
.nav-open .hamburger__lineCenter {
  left: 50%;
  width: 0;
}
.nav-open .hamburger__lineBottom {
  top: 30px;
  transform: rotate(-45deg);
}
.nav-open .overlay {
  opacity: 0.5;
  visibility: visible;
}


/*ヘッダー・スライドメニュータイトル共通*/
.title-style {
	font-size:18px;
	font-weight: bold;
}
/* ヘッダーここまで */


/* スムーススクロール */
/* ============================================ */
#topBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
	z-index: 20; /*ここまで必須*/
	display: flex;
    justify-content: center;
	align-items: center;
    /*line-height: 50px;*/
    /*text-align: center;*/
    width: 60px;
    height: 60px;
	border-radius: 50%;
	border: solid 1px #474d67;
    background-color: #474d67;
    color: #fff;
	/*box-shadow: 2px 2px #272343;*/
}
/* スムーススクロールここまで */


/* メニュースクロール */
/* ============================================ */
.menuBtn {
	cursor: pointer;
    position: fixed;
    bottom: 90px;
    right: 20px;
	z-index: 20;
	display: flex;
    justify-content: center;
	align-items: center;
    width: 60px;
    height: 60px;
	border-radius: 50%;
	border: solid 1px #474d67;
    background-color: #FFFFCC;
    color: #474d67;
}
/* スムーススクロールここまで */


/* メイン */
/* ============================================ */
main {
    position: relative;
	background-color: #FFFFFF;
}


/* コンテナ（共通レイアウト） */
/* ============================================ */
.container {
  max-width: 1170px;
  width: 100%;
  padding: 0px 30px;
  margin: 0 auto;
}

/* コンテンツwrap */
/* ============================================ */
/* 中ページ共通wrap */
.contents-wrap {
	padding-top: 20px;
	padding-bottom: 80px;
    padding-left: 5%;
    padding-right: 5%;
	background-color: #fff;
/*	padding: 40px 30px;*/
	text-align: center;
}
.green-wrap {
	background-color: #74ebd5;
}

/*contents-wrapのp全体指定*/
.contents-wrap p {
	text-align: left;
    font-size: 15px;
	color: #474d67;
	margin-bottom: 12px;
}

/*contents-wrapのul,li全体指定*/
/*.contents-wrap ul {
	list-style: disc;
	text-align: left;
	margin-top: 20px;
	margin-bottom: 20px;
	margin-left: 30px;
	font-size: 14px;
}*/
.contents-wrap ul {
	list-style: disc;
	text-align: left;
	margin-top: 5px;
	margin-bottom: 5px;
	margin-left: 30px;
	font-size: 14px;
}
.contents-wrap ul li {
	line-height: 1.7;
}

/*リンク時のフォント色変更*/
.contents-wrap ul li a {
	color: #474d67;
	font-weight: bold;
	text-decoration: underline;
}

.contents-wrap ul li a:hover {
	color: #68d3bf;
}

/*contents-wrapのol,li全体指定*/
.contents-wrap ol {
	text-align: left;
	margin-top: 20px;
	margin-bottom: 20px;
/*	margin-left: 30px;*/
/*	font-size: 14px;*/
}
.contents-wrap ol li {
	line-height: 1.7;
}


/*中ページ内スクロールメニュー*/
.inpage-wrap {
	/*padding: 10px;*/
	border: #474d67 solid 1px;
	background: #f4f4f4;
	width: 100%;
}

.inpage-wrap ul {
	/*width: 100%;*/
	display: flex;
	flex-wrap: wrap;
	margin: 0 auto;
	justify-content: center;
}
.inpage-wrap ul li {
	list-style: none;
}
.inpage-wrap ul li a {
	font-size: 12px;
	display: inline-block;
	padding: 8px 12px;
	width: auto;
	text-align: center;
	text-decoration: none;
	color: #272343;
	/*border-right: #c7c9d1 solid 1px;*/
}
.inpage-wrap ul li a:hover {
	background-color: #474d67;
	color: #fff;
}


/* ============================================ */
.flex-container {
    display: flex;
	/*justify-content: center;*/
	/*justify-content: space-around;*/
	flex-direction: row;
	justify-content: space-evenly;
    flex-wrap: wrap;
}

.flex-item {
  /*flex: auto;*/
  padding: 20px 20px;
  min-width: 0;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, auto));
  gap: 30px;
  justify-content: center;
}

.glid-item {
  padding: 20px 20px;
  min-width: 0;
  justify-self: center;
}

/*glid内のテキスト*/
.glid-item p {
    margin-top: 15px;
    font-size: 13px;
    color: #474d67;
	text-align: center;
}

.grid-item-box {
	width: 240px;
}


/* ============================================ */
/* トップ */
/*新変更箇所*/
.top {
	/*top: 0;*/
	height: 65px;
}

/*新変更箇所*/
.top-wrap {
    /*margin-top: 65px;*/
    text-align: center;
    padding: 150px 0 150px;
	background-image: url("../img/mainimage.jpg");
	background-size: cover;
	background-position: center;
}

.top-wrap img {
	width: 100%;
	/*padding: 20px;*/
}

.sns-area img {
	width: 40px;
	margin-top: 20px;
}

.img-space {
	margin-right: 10px;
}

.space-top {
	padding-top: 65px;
}

/*リストスタイル*/
.list-circle li {
	list-style: circle;
}

.list-none li {
	list-style: none;
}

p.text-right {
	text-align: right;
}


/*協調リンクメニュー（使うかは保留）*/
.link-title {
	display: block;
	text-align: left;
	padding: 10px 0;
}

.link-title a {
	font-size: 20px;
	font-weight: bold;
	color: #474d67;
	text-decoration: underline;
    padding: 0.04em 0.3em;
    border-left: solid 15px #74ebd5;
}

/* 正方形バージョン
.link-title a {
	font-size: 20px;
	font-weight: bold;
	color: #474d67;
	text-decoration: underline;
	position: relative;
	padding: .3em .3em .3em 1.3em;
}
.link-title a::after {
	position: absolute;
	content: '';
	bottom: .5em;
	left: .1em;
	width: 17px;
	height: 17px;
	background-color: #74ebd5;
}
*/

.link-title a:hover {
	color: #68d3bf;
}


/*単独テキストボックス*/
.text-box {
	padding-bottom: 30px;
}

.align-box {
	max-width: 300px;
}

/*個別テキスト*/
/*230126変更*/
p.text {
	/*display: block;*/
	text-align: center;
    margin-bottom: 8px;
	font-size: 14px;
	color: #474d67;
}

/*230126変更*/
p.item-text {
    width: 100%;
    /*display: block;*/
    margin-top: 15px;
    font-size: 13px;
    color: #474d67;
}

/*230126変更*/
p.name {
	/*display: block;*/
	font-size: 16px;
	text-align: center;
	font-weight: bold;
	padding: 5px 0;
}

p.text-center {
	text-align: center;
}


/*個別に行頭を字下げ*/
/*divに指定*/
.indent {
  text-indent: 1em;
}
/*pに指定*/
p.indent {
  text-indent: 1em;
}

/*個別に2行目以降を字下げ*/
/*divに指定*/
.indent2 {
  padding-left: 1em;
  text-indent: -1em;
}
/*pに指定*/
p.indent2 {
  padding-left: 1em;
  text-indent: -1em;
}


/*見出しスタイル*/
/* ============================================ */
/*テキスト2種とアンダーライン*/
h1 {
	border-bottom: solid 2px #474d67;
	padding: 10px 0;
	display: inline-block;
    font-size: 32px;
	font-weight: bold;
	margin-top: 10px;
	margin-bottom: 50px;
	/*text-align: center;*/
}
h1 span {
	display: block;
	font-size: 1rem; 
	color: #474d67;
}

/*左ボーダーと背景*/
h2 {
    padding: 0.5em 0.5em; /*文字の上下 左右の余白*/
    background: #f4f4f4; /*背景色*/
    border-left: solid 5px #74ebd5; /*左線*/
    font-size: 24px;
	font-weight: bold;
	text-align: left;
	margin-top: 40px;
	margin-bottom: 20px;
}

/*2色ライン*/
h3 {
    padding: 0.4rem 0;
    background-image: linear-gradient(90deg, #74ebd5 0 20%, #dedede 20%);
    background-repeat: no-repeat;
    background-size: 100% 6px;
    background-position: bottom;
    font-size: 22px;
	font-weight: bold;
	margin-top: 30px;
	margin-bottom: 10px;
	text-align: left;
}

/*ストライプ下線*/
h4 {
    /*position: relative;*/
    padding: 0.7rem 0;
    background-image: repeating-linear-gradient(45deg, transparent 0 3px, #dedede 3px 6px);
    background-repeat: no-repeat;
    background-size: 100% 10px;
    background-position: left 0 bottom 12px;
	font-size: 20px;
	font-weight: bold;
	margin-top: 20px;
	/*margin-bottom: 5px;*/
	text-align: left;
}

h5 {
	font-size: 18px;
	font-weight: bold;
	margin-top: 20px;
	margin-bottom: 5px;
	text-align: left;
}

h6 {
	font-size: 16px;
	font-weight: bold;
	margin-top: 20px;
	margin-bottom: 5px;
	text-align: left;
}


/*左ライン*/
.heading04 {
    padding: 0.4em 0.5em;/*文字の上下 左右の余白*/
    border-left: solid 5px #74ebd5;/*左線*/
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 20px;
	text-align: left;
}

/*見出しスタイルここまで*/



/*CSS素材*/
/* ============================================ */
/*メニューバナー*/
.menu-banner {
	display: block;
	padding: 10px 5px;
	width: 240px;
	text-align: center;
	background-color: #FFC;
	color: #474d67;
	border: #474d67 solid 1px;
	margin: 0 auto;
	box-shadow: 0 4px #474d67;
	margin-bottom: 4px;
}
a.menu-banner:hover {
	background-color: #474d67;
	color: #fff;
	border: #272343 solid 1px;
	box-shadow: 0 4px #272343;
}
a.menu-banner:active {
	position: relative;
	top: 4px;
	box-shadow: none;
}

/*NEXTボタン*/
.btn-next {
	display: inline-block;
	background-color: #FFF;
	color: #474d67;
	border: #474d67 solid 1px;
	padding: 5px 0px;
	width: 300px;
	margin: 20px 5px 10px 5px;
	text-align: center;
	box-shadow: 0px 3px #474d67;
	margin-bottom: 3px;
}
a.btn-next:hover {
	background-color: #474d67;
	color: #fff;
	border: #272343 solid 1px;
	box-shadow: 0px 3px #272343;
}
a.btn-next:active {
	position: relative;
	top: 3px;
	box-shadow: none;
}


/* ボーダー */
/*.hr_style01 {
	border-bottom: 1px solid #FFFAB1;
}*/
/*.hr_style02 {
  height: 8px;
  background-image: repeating-linear-gradient(45deg, #ccc 0, #ccc 1px, transparent 0, transparent 50%);
  background-size: 8px 8px;
}*/



/* フッター */
/* ============================================ */
footer {
  padding: 40px 0;
  background-color: #FFFFCC;
}

footer img {
  width: 125px;
}

footer p {
  color: #474d67;
  font-size: 12px;
  text-align: center;
}