@charset "UTF-8";
/* Scss Document */
/* Reset CSS
---------------------------------------------------*/
@import url("http://fonts.googleapis.com/earlyaccess/notosansjp.css");
@import url("https://fonts.googleapis.com/css?family=Open+Sans");

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
.block {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* hr {
  display: none;
} */

address,
em {
  font-style: normal;
}

img {
  vertical-align: bottom;
}



/* Fonts
---------------------------------------------------*/
body {
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif;
  font-weight: 500;
}

/* clearfix
---------------------------------------------------*/
.clearfix:after {
  content: '';
  display: block;
  clear: both;
  height: 0;
}

#global_link {
  position: relative;
  top: -9px;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 53px;
  padding: 5px 0;
  box-sizing: border-box;
}

@media screen and (max-width: 580px) {
  #global_link {
    position: fixed;
    background-color: #1a1a1a;
    width: 100%;
  }
}

#global_link a {
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 10px !important;
  background: none !important;
  color: #ccc !important;
  text-decoration: none !important;
}

#global_link a:hover {
  color: #fff !important;
}

#global_link ul {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  max-width: 1200px;
  margin: 0 auto !important;
  padding: 0 !important;
  background: none !important;
}

@media screen and (max-width: 580px) {
  #global_link ul {
    display: inline-block !important;
    padding: 2em 0 0 0 !important;
    width: 100%;
  }
}

#global_link li {
  width: auto !important;
  height: auto !important;
  margin: 0 8px !important;
  padding: 0 !important;
  background: none !important;
  letter-spacing: 0.05em;
  font-size: 0.8em;
}

@media screen and (max-width: 580px) {
  #global_link li {
    width: auto !important;
    height: auto !important;
    margin: 0 8px !important;
    padding: 10px 0 !important;
    background: none !important;
    letter-spacing: 0.05em;
    font-size: 1.2em;
    border-bottom: 1px solid #fff;
  }
}

#global_link li:first-child {
  padding: 0 10px;
  letter-spacing: 0 !important;
}

@media screen and (max-width: 580px) {
  #global_link li:first-child {
    padding: 10px 0 !important;
  }
}

#global_link li:nth-of-type(2) {
  margin-left: auto !important;
}

@media screen and (max-width: 580px) {
  #global_link li:nth-of-type(2) {
    margin-left: 8px !important;
  }
}

#global_link li:last-of-type {
  margin-right: 10px !important;
}

#global_link li:not(:first-child) a {
  display: inline-block !important;
  position: relative;
  padding: 0 0 0 10px !important;
}

#global_link li:first-child a img {
  width: auto;
  height: 30px;
}

#global_link li:first-child a:hover img {
  opacity: 0.7;
}

#global_link li:not(:first-child) a:before {
  position: absolute;
  left: 0;
  top: 50%;
  border: 4px solid transparent;
  border-left: 5px solid #ccc;
  transform: translateY(-50%);
  content: '';
}

/* ヘッダーのナビ部分 */
.header__nav {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(100%);
  background-color: #1a1a1a;
  /*ハンバーガーメニュークリック時のナビゲーションメニュー背景色*/
  transition: ease .4s;
  /*ハンバーガーメニュークリック時のナビゲーションメニュー出現を遅延*/
}

@media screen and (min-width: 580.1px) {
  .header__nav {
    position: static;
    transform: initial;
    background-color: inherit;
    height: inherit;
    justify-content: end;
    width: 100%;
    padding-top: 1em;
    background-color: #1a1a1a;
  }
}

/* ハンバーガーメニュー */
.header__hamburger {
  width: 48px;
  height: 100%;
  position: absolute;
  right: 0;
}

.hamburger {
  background-color: transparent;
  /*buttonタグデフォルトスタイルを打ち消し*/
  border-color: transparent;
  /*buttonタグデフォルトスタイルを打ち消し*/
  z-index: 9999;
}

@media screen and (min-width: 580.1px) {
  .hamburger {
    display: none;
  }
}

/* ハンバーガーメニューの線 */
.hamburger span {
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: relative;
  transition: ease .4s;
  /*ハンバーガーメニュークリック時の三本線の動きを遅延*/
  display: block;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  margin: 8px 0;
}

.hamburger span:nth-child(3) {
  top: 0;
}

/* ハンバーガーメニュークリック後のスタイル */
.header__nav.active {
  transform: translateX(0);
}

.hamburger.active span:nth-child(1) {
  top: 5px;
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  top: -13px;
  transform: rotate(-45deg);
}

.header__inner .mob_menu {
  display: none;
}

@media screen and (max-width: 580.1px) {
  .header__inner .mob_menu {
    display: block;
  }
}

/* Scss Document */
/* 記述例
p {
  @include font-size(12);
}*/
/* 記述例
@include media(sp) {
	background-color: green;
}*/
html {
  font-size: 16px;
}

body {
  font-family: 'Noto Sans JP', "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  color: #0D0D1B;
  line-height: 1.5;
  background-image: url(../../kyushu/common/img/bg.jpg);
}

img {
  max-width: 100%;
  height: auto;
}



*,
*::after {
  box-sizing: border-box;
}

.l-inner {
  min-width: 320px;
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
}

.l-inner:after {
  content: "";
  clear: both;
  display: block;
}

.inner a {
  color: #fff;
}

#sidenavi {
  position: fixed;
  right: 0;
  bottom: 20%;
  z-index: 10;
  border-radius: 15px 0 0 15px;
  overflow: hidden;
  z-index: 9999;
}

@media screen and (max-width: 600px) {
  #sidenavi {
    display: none;
  }
}

#sidenavi li:first-child a {
  background: rgba(204, 0, 0, .9);
}

#sidenavi li a {
  width: 110px;
  /* height: 65px; */
  background: #009944;
  display: table-cell;
  vertical-align: middle;
  padding: 8px 3px;
  box-sizing: border-box;
  font-size: .85em;
  line-height: 1.4;
  text-decoration: none;
  color: #fff;
  border-bottom: 1px solid #fff;
  text-align: center;
  letter-spacing: 0 !important;
}

#sidenavi li i {
  font-size: 1.4em;
  display: block;
  margin: 0 auto 5px;
}

/* Scss Document */
a {
  text-decoration: none;
  color: #009944;
}

#news_list a {
  color: #333;
}

.nolink a,
.nolink-bg a {
  pointer-events: none;
  cursor: default;
}

.nolink a {
  opacity: 0.5;
}

.nolink-bg {
  background-color: #cccccc !important;
}

.nolink2 a {
  pointer-events: none;
  cursor: default;
}

.title1 {
  text-align: center;
  margin-bottom: 30px;
}

.title1__head {
  display: inline-block;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 600;
  color: #d0121b;
  position: relative;
  padding-left: 10px;
  padding-right: 10px;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .title1__head {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

.title1__head:before {
  content: "";
  width: 100%;
  height: 8px;
  position: absolute;
  bottom: 2px;
  left: 0px;
  background-color: rgba(254, 163, 68, 0.7);
  z-index: -1;
}

.title2 {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 40px;
}

.title2:after {
  content: "";
  display: block;
  width: 100px;
  height: 1px;
  background-color: #0D0D1B;
  margin: 20px auto 0;
}

.title3 {
  color: white;
  font-size: 20px;
  font-size: 1.25rem;
  text-align: center;
  background-color: #d0121b;
  padding: 6px 0;
}

.title4 {
  font-weight: 400;
  font-size: 20px;
  font-size: 1.25rem;
  border-left: 5px solid #0D0D1B;
  border-bottom: 1px solid #0D0D1B;
  padding-left: 10px;
}

.title-main {
  text-align: center;
  padding: 50px 0 50px;
}

@media screen and (max-width: 768px) {
  .title-main {
    padding: 30px 0 30px;
  }
}

.title-main__head {
  display: inline-block;
  font-size: 34px;
  font-size: 2.125rem;
  font-weight: 400;
  position: relative;
  padding-left: 10px;
  padding-right: 10px;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .title-main__head {
    font-size: 28px;
    font-size: 1.75rem;
  }
}

.title-main__head:before {
  content: "";
  width: 100%;
  height: 8px;
  position: absolute;
  bottom: 7px;
  left: 0px;
  background-color: rgba(52, 52, 105, 0.5);
  z-index: -1;
}

#plant .title-main__head:before {
  background-color: rgba(78, 93, 157, 0.5);
}

#water .title-main__head:before {
  background-color: rgba(0, 143, 212, 0.5);
}

#energy .title-main__head:before {
  background-color: rgba(222, 108, 39, 0.5);
}

#security .title-main__head:before {
  background-color: rgba(0, 147, 68, 0.5);
}

.title-main__head__new {
  color: #E02634;
  font-size: 26px;
  font-size: 1.625rem;
  position: absolute;
  top: -25px;
  left: -20px;
  transform: rotate(-15deg);
}

.title-main__head br {
  display: none;
}

@media screen and (max-width: 768px) {
  .title-main__head br {
    display: inline-block;
  }
}

/* 
- Name: megamenu.js - style.css
- Version: 1.0
- Latest update: 29.01.2016.
- Author: Mario Loncarek
- Author web site: http://marioloncarek.com
*/
/* ––––––––––––––––––––––––––––––––––––––––––––––––––
megamenu.js STYLE STARTS HERE
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* ––––––––––––––––––––––––––––––––––––––––––––––––––
Screen style's
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.menu-container {
  width: 100%;
  margin: 0 auto;
}

.menu-mobile {
  display: none;
  padding: 20px;
  background-color: #2f7b35;
  color: white;
}

@media screen and (max-width: 768px) {
  .menu-mobile {
    display: block;
  }
}

.menu-mobile:after {
  content: url(../img/icon_menu.png);
  width: 32px;
  height: 32px;
  padding: 0;
  float: right;
  position: relative;
  top: 50%;
  transform: translateY(-15%);
}

.menu-dropdown-icon:before {
  content: url(../img/icon_arrow_down.png);
  width: 32px;
  height: 32px;
  display: none;
  cursor: pointer;
  float: right;
  padding-top: 10px;
  padding-right: 20px;
}

@media screen and (max-width: 768px) {
  .menu-dropdown-icon:before {
    display: block;
  }
}

.menu>ul {
  position: relative;
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  /* IF .menu position=relative -> ul = container width, ELSE ul = 100% width */
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .menu>ul {
    display: none;
    flex-flow: column;
  }

  .menu>ul.show-on-mobile {
    display: block;
  }
}

.menu>ul:before {
  content: "";
  display: table;
}

.menu>ul:after {
  content: "";
  display: table;
  clear: both;
}

.menu>ul>li {
  background: #0D0D1B;
  width: calc(100% / 4);
  transition: 0.3s ease;
  /* display: flex; */
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .menu>ul>li {
    width: 100%;
    display: block;
  }
}

/* @media screen and (max-width: 768px) {
  .menu>ul>li br {
    display: none;
  }
} */

.menu>ul>li a {
  display: block;
  padding: 7px 0;
  color: #fff;
  font-weight: 600;
  text-align: center;
  width: 100%;
  font-size: 1.4em;
}

@media screen and (max-width: 768px) {
  .menu>ul>li a {
    text-align: left;
    padding: 5px 10px;
  }
}


.menu>ul>li p {
  display: block;
  padding: 10px 0;
  color: white;
  font-weight: 500;
  text-align: center;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .menu>ul>li p {
    text-align: left;
    padding: 15px 10px;
  }
}

.menu>ul>li {
  background-color: #2f7b35;
}

.menu>ul>li>ul {
  display: none;
  position: absolute;
  top: 40px;
  /* left: 0; */
  width: 100%;
  max-width: 400px;
  background: #2f7b35;
  padding: 10px 1%;
  z-index: 99;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .menu>ul>li>ul {
    position: relative;
    top: 0;
    padding: 20px;
  }

  .menu>ul>li>ul.normal-sub {
    width: 100%;
  }
}

.menu>ul>li>ul:before {
  content: "";
  display: table;
}

.menu>ul>li>ul:after {
  content: "";
  display: table;
  clear: both;
}

.menu>ul>li>ul>li {
  float: left;
  width: calc(100% / 4);
}

@media screen and (max-width: 768px) {
  .menu>ul>li>ul>li {
    float: none;
    width: 100%;
  }
}

.menu>ul>li>ul>li a {
  display: block;
  width: 100%;
  text-align: left;
  padding-left: 2em;
  box-sizing: border-box;
  display: block;
}

.menu>ul>li>ul>li a:before {
  margin: 0 0.5em 0 -1.5em;
  content: '\f0da';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
}

.menu>ul>li>ul>li>ul {
  display: block;
  margin: 10px 0 0;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .menu>ul>li>ul>li>ul {
    position: relative;
  }
}

.menu>ul>li>ul>li>ul:before {
  content: "";
  display: table;
}

.menu>ul>li>ul>li>ul:after {
  content: "";
  display: table;
  clear: both;
}

.menu>ul>li>ul>li>ul>li {
  float: left;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .menu>ul>li>ul>li>ul>li {
    float: none;
  }
}

.menu>ul>li>ul>li>ul>li a {
  border: 0;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  position: relative;
  display: inline-block;
}

.menu>ul>li>ul>li>ul>li a::after {
  position: absolute;
  bottom: -1px;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #d0121b;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform .3s;
}

.menu>ul>li>ul>li>ul>li a:hover::after {
  transform: scale(1, 1);
}

.menu>ul>li>ul>li>ul>li a:after {
  background: white;
}

.menu>ul>li>ul.normal-sub>li {
  float: left;
  width: 100%;
  border: none;
}

@media screen and (max-width: 768px) {
  .menu>ul>li>ul.normal-sub>li {
    width: 100%;
  }
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}

/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}

[dir="rtl"] .slick-prev {
  left: auto;
  right: -25px;
}

.slick-prev:before {
  content: "←";
}

[dir="rtl"] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}

[dir="rtl"] .slick-next {
  left: -25px;
  right: auto;
}

.slick-next:before {
  content: "→";
}

[dir="rtl"] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}


header {
  background: #fff;
  /* display: flex; */
  /* padding: 0px 20px; */
  /* position: fixed; */
  justify-content: space-between;
  width: 100%;
  z-index: 99;
}

/* .headInfo {
  background-image: url(../../kyushu/common/img/bg.jpg);
} */
.headInfo--inner {
  display: flex;
  flex-flow: wrap;
  align-items: center;
  min-height: 100px;
  height: 100%;
  justify-content: space-evenly;
}

/* @media screen and (max-width: 1092px) {
  .headInfo--inner {
    margin-bottom: 20px;
  }
} */

@media screen and (max-width: 792px) {
  .headInfo--inner {
    justify-content: center;
  }
}

@media screen and (max-width: 580px) {
  .headInfo--inner {
    margin-top: 3em;
  }
}

.headInfo__logo {
  text-align: center;
}

