@charset "utf-8";
/* =====================================================
   Haebaru Ryohin - Organized CSS (re-ordered)
   Based on: template.css -> template-smt.css -> haebaru-patch.css
   Purpose: 編集しやすいようにセクションごとに並び替え
   ===================================================== */


/* =====================================================
   01) Base / Reset
   ===================================================== */
html {
  scroll-behavior: smooth;
}
body {
  font-size: 1em;
  line-height: 150%;
  color: #333333;
  margin: 0px;
  padding: 0px;
  background-color: #FFFFFF;
}
p {
  margin: 0px;
  padding: 0px;
}
img {
  border: 0px;
}
hr {
  height: 1px; /* 高さ */
  border-top-width: 2px;
  border-top-style: dashed;
  border-top-color: #CCCCCC;
  margin-top: 10px;
  margin-bottom: 10px;
  clear: both;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #FFFFFF;
}
ul {
  margin: 0 0 0 1em;
  padding: 0;
}

/* ※template-smt側のbase（重複は後勝ちになる想定） */
body {
  font-size: 1em;
  line-height: 150%;
  color: #333333;
  margin: 0px;
  padding: 0px;
  background-color: #FFFFFF;
  background-image: url(../image/common/back_img.gif);
}
img {
  max-width: 100%;
  height: auto;
}

/* リンク */
a:link, a:visited {
  color: #0084FF;
  text-decoration: none;
}
a:hover {
  color: #FF0000;
  opacity: 0.6;
  transition: 0.5s;
}
a:hover img {
  opacity: 0.6;
  transition: 0.5s;
}

/* 見出し（※元CSSのまま） */
h2, h3 h4, h5, h6, h7 {
  font-size: 12px;
  margin: 0px;
  padding: 0px;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
}

/* 小サイズ */
.text-small {
  font-size: 90%;
}


/* =====================================================
   02) Utilities（クリア・幅・float 等）
   ===================================================== */
.clr { clear: both; height: 0px; overflow: hidden; }
.clr5 { clear: both; height: 5px; overflow: hidden; }
.clr10 { clear: both; height: 10px; overflow: hidden; }
.clr15 { clear: both; height: 15px; overflow: hidden; }
.clr20 { clear: both; height: 20px; overflow: hidden; }
.clr25 { clear: both; height: 25px; overflow: hidden; }
.clr30 { clear: both; height: 30px; overflow: hidden; }
.clr40 { clear: both; height: 30px; overflow: hidden; }
.clr600 { clear: both; height: 600px; overflow: hidden; }
.clr_space { clear: both; height: 30px; }

.w200 { width: 200px; }
.w250 { width: 250px; }
.w400 { width: 400px; }
.w460 { width: 460px; }

.float_left { float: left; }
.float_left_ma10 { float: left; margin-right: 10px; }
.float_left_ma20 { float: left; margin-right: 20px; }
.float_right { float: right; }
.float_right_ma10 { float: right; margin-left: 10px; }

.img-bt-ma10 { margin-bottom: 10px; }
.img-top-ma10 { margin-top: 10px; }

.fontsize_16 { font-size: 1.6em; }
.text_bold { font-weight: bold; }
.text_blue { color: #0066CC; }
.text_red { color: #FF0000 !important; text-transform: none; }
.text_gray { color: #CCCCCC; font-weight: bold; }

.box_gray {
  border: 1px solid #CCCCCC;
  padding: 10px;
  overflow: auto; /* for modern browser */
  zoom: 1; /* for ie6 */
  line-height: 1.5;
}
.box_white {
  padding: 10px;
  background-color: #FFFFFF;
  overflow: auto; /* for modern browser */
  zoom: 1; /* for ie6 */
  line-height: 1.5;
}

/* template-smt側 floatユーティリティ（元のまま） */
.float_left_ma10 { float: none; margin-right: 0px; }
.float_left_ma20 { float: none; margin-right: 0px; }
.float_right_ma10 { float: none; margin-left: 0px; }


/* =====================================================
   03) Layout（コンテナ/全体枠）
   ===================================================== */
.header_area {
  max-width: 940px;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-right: auto;
  margin-left: auto;
}
.header_area-line {
  width: 100%;
  margin: 0px;
  padding: 0px;
  border-bottom: 4px solid #044C96;
  clear: both;
}
.content_area {
  max-width: 940px;
  margin-top: 10px;
  margin-right: auto;
  margin-left: auto;
}
.content_subtitle {

  width: 940px;
  margin-top: 30px;
  margin-right: auto;
  margin-left: auto;
}
#top_area { height: 325px; }
#center_main { float: right; width: 460px; }

/* Footer */
#footer {
  padding-top: 5px;
  clear: both;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  margin-top: 30px;
  border-top: 3px solid #CCCCCC;
}
#footer-area {
  clear: both;
  max-width: 940px;
  margin-right: auto;
  margin-left: auto;
  font-size: 85%;
  height: 90%;
}
#footer-area p {
  float: right;
  font-size: 140%;
}
#copyright {
  width: 100%;
  clear: both;
  padding-top: 10px;
  text-align: center;
  color: #333333;
  font-size: 70%;
  height: 90%;
}

