@charset "UTF-8";
/* CSS Document */
/* 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;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  color: #3A3A3C;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
  /*overflow-x: hidden; スクロールバーを隠す*/
}

p {
  line-height: 1.8;
  font-size: 16px;
  font-feature-settings: "palt" 1;
}

h3, h4 {
  font-feature-settings: "palt" 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;
}

img {
  border: none;
  padding: 0;
}

a {
  text-decoration: none;
}

a:hover {
  opacity: 0.6;
}

/* Clearfix */
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.clearfix:before {
  content: "";
  display: block;
  clear: both;
}

.clearfix {
  display: block;
}

/* inputのリセット */
input {
  margin: 0;
  padding: 0;
  background: white;
  color: transparent;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* CSS Document */
/*======= VIEWPOINTの設定 =======*/
body {
  background-color: #F6FAFF;
  background-color: white !important;
  -webkit-text-size-adjust: 100%;
  min-width: 1260px;
}

#content_wapper {
  width: 100%;
  margin: 0 auto;
}

.white {
  background-color: white;
}

/*======= スムーズスクロール =======*/
html {
  scroll-behavior: smooth;
  overscroll-behavior-y: contain;
  -webkit-overflow-scrolling: touch;
}

@media screen and (max-width: 520.9px) {
  html {
    scroll-behavior: smooth;
    overscroll-behavior-y: contain;
    -webkit-overflow-scrolling: touch;
  }
}
/*======= PC - スマホ切り替え =======*/
.PC {
  display: block;
}

.SP {
  display: none;
}

#SP_menu {
  display: none;
}

@media screen and (max-width: 768px) {
  #PC_menu {
    display: none !important;
  }
  #SP_menu {
    display: block !important;
  }
}
@media screen and (max-width: 520px) {
  .PC {
    display: none !important;
  }
  .SP {
    display: block !important;
  }
}
/*======= safari用のリセットCSS =======*/
input,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

/*======= 矢印 =======*/
.arrow {
  position: relative;
  width: 30px;
  margin: 0 0 0 10px;
  display: inline-block;
}

.line01 {
  height: 1px;
  background-color: white;
}

.line02 {
  position: absolute;
  top: 0;
  right: 0;
  transform-origin: right bottom;
  width: 10px;
  height: 1px;
  background-color: white;
  transform: rotate(45deg);
}

span.arrow_link {
  display: block;
  text-align: right;
  color: #003f8e;
}

span.arrow_link .line01 {
  background-color: #003f8e;
}

span.arrow_link .line02 {
  background-color: #003f8e;
}

#PICKUP span.arrow_link,
#TOP_tokusyu span.arrow_link {
  margin-right: 25px;
  margin-bottom: 20px;
  color: #666;
}

/*======= VIEWMOREボタン =======*/
a.button {
  /*border:1px solid #003f8e;*/
  background: #003f8e;
  color: white;
  padding: 12px 25px 12px 30px;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  font-size: 14px;
}

a.large {
  margin: 0 auto;
  color: white;
  padding: 25px 50px 25px 65px;
  font-size: 15px;
}

.button {
  position: relative;
  display: inline-block;
  padding: 0.5em 4em;
  color: #333;
  text-align: center;
  text-decoration: none;
  transition: 0.3s;
}

.button:hover {
  color: #fff;
  background: #333;
}

@media screen and (max-width: 520px) {
  a.button {
    width: 100%;
    display: block;
    padding: 25px 0;
    font-size: 18px;
    margin: 0 auto;
  }
  a.large {
    width: 100%;
    margin: 0 auto;
    color: white;
    padding: 25px 0;
    font-size: 18px;
  }
  .button {
    width: 90%;
    position: relative;
  }
}
.report_link {
  margin: 25px auto 0;
  background: white;
  border: 3px solid #003f8e;
  padding: 25px 1em;
  border-radius: 10px;
  width: 100%;
  display: block;
  font-weight: bold;
  color: #003f8e;
  text-align: center;
  box-sizing: border-box;
  filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.15));
}

.report_link i {
  color: #003f8e;
}

@media screen and (max-width: 520px) {
  .report_link {
    font-size: 18px;
  }
}
a.report_link:hover {
  opacity: 0.65;
}

/*======= 右寄せ =======*/
.right_end {
  margin-right: 0 !important;
  margin-left: auto !important;
}

.left_end {
  margin-right: auto !important;
  margin-left: 0 !important;
}

.center {
  text-align: center;
  margin: 0 auto;
}

/*======= ヘッダー =======*/
header {
  background-color: white !important;
  width: 100%;
  height: 60px;
  margin: 0 auto;
  padding: 8px 0 5px;
  z-index: 1111;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3);
}

header.head_sticky {
  /* Safari */
  position: sticky;
  top: -10px;
}

header div {
  width: 1260px;
  margin: 0 auto;
}

/*======= ヘッダーロゴ=======*/
h1 {
  padding: 17px 5px 0;
  box-sizing: border-box;
  float: left;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 2px;
  width: 8em;
}

h1 a {
  color: #333;
}

/*======= ヘッダーナビゲーション =======*/
header nav {
  width: 1060px;
  float: right;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-content: space-between;
  /* Safari etc. */
  /* IE10        */
  flex-wrap: wrap;
  padding-top: 15px;
}

header nav ul {
  width: 100%;
  margin-left: 80px;
}

header nav ul li {
  font-size: 15px;
  display: inline-block;
  padding: 0 0 15px;
  margin: 0 auto;
  text-align: center;
  vertical-align: middle;
}

header nav ul li.menu {
  width: 85px;
}

header nav ul li.menu:nth-child(3n) {
  width: 100px;
}

header nav ul li.menu a {
  color: #3A3A3C;
}

header nav ul li.menu a:hover {
  padding-bottom: 5px;
  border-bottom: 2px solid #497099;
}

/*======= 子メニュー =======*/
li.dropdown_menu {
  position: relative;
}

ul.dropdown {
  display: none;
  /*デフォルトでは非表示の状態にしておく*/
  position: absolute;
  top: 30px;
  left: -110px;
}

.balloon {
  position: relative;
  margin-top: 0;
  filter: drop-shadow(1px 1px #ccc);
}

.balloon::before {
  content: "";
  position: absolute;
  border: 15px solid transparent;
  border-bottom: 20px solid #497099;
  top: -45px;
  left: 40%;
  padding-top: 10px;
  filter: drop-shadow(1px 1px #ccc);
}

.menu:hover ul.dropdown {
  display: block;
  /*ホバーしたら表示*/
  border-radius: 5px;
  background-color: white;
  width: 150px;
  margin-top: 23px;
  padding: 10px 0;
}

ul.dropdown li {
  width: 100%;
  padding: 5px 0;
  line-height: 2rem;
  transition: all 0.3s;
  position: relative;
}

ul.dropdown li a::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: rotate(135deg);
  position: absolute;
  right: 15px;
  top: calc(50% - 5px);
}

/*======= 検索フォーム =======*/
.search_container {
  box-sizing: border-box;
  position: relative;
  border: 1px solid #999;
  display: block;
  padding: 3px 10px;
  border-radius: 20px;
  height: 2.4em;
  width: 200px;
  margin: 0 25px;
  overflow: hidden;
}

.search_container input[type=text] {
  border: none;
  height: 2.3em;
  list-style: none;
  color: #666666;
}

.search_container input[type=text]:focus {
  outline: 0;
}

.search_container input[type=submit] {
  cursor: pointer;
  font-family: FontAwesome;
  font-size: 1.4em;
  border: none;
  background: none;
  color: #79797E;
  position: absolute;
  width: 2.5em;
  height: 2.5em;
  outline: none;
  right: 0;
  top: -10px;
}

i.fa {
  -webkit-font-smoothing: antialiased;
  -webkit-text-stroke-color: #fff;
  -webkit-text-stroke-width: 1px;
}

/*======= ヘッダー問い合わせボタン =======*/
i.fa {
  padding-right: 10px;
}

header li.nav_contact a {
  color: white;
  padding: 10px 15px;
  margin: 0 0 20px 10px;
  background: #003f8e;
}

/*======= ヘッダー:　スマホ表示用 =======*/
@media screen and (max-width: 768px) {
  body {
    padding-top: 60px;
  }
  header {
    width: 100%;
    margin: 0 auto;
    padding: 0;
    height: 60px;
    border-bottom: solid 5px #0F335D;
    /*#3584bb*/
    position: fixed;
    /* ウィンドウを基準に画面に固定 */
    top: 0;
    /* 上下の固定位置を上から0pxにする */
    left: 0;
    /* 左右の固定位置を左から0pxにする */
    z-index: 9999;
  }
  header div {
    width: 100%;
  }
  header.head_sticky {
    position: fixed;
    top: 0;
  }
  h1 {
    float: none;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0;
    width: 300px;
    padding: 17px 10px 0;
  }
  /*======= ハンバーガーメニュー =======*/
  header nav {
    width: 100% !important;
    float: none;
    display: block;
  }
  .menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;
    /*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    background-color: #3584bb;
    transition: all 0.5s;
    /*アニメーション設定*/
    padding: 0;
    margin: 0;
    overflow: auto !important;
    -webkit-overflow-scrolling: touch;
  }
  .menu-content ul {
    width: 98%;
    padding: 50px 10px 0;
    margin-left: 0 !important;
    z-index: 100 !important;
    overflow: auto !important;
    -webkit-overflow-scrolling: touch;
    height: auto;
  }
  .menu-content ul li {
    text-align: left;
    border-bottom: solid 1px #ffffff;
    list-style: none;
    display: block;
    width: 100% !important;
    padding: 9px 0 10px;
    margin: 0;
    font-size: 18px;
  }
  .menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 16px !important;
    font-weight: bold;
    box-sizing: border-box;
    color: #ffffff !important;
    text-decoration: none;
    padding: 9px 15px 10px 0;
    position: relative;
  }
  .menu-content ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #ffffff;
    border-right: solid 2px #ffffff;
    transform: rotate(45deg);
    position: absolute;
    right: 30px;
    top: 16px;
  }
  .menu-content ul li:last-child {
    border: none;
  }
  #menu-btn-check:checked ~ .menu-content {
    left: 0;
    /*メニューを画面内へ*/
  }
  /*======= 子メニュー =======*/
  .menu-content ul li ul.dropdown_sp {
    width: 100%;
    box-sizing: border-box;
    padding: 15px 30px 0;
    margin-top: 10px;
    border-top: solid 1px #ffffff;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-content: space-between;
    /* Safari etc. */
    /* IE10        */
    flex-wrap: wrap;
  }
  .menu-content ul li ul.dropdown_sp li {
    display: flex;
    width: 45% !important;
    border-bottom: none !important;
    padding: 10px 0;
  }
  .menu-content ul li ul.dropdown_sp li a {
    width: 100%;
    border-bottom: none !important;
    padding: 0 20px 0 0;
    font-size: 16px;
    font-weight: normal !important;
    text-align: right;
  }
  .menu-content ul li ul.dropdown_sp li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 1px #ffffff;
    border-right: solid 1px #ffffff;
    transform: rotate(45deg);
    position: absolute;
    right: 0px;
    top: 3px;
  }
  /*======= ハンバーガーメニュー　ボタン =======*/
  .menu-btn {
    position: fixed;
    /*    top: 10px;
    right: 10px;*/
    top: 0px;
    right: 0px;
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background-color: #3584bb;
  }
  .menu-btn span,
  .menu-btn span:before,
  .menu-btn span:after {
    content: "";
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #ffffff;
    position: absolute;
  }
  .menu-btn span:before {
    bottom: 8px;
  }
  .menu-btn span:after {
    top: 8px;
  }
  #menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);
    /*メニューオープン時は真ん中の線を透明にする*/
  }
  #menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
  }
  #menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
  }
  /*チェックボックスを隠す*/
  #menu-btn-check {
    display: none;
  }
  /*色の変更①暗め*/
  header {
    border-bottom: solid 5px #0F335D;
  }
  header .menu-content,
  .menu-btn {
    background-color: #0F335D;
  }
  /*色の変更②明るめ*/
  header .menu-content,
  .menu-btn {
    background-color: #3584bb;
  }
  header {
    border-bottom: solid 5px #3584bb;
  }
  /*色の変更③他と合わせる*/
  header .menu-content,
  .menu-btn,
  header .menu-content ul {
    background-color: #497099 !important;
  }
  header {
    border-bottom: solid 2px white;
    /*#3584bb*/
  }
  /*======= 検索フォーム =======*/
  .search_container {
    display: block;
    padding: 10px 0;
    border-radius: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    margin-left: 0;
    border: none;
  }
  .search_container input[type=text] {
    border: none;
    height: 3rem;
    font-size: 16px;
    padding: 0 0 0 10px;
    width: 70%;
    font-size: 18px;
    color: #666;
    position: relative;
  }
  .search_container input[type=text]:focus {
    outline: 1px solid #0F335D;
    width: 70%;
  }
  .search_container input[type=submit] {
    cursor: pointer;
    display: inline-block;
    position: absolute;
    top: 10px;
    left: 75%;
    background: #0F335D;
    color: white;
    height: 3rem;
    width: 4em;
    font-size: 16px;
    margin: 0;
    padding: 1px 0;
  }
  i.fa {
    -webkit-font-smoothing: antialiased;
    -webkit-text-stroke-color: #fff;
    -webkit-text-stroke-width: 1px;
  }
}
/*======= 検索結果の設定 =======*/
section#search {
  margin: 0 auto;
  width: 650px;
}

section#search dl {
  margin: 50px auto 0;
}

section#search dt {
  font-size: 14px;
  margin: 0 0 10px;
}

