@charset "UTF-8";
/* CSS Document */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 500;
  overflow-x: hidden;
  line-height: 1.8;
}

/*header{
	width:1000px;
	margin:0 auto;
  @media only screen and (max-width:1000px) {
    width: 100%;
  }
}*/
a, a:visited, a:active {
  text-decoration: none;
}

a:hover {
  color: #AE913B;
  text-decoration: underline;
}

/* flexbox
=========================================== */
.flex {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

@media only screen and (max-width: 767px) {
  .flex {
    flex-direction: column;
  }
}

.flex.flex-between {
  justify-content: space-between;
}

.flex.reverse {
  flex-direction: row-reverse;
}

@media only screen and (max-width: 767px) {
  .flex.reverse {
    flex-direction: row;
  }
}

@media only screen and (max-width: 767px) {
  .spFlexRow {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}

/*1:header
-------------------------------------------*/
.header {
  position: relative;
  background-color: #fff;
  font-family: Meiryo, メイリオ, sans-serif;
}

.header .container {
  max-width: 1140px;
  margin: auto;
}

@media screen and (max-width: 768px) {
  .header {
    background: #fff;
    height: 40px;
  }
}

@media screen and (max-width: 768px) {
  .header .container {
    padding: 0;
  }
}

@media screen and (max-width: 768px) {
  .header .row {
    position: relative;
    padding: 0;
    margin: 0;
  }
}

@media screen and (max-width: 768px) {
  .home .header {
    position: absolute;
    background: none;
    width: 100%;
  }
}

.home #content {
  position: relative;
  top: 0;
}

.header_row {
  display: flex;
  justify-content: space-between;
}

.header_logobox {
  padding-top: 20px;
}

@media screen and (max-width: 768px) {
  .header_logobox {
    position: absolute;
    z-index: 1000;
    padding-top: 1.5vw;
    padding-left: 3vw;
    padding-bottom: 1.5vw;
  }
}

@media screen and (max-width: 768px) {
  .header_logo {
    width: 60px;
  }
}

.header_menu00 {
  z-index: 999;
  min-width: 782px;
  height: 100px;
  padding-left: 4.5%;
  background: #fff;
  -moz-border-bottom-left-radius: 40px;
  border-bottom-left-radius: 40px;
  font-weight: bold;
}

@media screen and (max-width: 992px) {
  .header_menu00 {
    min-width: 540px;
    width: 586px;
    padding-left: 3.2%;
    border-bottom-left-radius: 30px;
  }
}

@media screen and (max-width: 768px) {
  .header_menu00 {
    position: fixed;
    /* z-index: 46; */
    height: 0;
    width: 100%;
    min-width: 0;
    padding: 0;
    z-index: 9999;
  }
}

.header_menu00 a {
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .header_menu01 {
    display: none;
  }
}

.header_menu01_list {
  width: 100%;
  height: 40px;
  display: table;
  font-size: 12px;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
}

.header_menu01_list li {
  display: table-cell;
  vertical-align: middle;
  border-right: 1px solid #686b75;
}

.header_menu01_list li:last-child {
  border-right: none;
}

.header_menu01_list .menu02 {
  padding: 8px;
  background: #232e4d;
}

.header_menu01_list .menu02 .menu02_01 {
  width: 100%;
  display: table;
  margin: 0;
}

.header_menu01_list .menu02 .menu02_01 li {
  width: 33%;
  text-align: center;
}

.header_menu01_list .menu02 a {
  color: #fff;
}

.header_menu01_list .menu01 {
  font-size: 16px;
  line-height: 16px;
}

@media screen and (max-width: 992px) {
  .header_menu01_list .menu01 {
    font-size: 14px;
  }
}

.header_menu01_list .menu03 {
  padding: 8px;
  background: #07b1bb;
}

.header_menu01_list .menu03 a {
  color: #fff;
}

.header_menu02_list {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 12px;
}

.header_menu02_list > li > a {
  line-height: 48px;
  padding: 0 0.5em;
}

.header_menu02_list > li:hover {
  transition: all .5s;
}

.header_menu02_list > li:hover > a {
  background: #232e4d;
  color: #fff;
}

.header_menu02_list a {
  display: inline-block;
}

ul.menu__second-level {
  visibility: hidden;
  opacity: 0;
  z-index: 1;
}

ul.menu__third-level {
  visibility: hidden;
  opacity: 0;
}

ul.menu__fourth-level {
  visibility: hidden;
  opacity: 0;
}

li.menu__mega ul.menu__second-level {
  position: absolute;
  top: 30px;
  left: 0;
  box-sizing: border-box;
  width: 100%;
  padding: 20px 2%;
  background: #fff;
  transition: all .2s ease;
}

li.menu__mega:hover ul.menu__second-level,
ul.menu__second-level:hover {
  top: 50px;
  visibility: visible;
  opacity: 1;
}

li.menu__mega ul.menu__second-level > li {
  float: left;
  width: 32%;
  border: none;
}

li.menu__mega ul.menu__second-level > li:nth-child(3n + 2) {
  margin: 0 1%;
}

.header_sp_submenu dd {
  display: none;
}

.headersp_link01 {
  color: #fff;
  border-bottom: 1px solid #fff;
}

.headersp_link01 a {
  color: #fff;
}

.headersp_link01sub {
  border-top: 1px solid #fff;
}

.headersp_link01sub dt {
  padding: 1em 0;
}

.headersp_link01sub dd {
  display: none;
  padding-left: 1em;
}

.headersp_link01sub dd > ul > li {
  padding: 0.5em 0;
}

.headersp_link01sub dd > ul > li:first-child {
  padding: 0em 0 0.5em;
}

.clone-nav {
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  width: 100%;
  transition: .3s;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  background: #fff !important;
  display: none;
}

.is-show {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.logo {
  padding: 8px 10px 0 10px;
}

@media only screen and (max-width: 1000px) {
  .logo {
    width: 20%;
  }
}

@media only screen and (max-width: 1000px) and (max-width: 767px) {
  .logo {
    padding-top: 16px;
  }
}

@media only screen and (max-width: 1000px) and (max-width: 767px) {
  .logo img {
    vertical-align: middle;
    width: 46px;
  }
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––
Screen style's
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.menu-container {
  width: 100%;
  margin: 0 auto;
}

.menu-mobile {
  display: none;
  padding: 8px 12px;
}

.menu-mobile:after {
  content: "\f394";
  font-family: "Ionicons";
  font-size: 2.0rem;
  padding: 0;
  float: right;
  position: relative;
  top: 4px;
  -webkit-transform: translateY(-25%);
  transform: translateY(-25%);
  color: #232e4d;
}

.home .menu-mobile {
  width: auto;
  background: #fff;
}

.home .menu-mobile:after {
  color: #232e4d;
}

.clone-nav .menu-mobile:after {
  color: #232e4d;
}

.menu-dropdown-icon:before {
  content: "\f489";
  font-family: "Ionicons";
  display: none;
  cursor: pointer;
  float: right;
  padding: 1.0em 1.5em;
  background: #fff;
  color: #333;
  position: absolute;
  right: 0;
  font-size: 12px;
}

.menu {
  font-size: 14px;
}

.menu > ul {
  margin: 0 auto;
  width: 100%;
  list-style: none;
  padding: 0;
  position: relative;
  /* IF .menu position=relative -> ul = container width, ELSE ul = 100% width */
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
}

.menu > ul:before,
.menu > ul:after {
  content: "";
  display: table;
  clear: both;
}

.menu > ul > li {
  padding: 0;
  margin: 0;
  cursor: pointer;
}

.menu > ul > li a,
.menu > ul > li span {
  text-decoration: none;
  padding: 1.4em 0.8em;
  display: block;
  font-size: 14px;
}

@media screen and (max-width: 992px) {
  .menu > ul > li a,
  .menu > ul > li span {
    padding: 1.6em 0.2em;
    font-size: 12px;
  }
}

.menu > ul > li:hover {
  background: #f0f0f0;
}

.menu > ul > li > ul {
  display: none;
  width: 100%;
  background: #f0f0f0;
  padding: 20px;
  position: absolute;
  z-index: 99;
  left: 0;
  margin: 0;
  list-style: none;
  box-sizing: border-box;
}

.menu > ul > li > ul:before,
.menu > ul > li > ul:after {
  content: "";
  display: table;
}

.menu > ul > li > ul:after {
  clear: both;
}

.menu > ul > li > ul > li {
  margin: 0;
  padding-bottom: 0;
  list-style: none;
  width: 25%;
  background: none;
  float: left;
}

.menu > ul > li > ul > li a {
  color: #777;
  padding: .2em 0;
  width: auto;
  display: block;
  border-bottom: 1px solid #ccc;
}

.menu > ul > li > ul > li > ul {
  display: block;
  padding: 0;
  margin: 10px 0 0;
  list-style: none;
  box-sizing: border-box;
}

.menu > ul > li > ul > li > ul:before,
.menu > ul > li > ul > li > ul:after {
  content: "";
  display: table;
}

.menu > ul > li > ul > li > ul:after {
  clear: both;
}

.menu > ul > li > ul > li > ul > li {
  float: left;
  width: 100%;
  padding: 10px 0;
  margin: 0;
  font-size: .8em;
}

.menu > ul > li > ul > li > ul > li a {
  border: 0;
}

.menu > ul > li > ul.normal-sub {
  width: auto;
  min-width: 300px;
  left: auto;
  right: auto;
  padding: 10px 20px;
}

@media screen and (max-width: 768px) {
  .menu > ul > li > ul.normal-sub {
    padding: 0px 20px;
  }
}

.menu > ul > li > ul.normal-sub > li {
  float: none;
  width: auto;
}

.menu > ul > li > ul.normal-sub > li a {
  border: 0;
  padding: 1em 0;
}

.menu .toggle {
  opacity: 1.0;
  display: block;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––
Mobile style's
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@media screen and (max-width: 768px) {
  .menu-container {
    width: 100%;
    margin-top: 40px;
  }
  .menu-mobile {
    display: block;
    width: 20%;
    height: 40px;
    cursor: pointer;
    position: fixed;
    right: 0;
    top: 0;
  }
  .menu-dropdown-icon:before {
    display: block;
  }
  .menu > ul {
    display: none;
  }
  .menu > ul > li {
    width: 100%;
    float: none;
    display: block;
  }
  .menu > ul > li a,
  .menu > ul > li span {
    padding: 1.0em 1.5em;
    width: 100%;
    display: block;
  }
  .menu > ul > li > ul {
    position: relative;
  }
  .menu > ul > li > ul.normal-sub {
    width: 100%;
  }
  .menu > ul > li > ul > li {
    float: none;
    width: 100%;
    margin-top: 2px;
  }
  .menu > ul > li > ul > li:first-child {
    margin: 0;
  }
  .menu > ul > li > ul > li > ul {
    position: relative;
  }
  .menu > ul > li > ul > li > ul > li {
    float: none;
  }
  .menu .show-on-mobile {
    clear: both;
    display: block;
    background: #f0f0f0;
    z-index: 9999;
  }
}

.tel {
  margin-right: 0px;
  padding-top: 8px;
}

.tel img {
  vertical-align: bottom;
}

.tel p {
  font-size: 12px;
  margin-right: 15px;
}

@media only screen and (max-width: 601px) {
  .tel {
    display: none;
  }
}

.telMailBox {
  justify-content: flex-end;
}

.tbtn {
  margin-left: 20px;
}

.tbtn a {
  display: block;
  background-color: #07b1bb;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  padding: 24px 3em;
  transition: .5s;
  line-height: 100%;
}

@media only screen and (max-width: 767px) {
  .tbtn a {
    padding-left: 1.5em;
    padding-right: 1.5em;
  }
}

.tbtn a:hover {
  opacity: 0.7;
}

.tbtn a span {
  display: inline-block;
  position: relative;
  padding-left: 35px;
}

@media only screen and (max-width: 767px) {
  .tbtn a span {
    padding-left: 22px;
  }
}

.tbtn a span:before {
  content: "";
  display: block;
  width: 29px;
  height: 21px;
  background: url(../image/icon_mail.png) no-repeat 0 0;
  position: absolute;
  left: 0;
  top: -3px;
}

@media only screen and (max-width: 767px) {
  .tbtn a span:before {
    width: 15px;
    height: 11px;
    background-size: 15px auto;
    top: 3px;
  }
}

.archive-select {
  width: 100%;
  padding: 8px 5px;
  border: 1px #E7E7E7 solid;
}

.bnrSide a {
  position: relative;
  display: block;
}

.bnrSide a span.btn {
  display: inline-block;
  background-color: #07b1bb;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  position: absolute;
  bottom: 110px;
  left: 0;
  right: 0;
  margin: auto;
  padding: 3px 0;
  width: 80%;
  text-align: center;
  border-radius: 3px;
  box-shadow: 0px 3px 0 #0d7a80;
  transition: 0.2s all ease 0s;
}

.bnrSide a:hover span.btn {
  box-shadow: none;
  transform: translate3d(0, 3px, 0);
}

.main {
  width: 100%;
  background-color: #e7e8e9;
  background-image: url(../image/main_image.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  text-align: center;
}

.main .in {
  position: relative;
  height: 350px;
}

@media only screen and (max-width: 649px) {
  .main .in {
    height: 250px;
  }
}

.main img {
  width: 100%;
  opacity: 0;
}

.main h1 {
  font-size: 18px;
  text-align: left;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

.main h1 p.catch01 {
  font-size: 18px;
  font-weight: 500;
}

@media only screen and (max-width: 759px) {
  .main h1 p.catch01 {
    font-size: 15px;
  }
}

@media only screen and (max-width: 549px) {
  .main h1 p.catch01 {
    font-size: 12px;
  }
}

.main h1 p.catch02 span.name {
  font-size: 48px;
  font-weight: 500;
}

@media only screen and (max-width: 759px) {
  .main h1 p.catch02 span.name {
    font-size: 32px;
  }
}

.main h1 p.catch02 span.title {
  color: #ab9037;
  font-weight: bold;
  font-size: 30px;
}

@media only screen and (max-width: 759px) {
  .main h1 p.catch02 span.title {
    font-size: 22px;
  }
}

@media only screen and (max-width: 549px) {
  .main h1 p.catch02 span.title {
    display: block;
    line-height: 100%;
    margin-bottom: 10px;
  }
}

.main h1 p.en {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  color: #b3b6bd;
  font-weight: normal;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 759px) {
  .main h1 p.en {
    font-size: 12px;
  }
}

@media only screen and (max-width: 1023px) {
  .main h1 {
    padding-left: 15px;
  }
}

.main .nakajima {
  position: absolute;
  right: -20px;
  bottom: 0;
}

@media only screen and (max-width: 649px) {
  .main .nakajima {
    text-align: right;
  }
}

.main .nakajima img {
  opacity: 1;
  vertical-align: bottom;
}

@media only screen and (max-width: 1023px) {
  .main .nakajima img {
    width: 70%;
  }
}

@media only screen and (max-width: 449px) {
  .main .nakajima img {
    width: 45%;
  }
}

.in {
  width: 1000px;
  margin: 0 auto;
}

@media only screen and (max-width: 1200px) {
  .in {
    width: 100%;
    max-width: 1000px;
  }
}

@media only screen and (max-width: 1023px) {
  .in {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.main_cont {
  width: 62%;
}

@media only screen and (max-width: 959px) {
  .main_cont {
    width: 100%;
  }
}

.side {
  max-width: 312px;
  width: 35%;
  color: #333;
}

@media only screen and (max-width: 959px) {
  .side {
    width: 100%;
    margin: auto;
    margin-top: 3em;
  }
}

.sideIn {
  padding: 0 20px;
  /*
  h3{
    background-image: url(../image/icon_h3.png);
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 21px auto;
    border-bottom: 1px #1e2e53 solid;
    color: #1e2e53;
    padding: 5px 0 8px 30px;
    margin-bottom: 10px;
  }
  */
}

.sideIn ul li a {
  font-size: 15px;
  text-decoration: underline;
}

.date {
  font-size: 14px;
  margin-bottom: 5px;
}

h1 {
  font-weight: normal;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  display: table;
}

h1 a {
  color: #1e2e53 !important;
}

@media only screen and (max-width: 767px) {
  h1 a {
    font-size: 22px;
  }
}

h3 {
  font-size: 14px;
  margin-top: 20px;
  margin-bottom: 5px;
}

.lineBox {
  background-image: url("../image/line.gif");
  background-repeat: repeat-x;
  background-position: left bottom;
  padding-bottom: 2em;
}

.bun {
  font-size: 15px;
  color: #333;
  line-height: 180%;
}

.bun .more {
  text-align: right;
  margin-top: 20px;
}

.bun .more a {
  display: inline-block;
  color: #07b1bb;
  text-decoration: underline;
  position: relative;
  font-weight: bold;
  padding-right: 15px;
}

.bun .more a:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 7px;
  border-color: transparent transparent transparent #07b2bb;
  position: absolute;
  right: 0;
  top: 9px;
}

.bun img {
  max-width: 100%;
}

.kensaku_input {
  border-radius: 0px;
  background: none repeat scroll 0% 0% transparent;
  box-shadow: none;
  display: block;
  float: left;
  margin: 0px auto;
  padding: 0px 5px;
  vertical-align: top;
  width: 80%;
  height: 28px;
  border: 1px solid #E7E7E7;
  box-sizing: border-box;
  font-size: 13px;
  outline: 0px none;
  float: left;
}

.kensaku_btn {
  padding: 1px 10px 0 !important;
  text-shadow: 0;
  border-radius: 0;
  background: #666;
  color: #fff;
  cursor: pointer;
  border: medium none;
  text-shadow: none;
  float: right;
  font-size: 13px;
  height: 28px;
}

.kensaku_btn button:hover {
  background: #52de4c;
}

#article_area ul {
  list-style: none;
  padding: 0;
  font-size: 12px;
}

#article_area li {
  margin-bottom: 10px;
}

.flogo {
  float: left;
  width: 250px;
}

@media only screen and (max-width: 600px) {
  .flogo {
    width: 60px;
  }
  .flogo img {
    width: 52px;
  }
}

.free {
  height: 17px;
}

.free img {
  width: 212px;
}

@media only screen and (max-width: 1000px) {
  .free {
    margin-bottom: 10px;
  }
}

/*2:footer
-------------------------------------------*/
/*---------------------------------------------
 .footer:フッター
 -----------------------------------------------*/
.footer {
  padding: 40px 0;
  color: #fff;
  background: #232e4d;
  font-size: 14px;
  font-family: Meiryo, メイリオ, sans-serif !important;
  margin-top: 3em;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .footer {
    padding: 6vw 0 0 0;
  }
}

.footer .row {
  position: relative;
}

.footer .row > div {
  padding: 0 20px;
}

.footer .row > .box01 {
  padding: 0 30px 0;
}

@media screen and (max-width: 768px) {
  .footer .row > .box01 {
    padding: 0 15%;
    margin: 0 0;
  }
  .footer .row > div {
    width: 100%;
  }
}

.footer .ft_logo {
  position: absolute;
  bottom: 0;
  left: 0;
}

.utc {
  text-align: center;
}

.utc img {
  width: 133px;
}

@media screen and (max-width: 768px) {
  .footer .ft_logo {
    position: static;
    padding-top: 5vw;
    text-align: center;
  }
  .footer .ft_logo img {
    width: 100px;
  }
  footer .seikyu1 {
    margin-top: 20px;
  }
}

.footer .tel span {
  display: block;
  text-align: center;
  border: 1px solid #fff;
  margin-bottom: 10px;
  line-height: 50px;
}

.footer .seikyu a {
  display: block;
  background: #07b1bb;
  color: #fff;
  line-height: 50px;
  text-align: center;
  margin-bottom: 10px;
}

.footer a {
  color: #fff;
}

.footer .f_col {
  width: 300px;
}

.footer div .company {
  margin-bottom: 30px;
}

.footer div .company dt {
  margin-bottom: 0.4em;
}

.footer div .company:last-child {
  margin-bottom: 0px;
}

.footer_menu02 {
  width: 100%;
  text-align: center;
  border-right: none;
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .footer_menu02 {
    margin-top: 40px;
  }
}

.footer_menu02 li {
  display: inline-block;
  border-right: solid 1px #fff;
  padding: 0 2em;
}

@media screen and (max-width: 768px) {
  .footer_menu02 li {
    display: block;
    border-bottom: 1px solid #232e4d;
    background: #eaedf4;
    margin-bottom: 0;
  }
  .footer_menu02 li a {
    display: block;
    padding: 0.8em 0;
    color: #232e4d;
    font-size: 14px;
  }
  .row area_and_fb > .flex {
    width: 100%;
  }
}

.footer_menu02 li:last-child {
  border-right: none;
}

@media screen and (max-width: 768px) {
  .footer_menu02 li:last-child {
    border-bottom: none;
  }
}

.footer .flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer .flex .foffice_addr,
.footer .flex .foffice_addr2 {
  width: 48.5%;
  margin-bottom: 10px;
}

.footer .flex .foffice_addr p,
.footer .flex .foffice_addr2 p {
  color: #ddd;
  font-size: 11px;
}

.footer .area p.white {
  color: #fff;
  font-weight: bold;
  font-size: 12px;
}

.footer .area_and_fb {
  margin: 2em 0;
}

.footer .area,
.footer .facebook {
  width: 48%;
  overflow: hidden;
}

@media screen and (max-width: 1024px) {
  .footer {
    padding-bottom: 51px;
  }
}

@media screen and (max-width: 767px) {
  .footer .area {
    margin-bottom: 1.5em;
  }
  .footer .area,
  .footer .facebook {
    width: 100%;
  }
  .footer .flex .foffice_addr,
  .footer .flex .foffice_addr2 {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .footer .facebook iframe {
    width: 100% !important;
  }
  .footer .facebook .fb-page > span {
    width: 100% !important;
  }
}

.white_footer_bg{
  background-color: #fff;
  padding-top: 60px;
}
@media screen and (max-width: 768px) {
  .white_footer_bg{
    padding-top: 0;
  }
}

.arcicle_bottom {
  margin: 0 10px;
  float: left;
}

.arcicle_bottom2 {
  margin: 0px;
  float: left;
}

.nav-previous {
  float: left;
  width: 50%;
  font-size: 14px;
}

.nav-next {
  font-size: 14px;
  float: right;
  text-align: right;
  width: 50%;
}

.midasi {
  padding: 10px;
  border: 1px solid #BBB;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
}

#fixeBlock {
  display: none !important;
}

@media screen and (max-width: 768px) {
  #fixeBlock {
    display: flex !important;
  }
}

#fixeBlock {
  background-color: #232e4d;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  border-top: 1px #fff solid;
  justify-content: space-between;
  z-index: 100;
}

#fixeBlock a {
  display: block;
  width: 48.5%;
  background-color: #07b1bb;
  color: #fff;
  padding: 10px 10px;
  font-size: 14px;
  text-align: center;
}

.pagetop {
  position: fixed;
  bottom: -100px;
  right: 50px;
}

@media only screen and (max-width: 767px) {
  .pagetop {
    right: 0px;
    bottom: 0px !important;
  }
  .pagetop img {
    width: 41px;
  }
}

.pagetop a {
  display: block;
  width: 82px;
  height: 82px;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .pagetop a {
    width: 41px;
    height: 41px;
  }
}

/* @override http://www.bravenewcode.com/wordpress/wp-content/plugins/wptouch/themes/core/core-css/wptouch-switch-link.css */
/* WPtouch Switch Link CSS */
/* This CSS loads on your regular site theme when it is viewed on our supported devices, and doesn't affect your regular css */
/* @group Toggle Button */
#switch {
  margin: 50px auto;
  background-color: #fff;
  border: 1px solid #b1b1b1;
  padding: 12px 8px;
  position: relative;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  box-shadow: rgba(255, 255, 255, 0.8) 0px 1px 0px;
  color: #333;
  text-shadow: none;
  width: 800px;
  font: bold 200% "Helvetica Neue", Helvetica, Arial, sans-serif;
  height: 50px;
}

#switch a {
  text-decoration: none;
}