@media screen and (max-width: 1088px) {
  .headInfo__logo {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .headInfo__logo {
    margin-right: 15px;
    margin-bottom: 5px;
  }
}

.headInfo__logo img {
  width: 300px;
}

.headInfo__date {
  line-height: 1.4;
  margin: 0 15px;
  font-weight: 600;
  /* min-width: 350px; */
  letter-spacing: -0.5px;
}

@media screen and (max-width: 792px) {
  .headInfo__date {
    line-height: 1.8;
    font-size: 0.85em;
    margin: 10px 0;
  }
}

@media screen and (max-width: 792px) {
  .headInfo__date:nth-of-type(2) {
    margin-top: 20px;
  }
}

@media screen and (max-width: 421px) {
  .headInfo__date {
    line-height: 1.8;
    font-size: 0.7em;
  }
}

.header_place {
  line-height: 0.8;
}

.fa,
.far,
.fas {
  font-family: "Font Awesome 5 Free";
}

.f06em {
  font-size: 0.6em;
}

.headInfo__jma {
  margin-left: auto;
  margin-right: 30px;
}

@media screen and (max-width: 768px) {
  .headInfo__jma {
    display: none;
  }
}

.headInfo__jma li a {
  display: inline-block;
  border-radius: 2px;
  padding: 2px 6px;
  width: 9em;
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 1.8;
}

.headInfo__jma li:nth-child(1) {
  margin-bottom: 5px;
}

.headInfo__jma li:nth-child(1) a {
  background: #0093cf;
  color: #fff;
}

.headInfo__jma li:nth-child(2) a {
  border: 1px solid #0093cf;
  background: #fff;
  color: #0093cf;
}

.headInfo__btn {
  /* width: 300px; */
  display: flex;
  flex-flow: row wrap;
  padding-left: 50px;
}

@media screen and (max-width: 768px) {
  .headInfo__btn {
    width: 100%;
    margin-top: 5px;
    padding-left: 0px;
  }
}

.headInfo__btn li {
  width: 180px;
  display: flex;
  align-items: center;
  transition: opacity 0.3s ease;
  padding: 10px;
}

.headInfo__btn li:hover {
  opacity: 0.5;
}

@media screen and (max-width: 821px) {
  .headInfo__btn li {
    width: calc(100% / 4);
  }
}

@media screen and (max-width: 768px) {
  .headInfo__btn li {
    width: calc(100% / 3.1);
  }
}

.headInfo__btn li a {
  display: block;
  width: 100%;
  color: white;
  text-align: center;
  font-weight: 600;
}

@media screen and (max-width: 768px) {
  .headInfo__btn li a {
    font-size: 16px;
    font-size: 1rem;
  }
}

.headInfo__btn li:nth-child(1) {
  background: #d0121b;
}

/* .headInfo__btn li:nth-child(1) a {
  padding: 10px 10px 15px;
} */
.headInfo__btn li:nth-child(2) {
  background-color: #dd551a;
  margin-left: 5px;
}

.headInfo__btn li:nth-child(3) {
  background-color: #d0121b;
  margin-left: 5px;
}

.headInfo__btn li img {
  width: 20px;
  padding-bottom: 5px;
}

@media screen and (max-width: 768px) {
  .headInfo__btn li img {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .headInfo__btn li br {
    display: none;
  }
}

nav {
  background-color: #2f7b35;
}

/* .keyVisual {
  width: 100%;
  height: 400px;
  overflow: hidden;
  position: relative;
} */
.keyVisual {
  width: 100%;
  /* height: 400px; */
  overflow: hidden;
  position: relative;
  margin-top: 0px;
  /* top: 10.8em; */
}

@media screen and (max-width: 540px) {
  .keyVisual {
    width: 100%;
    /* height: 310px; */
    overflow: hidden;
    position: relative;
    margin-top: 0px;
    /* top: 16.5em; */
  }
}

@media screen and (max-width: 414px) {
  .keyVisual {
    width: 100%;
    /* height: 310px; */
    overflow: hidden;
    position: relative;
    margin-top: 0px;
    /* top: 8.8em; */
  }
}

.keyVisual video {
  width: 100%;
  margin-top: 5em;
}

@media screen and (max-width: 540px) {
  .keyVisual video {
    width: 100%;
    margin-top: 0em;
  }
}

.keyVisual__slider img {
  max-width: 1200px;
}

@media screen and (max-width: 1200px) {
  .keyVisual__slider img {
    max-width: 950px;
  }
}

@media screen and (max-width: 950px) {
  .keyVisual__slider img {
    max-width: 800px;
  }
}

@media screen and (max-width: 780px) {
  .keyVisual__slider img {
    max-width: 600px;
  }
}

@media screen and (max-width: 600px) {
  .keyVisual__slider img {
    max-width: 400px;
  }
}

@media screen and (max-width: 400px) {
  .keyVisual__slider img {
    max-width: 350px;
  }
}

.keyVisual__pop1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #dd551a;
  font-weight: 800;
  line-height: 1.3;
  font-size: 28px;
  font-size: 1.65rem;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 20px 15px;
  vertical-align: top;
  width: 1000px;
  letter-spacing: -0.4px;
}

@media screen and (max-width: 768px) {
  .keyVisual__pop1 {
    width: 100%;
    font-size: 22px;
    font-size: 1.1rem;
    padding: 20px;
    display: inline-block;
  }

  /* .keyVisual__pop1 br {
    display: none;
  } */
}

.keyVisual__pop1 img {
  width: 80%;
}

.keyVisual__pop1 .btn-flat-border {
  width: 50%;
  font-size: 0.8em;
}

@media screen and (max-width: 768px) {
  .keyVisual__pop1 .btn-flat-border {
    font-size: 0.8em;
    width: 100%;

  }
}

.keyVisual__pop2 {
  width: 600px;
  position: absolute;
  top: 50%;
  left: 75%;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 768px) {
  .keyVisual__pop2 {
    width: 100%;
    display: inline-block;
  }
}

.keyVisual__pop2 li+li {
  margin-top: 20px;
}

.keyVisual__pop2 a:hover {
  opacity: 0.8;
}

/* .information {
  background: white;
} */
.information--inner {
  max-width: 900px;
  display: flex;
  flex-flow: row;
  align-items: center;
  padding: 20px;
}

.information--inner:before {
  content: "";
  display: block;
  width: 0;
  min-height: 100px;
}

@media screen and (max-width: 768px) {
  .information--inner {
    width: 100%;
    flex-flow: column;
  }

  .information--inner:before {
    min-height: 0;
  }
}

.information__title {
  width: 20%;
  padding-right: 4em;
  white-space: nowrap;
}

@media screen and (max-width: 768px) {
  .information__title {
    width: 100%;
    text-align: center;
    padding-right: 0;
    padding-bottom: 1em;
  }
}

.information__body {
  padding-left: 4em;
  border-left: 1px solid #0D0D1B;
}

@media screen and (max-width: 768px) {
  .information__body {
    padding-left: 0;
    padding-right: 0;
    border-left: none;
  }
}

.information__body dt {
  clear: both;
  float: left;
  width: 7em;
}

@media screen and (max-width: 768px) {
  .information__body dt {
    float: none;
  }
}

.information__body dd {
  margin-left: 7em;
}

@media screen and (max-width: 768px) {
  .information__body dd {
    margin-left: 0;
    margin-bottom: 1em;
  }
}

.information__body dd a {
  position: relative;
  display: inline-block;
}

.information__body dd a::after {
  position: absolute;
  bottom: -1px;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #d0121b;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform .3s;
}

.information__body dd a:hover::after {
  transform: scale(1, 1);
}

.contact {
  background: white;
  padding: 50px 0 50px;
}

@media screen and (max-width: 768px) {
  .contact {
    padding: 30px 0 30px;
  }
}

.contact--inner {
  max-width: 800px;
}

.contact__document {
  display: flex;
  flex-flow: row nowrap;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .contact__document {
    flex-flow: column;
  }
}

.contact__document ul {
  width: 50%;
  padding-left: 18px;
}

@media screen and (max-width: 768px) {
  .contact__document ul {
    width: 100%;
    padding-left: 50px;
    margin-bottom: 20px;
  }
}

.contact__document ul li {
  position: relative;
}

.contact__document ul li:after {
  display: block;
  content: '';
  position: absolute;
  top: .5em;
  left: -1em;
  width: 8px;
  height: 3px;
  border-left: 2px solid #0D0D1B;
  border-bottom: 2px solid #0D0D1B;
  transform: rotate(-45deg);
}

.contact__document figure {
  width: 50%;
  text-align: right;
}

@media screen and (max-width: 768px) {
  .contact__document figure {
    width: 100%;
    text-align: center;
  }
}

.contact__btn {
  margin: 0 10px 40px;
}

.contact__btn a {
  display: block;
  width: 100%;
  color: white;
  background: #E02634;
  padding: 25px 0;
  text-align: center;
  font-size: 24px;
  font-size: 1.5rem;
  border-radius: 10px;
  transition: opacity 0.3s ease;
}

.contact__btn a:hover {
  opacity: 0.5;
}

.contact__box {
  max-width: 100%;
  margin: 0 10px;
  background: white;
  border: 1px solid #d0121b;
}

.contact__box__title {
  background: #d0121b;
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  color: white;
  padding: 10px 0;
}

.contact__box__address {
  display: flex;
  flex-flow: row nowrap;
}

@media screen and (max-width: 768px) {
  .contact__box__address {
    flex-flow: column;
  }
}

.contact__box__address dl {
  width: 50%;
  padding: 40px 0 0 50px;
}

@media screen and (max-width: 768px) {
  .contact__box__address dl {
    width: 100%;
    padding: 20px;
  }
}

.contact__box__address dl dt:nth-of-type(2) {
  margin-bottom: 5px;
}

.contact__box__address dl dd.contact--tel {
  font-size: 20px;
  font-size: 1.25rem;
  margin-bottom: 15px;
}

.contact__box__address dl dd.contact--tel span a {
  font-size: 36px;
  font-size: 2.25rem;
  color: darkorange;
}

.contact__box__address dl dd.contact--jma-address {
  font-size: 13px;
  font-size: 0.8125rem;
}

.contact__box__address dl dd.contact--jma-address a {
  display: inline-block;
  margin-bottom: 10px;
  transition: opacity 0.3s ease;
}

.contact__box__address dl dd.contact--jma-address a:hover {
  opacity: 0.5;
}

.contact__box__address figure {
  width: 50%;
}

@media screen and (max-width: 768px) {
  .contact__box__address figure {
    display: none;
  }
}

.contact__box__address figure img {
  width: 100%;
}

.footer {
  background-color: #fff;
  color: white;
}

@media screen and (max-width: 768px) {
  .footer {
    padding: 0 0 30px;
  }
}

.footer_logo {
  margin-bottom: 10px;
}

.footer--inner {
  max-width: 900px;
  display: flex;
  flex-flow: row wrap;
}

@media screen and (max-width: 768px) {
  .footer--inner {
    flex-flow: column;
    padding-left: 20px;
  }
}

.footer--inner>div {
  width: calc(100% / 4);
  padding: 0px 0 50px;
}

@media screen and (max-width: 768px) {
  .footer--inner>div {
    padding: 0px 0 30px;
  }
}

@media screen and (max-width: 768px) {
  .footer--inner>div {
    width: 100%;
  }
}

.footer--inner>div a {
  color: white;
  background: url(../img/icon_arrow_right.png) no-repeat left center;
  padding-left: 20px;
}

.footer--inner>div>ul>li {
  margin-top: 30px;
}

.footer--inner>div>ul>li:first-child {
  margin-top: 0;
}

.footer--inner>div>ul>li>a {
  font-size: 18px;
  font-size: 1.125rem;
}

.footer--inner>div>ul>li>dl dt a {
  font-size: 18px;
  font-size: 1.125rem;
}

.footer--inner>div>ul>li>dl dd {
  margin-top: 10px;
}

.footer--inner>div>ul>li>dl dd ul li {
  margin-top: 3px;
}

.footer--inner>div>ul>li>dl dd ul li a {
  font-size: 14px;
  font-size: 0.875rem;
  transition: opacity 0.3s ease;
}

.footer--inner>div>ul>li>dl dd ul li a:hover {
  opacity: 0.5;
}

.footer__logo {
  /* text-align: center; */
  margin-bottom: 10px;
}

.footer__logo img {
  width: 100px;
}

.footer__copyright {
  text-align: center;
  font-size: 12px;
  font-size: 0.75rem;
}

@media screen and (min-width: 769px) {
  .spOnly {
    display: none !important;
  }
}

#page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
}

#page-top a {
  display: block;
  width: 70px;
}

@media screen and (max-width: 768px) {
  #page-top a {
    width: 45px;
  }
}

#page-top a:hover {
  opacity: 0.5;
}

.page-top-link {
  text-align: right;
  padding-top: 20px;
  padding-bottom: 20px;
}

.page-top-link a {
  display: inline-block;
  background-color: #d0121b;
  color: white;
  padding: 3px 15px 3px 35px;
  position: relative;
}

.page-top-link a i {
  position: absolute;
  top: 5px;
  left: 5px;
}

body .table-style {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border: 1px solid #008FD4;
  background-color: white;
}

body .table-style tr {
  border-bottom: 1px solid #008FD4;
}

body .table-style tr td {
  border-left: 1px solid #008FD4;
  padding: 20px;
}

body .table-style tr .table-style__title {
  font-size: 20px;
  font-size: 1.25rem;
}

body .table-style tr .table-style__category {
  background-color: rgba(0, 143, 212, 0.2);
}

body .table-style tr .table-style__red {
  color: #E02634;
  font-style: italic;
}

body .table-style th {
  padding: 20px;
  background-color: rgba(0, 143, 212, 0.2);
}




.wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 50px auto 0;
}

@media screen and (max-width: 1024px) {
  .wrapper {
    max-width: 600px;
    padding: 20px;
  }
}

/* .wrapper div {
  width: 46.5%;
} */
.wrapper div .information {
  max-width: 550px;
  width: 100%;
}

.top_information {
  max-width: 550px;
  /* width: 46.5%; */
  margin: 25px 10px 40px;
}

.wid {
  max-width: 100% !important;
}

.top_information ul {
  overflow: auto;
  margin: 0 10px;
  max-height: 320px;
}

.top_information li {
  display: flex;
  align-content: flex-start;
  margin-bottom: 15px;
  padding-bottom: 12px;
  border-bottom: 1px dotted #ccc;
}

.top_information li time {
  min-width: 90px;
}

.top_information li.new time::before {
  display: block;
  color: #c00;
  line-height: 1;
  content: 'NEW';
}

.top_information li div b {
  display: inline-block;
  min-width: 120px;
  margin-bottom: 5px;
  margin-left: 20px;
  padding: 3px 5px;
  border-radius: 4px;
  color: #fff;
  line-height: 1;
  text-align: center;
  font-size: 1.0em;
}

.top_information li div b.info {
  background: #d0121b;
}

.top_information li div b.press {
  background: #73a808;
}

/* .top_information li div p {
  width: 450px;
} */
.top_information li div a {
  margin-left: 20px;
}


@media screen and (max-width:640px) {
  .top_information {
    max-width: none;
    width: auto;
    margin: 25px 5px 30px;
    /* padding-top: 5em; */
  }
}

@media screen and (max-width:414px) {
  .top_information {
    padding-top: 0em;
  }

  .top_information ul {
    max-height: 260px;
  }

  .top_information li {
    display: block;
    margin-bottom: 10px;
    padding-bottom: 5px;
  }

  .top_information li time {
    min-width: 80px;
    font-size: 1.1rem;
  }

  .top_information li div {
    display: inline;
  }

  .top_information li div b {
    display: inline-block;
    min-width: 100px;
    margin-bottom: 0;
    font-size: 1.0rem;
  }

  .top_information li div p a {
    display: block;
    padding: 10px 0;
  }
}

.information_topic {
  font-size: 26px;
  margin: 2em 0 1.5em;
  text-align: center;
  font-weight: bold;
}

.top_banners {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.top_banners>div {
  max-width: 560px;
  width: 46.5%;
  margin: 0 10px;
}


.top_banners ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.top_banners ul:after {
  content: "";
  display: block;
  width: 160px;
}

.top_banners li {
  overflow: hidden;
  max-width: 160px;
  margin-bottom: 5px;
  border-bottom: 0px
}

@media screen and (max-width:640px) {
  #top_information {
    max-width: none;
    width: auto;
    margin: 25px 5px 30px;
  }

  #top_information ul {
    max-height: 260px;
  }

  #top_information li {
    display: block;
    margin-bottom: 10px;
    padding-bottom: 5px;
  }

  #top_information li time {
    min-width: 80px;
    font-size: 1.1rem;
  }

  #top_information li div {
    display: inline;
  }

  #top_information li div b {
    display: inline-block;
    min-width: 100px;
    margin-bottom: 0;
    font-size: 1.0rem;
  }

  #top_information li div p a {
    display: block;
    padding: 10px 0;
  }
}