section#search dt span {
  font-size: 12px;
  font-weight: bold;
  background-color: #D9E8F2;
  color: #497099;
  padding: 5px;
  display: inline-block;
  margin: 0 10px;
}

section#search dd {
  font-size: 16px;
  margin: 0 5px 30px 10px;
  line-height: 1.6;
}

/*======= 固定ページのバナー設定 =======*/
#banner {
  width: 100%;
  height: 260px;
  overflow: hidden;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

#banner img {
  height: 260px;
  width: auto;
}

@media screen and (min-width: 1981px) {
  #banner img {
    height: 260px;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
/* テキストの設定 */
#banner p {
  width: 1260px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: left;
}

#banner p span {
  padding-left: 30px;
  font-size: 36px;
  color: white;
  text-shadow: 1px 2px 3px #333;
  letter-spacing: 2px;
}

@media screen and (max-width: 520px) {
  #banner {
    width: 100%;
    height: 200px;
    position: relative;
  }
  #banner img {
    width: auto;
    height: 200px;
  }
  #banner p {
    position: absolute;
    text-align: center;
  }
  #banner p span {
    padding-left: 0px;
  }
}
/*======= 事業紹介ページのバナー設定 =======*/
#B_banner {
  width: 100%;
  height: 500px;
  overflow: hidden;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

#B_banner img {
  height: 500px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width: 1981px) {
  #B_banner img {
    height: 500px;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
/* テキストの設定 */
#B_banner p {
  width: 1260px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: left;
  border-left: 1px solid #666;
  margin-left: 50px;
}

#B_banner p .lead_01 {
  font-size: 45px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 600;
  display: block;
  padding-left: 30px;
  letter-spacing: 1px;
  text-shadow: 1px 1px 5px white;
  line-height: 1em;
  margin-bottom: 20px;
}

#B_banner p .lead_02 {
  font-size: 18px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 400;
  display: block;
  padding-left: 30px;
}

@media screen and (max-width: 520px) {
  #B_banner {
    width: 100%;
    height: 200px !important;
    position: relative;
  }
  #B_banner img {
    height: 200px;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #B_banner p {
    width: 90%;
    text-align: center;
    position: absolute;
    border-left: none;
    margin-left: 0;
  }
  #B_banner p .lead_01 {
    font-size: 48px;
    padding-left: 0;
    margin: 0 auto;
    letter-spacing: 1px;
    text-shadow: 1px 1px 3px black;
    line-height: 200px;
    height: 200px;
    color: white;
  }
  #B_banner p .lead_02 {
    /*font-size: 18px;
    	color:white;
    	display: block;
    	padding-left: 0;
    text-shadow:1px 1px 2px black;
    	text-align:left;
    	margin:0 30px;
    background:rgba(0,0,0,0.5);
    	padding:10px 15px;*/
    display: none;
  }
}
/*======= ぱんくずリストの設定 =======*/
ul.pankuzu {
  width: 980px;
  margin: 30px auto 50px;
  list-style: none;
}

ul.pankuzu li:first-child {
  padding-left: 10px;
  border-left: 5px solid #8EA9C1;
}

ul.pankuzu li {
  font-size: 0.8em;
  padding-left: 3px;
  line-height: 1.5em;
  text-align: left;
  display: inline-block;
}

ul.pankuzu li:first-child:before {
  content: none;
}

ul.pankuzu li:before {
  content: "»";
  padding-right: 5px;
}

ul.pankuzu li a {
  color: #333;
}

ul.pankuzu li a:hover {
  color: #909090;
  text-decoration: underline;
}

/*======= フッター =======*/
footer {
  width: 100%;
  background-color: #0F335D;
  background-color: #003f8e;
  margin: 200px auto 0;
  padding: 15px 0 0px;
}

footer p,
footer span,
footer a {
  color: white;
}

footer a {
  text-decoration: none;
}

footer a:hover {
  opacity: 0.6;
}

/*======= フッターナビ =======*/
#footer_nav {
  width: 900px;
  margin: 0 auto 30px;
  color: white;
  text-align: center;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-content: space-between;
  /* Safari etc. */
  /* IE10        */
  flex-wrap: wrap;
}

#footer_nav div#footer_home {
  width: 100%;
  text-align: left;
  margin: 10px 0 0 17px;
  padding: 2px 0 0 10px;
  font-weight: bold;
  border-left: 5px solid white;
}

#footer_nav ul {
  width: 15%;
  text-align: left;
  margin: 0 auto;
}

#footer_nav ul.first {
  width: calc(15% - 20px);
  text-align: left;
  margin: 0 auto;
  padding-left: 20px;
}

#footer_nav ul li {
  margin-right: 16px;
  padding-bottom: 12px;
  font-size: 13px;
  font-weight: normal;
}

#footer_nav ul li:first-child {
  margin-right: 17px;
  font-weight: bold;
  padding-bottom: 20px;
  margin-top: 20px;
  content: none;
}

/*======= フッターインフォメーション =======*/
#footer_info {
  width: 900px;
  margin: 0 auto 30px;
}

#footer_logo {
  width: 600px;
  float: left;
}

#footer_logo p {
  font-size: 24px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 700;
  padding-top: 1em;
}

#footer_logo p span {
  display: block;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.5px;
}

#footer_sns {
  width: 250px;
  float: right;
  text-align: center;
}

#footer_sns p img {
  width: 80%;
}

#footer_sns ul li {
  display: inline-block;
  width: 40px;
  margin: 0 5px;
}

#footer_sns ul li img {
  width: 100%;
}

p#copyright {
  background: #1A1A1A;
  font-size: 10px;
  letter-spacing: 0.1em;
  margin: 0 auto;
  text-align: center;
  padding: 5px 0;
}

@media screen and (max-width: 520px) {
  footer {
    width: 100%;
    margin: 400px auto 0;
    padding: 20px 0 0px;
  }
  section#footer_nav {
    width: calc(100% - 40px);
    margin-bottom: 30px !important;
  }
  #footer_nav ul,
  #footer_nav ul.first {
    width: 100%;
    text-align: left;
    margin: 0 auto;
  }
  #footer_nav ul.first {
    padding-left: 0;
  }
  #footer_nav ul li {
    padding-bottom: 10px;
    font-size: 13px;
    font-weight: normal;
    display: inline-block;
  }
  #footer_nav ul li:first-child {
    font-size: 16px;
    font-weight: bold;
    padding-bottom: 15px;
    content: none;
    display: block;
  }
  #footer_nav div#footer_home {
    font-size: 18px;
    width: 100%;
    text-align: center;
    margin: 10px 0 15px;
    padding: 0 10px 15px;
    font-weight: bold;
    border-bottom: 1px solid white;
    border-left: none;
  }
  /*======= フッターインフォ =======*/
  #footer_info {
    width: calc(100% - 40px);
    margin: 0 auto 30px;
    text-align: center;
  }
  #footer_logo {
    width: 100%;
    float: none;
    margin-bottom: 15px;
  }
  #footer_logo p {
    width: 100%;
    font-size: 28px;
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    font-weight: 700;
    padding-top: 0;
  }
  #footer_logo p span {
    width: 80%;
    margin: 0 auto;
    display: block;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.5px;
  }
  #footer_sns {
    width: 80%;
    float: none;
    margin: 0 auto;
    text-align: center;
  }
  #footer_sns p img {
    width: 80%;
  }
  #footer_sns ul li {
    display: inline-block;
    width: 40px;
    margin: 0 5px;
  }
  #footer_sns ul li img {
    width: 100%;
    padding-bottom: 0;
    margin-bottom: 0;
  }
  p#copyright {
    width: 100%;
    background: #1A1A1A;
    font-size: 10px;
    letter-spacing: 0.1em;
    margin: 0 auto;
    text-align: center;
    padding: 5px 0;
  }
}
/*======= ページTOPに戻る =======*/
body {
  position: relative;
}

/* ページTOPに戻る */
#page_top {
  display: none;
  position: fixed;
  right: 0;
  bottom: 0;
}

#page_top a {
  display: block;
  width: 45px;
  height: 45px;
  text-align: center;
  background: #8EA9C1;
  line-height: 50px;
  opacity: 0.8;
  font-size: 20px;
  color: #fff;
}

#page_top a::before {
  content: "";
  display: inline-block;
  width: 35px;
  height: 35px;
  background: url("../../img/arrow.png") no-repeat;
  background-size: contain;
  margin-top: 5px;
}

/*======= 404 setting =======*/
#error_page {
  width: 100%;
  text-align: center;
  margin: 100px auto;
}

#error_page h2 {
  font-size: 4.8rem;
  font-weight: bold;
  color: #063db5;
}

#error_page h2 span {
  display: block;
  font-weight: normal;
  font-size: 1.8rem;
  padding-top: 10px;
}

#error_page p {
  max-width: 680px;
  margin: 25px auto 0;
  padding: 0;
  width: 100%;
  text-align: center;
}

a.content_none:after {
  content: none !important;
}

/* CSS Document */
/*------------------------------------ サイズの設定*/
body {
  background: #efefef;
  margin: 0 auto;
}

main {
  width: 980px;
  margin: 0 auto 300px;
}

section {
  width: 980px;
  margin: 0 auto 100px;
}

section.section {
  margin-bottom: 75px !important;
}

br.br_none_PC {
  display: none;
}

/*------------------------------------フォントの設定*/
h1, h3, h4, .noto_sans {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

/*------------------------------------色の設定*/
.m_blue {
  background-color: #0F335D;
}

.s_blue {
  background-color: #D9E8F2;
}

a {
  color: #0761E1;
}

.blue {
  color: #497099;
  font-weight: bold;
}

/*--------------------------------スライダー・バナーエリアの設定*/
#media h5, #business h5 {
  text-align: center;
  width: 100%;
  letter-spacing: 2px;
  margin: 0 auto 40px;
}

.slash {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  position: relative;
  padding: 0;
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  display: block;
}

/*-------------------------------------p段落の基本設定*/
section p {
  margin-bottom: 20px;
  color: #3A3A3C;
  line-height: 2;
}

/*-------------------------------------リンクの設定*/
a {
  color: #497099;
}

p a {
  display: block;
}

p a:after {
  content: "»";
  padding-left: 5px;
  letter-spacing: -0.8px;
}

/*-------------------------------------h3見出しの設定*/
h3 {
  font-size: 36px;
  font-weight: 400;
  color: #497099;
  width: 100%;
  border-bottom: 1px solid #497099;
  padding: 5px 0 10px;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

#company h3 {
  font-size: 30px;
}

h3 a {
  font-size: 16px;
  text-align: right;
  display: block;
  float: right;
  padding-top: 1.3em; /*下に揃える*/
  color: #497099;
}

h3 a:after {
  content: "»";
}

/*=== 見出し/中央揃え ===*/
h3.center {
  margin: 0 auto 25px;
  text-align: center;
  width: 80%;
  padding-bottom: 15px;
}

h3.center_50 {
  margin: 0 auto 50px;
  text-align: center;
  width: 80%;
  padding-bottom: 15px;
}

/*-------------------------------------h4見出しの設定*/
h4 {
  font-size: 36px;
  font-weight: 700;
  color: #3A3A3C;
  margin-bottom: 15px;
  letter-spacing: 1px;
  text-align: center;
}

/*-------------------------------------h5見出しの設定*/
/*-------------------------------------調整用*/
.border_none {
  border-bottom: none;
  margin-bottom: 0px;
}

.bottom { /*一番下のコンテンツ*/
  margin-top: 200px;
  margin-bottom: 0;
  padding: 0;
}

.m_bottom_20px {
  margin-bottom: 20px;
}

.m_bottom_30px {
  margin-bottom: 30px;
}

.m_bottom_40px {
  margin-bottom: 40px;
}

.m_bottom_50px {
  margin-bottom: 50px;
}

br.br_none {
  display: block;
}

br.br_none_PC {
  display: none;
}

/* 点滅 */
@keyframes blinking {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.blink {
  animation: blinking 1s ease-in-out infinite alternate;
}

/*----------------------------------section内―2・3カラムの設定設定*/
ul.col_2, ul.col_3 {
  width: 980px;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-content: space-between; /* Safari etc. */ /* IE10        */
  flex-wrap: wrap;
}

ul.col_5 li {
  display: flex;
  width: 18%;
  margin-bottom: 50px;
}

ul.col_2 li {
  display: flex;
  width: 48%;
  margin-bottom: 50px;
  background-color: white;
}

ul.col_3 li {
  display: flex;
  width: 32%;
  margin-bottom: 50px;
  background-color: white;
}

ul.col_3::after {
  content: "";
  width: 32%;
  height: 0;
}

/*---------------動画・WEB制作の制作実績の設定*/
#business ul.col_2 {
  margin: 50px 0;
  gap: 5%;
  justify-content: center;
}

#business ul.col_2 li {
  box-sizing: border-box;
  width: 45%;
  margin: 0 0 50px;
  background-color: white;
  display: initial;
}

#business ul.col_2:after {
  display: block;
  content: "";
  width: 45%;
}

#business ul.col_2 li div.youtube {
  position: relative;
  width: 100% !important;
  padding-top: 56.25%;
}

.youtube {
  position: relative;
  width: 100% !important;
  padding-top: 56.25%;
}

.youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.youtube_LINK {
  display: block;
  margin: 0 auto;
  width: 500px;
  text-align: center;
}

.youtube_LINK img {
  width: 100%;
}

.youtube_LINK span {
  display: block;
  padding-bottom: 10px !important;
}

#business ul.col_2 h4 {
  text-align: left;
  font-size: 20px;
  margin: 20px 20px 15px;
  padding: 0;
  box-sizing: border-box;
  line-height: 1.5;
  width: calc(100% - 40px);
}