/*#switch div {
	border: 1px solid #b1b1b1;

	-webkit-border-radius: 24px;
	-moz-border-radius: 24px;
	border-radius: 24px;

	-webkit-background-clip: padding-box;
	-moz-background-clip: padding-box;
	background-clip: padding-box;
	position: absolute;
	top: 8px;
	right: 8px;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-touch-callout: none;

	background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#d3d3d3), color-stop(.5, #eee), color-stop(.51, #e9e9e9));
	background: -webkit-linear-gradient(top, #fff, #d3d3d3, #eee .5, #e9e9e9 .51);
	background: -moz-linear-gradient(top, #fff, #d3d3d3, #eee .5, #e9e9e9 .51);
	background: -o-linear-gradient(top, #fff, #d3d3d3, #eee .5, #e9e9e9 .51);
	background: -ms-linear-gradient(top, #fff, #d3d3d3, #eee .5, #e9e9e9 .51);
	background: linear-gradient(top, #fff, #d3d3d3, #eee .5, #e9e9e9 .51);
	color: #333;
	text-shadow: #fff 0 1px 0;
	margin: 0;
	padding: 0;
}*/
#switch-on {
  padding: 4px 8px 4px 12px;
  float: left;
  display: block;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding-box;
  background-clip: padding-box;
  border-right: 1px solid #b1b1b1;
}

