@charset "utf-8";


/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

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 {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  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;
}


/* ========================================
    基本設定
========================================= */

*{
    box-sizing:border-box; /*余白や線を幅や高さに含める*/
}

body {
  font-family: ArialMT, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", メイリオ, sans-serif;
  line-height: 1.6;
  background-color: #fff;
  box-sizing: border-box;
  color: #000;
  font-size: 18px;
}

a {
  color: #036eb8;
  font-weight: bold;
  text-decoration: none;
}

a:hover {
  filter:alpha(opacity=60);
  opacity:0.6;
}

/*-----------------------------------
　↓↓↓　ヘッダー、ナビの設定　↓↓↓
-----------------------------------*/
header {
  width: 100%;
  /*height: 130px;*/
  background-color: #fff;
  border-bottom: 1px solid #c0c0c0;
  box-shadow: 0px 1px 1px rgba(0,0,0,0.2);
}

div#header_inner {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

div#header_inner img {
  width: 90px;
  margin: 10px;
}

@media screen and (min-width: 1000px) {
  div#header_inner img {
    margin: 10px 0;
  }
}

header nav {
  width: 100%;
  font-size: 15px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

header nav ul {
  height: 50px;
  display: flex;
  justify-content: flex-end;
}

header nav ul li {
  height: 100%;
  list-style:none;
  display: flex;
  padding: 0 16px;
  text-align: center;
  line-height: 1.3;
}

header nav ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
}

p#top {
  font-size: 14px;
  display: flex;
  justify-content: flex-end;
  margin: 17px 0 8px;
}

p#top span.english {
  display: inline-block;
  width: 120px;
  color: #000; 
  text-align: center;
  background-color: #fff; 
  padding: 5px 10px;
  margin-left: 10px;
}

p#top span.member {
  display: inline-block;
  width: 120px;
  color: #fff;
  text-align: center;
  background-color: #036eb8; 
  padding: 5px 10px;
  margin-left: 10px;
}

p#top span.inquiry {
  display: inline-block;
  width: 120px;
  color: #fff;
  text-align: center;
  background-color: #ea5514; 
  padding: 5px 10px;
  margin-left: 10px;
}

@media screen and (max-width: 960px) {

  p#top {
    display: none;
  }
}

@media screen and (min-width: 960px) {
  .sm {
    display: none;
  }
}

/*-----------------------------------
　↑↑↑　ヘッダー、ナビの設定　↑↑↑
-----------------------------------*/

/*-----------------------------------
　↓↓↓　ハンバーガーメニュー　↓↓↓
-----------------------------------*/

/* デフォルト（PC表示） */
.nav-menu {
  display: flex;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;

}

/* ハンバーガーメニューはデフォルトで非表示 */
.h-inner {
  display: none;
}

.hamburger {
  display: none;
}

.mobile {
  display: none;
}