.em12 {
  margin-top: 12em !important;
}

@media screen and (max-width:768px) {
  .em12 {
    margin-top: 17em !important;
  }
}

@media screen and (max-width:414px) {
  .em12 {
    margin-top: 12em !important;
  }
}

.top_em11 {
  padding-top: 11em;
}

@media screen and (max-width:768px) {
  .top_em11 {
    padding-top: 17em !important;
  }
}


.mt0 {
  margin-top: 0px !important;
}

.mb0 {
  margin-bottom: 0px !important;
}

.pt0 {
  padding-top: 0px !important;
}

.pb0 {
  padding-bottom: 0px !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.pt60 {
  padding-top: 60px !important;
}

.pb60 {
  padding-bottom: 60px !important;
}

.mt70 {
  margin-top: 70px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.pt70 {
  padding-top: 70px !important;
}

.pb70 {
  padding-bottom: 70px !important;
}

.mt80 {
  margin-top: 80px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.pt80 {
  padding-top: 80px !important;
}

.pb80 {
  padding-bottom: 80px !important;
}

.mt90 {
  margin-top: 90px !important;
}

.mb90 {
  margin-bottom: 90px !important;
}

.pt90 {
  padding-top: 90px !important;
}

.pb90 {
  padding-bottom: 90px !important;
}

.mt100 {
  margin-top: 100px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

.pt100 {
  padding-top: 100px !important;
}

.pb100 {
  padding-bottom: 100px !important;
}

.mt150 {
  margin-top: 150px !important;
}

.pt240 {
  padding-top: 240px !important;
}

.mg5 {
  margin: 0 5px;
}

.mg20 {
  margin-right: 10px;
}

.left_side {
  text-align: left;
  margin-left: 30px;
}

.right_side {
  text-align: right;
  margin-right: 30px;
}

.footer_width {
  max-width: 1200px;
  margin: 0 auto;
}

.top_inline_img {
  width: 23%;
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .top_inline_img {
    display: none;
  }
}

.top_inline_img2 {
  width: 23%;
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .top_inline_img2 {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .top_inline_img3 {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .top_inline_img3 {
    width: 100%;
    display: inline-block;
  }
}

.top_inline_p {
  width: 45%;
  display: inline-block;
  vertical-align: top;
  margin: 0 15px;
  font-size: 90%;
  line-height: 50px;
}

@media screen and (max-width: 768px) {
  .top_inline_p {
    width: 100%;
  }
}

.top_inline_p span {
  font-size: 50%;
}

.wrapper>div {
  width: 46.5%;
}

@media screen and (max-width: 768px) {
  .wrapper>div {
    width: 100%;
  }
}

a:hover {
  opacity: 0.5 !important;
  transition: 0.2s !important;
}

.top_stage {
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
}

#interview h1 {
  margin: 0 auto;
  padding: 70px 30px;
  border-bottom: 1px dotted #999;
  font-weight: bold;
  font-size: 2.5rem;
  line-height: 1.3;
  font-family: 'Noto Sans JP', "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  letter-spacing: 0.05em;
  text-align: center;
  /* color: #fff; */
}

#interview h1 span {
  font-size: 1.8rem;
  vertical-align: middle;
}

@media screen and (max-width: 540px) {
  #interview h1 span {
    font-size: 1rem;
  }
}

.webiner_top h1 {
  margin: 0 auto;
  padding: 20px 30px 10px !important;
  border-bottom: 0px !important;
  font-weight: bold;
  font-size: 2.5rem;
  line-height: 1.3;
  font-family: 'Noto Sans JP', "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  letter-spacing: 0.05em;
  text-align: center;
  color: #dd551a !important;
  background-color: rgba(255, 255, 255, 0.95) !important;
}

#interview h2 span:first-of-type {
  margin: 0 25px 0 15px;
  padding: 20px 0;
  color: #333;
  font-weight: bold;
  font-size: 2em;
  line-height: 1.2;
  font-family: 'Noto Sans Japanese';
}

/* @media screen and (max-width: 768px) {
  #interview h2 span:first-of-type {
    display: block;
    margin: 0;
    padding: 2.67vw;
    background: #333;
    color: #fff;
    font-size: 1.6rem;
} */
#interview h2 span:last-of-type {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: flex-end;
  width: 150px;
  margin-left: auto;
  padding: 0 20px;
  background: #999;
  color: #fff;
}

#interview h2 span:last-of-type:before {
  position: absolute;
  top: 0;
  left: -25px;
  width: 50px;
  height: 100%;
  background: #999;
  transform: skewX(-25deg);
  content: '';
}

@media screen and (max-width: 768px) {
  #interview h2 span:last-of-type {
    display: none;
  }
}

#interview h2 b {
  position: relative;
  z-index: 2;
  color: #fff;
  font-weight: bold;
  font-size: 1em;
  line-height: 1.2;
  word-break: break-all;
  text-align: right;
}

#interview .interview_name_1 {
  background: #999;
  padding: 2px 5px;
  color: #fff;
  font-weight: bold;
  margin-bottom: 5px;
}

#interview .interview_comment {
  font-weight: bold;
  margin: 5px 0px;
  font-size: 1em;
  padding-bottom: 5px;
  border-bottom: #999 dotted 1px;
  letter-spacing: -1px;
}

#interview .interview_comment span {
  font-weight: normal;
}

#interview .interview_name_2 {
  font-weight: bold;
  font-size: 1.1em;
}

#interview .interview_representative {
  font-weight: bold;
  margin-left: 10px;
}

#interview .interview_representative span {
  margin-bottom: -10px;
  font-weight: normal;
}

#interview .interview_box {
  margin-bottom: 50px;
}

#interview .interview_box {
  background: #ebebeb;
  padding: 10px;
  height: calc(100% - 10px);
}

#interview .interview_box a {
  text-align: center;
}

#interview .interview_box img {
  margin-bottom: 10px;
}

#interview dd {
  margin-left: 10px;
  font-size: 1.0em;
}

#interview dd dl {
  margin-bottom: 10px;
}

#interview dd dt.zimukyoku {
  background: #ebebeb;
}

#interview dd dt {
  display: inline-block;
  min-width: 54px;
  margin: 5px 10px 5px 0;
  padding: 5px;
  border-radius: 5px;
  border-left: none;
  background: #d2eaf9;
  font-size: 0.9em;
  font-weight: bold;
  line-height: 1;
  text-align: center;
}

#interview dt {
  font-size: 1.2em;
  margin: 30px 0 10px;
  padding-left: 15px;
  border-left: #ccc 5px solid;
  font-weight: bold;
}

#interview dd>p {
  margin-bottom: 20px;
}

.interview_title_sub {
  justify-content: space-between;
  max-width: 1200px;
  margin: 50px auto 0;
}

@media screen and (max-width: 1024px) {
  .interview_title_sub {
    max-width: 800px;
  }
}

.interview_title_sub h3 {
  font-size: 1.6em;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .flex_none {
    display: none
  }
}

#interview .inner>p {
  margin: 25px 0 10px 30px;
}

#interview a {
  margin: 30px auto;
  /* width: 50%; */
}

a.box:not(.soon) {
  display: block;
  overflow: hidden;
  outline: none;
  position: relative;
  padding: 22px 10px;
  color: #333;
  font-size: 1.6rem;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: all .5s;
}

a.box:before,
a.box:after {
  position: absolute;
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  transition: all .5s;
}

a.box i.icon_arrow {
  position: absolute;
  top: 50%;
  left: 0;
  border: 8px solid transparent;
  border-left: 8px solid currentColor;
  transform: translateY(-50%);
  content: '';
}

[class^="icon_"],
[class*=" icon_"] {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-top: 5px;
  font-size: 10px;
  color: #0D0D1B;
}

a.box:not(.soon):after {
  right: 0;
  bottom: 0;
  border-right: 1px solid #333;
  border-bottom: 1px solid #333;
}

a.box:before,
a.box:after {
  position: absolute;
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  transition: all .5s;
}

a.box:before {
  top: 0;
  left: 0;
  border-top: 1px solid #333;
  border-left: 1px solid #333;
}

a.box:before,
a.box:after {
  position: absolute;
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  transition: all .5s;
}

a.box:not(.soon):hover {
  background-color: #333;
  color: #fff;
  transition: all .7s;
  opacity: 1.0 !important;
}

#interview dd>span {
  font-weight: bold;
}

#interview dt.interviewee02 {
  background: #d8f9d2;
}



#interview .inner>p {
  margin: 25px 0 10px 30px;
}

.link_block {
  width: 100%;
}

.interview_box a:hover {
  opacity: 0.5 !important;
  transition: 0.2s !important;
}

.tx_left {
  text-align: left !important;
}

.tx_center {
  text-align: center !important;
}

.tx_right {
  text-align: right !important;
}

.mini_moji {
  font-size: 0.8em;
}

.big_moji {
  font-size: 1.4em;
}

.big_moji_2 {
  font-size: 1.2em;
}

.white_bg {
  background: #fff;
  padding: 0px 20px 20px 20px;
}

/* .outline_show {
  margin-top: 50px;
} */
.outline_show img {
  margin-top: 30px;
  width: 600px;
}

.outline_show ul {
  margin-left: 1.5em;
}

.outline_show ul li {
  font-size: 1.3em;
  font-weight: 600;
  line-height: 1.2em;
  margin-top: 10px;
  letter-spacing: -1px;
}

.outline_show ul li span {
  font-size: 0.8em;
  font-weight: 300;
}

.outline_show h2 {
  font-size: 1.4em;
  font-weight: 600;
  background-color: #fff !important;
  letter-spacing: -1px;
  display: block !important;
  text-align: center;
}

@media screen and (max-width: 414px) {
  .outline_show h2 {
    text-align: left;
  }
}

.outline_show .outline_subtitle_1 {
  color: #475499;
}

.outline_show .outline_subtitle_2 {
  color: #d0121b;
}

.outline_show .outline_subtitle_3 {
  color: #df5f43;
}

.outline_show .outline_subtitle_4 {
  color: #de6a08;
}

.outline_show .outline_subtitle_5 {
  color: #0086d1;
}

.outline_show .outline_subtitle_6 {
  color: #d0121b;
}

.outline_show .outline_subtitle_7 {
  color: #8a62a1;
}

.outline_show h3 {
  background-color: #dd551a;
  color: #fff;
  font-weight: 600;
  padding: 3px 10px;
  margin-top: 20px;
}

.outline_p {
  padding: 0 20px;
}

.button_out {
  pointer-events: none;
}

#interview table {
  margin: 20px auto 0;
  border: 1px solid #0D0D1B;
  width: 100%;
}

#interview table th {
  width: 15%;
  padding: 10px;
  border: 1px solid #0D0D1B;
  vertical-align: middle;
  color: #fff;
  background: #999;
}

@media screen and (max-width: 540px) {
  #interview table th {
    width: 100%;
    display: inline-block;
  }
}

/* #interview .top_stage th {
  width: 15%;
  padding: 10px;
  border: 1px solid #0D0D1B;
  vertical-align: middle;
  font-weight: 300;
  color:#0D0D1B;
  background: #fff;
}
@media screen and (max-width: 540px) {
  #interview .top_stage th {
    width: 100%;
    display: inline-block;
  }
} */

#interview table td {
  width: 60%;
  padding: 10px 10px 10px 20px;
  border: 1px solid #0D0D1B;
}

@media screen and (max-width: 540px) {
  #interview table td {
    width: 100%;
    display: inline-block;
  }
}

#interview .top_stage td {
  width: 40%;
  vertical-align: middle;
  background: #fff;
}

@media screen and (max-width: 540px) {
  #interview .top_stage td {
    width: 100%;
    display: inline-block;
  }
}

.btn-flat-border {
  display: inline-block;
  padding: 1em 2em;
  text-decoration: none;
  background: #ffa600;
  color: white;
  border: solid 2px #ffa600;
  border-radius: 3px;
  transition: .2s;
  text-align: center;
  width: 50%;
  font-size: 1.6em;
}

@media screen and (max-width: 768px) {
  .btn-flat-border {
    width: 100%;
  }
}

.btn-flat-border2 {
  display: inline-block;
  padding: 1em 2em;
  text-decoration: none;
  background: #0aa7e6;
  color: white;
  border: solid 2px #0aa7e6;
  border-radius: 3px;
  transition: .2s;
  text-align: center;
  width: 50%;
  font-size: 1.6em;
}

@media screen and (max-width: 768px) {
  .btn-flat-border2 {
    width: 100%;
  }
}

h1 .btn-flat-border {
  display: inline-block;
  padding: 0.5em 1em;
  text-decoration: none;
  background: #ffa600;
  color: white;
  border: solid 2px #ffa600;
  border-radius: 3px;
  transition: .2s;
  text-align: center;
  width: 80%;
  font-size: 0.75em;
  font-weight: 300;
  letter-spacing: 0.8px;
}

.btn-flat-border:hover {
  color: #ffa600;
  background-color: #fff;
  border: solid 2px #ffa600;
  border-radius: 3px;
}

.exhibit_inline {
  width: 48%;
  display: inline-block;
  vertical-align: top;
}

@media screen and (max-width: 414px) {
  .exhibit_inline {
    width: 100%;
    text-align: center;
  }
}

.exhibit_box p span {
  padding: 3px 5px;
  background: #ffff00;
}

.exhibit_inline h2 {
  color: #fff;
  background: #0D0D1B !important;
  padding: 5px 10px;
  margin-bottom: 10px;
}

.exhibit_box h2 {
  font-size: 1.6em;
  background: #fff !important;
  margin-bottom: 20px;
  padding-left: 3em;
  text-indent: -3em;
}

.margin_auto {
  margin: 0 auto;
}

.transportation_flex {
  /* display: flex; */
}

.transportation_inline {
  padding: 15px;
  border: 2px solid #333;
  background: #d0121b;
  color: #fff;
  margin: 4px;
  width: 24%;
  display: inline-block;
  text-align: center;
  border-radius: 15px;
  font-weight: 600;
  font-size: 1.5em;
}

@media screen and (max-width: 1024px) {
  .transportation_inline {
    width: 48%;
  }
}

@media screen and (max-width: 414px) {
  .transportation_inline {
    width: 100%;
    margin: 5px 0px;
  }
}

.top_stage .topic_sentence {
  width: 80%;
  margin: 0 auto;
}

.topic_sentence {
  font-size: 1.4em;
}

.topic_sentence span {
  padding: 0px 5px;
  background: #ffff00;
  font-weight: 600;
}

.transportation_title {
  font-size: 4rem !important;
}

@media screen and (max-width: 540px) {
  .transportation_title {
    font-size: 2rem !important;
  }
}

.download_box {
  border: 1px solid #333;
  vertical-align: middle;
  display: table-cell;
}

.download_box img {
  vertical-align: middle;
}

#download .information_topic {
  border-bottom: solid 3px #d0121b;
  position: relative;
  font-size: 1.4em;
  margin-bottom: 30px;
  padding-top: 15px;
  color: #d0121b;
  width: 100%;
  background: #fff;
}

#download table {
  border: 0px;
  border-spacing: 20px 0;
  border-collapse: separate;
}

#download table tr {
  border: 0px;
}

@media screen and (max-width: 540px) {
  #download table tr {
    display: inline-block;
    width: 100%;
  }
}

#download table th {
  background: #fff;
  width: 50%;
  border: 1px solid #333;
}

#download table td {
  background: #fff;
  border: 0px;
  text-align: center;
  padding: 20px 30px;
  width: 40%;
}

@media screen and (max-width: 540px) {
  #download table td {
    display: inline-block;
    width: 100%;
  }
}

#download .dotted {
  border-bottom: 1px dotted #333;
  padding: 0 20px;
}

.water_table table th {
  color: #fff;
  background: #d0121b;
  padding: 10px;
}