#switch-off {
  border-top-right-radius: 18px;
  border-bottom-right-radius: 18px;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding-box;
  background-clip: padding-box;
  padding: 4px 12px 4px 8px;
  display: block;
  float: right;
  border-left: 1px solid #b1b1b1;
}

@media only screen and (max-width: 767px) {
  body {
    overflow-x: hidden;
  }
}

/*#switch .active {
	background: -webkit-gradient(linear, left bottom, left top, from(#fff), to(#d3d3d3), color-stop(.5, #eee), color-stop(.51, #e9e9e9));
	background: -webkit-linear-gradient(,, #fff, #d3d3d3, #eee .5, #e9e9e9 .51);
	background: -moz-linear-gradient(,, #fff, #d3d3d3, #eee .5, #e9e9e9 .51);
	background: -o-linear-gradient(,, #fff, #d3d3d3, #eee .5, #e9e9e9 .51);
	background: -ms-linear-gradient(,, #fff, #d3d3d3, #eee .5, #e9e9e9 .51);
	background: linear-gradient(,, #fff, #d3d3d3, #eee .5, #e9e9e9 .51);
	text-shadow: #FFF 0 1px 0;

	-webkit-box-shadow: inset rgba(0,0,0,.4) 0px 0px 7px;
	-moz-box-shadow: inset rgba(0,0,0,.4) 0px 0px 7px;
	box-shadow: inset rgba(0,0,0,.4) 0px 0px 7px;
	border-style: none;
	color: #666;
}*/
/* @end */
/*アパケン用style*/
* {
  box-sizing: border-box;
}