#business ul.col_2 h4 span {
  font-size: 14px;
  font-weight: normal;
  display: block;
  padding: 15px 0 0 0;
}

#business ul.col_2 p {
  padding: 0;
  margin: 0 20px 20px;
  line-height: 1.6;
}

#business ul.col_2 a {
  display: block;
  margin: 0 0 10px 20px;
}

/*-------------------------------------section内―2カラム内の設定*/
ul.col_2 li img, ul.col_3 li img {
  width: 100% !important;
  margin-bottom: 15px;
  display: block;
}

ul.col_2 li p {
  font-size: 15px;
  padding: 0 20px;
  margin-bottom: 15px;
  position: relative;
}

ul.col_2 li p span, ul.col_32 li p span {
  display: inline-block;
  position: absolute;
  right: 20px;
}

ul.col_2 li p span:after, ul.col_3 li p span:after {
  content: "»";
}

ul.col_3 h4 {
  font-size: 22px;
  padding: 0 15px;
  text-align: left;
  line-height: 1.4;
  letter-spacing: 0;
}

ul.col_3 li p.date {
  font-size: 14px;
  margin-bottom: 10px;
}

ul.col_3 li p {
  font-size: 15px;
  padding: 0 15px;
  margin-bottom: 15px;
  font-feature-settings: "palt" 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* -------------------NEWS（アーカイブ・個別記事ページ）の設定 */
section#NEWS, ul#archive, section#NEWS_article, ul.pre_next_LINK {
  margin: 100px auto 100px;
  width: 650px;
}

section#NEWS dl, section#NEWS_article dl {
  margin: 30px auto 50px;
}

section#NEWS_article dl {
  border-bottom: 1px solid #333;
}

section#NEWS dt, section#NEWS_article dt, div.pre_next dt {
  font-size: 14px;
  margin: 0 0 10px;
}

section#NEWS dt span, section#NEWS_article dt span, div.pre_next dt span {
  font-size: 12px;
  font-weight: bold;
  background-color: #D9E8F2;
  color: #497099;
  padding: 5px;
  display: inline-block;
  margin: 0 10px 0 0;
  border-left: none;
}

section#NEWS dd, div.pre_next dd {
  font-size: 16px;
  margin: 0 5px 30px 10px;
  line-height: 1.6;
}

/* 個別記事ページのタイトルは大きくする */
section#NEWS_article dd {
  font-size: 28px;
  margin: 20px 0;
  line-height: 1.4;
  letter-spacing: -0.5px;
}

/* 個別記事ページ */
section#NEWS_article p {
  margin: 20px auto;
  line-height: 2;
  letter-spacing: 0px;
}

section#NEWS_article p a:after {
  content: none;
}

section#NEWS_article img {
  display: block;
  margin: 0 auto 10px;
  width: 100%;
  height: auto !important;
}

p.go_back, p.pre_next {
  margin: 50px auto 0;
  text-align: center;
  margin-top: 50px !important;
}

p.pre_next {
  margin: 50px auto 0;
  text-align: center;
  margin-top: 50px !important;
  display: flex;
  justify-content: space-between;
  max-width: 680px;
}

p.go_back a {
  display: inline-block;
}

p.pre_next a {
  display: inline-block;
}

section#NEWS_article p span {
  font-size: 15px;
  display: block;
  margin: 10px 0;
  text-indent: 0;
}

section#NEWS_article p span a {
  display: inline-block;
  margin-left: 10px;
}

section#NEWS_article ul.col_3 {
  width: 100%;
  max-width: 650px;
  display: flex;
  justify-content: space-between;
  margin: 0 auto 15px;
}

section#NEWS_article ul.col_3 img {
  width: 32%;
  margin-bottom: 15px;
}

@media screen and (max-width: 520px) {
  section#NEWS_article ul.col_3 img {
    width: 100%;
    margin-bottom: 10px;
  }
}
/* ------------------- ページネーションの設定 */
ul.pre_next_LINK {
  margin: 50px auto 20px;
  text-align: center;
}

ul.pre_next_LINK li {
  display: inline-block;
  margin: 0 15px;
}

nav.pagination {
  margin: 0 auto !important;
  text-align: center !important;
}

#page_navi {
  margin: 0 auto !important;
  text-align: center;
}

#page_navi a.page-numbers {
  display: inline-block;
}

#page_navi a.page-numbers, #page_navi span.page-numbers {
  color: #666666;
  vertical-align: middle;
  background: transparent;
  margin: 0 5px;
  padding: 5px 10px;
  border-radius: 3px;
  text-decoration: none;
}

#page_navi span.current {
  color: white;
  background: #8EA9C1;
  color: #fff;
}

#page_navi a:hover {
  color: white;
  background: #8EA9C1;
  color: #fff;
}

#page_navi a.prev,
#page_navi a.next {
  background: transparent;
  box-shadow: none;
  color: #666666;
}

/*#page_navi a.prev:before {
	margin-right:5px;
	content:"\0ab";	
}
#page_navi a.next:after {
content:"\0bb";
margin-left:5px;
}*/
/* --------------ニュースのアーカイブの設定 */
ul.archive {
  text-align: center;
  margin: 30px auto 0 !important;
}

ul.archive li {
  display: inline-block;
  margin: 0 5px 30px;
}

ul.archive li a {
  background: #D9E8F2;
  color: #497099;
  padding: 5px;
  border-radius: 2px;
}

/* --------------個別記事の前へ＆次への設定 */
div.pre_next {
  text-align: center;
}

div.pre_next dl {
  display: inline-block;
  vertical-align: top;
  width: 35%;
  margin: 0 auto 100px;
  text-align: left;
  border-left: 5px splid #4b79d6 !important;
}

div.pre_next dt, div.pre_next dd {
  font-size: 15px !important;
  margin: 0 15px;
  line-height: 1.4;
}

div.pre_next dt {
  margin-bottom: 5px;
}

div.pre_next dd a {
  color: #3A3A3C;
}

div.pre_next dl dd:before {
  content: none !important;
}

/*------------------------------------ companyの設定*/
main#company {
  width: 980px;
  margin: 0 auto;
}

#side_navgation {
  width: 180px;
  float: left;
}

#company_content {
  width: 800px;
  float: right;
}

#company_content section {
  width: 100%;
}

/*---------- companyのサイドナビの設定*/
#side_navgation ul {
  margin-left: 20px;
}

#side_navgation ul li {
  width: 90px;
  padding: 20px 0;
  border-bottom: 1px solid #E8E8E8;
}

#side_navgation ul li:first-child {
  border-top: 1px solid #E8E8E8;
}

#side_navgation ul li a {
  color: #3A3A3C;
}

.side_sticky { /* Safari */
  position: sticky;
  top: 100px;
}

/*---------- companyのコンテンツの設定*/
#company_content h2 {
  font-size: 36px;
  font-weight: 700;
  margin: 20px 0 40px;
  border-top: none !important;
}

#company_content p, #company_content h4, #company_content DL {
  width: 600px;
  margin: 0;
  padding: 0 0 10px 200px;
  text-align: left;
}

#company_content h4 {
  color: #00336B;
  font-size: 26px;
  line-height: 1.6;
  letter-spacing: 1px;
}

#company_content p img {
  width: 90%;
  margin: 10px auto;
}

/*---------- 社長の名前　フォント変更*/
#company_content span {
  margin-top: 30px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-align: right;
  display: block;
  font-family: "Sawarabi Mincho", Helvetica, Arial, sans-serif;
}

#company_content span#name {
  margin-top: 15px;
  font-size: 28px;
}

/*---------- 企業概要　DLの設定*/
DL#company_info {
  display: flex;
  flex-wrap: wrap;
  width: 600px;
  margin-top: 20px;
}

DL#company_info dt {
  width: 30%;
  padding: 10px 0 15px;
  margin-bottom: 5px;
  border-bottom: 1px solid #E8E8E8;
  line-height: 1.6;
}

DL#company_info dd {
  width: 70%;
  padding: 10px 0 15px;
  margin-bottom: 5px;
  border-bottom: 1px solid #E8E8E8;
  line-height: 1.6;
}

/*---------- 沿革　DLの設定*/
DL#company_history {
  display: flex;
  flex-wrap: wrap;
  width: 600px;
  margin-top: 20px;
}

DL#company_history dt {
  width: 20%;
  padding: 10px 0 15px;
  margin-bottom: 5px;
  border-bottom: 1px solid #E8E8E8;
  line-height: 1.6;
}

DL#company_history dd {
  width: 80%;
  padding: 10px 0 15px;
  margin-bottom: 5px;
  border-bottom: 1px solid #E8E8E8;
  line-height: 1.6;
}

#company ul.col_3 {
  width: 100%;
}

#company .col_3 li {
  width: 32%;
}

#company .col_3 li img {
  width: 100%;
}

#company .col_3 span {
  text-align: left;
  margin: 0 5px;
}

/*----------------- メディア(media）・事業紹介(business）の共通設定*/
#media section, #business section {
  margin-bottom: 200px;
}

#media article {
  margin-bottom: 15px;
}

#media article img, #business article img {
  float: left;
  width: 300px;
  padding-right: 30px;
}

#media article p, #business article div.text_BOX {
  box-sizing: border-box;
  float: right;
  width: 650px;
  padding: 0 20px;
}

#media article p, #business article div.text_BOX p {
  font-size: 15px;
  margin: 0 auto 40px;
}

#media article strong, #business article div.text_BOX strong {
  font-size: 26px;
  line-height: 5;
  display: block;
  line-height: 1.4;
  margin-bottom: 20px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 600;
  color: #666;
}

#business article div.text_BOX span {
  display: block;
  font-size: 16px;
  font-weight: bold;
  padding: 0 0 20px;
  color: #497099;
}

#business div.LB_wrapper {
  background: #cfdae6;
  z-index: -9999;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}

#business div.LB_wrapper section {
  padding-top: 30px;
  padding-bottom: 35px;
}

#business div.LB_wrapper section ul.col_2 li {
  filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.2));
}

#business div.LB_wrapper section ul.movie_sample li {
  border-top: 1px solid black;
}

ul.movie_sample {
  margin-bottom: 0 !important;
  margin: 0 auto;
  margin-left: auto !important;
  margin-right: auto !important;
}

#business div.LB_wrapper section ul.col_2 li h4 {
  border-left: 7px solid #003f8e;
  padding-left: 10px;
  margin-bottom: 0 !important;
}

#business div.LB_wrapper section ul.col_2 li a {
  margin: 15px 0 15px 20px;
  display: block;
}

#business div.LB_wrapper section ul.col_2 li p {
  margin-top: 15px;
  margin-bottom: 15px;
}

#business div.LB_wrapper section a.large {
  margin-bottom: 50px !important;
}

#business div.LB_wrapper section ul.col_2 li a.right_end {
  margin-right: 20px !important;
  margin-bottom: 20px !important;
}

/*----------------- 事業紹介ページの導入設定*/
section.B_lead {
  margin-top: 100px;
  width: 750px;
}

section.B_lead p {
  line-height: 2.4rem;
  font-size: 16px;
}

section.B_lead h5 {
  font-size: 28px;
  border-bottom: solid 1px #999;
  position: relative;
  width: -moz-fit-content !important;
  width: fit-content !important;
  padding: 0 30px 20px;
  margin-bottom: 75px !important;
}

section.B_lead h5 span {
  color: #003f8e;
}

section.B_lead h5:after {
  content: "";
  display: block;
  line-height: 0;
  overflow: hidden;
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 30%;
  border-bottom: 1px solid #8EA9C1;
}

#business .flow dd p img {
  float: left;
  width: 300px;
  padding: 0 15px 15px 0;
}

ul.flow_chart {
  max-width: 680px;
  width: 100%;
  margin: 30px auto 0;
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  align-content: center; /* Safari etc. */ /* IE10        */
  flex-wrap: wrap;
}

ul.flow_chart li {
  width: 100%;
  box-sizing: border-box;
  border: solid 1px #8EA9C1;
}

ul.flow_chart li img {
  width: 100%;
}

ul.flow_chart li:nth-child(even) {
  border: none;
}

ul.flow_chart li:nth-child(even) img {
  width: 40px;
  display: block;
  margin: 0 auto;
}

ul.flow_chart li h4 {
  font-size: 24px;
  line-height: 2rem;
  margin: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  text-align: left;
}

ul.flow_chart li h4 span {
  color: #497099;
  opacity: 0.5;
  margin-right: 15px;
  font-size: 55px;
}

ul.flow_chart li p {
  margin: 20px;
  text-align: left;
}

/*-----------------料金案内の設定*/
section#price ul.col_2 li {
  display: flex;
  width: 43%;
  margin-bottom: 50px;
  background-color: white;
  border: 1px solid #8EA9C1;
  border-radius: 5px;
  box-sizing: border-box;
  padding: 10px 20px;
}

section#price ul.col_2 li h4 {
  color: #17397A;
  font-size: 28px;
  text-align: center;
  margin: 0 10px 15px;
  line-height: 1.5;
}

section#price ul.col_2 li h4 span {
  color: #17397A;
  font-size: 20px;
  font-weight: bold;
}

section#price ul.col_2 li p {
  line-height: 1.8rem;
  margin-left: 0;
  margin-right: 0;
}

section#price a.text_link {
  display: inline;
  margin-left: 0;
}

section#price a.text_link:after {
  content: none;
}

section#price ul.col_3 li {
  display: flex;
  width: 31%;
  margin-bottom: 50px;
  background-color: white;
  box-sizing: border-box;
  padding: 15px 1.5%;
}

section#price ul.col_3 li h4 {
  color: #17397A;
  font-size: 24px;
  text-align: center;
  margin: 0 20px 10px;
  padding: 0 0 10px;
  border-bottom: solid 4px #8EA9C1;
}

