﻿<@charset "UTF-8";>

/*--------------------
ページ全体の設定
--------------------*/

body{
  margin: 0;
}

body {
  font-family: sans-serif;
  font-size: 16px;
  line-height:1.6;
  color : #333;
  margin: 0px;
}

/* 1000pxまでの幅の場合 */
@media screen and (max-width: 1000px) {
    body {
        width: 1000px;
    }
}

#header {
  margin-right: auto;
  margin-left : auto;
  background-color: #66CCCC;
}

#ps {
  width: 1000px;
  margin-right: auto;
  margin-left : auto;
}

#footer {
  background-color: whitesmoke;
}

/*--------------------
メニューバー
--------------------*/

.menu {
    display: flex;
    justify-content: space-around;
}

.menu ul {
  list-style: none;
  display: flex;
}

.menu li {
  text-align: center;
  height: 100px;
  line-height: 100px;
}

.menu li a {
  text-decoration: none;
  color: white;
  padding: 20px;
}

.menu li a:hover {
  color: #FFFACD;
}

.menu_en {
    display: flex;
    justify-content: start;
    padding:0 0 0 1%;
}

.menu_en p{
    color: white;
    padding: 3% 0 0 9%;
    font-size: 18px;
}

/*--------------------
中央寄せ
--------------------*/

.center {
  text-align: center;
}

/*--------------------
右寄せ
--------------------*/

.right {
  text-align: right;
}

/*--------------------
左寄せ
--------------------*/

.left {
  text-align: left;
}

/*--------------------
中央幅寄せ
--------------------*/
.width_adjust{
  padding: 0 25%;
}

/*--------------------
位置調整
--------------------*/
.mtop10{
  margin:10px 0 0 0;
}

.mtop30{
  margin:30px 0 0 0;
}

.mbottom10{
  margin:0 0 10px 0;
}

.mbottom30{
  margin:0 0 30px 0;
}


.mright10{
  margin:0 10px 0 0;
}

.mleft10{
  margin:0 0 0 10px;
}

.mupbottom30{
  margin:30px 0 30px 0;
}

/*--------------------
通常リンク
--------------------*/

.link a {
  text-decoration: none;
  color: #333;
}

.link a:hover {
  color: #66CCCC;
}


/*--------------------
ホバー時に画像を白っぽく
--------------------*/

.hover img:hover {
  opacity: 0.5;
}


/*--------------------
見出し(tag)
--------------------*/

.tag{
position: relative;
padding: 0.5em;
background: #66CCCC;
color: white;
}

.tag::before {
position: absolute;
content: '';
top: 100%;
left: 0;
border: none;
border-bottom: solid 15px transparent;
border-right: solid 20px rgb(149, 158, 155);
}

/*--------------------
商品・サービス
--------------------*/

.container ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.container li {
  text-align: center;
  margin: 10px;
  padding: 10px;
  width: 200px;
}

.container p {
    text-align: left;
}

.button {
  margin: 10px;
  padding: 0.3em 1em;
  text-decoration: none;
  color: #66CCCC;
  border: solid 2px #66CCCC;
  border-radius: 3px;
  transition: .4s;
  background-color: rgba(255,255,255,0.5);
}

.button:hover {
    background: #66CCCC;
    color: white;
}

/*--------------------
お知らせ
--------------------*/

.news {
    text-align: left;
    width: 800px;
    margin-right: auto;
    margin-left : auto;
    margin-bottom: 50px;
    line-height: 30px;
}

/*--------------------
トップページ
--------------------*/
.top_list,.top_list th, .top_list td{
    border:none;
}

.top_list td{
    width:25%;
}

.top_list h3{
    font-size:18px;
}

.top_list a{
    display: block;
    font-size: 16px;
    margin: auto;
    width: 50%;
}

.top_list.two{
  width:66%;
  margin:0 auto;
  margin-bottom: 5%;
}

tr.ve_ali {
    vertical-align: top;
}

tr.top_list_center > td{
  text-align:center;
}

tr.top_list_left > td{
  text-align:left;
}

/*--------------------
子ページレイアウト
--------------------*/

#main {
  width: 1000px;
  margin-right: auto;
  margin-left : auto;
}

.text_body{
  margin: 0 5%;
}

/*--------------------
見出し(h3の左に縦線)
--------------------*/

.main h3 {
padding: 0.25em 0.5em;/*上下 左右の余白*/
color: #494949;/*文字色*/
background: transparent;/*背景透明に*/
border-left: solid 5px #66CCCC;/*左線*/
}

.box {
    padding: 0.5em 1em;
    margin: 2em 0;
    color: #232323;
    background-color: whitesmoke;
    border-left: solid 10px #66CCCC;
    width: 800px;
}
.box p {
    margin: 0; 
    padding: 0;
}