/*ヘッダー*/
#main_menu_bar {
  position: relative;
  width: 100%;
  height: 56px;
  margin-top: 77px;
  background: #07b1bb;
}

@media screen and (max-width:768px){
  #main_menu_bar{
    margin-top: 11px;
  }
}

#main_menu_list {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  height: 56px;
  display: grid;
  display: -ms-grid;
  max-width: 1140px;
  width: 100%;
  margin: auto;
  color: #fff;
}

#main_menu_list > li {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 56px;
  font-size: 14px;
  font-weight: 900;
  margin: 0;
}

.main_menu_bar_category {
  display: inline-block;
  height: 100%;
  margin-right: 30px;
  font-size: 14px;
  font-weight: 900;
}

.main_menu_bar_category > a {
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
}

#main_menu_home_icon {
  width: 18px;
  height: auto;
  opacity: 1;
  vertical-align: baseline;
}

#main_menu_item_search {
  position: relative;
  width: 100%;
}

.item_search_input {
  position: absolute;
  left: 0;
  top: 10px;
  padding: 0 10px;
  width: 100%;
  height: 35px;
  border-radius: 17.5px;
  border: none;
  background: #fff;
}

.item_search_button {
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
  height: 100%;
  border: none;
  background: url(../image/search_button_icon.png) center center no-repeat;
  background-size: 15px;
}

/*メインページ*/
#special_article_area {
  display: grid;
  display: -ms-grid;
  grid-template-columns: 1fr 280px;
  -ms-grid-columns: 1fr 280px;
  max-width: 1140px;
  width: 100%;
  height: 500px;
  margin: 20px auto;
}

#special_article_item_first {
  position: relative;
  margin-right: 20px;
  -ms-grid-column: 1;
  height: 500px;
}

#special_article_item_first a {
  display: contents;
}

#special_article_item_first .special_article_thumbnail_image {
  position: absolute !important;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: 200ms;
}

#special_article_item_first .special_article_thumbnail_image:hover {
  opacity: 0.75;
}

#special_article_item_first .special_article_category {
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  padding: 5px 15px;
  font-size: 14px;
  color: #fff;
}

#special_article_item_first .special_article_description {
  display: grid;
  display: -ms-grid;
  grid-template-rows: 3fr 2fr;
  -ms-grid-rows: 3fr 2fr;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 15%;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
}