.water_table table tr {
  color: #333;
  background: #daf2e8;
  padding: 5px;
  letter-spacing: -1px;
  border: 1px solid #d0121b;
}

.water_table table tr:nth-of-type(even) {
  color: #333;
  background: #fff;
  padding: 5px;
  letter-spacing: -1px;
  border: 1px solid #d0121b;
}

.water_table table td {
  border: 1px solid #d0121b;
  vertical-align: middle;
  text-align: left;
  padding: 3px;
  font-size: 0.9em;
  width: 35%;
}

.water_schdule {
  width: 50%;
  text-align: center;
  margin: 0 auto;
}

.water_schdule_title h2 {
  color: #fff;
  background: #d0121b;
  width: 100%;
  padding: 10px 5px;
}

.water_schdule_box {
  padding: 10px;
  border: 3px solid #daf2e8;
  border-radius: 10px;
  margin: 10px 0;
}

.water_schdule_topic {
  margin-top: 5px;
  padding: 5px;
  background: #d0121b;
  color: #fff;
}

.water_schdule_arart {
  padding: 5px;
  background: #ff0000;
  color: #fff;
}

.water_schdule_button {
  margin: 0 auto;
  text-align: center;
}

.footer_width p span {
  padding: 3px 5px;
  color: #fff;
  background: #d0121b;
}

.base_width {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .base_width {
    width: 90%;
  }
}

.base_width_lp {
  width: 100%;
  max-width: 700px !important;
  margin: 0 auto;
}

.inline_flex {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.inline_flex img {
  margin: 5px 10px;
}

.main_title {
  margin: 0 auto;
  padding: 50px 0 30px;
  font-weight: bold;
  font-size: 2.5rem;
  line-height: 1.3;
  font-family: 'Noto Sans Japanese';
  letter-spacing: 0.05em;
  text-align: center;
}

.booth_main_title {
  margin: 0 auto;
  color: red;
  padding: 30px 0 20px;
  font-weight: bold;
  font-size: 2.5rem;
  line-height: 1.3;
  font-family: 'Noto Sans Japanese';
  letter-spacing: 0.05em;
  text-align: center;
}

.booth_main_title .main_line {
  font-size: 70px;
  font-weight: bold;
  display: block;
}


@media screen and (max-width: 768px) {
  .main_title {
    font-size: 1.8em;
    padding: 60px 0 0px;
  }
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  max-width: 980px;
  margin-top: 20px;
  border-top: 1px solid #009944;
  border-bottom: 1px solid #009944;
}

table tr th {
  border-bottom: 1px dotted #114769;
  padding: 2px 0px;
  background-color: #009944;
  vertical-align: middle;
  color: #fff;
}

table td {
  border-bottom: 1px dotted #999;
  padding: 8px 15px;
}

.inline_2 {
  display: inline-block;
  width: 28%;
  vertical-align: middle;
}

.toparea {
  top: 15em;
  position: relative;
}

.exhibit_box_area {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.exhibit_flex {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.exhibit_box_area .exhibit_box {
  width: 48%;
  border: 4px solid #dd551a;
  margin: 0px 5px 10px;
  border-radius: 10px;
}

@media screen and (max-width: 768px) {
  .exhibit_box_area .exhibit_box {
    width: 100% !important;
  }
}

.exhibit_box_area .exhibit_box h3 {
  font-size: 1.6em;
  color: #fff;
  background-color: #dd551a;
  padding: 10px;
  line-height: 1em;
  letter-spacing: -0.8px;
}

.exhibit_box_area .exhibit_box h3 .new {
  color: #0D0D1B;
  background-color: #ffee00;
  padding: 3px 6px;
  margin-left: 10px;
  border-radius: 10px;
  font-size: 0.7em;
  vertical-align: top;
}

.exhibit_box_area .exhibit_box h3 .mini_moji {
  font-size: 0.6em !important;
  letter-spacing: -0.8px;
}

.exhibit_box_area .exhibit_box h4 {
  font-size: 1.2em;
  color: #fff;
  background-color: #dd551a;
  padding: 5px 10px;
}

.exhibit_box_area .exhibit_box ul {
  display: inline-block;
  width: 48%;
  padding: 10px;
  vertical-align: top;
  letter-spacing: -0.7px;
}

.exhibit_box_area .exhibit_box ul li span {
  color: #dd551a;
}

.exhibit_box img {
  width: 48%;
  padding: 5px 2px;
}

@media screen and (max-width: 768px) {
  .exhibit_box img {
    width: 100%;
    text-align: center;
  }
}

.exhibit_box_area .exhibit_box:nth-of-type(1) {
  width: 48%;
  border: 4px solid #a47230;
  margin: 0px 5px 10px;
  border-radius: 10px;
}

.exhibit_box_area .exhibit_box:nth-of-type(2) {
  width: 48%;
  border: 4px solid #d92f27;
  margin: 0px 5px 10px;
  border-radius: 10px;
}

.exhibit_box_area .exhibit_box:nth-of-type(3) {
  width: 48%;
  border: 4px solid #172a88;
  margin: 0px 5px 10px;
  border-radius: 10px;
}

.exhibit_box_area .exhibit_box:nth-of-type(4) {
  width: 48%;
  border: 4px solid #eca016;
  margin: 0px 5px 10px;
  border-radius: 10px;
}

.exhibit_box_area .exhibit_box:nth-of-type(5) {
  width: 48%;
  border: 4px solid #27afd2;
  margin: 0px 5px 10px;
  border-radius: 10px;
}

.exhibit_box_area .exhibit_box:nth-of-type(6) {
  width: 48%;
  border: 4px solid #1398a0;
  margin: 0px 5px 10px;
  border-radius: 10px;
}

.exhibit_box_area .exhibit_box:nth-of-type(7) {
  width: 48%;
  border: 4px solid #0c753f;
  margin: 0px 5px 10px;
  border-radius: 10px;
}

.exhibit_box_area .exhibit_box:nth-of-type(8) {
  width: 48%;
  border: 4px solid #8fc31f;
  margin: 0px 5px 10px;
  border-radius: 10px;
}

.exhibit_box_area .exhibit_box .type1 h3 {
  font-size: 1.6em;
  color: #fff;
  background-color: #a47230;
  padding: 10px;
  line-height: 1em;
  letter-spacing: -0.8px;
}

.exhibit_box_area .exhibit_box .type1 h4 {
  font-size: 1.2em;
  color: #fff;
  background-color: #a47230;
  padding: 5px 10px;
}

.exhibit_box_area .exhibit_box .type1 ul li span {
  color: #a47230;
}

.exhibit_box_area .exhibit_box .type2 h3 {
  font-size: 1.6em;
  color: #fff;
  background-color: #d92f27;
  padding: 10px;
  line-height: 1em;
  letter-spacing: -0.8px;
}

.exhibit_box_area .exhibit_box .type2 h4 {
  font-size: 1.2em;
  color: #fff;
  background-color: #d92f27;
  padding: 5px 10px;
}

.exhibit_box_area .exhibit_box .type2 ul li span {
  color: #d92f27;
}

.exhibit_box_area .exhibit_box .type3 h3 {
  font-size: 1.6em;
  color: #fff;
  background-color: #172a88;
  padding: 10px;
  line-height: 1em;
  letter-spacing: -0.8px;
}

.exhibit_box_area .exhibit_box .type3 h4 {
  font-size: 1.2em;
  color: #fff;
  background-color: #172a88;
  padding: 5px 10px;
}

.exhibit_box_area .exhibit_box .type3 ul li span {
  color: #172a88;
}

.exhibit_box_area .exhibit_box .type4 h3 {
  font-size: 1.6em;
  color: #fff;
  background-color: #eca016;
  padding: 10px;
  line-height: 1em;
  letter-spacing: -0.8px;
}

.exhibit_box_area .exhibit_box .type4 h4 {
  font-size: 1.2em;
  color: #fff;
  background-color: #eca016;
  padding: 5px 10px;
}

.exhibit_box_area .exhibit_box .type4 ul li span {
  color: #eca016;
}

.exhibit_box_area .exhibit_box .type5 h3 {
  font-size: 1.6em;
  color: #fff;
  background-color: #27afd2;
  padding: 10px;
  line-height: 1em;
  letter-spacing: -0.8px;
}

.exhibit_box_area .exhibit_box .type5 h4 {
  font-size: 1.2em;
  color: #fff;
  background-color: #27afd2;
  padding: 5px 10px;
}

.exhibit_box_area .exhibit_box .type5 ul li span {
  color: #27afd2;
}

.exhibit_box_area .exhibit_box .type6 h3 {
  font-size: 1.6em;
  color: #fff;
  background-color: #1398a0;
  padding: 10px;
  line-height: 1em;
  letter-spacing: -0.8px;
}

.exhibit_box_area .exhibit_box .type6 h4 {
  font-size: 1.2em;
  color: #fff;
  background-color: #1398a0;
  padding: 5px 10px;
}

.exhibit_box_area .exhibit_box .type6 ul li span {
  color: #1398a0;
}

.exhibit_box_area .exhibit_box .type7 h3 {
  font-size: 1.6em;
  color: #fff;
  background-color: #0c753f;
  padding: 10px;
  line-height: 1em;
  letter-spacing: -0.8px;
}

.exhibit_box_area .exhibit_box .type7 h4 {
  font-size: 1.2em;
  color: #fff;
  background-color: #0c753f;
  padding: 5px 10px;
}

.exhibit_box_area .exhibit_box .type7 ul li span {
  color: #0c753f;
}

.exhibit_box_area .exhibit_box .type8 h3 {
  font-size: 1.6em;
  color: #fff;
  background-color: #8fc31f;
  padding: 10px;
  line-height: 1em;
  letter-spacing: -0.8px;
}

.exhibit_box_area .exhibit_box .type8 h4 {
  font-size: 1.2em;
  color: #fff;
  background-color: #8fc31f;
  padding: 5px 10px;
}

.exhibit_box_area .exhibit_box .type8 ul li span {
  color: #8fc31f;
}



.food__visit__subUnit {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
}

@media screen and (max-width: 414px) {
  .food__visit__subUnit {
    display: inline-block;
  }
}

.food__visit__define2 {
  width: 48%;
  font-size: 0.8em;
  padding: 0 10px;
}

@media screen and (max-width: 414px) {
  .food__visit__define2 {
    width: 100%;
  }
}

.food__visit__define2 dt {
  clear: left;
  float: left;
  width: 18em;
  letter-spacing: -0.8px;
  width: 100%;
  border-bottom: 1px solid #eee;
}

@media screen and (max-width: 414px) {
  .food__visit__define2 dt {
    width: 100%;
  }
}

.food__visit__define2__title {
  font-size: 1.1em;
  font-weight: bold;
  text-align: center;
  color: #e32b37;
}


.application_area table tr {
  border: 1px solid #d0121b;
}

.application_area table tr td {
  border-top: 5px solid #c5c5c5;
  border-bottom: 5px solid #c5c5c5;
  border-left: 5px solid #c5c5c5;
  border-right: 5px solid #c5c5c5;
}

.ver_mid {
  vertical-align: middle;
  text-align: center;
}


.application_area .application_time_box_area {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

.application_area .topic_moji {
  font-size: 1.4em;
  padding-left: 5px;
}

.application_area .application_time_box_area .application_time_box {
  max-width: 200px;
  min-width: 150px;
  border: 3px solid #dd551a;
  margin: 5px;
  min-height: 170px;
}

#hkd .application_area .application_time_box_area .application_time_box {
  max-width: 200px;
  min-width: 150px;
  border: 3px solid #d0121b;
  margin: 5px;
  min-height: 170px;
}

.application_area .application_time_box_area .application_time_box h4 {
  text-align: center;
  color: #fff;
  background-color: #dd551a;
  padding: 5px;
}

#hkd .application_area .application_time_box_area .application_time_box h4 {
  text-align: center;
  color: #fff;
  background-color: #d0121b;
  padding: 5px;
}

.application_area .application_time_box_area .application_time_box h5 {
  text-align: center;
  padding: 2.5px 5px;
}

.application_area .application_time_box_area .application_time_box p {
  padding: 0 5px 5px;
  max-width: 160px;
}


.application_cost_area table {
  margin: 0;
}

.application_cost_area table tr {
  border: 1px solid #d0121b;
  text-align: center;
}

.application_cost_area table tr th {
  border: 1px solid #d0121b;
  background-color: #facfd2;
}

@media screen and (max-width: 414px) {
  .application_cost_area table tr th {
    font-size: 0.8em;
  }
}

#kyushu .application_cost_area table tr th {
  border: 1px solid #dd551a;
  background-color: #ec7f51;
}

@media screen and (max-width: 414px) {
  #kyushu .application_cost_area table tr th {
    font-size: 0.8em;
  }
}

.application_cost_area table tr td {
  border: 1px solid #d0121b;
}

@media screen and (max-width: 414px) {
  .application_cost_area table tr td {
    font-size: 0.8em;
  }
}

.template_inline {
  display: inline-block;
  width: 48%;
  vertical-align: top;
}

@media screen and (max-width: 414px) {
  .template_inline {
    width: 100%;
  }
}

.template_inline_m {
  display: inline-block;
  width: 48%;
  vertical-align: middle;
}

@media screen and (max-width: 414px) {
  .template_inline_m {
    width: 100%;
  }
}

.option_title {
  font-size: 1.2em;
  padding: 5px 10px;
  color: #fff;
  background-color: #d0121b;
  text-align: center;
}

.option_title .new {
  color: #0D0D1B;
  background-color: #fff;
  padding: 2px 10px;
  margin-left: 10px;
  border-radius: 10px;
}

#kyushu .option_title {
  font-size: 1.2em;
  padding: 5px 10px;
  color: #fff;
  background-color: #ec7f51;
  text-align: center;
}

.mg_auto {
  margin: 0 auto;
  display: inline-block;
}

.option_table .option_table_main {
  border: none;
}

.option_table .option_table_main tr {
  border: none;
}

.option_table .option_table_main tr th {
  border: none !important;
  color: #fff;
  padding: 3px 10px;
  background-color: #fff !important;
  vertical-align: top;
}

@media screen and (max-width: 414px) {
  .option_table .option_table_main tr th {
    width: 100%;
    display: inline-block;
  }
}

.option_table .option_table_main tr th p {
  background-color: #009944;
  border-radius: 15px;
  padding: 5px;
}

.option_table .option_table_main tr td {
  border: none;
  text-align: left;
}

@media screen and (max-width: 414px) {
  .option_table .option_table_main tr td {
    width: 100%;
    display: inline-block;
  }
}

.option_table .option_table_sub table {
  margin: 0;
}

.option_table .option_table_sub table tr {
  border: 1px solid #d0121b !important;
  text-align: center !important;
}

.option_table .option_table_sub table tr th {
  border: 1px solid #d0121b !important;
  background-color: #facfd2 !important;
  color: #0D0D1B !important;
}

.option_table .option_table_sub table tr td {
  border: 1px solid #d0121b !important;
  text-align: center !important;
}

#kyushu .option_table .option_table_sub table tr th {
  border: 1px solid #dd551a !important;
  background-color: #ec7f51 !important;
  color: #0D0D1B !important;
}

#kyushu .option_table .option_table_sub table tr td {
  border: 1px solid #dd551a !important;
  text-align: center !important;
}