.main ul li, ol li {
  line-height: 2;
}

.main a {
  text-decoration: none;
}

/*--------------------
展開
--------------------*/

/*全体*/
.hidden_box {
    margin: 2em 0;/*前後の余白*/
    padding: 0;
}

/*ボタン装飾*/
.hidden_box label {
    padding: 15px;
    font-weight: bold;
    cursor :pointer;
}

/*ボタンホバー時*/
.hidden_box label:hover {
    color: #66CCCC;
}

/*チェックは見えなくする*/
.hidden_box input {
    display: none;
}

/*中身を非表示にしておく*/
.hidden_box .hidden_show {
    height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    transition: 0.8s;
}

/*クリックで中身表示*/
.hidden_box input:checked ~ .hidden_show {
    padding: 10px 0;
    height: auto;
    opacity: 1;
}


.accordion-container {
  position: relative;
  width: 100%;
  border: 1px solid #000;
  border-top: none;
  outline: 0;
  cursor: pointer
}

.accordion-container .article-title {
  display: block;
  position: relative;
  margin: 0;
  padding: 0.625em 0.625em 0.625em 2em;
  font-size: 1.25em;
  font-weight: normal;
  color: #fff;
  background: #000;
  cursor: pointer;
}

.accordion-container .article-title:hover,
.accordion-container .article-title:active,
.accordion-container .content-entry.open .article-title {
  background-color: #00aaa7;
  color: white;
}

.accordion-container .article-title:hover i:before,
.accordion-container .article-title:hover i:active,
.accordion-container .content-entry.open i {
  color: white;
}

.article-title{
  position: relative;
}

.article-title:after {
  content: "";
  position: absolute;
  right: 25px;
  top: 38%;
  transition: all 0.2s ease-in-out;
  display: block;
  width: 8px;
  height: 8px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.article-title.open:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 45%;
}

.accordion-content {
  display: none;
  padding-left: 2.3125em;
}

/* CSS for CodePen */
.accordion-container {
  width: 100%;
/*  margin: 1.875em auto;*/
}

/*--------------------
破線
--------------------*/

hr {
  height: 1px;
  border: none;
  border-top: 1px #333 dashed;
}

/*--------------------
テーブル
--------------------*/

table {
  border-collapse: collapse;
  font-size: small;
}
table th, table td {
  border: solid 1px black;
  /*実線 1px 黒*/
}

/*--------------------
チェックボックス
--------------------*/
.checkbox01{
  display: none;
}
.checkbox-parts{
  padding-left: 20px;
  position:relative;
  margin-right: 20px;
}
.checkbox-parts::before{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  height: 15px;
  border: 1px solid #999;
  border-radius: 4px;
}
.checkbox01:checked + .checkbox-parts{
  color: #1e90ff;
  font-weight: bold;
}
.checkbox01:checked + .checkbox-parts::after{
  content: "";
  display: block;
  position: absolute;
  top: -5px;
  left: 5px;
  width: 7px;
  height: 14px;
  transform: rotate(40deg);
  border-bottom: 3px solid #1e90ff;
  border-right: 3px solid #1e90ff;
}
/*--------------------
メッセージウィンドウ
--------------------*/
.caution {
  border:solid 1px red;
  background-color: rgba(255, 172, 172, 0.3); 
  display: flex;
  justify-content: left;
  align-items: center;
  font-weight: bold;
}

/*--------------------
フォーム関連
--------------------*/

.form_table {
  width: 100%;
}

.form_table.contact_table th {
  width: 30%;
}


.form_block {
  width: 100%;
}

.form_button input {
  font-size: 16px;
  font-family: sans-serif;
  width: 10%;
}

.form_button p {
  display: inline-block;
  width: 10%;
}

/*--------------------
文字サイズ
--------------------*/

.small {
    font-size: small;
}

.large {
    font-size: large;
}

.bold {
    font-weight: bold;
}


/*--------------------
文字色
--------------------*/

.red {
    color: red;
}

.light_red{
    color: #ff6666;
}

.blue{
    color: #006699;  
}

.orange{
    color: #e89600;  
}

.green{
    color: #30b903;  
}

.white{
    color: white;  
}

/*--------------------
リスト先頭の点を消す
--------------------*/
.wobullets ul {
    list-style:none !important;
    padding: 0;
}

/*--------------------
必須アイコン
--------------------*/
.required {
    background-color: red;
    color: white;
    padding: 0px 3px;
}