section#price ul.col_3 li p {
  display: block;
  overflow: visible;
  margin: 20px 0;
}

section#price ul.col_3 li span {
  display: block;
  text-align: center;
  color: #497099;
  font-weight: bold;
}

section#price ul.check {
  display: block;
  width: 100%;
  margin: 25px 0 15px;
}

section#price ul.check li {
  display: block;
  width: 100%;
  margin: 15px 0 0 15px;
  padding: 0;
}

section#price ul.check li:before {
  content: "✔";
  padding-right: 10px;
  color: #00A34D;
}

section#price ul.col_3 p.budget {
  margin: 30px auto 15px;
  padding: 10px 0;
  text-align: center;
  width: 85%;
  border: 1px solid #8EA9C1;
  border-radius: 5px;
  line-height: 1.6;
}

section#price ul.col_3 p.budget span:after {
  content: none;
}

ul.option {
  width: 600px;
  margin: 0 auto;
  text-align: center;
  border-bottom: none;
}

ul.option li {
  display: inline-block;
  margin: 10px 10px 10px 0;
}

ul.option li:after {
  content: "/";
  padding-left: 10px;
}

/*----------------採用支援の設定*/
#saiyo_support article {
  margin-bottom: 100px;
  margin-left: 80px;
}

#saiyo_support article div {
  float: right;
  width: 600px;
  padding: 0;
  margin: 0;
}

#saiyo_support article h5 {
  display: inline-block;
  text-align: left;
  margin: 20px 0 20px 0;
  padding: 8px 30px 10px;
  width: -moz-fit-content;
  width: fit-content;
  color: white;
  background: #003f8e;
  font-size: 19px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 400;
  letter-spacing: 1px;
}

#saiyo_support article strong {
  font-size: 26px;
  display: block;
  line-height: 1.4;
  margin: 0 0 15px 30px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 600;
}

#saiyo_support article p {
  margin-left: 30px;
  padding: 0;
}

#saiyo_support article img {
  float: left;
  width: 300px;
  padding: 0;
  filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.35));
}

#saiyo_support ul {
  text-align: center;
  margin-left: 30px;
  width: calc(100% - 30px);
}

#saiyo_support ul li {
  text-align: center;
  display: inline-block;
  width: 23%;
  margin: 0 0.6%;
}

#saiyo_support ul li img {
  width: 100%;
}

#saiyo_support dl {
  text-align: left;
  margin: 30px 0 0 30px;
}

#saiyo_support dl span {
  color: #497099;
  font-weight: bold;
  display: block;
}

#saiyo_support dl dt {
  text-align: left;
  display: inline-block;
  margin: 15px 0 0;
  font-size: 14px;
  width: 100px;
}

#saiyo_support dl dd {
  width: calc(100% - 100px);
  text-align: left;
  display: inline-block;
  margin: 15px 0 0;
  font-size: 14px;
}

/*----------------お問い合わせフォームの設定*/
.contact {
  width: 650px;
  margin: 0 auto;
  padding-top: 50px;
  text-align: center;
  border-top: 1px solid #003f8e;
}

.faq {
  border-top: none;
}

.contact b {
  margin: 20px auto;
  font-size: 15px;
  display: block;
  line-height: 1.6;
}

.contact p {
  margin: 0 auto 20px;
  font-size: 14px;
}

.contact a {
  display: block;
  color: white;
  background-color: #003f8e;
  border-radius: 5px;
  margin: 10px auto 5px;
  text-align: center;
  width: 15em;
  padding: 10px 0;
  font-size: 20px;
}

.contact a:hover {
  opacity: 1;
}

.contact p.tel {
  font-size: 14px;
}

.contact p.tel span {
  font-size: 18px;
  font-weight: bold;
  display: block;
  padding: 0;
}

.contact p.tel a {
  display: inline;
  pointer-events: none;
  background: transparent;
  color: #3A3A3C;
  font-size: 24px;
  padding: 0;
  margin: 0 0 0 20px;
}

.contact p.tel a:after {
  content: none;
}

i.fa {
  padding-right: 10px;
  color: #003f8e;
}

/*======= 会社情報　アンカーの調整 =======*/
section.anchor, h3.anchor {
  display: block;
  margin-top: -85px !important;
  padding-top: 85px !important;
}

/*======= コラム投稿ページ追加 =======*/
.column p span {
  font-size: 15px;
  display: block;
  margin: 10px 0;
}

.column p a {
  display: inline-block !important;
  padding-right: 10px;
}

.column p a:after {
  content: none;
}

/*======= 特集 =======*/
#tokushu img.main {
  margin-bottom: 25px;
}

section#TOP_tokushu {
  margin-top: 0 !important;
}

section#tokushu p {
  margin-bottom: 50px;
}

section#tokushu ul li {
  padding-bottom: 20px;
}

section#tokushu ul p {
  margin-bottom: 0;
  line-height: 1.6;
}

/*======= 特集個別記事の設定 =======*/
.tokusyu_single h3 {
  font-size: 32px;
  color: #3C3C3C;
  font-weight: bold;
  padding: 0 0 15px;
  border-bottom: 1px solid #333;
  line-height: 1.2em;
  text-align: left;
  font-feature-settings: "palt" 1;
  margin: 0 10px 15px;
}

.tokusyu_single h4 {
  color: #333;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.3em;
  margin: 0 0 0;
  padding: 5px 5px 5px 0;
  font-feature-settings: "palt" 1;
  text-align: right;
}

.tokusyu_single h5 {
  color: #333;
  margin: 0 10px 10px;
  font-size: 16px;
  line-height: 1.5;
  white-space: nowrap;
  text-align: right;
  font-feature-settings: "palt" 1;
}

.tokusyu_single figure.main {
  padding-top: 0;
}

.tokusyu_single figure.main img {
  width: 100%;
}

.tokusyu_single p {
  padding-top: 0;
  text-indent: 0em !important;
}

.tokusyu_single p img.right {
  width: 280px !important;
  display: inline-block;
  float: right;
  padding: 0 0 0 20px;
}

.tokusyu_single p img.left {
  width: 300px !important;
  display: block !important;
  float: left;
  padding: 0 20px 0 0;
  padding-right: 20px !important;
}

.tokusyu_single p img.main {
  width: 95%;
}

.tokusyu_single strong {
  font-size: 15px;
  color: #474747;
  display: block;
  padding: 10px 0;
  text-indent: 0;
  font-weight: bold;
}

strong.lead {
  color: #CE0221;
  font-size: 1.6em;
  font-weight: bold;
  padding-top: 10px;
  padding-bottom: 10px;
}

p.writer {
  font-size: 15px;
  text-align: right;
}

p.profile {
  background-color: #F5F0D8;
  font-size: 13px !important;
  padding: 15px 10px 15px 20px !important;
  text-indent: 0 !important;
  line-height: 1.8 !important;
  margin-bottom: 0 !important;
}

p.profile span {
  display: block;
  font-size: 14px !important;
  margin: 0 !important;
  padding: 5px 0 !important;
  font-weight: bold;
}

.PR {
  margin: 0 auto;
  text-align: center;
}

.PR .col_3 li {
  background-color: transparent;
  margin-bottom: 10px;
}

@media screen and (max-width: 520.9px) {
  .tokusyu_single {
    width: 98%;
    margin: 0 auto;
  }
  .tokusyu_single h3 {
    width: 100%;
    margin: 0 auto;
  }
  .tokusyu_single p {
    font-size: 15px;
  }
  .tokusyu_single p strong {
    font-size: 16px;
  }
}
/*======= 特集アーカイブの設定 =======*/
.tokusyu_top {
  width: 980px;
  text-align: center;
  margin: 0 auto;
}

.tokusyu_top img {
  width: 100%;
  margin-bottom: 25px;
}

.tokusyu_top p {
  margin: 0 20px;
  text-align: left;
  margin-bottom: 80px;
}

.tokusyu_archive p {
  margin: 0 20px;
  text-align: left;
  margin-bottom: 80px;
}

.tokusyu_archive h3 {
  width: calc(100% - 30px);
  font-size: 19px;
  color: #3C3C3C;
  text-align: left;
  font-weight: bold;
  margin: 5px auto 15px;
  border-bottom: none;
  line-height: 1.5;
  height: calc(2rem + 15px);
  border-bottom: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  letter-spacing: 0;
}

ul.tokusyu_archive li h4 {
  width: calc(100% - 40px);
  text-align: right;
  font-size: 15px;
  margin: 0 auto 5px;
  padding: 10px 0 0;
  border-top: 1px solid #3C3C3C;
}

ul.tokusyu_archive li h5 {
  text-align: right !important;
  width: calc(100% - 40px);
  margin: 0 auto 5px;
  font-size: 14px;
}

ul.tokusyu_archive li p {
  width: calc(100% - 30px);
  font-size: 12px;
  padding: 0;
  margin: 10px auto;
  margin-bottom: 15px;
  font-feature-settings: "palt" 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

ul.tokusyu_archive li a button {
  display: block;
  background: #666;
  color: #fff;
  padding: 8px 10px;
  font-size: 14px;
  width: 90%;
  text-align: center;
  margin: 20px auto 0;
  border: none;
}

#REPORT ul.report li {
  position: relative;
}

#REPORT ul.report span.eternal_link {
  position: absolute;
  display: block;
  bottom: 10px;
  right: -10px;
  color: #497099;
  font-size: 15px;
  font-weight: bold;
}

.TOP_movie {
  max-width: 680px;
  margin: 0 auto;
}

