@charset "UTF-8";

/* リセット */
body,div,
dl,dt,dd,ul,ol,li,
h1,h2,h3,h4,h5,h6,
pre,form,fieldset,input,textarea,p,blockquote,th,td {
	margin: 0;
	padding: 0;
	font-size: 100%;
	list-style: none;
}
img {
  vertical-align: bottom;
	max-width: 100%;
}
body{
  font-family: Meiryo,メイリオ,'游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
}
@keyframes SlideDown {
0% {
opacity: 0;
transform: translateY(50px);
}
100% {
opacity: 1;
transform: translateX(0);
}
}
body{
animation-duration: 2s;
animation-name: SlideDown;
}
/*　スクロール　*/
html {
    scroll-behavior: smooth;
}

/*　ハンバーガーボタン　*/
#nav-open {
  display: inline-block;
  width: 30px;
  height: 22px;
  vertical-align: middle;
	position: absolute;
	right: .8em;
	top: 1.4em;
}
/*ハンバーガーアイコンをCSSだけで表現*/
#nav-open span, #nav-open span:before, #nav-open span:after {
  position: absolute;
  transition: all 0.4s;
  height: 3px;/*線の太さ*/
  width: 30px;/*長さ*/
  border-radius: 3px;
  background: #000;
  display: block;
  content: '';
  cursor: pointer;
  z-index: 9999;/*最前面*/
}
#nav-open span:before {
  bottom: -8px;
}
#nav-open span:after {
  bottom: -16px;
}
/*中身*/
#nav-content {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transition: .2s ease-in-out;
}
#nav-content.open {
  display: block;
  opacity: 1;
  overflow: auto;
  position: fixed;
	padding-top: 3em;
  top: 0;
  left: 0;
  z-index: 9998;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);/*背景色*/
  overflow: hidden;/*ブラー効果でボヤけた部分を非表示*/
}
/*:beforeにぼかし効果を設定する*/
#nav-content.open:before {
  content: '';
  overflow: hidden;
  -webkit-filter: blur(10px);
  -moz-filter: blur(10px);
  -o-filter: blur(10px);
  -ms-filter: blur(10px);
  filter: blur(10px);
  z-index: -1;/*重なり順序を一番下にしておく*/
}
/*チェックが入ったら表示する内容*/
.hamburger-top {
  height: 40px;/*×ボタンと被らないように*/
}
.category {
  text-align: left;
}
.category-title {
    padding: 0.25em 2.5em;
    list-style: none;
}
.category-title a{
  color: #2D0902;
	font-size: 18px;
  text-decoration: none;
}
/* リストメニュープルダウン  */
.category li {
   position: relative;
	 text-align: center;
}
.category li a {
   display: block;
   /* width: 340px; */
   padding: 10px;
	 border-radius: 10px;
}
.category li:hover > ul {
   display: block;
}
.category ul {
   display: none;
   position: absolute;
}
.category li a {
    display: block;
    text-decoration: none;
		font-family: Meiryo、メイリオ;
}
.category-title2 {
	margin-left: 5.5em;
}
.category-title2 {
	font-size: 13px;
}
/*子階層以降共通*/
.category li li {
    height: 0;
    overflow: hidden;
    transition: .5s;
		z-index: 999;
		width: 100%;
}
.category li li a {
    /* border-top: 1px solid #eee; */
		margin-top: .5em;
		margin-bottom: .6em;
		font-size: 16px;
		color: #000;
		background: #FFF;
}
.category li:hover > ul > li {
    height: 2em;
    overflow: visible;
}
.category li a:hover{
	/* color: #6C5A3A; */
	transition: color .4s;
}
/*三本線を動かす*/
#nav-open.active span {
  -webkit-transform: translateY(8px) rotate(-45deg);
  transform: translateY(8px) rotate(-45deg);
  background-color: #888;
}
#nav-open.active span:before {
  -webkit-transform: translateY(-8px) rotate(45deg);/*打ち消す*/
  transform: translateY(-8px) rotate(45deg);/*打ち消す*/
  opacity: 0;
}
#nav-open.active span:after {
  -webkit-transform: translateY(-16px) rotate(45deg);
  transform: translateY(-16px) rotate(90deg);
  background-color: #888;
}
	/* トグルSP設定 */
	@media (max-width: 880px){
		#nav-open{
			display: block;
		}
	}
	@media (min-width: 881px){
		#nav-open{
			display: none;
		}
	}
	/* ヘッダーデザイン */
	header{
		width: 100%;
		height: 4.8em;
	}
	.header-left{
		position: absolute;
		top:0; left:140px;
	  z-index: 2;
	}
	@media (max-width: 881px){
		.header-left{
			position: absolute;
			top:0; left:30px;
		  z-index: 2;
		}
	}
	@media (max-width: 500px){
		.header-left{
			position: absolute;
			top:16px; left:10px;
		  z-index: 2;
		}
		.header-left img{
			max-width: 60%;
		}
	}

	.header-left a:hover {
		opacity: 0.7;
		transition: .4s;
	}
	.header_wrapper{
		position: absolute;
		top:30px;
		right:40px;
		width: 140px;
		font-size: 18px;
	}
	@media (max-width: 500px){
		.header_wrapper{
			right:40px;
			font-size: 16px;
		}
	}