/*--------------------
事業案内TOP
--------------------*/
.biz_link{
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.biz_link_button{
    display: inline-block;
    text-align: center;
    width: 100%;
    padding: 2% 0 2% 0;
}

.biz_link_button a{
    width: 10%;
}

/*--------------------
データ配信
--------------------*/
.box_data{
    padding: 0.5em 1em;
    color: #000;
    width: 350px;
/*    width: 18%;*/
}

.box_data p {
    margin: 0; 
    padding: 0;
}

.circle{
    width: 420px;
    height: 130px;
    border-radius: 50%;
    background: rgb(159, 222, 222);
    text-align: center;
    line-height: 130px;
    position: absolute;
    top: 495px;
    font-size: 25px;
    font-weight: bold;
    color: red;
    z-index: -1;
    margin: auto auto;
    right: 0;
    left: 0;
}

.circle2{
    width: 340px;
    height: 105px;
    border-radius: 50%;
    background: rgb(255, 255, 255);
    text-align: center;
    line-height: 100px;
    position: absolute;
    top: 508px;
    font-size: 25px;
    font-weight: bold;
    font-family: serif;
    color: red;
    z-index: -1;
    margin: auto auto;
    right: 0;
    left: 0;
}

.data_table{
  border-collapse: separate;
  border-spacing: 5px 15px;
  width: 80%;
  font-family: "游ゴシック", "Yu Gothic";
  margin: 0 10% 0 10%;
}

.data_table p{
  display: inline-block;
  margin: 0 0 0 5%;
}


.data_table td{
  border-style: none; 
}

.data_table_shadow{
  box-shadow: 2px 2px 5px #00000059;
}

.table_item{
    background: -moz-linear-gradient(#ffffff, #c9f4fd);
    background: -webkit-linear-gradient(#ffffff, #c9f4fd);
    background: linear-gradient(to top, #ffffff, #c9f4fd);
}

.item_border{
  border:solid 0.5px #9393e8 !important;
}

.table_area{
    background: -moz-linear-gradient(#ffffff, #ffe69f);
    background: -webkit-linear-gradient(#ffffff, #ffe69f);
    background: linear-gradient(to top, #ffffff, #ffe69f);
}

.area_border{
  border:solid 0.5px #d6ae38 !important;
}

.table_user{
    background: -moz-linear-gradient(#ffffff, #ffe1e1);
    background: -webkit-linear-gradient(#ffffff, #ffe1e1);
    background: linear-gradient(to top, #ffffff, #ffe1e1);
}

.user_border{
    border:solid 0.5px #c58181 !important;
}

.table_theme{
    background: -moz-linear-gradient(#ffffff, #d9ffdf);
    background: -webkit-linear-gradient(#ffffff, #d9ffdf);
    background: linear-gradient(to top, #ffffff, #d9ffdf);
}

.theme_border{
     border:solid 0.5px #4bdc65 !important; 
}

.data_table_width{
  width: 45%;
}


/*--------------------
白書
--------------------*/

.books {
	width: 640px;
	display: flex;
	justify-content: center;
    margin-bottom: 50px;
}

.cover {
  margin: 50px 50px 50px 50px;
  width: 200px;
}

@media all and (-ms-high-contrast:none){
  :-ms-lang(x)::-ms-backdrop, .cover{margin: 50px 200px 50px 50px;}
}

.description {
  margin: 10px;
  width: 500px;
}

.backissues {
    display: flex;
}

.backissues ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.backissues li {
  margin: 20px;
  padding: 20px;
  width: 200px;
}

.backissues ul li {
  line-height: 1.5;
  padding: 0.5em 0;
  width: 22%;
}

.img_resize{
  width:212px;
}   

.name_img_resize{
  width:90px;
  margin: 0px 0 -8px 0;
}

.publishing_table th{
  width:35%;
}

.icon_with_text{
  width: 400px;
  margin: 10px 20px;
  padding: 10px;
  border: 1px solid #aaa;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center; 
}

.icon_with_text_inner{
  border: 1px dashed #ccc;
  padding: 5px;
  margin: 0 10px;
  width: 300px;
  display: inline-block;
}

.icon_with_text_size{
/*  width:15%;*/
    width:50px;
}

.icon_with_text_a{
  display: contents;
}


/*--------------------
新興国市場調査
--------------------*/


/*--------------------
ランキング
--------------------*/

table.weekly {
    margin-left: auto;
    margin-right: auto;
}

table th {/*table内のthに対して*/
  padding: 5px;/*上下左右10pxずつ*/
  background: whitesmoke;
}

table td {/*table内のtdに対して*/
  padding: 3px 10px;/*上下3pxで左右10px*/
}

.ranking {
    width: auto;
}

.sales {
  width: 1000px;
  margin-right: auto;
  margin-left : auto;
  display: flex;
}

.salesdescription {
  margin-right: auto;
  margin-left : auto;
  width: 1000px;
}


/*--------------------
会社案内
--------------------*/

table.overview {
    margin-right: auto;
}

.hosokawa {
	width: 640px;
	display: flex;
	justify-content: center;
    margin-bottom: 0px;
}

.summary {
  margin: 0px;
  width: 500px;
}

.photo {
  margin: 20px;
  width: 140px;
  margin-top: 100px;
}



/*--------------------
サイトマップ
--------------------*/

.sitemap ul {
    list-style: none;
    display: flex;
	flex-wrap: wrap;
	justify-content: center;
    height: 200px;
}

.sitemap li {
    display: flex;
    flex-direction : column;
	padding: 30px;
}

.sitemap li a {
  text-decoration: none;
  color: #333;
  padding: 3px;
}

.sitemap li a:hover {
  color: #66CCCC;
}


/*--------------------
注文
--------------------*/
.order_table{
  width:100%;
  border:"0";
  border-collapse:separate;
  border-spacing:4px;
}

.order_table td{
  padding: 3px 0px 3px 0px;
}

.order_table th:nth-child(1){
  width:28%;
}

.order_table td:nth-child(2){
  width:10%;
}

.order_table td:nth-child(3){
  width:15%;
}

.order_table td:nth-child(4){
  width:20%;
}

.order_table td:nth-child(5){
  width:17%;
}

.order_table td:nth-child(6){
  width:10%;
}

.normal_button{
  background: linear-gradient(#33a99ead, #26a69b,#33a99ead);
  color: #FFF;/*文字色*/
  font-size: 1em;/*文字サイズ*/
  line-height: 1;
  text-decoration: none;
  letter-spacing: 0.05em;/*字間*/
  padding: 0.2em 1em;/*ボタン内の余白*/
  border-radius: 3px;/*角の丸み*/
    cursor: pointer;
  box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 1px 5px 0 rgba(0,0,0,0.12), 0 3px 1px -2px rgba(0,0,0,0.2);/*影*/
  -webkit-tap-highlight-color: transparent;
  transition: .3s ease-out;/*変化を緩やかに*/
  width: 15%;
  height: 40px;
}

/*--------------------
アイコン
--------------------*/

.alert-circle.icon {
  margin-left: 2px;
  margin-top: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: solid 1px currentColor;
}
.alert-circle.icon:before {
  content: '';
  top: 1px;
  left: 7px;
  width: 2px;
  height: 7px;
  background-color: currentColor;
  z-index: 100;
  display: block;
  position: relative;
}
.alert-circle.icon:after {
  content: '';
  top: 4px;
  left: 7px;
  width: 2px;
  height: 2px;
  background-color: currentColor;
  z-index: 100;
  display: block;
  position: relative;
}
.alert-circle.icon.filled {
  background-color: red;
}
.alert-circle.icon.filled:before, .alert-circle.icon.filled:after {
  content: "";
  background-color: white;
}

/*--------------------
ページトップヘボタン
--------------------*/

.pagetop
    {
    position: fixed;
    bottom: 16px;
    right: 16px;
    }
 
.pagetop a
    {
    display: block;
    text-decoration: none;
    }
 
.pagetop:hover
{
    opacity: 0.85 ;
}

.arrow {
    display:  inline-block;
    color: #fff;
    text-decoration:  none;
    background-color: #66cccc;
    border-radius: 5px;
    position:  relative;
    height: 100px;
    width: 100px;
}

.arrow::before {
    content:  '';
    width: 40px;
    height: 40px;
    display:  block;
    border-top: solid 2px;
    border-right: solid 2px;
    transform: rotate(-45deg);
    position:  absolute;
    top: 10px;
    bottom:  0;
    left:  0;
    right:  0;
    margin:  auto;
}

/*--------------------
英語版 TOP
--------------------*/
.en_top_img
{
    position: relative;
    text-align: center;
    margin: 2% 0 0 0;
}

.en_top_img p
{
    position: absolute;/*絶対配置*/
    color: white;/*文字は白に*/
    font-weight: bold; /*太字に*/
    font-size: 1.2em;/*サイズ2倍*/
    font-family :Quicksand, sans-serif;/*Google Font*/
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    margin:0;
    padding:0;
    text-shadow: 1px 1px 2px black;
}

.en_top_img img
{
    width:100%;
}

.icon_size{
  width:30%;
}

.en_table{
  width:100%;
}

.en_table_nbo{
  width:100%;
}

.en_table_nbo td{
  border: 0px none;
}

.en_textbox1{
  background-color: #66cccc61;
  padding: 1% 6%;
  margin: 0 0 5% 0;
  border-radius: 10px;
}