#special_article_item_first .special_article_title {
  padding-left: 40px;
  display: flex;
  align-items: center;
  font-size: 22px;
  font-weight: 900;
  -ms-grid-row: 1;
}

#special_article_item_first .special_article_info {
  padding-left: 40px;
  display: flex;
  align-items: center;
  font-size: 12px;
  -ms-grid-row: 2;
  font-family: 'Lato', sans-serif;
  letter-spacing: 0.5px;
}

#special_article_item_list {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  -ms-grid-column: 2;
}

.special_article_item {
  position: relative;
  width: 100%;
  height: 150px;
  margin: 0;
}

.special_article_item .special_article_thumbnail_image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: 200ms;
}

.special_article_item .special_article_thumbnail_image:hover {
  opacity: 0.75;
}

.special_article_item .special_article_category {
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  padding: 5px 15px;
  font-size: 14px;
  color: #fff;
}

.special_article_item .special_article_description {
  display: grid;
  display: -ms-grid;
  grid-template-rows: 3fr 2fr;
  -ms-grid-rows: 3fr 2fr;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 38%;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
}

@media screen and (max-width: 768px) {
  .special_article_item .special_article_description {
    height: auto;
    display: block;
  }
}

.special_article_item .special_article_title {
  padding: 8px 10px 5px 10px;
  font-size: 14px;
  font-weight: 900;
  overflow: hidden;
  -ms-grid-row: 1;
}

.special_article_item .special_article_info {
  padding: 0px 10px 10px;
  display: flex;
  align-items: center;
  font-size: 10px;
  -ms-grid-row: 2;
  font-family: 'Lato', sans-serif;
  letter-spacing: 0.5px;
}

#article_area_bg {
  background: #ffffff;
}

#article_area {
  padding-top: 50px;
  display: grid;
  display: -ms-grid;
  grid-template-columns: 1fr 280px;
  -ms-grid-columns: 1fr 280px;
  max-width: 1140px;
  width: 100%;
  margin: auto;
}

#article_list {
  margin-right: 20px;
  background: #fff;
  -ms-grid-column: 1;
}

.article_list_item {
  width: 100%;
  background: #fff;
  border-bottom: solid 1px #f2f2f2;
  margin: 0;
}

.first_item_true .article_list_thumbnail_box {
  position: relative;
  width: 100%;
}

.first_item_true .article_list_thumbnail_image {
  width: 100%;
  height: auto;
  transition: 200ms;
}

.first_item_true .article_list_thumbnail_image:hover {
  opacity: 0.75;
}

.first_item_true .article_list_thumbnail_category {
  padding: 5px 20px;
  position: absolute;
  left: 0;
  top: 0;
  color: #fff;
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  .first_item_true .article_list_thumbnail_category {
    padding: 3px 6px;
    font-size: 10px;
  }
}

.first_item_true .article_list_description_box {
  width: 100%;
  padding: 40px;
}

.first_item_true .article_list_description_info {
  width: 100%;
  font-size: 12px;
  font-family: 'Lato', sans-serif;
}

.first_item_true .description_info_date {
  padding-right: 20px;
}

.first_item_true .description_info_author {
  padding: 0 20px;
}

.first_item_true .description_info_pv_icon {
  padding: 0 10px;
}

.first_item_true .article_list_description_title {
  line-height: 50px;
  font-size: 24px;
}

.first_item_true .article_list_description_text {
  position: relative;
  font-size: 16px;
  padding-bottom: 70px;
}

.first_item_true .article_list_description_link {
  position: absolute;
  right: 0;
  bottom: 35px;
  color: #07b1bb !important;
  text-decoration: underline !important;
}

.first_item_true .article_list_description_link:hover {
  color: #AE913B !important;
}

.first_item_false {
  overflow: hidden;
  display: grid;
  display: -ms-grid;
  grid-template-columns: 1fr 2fr;
  -ms-grid-columns: 1fr 2fr;
  padding: 50px 0;
  height: 320px;
}

.first_item_false .article_list_thumbnail_box {
  position: relative;
  width: 100%;
  height: 100%;
  -ms-grid-column: 1;
}

.first_item_false .article_list_thumbnail_image {
  width: 100%;
  height: 220px;
  transition: 200ms;
}

.first_item_false .article_list_thumbnail_image:hover {
  opacity: 0.75;
}

.first_item_false .article_list_thumbnail_category {
  padding: 5px 20px;
  position: absolute;
  left: 0;
  top: 0;
  color: #fff;
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  .first_item_false .article_list_thumbnail_category {
    padding: 3px 6px;
    font-size: 10px;
  }
}

.first_item_false .article_list_description_box {
  position: relative;
  display: grid;
  display: -ms-grid;
  grid-template-rows: 1fr 2fr 7fr;
  -ms-grid-rows: 1fr 2fr 7fr;
  width: 100%;
  padding: 0 40px;
  overflow-y: hidden;
  -ms-grid-column: 2;
}

@media screen and (max-width: 768px) {
  .first_item_false .article_list_description_box {
    display: block;
  }
}

.first_item_false .article_list_description_info {
  width: 100%;
  font-size: 12px;
  font-family: 'Lato', sans-serif;
  -ms-grid-column: 1;
  -ms-grid-row: 1;
}

@media screen and (max-width: 768px) {
  .first_item_false .article_list_description_info {
    margin-bottom: 8px;
  }
}

.first_item_false .description_info_date {
  padding-right: 20px;
}

.first_item_false .description_info_author {
  padding: 0 20px;
}

.first_item_false .description_info_pv_icon {
  padding: 0 10px;
}

.first_item_false .article_list_description_title {
  font-size: 24px;
  -ms-grid-column: 1;
  -ms-grid-row: 2;
}

@media screen and (max-width: 768px) {
  .first_item_false .article_list_description_title {
    font-size: 14px;
  }
}

.first_item_false .article_list_description_text {
  font-size: 16px;
  height: 160px;
  -ms-grid-column: 1;
  -ms-grid-row: 3;
}

.first_item_false .article_list_description_link {
  margin-left: 20px;
  color: #07b1bb !important;
  text-decoration: underline !important;
}

.first_item_false .article_list_description_link:hover {
  color: #AE913B !important;
}

/*シングルページ*/
#single_header {
  position: relative;
}

#single_header_thumbnail {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

#single_header_category {
  display: inline-block;
  padding: 5px 20px;
  margin-bottom: 20px;
  color: #fff;
  font-size: 14px;
}

#single_content {
  padding: 40px;
  background: #fff;
}

#single_content_info {
  width: 100%;
  font-size: 12px;
  font-family: 'Lato', sans-serif;
  padding-left: 20px;
}

#single_info_date {
  padding-right: 20px;
}

#single_info_author {
  padding: 0 20px;
}

#single_info_pv_icon {
  margin-bottom: 6px;
}

#single_content_title {
  line-height: 70px;
  font-size: 24px;
  padding-left: 20px;
}

#ez-toc-container {
  border: solid 1px #1e2e53;
  color: #07b1bb;
  padding-bottom: 25px;
  margin: 25px 0;
  text-decoration: underline;
  font-size: 15px;
}

#ez-toc-container a {
  color: #07b1bb;
}

#ez-toc-container a:hover {
  opacity: 0.8;
}

#ez-toc-container p {
  padding: 12.5px;
}