/* CSS Document */
/*======= メディアクエリ =======*/
/*　overflowの設定　　　*/
@media screen and (max-width: 520px) {
  html, body {
    overflow-x: hidden !important;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    margin: 0 auto;
  }
}
@media screen and (max-width: 520px) {
  body {
    background-color: #FAFAFA;
    -webkit-text-size-adjust: 100%;
    min-width: initial;
  }
  main {
    box-sizing: border-box;
    margin: 0 auto;
    width: 100%;
  }
  section, .section {
    width: calc(100% - 30px);
    margin: 0 15px 100px !important;
    overflow: hidden;
  }
  footer {
    margin: 100px auto 0;
  }
  /*-------------------------------------ぱんくずリストの設定*/
  ul.pankuzu {
    width: 100%;
    margin: 25px auto 65px;
    padding-left: 10px;
    list-style: none;
  }
  ul.pankuzu li:first-child {
    padding-left: 10px;
    border-left: 5px solid #8EA9C1;
  }
  ul.pankuzu li {
    font-size: 0.8em;
    padding-left: 3px;
    line-height: 1.5em;
    text-align: left;
    display: inline-block;
  }
  ul.pankuzu li:first-child:before {
    content: none;
  }
  ul.pankuzu li:before {
    content: "»";
    padding-right: 5px;
  }
  ul.pankuzu li a {
    color: #333;
  }
  ul.pankuzu li a:hover {
    color: #909090;
    text-decoration: underline;
  }
  /*-------------------------------------h3見出しの設定*/
  h3 {
    font-size: 32px;
    font-weight: 400;
    border-bottom: 1px solid #497099;
    padding: 5px 0 10px;
    margin-bottom: 30px;
  }
  h3 a {
    font-size: 16px;
    text-align: right;
    display: block;
    float: right;
    padding-top: 1.3em; /*下に揃える*/
    color: #497099;
  }
  h3 a:after {
    content: "»";
  }
  /*=== 見出し/中央揃え ===*/
  h3.center {
    margin: 0 auto 10px;
    text-align: center;
    width: 100%;
    padding-bottom: 15px;
  }
  h3.center_50 {
    margin: 0 auto 25px;
    text-align: center;
    width: 100%;
    padding-bottom: 15px;
    line-height: 2.4rem;
  }
  /*h3.business {
  	border-left: 10px solid #497099;
  	margin: 0 auto 30px;
  	padding: 8px 20px 15px;
  	text-align:left;
  	width: 100%;
  	color: #497099;
  	font-size: 32px;
  	font-weight: 600;
  }
  */
  /*-------------------------------------h4見出しの設定*/
  h4 {
    font-size: 32px;
    font-weight: 700;
    color: #3A3A3C;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-align: center;
  }
  /*-------------------------------------h5見出しの設定*/
  #media h5 {
    text-align: center;
    width: 100%;
    letter-spacing: 2px;
    margin: 0 auto 20px;
  }
  #business h5 {
    text-align: center;
    margin: 30px auto 40px;
    font-size: 32px;
    color: #497099;
    letter-spacing: -1px;
  }
  h5.slash {
    width: 12em !important;
    margin: 0 auto;
    position: relative;
    padding: 5px 5px 0;
    font-size: 24px !important;
    font-weight: bold;
    text-align: center;
    display: block;
  }
  .slash::before,
  .slash::after {
    position: absolute;
    top: 0px;
    height: 2.5rem;
    content: "";
  }
  .slash::before {
    border-left: solid 3px;
    left: 0;
    transform: rotate(-30deg);
  }
  .slash::after {
    border-right: solid 3px;
    right: 0;
    transform: rotate(30deg);
  }
  /*-------------------------------------p段落の基本設定*/
  section p {
    margin: 0 0 20px;
    color: #3A3A3C;
    line-height: 1.6;
  }
  br.br_none {
    display: none;
  }
  br.br_none_PC {
    display: block;
  }
  /*-------------------------------------リンクの設定*/
  a {
    color: #497099;
  }
  p a {
    display: block;
  }
  p a:after {
    content: "»";
    padding-left: 5px;
    letter-spacing: -0.8px;
  }
  .go_back {
    display: flex;
    justify-content: center;
  }
  /*-------------------------------------調整用*/
  .border_none {
    border-bottom: none !important;
    margin-bottom: 0px;
  }
  .m_bottom_20px {
    margin-bottom: 20px;
  }
  .m_bottom_30px {
    margin-bottom: 30px;
  }
  .m_bottom_40px {
    margin-bottom: 40px;
  }
  .m_bottom_50px {
    margin-bottom: 50px;
  }
  /*----------------------------------section内―2・3カラムの設定設定*/
  ul.col_2, ul.col_3 {
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-content: space-between; /* Safari etc. */ /* IE10        */
    flex-wrap: wrap;
  }
  ul.col_5 li {
    display: flex;
    width: 18%;
    margin-bottom: 50px;
  }
  ul.col_2 li {
    display: flex;
    width: 100%;
    margin: 0 auto;
    margin: 0 auto 50px;
    padding-bottom: 10px;
    background-color: white;
  }
  ul.col_3 li {
    display: flex;
    width: 95%;
    margin: 0 auto 50px;
    padding-bottom: 10px;
    background-color: white;
  }
  /*---------------動画・WEB制作の制作実績の設定*/
  #business ul.col_2 {
    width: 100%;
    margin: 50px 0;
    display: block;
  }
  #business ul.col_2 li {
    display: block;
    box-sizing: border-box;
    width: 100%;
    margin: 0 auto 30px;
    background-color: white;
  }
  .youtube {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
  }
  .youtube iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  #business ul.col_2 h4 {
    text-align: left;
    font-size: 20px;
    margin: 20px 0 15px;
  }
  #business ul.col_2 h4 span {
    font-size: 14px;
    font-weight: normal;
    display: block;
    padding: 15px 0 0 0;
  }
  #business ul.col_2 p {
    padding: 0;
    margin: 0 20px 10px;
    line-height: 1.6;
  }
  #business ul.col_2 a {
    display: block;
    margin: 0 0 10px 20px;
  }
  /*-------------------------------------section内―2カラム内の設定*/
  ul.col_2 li img, ul.col_3 li img {
    width: 100%;
    margin-bottom: 20px;
    display: block;
  }
  ul.col_2 h4 {
    text-align: left;
    padding-left: 15px;
  }
  ul.col_2 li p {
    font-size: 15px;
    padding: 0 15px;
    margin-bottom: 15px;
    position: initial;
    line-height: 1.8;
    text-align: justify;
  }
  ul.col_2 li p span, ul.col_3 li p span {
    display: inline;
    padding-left: 10px;
    position: initial;
    color: #497099;
  }
  ul.col_2 li p span:after, ul.col_3 li p span:after {
    content: "»";
  }
  ul.col_3 h4 {
    font-size: 22px;
    padding: 0 20px;
    text-align: left;
    line-height: 1.4;
    letter-spacing: 0;
  }
  ul.col_3 li p.date {
    font-size: 14px;
    margin-bottom: 5px;
  }
  ul.col_3 li p {
    font-size: 15px;
    padding: 0 20px;
    margin-bottom: 15px;
    font-feature-settings: "palt" 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  /*--------------------------TOPページのお知らせ設定*/
  dl#TOP_NEWS {
    float: none;
    width: 95%;
    margin: 0 auto;
    box-sizing: border-box;
  }
  dl#TOP_NEWS dt {
    font-size: 15px;
    margin: 0 0 10px 0;
  }
  dl#TOP_NEWS dt span {
    font-size: 11px;
    font-weight: bold;
    background-color: #D9E8F2;
    color: #497099;
    padding: 4px 7px 3px;
    display: inline-block;
    margin: 0 10px 0 0;
  }
  dl#TOP_NEWS dd {
    font-size: 17px;
    text-align: justify;
    margin: 0 0 20px 0;
    line-height: 1.5;
    letter-spacing: -0.5px;
  }
  dl#TOP_NEWS dd a:after {
    font-size: 18px;
    content: " »";
  }
  /* -------------------NEWS（アーカイブ・個別記事ページ）の設定 */
  section#NEWS, ul#archive, section#NEWS_article, ul.pre_next_LINK {
    box-sizing: border-box;
    width: calc(100% - 30px);
    margin: 30px auto 30px !important;
  }
  section#NEWS dl, section#NEWS_article dl {
    margin: 0 auto 50px;
    width: 95%;
  }
  section#NEWS dt, section#NEWS_article dt, div.pre_next dt {
    font-size: 15px;
    margin: 0 0 10px 0;
    padding: 0 !important;
  }
  section#NEWS dt span, section#NEWS_article dt span, div.pre_next dt span {
    font-size: 12px;
    font-weight: bold;
    background-color: #D9E8F2;
    color: #497099;
    padding: 5px;
    display: inline-block;
    margin: 0 10px 0 0;
  }
  section#NEWS dd, div.pre_next dd {
    font-size: 17px;
    margin: 0 0 10px 0;
    line-height: 1.5;
    letter-spacing: -0.5px;
  }
  /* 個別記事ページのタイトルは大きくする */
  section#NEWS_article dd {
    font-size: 24px;
    margin: 10px 0 0;
    line-height: 1.5;
    letter-spacing: -0.5px;
    padding-bottom: 15px;
  }
  /* 個別記事ページ */
  section#NEWS_article p {
    width: 95%;
    margin: 10px auto 15px;
    line-height: 2;
    letter-spacing: 0px;
    text-indent: 0;
    margin-bottom: 20px !important;
    font-size: 17px;
    text-align: justify;
  }
  section#NEWS_article img {
    display: block;
    margin: 0 autox;
    width: 100%;
  }
  section#NEWS_article p a {
    font-size: 16px;
    display: block;
    margin: 0;
    word-break: break-all;
  }
  section#NEWS_article p span {
    font-size: 15px;
    display: block;
    margin: 10px 0;
  }
  section#NEWS_article p span a {
    display: inline-block;
  }
  /* -------------------ページネーションの設定 */
  #page_navi {
    padding-top: 100px !important;
  }
  ul.pre_next_LINK {
    margin: 20px auto 0;
    text-align: center;
  }
  ul.pre_next_LINK li {
    display: inline-block;
    margin: 0 15px;
  }
  /* --------------ニュースのアーカイブの設定 */
  ul.archive {
    width: 95%;
    text-align: center;
    margin: 30px auto;
    text-align: left;
  }
  ul.archive li {
    display: inline-block;
    margin-bottom: 10px !important;
  }
  ul.archive li a {
    display: block;
    font-size: 16px;
    background: white;
    color: #497099;
    border: 1px solid #497099;
    padding: 8px;
    border-radius: 2px;
    margin-bottom: 0 !important;
  }
  /* --------------個別記事の前へ＆次への設定 */
  .pre:before {
    content: "«";
    padding-left: 3px;
  }
  .next:after {
    content: "»";
    padding-right: 3px;
  }
  div.pre_next {
    text-align: center;
  }
  div.pre_next dl {
    display: inline-block;
    width: 44%;
    margin: 0 2%;
    text-align: left;
  }
  div.pre_next dd {
    font-size: 15px;
    margin: 10px 0 0 10px;
    line-height: 1.4;
  }
  div.pre_next dd a {
    color: #3A3A3C;
  }
  /* --------------TOPの右側リンクの設定*/
  Ul#TOP_LINK {
    width: 100%;
    float: none;
    margin-top: 50px;
    text-align: center;
  }
  Ul#TOP_LINK li {
    width: 80%;
    display: block;
    text-align: left;
    font-size: 18px;
    border: 1px solid #497099;
    padding: 20px 15px;
    margin: 10px auto 15px;
    background-color: white;
  }
  Ul#TOP_LINK li:last-child {
    float: none;
  }
  /*--------------------------------TOP下リンクの個別設定*/
  ul#TOP_LINK_under {
    width: 100%; /*★*/
    justify-content: center;
    margin: 0 auto;
  }
  ul#TOP_LINK_under li {
    width: 90%; /*★*/
    margin: 0 auto 20px;
  }
  /*------------------------------------ companyの設定*/
  main#company {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 200px;
  }
  #side_navgation {
    display: none;
    float: none;
  }
  #company_content {
    width: 100%;
    padding: 0;
    margin: 0;
    float: none;
  }
  #company_content section {
    width: calc(100% - 40px);
    margin: 0 auto 80px;
    padding: 0;
  }
  /*---------- companyのコンテンツの設定*/
  #company_content h2 {
    font-size: 34px;
    font-weight: 700;
    margin: 20px 0px 30px;
    text-indent: -0.5em;
    letter-spacing: -1px;
    line-height: 1.6;
  }
  #company_content p, #company_content h4, #company_content DL {
    width: auto;
    margin: 0 10px;
    padding: 0;
    text-align: justify;
  }
  #company_content h4 {
    color: #00336B;
    font-size: 26px;
    letter-spacing: 0;
    margin-bottom: 20px;
    line-height: 1.4;
  }
  #company_content p {
    font-size: 16px;
    padding-bottom: 10px;
    line-height: 2;
    text-align: justify;
    width: 95%;
    margin-right: auto !important;
    margin-left: auto !important;
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  #company_content p img, #company_content img {
    width: 100%;
    margin: 10px auto;
  }
  /*---------- 社長の名前　フォント変更*/
  #company_content span {
    margin-right: 10px;
    margin-top: 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-align: right;
    display: block;
    font-family: "Sawarabi Mincho", Helvetica, Arial, sans-serif;
  }
  #company_content span#name {
    margin-top: 15px;
    font-size: 28px;
  }
  /*---------- 企業概要　DLの設定*/
  DL#company_info {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 20px;
    box-sizing: border-box;
  }
  DL#company_info dt {
    width: 20%;
    padding: 10px 0 15px;
    margin-bottom: 5px;
    border-bottom: 1px solid #E8E8E8;
    line-height: 1.6;
    margin-left: 0;
    margin-right: 0;
  }
  DL#company_info dd {
    width: 70%;
    padding: 10px 0 15px;
    margin-bottom: 5px;
    border-bottom: 1px solid #E8E8E8;
    line-height: 1.6;
    box-sizing: border-box;
    margin-left: 0;
    margin-right: 0;
  }
  /*---------- アクセスマップの設定*/
  /* Google Mapを囲う要素 */
  .map {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 75%; /* 比率を4:3に固定 */
  }
  /* Google Mapのiframe */
  .map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  /*---------- 沿革　DLの設定*/
  DL#company_history {
    display: flex;
    flex-wrap: wrap;
    width: 95%;
    margin: 20px auto 0;
    font-size: 15px;
    box-sizing: border-box;
  }
  DL#company_history dt {
    width: 100%;
    padding: 10px 0 0;
    border-bottom: none;
    line-height: 1.6;
    box-sizing: border-box;
    margin: 0;
  }
  DL#company_history dd {
    width: 100%;
    padding: 10px 0 15px;
    margin-bottom: 5px;
    border-bottom: 1px solid #E8E8E8;
    line-height: 1.6;
    box-sizing: border-box;
    margin: 0;
  }
  #company .col_3 li {
    width: 90%;
    margin: 0 auto 15px;
  }
  /*----------------- メディア(media）・事業紹介(business）の共通設定*/
  #media article, #business article {
    margin-bottom: 150px;
    text-align: center;
    margin: 0 auto;
  }
  #media article img, #business article img {
    float: none;
    width: 100%;
    display: block;
  }
  #media article p, #business article div.text_BOX {
    box-sizing: border-box;
    float: none;
    width: 100%;
    padding: 0;
  }
  #media article p, #business article div.text_BOX p {
    width: calc(100% - 20px);
    font-size: 16px;
    box-sizing: border-box;
    margin: 0 auto 40px;
    text-align: justify;
    line-height: 1.8rem;
  }
  #media article strong, #business article div.text_BOX strong {
    font-size: 25px;
    display: block;
    line-height: 1.5;
    margin: 25px 0 15px;
    color: #497099;
    letter-spacing: -0.7px;
  }
  #media article p a, #business article p a {
    display: block;
    margin: 10px 0;
  }
  #media a, #business a {
    width: 90%;
    margin: 0 auto !important;
  }
  /*----------------- 事業紹介(動画・WEB）サブページの設定*/
  section.B_lead {
    margin-top: 100px;
    width: auto;
  }
  section.B_lead h5 {
    font-size: 24px !important;
    line-height: 2rem;
    color: #3A3A3C !important;
    border-bottom: solid 1px #333;
    margin-bottom: 30px !important;
    width: 80%;
  }
  section.B_lead h5:after {
    width: 25%;
    border-bottom: 1px solid #497099;
  }
  section.B_lead p {
    font-size: 17px;
    line-height: 2.2rem !important;
    margin: 0 15px;
  }
  #business h3.center_50 {
    margin: 0 15px 25px;
    text-align: center;
    width: auto;
    padding-bottom: 15px;
  }
  #business div.LB_wrapper section ul.col_2 li {
    width: 95%;
  }
  #business div.LB_wrapper section ul.col_2 li h4 {
    margin-left: 20px;
  }
  #business div.LB_wrapper section ul.col_2 li a {
    margin: 15px 0 15px 20px !important;
    display: block;
  }
  #business div.LB_wrapper section ul.col_2 li a.button {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  #business section article p {
    width: calc(100% - 10px);
    padding: 0 5px;
    margin: 20px auto 10px;
    text-align: justify;
  }
  #business section article strong {
    margin: 0 auto 15px;
    text-align: justify;
    letter-spacing: -0.5px;
  }
  /*-----------------料金案内の設定*/
  section#price p {
    margin: 0 10px;
    font-size: 17px;
    line-height: 2.2rem !important;
  }
  section#price ul.col_2 {
    margin-top: 25px;
  }
  section#price ul.col_3 {
    margin-top: 15px;
  }
  section#price ul.col_2 li {
    display: block;
    width: calc(95% - 30px);
    margin-bottom: 35px;
    background-color: white;
    border: none;
    box-sizing: border-box;
    padding: 10px 0 20px;
  }
  section#price ul.col_2 li p {
    margin: 0 5px 25px;
    font-size: 17px;
    line-height: 2.2rem !important;
  }
  section#price ul.col_2 li div {
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }
  section#price ul.col_2 li h4 {
    width: auto;
    color: #17397A;
    font-size: 24px;
    text-align: left;
    margin: 0 auto 15px;
    padding: 20px 0 0;
    line-height: 2rem;
    border-top: dotted 2px #17397A;
  }
  section#price ul.col_2 li h4 span {
    font-size: 20px;
    line-height: 1rem;
    display: block;
    margin: 0 0 5px;
    text-align: left;
  }
  section#price ul.col_3 li {
    display: block;
    width: calc(100% - 30px);
    margin-bottom: 35px;
    border: 1px solid #8EA9C1;
    box-sizing: border-box;
    background-color: white;
    border-radius: 8px;
    padding: 20px 15px 20px;
  }
  section#price ul.col_3 li h4 {
    color: #17397A;
    font-size: 24px;
    text-align: center;
    margin: 0 20px 10px;
    padding: 0 0 10px;
    border-bottom: solid 4px #8EA9C1;
  }
  section#price ul.col_3 li p {
    display: block;
    overflow: visible;
    margin: 20px 0;
    font-size: 16px;
  }
  section#price ul.col_3 li span {
    display: block;
    text-align: center;
    color: #497099;
    font-weight: bold;
    font-size: 17px;
  }
  section#price ul.check {
    display: block;
    width: 100%;
    margin: 20px 0 15px;
  }
  section#price ul.check li {
    display: block;
    width: calc(100% - 40px);
    margin: 10px 20px;
    padding: 0;
    border: none;
    font-size: 15px;
  }
  section#price ul.check li:before {
    content: "✔";
    padding-right: 10px;
    color: #00A34D !important;
  }
  section#price ul.col_3 p.budget {
    margin: 30px auto 15px;
    padding: 10px 0;
    text-align: center;
    width: 85%;
    border: none;
    background: #E4E4E4;
    /*	border: 1px solid #8EA9C1;*/
    border-radius: 5px;
    line-height: 1.6;
  }
  section#price ul.col_3 p.budget span:after {
    content: none;
  }
  ul.option {
    width: 95%;
    margin: 0 auto;
    text-align: center;
    font-size: 14px;
    border-bottom: none;
  }
  ul.option li {
    display: inline-block;
    margin: 10px 0 0;
  }
  ul.option li:after {
    content: "/";
    padding-left: 10px;
  }
  ul.option li:last-child:after {
    content: none;
  }
  h5.slash {
    font-size: 24px;
  }
  /*----------------採用支援の設定*/
  section#saiyo_support, section#shukatu_support {
    width: calc(100% - 30px);
    margin: 0 auto 100px !important;
    overflow: hidden;
    box-sizing: border-box;
  }
  #saiyo_support article {
    width: calc(100% - 20px);
    margin-bottom: 50px;
    text-align: left;
  }
  #saiyo_support article div {
    float: none;
    width: 100%;
    padding: 0;
    margin: 0;
  }
  #saiyo_support article h5 {
    display: inline-block;
    text-align: left;
    margin: 30px 0 20px;
    padding: 8px 15px;
    background: #497099;
    font-size: 16px;
  }
  #saiyo_support article strong, section#shukatu_support article strong {
    font-size: 25px;
    display: block;
    line-height: 1.5;
    margin: 25px 0 15px;
    color: #497099;
    letter-spacing: -0.7px;
  }
  #saiyo_support article p {
    width: 100%;
    font-size: 16px;
    box-sizing: border-box;
    margin: 0 0 40px 0;
    text-align: justify;
    line-height: 1.8rem;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-right: 0 !important;
  }
  #saiyo_support article img {
    float: none;
    width: 100%;
    padding: 0;
  }
  #saiyo_support article p a {
    padding-left: 0 !important;
    margin-left: 0 !important;
    padding-top: 10px;
  }
  /*----------------お問い合わせフォームの設定*/
  .contact {
    width: 90%;
    margin: 0 auto;
    padding-top: 50px;
    text-align: center;
    border-top: 1px solid #497099;
  }
  .faq {
    border-top: none;
  }
  .contact b {
    margin: 20px auto;
    font-size: 15px;
    display: block;
    line-height: 1.6;
  }
  .contact p {
    margin: 0 auto 20px;
    font-size: 15px;
  }
  .contact a {
    display: block;
    color: white;
    border-radius: 5px;
    margin: 5px auto;
    text-align: center;
    width: 15em;
    padding: 10px 0;
    font-size: 20px;
    width: 80% !important;
  }
  .contact a:hover {
    opacity: 1;
  }
  .contact p.tel {
    font-size: 14px;
  }
  .contact p.tel span {
    font-size: 16px;
    line-height: 1.4;
    font-weight: bold;
    display: block;
    padding: 0;
  }
  .contact p.tel a {
    background: transparent;
    color: #3A3A3C;
    font-size: 24px;
    padding: 0;
    margin: 5px auto 0;
    pointer-events: none;
  }
  i.fa {
    padding-right: 10px;
  }
  /*======= 検索結果の設定 =======*/
  section#search {
    width: calc(100% - 30px);
  }
  section#search dl {
    margin: 50px auto 0;
  }
  section#search dt {
    font-size: 14px;
    margin: 0 0 10px;
  }
  section#search dt span {
    font-size: 12px;
    font-weight: bold;
    background-color: #D9E8F2;
    color: #497099;
    padding: 5px;
    display: inline-block;
    margin: 0 10px;
  }
  section#search dd {
    font-size: 16px;
    margin: 0 5px 30px 10px;
    line-height: 1.6;
  }
  /*======= 特集ページの設定 =======*/
  .tokusyu_top {
    width: 100%;
    text-align: center;
    margin: 0 auto;
  }
  .tokusyu_top img {
    width: 100%;
    margin-bottom: 25px;
  }
  .tokusyu_top p {
    margin: 0 20px;
    text-align: left;
    margin-bottom: 80px;
  }
  /*======= 会社情報　アンカーの調整 =======*/
  section.anchor, h3.anchor {
    display: block;
    margin-top: -80px !important;
    padding-top: 80px !important;
  }
}
/* CSS Document */
/*=======　サブページの設定 =======*/
main.sub {
  width: 980px;
  margin: 0 auto 300px;
  background: white;
}