/* template-smt側：ページ背景・コンテナ（元のまま） */
#page_bg {
  background-image: url(none);
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-color: #64D0F9;
  margin: 0px;
  padding-bottom: 5px;
}
.header_area { width: 100%; margin-top: 10px; margin-right: auto; margin-left: auto; }
.content_area { width: 98%; margin-top: 10px; margin-right: auto; margin-left: auto; }
.content_subtitle { width: 98%; margin-top: 30px; margin-right: auto; margin-left: auto; }


/* =====================================================
   04) Header（ロゴ・連絡先）
   ===================================================== */
#logo a {
  display: block;
  width: 405px;
  height: 92px;
  background-image: url(../image/common/logo-n.jpg);
  background-repeat: no-repeat;
  background-position: left top;
  float: left;
}
#logo h1 {
  visibility: hidden;
  display: none;
}
#h-right {
  width: 340px;
  float: right;
  font-size: 105%;
}

/* template-smt側 */
#logo { width: 100%; }


/* =====================================================
   05) Navigation（サブメニュー等）
   ===================================================== */
.sub-menu { margin-top: 20px; }
.sub-menu ul {
  width: 100%;
  margin: 0px;
  padding: 0px;
  list-style: none;
  overflow: auto; /* for modern browser */
  zoom: 1; /* for ie6 */
  line-height: 1.5;
  border-bottom: 3px solid #8A272D;
}
.sub-menu li a {
  color: #4c0000;
  text-align: center;
  float: left;
  margin: 0;
  padding: 0;
  font-size: 26px;
  display: block;
  width: 33.33333%;
  padding-top: 10px;
  padding-bottom: 10px;
  background-image: url(../image/common/arrow01.png);
  background-repeat: no-repeat;
  background-position: 65px 25px;
}
.sub-menu li a:hover { background-color: #FFF795; }
.sub-menu_under ul { border-top: 3px solid #8A272D; border-bottom: 0px; }
.sub-menu_under { margin-top: 0px; margin-bottom: 20px; }

/* template-smt側：簡易メニュー（元のまま） */
.h_m a { color: #ffffff; }
.h_m {
  padding-top: 10px;
  background-repeat: repeat-x;
  background-color: #064B96;
  background-image: none;
}
.h_m ul { width: 100%; padding: 0px; margin-left: auto; margin-right: auto; }
.h_m li a {
  color: #FFFFFF;
  font-size: 100%;
  display: block;
  width: 43%;
  padding-top: 2px;
  padding-bottom: 2px;
  padding-left: 3%;
  padding-right: 0%;
  margin-bottom: 5px;
  margin-right: 2%;
  margin-left: 2%;
  float: left;
  background-image: url(../image/common/arrow01.png);
  background-repeat: no-repeat;
  display: inline;
  background-position: left center;
}


/* =====================================================
   06) Typography（見出し・装飾テキスト）
   ===================================================== */
.midashi1 {
  font-size: 1.6em;
  color: #FFFFFF;
  font-weight: bold;
  margin-bottom: 15px;
  padding: 10px;
  background-color: #044C96;
  clear: both;
  margin-top: 40px;
}
.midashi2 {
  font-size: 1.6em;
  font-weight: bold;
  color: #ffffff;
  padding: 10px;
  margin-bottom: 5px;
  background-color: #333333;
}
.midashi3 { font-weight: bold; color: #333333; }

/* template-smt側：midashi（元のまま） */
.midashi1 {
  font-size: 1.0em;
  color: #FFFFFF;
  font-weight: bold;
  margin-bottom: 10px;
  padding: 3px;
  border-left: 5px solid #004DA0;
  background-color: #044C96;
  background-image: url(../image/common/h_m_bk-sub.jpg);
  background-repeat: repeat-x;
  background-position: left top;
  clear: both;
  margin-top: 20px;
}
.midashi2 { font-size: 1.2em; font-weight: bold; color: #E32D5A; margin-bottom: 5px; }


/* =====================================================
   07) TOP（トップ背景 / 紹介文 / 募集など）
   ===================================================== */
.top_bc-area {
  width: 100%;
  height: 415px;
  background-image: url(../image/common/logo-bkimg.jpg);
  background-repeat: repeat-x;
}
.top_area {
  width: 100%;
  height: 415px;
  background-image: url(../image/common/logo.png);
  background-repeat: no-repeat;
  background-position: center center;
  margin-left: auto;
  margin-right: auto;
}
.top-w940 {
  max-width: 970px;
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}
.top-w940-b {
  width: 940px;
  margin-top: 0px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
  border: 2px solid #DDDDDD;
}
.top-w940-b h3 {
  display: block;
  height: 75px;
  background-image: url(../image/common/top-bosyu-r4.png);
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  background-color: #ff1e00;
  background-repeat: no-repeat;
  background-position: center center;
  margin-bottom: 0px;
  margin-top: 0px;
}
.top-w940-b p { margin: 20px; }
.top-w940-b ul { list-style: none; margin: 0em 20px; }
.top-w940-b li { margin-bottom: 30px; }
.top-w940-b h4 { text-align: center; font-size: 130%; }
.top-w940-b .arrow-img a, .top-w940-b .arrow-img-wm a {
  font-size: 120%;
  color: black;
  min-width: 200px;
  border-radius: 5px;
  padding: 5px 10px 5px 5px;
  background: rgb(204, 204, 204);
  background: linear-gradient(0deg, rgba(204, 204, 204, 1) 35%, rgba(255, 255, 255, 1) 100%);
  border: 1px solid #AAAAAA;
  margin-right: 15px;
}
.top-w940-b .arrow-img-wm a {
  font-size: 140%;
  color: white;
  background: #044C96;
  font-weight: bold;
}
.top-w940-b .arrow-img a::before, .top-w940-b .arrow-img-wm a::before {
  content: url("../image/common/arrow01.png");
  padding: 0 7px 0 5px;
}
.top-w940-b .arrow-img-wm a::before { content: url("../image/common/arrow02.png"); }
.bosyu-area { width: fit-content; margin: 0px auto; }
.bosyu-area li { float: left; margin-right: 10px; }


/* =====================================================
   08) content_area01（年度一覧・バナー）
   ===================================================== */
.content_area01 {
  width: 100%;
  background-image: url(../image/common/top-h_bk.jpg);
  padding-bottom: 20px;
  overflow: auto; /* for modern browser */
  zoom: 1; /* for ie6 */
  line-height: 1.5;
}
.content_area01 h2 {
  width: 100%;
  height: 135px;
  display: block;
  background-image: url(../image/common/top-h_h-2019.png);
  background-repeat: no-repeat;
  background-position: center center;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  margin-bottom: 20px;
}
.content_area01 .reiwa-t,
.content_area01 .reiwa2-t,
.content_area01 .reiwa3-t,
.content_area01 .reiwa5-t,
.content_area01 .reiwa6-t{
  width: 100%;
  height: 135px;
  display: block;
  background-repeat: no-repeat;
  background-position: center center;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  margin-bottom: 20px;
}
.content_area01 .reiwa-t  { background-image: url(../image/common/top-h_h-2020-reiwa.png); }
.content_area01 .reiwa2-t { background-image: url(../image/common/top-reiwa2.png); }
.content_area01 .reiwa3-t { background-image: url(../image/common/top-reiwa3.png); }
.content_area01 .reiwa5-t { background-image: url(../image/common/top-reiwa5.png); }
.content_area01 .reiwa6-t { background-image: url(../image/common/top-reiwa6.png); }

.nendo-img { text-align: center; margin-bottom: 20px; }
.top-banner-area img { margin: 0px 10px 10px 10px; }

.content_area01 ul { margin: 0px; padding: 0px; list-style: none; }
.content_area01 li, .content_area01 li a {
  display: block;

  margin-bottom: 15px;
  background-repeat: no-repeat;
}
.content_area01 li { display: block; margin: 0 auto; }
.content_area01 li a:hover { opacity: 0.6; }

/* 年度別バナー */
.r4p1 a { background-image: url(../image/common/top-bn2022-01.png) }
.r4p2 a { background-image: url(../image/common/top-bn2022-02.png) }
.r4p3 a { background-image: url(../image/common/top-bn2022-03.png) }
.r4p4 a { background-image: url(../image/common/top-bn2022-04.png) }
.r4p5 a { background-image: url(../image/common/top-bn2022-05.png) }
.r4p6 a { background-image: url(../image/common/top-bn2022-06.png) }

.r5p1 a { background-image: url(../image/common/top-bn2023_1.png) }
.r5p2 a { background-image: url(../image/common/top-bn2023_2.png) }
.r5p3 a { background-image: url(../image/common/top-bn2023_3.png) }
.r5p4 a { background-image: url(../image/common/top-bn2023_4.png) }
.r5p5 a { background-image: url(../image/common/top-bn2023_5.png) }
.r5p6 a { background-image: url(../image/common/top-bn2023_6.png) }

.r6p1 a { }
.r6p2 a { }
.r6p3 a { }
.r6p4 a { }
.r6p5 a { }

/* old-area */
.old-area li, .old-area li a {
  width: 460px;
  height: 190px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  float: left;
  margin-right: 10px;
  margin-bottom: 10px;
  list-style: none;
  display: block;
}
.old-area li a:hover { opacity: 0.6; }
.old-p0 { background-image: url(../image/common/top-c2019_01-s.jpg) }
.old-p1 a { background-image: url(../image/common/top-c2019_02-s.jpg) }
.old-p2 a { background-image: url(../image/common/top-c2019_03-s.jpg) }
.old-p3 a { background-image: url(../image/common/top-c2019_04-s.jpg) }
.old-p4 a { background-image: url(../image/common/top-c2019_05-s.jpg) }
.old-p5 a { background-image: url(../image/common/top-c2019_06-s.jpg) }
.old-p6 a { background-image: url(../image/common/top-c2019_07-s.jpg) }
.old-p7 { background-image: url(../image/common/top-c2019_08-s.jpg) }

/* old-area-01 / old-area-02 */
.old-area-01 ul { margin: 0px; }
.old-area-01 li, .old-area-01 li a {
  width: 225px;
  height: 125px;
  float: left;
  margin-right: 17px;
  margin-bottom: 17px;
  list-style: none;
  display: block;
}
.old-area-01 li a:hover { opacity: 0.6; }

.old-area-02 h3 { margin: 0 0 10px 0 }
.old-area-02 ul { margin: 0; display: flex; flex-wrap: wrap; }
.old-area-02 li {
  display: block;
  width: 23%;
  margin: 0 2% 2% 0;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.old-area-02 li a {
  display: block;
  width: 100%;
  padding-bottom: 45%;
  background-repeat: no-repeat;
  background-size: contain;
}
.old-area-02 li a:hover { opacity: 0.6; }

.old-area-02 .r4p1 a { background-image: url(../image/common/top-c2023_01.jpg) }
.old-area-02 .r4p2 a { background-image: url(../image/common/top-c2023_02.jpg) }
.old-area-02 .r4p3 a { background-image: url(../image/common/top-c2023_03.jpg) }
.old-area-02 .r4p4 a { background-image: url(../image/common/top-c2023_04.jpg) }
.old-area-02 .r4p5 a { background-image: url(../image/common/top-c2023_05.jpg) }
.old-area-02 .r4p6 a { background-image: url(../image/common/top-c2023_06.jpg) }

/* 他年度 */
.r3p1 a { background-image: url(../image/common/top-c2022_01.jpg) }
.r3p2 a { background-image: url(../image/common/top-c2022_02.jpg) }
.r3p3 a { background-image: url(../image/common/top-c2022_03.jpg) }
.r3p4 a { background-image: url(../image/common/top-c2022_04.jpg) }
.r3p5 a { background-image: url(../image/common/top-c2022_05.jpg) }
.r3p6 a { background-image: url(../image/common/top-c2022_06.jpg) }
.r3p7 a { background-image: url(../image/common/top-c2022_07.jpg) }
.r3p8 a { background-image: url(../image/common/top-c2022_08.jpg) }
.r3p9 a { background-image: url(../image/common/top-c2022_09.jpg) }

.r2p1 a { background-image: url(../image/common/top-c2021_01.jpg) }
.r2p2 a { background-image: url(../image/common/top-c2021_02.jpg) }

.r1p1 a { background-image: url(../image/common/top-a2019_01.jpg) }
.r1p2 a { background-image: url(../image/common/top-a2019_02.jpg) }
.r1p3 a { background-image: url(../image/common/top-a2019_03.jpg) }
.r1p4 a { background-image: url(../image/common/top-a2019_04.jpg) }

.h30p1 a { background-image: url(../image/common/top-a2018_01.jpg) }
.h30p2 a { background-image: url(../image/common/top-a2018_02.jpg) }
.h30p3 a { background-image: url(../image/common/top-a2018_03.jpg) }
.h30p4 a { background-image: url(../image/common/top-a2018_04.jpg) }
.h30p5 a { background-image: url(../image/common/top-a2018_05.jpg) }
.h30p6 a { background-image: url(../image/common/top-a2018_06.jpg) }
.h30p7 a { background-image: url(../image/common/top-a2018_07.jpg) }

.h29p1 a { background-image: url(../image/common/top-c2020_1_01.jpg) }
.h29p2 a { background-image: url(../image/common/top-c2020_1_02.jpg) }
.h29p3 a { background-image: url(../image/common/top-c2020_1_03.jpg) }
.h29p4 a { background-image: url(../image/common/top-c2020_1_04.jpg) }
.h29p5 a { background-image: url(../image/common/top-c2020_1_05.jpg) }
.h29p6 a { background-image: url(../image/common/top-c2020_1_06.jpg) }
.h29p7 {
  background-image: url(../image/common/top-c2020_1_07.jpg);
  background-repeat: no-repeat;
  padding-bottom: 14%;
  background-size: contain;
}

.h28p1 a { background-image: url(../image/common/top-c2020_1_04.jpg) }
.h28p2 a { background-image: url(../image/common/top-c2020_1_06.jpg) }
.h28p3 a { background-image: url(../image/common/top-c2020_1_05.jpg) }
.h28p4 {
  background-image: url(../image/common/top-c2020_1_07.jpg);
  background-repeat: no-repeat;
  padding-bottom: 14%;
  background-size: contain;
}

/* カタログ旧リスト */
.katarogu-old-list { margin: 15px 0 0 0; }
.katarogu-old-list li {
  list-style: url('../image/common/arrow01.png');
  text-align: center;
  margin: 0 auto 10px;
  width: 290px;
}
.katarogu-old-list li:first-child {
  list-style: none;
  margin-bottom: 20px;
  width: 100%;
}


/* =====================================================
   09) Sub pages（tsp / gaiyou / layout等）
   ===================================================== */
.tsp {
  margin-top: 30px;
  background-image: url(../image/common/cs-01.jpg);
  padding-top: 50px;
  padding-right: 50px;
  padding-left: 50px;
  padding-bottom: 0px;
  background-repeat: no-repeat;
  background-position: left top;
  background-color: #F3E6C6;
}
.tsp h2 {
  font-family: Verdana, Roboto, "Droid Sans", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 200%;
  background-image: url(../image/common/cs-03.jpg);
  background-repeat: no-repeat;
  background-position: left bottom;
  padding-bottom: 30px;
  font-weight: bold;
  line-height: 110%;
}
.tsp h3 { font-size: 140%; color: #780000; margin: 0 0 5px 0; padding: 0px; }
.tsp-ft { padding-top: 100px; background-image: url(../image/common/cs-02.jpg); }

.c-al, .c-ar { width: 400px; float: left; margin-right: 40px; }
.c-ar { margin-right: 0px; }
.c-al img, .c-ar img { margin-bottom: 10px; }

.ssk-area { padding: 40px; border: 1px solid #CCCCCC; border-radius: 15px; }
.ssk-area img { float: left; margin-right: 10px; }
.ssk-area h3 { font-size: 140%; color: #780000; margin: 0 0 5px 0; padding: 0px; }

.net-midasi {
  font-family: Verdana, Roboto, "Droid Sans", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 160%;
  font-weight: bold;
  color: #780000;
  border-bottom: 1px dotted #666666;
  padding-bottom: 10px;
  margin-bottom: 20px;
  line-height: 110%;
}

.gaiyou h2,.gaiyou-midashi {
  font-family: Verdana, Roboto, "Droid Sans", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 160%;
  font-weight: bold;
  color: #780000;
  margin-top: 20px;
  margin-bottom: 10px;
}
.gaiyou table { width: 100%; padding: 0px; margin: 10px 0 30px; }
.gaiyou table td, .gaiyou table th {
  border-bottom: 1px dotted #666666;
  padding: 5px;
  font-weight: normal;
  text-align: left;
}

.logo-l-layout {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
}
.logo-l-layout h2 {
  width: 100%;
  margin: 20px 0 10px;
  padding: 0;
  display: block;
}
.logo-l-layout img { width: 200px; height: auto; vertical-align: bottom; }
.logo-l-layout table { width: 700px; }

/* 令和5 layout */
.layout-li-ri-k {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
}
.layout-li-ri-k li { width: calc(33.33333333% - 20px); margin: 0px; padding: 0; }
.layout-li-ri-k li img { max-width: 100%; height: auto; margin-bottom: 10px; }


/* =====================================================
   10) Forms / Steps（WEBからの申し込み）
   ===================================================== */
.tejyun-title {
  font-size: 2em;
  color: red;
  text-align: center;
  font-weight: bold;
  margin-top: 45px;
}
.tejyun-arrow { margin-top: 30px; }
.tejyun-arrow a {
  font-size: 120%;
  color: black;
  width: 200px;
  border-radius: 5px;
  padding: 5px 10px 5px 5px;
  background: rgb(204, 204, 204);
  background: linear-gradient(0deg, rgba(204, 204, 204, 1) 35%, rgba(255, 255, 255, 1) 100%);
  border: 1px solid #AAAAAA;
  margin-right: 15px;
}
.tejyun-arrow a::before {
  content: url("../image/common/arrow01.png");
  padding: 0 7px 0 5px;
}
.tejyun01, .tejyun02, .tejyun03 {
  font-size: 1.25em;
  color: #FFFFFF;
  font-weight: 700;
  margin-bottom: 15px;
  padding: 15px 10px 10px 45px;
  background-color: #044C96;
  clear: both;
  margin-top: 40px;
  line-height: 120%;
}
.tejyun01 { background-image: url(../image/common/n01.png); background-position: 10px center; background-repeat: no-repeat; }
.tejyun02 { background-image: url(../image/common/n02.png); background-position: 10px center; background-repeat: no-repeat; }
.tejyun03 { background-image: url(../image/common/n03.png); background-position: 10px center; background-repeat: no-repeat; }


/* =====================================================
   11) QA（FAQ 開閉）
   ===================================================== */
p.question {
  cursor: pointer;
  color: #004da0;
  border-bottom: 2px solid #004da0;
  padding: 5px;
  margin-top: 20px;
}
p.question:hover { background-color: #FFFB9A; }
p.answer {
  display: none;
  background: #f2f2f2;
  margin-left: 1em;
  padding: 5px;
}
.answer ul {
  display: none;
  background: #f2f2f2;
  margin-left: 1em;
  padding: 5px;
}


/* =====================================================
   12) Slider（wideslider）
   ===================================================== */
.wideslider {
  width: 100%;
  height: 340px;
  text-align: left;
  position: relative;
  overflow: hidden;
  padding: 0px;
  margin: 0px;
}
.wideslider ul, .wideslider ul li {
  margin: 0px;
  float: left;
  display: inline;
  overflow: hidden;
}
.wideslider ul li img {
  width: 100%;
  display: none;
}
.wideslider_base { top: 0; position: absolute; }
.wideslider_wrap { top: 0; position: absolute; overflow: hidden; }
.slider_prev, .slider_next {
  top: 0;
  overflow: hidden;
  position: absolute;
  z-index: 100;
  cursor: pointer;
}
.slider_prev { background: #fff url(../image/main-img/prev.png) no-repeat right center; }
.slider_next { background: #fff url(../image/main-img/next.png) no-repeat left center; }
.pagination {
  bottom: 10px;
  left: 0;
  width: 100%;
  height: 15px;
  text-align: center;
  position: absolute;
  z-index: 200;
}
.pagination a {
  margin: 0 5px;
  width: 15px;
  height: 15px;
  display: inline-block;
  overflow: hidden;
  background: #333;
}
.pagination a.active {
  filter: alpha(opacity=100) !important;
  -moz-opacity: 1 !important;
  opacity: 1 !important;
}

/* 表示強制パッチ（CSSで消えているのを復帰） */
.wideslider,
.wideslider_base,
.wideslider_wrap { display: block; }
.wideslider_wrap ul { display: block; }
.wideslider_wrap li { display: block; float: left; }
.wideslider img {
  display: block !important;
  visibility: visible !important;
}
.wideslider ul li img { display: block !important; }


/* =====================================================
   13) Responsive（メディアクエリまとめ）
   ===================================================== */

/* 幅クラスのレスポンシブ */
@media(max-width:1120px) {
  .w250, .w400, .w460 { width: 100%; }
}

/* float解除（470以下） */
@media(max-width:470px) {
  .float_left, .float_left_ma10, .float_left_ma20, .float_right, .float_right_ma10 {
    float: none;
    margin: 0px;
  }
}

/* template.css: 1120以下の調整（元のまま） */
@media(max-width:1120px) {
  p { line-height: 160%; }
  ul li p { line-height: 160%; font-size: 180%; }
  .content_area { display: block; margin: 0 auto; }
  #footer { display: block; max-width: 1120px; }
  #logo a {
    display: block;
    margin: 10px auto 20px;
    width: 720px;
    height: 193px;
    background-image: url(../image/common/logo-n.jpg);
    background-repeat: no-repeat;
    background-position: left top;
    background-size: contain;
    float: none;
  }
  #h-right { display: block; width: 100%; float: none; text-align: center; }
  #h-right img { width: 35%; height: auto; margin: 0px auto 5px; text-align: center; }
  .sub-menu li a { font-size: 200%; }
  .midashi1, .midashi2 { padding: 25px; line-height: 160%; }
  .top-w940-b .arrow-img a, .top-w940-b .arrow-img-wm a { font-size: 240%; }
  .top-w940-b .arrow-img-wm a { font-size: 260%; }

  .content_area01 { display: block; max-width: 1120px; }
  .content_area01 h2 { display: block; width: 722px; margin-left: auto; margin-right: auto; }

  .c-project img, .c-project iframe { display: block; width: 80% !important; margin: 0 auto; }

  .c-al, .c-ar { width: 100%; float: none; }
  .c-al p, .c-ar p { font-size: 200%; }
  .c-al img, .c-ar img { margin-bottom: 20px; }

  .ssk-area img { float: none; margin-bottom: 20px; }

  .gaiyou table th, .gaiyou table td { font-size: 200%; padding: 10px; }

  .img-project { width: 35%; margin: 0 auto 25px; }

  .layout-li-ri-k { display: block; width: 100%; padding: 0; margin: 0; list-style: none; }
  .layout-li-ri-k li { width: 100%; margin: 0 0 40px 0; padding: 0; }
  .layout-li-ri-k li img { width: 100%; max-width: 100%; height: auto; margin-bottom: 20px; }

  .old-area-02 li { width: 31%; margin: 0 1% 1% 0; }
}

/* haebaru-patch: 1120以下の調整（元のまま） */
@media (max-width:1120px){
  ul li p { font-size: 100%; }

  .header_area,
  .content_area,
  #footer-area,
  .content_subtitle,
  .top-w940{
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

  #logo a{
    float: none !important;
    width: 100% !important;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center top;
  }

  .content_area01 h2{
    width: 100% !important;
    max-width: 722px;
    margin-left: auto;
    margin-right: auto;
  }

  table{ max-width: 100%; }
}

@media (max-width:768px){
  #logo a{ height: 160px; }
  #h-right{
    width: 100% !important;
    float: none !important;
    text-align: center;
  }
}

@media (max-width:480px){
  .header_area,
  .content_area,
  #footer-area,
  .content_subtitle,
  .top-w940{
    padding-left: 12px;
    padding-right: 12px;
  }
  #logo a{ height: 80px; }
}

/* iframe responsive (<=460px) */
@media (max-width:460px){
  iframe{
    max-width: 85%;
    width: 85% !important;
    display: block;
  }
}

/* top-w940 可読性（haebaru-patchから移動：元のまま） */
.top-w940{
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.85;
}
.top-w940 p{
  margin: 0;
  font-size: 16px;
  color: #333;
  letter-spacing: 0.02em;
  text-align: left;
}
.top-w940 img.float_left_ma20{
  display: block;
  max-width: 220px;
  height: auto;
}
@media (min-width: 461px){
  .top-w940 img.float_left_ma20{
    float: left;
    margin: 0 20px 10px 0;
  }
}
@media (max-width: 460px){
  .top-w940{
    
  }
  .top-w940 img.float_left_ma20{
    float: none !important;
    margin: 0 auto 12px !important;
    max-width: 180px;
  }
  .top-w940 p{
    font-size: 15px;
    line-height: 1.95;
  }
}

/* content_area01 根本リファクタ（haebaru-patchから移動：元のまま） */
.content_area01{
  width: 100%;
  margin: 0;
  padding: 0 0 20px;
  line-height: 1.6;
  background-image: url(../image/common/top-h_bk.jpg);
  background-repeat: repeat;
  background-position: left top;
  overflow-x: hidden;
  overflow-y: visible;
}
.content_area01 .c_are01{
  max-width: 940px;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
}
.content_area01 h2,
.content_area01 .reiwa-t,
.content_area01 .reiwa2-t,
.content_area01 .reiwa3-t,
.content_area01 .reiwa5-t,
.content_area01 .reiwa6-t{
  width: 100%;
  max-width: 722px;
  height: 135px;
  margin: 0 auto 20px;
  display: block;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}
.content_area01 ul{
  list-style: none;
  margin: 0;
  padding: 0;
}
.content_area01 li{
  display: block;
  margin: 0 0 12px;
  padding: 0;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}
.content_area01 li a{
  display: block;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;

  line-height: 1.6;
  text-decoration: none;
  overflow-wrap: anywhere;
  word-break: break-word;
  white-space: normal;
  min-width: 0;
}
.content_area01 li a{
  background-repeat: no-repeat;
  background-position: left center;
  background-size: cover;
}
@media (max-width:1120px){
  .content_area01{ max-width: none; }
  .content_area01 .c_are01{ max-width: 940px; padding: 0 14px; }
}
@media (max-width:460px){
  .content_area01{ padding-bottom: 16px; }
  .content_area01 .c_are01{}
  .content_area01 h2,
  .content_area01 .reiwa-t,
  .content_area01 .reiwa2-t,
  .content_area01 .reiwa3-t,
  .content_area01 .reiwa5-t,
  .content_area01 .reiwa6-t{
    max-width: 100%;
    height: 96px;
    margin-bottom: 14px;
  }
  .content_area01 li{ margin-bottom: 12px; }
  .content_area01 li a{
    padding: 14px 14px;
    font-size: 15px;
    line-height: 1.7;
  }
}