.osusume_box_area {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.osusume_box {
  max-width: 250px;
  margin: 10px;
}

.osusume_box span {
  font-size: 0.9em;
}

/* @media screen and (max-width: 963px) {
  .telnumber {
    display: none!important;
  }
}
@media screen and (max-width: 820px) {
  .header_none {
    display: none!important;
  }
}
@media screen and (min-width: 820px) {
  .header_open {
    display: none!important;
  }
}
@media screen and (max-width: 819px) {
  .header_open {
    display: inline!important;
  }
} */

.packageplan a {
  text-align: center;
  padding: 20px;
  border: 1px solid #a5a5a5;
  display: block;
  max-width: 350px;
  margin: 20px auto;
}

.red_color {
  color: #c00;
}

.blue_color {
  color: #009944;
}

.btn_flex {
  display: flex;
  flex-wrap: wrap;
}

.btn_flex_2 {
  display: flex;
  flex-wrap: wrap;
}

.btn_flex_2 .btn {
  max-width: 1000px !important;
  min-width: 995px !important;
}

.btn_flex_2 .btn a {
  padding: 10px;
  color: #fff;
  background-color: #dd551a;
  border: 2px solid #dd551a;
  min-width: 500px;
  width: 100%;
  display: block;
  font-weight: 600;
}

.top_area {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.top_area .sub_area {
  margin: 0 10px;
  width: 47%;
}

@media screen and (max-width: 686px) {
  .top_area .sub_area {
    width: 100%;
  }
}

.top_area .btn {
  margin: 0px auto 0;
  max-width: 490px;
  border: 2px solid #fff;

  padding: 10px;
  color: #fff;
  background-color: #dd551a;
  border: 2px solid #dd551a;
  /* min-width: 500px; */
  width: 100%;
  max-width: 500px;
  display: block;
}

.top_area .btn a {
  color: #fff;
}

@media screen and (max-width: 500px) {
  .top_area .btn a {
    min-width: 0px;
    width: 100%;
  }
}

.top_area .btn a:hover {
  color: #dd551a;
  background-color: #fff;
  border: 2px solid #dd551a;
  opacity: 1 !important;
}

.dld {
  display: inline-block;
  width: 48%;
  margin-bottom: 30px;
  vertical-align: top;
}

#logo {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
}

#logo #dlbtn p {
  margin-left: 20px;
}

@media screen and (min-width: 769px) {
  #top_news .title_area {
    width: 20%;
    float: left;
  }
}

@media screen and (max-width: 768px) {
  .top_wrap {
    padding: 0 0 40px !important;
  }
}

#top_news .title_area h3 {
  text-align: left;
  font-size: 26px;
  margin: 2em 0 1.5em;
  text-align: center;
  font-weight: bold;
}

.c_agro,
.site_color {
  color: #009944;
}

.f16em {
  font-size: 1.6em;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-thumb {
  background-color: #E0E0E0;
  border-radius: 10px;
  box-shadow: none;
}

::-webkit-scrollbar-track {
  background: white;
  border: none;
  border-radius: 10px;
  box-shadow: inset 0 0 2px #777;
}

@media screen and (min-width: 769px) {
  #top_news .text_area {
    width: 80%;
    float: right;
    overflow-y: auto;
    max-height: 360px;
  }
}

@media screen and (max-width: 768px) {
  #top_news .text_area {
    overflow-y: auto;
    max-height: 190px;
  }
}

@media screen and (min-width: 769px) {
  #news_list dt {
    float: left;
    width: 120px;
    clear: both;
    padding-top: 10px;
  }
}

@media screen and (min-width: 769px) {
  #news_list dd {
    padding: 10px 20px 10px 130px;
    display: block;
  }
}

.list_border {
  border-bottom: 1px solid #ccc;
  margin-right: 1.5em;
  padding-bottom: 6px;
}

.red {
  color: #c00 !important;
}

.f08em {
  font-size: 0.8em;
}

.cat {
  font-size: .8em;
  background: #009944;
  color: #fff;
  padding: 2px 1em;
  margin-right: 5px;
  border-radius: 5px;
}

.clearfix:after {
  display: block;
  visibility: hidden;
  clear: both;
  height: 0;
  content: " ";
  font-size: 0;
}

.inner {
  width: 1400px;
  max-width: 100%;
  display: block;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .inner {
    padding: 0 10px;
  }
}

.banner_flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}

.banner_flex img {
  margin: 0 1em;
  width: 500px;
}

@media screen and (max-width: 1064px) {
  .banner_flex img {
    margin: 0;
    width: 100%;
  }
}

@media screen and (max-width: 1064px) {
  .banner_flex div:nth-of-type(2) {
    margin: 1em 0 0;
  }
}

/* .bg_yellow {
  background: #fffcd1;
  background-image: url(../../kyushu/common/img/bg.jpg);
} */
.bg_other {
  background: #fff;
}

.w960 {
  width: 960px !important;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 10px;
  box-sizing: border-box;
}

.lp_exhibit_flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.lp_exhibit_flex p {
  background-color: #fff;
  padding: 10px;
  border-radius: 10px;
  margin: 0.5em;
}

.lp_exhibit_flex p img {
  width: 100%;
  max-width: 250px;
}

@media screen and (min-width: 500px) {
  .bottom_links {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    display: flex;
  }
}

#lp_outline h3 {
  font-size: 26px;
  margin: 2em 0 1.5em;
  text-align: center;
  font-weight: bold;
  padding-top: 40px;
}

.lp_outline_inline h4 {
  font-weight: bold;
  margin-top: 2em;
  margin-bottom: 0.8em;
  font-size: 1.3em;
}

.lp_exhibit_flex .lp_outline_inline:nth-of-type(1) {
  padding: 15px;
  background: #fff;
  border: 7px solid #009944;
  margin: 20px 0.5em;
  min-width: 400px;
}

.lp_exhibit_flex .lp_outline_inline:nth-of-type(1) p {
  padding: 10px;
  background: #fff;
  border: 2px solid #009944;
  margin: 20px;
  font-weight: 600;
}

.lp_exhibit_flex .lp_outline_inline:nth-of-type(1) h4 span {
  padding: 5px;
  color: #fff;
  background: #009944;
  margin: 10px 10px 10px 0;
}

.lp_exhibit_flex .lp_outline_inline:nth-of-type(1) p a {
  color: #009944;
  font-weight: 600;
}

.lp_exhibit_flex .lp_outline_inline:nth-of-type(2) {
  padding: 15px;
  background: #fff;
  border: 7px solid #d0121b;
  margin: 20px 0.5em;
  min-width: 400px;
}

.lp_exhibit_flex .lp_outline_inline:nth-of-type(2) p {
  padding: 10px;
  background: #fff;
  border: 2px solid #d0121b;
  margin: 20px;
  font-weight: 600;
}

.lp_exhibit_flex .lp_outline_inline:nth-of-type(2) h4 span {
  padding: 5px;
  color: #fff;
  background: #d0121b;
  margin: 10px 10px 10px 0;
}

.lp_exhibit_flex .lp_outline_inline:nth-of-type(2) p a {
  color: #d0121b;
  font-weight: 600;
}

@media screen and (min-width: 500px) {
  .bottom_links {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    display: flex;
  }
}

.bottom_links li {
  padding: 0 10px 10px;
  width: 100%;
  box-sizing: border-box;
}

.bottom_links li a {
  border-radius: 5px;
  text-align: center;
  font-weight: bold;
  display: block;
  background: #2f7b35;
  padding: 15px 10px;
  font-size: 1.2em;
  padding: 10px;
  color: #fff;
  max-width: 400px;
  margin: 0 auto;
}

.bottom_links li a:hover,
.site_fi .bottom_links li a:hover {
  background: #1a1a1a;
  text-decoration: none;
  color: #ffff00;
  opacity: 1.0 !important;
}

.mini_header_sub {
  font-size: .8em;
  background: #009944;
  color: #fff;
  padding: 1px 1em;
  margin-right: 5px;
  border-radius: 5px;
}

.flex_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.flex_list img {
  margin: 1em;
}

.bottom_wrap {
  /* background: #fffcd1; */
  padding-top: 50px;
  padding-bottom: 50px;
  margin-top: 20px;
}

#footer {
  /* padding: 30px 0; */
  padding: 30px 10px;
  color: #1a1a1a;
}

#footer ul {
  width: 25%;
  float: left;
  padding-right: 1em;
  box-sizing: border-box;
}

@media screen and (max-width: 782px) {
  #footer ul {
    width: 100%;
  }
}

#footer ul li {
  margin-bottom: 0.5em;
  padding-left: 1em;
  box-sizing: border-box;
}

#footer ul li a {
  color: #1a1a1a;
  font-size: 14px;
  padding-left: 1.5em;
  box-sizing: border-box;
  display: block;
}

#footer ul li a:before {
  margin: 0 0.5em 0 0;
  content: '\f0da';
  font-family: 'Font Awesome 5 Free';
  color: #009944;
  font-weight: 900;
  margin-left: -1em;
}

#foot_bar {
  line-height: 50px;
  background: #2f7b35;
  color: #fff;
}

#foot_bar p {
  margin-bottom: 0;
  text-align: center;
  font-size: .9em;
}

.footer_contact {
  background: #1a1a1a;
  text-align: center;
  padding: 30px 0 10px;
}

.footer_contact p {
  color: #fff;
  padding-bottom: 1em;
}

.b {
  font-weight: bold !important;
}

.f14em {
  font-size: 1.4em;
}

@media screen and (min-width: 769px) {
  .w1050 {
    width: 1050px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 10px;
  }
}

@media screen and (min-width: 769px) {
  .w1200 {
    width: 1200px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 10px;
  }
}

.tokyo_img_area {
  border: 2px solid #009944;
}

.kyushu_img_area {
  /* border: 2px solid #d0121b; */
  margin-bottom: 20px;
}

.kyushu_img_area h3,
.tokyo_img_area h3 {
  font-size: 26px;
  margin-bottom: 10px;
  text-align: center;
  font-weight: bold;
  text-align: center;
}

.img_area_memo {
  max-width: 500px;
  text-align: center;
  margin: 0 auto;
}

.img_area_memo p {
  display: inline-block;
  text-align: left;
}

#outline {
  width: 100%;
  max-width: 940px;
  margin: 4em auto;
}

.contents {
  padding: 0 20px;
}

.contents h3 {
  font-size: 26px;
  text-align: center;
  font-weight: bold;
}

.contents h3:before {
  content: '\f4d8';
  color: #009944;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  padding-right: 5px;
  opacity: .4;
}

.top_msg_img {
  width: 30%;
  max-width: 140px;
  float: right;
  margin-left: 1em;
}

.gnav_wrap {
  background: #2f7b35;
  color: #2f7b35;
  box-shadow: 0px 9px 3px -3px rgb(0 0 0 / 10%);
}

#list table {
  width: 100%;
}

#list #outline_table_k table {
  max-width: 1050px;
}

#list table tr {
  border-bottom: 1px solid #2f7b35;
}

#list table tr:nth-child(1) {
  border-top: 1px solid #2f7b35;
}

#list table th {
  border: 0px;
  background: #009944;
  padding: 5px;
  color: #fff !important
}

#list table td {
  border: 0px;
  padding: 0.5em;
  vertical-align: middle;
  font-size: 0.95em;
}

#outline_table h3 {
  font-size: 26px;
  text-align: center;
  font-weight: bold;
}

#outline_table .table_outline th {
  background: #009944;
  min-width: 10em;
  color: #fff;
  font-weight: normal;
  padding: 1em 0.5em;
  border: 1px solid #2f7b35;
}

#outline_table .table_outline td {
  background: #fff;
  border: 1px solid #2f7b35;
  vertical-align: middle;
}

#outline_table .table_outline .exhibition_flex_attend li {
  margin-right: 20px;
}

#merit_kyushu h3 {
  font-size: 26px;
  text-align: center;
  font-weight: bold;
}

.w50_l img,
.w50_r img {
  margin: 1em;
}

@media screen and (min-width: 769px) {
  .w50_l {
    width: 50%;
    float: left;
  }
}

@media screen and (min-width: 769px) {
  .w50_r {
    width: 50%;
    float: right;
  }
}

.btn a {
  padding: 0.5em;
  color: #fff !important;
  background: #009944;
  border-radius: 5px;
  width: 400px;
  max-width: 95%;
  text-align: center;
  margin: 20px auto 20px;
  display: block;
  box-sizing: border-box;
}

.btn a:hover,
.btn_l a:hover {
  color: #333 !important;
  background: #ccc;
  text-decoration: none;
  opacity: 1;
  transition: 0.2s;
}

.f12em {
  font-size: 1.2em;
}

#list .table_n {
  width: 12%;
  vertical-align: middle;
}

#list .table_img {
  width: 9%;
  vertical-align: middle;
}

#list table tr:nth-child(1) {
  border-top: 1px solid #2f7b35;
}

#list table tr {
  border-bottom: 1px solid #2f7b35;
  vertical-align: middle;
}

.flex_img {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}



#attend {
  width: 100%;
  max-width: 1200px;
  margin: 4em auto;
}



#exhibition .gm {
  width: 100%;
  margin: 0 auto;
}

#exhibition #title_area.title_exhibition {
  position: relative;
  height: 140px;
}

#exhibition #title_area {
  height: 160px;
  /* background: url(../../common/img/bg_title.jpg); */
  background-color: #fff;
  background-size: cover;
  color: #fff;
}

#exhibition #title_area .inner {
  height: 100%;
  display: table;
}

#exhibition #title_area .title_wrap {
  display: table-cell;
  vertical-align: middle;
  padding: 0 5px;
}

#exhibition #title_area .inner .title_wrap h2 {
  line-height: 2;
  color: #000;
  text-align: center;
  font-size: 28px;
  font-weight: 300;
}

#exhibition #title_area.title_exhibition h2 img {
  /* max-height: 60px; */
  z-index: 10;
}

@media screen and (min-width: 769px) {
  .catch {
    text-align: center;
  }
}

h4.sec_title {
  background: #384174 !important;
  color: #fff;
  font-size: 1.3em;
  padding: 0.5em 1em;
}

#exhibition section .catch {
  font-size: 2em;
}

#exhibition h5 {
  font-size: 1.15em;
}

.line_yellow {
  background: linear-gradient(transparent 60%, #fff999 60%);
}

#exhibition #gm .c {
  color: #dd6b66 !important;
  font-weight: 600;
}

#exhibition #gm .bg_c {
  background: #dd6b66 !important;
  color: #fff;
  font-size: 1.3em;
}

#exhibition #livestock .c {
  color: #528736 !important;
  font-weight: 600;
}

#exhibition #livestock .bg_c {
  background: #528736 !important;
  color: #fff;
  font-size: 1.3em;
}

#exhibition #product .c {
  color: #009944 !important;
  font-weight: 600;
}

#exhibition #product .bg_c {
  background: #009944 !important;
  color: #fff;
  font-size: 1.3em;
}

#exhibition #veg .c {
  color: #F39800 !important;
  font-weight: 600;
}

#exhibition #veg .bg_c {
  background: #F39800 !important;
  color: #fff;
  font-size: 1.3em;
}

#exhibition #smart .c {
  color: #036eb8 !important;
  font-weight: 600;
}

#exhibition #smart .bg_c {
  background: #036eb8 !important;
  color: #fff;
  font-size: 1.3em;
}

#exhibition #process .c {
  color: #E60040 !important;
  font-weight: 600;
}

#exhibition #process .bg_c {
  background: #E60040 !important;
  color: #fff;
  font-size: 1.3em;
}

#exhibition #wsw .c {
  color: #126736 !important;
  font-weight: 600;
}

#exhibition #wsw .bg_c {
  background: #126736 !important;
  color: #fff;
  font-size: 1.3em;
}



#cost {
  width: 100%;
  max-width: 1500px;
  margin: 4em auto;
}

.w800 {
  width: 800px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 10px;
  box-sizing: border-box;
}

.w900 {
  width: 900px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 10px;
  box-sizing: border-box;
}

#cost .outline_box {
  border: 5px solid #009944;
  background-color: #FFF;
  color: #009944;
  padding: 15px;
}

#cost .outline_box_flex {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
}

.h_400 img {
  height: 410px;
}

#cost .outline_box_l {
  border: 5px solid #009944;
  background-color: #FFF;
  color: #009944;
  padding: 15px;
}