#ez-toc-container ul {
  margin: 0 0 2% 5%;
  font-size: 16px;
  list-style-type: disc;
}

@media screen and (max-width: 768px) {
  #ez-toc-container ul {
    margin-left: 10%;
  }
}

#ez-toc-container .toc_number {
  font-weight: 900;
}

#ez-toc-container > ul,
#ez-toc-container > ul > li > ul {
  list-style-type: decimal;
}

#single_content_text h1 {
  font-size: 24px;
  font-weight: 900;
  color: #000 !important;
}

#single_content_text h2 {
  margin: 60px 0 20px;
  padding: 0 30px;
  height: 60px;
  font-size: 22px;
  font-weight: 900;
  background-color: #1e2e53;
  background-image: url(../image/h2_icon.png);
  background-size: 60px 60px;
  background-repeat: no-repeat;
  color: #fff;
  line-height: 60px;
}

#single_content_text h3 {
  position: relative;
  margin: 40px 0 20px;
  padding: 0 15px;
  font-size: 20px;
  font-weight: 900;
  color: #1e2e53;
}

#single_content_text h3:after {
  position: absolute;
  left: 0;
  bottom: -10px;
  content: "";
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #07b1bb 100px, #07b1bb 101px, #1e2e53 102px, #1e2e53);
}

#single_content_text h4 {
  position: relative;
  margin: 40px 0 20px;
  padding: 0 50px;
  font-size: 16px;
  font-weight: 900;
  height: 40px;
  line-height: 40px;
  color: #1e2e53;
  background: #e8eaed;
}

#single_content_text h4:before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  background-color: #1e2e53;
  background-image: url(../image/h4_icon.png);
  background-size: 20px 20px;
  background-position: center;
  background-repeat: no-repeat;
}

#single_content_text p {
  margin: 0 0 20px 0 !important;
}

#single_content_text p > img {
  max-width: 100%;
  height: auto;
}

#single_content_text ul {
  font-size: medium;
}

#single_content_text table{
  border-collapse: collapse;
}

#single_content_text table th,
#single_content_text table td{
  padding: 5px 10px;
}

#single_content_text table th{
  background-color: #1e2e53;
  border: 1px solid #1e2e53;
  color: white;
}

#single_content_text table td{
  border: 1px solid #1e2e53;
}

#single_content_text table td p{
  margin-bottom: 0px!important;
}

#single_content_footer {
  margin-top: 100px;
  padding: 0 40px;
  height: 60px;
  line-height: 60px;
  background: #f8f8f8;
}

@media screen and (max-width: 768px) {
  #single_content_text table th,
  #single_content_text table td{ 
    font-size: 14px;
    padding: 5px;
  }
}

#single_page_nav {
  display: grid;
  display: -ms-grid;
  grid-template-columns: 1fr 1fr;
  -ms-grid-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  -ms-grid-rows: 1fr;
  border-top: solid 1px #eee;
  height: 160px;
  background: #fff;
}

#prev_single_nav {
  display: grid;
  display: -ms-grid;
  grid-template-columns: 40px 100px 1fr;
  -ms-grid-columns: 40px 100px 1fr;
  border-right: solid 1px #eee;
  height: 160px;
}

#prev_single_nav .single_page_nav_arrow {
  -ms-grid-column: 1;
}

#prev_single_nav .single_page_nav_title {
  -ms-grid-column: 3;
}

#next_single_nav {
  display: grid;
  display: -ms-grid;
  grid-template-columns: 1fr 100px 40px;
  -ms-grid-columns: 1fr 100px 40px;
  height: 160px;
}

#next_single_nav .single_page_nav_arrow {
  -ms-grid-column: 3;
}

#next_single_nav .single_page_nav_title {
  -ms-grid-column: 1;
}

.single_page_nav_arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 160px;
}

.single_page_nav_arrow_div {
  height: 20px;
  width: 20px;
  border-top: solid 2px #898989;
  border-left: solid 2px #898989;
}

.single_page_nav_thumbnail {
  display: flex;
  justify-content: center;
  align-items: center;
  -ms-grid-column: 2;
  height: 160px;
}

.single_page_nav_thumbnail_image {
  width: 100px;
  height: 100px;
  transition: 200ms;
}

.single_page_nav_thumbnail_image:hover {
  opacity: 0.75;
}

.single_page_nav_title {
  display: flex;
  align-items: center;
  padding: 0 40px;
  font-size: 16px;
  font-weight: 900;
  height: 160px;
}

#next_single_nav .single_page_nav_title {
  justify-content: flex-end;
}

#next_single_nav,
#prev_single_nav {
  padding-top: 14px;
}

#single_article_list_area {
  padding-top: 70px;
  background: #fff;
}

#single_article_list_area_title {
  height: 70px;
  background: #222;
  padding: 20px;
  font-size: 18px;
  font-weight: 900;
  color: #fff;
}

#single_article_list {
  display: grid;
  display: -ms-grid;
  grid-template-rows: 1fr 1fr;
  -ms-grid-rows: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-columns: 1fr 1fr;
  margin: 0;
  padding: 0 40px 40px 0;
  height: 330px;
}

.single_article_list_item {
  margin: 40px 0 0 40px;
  display: grid;
  display: -ms-grid;
  grid-template-columns: 100px 1fr;
  -ms-grid-columns: 100px 1fr;
}

.single_article_list_item_thumbnail {
  display: flex;
  justify-content: center;
  align-items: center;
  -ms-grid-column: 1;
}

.single_article_list_item_thumbnail_image {
  height: 100px;
  width: 100px;
  transition: 200ms;
}

.single_article_list_item_thumbnail_image {
  opacity: 0.75;
}

.single_article_list_item_description {
  margin-left: 10px;
  -ms-grid-column: 2;
}

.single_article_list_item_category {
  display: inline-block;
  padding: 5px 15px;
  font-size: 14px;
  color: #fff;
}

.single_article_list_item_title {
  margin-top: 5px;
  font-size: 16px;
  font-weight: 900;
}

/*記事したバナー*/
#single_article_footer_banner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-bottom: 50px;
}

@media screen and (max-width: 768px) {
  #single_article_footer_banner_image_pc {
    display: none;
  }
}

/*ページャー*/
#main_pager {
  display: flex;
  margin: 0;
  width: 100%;
  height: 58px;
  border-top: solid 1px #f8f8f8;
  background: #fff;
  font-family: 'Lato', sans-serif;
}

.main_pager_item {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  width: 58px;
  height: 58px;
  font-size: 16px;
}

.now_page {
  background: #222;
  color: #fff;
}

/*サイドバー*/
#side_bar {
  -ms-grid-column: 2;
}

.sidebar_menu_title {
  margin: 48px 0 0;
  padding-left: 40px;
  height: 48px;
  line-height: 48px;
  color: #FFF;
  font-size: 14px;
  background-image: url(../image/sidebar_menu_title_icon.png);
  background-color: #222;
  background-position: 20px center;
  background-repeat: no-repeat;
  background-size: 14px;
}

#sidebar_menu .menu_list {
  margin: 0;
}

#sidebar_menu .menu_list li {
  border-bottom: 1px solid #E7E8E9;
}

.ranking_item {
  margin: 10px 0;
  display: grid;
  display: -ms-grid;
  grid-template-columns: 100px 1fr;
  -ms-grid-columns: 100px 1fr;
  width: 100%;
  height: 110px;
}