main.sub section {
  margin: 0 20px;
}

@media screen and (max-width: 520.9px) {
  main.sub {
    width: 100% !important;
  }
  main.sub section {
    width: calc(100% - 30px);
    box-sizing: border-box;
    margin: 0 auto;
  }
}
/*=== 見出し ===*/
.sub h3 {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 50px;
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  padding: 0 20px 10px;
  border-bottom: solid 1px #497099;
  letter-spacing: 1px;
}

/*=== コンテンツ枠 ===*/
main.sub article {
  width: 680px;
  margin: 0 auto;
}

@media screen and (max-width: 520.9px) {
  main.sub section article {
    width: 100% !important;
  }
}
/*======= プライバシーポリシーの設定 =======*/
article#privacy dl {
  line-height: 1.6;
}

#privacy dl dt {
  margin: 25px 0 25px 0;
}

#privacy dl dd {
  font-size: 15px;
  margin: 0 0 15px 15px;
}

@media screen and (max-width: 520px) {
  #privacy {
    width: 95% !important;
  }
  main.sub article#privacy dl {
    margin: 0 auto;
  }
  #privacy p {
    line-height: 2;
  }
  #privacy dl dd {
    line-height: 2;
    text-align: justify;
  }
}
/*======= よくある質問アコーディオン =======*/
.accordion {
  margin: 3em auto;
  max-width: 700px;
  width: 95%;
}

.toggle {
  display: none;
}

.option {
  position: relative;
  margin-bottom: 1em;
  border-bottom: solid 1px #497099;
}

.title,
.content {
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
}

.title {
  padding: 20px 20px 30px;
  display: block;
  color: #333;
  font-size: 16px;
  padding-right: 35px;
  text-align: left;
  line-height: 1.6;
}

.title::after,
.title::before {
  content: "";
  position: absolute;
  right: 1.25em;
  top: 1.25em;
  width: 2px;
  height: 0.75em;
  background-color: #333;
  transition: all 0.3s;
}

.title::after {
  transform: rotate(90deg);
}

.content {
  max-height: 0;
  overflow: hidden;
}

.toggle:checked + .title + .content {
  max-height: 500px;
  transition: all 1.5s;
}

.toggle:checked + .title::before {
  transform: rotate(90deg) !important;
}

.accordion p a {
  color: #497099;
  display: inline-block;
  padding: 0 2px;
}

.accordion p a:after {
  content: none;
}

.accordion a:hover {
  opacity: 0.5;
}

/*======= 利用規約の設定 =======*/
#terms {
  width: 680px;
  margin: 0 auto;
}

@media screen and (max-width: 520px) {
  #terms {
    width: 100%;
    margin: 0 auto;
  }
}
#terms dl {
  line-height: 1.6;
}

#terms dl dt {
  font-size: 18px;
  font-weight: bold;
  margin: 25px 0 25px 0;
}

#terms dl dd {
  font-size: 16px;
  margin: 0 0 15px 15px;
}

/*======= サイトマップの設定 =======*/
#sitemap {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-content: space-between;
  /* Safari etc. */
  /* IE10        */
  flex-wrap: wrap;
  width: 800px;
  margin: 100px auto;
}

#sitemap ul.site_item {
  width: 30%;
  margin: 0 auto 75px;
}

#sitemap::after {
  width: 30%;
  content: "";
  height: 0;
  margin: 0 auto 75px;
}

#sitemap ul.site_item li:first-child {
  font-size: 18px;
  line-height: 1;
  font-weight: bold;
  content: none;
  padding-left: 0px;
}

#sitemap ul.site_item li:nth-child(2) {
  border-top: 5px solid #D9E8F2;
  padding-top: 25px;
}

#sitemap ul.site_item li {
  margin-right: 16px;
  padding-bottom: 15px;
  font-size: 16px;
  font-weight: normal;
  padding-left: 10px;
}

#sitemap ul.site_item li a:after {
  font-size: 15px;
  padding-left: 5px;
  content: "»";
}

@media screen and (max-width: 520px) {
  #sitemap {
    display: flex;
    justify-content: flex-start;
    width: 90%;
    margin: 50px auto;
  }
  #sitemap ul.site_item {
    width: 100%;
    margin: 0 auto 45px;
  }
}
/*======= 採用情報の設定 =======*/
#recruit {
  width: 980px;
  margin: 0 auto 100px;
  padding: 0 20px;
}

#recruit h5 {
  font-size: 19px;
  margin-bottom: 10px;
  font-weight: 700;
}

#recruit p {
  margin-bottom: 10px;
}

#recruit div {
  margin-bottom: 50px;
}

#recruit strong {
  font-weight: 700;
}

@media (max-width: 520px) {
  #recruit {
    width: calc(100% - 40px) !important;
    padding: 0;
  }
}
/*======= コンタクトフォームの設定 =======*/
/*ContactForm7カスタマイズ*/
table#contact_form {
  width: 90%;
  margin: 0 auto;
  box-sizing: border-box;
}

table#contact_form th,
table#contact_form td {
  text-align: left;
  padding: 10px;
  border: 1px solid #ccc;
}

table#contact_form th {
  text-align: left;
  width: 30%;
  background-color: #eee;
  vertical-align: middle;
}

/*必須項目*/
table#contact_form th span {
  background: #BF6668;
  color: white;
  font-size: 10px;
  padding: 5px;
  display: inline-block;
  margin-left: 10px;
  border-radius: 2px;
  vertical-align: middle;
}

table#contact_form th span.un_required {
  background: #999999;
}

table#contact_form td {
  width: 70%;
}

table#contact_form td input {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  max-width: 400px;
  font-size: 16px;
  color: #333333;
}

table#contact_form select {
  font-size: 16px;
  color: #333333;
}

table#contact_form td select.form_select {
  width: 250px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.select_wrap {
  position: relative;
  width: 250px;
}

.select_wrap:after {
  content: "";
  position: absolute;
  right: 10px;
  top: 15px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #ccc;
  border-left: 2px solid #ccc;
  transform: translateY(-50%) rotate(-135deg);
  font-size: 20px;
  pointer-events: none;
}

/*矢印消すIE*/
select::-ms-expand {
  display: none;
}

table#contact_form td textarea.form_textarea {
  box-sizing: border-box;
  width: 100%;
  height: 200px;
  padding: 10px !important;
  border-radius: 5px;
  border: 1px solid #ccc;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-align: left;
  font-size: 16px;
  color: #333333;
}

table#contact_form td input[type=text]:focus,
table#contact_form td textarea:focus {
  outline: solid 2px #666666;
}

/*確認画面の調整*/
section.confirm .select_wrap:after {
  content: none;
}

section.confirm table#contact_form td {
  font-size: 16px;
  padding: 20px 10px;
}

.contact-submit,
.contact-submit_back {
  width: 250px;
  background-color: #333;
  color: #fff;
  font-weight: bold;
  display: block;
  margin: 0 auto;
  font-size: 16px;
  padding: 15px;
  border-radius: 5px;
  border: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}

.contact-submit:hover,
.contact-submit_back:hover {
  background: #BF6668;
}

.contact-submit_back {
  background-color: #BCBCBC;
}

section#FORM p {
  width: 100%;
  /* text-align: center; */
  padding: 0 auto;
  margin-top: 30px;
}