#cost .schedule .schedule_area {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#cost .schedule .schedule_area dl {
  border: 2px solid #009944;
  background-color: #FFF;
  color: #009944;
  padding: 0 0 5px 0;
  width: 18%;
}

#cost .schedule .schedule_area dl dt {
  border: 2px solid #009944;
  background-color: #009944;
  color: #FFF;
  text-align: center;
  font-weight: 600;
}

#cost .schedule .schedule_area dl dd {
  text-align: center;
  padding: 10px;
  vertical-align: middle;
}

.table_mask {
  position: relative;
  margin: 0;
}

.caption {
  background: rgba(0, 0, 0, .4);
  font-family: "sans-serif";
  font-size: 1.2em;
  color: red;
  height: 9em;
  left: auto;
  line-height: 9;
  overflow: hidden;
  padding: 0.5em;
  position: absolute;
  text-align: center;
  text-shadow: 1px 1px 1px rgb(255 255 255 / 20%);
  top: 5%;
  white-space: nowrap;
  width: 100%;
  font-weight: 600;
}

.booth table {
  width: 100%;
  max-width: 100% !important;
}

.booth table tr th {
  background: #fffcd1;
  text-align: center;
  color: #000;
}

.width50 {
  width: 50%;
}

#cost th,
#cost td {
  padding: 1em 0.5em;
  border: 1px solid #ccc;
}

#cost .booth table tr td {
  text-align: center;
  background-color: #fff;
}

#cost .booth_flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.bg_c_booth {
  background: #009944 !important;
  color: #fff;
  padding: 10px;
  text-align: center;
}

.bg_c_booth span {
  padding: 3px 5px;
  background: #fff;
  color: #ff0000;
  margin-left: 1em;
}

#cost h4 {
  font-weight: bold;
  margin-top: 2em;
  margin-bottom: 0.8em;
  font-size: 1.3em;
}

.smartDl_item {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin: 0 10px;
  padding: 10px;
  /* border: 1px solid #eee; */
  text-align: center;
  overflow: hidden;
}

.booth dl {
  clear: both;
  margin: 10px 0;
  overflow: auto;
}

.booth dl dt {
  color: #FFF;
  background-color: #999;
  font-weight: bold;
  text-align: center;
  float: left;
  margin-right: 10px;
  border-radius: 10px;
  line-height: 1.3em;
  padding: 4px 0px;
  min-width: 200px;
}

.booth dl dd {
  color: #25282a;
  float: left;
  line-height: 1.5em;
  letter-spacing: -0.5px;
}

.rightline {
  margin-right: 14%;
}

h1 {
  font-size: 2.5em;
  line-height: 1.6;
  font-weight: bold;
}

.bg_red {
  background: #c00;
  color: #fff;
  padding: 0 0.5em;
}

#press h2 {
  font-weight: bold;
  margin-top: 2em;
  margin-bottom: 0.8em;
  font-size: 1.3em;
}

#list .table_logo {
  /* width: 200px; */
  text-align: center;
}

.fa-external-link-alt {
  font-size: .9em;
  margin-left: 0.5em;
}

.letter-space {
  letter-spacing: -0.8px;
}


#seminar {
  width: 100%;
  max-width: 1200px;
  margin: 4em auto;
}

#seminar h2 {
  font-size: 1.1em;
}

#seminar .seminar_name {
  font-size: 0.9em;
}

#seminar .seminar_name span {
  font-size: 1.15em;
  font-weight: 600;
}

#seminar table {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
}

#seminar table tr th {
  color: #fff;
  padding: 5px 0;
  background-color: #009944;
  border: 1px solid #e4e3e3;
}

#seminar table tr .time {
  width: 12% !important;
  text-align: center;
  vertical-align: middle;
}

#seminar table tr td {
  width: 44%;
  border: 1px solid #999;
  background-color: #fff;
}

#seminar .seminar_img img {
  float: right;
  width: 80px;
  margin: 0 0 0.2em 0.2em
}

#seminar .seminar_no span {
  color: #fff;
  padding: 0 0.5em;
  background-color: #009944;
}

#seminar .seminar_no span:nth-of-type(2) {
  background-color: #00af4e;
  padding: 0 1em;
}

.btn_red {
  display: inline-block;
  width: 100px;
  text-align: center;
  background: #cc0000e6;
  color: #fff;
  padding: 1px;
  border-radius: 10px;
  font-size: 0.8em;
}

.btn_blue {
  display: inline-block;
  width: 100px;
  text-align: center;
  background: #0047cce6;
  color: #fff;
  padding: 1px;
  border-radius: 10px;
  font-size: 0.8em;
}

.btn_purple {
  display: inline-block;
  width: 100px;
  text-align: center;
  background: #8100cce6;
  color: #fff;
  padding: 1px;
  border-radius: 10px;
  font-size: 0.8em;
}

.btn_gray a {
  pointer-events: none;
  padding: 0.5em;
  color: #fff !important;
  background: #666666;
  border-radius: 5px;
  width: 600px;
  max-width: 95%;
  text-align: center;
  margin: 20px auto 30px;
  display: block;
  box-sizing: border-box;
}


#attend_zone {
  width: 100%;
  margin: 0 auto;
}

.header_list {
  margin: 30px 0 50px;
  background: #fff;
  padding: 22px 20px 15px;
}

.header_list ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
}

.arrow_u {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  /* margin-left: 2em; */
  color: #333 !important;
  font-weight: 600;
  font-size: 1.2em;
  text-decoration: none;
}

.arrow_u:before {
  content: "\f078";
  font-family: FontAwesome;
  font-size: 1.0em;
  margin-right: 0.3em;
  color: #009944;
}

.atdTitle span {
  display: inline-block;
  color: #fff !important;
  background: rgba(204, 0, 0, .9);
  padding: 0.4em 1em 0.2em 1em;
  color: #fff;
}

.attend_box {
  margin-bottom: 10px;
  border: 2px solid #009944;
}

.attend_box p {
  padding: 20px 0;
  width: 100%;
  font-size: 1.2em;
  color: #009944;
  font-weight: bold;
  text-align: center;
}

#attend_zone .attend_inline {
  display: inline-block;
  width: 48%;
  vertical-align: middle;
}

#attend_zone dl dt {
  font-size: 1.1em;
  font-weight: bold;
  border-left: 5px solid #009944;
  padding-left: 5px;
  margin-bottom: 5px;
}

#attend_zone dl dd {
  margin-left: 10px;
  margin-bottom: 15px;
}

.visit_textbox {
  background-color: #fff;
  padding: 20px;
}

.visit_textbox tr td {
  vertical-align: middle;
}

.lp_top_btn_1 {
  border: 8px solid #f39800;
  border-radius: 15px;
}

.lp_top_btn_1 h1 {
  text-align: center;
}

.lp_top_btn_1 h2 {
  color: #fff;
  font-size: 1.8em;
  font-weight: 600;
  background-color: #f39800;
  padding: 0px 20px 5px;
  text-align: left;
}

.lp_top_btn_2 {
  border: 8px solid #13ae67;
  border-radius: 15px;
}

.lp_top_btn_2 h1 {
  text-align: center;
}

.lp_top_btn_2 h2 {
  color: #fff;
  font-size: 1.8em;
  font-weight: 600;
  background-color: #13ae67;
  padding: 0px 20px 5px;
  text-align: right;
}

.exhibition_flow_dl_flow {
  display: flex;
  max-width: 1000px;
  margin: 0 auto 20px;
  justify-content: space-around;
}

@media (max-width: 768px) {
  .exhibition_flow_dl_flow {
    display: block;
    margin: 0 auto 20px;
  }
}

.exhibition_flow_dl {
  display: flex;
  max-width: 1000px;
  margin: 0 auto 20px;
  justify-content: space-around;
  align-items: flex-end;
}

@media (max-width: 768px) {
  .exhibition_flow_dl {
    display: block;
    margin: 0 auto 20px;
  }
}

.exhibition_flow_dl_flow dt {
  background: #2f7b35;
  color: #fff;
  font-weight: 700;
  font-size: 1.2em;
  white-space: nowrap;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 326px;
  position: relative;
}

@media (max-width: 768px) {
  .exhibition_flow_dl_flow dt {
    width: 100%;
    width: 100%;
    padding: 10px;
  }
}

.exhibition_flow_dl_flow dt::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -12px;
  left: 0;
  width: 0px;
  height: 0px;
  margin: auto;
  border-style: solid;
  border-color: #2f7b35 transparent transparent transparent;
  border-width: 12px 12px 0 12px;
}

.exhibition_flow_dl_last dt::after {
  display: none;
}

.exhibition_flow_dl_flow dd {
  background: #fff;
  border: 1px solid #2f7b35;
  padding: 20px 40px;
  flex: 1;
  text-align: left;
}

@media (max-width: 768px) {
  .exhibition_flow_dl_flow dd {
    width: 100%;
    padding: 10px;
    flex: auto;
    position: relative;
  }
}

@media (max-width: 768px) {
  .exhibition_flow_dl_flow dd::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -12px;
    left: 0;
    width: 0px;
    height: 0px;
    margin: auto;
    border-style: solid;
    border-color: #2f7b35 transparent transparent transparent;
    border-width: 12px 12px 0 12px;
  }
}

@media (max-width: 768px) {
  .exhibition_flow_dl_last dd::after {
    display: none;
  }
}

.exhibition_flow_dl_flow dd h3 {
  font-size: 1.2em;
  font-weight: 700;
}

.exhibition_application_box {
  border: 1px solid #2f7b35;
  padding: 15px;
  background-color: #fff;
}

.application_area {
  border-collapse: initial;
  border-spacing: 2px;
  max-width: 800px;
  margin: 0 auto;
}

#lp_flow h4 {
  margin: 0;
  text-align: center;
}

.exhibition_flex ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.exhibition_flex ul li {
  width: 300px;
  margin: 30px 0;
}

.exhibition_flex ul li a {
  background-color: #fff;
  border-radius: 15px;
  padding: 20px 7px;
  vertical-align: middle;
}

.exhibition_flex_attend {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
}

#exhibition .exhibition_flex_attend li {
  margin: 15px;
}

/*PCでは無効（改行しない）*/
.sma {
  display: none;
}

/*スマートフォンでは有効（改行する）*/
@media screen and (max-width: 700px) {
  .sma {
    display: block;
  }

  .sma_inline {
    display: inline;
  }
}

.cost_flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.cost_flex img {
  margin: 10px 0;
}

.w1000 {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 10px;
}

.gray_out a {
  color: #aaaaaa !important;
  pointer-events: none;
}

#past ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  margin-top: 45px;
}

#past ul li a {
  border-radius: 5px;
  text-align: center;
  font-weight: bold;
  display: block;
  background: #2f7b35;
  padding: 15px 10px;
  font-size: 1.2em;
  padding: 10px;
  color: #fff;
  max-width: 400px;
  min-width: 250px;
  margin: 5px;
}

#past ul li a:hover {
  background: #1a1a1a;
  text-decoration: none;
  color: #ffff00;
  opacity: 1.0 !important;
}

.smart_flex {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center
}

.smart_flex .smart_flexbox {
  width: 48%;
  padding: 20px;
}

@media screen and (max-width:600px) {
  .smart_flex .smart_flexbox {
    width: 100%;
  }
}

.smart_flex .smart_flexbox table tr td {
  padding: 1em !important;
}

.smart_flex .smart_flexbox table tr th {
  background: #009944 !important;
  color: #fff !important;
  font-size: 1.2em;
  padding: 1em !important;
}

.b {
  font-weight: 600;
}



#interviews {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}

#interviews table {
  border-top: 0px !important;
  margin: 50px auto;
}

#interviews table tr td {
  border-bottom: 1px solid #000;
  border-top: 0px !important;
}

#interviews table .day {
  width: 20%;
}

.interviews_flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
}

.interview_title {
  padding: 15px;
  background-color: #fff;
}

#interviews .interview_name_1 {
  background: #999;
  padding: 2px 5px;
  color: #fff;
  font-weight: bold;
  margin-bottom: 5px;
}

#interviews .interview_comment {
  font-weight: bold;
  margin: 5px 0px;
  font-size: 1em;
  padding-bottom: 5px;
  border-bottom: #999 dotted 1px;
  letter-spacing: -1px;
}

#interviews .interview_comment span {
  font-weight: normal;
}

#interviews .interview_name_2 {
  font-weight: bold;
  font-size: 1.1em;
}

#interviews .interview_representative {
  font-weight: bold;
  margin-left: 10px;
}

#interviews .interview_representative span {
  margin-bottom: -10px;
  font-weight: normal;
}

#interviews .interview_box {
  margin-bottom: 50px;
}

#interviews .interview_box {
  background: #ebebeb;
  padding: 10px;
  height: calc(100% - 10px);
}

#interviews .interview_box a {
  text-align: center;
}

#interviews .interview_box img {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb50 {
  margin-bottom: 50px;
}

#interviews dd {
  margin-left: 10px;
  font-size: 1.0em;
}

#interviews dd dl {
  margin-bottom: 10px;
}

#interviews dd dt.zimukyoku {
  background: #ebebeb;
}

#interviews dd dt {
  display: inline-block;
  min-width: 54px;
  margin: 5px 10px 5px 0;
  padding: 5px;
  border-radius: 5px;
  border-left: none;
  color: #fff;
  background: #70c58c;
  font-size: 0.9em;
  font-weight: bold;
  line-height: 1;
  text-align: center;
}

#interviews dt {
  font-size: 1.2em;
  margin: 30px 0 10px;
  padding-left: 15px;
  border-left: #009944 5px solid;
  font-weight: bold;
}

#interviews dd>p {
  margin-bottom: 20px;
}

.interview_title_sub {
  justify-content: space-between;
  max-width: 1200px;
  margin: 50px auto 0;
}

@media screen and (max-width: 1024px) {
  .interview_title_sub {
    max-width: 800px;
  }
}

.interview_title_sub h3 {
  font-size: 1.6em;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .flex_none {
    display: none
  }
}

#interviews .inner>p {
  margin: 25px 0 10px 30px;
}

#interviews a {
  margin: 30px auto;
  /* width: 50%; */
}

a.box:not(.soon) {
  display: block;
  overflow: hidden;
  outline: none;
  position: relative;
  padding: 22px 10px;
  color: #333;
  font-size: 1.6rem;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: all .5s;
}

a.box:before,
a.box:after {
  position: absolute;
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  transition: all .5s;
}

a.box i.icon_arrow {
  position: absolute;
  top: 50%;
  left: 0;
  border: 8px solid transparent;
  border-left: 8px solid currentColor;
  transform: translateY(-50%);
  content: '';
}

[class^="icon_"],
[class*=" icon_"] {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a.box:not(.soon):after {
  right: 0;
  bottom: 0;
  border-right: 1px solid #333;
  border-bottom: 1px solid #333;
}

a.box:before,
a.box:after {
  position: absolute;
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  transition: all .5s;
}

a.box:before {
  top: 0;
  left: 0;
  border-top: 1px solid #333;
  border-left: 1px solid #333;
}

a.box:before,
a.box:after {
  position: absolute;
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  transition: all .5s;
}

a.box:not(.soon):hover {
  background-color: #333;
  color: #fff;
  transition: all .7s;
  opacity: 1.0 !important;
}

#interviews dd>span {
  font-weight: bold;
}

#interviews dt.interviewee02 {
  background: #d8f9d2;
}



#interviews .inner>p {
  margin: 25px 0 10px 30px;
}

.link_block {
  width: 100%;
}

.interview_box a:hover {
  opacity: 0.5 !important;
  transition: 0.2s !important;
}


#en .contents h1 {
  font-size: 2em;
  text-align: center;
  font-weight: bold;
}

#en .contents h1:before {
  content: '\f4d8';
  color: #009944;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  padding-right: 5px;
  opacity: .4;
}

#en h2 {
  font-size: 1.7em;
}

#en h2 span {
  background: linear-gradient(transparent 70%, #fff687 70%);
}