.ranking_item_img_area {
  position: relative;
  -ms-grid-column: 1;
}

.ranking_item_img {
  height: 100px;
  width: 100px;
  transition: 200ms;
}

.ranking_item_img:hover {
  opacity: 0.75;
}

.ranking_item_icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-weight: 900;
  color: #fff;
  font-family: 'Lato', sans-serif;
}

.ranking_item_text {
  display: grid;
  display: -ms-grid;
  grid-template-rows: 1fr 2fr;
  -ms-grid-rows: 1fr 2fr;
  padding-left: 10px;
  -ms-grid-column: 2;
}

.ranking_item_date {
  display: flex;
  align-items: center;
  font-size: 12px;
  font-family: 'Lato', sans-serif;
  -ms-grid-row: 1;
}

.ranking_item_title {
  display: inline-block;
  font-size: 13px;
  font-weight: 900;
  -ms-grid-row: 2;
}

.menu_category_list_item {
  position: relative;
  margin: 0 0 6px;
  padding: 0 25px;
  width: 100%;
  height: 44px;
  line-height: 44px;
  background: #FFF;
  font-size: 13px;
}

.category_list_item_count {
  position: absolute;
  top: 10px;
  right: 10px;
  height: 24px;
  line-height: 24px;
  padding: 0 10px;
  margin-right: 0;
  background: #f2f2f2;
  font-weight: 900;
  font-family: 'Lato', sans-serif;
}

.menu_latest_list_item {
  display: flex;
  align-items: center;
  padding: 10px;
  width: 100%;
  border-bottom: dotted 1px #000;
  font-size: 13px;
  margin-bottom: 0;
}

#special_article_item_first_info img {
  margin-left: 25px;
  margin-right: 5px;
  margin-bottom: 4px;
}

.first_item_true .description_info_pv_icon {
  padding: 0;
  margin-right: 5px;
  margin-bottom: 6px;
}

@media screen and (max-width: 768px) {
  .first_item_true .description_info_pv_icon {
    margin-left: 10px;
  }
}

.first_item_false .description_info_pv_icon {
  padding: 0;
  margin-right: 5px;
  margin-bottom: 5px;
}

@media screen and (max-width: 768px) {
  .first_item_false .description_info_pv_icon {
    margin-left: 10px;
  }
}

@media screen and (max-width: 768px) {
  .main_menu_list {
    grid-template-columns: 1fr 2fr;
    -ms-grid-columns: 1fr 2fr;
  }
  .main_menu_bar_category {
    display: none !important;
  }
  #main_menu_item_search {
    transform: translateX(-25px);
  }
  #article_area {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: auto;
    padding-top: 0;
  }
  #article_list {
    margin-right: 0;
  }
  #sidebar_banner_image {
    width: 100%;
    height: auto;
  }
  #special_article_area {
    display: flex;
    flex-direction: column;
    height: auto;
  }
  #special_article_item_first {
    margin-right: 0;
    height: 250px;
    margin-bottom: 20px;
  }
  #special_article_item_first .special_article_description {
    height: 30%;
  }
  #special_article_item_first .special_article_title {
    display: flex;
    align-items: center;
    padding: 6px;
    padding-left: 15px;
    font-size: 18px;
  }
  #special_article_item_first .special_article_info {
    display: flex;
    align-items: center;
    padding-left: 15px;
    font-size: 10px;
  }
  #special_article_item_first_info {
    margin-bottom: 6px;
  }
  .special_article_item {
    height: 250px;
    margin-bottom: 20px;
  }
  .special_article_item .special_article_title {
    padding-left: 15px;
    font-size: 18px;
  }
  .special_article_item .special_article_info {
    padding-left: 15px;
  }
  .article_list_item {
    border-bottom: solid 1px #e2e2e2;
  }
  .first_item_true .article_list_description_box {
    padding: 20px;
  }
  .first_item_true .article_list_description_title {
    height: auto;
    line-height: normal;
  }
  .first_item_false {
    grid-template-columns: 1fr 2fr;
    -ms-grid-columns: 1fr 2fr;
    padding: 20px 0;
    height: auto;
  }
}

@media screen and (max-width: 768px) and (max-width: 768px) {
  .first_item_false {
    grid-template-columns: 1.5fr 2fr;
    -ms-grid-columns: 1.5fr 2fr;
  }
}

@media screen and (max-width: 768px) {
  .first_item_false .article_list_thumbnail_box {
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }
  .first_item_false .article_list_thumbnail_image {
    height: auto;
    transition: 200ms;
  }
  .first_item_false .article_list_thumbnail_image:hover {
    opacity: 0.75;
  }
  .first_item_false .article_list_description_box {
    padding: 0 10px;
    grid-template-rows: 1fr 2fr;
    -ms-grid-rows: 1fr 2fr;
  }
  .first_item_false .article_list_description_text {
    display: none;
  }
  #main_pager {
    display: grid;
    display: -ms-grid;
    grid-template-rows: 1fr;
    -ms-grid-rows: 1fr;
    grid-template-columns: repeat(8, 1fr);
    -ms-grid-columns: repeat(8, 1fr);
    margin-bottom: 20px;
  }
  .main_pager_item {
    width: 100%;
    height: 100%;
  }
  #single_content {
    padding: 15px;
  }
  #single_content_title {
    line-height: normal;
    padding-left: 0;
  }
  #single_content_info {
    padding-left: 0;
  }
  #single_content_text h1 {
    line-height: normal;
  }
  #single_content_text h2 {
    height: auto;
    line-height: normal;
  }
  #single_content_text h4 {
    height: auto;
    line-height: normal;
  }
  #single_content_footer {
    padding: 0 10px;
    margin-top: 50px;
    overflow: hidden;
  }
  #single_page_nav {
    height: auto;
  }
  #prev_single_nav {
    grid-template-columns: 40px 1fr;
    -ms-grid-columns: 40px 1fr;
    grid-template-rows: 1fr 1fr;
    -ms-grid-rows: 1fr 1fr;
  }
  #next_single_nav {
    grid-template-columns: 1fr 40px;
    -ms-grid-columns: 1fr 40px;
    grid-template-rows: 1fr 1fr;
    -ms-grid-rows: 1fr 1fr;
  }
  .single_page_nav_title {
    grid-row: 2 / span 1;
    -ms-grid-row: 2;
    grid-column: 1 / span 2;
    -ms-grid-column: 1;
    padding: 0 10px;
  }
  #single_article_list {
    grid-template-rows: 1fr 1fr 1fr 1fr;
    -ms-grid-rows: 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr;
    -ms-grid-columns: 1fr;
    height: auto;
  }
  .description_info_author {
    padding: 0 5px !important;
  }
}

@media screen and (max-width: 768px) and (max-width: 768px) {
  .description_info_author {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .description_info_date {
    padding-right: 5px !important;
  }
  .single_page_nav_thumbnail,
  .single_page_nav_arrow,
  .single_page_nav_title {
    height: auto;
  }
  .ranking_item_title {
    padding-right: 10px;
  }
}

.pagination_arrow{
  position: relative;
}
.pagination_arrow span{
  position: absolute;
  display: block;
  width: 20px;
  height: 2px;
  background-color: #898989;
  top: 80px;
}
#prev_single_nav span{
  left: 0;
}
#next_single_nav span{
  right: 0;
}	
.pagination_arrow span:nth-child(1){
  transform: rotate(45deg);
  top: 74px;
}
.pagination_arrow span:nth-child(2){
  transform: rotate(-45deg);
  top: 87px;
}
#prev_single_nav .pagination_arrow span:nth-child(1){
  transform: rotate(135deg);
}
#prev_single_nav .pagination_arrow span:nth-child(2){
  transform: rotate(-135deg);
}
@media screen and (max-width:768px){
  #single_page_nav{
    height: 240px;
  }
  #prev_single_nav span{
    left: 15px;
  }
  #next_single_nav span{
    right: 15px;
  }
  .pagination_arrow span:nth-child(1){
    transform: rotate(45deg);
    top: 44px;
  }
  .pagination_arrow span:nth-child(2){
    transform: rotate(-45deg);
    top: 57px;
  }
}