/* インスタロゴ */
/* .fb{
	float: left;
}
.fb img{
	margin: .5em .3em;
} */
.acces_sp{
border-radius: 5px;
    display: block;
    width: 150px;
    padding: 10px;
    box-sizing: border-box;
    background: #6fa1ff;
    color: #FFF;
    text-align: center;
    margin-right: auto;
		margin-left: auto;
}
a{
	color: #FFF;
	text-decoration: none;
}

/* トップ画面デザイン */
.top_photo_pc img {
	height: auto;
	width: 100%
	position: relative;
}
.maintext{
	position: absolute;
	top: 22%;
  left: 20%;
	font-family: '游明朝','Yu Mincho',YuMincho;
}
.maintext-p{
	float: left;
}
.top_photo_pc h1{
	font-size: 70px;
	font-weight: normal;
	color: #000;
}
.maintext span{
	color: #159fe4;
}
.top_photo_pc p{
	font-size: 18px;
	font-weight: normal;
	color: #000;
	float: left;
	margin-top: .5em;
}
.top_photo_sp img {
  width: 100%;
	height: auto;
}

@media (max-width: 680px){
	.top_photo_pc img{
		display: none;
	}
	.top_photo_sp{
		display: block;
	}
}
@media (min-width: 680px){
	.top_photo_sp{
		display: none;
	}
}

/* ナビデザイン */
.top_wrapper{
	width: 100%;
	background: #f77715;
	height: 48px;
}
.menu {
    display: flex;
    height: 3em;
    margin: 0 auto;
    width: 960px;
}
@media (max-width: 980px){
	.menu {
	    width: 780px;
	}
}
.menu > li {
    width: 25%;
}
/*全てのリスト・リンク共通*/
.menu li {
    list-style: none;
    position: relative;
}
.menu li a {
    color: #fff;
		font-size: 17.5px;
		letter-spacing: 0.12em;
    display: block;
    line-height: 2.5em;
    text-align: center;
    text-decoration: none;
}
@media (max-width: 880px){
	.top_wrapper{
		display: none;
	}
}
	.bnr a:hover{
	  opacity: 0.7;
	}
	.bnr a{
	  transition: opacity .5s;
	}
  .bnr :after{
		content: "";
		display: block;
		clear: both;
	}
/* @keyframes SlideDown {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
} */
/* body{
  animation-duration: 2s;
  animation-name: SlideDown;
} */

/* 扱い分野と言語 */
.language{
	width: 760px;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}
.language img{
	margin: 3em;
}

@media (max-width: 768px){
	.language{
		width: auto;
	}
	.language img{
		margin: 1.5em;
	}
}
.content_about{
	margin-top: 5em;
}
.content_about h1{
	color: #462600;
	text-align: center;
	margin-top: 1.6em;
	text-align: center;
	font-size: 30px;
	font-weight: normal;
}
.content_text{
	width: 1028px;
	margin-left: auto;
	margin-right: auto;
}
@media (max-width: 1050px){
	.content_text{
		width: auto;
		margin-left: 3em;
		margin-right: 3em;
	}
}
@media (max-width: 768px){
	.content_about{
		margin-top: 2em;
	}
	.content_about h1{
		font-size: 26px;
	}
}
.content_text h4{
	font-size: 17px;
	font-weight: normal;
	color: #2E2E2E;
	line-height: 2em;
	text-align: center;
}
.content_text h4 a{
	text-decoration: none;
}
.line{
	padding-bottom: 2em;
	text-align: center;
}

/* 表デザイン*/
table {
  border-collapse: collapse;
  margin: 0 auto;
  padding: 0;
  width: 842px;
  table-layout: fixed;
	font-family: "Open Sans", sans-serif;
  line-height: 1.25;
}