section#FORM div.thanks {
  width: 90%;
  margin: 0 auto;
  text-align: center;
  padding: 50px 0;
}

section#FORM div.thanks span {
  display: block;
  margin: 45px auto 30px;
  padding: 15px 20px;
  background: #DAE4F4;
  font-size: 14px;
  font-weight: normal;
  line-height: 2em;
  width: 60%;
  border-radius: 5px;
}

/* エントリーフォームのCF7 */
#wpcf7-f2276-o1 p {
  /* text-align: center; */
  margin: 30px 0 20px;
}

section#FORM .privacy-txt {
  text-align: center !important;
}

select#wpcf7-form-control {
  text-align: center;
}

#wpcf7-f2276-o1 p.rechapcha-txt {
  font-size: 14px !important;
  color: #666;
  width: 90%;
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

/*======= フォーム スマホ表示用 =======*/
@media screen and (max-width: 520.9px) {
  section#FORM {
    width: calc(100% - 30px);
    margin: 0 auto;
  }
  table#contact_form {
    width: 98% !important;
  }
  table#contact_form th {
    text-align: left;
    width: 100% !important;
    display: block;
    box-sizing: border-box;
  }
  table#contact_form td {
    width: 100% !important;
    display: block;
    box-sizing: border-box;
  }
  table#contact_form td input {
    width: 100%;
    margin: 10px auto;
    box-sizing: border-box;
  }
  table#contact_form td select.form_select {
    width: 100%;
    margin: 10px auto;
  }
  .select_wrap {
    width: 100%;
  }
  .select_wrap:after {
    top: 30px;
  }
  section#FORM div.thanks {
    width: 100%;
    margin: 0 auto;
  }
  section#FORM div.thanks h4 {
    margin: 20px auto 0;
    width: 90%;
    line-height: 1.4em;
  }
  section#FORM div.thanks span {
    margin: 50px auto;
    width: 90%;
  }
}
/*======= コンタクトフォーム｜入力に必須※消さないこと!! =======*/
#contact_form input {
  pointer-events: auto !important;
  color: #666666 !important;
}

/*======= 広島企業年鑑ページ #105（電子版より移行・page-nenkan.php） =======*/
.nenkan .BANNER {
  width: 100%;
  margin: 0 auto 30px;
  max-width: 800px;
}

.nenkan .BANNER img {
  width: 100%;
  margin: 0 auto;
}

.nenkan .lead {
  width: 90%;
  margin: 25px auto;
  text-align: justify;
  line-height: 1.8;
  letter-spacing: -0.2px;
  font-size: 16px;
}

.nenkan .lead a {
  text-decoration: underline;
  font-size: 1em;
}

.nenkan .lead strong {
  font-weight: bold;
}

.nenkan h3 {
  border-bottom: none;
  padding-bottom: 0;
}

.nenkan h3.slash {
  margin: 45px auto 20px;
  position: relative;
  padding: 0 45px;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  font-weight: bold;
  font-size: 26px;
  line-height: 1.2;
}

.nenkan h3.slash::before,
.nenkan h3.slash::after {
  content: "";
  position: absolute;
  top: 0;
  display: block;
  width: 2px;
  height: 100%;
  background: #3a3a3c;
}

.nenkan h3.slash::before {
  left: 29px;
  transform: rotate(-30deg);
}

.nenkan h3.slash::after {
  right: 29px;
  transform: rotate(30deg);
}

.nenkan h5 {
  margin: 10px auto 0;
  font-size: 18px;
  color: #3a3a3c;
  text-align: center;
}

.nenkan a.text_link {
  display: block;
  color: #5c95d1;
  text-decoration: underline;
  margin-bottom: 10px;
  font-size: 1em;
}

/* 共通 p a { display:block } / p a:after の » を、フォーム内リンクだけ解除してインライン化 */
.nenkan #FORM p a {
  display: inline;
}

.nenkan #FORM p a::after {
  content: none;
}

/* 注意書き／フォーム直前の紹介文／同意文の左端を #contact_form（width:90% margin auto）に揃える */
.nenkan #FORM .attention,
.nenkan #FORM p:has(+ table#contact_form),
.nenkan #FORM .attention + p {
  width: 90%;
  margin: 0 auto;
}

/* section#FORM p の margin-top:30px / section p の margin-bottom:20px を注意書きでは打ち消す */
.nenkan #FORM .attention p {
  margin: 0;
}

.nenkan h3.headline {
  margin: 0 auto 50px;
  position: relative;
  width: 90%;
  font-weight: bold;
  letter-spacing: 1px;
  text-align: center;
}

.nenkan h3.headline br {
  display: none;
}

.nenkan h3.headline::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 5%;
  top: 50%;
  width: 90%;
  height: 7px;
  background-image: repeating-linear-gradient(-45deg, #000, #000 1px, transparent 1px, transparent 5px);
  background-size: 7px 7px;
  backface-visibility: hidden;
  transform: translateY(-50%);
}

.nenkan h3.headline span {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 0 15px;
  color: #3a3a3c;
  background: #fff;
  font-size: 28px;
  line-height: 1.2;
}

.nenkan h3.headline small {
  position: absolute;
  display: block;
  bottom: -25px;
  left: 50%;
  font-size: 12px;
  font-weight: normal;
  transform: translateX(-50%);
}

.nenkan #STORE { /* アンカー位置調整 */
  padding-top: 150px;
  margin-top: -150px;
}

.nenkan .shoplist {
  width: 96%;
  margin: 0 auto 100px;
}

.nenkan .shoplist h4 {
  margin: 25px 0 10px;
  border-left: 8px solid #063db5;
  padding-left: 10px;
  color: #063db5;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  text-align: left;
  letter-spacing: normal;
}

.nenkan .table_container {
  overflow-x: auto;
}

.nenkan .shoplist table {
  width: 100%;
  min-width: 700px;
  margin: 0 auto;
  border-collapse: collapse;
  box-sizing: border-box;
  border: solid 1px #ccc;
  table-layout: fixed;
}

.nenkan .shoplist table tr {
  background: #fff;
}

.nenkan .shoplist table td {
  padding: 12px 10px 10px 15px;
  text-align: left;
  vertical-align: middle;
  box-sizing: border-box;
  border-bottom: 1px solid #ccc;
  border-right: 1px solid #ccc;
  line-height: 1.5;
}

.nenkan .shoplist table td:first-child {
  width: 25%;
  background: #edf1f8;
}

.nenkan .shoplist table td:last-child {
  width: 25%;
}

/* フォーム内のラジオ・チェックボックスはネイティブ表示に戻す（td input の appearance:none / width:100% 解除） */
.nenkan #contact_form td input[type=radio],
.nenkan #contact_form td input[type=checkbox] {
  width: auto;
  max-width: none;
  padding: 0;
  -webkit-appearance: auto;
  -moz-appearance: auto;
  appearance: auto;
  margin-right: 6px;
  vertical-align: middle;
}

.nenkan #contact_form td .wpcf7-list-item {
  display: inline-block;
  margin: 0 20px 0 0;
}

.nenkan #contact_form td .wpcf7-list-item label {
  cursor: pointer;
}

@media screen and (max-width: 520px) {
  .nenkan .lead {
    width: 90%;
    font-size: 17px;
    box-sizing: border-box;
  }
  .nenkan .lead br {
    display: none;
  }
  .nenkan h3.headline {
    width: 100%;
  }
  .nenkan h3.headline br {
    display: block;
  }
  .nenkan h3.headline small {
    width: 100vw;
    bottom: -25px;
    font-size: 13px;
  }
  .nenkan .shoplist table td {
    font-size: 16px;
  }
}
/*======= 広告のお申込みページ（電子版より移行・page-ad-apply.php） =======*/
/* フォーム本体は既存の section#FORM / table#contact_form / .contact-submit / .privacy-txt を流用 */
.ad-apply #FORM {
  width: 96%;
  margin: 0 auto 80px;
}

/* 共通 p a { display:block } / p a:after の » を、このページのフォーム内リンクだけ
   解除してインライン化（ナビ・同意文が縦割れ＆»付きになるのを防ぐ。nenkan と同方式） */
.ad-apply #FORM p a {
  display: inline;
}

.ad-apply #FORM p a::after {
  content: none;
}

/* 上部のフォーム切替アンカー */
.ad-apply__nav {
  text-align: center;
  font-weight: bold;
}

.ad-apply__nav a {
  margin: 0 6px;
  color: #063db5;
  text-decoration: underline;
}

.ad-apply__block {
  margin: 0 auto 80px;
  scroll-margin-top: 150px; /* 固定ヘッダー分のアンカー位置調整 */
}

/* 見出し：基本 h4（中央・36px・下線）を上書きし、nenkan の shoplist h4 と同じ左ボーダー見出しに */
.ad-apply #FORM .ad-apply__heading {
  width: 90%;
  margin: 40px auto 20px;
  padding-left: 12px;
  border-left: 8px solid #063db5;
  color: #063db5;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2;
  text-align: left;
  letter-spacing: normal;
}

/* 注意書き：section#FORM p の margin-top:30px を打ち消し、左端を #contact_form に揃える */
.ad-apply #FORM .attention {
  width: 90%;
  margin: 20px auto 0;
}

.ad-apply #FORM .attention p {
  margin: 0;
  font-size: 14px;
  color: #666;
  line-height: 1.8;
}

/* セレクトの独自▼矢印が下寄りにずれる対処：
   CF7 が select を .wpcf7-form-control-wrap で包むため .select_wrap の高さが select 実寸とずれ、
   固定 top:15px が中央からずれる。ラッパを block 化して高さを揃え、矢印を上下中央（top:50%）に。 */
.ad-apply #FORM .select_wrap {
  display: inline-block;
  vertical-align: middle;
}

.ad-apply #FORM .select_wrap .wpcf7-form-control-wrap {
  display: block;
}

/* select は既定で inline-block のため下にベースライン余白が生じ、
   .select_wrap が select 実寸より高くなって矢印が下へずれる。block 化して余白を消す */
.ad-apply #FORM .select_wrap select.form_select {
  display: block;
}

.ad-apply #FORM .select_wrap:after {
  /* ▼は回転させた枠線でできており視覚的な重心が枠中心よりやや下になるため、
     実測で中央に見える 40% に設定（top:50% だと下寄りに見える） */
  top: 40%;
}

/* 同意チェックボックス：reset.css / common.css が全 input に appearance:none
   （background:white・border:none 含む）をかけるため描画が消える。ネイティブ表示に戻す（nenkan と同方式） */
.ad-apply #FORM .privacy-txt input[type=checkbox] {
  width: auto;
  max-width: none;
  padding: 0;
  -webkit-appearance: auto;
  -moz-appearance: auto;
  appearance: auto;
  margin-right: 6px;
  vertical-align: middle;
}

/* 広告掲載料金のご案内（フォーム上部に表示・電子版 紙版タブより移植） */
.ad-apply__price {
  margin: 0 auto 60px;
}

/* 見出し以外の中身は、.ad-apply__heading（width:90%）と左右を揃える */
.ad-apply #FORM .ad-apply__price .ad-apply__lead,
.ad-apply #FORM .ad-apply__price .ad-apply__desc,
.ad-apply #FORM .ad-apply__price .ad-apply__note,
.ad-apply__table-wrap,
.ad-apply__images,
.ad-apply__delivery {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.ad-apply #FORM .ad-apply__price .ad-apply__lead {
  margin-top: 0;
  text-align: center;
  line-height: 1.8;
}

.ad-apply #FORM .ad-apply__price .ad-apply__desc {
  margin-top: 10px;
  line-height: 1.9;
}

.ad-apply__price-section {
  margin-bottom: 50px;
}

/* 料金表 */
.ad-apply__table-wrap {
  overflow-x: auto; /* スマホは横スクロールで表を維持 */
}

.ad-apply__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  line-height: 1.6;
}

.ad-apply__table th,
.ad-apply__table td {
  border: 1px solid #ccc;
  padding: 10px 12px;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
}

.ad-apply__table thead th {
  background: #063db5;
  color: #fff;
  font-weight: bold;
}

/* 種類・掲載場所／内容など説明列は左寄せ・折り返し可 */
.ad-apply__table td:nth-child(2) {
  text-align: left;
  white-space: normal;
}

/* サイズ見本画像 */
.ad-apply__size-img {
  display: block;
  width: 90%;
  max-width: 800px;
  height: auto;
  margin: 24px auto 0;
}

.ad-apply__images {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.ad-apply__images img {
  flex: 1 1 30%;
  min-width: 0;
  max-width: 100%;
  height: auto;
}

/* 注意書き */
.ad-apply #FORM .ad-apply__price .ad-apply__note {
  margin: 6px auto 0;
  font-size: 14px;
  color: #666;
  line-height: 1.8;
}

/* チラシ納品先のご案内 */
.ad-apply__delivery {
  margin-top: 20px;
  padding: 16px 20px;
  background: #f5f7fb;
  border-left: 4px solid #063db5;
}

.ad-apply #FORM .ad-apply__price .ad-apply__delivery p {
  margin: 0;
  line-height: 1.8;
}

.ad-apply__delivery-ttl {
  font-weight: bold;
  color: #063db5;
}

@media screen and (max-width: 520px) {
  .ad-apply #FORM .ad-apply__heading {
    font-size: 18px;
  }
  .ad-apply__block {
    margin-bottom: 60px;
  }
  .ad-apply__table {
    font-size: 13px;
  }
  .ad-apply__table th,
  .ad-apply__table td {
    padding: 8px 10px;
  }
  .ad-apply__images {
    gap: 8px;
  }
  .ad-apply__images img {
    flex-basis: 100%;
  }
}
/*======= コンタクトフォーム｜入力に必須※消さないこと!! =======*/
/*======= 電子版 法務ページ（臨時移植：利用規約・特定商取引法・個人情報保護方針） =======*/
main.sub .e-legal {
  width: 680px;
  margin: 0 auto;
  line-height: 1.8;
  text-align: justify;
}