#en h3 {
  color: #c30d23;
}

#en .contents h3:before {
  display: none;
}

#en h4 span {
  color: #fff;
  padding: 4px 15px;
  background-color: #a48b78;
  border-radius: 10px;
}

#en .en_smart_box {
  border: 4px solid #009944;
  border-radius: 15px;
  max-width: 600px;
  margin: 0 auto;
  padding: 10px;
  background-color: #fff;
}

#en .en_smart_box h5 {
  color: #009944;
  font-size: 1.2em;
}

#en .en_smart_box:nth-of-type(5) {
  border: 4px solid #f08300;
  border-radius: 15px;
  max-width: 600px;
  margin: 0 auto;
  padding: 10px;
  background-color: #fff;
}

#en .en_smart_box .yellow_h5 {
  color: #f08300 !important;
  font-size: 1.2em;
}

#en .booth_box {
  max-width: 550px;
  padding: 10px;
}

#en table {
  width: 100%;
  background-color: #fff;
  max-width: 1600px;
}

#en table th {
  width: 50%;
  vertical-align: middle;
}

#en table td {
  vertical-align: middle;
}

#en #cost .booth_flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
}

.header_icon {
  font-size: 1.4em;
  text-align: center;
  margin: 15px;
}

.header_icon a {
  padding: 20px;
  color: #fff;
  background-color: #009944;
  display: block;
}

.header_icon a:hover {
  background-color: #000;
  opacity: 1.0 !important;
}

.download_flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  border-bottom: 1px solid #333;
  padding-bottom: 30px;
}

.download_flex input {
  width: 100%;
  padding: 5px;
  background: #fff;
  border: 1px solid #ddd;
}

.border_box img {
  border: 1px solid #000;
}

#interview a {
  margin: 30px auto;
  /* width: 50%; */
}

.lp_btn {
  display: block;
  /* max-width: 300px; */
  text-decoration: none;
  outline: none;
  padding: 15px 10px;
  background: #2f7b35;
  color: #fff;
  font-size: 1.4em;
  text-align: center;
  border: 2px solid #2f7b35;
  margin: 15px auto;
  transition: all .5s;
  font-weight: 600;
  border-radius: 12px;
  line-height: 1em;
}

.lp_btn:hover {
  background: #fff;
  color: #2f7b35;
  border: 2px solid #2f7b35;
  opacity: 1.0 !important;
}

#drone .bottom_links li a {
  border-radius: 5px;
  text-align: center;
  font-weight: bold;
  display: block;
  background: #384174;
  padding: 15px 10px;
  font-size: 1.2em;
  padding: 10px;
  color: #fff;
  max-width: 400px;
  margin: 0 auto;
}

#drone .bottom_links li a:hover {
  background: #1a1a1a;
  text-decoration: none;
  color: #fff;
  opacity: 1.0 !important;
}




#picture img:nth-of-type(2) {
  animation-delay: 0.4s;
}

#picture img:nth-of-type(3) {
  animation-delay: 0.6s;
}

#picture img:nth-of-type(4) {
  animation-delay: 0.7s;
}

#picture img:nth-of-type(5) {
  animation-delay: 0.9s;
}

#picture img:nth-of-type(6) {
  animation-delay: 1.1s;
}

#picture img:nth-of-type(7) {
  animation-delay: 1.3s;
}

#picture img:nth-of-type(8) {
  animation-delay: 1.5s;
}

#picture img:nth-of-type(9) {
  animation-delay: 1.7s;
}

#picture img:nth-of-type(10) {
  animation-delay: 1.9s;
}

#picture img:nth-of-type(11) {
  animation-delay: 2.1s;
}

#picture img:nth-of-type(12) {
  animation-delay: 2.3s;
}

#picture img:nth-of-type(13) {
  animation-delay: 2.5s;
}

#picture img:nth-of-type(14) {
  animation-delay: 2.7s;
}

#animate_delay dl:nth-of-type(2) {
  animation-delay: 0.4s;
}

#animate_delay dl:nth-of-type(3) {
  animation-delay: 0.6s;
}

#animate_delay dl:nth-of-type(4) {
  animation-delay: 0.7s;
}

#animate_delay dl:nth-of-type(5) {
  animation-delay: 0.9s;
}

#animate_delay dl:nth-of-type(6) {
  animation-delay: 1.1s;
}


.top_topic_area {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 50px 0;
}

.top_topic_area h1 {
  text-align: center;
  background: linear-gradient(transparent 80%, #e6ae9a 70%);
}

@media screen and (max-width: 700px) {
  .top_topic_area h1 {
    font-size: 1.4em;
    background: linear-gradient(transparent 90%, #e6ae9a 70%);
  }
}

.top_topic_area h1 span {
  color: #ff0;
  background-color: rgba(204, 0, 0, .9);
  padding: 1px 10px;
  border-radius: 15px;
}

.top_topic_area h2 {
  text-align: center;
  margin-top: 20px;
  font-size: 1.4em;
}

.top_topic_area h2 span {
  background: linear-gradient(transparent 70%, #e6ae9a 70%);
}

.top_topic_area h3 {
  margin-top: 20px;
  font-size: 1.2em;
}

.top_topic_area h3 span {
  background: linear-gradient(transparent 70%, #e6ae9a 70%);
}

.top_topic_area h4 {
  margin-top: 20px;
  font-size: 1.2em;
}

.sma {
  display: none;
}

@media screen and (max-width: 700px) {
  .sma {
    display: block;
  }
}



.top_topic_area {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 50px 0;
}

.top_topic_area h1 {
  text-align: center;
  background: linear-gradient(transparent 80%, #9ae6ad 70%);
}

@media screen and (max-width: 700px) {
  .top_topic_area h1 {
    font-size: 1.4em;
    background: linear-gradient(transparent 90%, #9ae6ad 70%);
  }
}

.top_topic_area h1 span {
  color: #ff0;
  background-color: #009944;
  padding: 1px 10px;
  border-radius: 15px;
}

.top_topic_area h2 {
  text-align: center;
  margin-top: 20px;
  font-size: 1.4em;
}

.top_topic_area h2 span {
  background: linear-gradient(transparent 70%, #9ae6ad 70%);
}

.top_topic_area h3 {
  margin-top: 20px;
  font-size: 1.2em;
}

.top_topic_area h3 span {
  background: linear-gradient(transparent 70%, #9ae6ad 70%);
}

.top_topic_area h4 {
  margin-top: 20px;
  font-size: 1.2em;
}

.sma {
  display: none;
}

@media screen and (max-width: 700px) {
  .sma {
    display: block;
  }
}

.bg_white {
  background-color: #fff;
}


.information_topic_k {
  border-bottom: solid 3px #009944;
  position: relative;
  font-size: 1.4em;
  margin-bottom: 30px;
  padding-top: 30px;
  color: #009944;
}

.visit_h3 span {
  display: inline-block;
  background: #009944;
  padding: 0.2em 1em;
  color: #fff;
}

#application .title__box_l {
  background-color: #009944;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  font-size: 1em;
  padding: 3% 0;
  color: #fff;
  line-height: 1em;
}

#application .visit-way_inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 15px 15px 0 15px;
  max-height: 100%;
  min-height: 185px;
}

#application .visit-way_flex {
  display: flex;
  gap: 3%;
}

#application .visit-way_box {
  background: #fff;
  /* flex-basis: 50%; */
  flex-basis: 100%;
  border: 1px solid #009944;
  border-radius: 5px;
}

blockquote,
q {
  quotes: none;
}

.small {
  font-size: 0.8em !important;
}

#application .btn_style02 a {
  margin: 0px auto 10px auto;
  padding: 10px 0;
  display: block;
  background-color: #2f7b35;
  box-shadow: 0px 6px 3px -3px rgb(0 0 0 / 30%);
  -webkit-box-shadow: 0px 6px 3px -3px rgb(0 0 0 / 30%);
  -moz-box-shadow: 0px 6px 3px -3px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  text-align: center;
  color: #fff;
  font-weight: bold;
  border: #2f7b35 1px solid;
  font-size: 1em;
}

#application .btn_style__320 a {
  width: 320px;
}

#application .outline_flex_area {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: flex-start;
}

#application .outline_flex_area .area_flex_ul {
  min-width: 250px;
  letter-spacing: -0.5px;
}

#application .outline_visit ul li {
  border-radius: 10px;
  padding: 6px;
  background-color: #fff;
  text-align: center;
  margin: 5px;
  font-weight: 600;
  min-width: 250px;
}

.top_main_flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
}

.top_main_flex p {
  padding: 10px 5px;
  background-color: #2f7b35;
  width: 100%;
  max-width: 240px;
  margin: 3px 10px;
  border: #2f7b35 4px solid;
  font-weight: 600;
  font-size: 1.2em;
}

.top_main_flex p a {
  color: #fff;
  display: block;
}

.top_main_flex p a:hover {
  color: #222;
  display: block;
  opacity: 1.0;
}

.pointbox {
  display: flex;
  padding: 10px;
  background-color: #fff;
  justify-content: space-between;
}

.pointbox-title {
  font-size: 2rem;
  display: flex;
}

.pointbox-title span {
  display: block;
}

.pointbox img {
  margin-left: 20px;
  display: inline-block;
}

.pointbox .flex {
  display: flex;
}

.flex .ml20 {
  margin-left: 20px;
}

.pointbox .mx-w {
  max-width: 365px;
}

.pointbox .m0 {
  margin: 0;
  margin-top: 10px;
}

@media screen and (max-width: 580px) {
  .pointbox {
    flex-direction: column;
  }

  .pointbox img {
    margin: 0;
    margin-top: 10px;
    max-width: 100%;
  }

  .flex .ml20 {
    margin-left: 0;
  }

}

.seminer-btnbox {
  display: flex;
}

.seminer-btninner {
  width: 50%;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.seminer-btnbox .btn a {
  margin-top: 0;
  margin-bottom: 0;
}

.seminer-btnbox .btn a:hover {
  color: #fff !important;
}

@media screen and (max-width: 580px) {
  .seminer-btnbox {
    flex-direction: column;
  }

  .seminer-btninner {
    width: 100%;
  }

  .seminer-btninner:nth-child(2) {
    margin-top: 20px;
  }

  .seminer-btnbox .btn,
  .seminer-btnbox .btn a {
    width: 100%;
    display: inline-block;
  }
}

.point_link_cover {
  color: #0D0D1B !important;
}


/* キャンペーン */
.unline-yellow {
  background: linear-gradient(transparent 60%, #ff0 0%);
}

.f12em {
  font-size: 1.2em;
}

.f16em {
  font-size: 1.6em;
}

.lh16 {
  line-height: 1.6 !important;
}

.bgc_beige {
  background-color: #fff;
}

.camp_content {
  padding: 10px 20px;
  box-sizing: border-box;
  max-width: 980px;
  text-align: center;
  margin: 0 auto;
  margin-top: 20px;
}

.content_2 {
  max-width: 980px;
  text-align: center;
  margin: 0 auto;
  margin-top: 30px;
}

.heading01 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 26px;
  text-align: center;
}

.heading01::before,
.heading01::after {
  content: '';
  width: 3px;
  height: 40px;
  background-color: #ed3737;
}

.heading01::before {
  margin-right: 30px;
  transform: rotate(-35deg);
}

.heading01::after {
  margin-left: 30px;
  transform: rotate(35deg);
}

.midashi.sub {
  font-size: 18px;
  margin: 10px 0;
  font-weight: bold;
}

.pink_arrow {
  color: #EF858C;
  font-size: 24px;
}

.campfigure img {
  max-width: 500px;
}

.camp-p-sec a {
  color: #009944;
}

.mogitate_flex {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.mogitate_flex p {
  font-size: 18px;
  font-weight: bold;
}

.prodct_box .mogitatedesc {
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.8);
  margin-top: 10px;
}

#product .header_list {
  margin-bottom: 10px !important;
  margin-top: 10px !important;
}

@media screen and (max-width: 768px) {
  .mogitate_flex {
    flex-direction: column;
    align-items: center;
  }

  .header_list ul {
    flex-direction: column;
    align-items: flex-start;
  }

  #product .header_list ul {
    flex-direction: column;
  }

  #product .header_list ul a {
    font-size: 11px;
  }

  .prodct_box.mt10 {
    padding-top: 63px !important;
    margin-top: -53px !important;
  }

  .prodct_box.mt20 {
    padding-top: 73px !important;
    margin-top: -53px !important;
  }
}


/* 会場の様子 */

.venue_table {
  max-width: 980px;
  margin: 20px auto 0;
  border-top: 1px solid #9CB4A5;
  border-bottom: 1px solid #9CB4A5;
  border-spacing: 0;
  width: 100%;
  background-color: white;
  border-collapse: collapse;
  font-size: 16px;
}

.venue_table th,
.venue_table td {
  padding: 10px 30px;
  border: 1px solid #ccc;
  text-align: center;
  vertical-align: middle;
}

.venue_inline {
  display: inline-block;
  width: 32%;
  vertical-align: middle;
}

.forum_img {
  margin-top: 30px;
}

.venue_sec {
  max-width: 980px !important;
}

/* 20241017 */
.pointernone p {
  background-color: gray !important;
  border-color: gray !important;
}

.pointernone a {
  background-color: gray !important;
  border-color: gray !important;
  pointer-events: none;
}

/* 20241018 */

.stattend_box h2 {
  font-size: 26px;
  border-bottom: 3px double #009944;
  margin-bottom: 20px;
}

.stattend_box dl {
  display: flex;
}

.stattend_box dl dt {
  border-left: none !important;
  padding-left: 0 !important;
  margin-bottom: 0 !important;
  min-width: 160px;
}

.stattend_box dl dd {
  max-width: 620px;
}

.stattend_flex {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}

h2 .boothno {
  font-size: 16px;
  display: block;
  color: #009944;
}

.stattend_inner img {
  display: inline-block;
  max-width: 280px;
}

.stattend_inner .stattend_flex img:nth-child(even) {
  margin-left: 10px;
}

.stattend_inner .stattend_flex img:nth-child(n+3) {
  margin-top: 10px;
}

.smartDl_item.hide {
  position: relative;
}

.smartDl_item.hide::after {
  content: "ー準備中ー";
  width: 100%;
  height: 100%;
  background-color: rgba(204, 204, 204, 0.5);
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  font-size: 2em;
  font-weight: bold;
}

.graymenue {
  background-color: #696969;
}

.graymenue:hover {
  opacity: 1 !important;
}

/* メルマガ */
.headInfo__date {
  position: relative;
}

.merumaga_k {
  position: absolute;
  top: -16px;
  left: -8px;
}

.merumaga_k a {
  text-decoration-line: underline !important;
}

.headInfo {
  padding-top: 20px;
}

@media screen and (max-width: 768px) {
  .merumaga_k {
    left: 11px;
  }
}

/* product */
#bcp h4.sec_title {
  background-color: #009944 !important;
}

#pest h4.sec_title {
  background-color: #f39800 !important;
}

#worm h4.sec_title {
  background-color: #036eb8 !important;
}

#cultivation h4.sec_title {
  background-color: #172a88 !important;
}

/* en_2025 */
#en .en_box_type2 {
  border-color: #036eb8;
}

#en .en_box_type2 h5 {
  color: #036eb8;
}

#en .en_box_type3 {
  border-color: #086732;
}

#en .en_box_type3 h5 {
  color: #086732;
}

#en .en_box_type4 {
  border-color: #f39800;
}

#en .en_box_type4 h5 {
  color: #f39800;
}

#en .en_box_type5 {
  border-color: #a70394 !important;
}

#en .en_box_type5 h5 {
  color: #a70394;
}

#en .en_box_type6 {
  border-color: #172a88;
}

#en .en_box_type6 h5 {
  color: #172a88;
}

#en .en_box_type7 {
  border-color: #dd6b66;
}