.bnrSide img {
  width: 100%;
}

@media screen and (min-width: 769px) {
  #pc_home_icon {
    display: inline-block;
  }
  #sp_category_menu {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  #pc_home_icon {
    display: none;
  }
  #sp_category_menu_icon {
    width: 18px;
    height: 15px;
    opacity: 1 !important;
  }
  #sp_category_menu_list {
    position: absolute;
    top: 40px;
    left: 0;
    width: 50vw;
    background: #07b1bb;
    visibility: hidden;
    left: -100%;
    opacity: 0;
    transition: 300ms ease-in;
  }
  .sp_category_menu_item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    height: 56px;
    border-bottom: dashed 1px #fff;
  }
}

@media screen and (min-width: 769px) {
  #pc_search_form {
    display: inline-block;
    position: static !important;
  }
  #pc_search_form form {
    position: static !important;
  }
  #sp_search_form {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  #pc_search_form {
    display: none;
  }
  #sp_search_form {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    width: 100%;
    height: 100%;
  }
  #sp_search_form_icon {
    width: 15px;
    height: 15px;
    opacity: 1 !important;
  }
  #sp_search_form_box {
    visibility: hidden;
    position: relative;
    padding: 0 10px;
    transform: translateX(40px);
    bottom: 0%;
    opacity: 0;
    width: 100%;
    height: 100%;
    background: #07b1bb;
    transition: 200ms ease-in;
  }
  .item_search_input {
    left: 2.5%;
    width: 95%;
  }
}

@media screen and (max-width: 768px) {
  #article_area_bg {
    padding-left: 3%;
    padding-right: 3%;
    padding-top: 3%;
    padding-bottom: 2.5em;
  }
  .first_item_false {
    padding: 10px 0;
  }
  .article_list_description_info {
    color: #888;
  }
  .article_list_description_info img {
    opacity: 0.5;
  }
  .kugiri_border {
    display: none;
  }
  #special_article_area {
    margin-bottom: 0;
  }
  .first_item_true {
    grid-template-columns: 1.5fr 2fr;
    padding: 10px 0;
    display: grid;
  }
  .first_item_true .article_list_thumbnail_box {
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }
  .first_item_true .article_list_description_box {
    padding: 0 10px;
  }
  .first_item_true .article_list_description_text {
    padding-bottom: 0;
  }
  .first_item_true .article_list_description_title {
    font-size: 14px;
  }
  .first_item_true .article_list_description_text {
    display: none;
  }
  .first_item_true .article_list_description_info {
    margin-bottom: 8px;
  }
  #special_article_item_list a:last-child li.special_article_item {
    margin-bottom: 0;
  }
  #single_content_info {
    margin-bottom: 12px;
    padding-left: none;
  }
  #single_content_title {
    font-size: 22px;
    line-height: 150%;
    height: auto;
  }
  #single_content_text h2 {
    margin-top: 3rem;
    font-size: 20px;
    padding: 10px;
    background-position: center left 10px;
  }
  #single_content_text h3 {
    margin-top: 3rem;
    font-size: 18px;
    padding: 8px 0px 4px 0px;
  }
  #single_content_text h4 {
    margin-top: 3rem;
    font-size: 16px;
    padding-top: 4px;
    padding-bottom: 4px;
    padding-right: 10px;
  }
}

@media screen and (max-width: 768px) and (max-width: 768px) {
  #single_content_text h4:before {
    height: 100%;
  }
}

@media screen and (max-width: 768px) {
  #single_content p {
    font-size: 16px;
    line-height: 28.8px;
  }
  #single_content_footer {
    line-height: 150%;
    height: auto;
    padding: 8px;
  }
  #single_article_list_area_title {
    margin-bottom: 5%;
  }
  #single_article_list {
    padding-right: 0;
  }
  .single_article_list_item {
    margin: 0;
    padding: 0 5% 5% 5%;
  }
  .single_article_list_item_category {
    font-size: 11px;
    padding: 3px 8px;
  }
  #single_article_list {
    display: block;
  }
  #single_content_footer {
    font-size: 12px;
  }
  .bnrSide {
    width: 80%;
    margin: auto;
    margin-top: 3rem;
  }
}

#single_content_text img.alignleft {
  float: left;
  margin-right: 20px;
}

@media screen and (max-width: 768px) {
  #single_content_text img.alignleft {
    float: none;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
  }
}

h1#single_content_title {
  color: #000;
  font-size: 30px;
  line-height: 150%;
  margin-top: 10px;
}

@media screen and (max-width: 768px) {
  h1#single_content_title {
    font-size: 25px;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (max-width: 768px) {
  #single_content_info {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

#ez-toc-container {
  border: 1px solid #aaa;
  background-color: #f9f9f9;
  padding: 10px;
}

@media screen and (max-width: 768px) {
  #ez-toc-container {
    margin-top: 0;
  }
}

#ez-toc-container p.ez-toc-title {
  padding: 0;
  text-align: center;
  font-weight: bold;
  font-size: 18px;
}

#ez-toc-container .ez-toc-list li {
  margin-bottom: 5px;
}

#ez-toc-container .ez-toc-list > li a {
  display: block;
  margin-bottom: 5px;
}

#ez-toc-container .ez-toc-list > li > ul > li a {
  display: block;
  margin-bottom: 5px;
}

.footer .flex .foffice_addr p,
.footer .flex .foffice_addr2 p {
  margin: 0;
  line-height: 1.75;
}

.c-header ul {
  font-size: min(16px, 1.006vw);
}

.c-header a:hover {
  color: inherit;
  text-decoration: inherit;
}

.c-header {
  background: #fff !important;
  border-bottom: 1px solid #E7E8E9 !important;
}

.c-nav-global__btn:hover {
  color: #fff;
}

.marker-under-blue {
    background: linear-gradient(transparent 70%,#9dd7fd 40%);
}

.marker-under-yellow {
    background: linear-gradient(transparent 70%,#ffff7e 40%);
}

.marker-under-red {
    background: linear-gradient(transparent 70%,#ffb8b9 40%);
}



#single_content .point_wrap,
#tinymce .point_wrap{
    position: relative;
    margin: 2em 0.5em;
    padding: 2em 0.5em 0;
    border: solid 2px #1e2e53;
    border-radius: 3px;
    background: #E3ECFB;
    font-size: 100%;
}
#single_content .point_wrap .point_title,
#tinymce .point_wrap .point_title{
    position: absolute;
    top: -1em;
    left: -1em;
    border: solid 2px #1e2e53;
    padding: 0 1em;
    border-radius: 2em;
    background: #1e2e53;
    font-weight: 900;
    color: #fff;
}

.sp_menu_btn{
  margin-left: 10px;
  display: inline-block;
  width: 100%;
}