table tr {
  background-color: #e6f2f5;
  padding: .35em;
  border-bottom: 2px solid #fff;
}
table th,
table td {
  padding: 1em 10px 1em 1em;
  border-right: 2px solid #fff;
}
table th {
  font-size: 18px;
	font-family: Meiryo、メイリオ;
	font-weight: normal;
}
table thead tr{
  background-color: #f99c54;
  color:#fff;
}
table tbody th {
    background: #4382da;
    color: #fff;
		font-size: 18px;
		width: 33%;
		font-family: Meiryo、メイリオ;
}
.txt{
   text-align: left;
   font-size: .85em;
}
.price{
  text-align: right;
  color: #000;
  font-weight: bold;
}
.non{
  background:#fff
}
.price-t{
  text-align: justify;
	line-height: 1.5em;
  color: #000;
  font-weight: normal;
	padding-left: 1.5em;
	padding-right: 1.5em;
}
@media screen and (max-width: 842px) {
  table {
    border: 0;
    width:100%
  }
  table th{
    background-color: #167F92;
    display: block;
    border-right: none;
  }
  table thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  table tr {
    display: block;
    margin-bottom: .625em;
		padding: .5em;
  }
  table td {
    border-bottom: 1px solid #bbb;
    display: block;
    font-size: 1em;
    text-align: right;
    position: relative;
    padding: .625em .625em .625em 4em;
    border-right: none;
  }
  table td::before {
    content: attr(data-label);
    font-weight: bold;
    position: absolute;
    left: 10px;
    color: #167F92;
  }
  table td:last-child {
    border-bottom: 0;
  }
  table tbody th {
    color: #fff;
		width: auto;
}
}

/* .table_design08 {
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
  max-width: 700px;
  text-align: center;
}
.table_design08 th, .table_design08 td {
  border: 2px solid #d2e8f1;
  padding: 1em;
}
.table_design08 thead th {
  background-color: #4d9bc1;
  color: #fff;
  border: 2px solid #4d9bc1;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}
.table_design08 thead th:last-of-type {
  border-right: 2px solid #4d9bc1;
}
.table_design08 tbody th {
  color: #4d9bc1;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 787px) {
  .table_design08 {
    text-align: left;
  }
  .table_design08 thead {
    display:none;
  }
  .table_design08 th, .table_design08 td {
    display: block;
    border: 0;
    border-bottom: 2px solid #e6f1f6;
  }
  .table_design08 tbody th{
    background: #4d9bc1;
    color:#fff;
  }
  .table_design08 td::before{
    content: attr(data-label);
    color: #4d9bc1;
    font-weight: bold;
    display: inline-block;
    width: 20%;
    min-width: 4em;
  }
} */

/*text-wrapper*/
.text-wrapper{
	width: 842px;
	margin-left: auto;
	margin-right: auto;
	margin-top: .8em;
}
.text-wrapper p{
	font-family: Meiryo、メイリオ;
	text-align: justify;
}
@media screen and (max-width: 842px) {
	.text-wrapper{
		width: auto;
		margin-left: 1em;
		margin-right: 1em;
	}
	.text-wrapper p{
		font-size: 1em;
	}

}


/* footer設定 */
footer{
	margin-top: 4.5em;
}
.footer-wrapper{
	background: #123166;
	width: 100%;
	height: 350px;
	text-align: center;
}
.footer-title{
	padding-top: 3em;
}
.footer-title h5{
	font-size: 30px;
	color: #FFF;
	font-family: Meiryo,メイリオ;
}
.footer-title p{
	font-size: 18px;
	color: #FFF;
	font-family: Meiryo,メイリオ;
}
.footer-button{
	margin-top: 2em;
}
.footer-button a {
    font-size: 18px;
		font-family: Meiryo、メイリオ;
    padding: 14px 60px;
		background: #f75d15;
    /* border: 1px solid #FFF; */
    color: #FFF;
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border-radius: 6px;
}
.footer-button a:hover{
	opacity: 0.7;
}
.footer-wrapper a:hover{
	opacity: 0.7;
	text-decoration: none;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	border-radius: 6px;
}
.footer-wrapper img{
	margin-top: 3.5em;
}
@media (min-width: 769px){
	.footer-title br{
		display: none;
	}
}
@media (max-width: 768px){
	.footer-title{
		padding-left: 1.5em;
		padding-right: 1.5em;
	}
	.footer-title br{
		display: block;
	}
	.footer-wrapper img {
    margin-top: 1.5em;
}
}
/* コピーライト設定 */
.copyright{
	font-size: 14px;
	margin-top: 2em;
	text-align: center;
	margin-bottom: 2em;
}