#en .en_box_type7 h5 {
  color: #dd6b66;
}

#en .en_box_type8 {
  border-color: #e60040;
}

#en .en_box_type8 h5 {
  color: #e60040;
}

#en .en_box_type9 {
  border-color: #ffb12e;
}

#en .en_box_type9 h5 {
  color: #ffb12e;
}

#en .en_box_type10 {
  border-color: #006934;
}

#en .en_box_type10 h5 {
  color: #006934;
}

/* スマホ対応 */

@media screen and (min-width: 768px) {
  .sponly {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .pconly {
    display: none;
  }

  #outline_table .table_outline th {
    min-width: 6em;
  }

  .exhibition_flex_attend {
    flex-direction: column;
  }

  .sp_m0 {
    margin: 0 !important;
  }

  .sp_mt10 {
    margin-top: 10px !important;
  }

  .sp_mb10 {
    margin-bottom: 10px !important;
  }

  .sp_inline-block {
    display: inline-block;
  }
}

.bg_c_booth span.pconly {
  background-color: transparent;
  margin-left: 0;
  padding: 0;
}


.exhibition .product_cont #title_area .inner .title_wrap h2 {
  line-height: 1;
  font-size: inherit;
}

#exhibition .product_cont #title_area .inner .title_wrap h2 {
  line-height: 1;
}

#exhibition .product_cont #title_area.title_exhibition {
  height: 80px;
}

.list_flex_cont p:nth-of-type(1) {
  width: 120px !important;
  font-weight: bold;
  box-sizing: border-box;
}

.list_flex_cont p:nth-of-type(2) {
  width: calc(100% - 120px - 73.91px);
  box-sizing: border-box;
}

.gr_pc_border.list_sp_column {
  border-bottom: 1px solid #2f7b35;
}


@media screen and (max-width: 768px) {
  .list_sp_column {
    flex-direction: column;
  }

  .list_flex_cont {
    width: 100% !important;
  }

  .list_flex_cont img {
    width: 45px !important;
  }

  .list_flex_cont p:nth-of-type(1) {
    width: 55px !important;
  }

  .list_flex_cont p:nth-of-type(2) {
    width: calc(100% - 40px - 50px);
    padding-right: 5px;
    padding-left: 5px;
  }

  .list_sp_column .list_flex_cont:nth-of-type(n+2) {
    border-top: 1px solid #2f7b35;
  }
}

#exhibition #title_area .inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

#exhibition #title_area .title_wrap {
  display: block;
}


@media screen and (max-width: 768px) {
  .footer {
    padding-bottom: 0;
  }
}

@media screen and (max-width: 768px) {
  .mt10_mb {
    margin-top: 10px !important;
  }

  .mt20_mb {
    margin-top: 20px !important;
  }

  .mb10_mb {
    margin-bottom: 10px !important;
  }

  .mb20_mb {
    margin-bottom: 20px !important;
  }

  #news_list .cat.news {
    display: block;
    width: fit-content;
  }

  #news_list dd {
    margin-bottom: 5px;
  }
}

@media screen and (max-width: 768px) {
  #interviews tr {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
  }

  #interviews table {
    border-bottom: 0px !important;
  }

  #interviews td:nth-of-type(1) {
    width: 100%;
  }

}

@media screen and (max-width: 768px) {

  #foot_bar p {
    line-height: 1.4;
    padding: 10px 0;
  }

  #outline_table .table_outline th {
    padding: 1em 0.2em;
  }

  #pickup_02 .stattend_box dl {
    flex-direction: column;
  }
}

@media screen and (max-width: 768px) {
  .pc_only {
    display: none;
  }
}

#pickup_03 .panel_sec {
  display: flex;
  flex-wrap: wrap;
}

#pickup_03 .panel_sec img {
  display: block;
}

#pickup_03 .panel_sec img:nth-of-type(n+2) {
  margin-top: 10px;
}

.pickup_04_flex {
  display: flex;
  justify-content: space-between;
}

.pickup_04_flex div {
  width: 55%;
}

.pickup_04_flex img {
  width: 44%;
  display: block;
}

@media screen and (max-width: 768px) {

  .pickup_04_flex div,
  .pickup_04_flex img {
    width: 100%;
  }

  .pickup_04_flex div {
    margin-bottom: 10px;
  }

  .pickup_04_flex {
    flex-direction: column;
  }

  .pickup_2024_nav ul {
    max-width: 780px;
    width: 80%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 auto;
  }

  #outline_table .table_outline .exhibition_flex_attend li {
    margin-right: 0;
  }

  .venue_inline {
    width: 100%;
  }

  .forum_img {
    margin-top: 0;
  }

  .outline_box_flex .h_400 img {
    height: 100%;
  }
}

.indent_text {
  position: relative;
  padding-left: 17px;
}

.indent_text span {
  position: absolute;
  left: 0;
  top: 0;
}

.indent_text .red_color {
  position: relative;
}

.link_cont ul {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 10px;
}

.link_cont li {
  width: 50%;
}

@media screen and (max-width: 768px) {
  .link_cont ul {
    width: 100% !important;
    margin-top: 30px !important;
  }

  .link_cont li {
    width: 100%;
  }
}

/* 2025_seminar */
#seminar.semi_2025 .seminar_img img {
  float: none;
  margin: 0 0 0.2em 0;
}

#seminar.semi_2025 table tr .time {
  background-color: #d3d3d3;
}

.semi_flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.semi_flex_main {
  width: calc(100% - 80px);
  padding-left: 10px;
}

#seminar.semi_2025 .seminar_img img {
  display: block;
  width: 80px;
}

.semi_2025 table h2 {
  margin: 5px 0 8px;
}

.semi_2025 .f4 h4 {
  color: #2f7b35;
}

.semi_2025 .f2 .seminar_name {
  padding-left: 17px;
}

/* .mc_text {
  padding: 5px;
  background-color: #ccffe3;
} */

.dot_border {
  border: none;
  border-top: 1px dotted #000;
}

@media screen and (max-width: 768px) {
  .semi_flex {
    flex-direction: column;
    align-items: initial;
  }

  .semi_flex_main {
    width: 100%;
    padding: 5px 0 0;
  }

  .over_flow {
    overflow-x: scroll;
  }

  .over_flow table {
    min-width: 400px;
  }

  #seminar.semi_2025 .seminar_img img {
    margin: 0;
    margin-top: 5px;
    width: 100px;
  }

  /* .semi_2025 .f2 .seminar_img {
    padding-left: 17px;
  } */

  .semi_2025 .contents h3 {
    font-size: 22px;
  }

  .bg_yellow .bottom_links li {
    padding: 0 20px 10px;
  }

  .visit-way_flex {
    flex-direction: column;
    gap: 0;
  }

  .visit-way_flex .visit-way_box:nth-of-type(2) {
    margin-top: 20px;
  }

  .visit_h3 span {
    margin-top: 20px;
  }

  #toVisit.big_moji {
    font-size: 1.3em;
  }
}

.main_green {
  color: #009944;
}

#application .attend_btn_wrapper .visit-way_inner {
  padding: 20px 20px;
  min-height: auto;
  flex-direction: row;
  align-items: flex-end;
}

#application .attend_btn_wrapper .visit-way_inner>div {
  text-align: center;
}

#application .attend_btn_wrapper:nth-of-type(1) .visit-way_inner>div {
  margin: 0 10px;
}

#seminar.semi_2025 .seminar_img.tx_right img {
  margin: 0 0 0 auto;
}

#attend_zone .att_logo {
  width: 100px;
}

.base_flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

#start_up .main_title {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.start_up_flex img {
  width: 31%;
}

.start_up_flex img:nth-of-type(n+4) {
  margin-top: 10px;
}

@media screen and (max-width: 768px) {
  #application .attend_btn_wrapper .visit-way_inner {
    flex-direction: column;
    align-items: center;
  }

  .base_flex {
    flex-direction: column;
  }

  #start_up .main_title {
    flex-direction: column;
    align-items: center;
  }

  .start_up_flex img {
    width: 100%;
  }

  .start_up_flex img:nth-of-type(n+2) {
    margin-top: 5px;
  }
}

.flex_visit {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-left: 150px;
  margin-right: 150px;
}

.flex_visit img {
  display: flex;
}

.flex_visit dl {
  flex: 1;
  min-width: 250px;
  box-sizing: border-box;
  border: 1px solid #ddd;
  padding: 15px;
  border-radius: 6px;
  background: #fff;
}

.flex_visit figure {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  height: 100px;
  background-color: #009944;
}

#event #kitchencar ul li {
  width: calc(50% - 1.5rem);
  background: #fff;
  border-radius: 0.5rem;
  display: flex;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

#event #kitchencar ul li figure img {
  border-radius: 0.5rem;
  width: 100%;
}

#event #kitchencar ul li div p {
  margin-top: 0.5rem;
  line-height: 1.4;
}

#event #kitchencar ul li h4 {
  font-weight: bold;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: #ccc dotted 0.1rem;
}

#event #kitchencar>p {
  font-size: 1rem;
  text-align: right;
  font-weight: bold;
}

#event #kitchencar ul li h4 {
  font-weight: bold;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: #ccc dotted 0.1rem;
}

#event #kitchencar ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

#event #kitchencar ul li {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

#event #kitchencar ul li figure img {
  border-radius: 0.5rem;
  width: 100%;
}

@media screen and (max-width: 768px) {
  #event #kitchencar ul li {
    width: 100%;
  }
}

#event #kitchencar ul li figure {
  overflow: hidden;
}

#event #kitchencar ul li figure img {
  width: 100%;
}

.cocktail__top .stage_title {
  background: #009944;
  margin: 40px 0 30px;
  font-size: 1.6em;
  font-weight: bold;
  text-align: center;
  padding: 1em;
  color: #fff;
}

.exhibit_items_04 {
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  border-radius: 10px;
}

.exhibit_items_04 img {
  width: 35%;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

.pavilion_title {
  color: black;
  margin: 30px auto 20px;
  text-align: center;
  font-size: 2.5rem
}

.pavilion_items img {
  display: block;
  margin: 0 auto;
}

.section_sub_title_02 {
  font-size: 2em;
  text-align: center;
}

.button-center {
  text-align: center;
  margin: 60px 0;
}


.apply-button {
  display: inline-block;
  padding: 30px 40px;
  font-size: 1.5rem;
  background-color: #ff7f50;
  color: white;
  font-weight: bold;
  text-decoration: none;
  border-radius: 12px;
  transition: background-color 0.3s, transform 0.2s;
  z-index: 10;
  position: relative;
  box-shadow: 0 6px 0 #e06c42, 0 6px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease;
}

.apply-button:hover {
  transform: translateY(-4px) scale(1.05);
  background-color: #ff6347;
}

@media screen and (max-width: 768px) {
  .apply-button {
    padding: 20px 30px;
    font-size: 0.6rem;
    border-radius: 10px;
  }
}

.hero-section {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-section .hero-bg {
  width: 100%;
  height: 350px;
  display: block;
}

.hero-section .hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  width: 90%;
}

.hero-text {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* package_plan.php */
.point-container {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  max-width: 1500px;
  margin: 0 auto;
  padding: 20px;
}

.ribbon-box {
  flex: none;
  height: 60px;
  width: 270px;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-left: 25px;
  padding-right: 10px;
  padding-top: 2px;
  padding-bottom: 2px;
  background: #ec7f51;
  border-radius: 6px;
  font-weight: bold;
  font-size: 20px;
  color: #fff;
  text-align: left;
  box-sizing: border-box;
}

.ribbon-box:before {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  border-bottom: 15px solid transparent;
  border-right: 20px solid #ec7f51;
}


.bold-text {
  font-weight: 900;
  font-size: 25px
}

.point-number {
  font-size: 40px;
  margin-left: 3px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.point-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0 10px;
}

.point-content {
  width: 330px;
  background-color: white;
  border: 2px solid #000;
  padding: 15px;
  border-radius: 0 0 6px 6px;
  margin-top: -5px;
  margin-left: 20px;
  text-align: center;
  box-sizing: border-box;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  font-size: 18px;
}

.point-content img.point-image {
  max-width: 80%;
  max-height: 200px;
  height: auto;
  margin-bottom: 7px;
  border-radius: 2px;
}

.large-text {
  font-size: 25px;
  font-weight: bold;
  text-align: center;
}

.large-text1 {
  font-size: 33px;
  font-weight: bold;
  text-align: center;
}

/* スマホ画面対応 */
@media (max-width: 768px) {

  .hero-text {
    width: 95%;
    padding: 0 10px;
  }

  .booth_main_title {
    font-size: 0.6rem;
    line-height: 0.7;
    padding: 20px 10px;
  }

  .booth_main_title .main_line {
    font-size: 0.8rem;
  }

  .booth_main_title .subtle_text {
    font-size: 1rem !important;
    margin-top: 0.2em !important;
  }

  .hero-section .hero-bg {
    max-height: 400px;
    height: auto;
  }

  .hero-text {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
  }

  .point-container {
    flex-direction: column;
    align-items: center;
    padding: 10px;
  }

  .point-item {
    width: 90%;
    align-items: center;
    margin: 15px 0;
  }

  .point-content {
    width: 100%;
    margin-left: 0;
    padding: 10px;
    font-size: 16px;
  }

  .point-content img.point-image {
    max-width: 100%;
    height: auto;
    max-height: 180px;
  }

  .ribbon-box {
    width: 80%;
    font-size: 18px;
    justify-content: center;
    padding: 8px 15px;
  }

  .point-number {
    font-size: 30px;
  }

  .bold-text {
    font-size: 20px;
  }

  .hero-text {
    width: 95%;
    padding: 0 10px;
  }

  .booth_main_title {
    font-size: 0.5rem;
    line-height: 0.9;
    padding: 20px 20px;
  }

  .booth_main_title .main_line {
    font-size: 1.2rem;
  }

  .booth_main_title .subtle_text {
    font-size: 0.7rem !important;
    margin-top: 0.2em !important;
  }

  .hero-section .hero-bg {
    max-height: 400px;
    height: auto;
  }

  .hero-text {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
  }

}

.red-center1 {
  color: red;
  text-align: center;
  font-weight: bold;
  font-size: 6em;
}

.red-center2 {
  color: red;
  text-align: center;
  font-weight: bold;
  font-size: 2em;
}

.center-right {
  display: block;
  margin: 0 auto;
  transform: translateX(5%);
}

/* index.php(資料請求) */
.request {
  display: flex;
  justify-content: center;
  gap: 40px;
  text-align: left;
}

.request-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.request-list li {
  font-size: 18px;
  font-weight: 600;
  line-height: 3.0;
}


.request-img {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.request-img img {
  width: 250px;
  margin-bottom: 15px;
}

.request-btn {
  display: inline-block;
  padding: 18px 24px;
  background: #ff7f50;
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  font-weight: bold;
}

.tweak-left {
  margin-left: 250px;
}

@media screen and (max-width: 768px) {
  .tweak-left {
    margin-left: -40px;
  }
}

.big-list {
  list-style: none;
  padding: 0;
  margin: 50px auto;
  text-align: left;
  max-width: 800px;
}

.big-list li {
  font-size: 26px;
  font-weight: 700;
  padding: 8px 0;
  line-height: 1.8;
  margin-left: 0;
}

@media screen and (max-width: 768px) {
  .big-list {
    max-width: 90%;
  }

  .big-list li {
    font-size: 20px;
    line-height: 1.7;
  }
}

.size-small {
  font-size: 18px;
  font-weight: 400;
  display: inline-block;
  margin-top: 5px;
}

.group-booth-images {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 40px 0;
}

.group-booth-images img {
  width: 400px;
  height: auto;
  display: block;
  object-fit: cover;
}

@media screen and (max-width: 900px) {
  .group-booth-images {
    flex-direction: column;
    align-items: center;
  }

  .group-booth-images img {
    width: 90%;
    max-width: 350px;
  }
}