/* ハンバーガー基本スタイル */
@media screen and (max-width: 960px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    height: 96vh;
    width: 100vw;
    overflow-y: scroll;
    background-color: rgba(255, 255, 255, 0.9); /* 半透明背景 */
    backdrop-filter: blur(8px); /* 背景ぼかし */
    z-index: 1000;
    font-size: 1.2rem;
    margin: 0; /* ← 余白を完全除去 */
    gap: 0;
    transition: all 0.3s ease;
    padding: 0;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu li {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #ccc; /* 罫線 */
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .nav-menu li a {
    display: block;
    padding: 12px 0; /* 必要最小限のスペース */
    color: #036eb8;
    text-decoration: none;
    width: 100%;
  }

  .nav-menu li:last-child {
    border-bottom: none; /* 最後の項目は罫線なし */
    margin-bottom: 30px;
  }

  .mobile{
    display: flex;
  }

  .m-column {
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  p.m-menu01 {
    width: 70%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
  }

  p.m-menu02 {
    width: 70%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  span.m-english {
    font-size: 16px;
    display: inline-block;
    width: 120px;
    color: #036eb8; 
    text-align: center;
    border: 1px solid #036eb8; 
    padding: 5px 10px;
  }

  span.m-member {
    font-size: 16px;
    display: inline-block;
    width: 120px;
    color: #fff;
    text-align: center;
    background-color: #036eb8; 
    padding: 5px 10px;
  }

  span.m-inquiry {
    font-size: 16px;
    display: inline-block;
    width: 120px;
    color: #fff;
    text-align: center;
    background-color: #ea5514; 
    padding: 5px 10px;
  }

  p.m-menu-jihfs {
    width: 80%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }

  .h-inner {
    display: block;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1100;
  }

  .h-inner.active {
    background-color: rgba(255, 255, 255, 0.9); /* 半透明背景 */
    backdrop-filter: blur(8px); /* 背景ぼかし */
  }

  .hamburger {
    display: flex;
    position: fixed; /* ← 固定表示に変更 */
    top: 20px;
    right: 20px;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 25px;
    cursor: pointer;
    z-index: 9999;
  }

  .hamburger span {
    display: block;
    height: 3px;
    background: #333;
    border-radius: 3px;
  }
}

/* ここから「×」に変化するCSS */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(10px, -5px);
}

.nav-menu li.current > a {
  border-bottom: 4px solid #ea5514;
}
/*-----------------------------------
　↓↓↓　サブメニュー　↓↓↓
-----------------------------------*/
.submenu {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
}


/* PC表示：ホバーで表示 */
@media (min-width: 960px) {

  .submenu li {
    background: rgba(255, 255, 255, 0.9); /* 各 li に背景 */
    padding: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1); /* 罫線 */
    text-align: left;
  }

  .has-submenu {
    position: relative;
  }

  .has-submenu:hover .submenu {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    z-index: 1000;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }

  .submenu-toggle  {
    display: none;
  }
}


/* スマホ表示：アクティブ状態で表示 */
@media (max-width: 960px) {
  .nav-menu {
    list-style: none;
    padding: 0;
    font-size: 17px;
  }

  .has-submenu {
    position: relative;
    text-align: center;
    /*margin: 10px 0;*/
  }

  .submenu-toggle {
    background: none;
    border: none;
    font-size: 20px;
    color: #036eb8;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
  }

  .submenu {
    display: none;    
    position: absolute;
    top: 100%;
    left: 0;
    width: 100vw;
    z-index: 999;
  }

  .submenu.open {
    display: block;
  }

  .submenu li {
    background: #ffffff;
    padding: 0px;
    background-color: #f8f8ff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .submenu li:last-child {
    border-bottom: none;
    margin-bottom: 30px;
  }
}


/*-----------------------------------
　↓↓↓　共通で使うパーツ　↓↓↓
-----------------------------------*/

.bold {
  font-weight: bold;
}

.f_orenge {
  color: #ff6347;
}

.lh-180 {
  line-height: 1.8;
}

.lh-150 {
  line-height: 1.5;
}

.width_100 {
  width: 100%;
  max-width: 900px;
}

.width_90 {
  width: 90%;
  max-width: 800px;
}

.width_80 {
  width: 80%;
  max-width: 900px;
}

.w_180px {
  width: 180px;
}

.w_160px {
  width: 160px;
}

.w_150px {
  width: 150px;
}

.w_140px {
  width: 140px;
}

.w_130px {
  width: 130px;
}

.w_120px {
  width: 120px;
}

.w_100px {
  width: 100px;
}

.w_90px {
  width: 90px;
}

.w_80px {
  width: 80px;
}

.w_70px {
  width: 70px;
}

.w_60px {
  width: 60px;
}

.w_50px {
  width: 50px;
}

.w_40px {
  width: 40px;
}

.w_30px {
  width: 30px;
}

.w_harf {
  width: 50%;
}

.row-wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

/* text align */
.t_left {
  text-align: left;
}

.t_center {
  text-align: center;
}

.t_right {
  text-align: right;
}

.v_middle {
  vertical-align: middle;
}

.v_super {
  vertical-align: super;
}

.m-right_05em {
  margin-right: 0.5em;
}

.m-right_1em {
  margin-right: 1em;
}

.m-bottom_05em {
  margin-bottom: 0.5em;
}

.m-bottom_1em {
  margin-bottom: 1em;
}

.m-bottom_2em {
  margin-bottom: 2em;
}

.marker_orange {
  background:linear-gradient(transparent 60%, #ffce9e 60%);
  font-weight:bold;
}

/* インデント */
.ind_1em {
  text-indent: -1em;
  margin-left: 1em;
}

.ind_1em-harf {
  text-indent: -1.5em;
  margin-left: 1.5em;
}

.ind_2em {
  text-indent: -2em;
  margin-left: 2em;
}

.ind_2em-harf {
  text-indent: -2.5em;
  margin-left: 2.5em;
}

/* ボタンの色 */
.btn_mBlue {
  width: 250px;
  margin-top: 30px;
  display: inline-block;
  padding: 10px 0;
  text-decoration: none;
  color: #FFF;
  background-color: #036eb8;
}

.btn_lGray {
  width: 300px;
  margin-top: 30px;
  display: inline-block;
  padding: 10px 0;
  text-decoration: none;
  color: #FFF;
  background-color: #d3d3d3;
}

.btn_border-mBlue {
  width: 250px;
  margin-top: 30px;
  display: inline-block;
  padding: 10px 0;
  text-decoration: none;
  color: #036eb8;
  border: 1px solid #036eb8;
}

section {
  width: 100%;
}

h2 {
  color: #036eb8;
  font-size: 27px;
  font-weight: bold;
  text-align: center;
  padding: 20px 0;
}

h3 {
  display: inline-block;
  color: #036eb8;
  font-size: 25px;
  font-weight: bold;
  text-align: center;
  border-bottom: 1px solid #036eb8;
  padding-bottom: 0.3em;
  margin-bottom: 1em;
}

h4 {
  display: inline-block;
  color: #036eb8;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  border-bottom: 1px solid #036eb8;
  padding-bottom: 0.3em;
  margin-bottom: 1em;
}

.box01 {
  padding:50px 30px;
  text-align: center;
  display:flex;
  flex-direction: column;
  justify-content:center;
  align-items: center;
}

/*-----------------------------------
　■　トップページ　■
-----------------------------------*/
/*-----------------------------------
　↓↓↓　hero画像の設定　↓↓↓
-----------------------------------*/
.hero {
  width: 100%;
  height: 70vh;
  position: relative;
  overflow: hidden;
  text-align: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-image: url(../imgs/hero.jpg);
  display:flex;
  flex-direction: column;
  justify-content:center;
  align-items: center;
}
/*-----------------------------------
　↓↓↓　hero画像の上にあるbox　↓↓↓
-----------------------------------*/
.logo_box {
  height: 70vh;
  display:flex;
  flex-direction: column;
  justify-content:center;
  align-items: center;
}

.hero-logo {
  width: 300px;
  margin: 30px 0 30px -25px;
}

/*スクロールの文字表示がある場合*/
/*.hero-logo2 {
  width: 360px;
  margin: 30px 0 30px -25px;
}*/

.hero-logo2 {
  width: 400px;
  margin: 0px 0 20px -25px;
}

.hero-logo3 {
  width: 430px;
  margin: 0px 0 20px -25px;
}

.ds_white {
  filter: drop-shadow(3px 3px 5px rgb(255, 255, 255));
  transform: translateZ(0);
}

.t-Shadow_white {
  text-shadow: 0px 4px 4px #fff;
}

.top_copy {
  width: 250px;
}

.logo_box p {
  font-size: 19px;
  font-weight: bold;
  line-height: 1.6;
}

.accent {
  font-size: 26px;
  font-weight: bold;
  line-height: 1.6;
}

/*-----------------------------------
　↓↓↓　hero画像の上にあるスクロールダウン　↓↓↓
-----------------------------------*/
.scroll {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scroll-text {
  color: #000;
  font-size: 14px;
  text-align: center;
}

.scroll-border {
  position: relative;
  width: 10px;
  height: 49px;
  overflow: hidden;
}

.scroll-border::before {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000;
  margin: auto;
}

.scroll-border::after {
  content: "";
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  left: 0;
  right: 0;
  background: #000;
  border-radius: 50%;
  margin: auto;
}

/*-----------------------------------
　↓↓↓　各ページのヒーロー画像　↓↓↓
-----------------------------------*/
.sub-hero {
  width: 100%;
  height: 18vh;
  overflow: hidden;
  text-align: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-image: url(../imgs/sub_hero.jpg);
  display:flex;
  flex-direction: column;
  justify-content:center;
  align-items: center;
}

/*-----------------------------------
　↓↓↓　トップページの「News Topics」で使用　↓↓↓
-----------------------------------*/
ul.pc_row_news {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content:center;
  align-items: center;
  margin: 20px;
}

ul.pc_row_news li.title {
  width: 100%;
  margin-bottom: 30px;
  text-align: center;
  font-size: 25px;
  font-weight: bold;
  color: #036eb8;
  line-height: 1.2;
}

.sub {
  font-size: 16px;
}

ul.pc_row_news li.text {
  width: 100%;
  text-align: left;
  font-size: 15px;
}

ul.pc_row_news li.text p {
  width: 100%;
  text-align: left;
  font-size: 15px;
  border-bottom: #c0c0c0 1px dotted;
  padding-bottom: 7px;
  margin-bottom: 7px;
  display: flex;
  justify-content: space-between;
}

ul.pc_row_news li.text p:last-child {
  margin-bottom: 0;  
}

.notice01 {
  width: 100%;
  text-align: left;
  font-size: 15px;
  border-bottom: #c0c0c0 1px dotted;
  padding-bottom: 7px;
  margin-bottom: 7px;
  display: flex;
  justify-content: space-between;
}

.notice01_end {
  width: 100%;
  text-align: left;
  font-size: 15px;
  border-bottom: #c0c0c0 1px dotted;
  padding-bottom: 7px;
  margin-bottom: 0;
  display: flex;
  justify-content: space-between;
}

.date {
  width: 25%;
  color: #000;
}

.news_content {
  width: 75%;
  color: #ea5514;
}

@media screen and (min-width: 768px) {
  ul.pc_row_news {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    max-width: 900px;
  }

  ul.pc_row_news li.title {
    width: 25%;
    margin-bottom: 0;
    margin-right: 4%;
  }

  ul.pc_row_news li.text {
    width: 71%;
  }

  .date {
    width: 18%;
    padding-right: 20px
  }

  .news_content {
    width: 82%;
  }
}
/*-----------------------------------
　↑↑↑　トップページの「News Topics」で使用　↑↑↑
-----------------------------------*/
/*-----------------------------------
　↓↓↓　トップページの「JIHFSについて」で使用　↓↓↓
-----------------------------------*/
/* 背景画像 */
.bk_about {
  background-image: url(../imgs/bg_about.jpg); 
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.about-text {
  display: inline-block;
  color: #036eb8;
  font-size: 25px;
  font-weight: bold;
  text-align: left;
  padding-bottom: 0.3em;
  margin-bottom: 1em;
}

ul.pc_row_about {
  width: 100%;
  border: 10px solid rgba(255,255,255,0.5);
  padding: 30px;
  margin: 20px;
  display: flex;
  flex-direction: column;
  justify-content:center;
  align-items: center;
}

ul.pc_row_about li {
  margin: 30px;
}

ul.pc_row_about li.logo {
  width: 200px;
  margin-bottom: 30px;
  text-align: center;
}

ul.pc_row_about li.text p.btn-area-right {
  text-align: center;
}

@media screen and (min-width: 768px) {
  ul.pc_row_about {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    max-width: 900px;
  }

  ul.pc_row_about li.logo {
    width: 24%;
    max-width: 140px;
    margin-bottom: 0;
    margin-right: 2%;
  }

  ul.pc_row_about li.text {
    width: 74%;
  }

  ul.pc_row_about li.text p.btn-area-right {
    text-align: right;
  }
}
/*-----------------------------------
　↑↑↑　トップページの「JIHFSについて」で使用　↑↑↑
-----------------------------------*/
/*-----------------------------------
　↓↓↓　トップページの「GMPについて」で使用　↓↓↓
-----------------------------------*/
.top_gmp_logo {
  width: 300px;
  margin: 30px 0 30px -25px;
}

.top_gmp_title {
  font-size: 19px;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 30px;
}

.top_gmp_text {
  text-align: left;
  margin-bottom: 40px;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .top_gmp_text {
    max-width: 900px;
  }
}

ul.gmp_type {
  width: 90%;
  display:flex;
  flex-direction: row;
  justify-content:space-between;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 10px;
}

@media screen and (min-width: 768px) {
  ul.gmp_type {
    max-width: 900px;
    flex-direction: row;
    justify-content:space-between;
  }
}

ul.gmp_type li a {
  color: #000;
  font-weight: normal;
  text-decoration: none;
}

ul.gmp_type li img {
  width: 160px;
  margin-bottom: 10px;
}

ul.gmp_type li p {
  font-size: 16px;
  line-height: 1.3;
}

.gmp_type_textbox {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  gap: 10px;
}

/*　▼▼▼　〇囲み三角矢印　▼▼▼　*/
.arrow{
  position: relative;
  display: inline-block;
  padding: 0 0 0 30px;
  color: #000;
  vertical-align: middle;
  text-decoration: none;
  font-size: 28px;
}
.arrow::before,
.arrow::after{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}

.circle-fill-right::before{
  box-sizing: border-box;
  width: 30px;
  height: 30px;
  border: 1px solid #000;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
.circle-fill-right::after{
  left: 12.5px;
  box-sizing: border-box;
  width: 6px;
  height: 6px;
  border: 6px solid transparent;
  border-left: 6px solid #000;
}
/*　▲▲▲　〇囲み三角矢印　▲▲▲　*/
/*-----------------------------------
　↑↑↑　トップページの「GMPについて」で使用　↑↑↑
-----------------------------------*/
/*-----------------------------------
　↓↓↓　トップページの「アクセス」で使用　↓↓↓
-----------------------------------*/
.bg_l-gray {
  background-color: #f8f8ff;
}

.box01 ul.pc_row {
  width: 100%;
}

.access_logo {
  width: 200px;
  margin-bottom: 30px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .box01 ul.pc_row {
    max-width: 900px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }

  .box01 ul.pc_row li {
    width: calc(900px / 2);
  }
}

/* アイコンの色 */
.icon_mBlue {
  width: 100px;
  display: inline-block;
  padding: 4px 6px;
  font-size: 14px;
  text-decoration: none;
  text-align: center;
  color: #FFF;
  background-color: #1d2088;
  margin-right: 15px;
  margin-bottom: 6px;
}

.font-16 {
  font-size: 16px;
  margin-bottom: 15px;
}

/*マップ*/
.google-maps {
  position: relative;
  padding-bottom: 100%;
  height: 0;
  overflow: hidden;
  margin-top: 30px;
}

@media screen and (min-width: 768px) {
  .google-maps {
    padding-bottom: 56.25%;
  }
}

.google-maps iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 768px)  {
  .google-maps {
    margin-top: 0;
  }
}
/*-----------------------------------
　↑↑↑　トップページの「アクセス」で使用　↑↑↑
-----------------------------------*/
/*-----------------------------------
　↓↓↓　JIHFSご案内-「ご挨拶」で使用　↓↓↓
-----------------------------------*/
ul.pc_row_greeting {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content:center;
  align-items: center;
}

ul.pc_row_greeting li.logo {
  width: 200px;
  margin-bottom: 30px;
  text-align: center;
}

ul.pc_row_greeting li.logo img {
  width: 100%;
  max-width: 250px;
}

@media screen and (min-width: 768px) {
  ul.pc_row_greeting {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    max-width: 900px;
  }

  ul.pc_row_greeting li.logo {
    width: 24%;
    max-width: 180px;
    margin-bottom: 0;
    margin-right: 1%;
  }

  ul.pc_row_greeting li.text {
    width: 75%;
  }
}

.font-14 {
  font-size: 14px;
}
/*-----------------------------------
　↑↑↑　JIHFSご案内-「ご挨拶」で使用　↑↑↑
-----------------------------------*/
/*-----------------------------------
　↓↓↓　JIHFSご案内-「沿革・組織図」で使用　↓↓↓
-----------------------------------*/
table.simple {
  width: 100%;
  max-width: 900px;
  border-spacing: 0;
  font-size:15px;
  border: 1px solid #036eb8;
}

table.simple tr {
  background: #fff;
}

table.simple tr th {
  color: #036eb8;
  background: linear-gradient(90deg, rgb(210, 235, 246), rgb(177, 219, 237));
  /*background: linear-gradient(90deg, rgb(210, 235, 246), rgb(122, 199, 235));*/
  padding: 8px;
  font-weight: bold;
  border: 1px solid #036eb8;
  box-shadow: 0px 1px 1px rgba(255,255,255,0.3) inset;
}

table.simple tr td {
  padding: 8px;
  border: 1px solid #036eb8;
  text-align: left;
}

.image {
  width: 100%;
  max-width: 600px;
}

/*-----------------------------------
　↑↑↑　JIHFSご案内-「沿革・組織図」で使用　↑↑↑
-----------------------------------*/
/*-----------------------------------
　↓↓↓　JIHFSご案内-「活動内容」で使用　↓↓↓
-----------------------------------*/
ul.pc_row_activities {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  max-width: 700px;
  margin-bottom: 20px;
}

ul.pc_row_activities li.no {
  width: 50px;
  height: 50px;
  font-size: 28px;
  text-align: center;
  vertical-align: middle;
  background-color: #87ceeb;
  font-weight: bold;
  flex-shrink: 0;
  padding-top: 10px;
  line-height: 1.2;
  margin-right: 30px;
}

ul.pc_row_activities li.text {
  text-align: left;
  vertical-align: middle;
}

.mr_0 {
  margin-right: 0;
}

/*-----------------------------------
　↑↑↑　JIHFSご案内-「活動内容」で使用　↑↑↑
-----------------------------------*/
/*-----------------------------------
　↓↓↓　JIHFS認証制度-「GMP製品認証」-概要で使用　↓↓↓
-----------------------------------*/
ul.pc_row_outline {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content:center;
  align-items: center;
}

ul.pc_row_outline li.logo {
  width: 230px;
  margin-bottom: 30px;
  text-align: center;
}

ul.pc_row_outline li.text p.btn-area-right {
  text-align: center;
}

@media screen and (min-width: 768px) {
  ul.pc_row_outline {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    max-width: 900px;
  }

  ul.pc_row_outline li.logo {
    width: 26%;
    max-width: 230px;
    margin-bottom: 0;
    margin-right: 3%;
  }

  ul.pc_row_outline li.text {
    width: 71%;
  }

  ul.pc_row_outline li.text p.btn-area-right {
    text-align: right;
  }
}

.target {
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}

/*-----------------------------------
　↓↓↓　品目など　↓↓↓
-----------------------------------*/

.overview {
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
}

.overview_item {
  display: flex;
  flex-direction: row;
}

.overview_item_row {
  display: flex;
  flex-direction: row;
}

.overview_text {
  width: 100%;
  text-align: left;
  padding-left: 15px;
}

/* アイコンの色 */
.icon_overview_mBlue {
  width: 110px;
  height: 30px;
  /*display: block;*/
  padding: 4px 4px;
  font-size: 14px;
  text-decoration: none;
  text-align: center;
  color: #FFF;
  background-color: #1d2088;
  /*margin-right: 10px;*/
}

/*-----------------------------------
　↑↑↑　JIHFS認証制度-「GMP製品認証」-概要で使用　↑↑↑
-----------------------------------*/
/*-----------------------------------
　↓↓↓　JIHFS認証制度-「GMP製品認証」-認証プロセスで使用　↓↓↓
-----------------------------------*/
ul.pc_row_process {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 700px;
  margin-bottom: 30px;
}

ul.pc_row_process li.step {
  width: 70px;
  height: 70px;  
  text-align: center;
  background-color: #87ceeb;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
  font-weight: bold;
  flex-shrink: 0;
  padding-top: 10px;
  line-height: 1.2;
  font-size: 14px;
  margin-right: 30px;
}

ul.pc_row_process li.text {
  /*font-size: 20px;*/
  text-align: left;
}

.font-32 {
  font-size: 32px;
}

/*-----------------------------------
　↑↑↑　JIHFS認証制度-「GMP製品認証」-認証プロセスで使用　↑↑↑
-----------------------------------*/
/*-----------------------------------
　↓↓↓　JIHFS認証制度-「GMP製品認証」-認証から更新監査までで使用　↓↓↓
-----------------------------------*/
ul.pc_row_flow {
  list-style: square;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 900px;
}

ul.pc_row_flow li {
  text-align: left;
  margin-left: 1em;
}

.Lblue {
  color: #87ceeb;
}

/*-----------------------------------
　↑↑↑　JIHFS認証制度-「GMP製品認証」-認証から更新監査までで使用　↑↑↑
-----------------------------------*/
/*-----------------------------------
　↓↓↓　GMP認証工場で使用　↓↓↓
-----------------------------------*/

.column-center-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* 健康食品GMP アイコンの色 */
.icon_mBlue_s {
  width: 100px;
  display: inline-block;
  padding: 4px 6px;
  font-size: 12px;
  text-decoration: none;
  text-align: center;
  color: #FFF;
  background-color: #1d2088;
  margin-bottom: 4px;
}

/* 原材料GMP アイコンの色 */
.icon_lBlue_s {
  width: 100px;
  display: inline-block;
  padding: 4px 6px;
  font-size: 12px;
  text-decoration: none;
  text-align: center;
  color: #000;
  background-color: #87ceeb;
  margin-bottom: 4px;
}

.font-12 {
  font-size: 12px;
}

/* 初回 アイコンの色 */
.icon_first {
  display: inline-block;
  padding: 1px 6px;
  font-size: 10px;
  text-decoration: none;
  text-align: center;
  color: #1d2088;
  background-color: #fff;
  margin-bottom: 2px;
  margin-left: 5px;
  border: #1d2088 1px solid;
}

/* 更新 アイコンの色 */
.icon_update {
  display: inline-block;
  padding: 1px 6px;
  font-size: 10px;
  text-decoration: none;
  text-align: center;
  color: #fff;
  background-color: #ff6347;
  margin-left: 5px;
}

/*-----------------------------------
　↑↑↑　GMP認証工場で使用　↑↑↑
-----------------------------------*/
/*-----------------------------------
　↓↓↓　アドレス　↓↓↓
-----------------------------------*/

.address {
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
}

.address_item {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.address_item_row {
  display: flex;
  flex-direction: row;
}

/* アイコンの色 */
.icon_address_mBlue {
  width: 65px;
  height: 30px;
  display: inline-block;
  padding: 4px 4px;
  font-size: 14px;
  text-decoration: none;
  text-align: center;
  color: #FFF;
  background-color: #1d2088;
  margin-right: 10px;
  margin-bottom: 6px;
}

/*-----------------------------------
　↑↑↑　アドレス　↑↑↑
-----------------------------------*/

footer {
  width: 100%;
  padding: 50px 0;
  color: #000;
  text-align: center;
  background: linear-gradient(90deg, rgb(210, 235, 246), rgb(177, 219, 237));
  /*background: linear-gradient(90deg, rgb(178, 219, 237), rgb(122, 199, 235));*/
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 13px;
}

footer p {
  padding-bottom: 20px;
}

footer p:last-child {
  padding-bottom: 0;
}

footer a {
  color: #1d2088;
  text-decoration: none;
  font-size: 14px;
}

footer a:hover {
  border-bottom: 1px solid #1d2088;
}