@media screen and (max-width: 520.9px) {
  main.sub .e-legal {
    width: 100% !important;
  }
}
.e-legal__lead {
  margin-bottom: 30px;
}

.e-legal__section {
  margin-bottom: 45px;
}

.e-legal h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: solid 1px #497099;
  color: #497099;
}

.e-legal h5 {
  font-size: 16px;
  font-weight: 600;
  margin: 25px 0 8px;
}

.e-legal p {
  margin-bottom: 14px;
  line-height: 1.8;
}

.e-legal ol,
.e-legal ul {
  margin: 0 0 14px;
  padding-left: 1.7em;
}

.e-legal ol {
  list-style: decimal;
}

.e-legal ul {
  list-style: disc;
}

.e-legal li {
  margin-bottom: 8px;
  line-height: 1.8;
}

/* 手動採番済みの入れ子リストはマーカーを付けない */
.e-legal .e-legal__list--plain {
  list-style: none;
  padding-left: 1em;
  margin-top: 8px;
}

.e-legal li > ol,
.e-legal li > ul {
  margin-top: 8px;
  margin-bottom: 0;
}

.e-legal small {
  font-size: 13px;
  color: #666;
}

/* 段落内リンクをブロック化＋»付与する既定を無効化し、インラインに戻す */
.e-legal a {
  color: #497099;
  word-break: break-all;
}

.e-legal p a,
.e-legal li a,
.e-legal dd a {
  display: inline;
}

.e-legal p a:after {
  content: none;
  padding-left: 0;
}

/*--- 特定商取引法：定義リスト ---*/
.e-legal .e-legal__def {
  line-height: 1.7;
}

.e-legal .e-legal__def dt {
  font-weight: 600;
  margin-top: 20px;
  padding-bottom: 5px;
  border-bottom: dotted 1px #ccc;
}

.e-legal .e-legal__def dd {
  font-size: 15px;
  margin: 8px 0 0 1em;
}

/*--- 個人情報保護方針：問い合わせ窓口 ---*/
.e-legal .e-legal__contact {
  margin-top: 50px;
  padding: 25px;
  background: #f5f7fa;
}

.e-legal .e-legal__contact p {
  margin-bottom: 12px;
}

.e-legal .e-legal__contact p:last-child {
  margin-bottom: 0;
}

/* CSS Document */
/*======= トップページ =======*/
main#TOP {
  width: 100%;
}

div.W_wrapper {
  background: white;
}

div.LB_wrapper {
  background: #cfdae6;
  width: 100%;
  z-index: -9999;
}

div.LG_wrapper {
  background: #fafdff;
}

@media screen and (max-width: 520px) {
  main#TOP a.large {
    width: 90%;
    margin: 0 auto !important;
  }
}
/*======= トップの見出し =======*/
h3.head-border {
  border-bottom: none;
  font-size: 36px;
  font-weight: 400;
  color: #abb9c2;
  border-bottom: none;
  width: 100%;
  max-width: 600px;
  padding: 5px 10px 10px;
  margin: 200px auto 75px;
  text-align: center;
  letter-spacing: 2px;
}

@media screen and (max-width: 520px) {
  h3.head-border {
    font-size: 40px !important;
    width: 98%;
    margin: 0 auto 40px;
    box-sizing: border-box;
  }
}
h3.head-border {
  display: flex;
  align-items: center;
}

.head-border:before,
.head-border:after {
  content: "";
  height: 2px;
  flex-grow: 1;
  background-color: #abb9c2;
}

.head-border:before {
  margin-right: 1rem;
}

.head-border:after {
  margin-left: 1rem;
}

/*=======お知らせ設定 =======*/
section#TOP_NEWS h3 {
  font-size: 42px;
  margin: 0 auto 15px;
}

section#TOP_NEWS dl#news {
  float: none;
  background: white;
  width: 100%;
  margin: 0;
}

section#TOP_NEWS dl#news a {
  margin: 35px auto 0;
}

dl#news dt {
  font-size: 14px;
  margin: 0 0 10px;
}

dl#news span {
  font-size: 11px;
  background-color: #D9E8F2;
  color: #497099;
  padding: 6px;
  display: inline-block;
  margin: 0 10px;
}

dl#news dd {
  font-size: 16px;
  margin: 0 10px 25px 10px;
  padding-bottom: 10px;
  line-height: 1.6;
  border-bottom: dotted 1px #497099;
}

dl#news dd:last-child {
  border-bottom: none !important;
  padding-bottom: 5px;
}

dl#news dd a:after {
  font-size: 18px;
  content: " »";
}

div.TOP_LINK {
  width: 280px;
  box-sizing: border-box;
  float: right;
  margin: 10px 0 0 30px;
  padding: 0;
  /*background: #D9E8F2*/
}

div.TOP_LINK img, #REPORT img {
  width: 100%;
  display: block;
  padding: 5px;
  border: solid 1px #ccc;
  box-sizing: border-box;
}

div.TOP_LINK dl, #REPORT dl {
  margin: 10px 0;
}

div.TOP_LINK dl dt, #REPORT dl dt {
  font-size: 14px;
  font-weight: bold;
  color: #497099;
  margin: 15px 0 0;
  padding-left: 10px;
  border-left: 5px solid #497099;
}

div.TOP_LINK dl dd, #REPORT dl dd {
  font-size: 15px;
  line-height: 1.4;
  border-bottom: 1px dotted #497099;
  padding: 10px 0 10px 10px;
}

div.TOP_LINK dl dd:last-child, #REPORT dl dd:last-child {
  border-bottom: none;
  padding-bottom: 5px;
}

div.TOP_LINK p {
  text-align: right;
}

#REPORT ul.report {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between; /* Safari etc. */ /* IE10        */
  flex-wrap: wrap;
  margin: 50px auto;
}

#REPORT ul.report li {
  width: 30%;
  margin-right: 15px;
  margin-bottom: 50px;
  background-color: white;
  border-bottom: 1px solid #497099;
  padding-bottom: 10px;
}

#REPORT ul.report::after {
  content: "";
  width: 30%;
  display: block;
}

#REPORT article {
  margin: 100px auto 0;
}

#REPORT article img {
  float: left;
  width: 400px;
  margin-right: 20px;
}

#REPORT article p {
  float: right;
  width: calc(100% - 420px);
}

#REPORT article p span {
  display: block;
  text-align: right;
  font-size: 1.1rem;
}

.archive_p {
  width: 80%;
  margin: 75px auto 100px;
  line-height: 2.4;
  text-align: justify;
}

.archive_p strong {
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 1.5;
  display: block;
  margin-bottom: 15px;
}

@media screen and (max-width: 520px) {
  .archive_p {
    margin: 0 auto 100px;
    width: 90%;
  }
  section#TOP_NEWS {
    margin: 75px auto 30px;
    padding: 0;
    width: calc(100% - 30px);
  }
  section#TOP_NEWS dl#news {
    float: none;
    margin: 0 auto 80px;
    padding: 0;
    width: 100%;
  }
  div.TOP_LINK {
    width: 100%;
    margin: 0 auto 75px;
    margin-left: 0 !important;
    box-sizing: border-box;
    float: none;
  }
  div.TOP_LINK p {
    text-align: center;
    margin: 0 auto;
  }
  div.TOP_LINK p span {
    font-size: 14px;
    display: block;
    padding: 10px 0;
    width: 95%;
    text-align: center;
    margin: 0 auto;
  }
  div.TOP_LINK dl dt, div.TOP_LINK dl dd, dl#TOP_NEWS span {
    font-size: 16px;
    line-height: 1.5em;
  }
  #REPORT ul.report {
    display: flex;
    flex-direction: column;
  }
  #REPORT ul.report li {
    width: 90%;
    margin: 0 auto 50px;
  }
}
/*======= 事業紹介 =======*/
section#TOP_media {
  margin-bottom: 20px !important;
}

ul.top_BUSINESS {
  width: 100%;
}

ul.top_BUSINESS li {
  text-align: left;
  width: 90%;
  display: block;
  padding-bottom: 75px;
  /*background: white;*/
}

.top_BUSINESS li:nth-child(odd) {
  margin-right: auto;
}

.top_BUSINESS li:nth-child(even) {
  margin-left: auto;
}

.top_BUSINESS li:nth-child(odd) img {
  display: block;
  width: 400px;
  float: left;
}

.top_BUSINESS li:nth-child(even) img {
  display: block;
  width: 400px;
  float: right;
}

.top_BUSINESS li:nth-child(odd) .TEXT_box {
  position: relative;
  float: right;
  padding-top: 30px;
  padding-left: 30px;
  margin-left: 15px;
  border-left: 1px solid #003f8e;
  box-sizing: border-box;
  width: calc(100% - 430px);
}

.top_BUSINESS li:nth-child(even) .TEXT_box {
  position: relative;
  float: left;
  padding-top: 30px;
  padding-left: 30px;
  margin-left: 15px;
  margin-right: 20px;
  border-left: 1px solid #003f8e;
  box-sizing: border-box;
  width: calc(100% - 450px);
}

.top_BUSINESS strong {
  display: inline-block;
  width: content-fit;
  color: #003f8e;
  background: white;
  padding: 0 0 10px;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 16px;
  position: absolute;
  top: 0;
  left: -5px;
  letter-spacing: 2px;
}

.top_BUSINESS h4 {
  text-align: left;
  font-size: 36px;
}

.top_BUSINESS h4 span {
  display: block;
  font-size: 14px;
  /*	font-weight: normal;*/
  padding: 20px 10px 0 0;
  color: #0068b7;
}

.top_BUSINESS .TEXT_box p {
  font-size: 14px;
  line-height: 1.5;
  text-align: justify;
}

@media screen and (max-width: 520px) {
  .top_BUSINESS li:nth-child(odd) {
    margin: 0 auto;
    width: 100%;
  }
  .top_BUSINESS li:nth-child(even) {
    margin: 0 auto;
    width: 100%;
  }
  .top_BUSINESS li:nth-child(odd) img {
    display: block;
    width: 100%;
    float: none;
    margin: 0 auto;
    margin-bottom: 20px !important;
  }
  .top_BUSINESS li:nth-child(even) img {
    display: block;
    width: 100%;
    float: none;
    margin: 0 auto;
    margin-bottom: 20px !important;
  }
  .top_BUSINESS li:nth-child(odd) .TEXT_box {
    position: initial;
    float: none;
    margin-top: 30px;
    padding-left: 15px;
    margin-left: 0;
    border-left: 1px solid #003f8e;
    box-sizing: border-box;
    width: 100%;
  }
  .top_BUSINESS li:nth-child(even) .TEXT_box {
    position: initial;
    float: none;
    margin-top: 30px;
    padding-left: 15px;
    margin-left: 0;
    margin-right: 20px;
    border-left: 1px solid #003f8e;
    box-sizing: border-box;
    width: 100%;
  }
  .top_BUSINESS strong {
    display: inline-block;
    width: content-fit;
    color: #003f8e;
    background: white;
    padding: 0 0 10px;
    font-family: "Oswald", sans-serif;
    font-weight: 600;
    font-size: 16px;
    position: initial;
    letter-spacing: 2px;
  }
  .top_BUSINESS a.button {
    width: -moz-fit-content;
    width: fit-content;
    font-size: 16px;
    padding: 15px 15px;
    margin-right: 0;
    margin-left: auto;
  }
  .top_BUSINESS .TEXT_box p {
    font-size: 14px;
    line-height: 1.7;
    text-align: justify;
    width: 98%;
  }
  .top_BUSINESS h4 span {
    font-size: 16px;
    line-height: 1.8rem;
  }
}
/*======= ピックアップ事例 =======*/
section#PICKUP {
  padding: 50px 0 50px;
  margin-bottom: 0 !important;
}

section#PICKUP img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 3/2;
  -o-object-position: 50% 10%;
     object-position: 50% 10%; /* 0 0と同じ */
}

section#PICKUP h4 {
  font-size: 20px;
  text-align: justify;
}

section#PICKUP strong {
  margin: 0 auto 45px;
  display: block;
  text-align: center;
}

section#PICKUP p {
  font-size: 14px;
  line-height: 1.5;
  text-align: justify;
  padding: 0 15px;
}

@media screen and (max-width: 520px) {
  section#PICKUP strong {
    margin: 0 auto 25px;
    line-height: 1.8;
    display: block;
    text-align: center;
  }
  section#PICKUP .col_3 li {
    width: 100%;
  }
  section#PICKUP {
    margin-bottom: 80px !important;
  }
}
/*======= TOP下リンクの個別設定 =======*/
ul#TOP_LINK_under {
  width: 980px;
  justify-content: center;
  margin: 0 auto;
}

ul#TOP_LINK_under li {
  display: flex;
  width: 31%;
  margin: 0 1% 15px;
}

ul#TOP_LINK_under li img {
  width: 100%;
  filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.3));
}

ul#TOP_LINK_under ul.col_3::after {
  content: "";
  width: 31%;
  height: 0;
  margin: 0 1% 15px;
}

@media screen and (max-width: 520px) {
  ul#TOP_LINK_under {
    width: 100%;
  }
  ul#TOP_LINK_under li {
    display: block;
    width: 90%;
    margin: 0 auto;
  }
}
.TOP_movie {
  max-width: 720px;
  margin: 0 auto;
}

.TOP_movie iframe {
  border: 1px solid #003f8e;
}
