@charset "utf-8";
/* CSS Document */
:root {
 font-size: 10px;
}
html {
 scroll-behavior: smooth;
 scroll-padding-top: 160px;
}
body {
 font-size: 20px; font-size: 2.0rem;
 line-height: 150%;
 font-family: "zen-kaku-gothic-new", sans-serif;
 font-style: normal;
 color: #3d3d3d;
 word-break: break-all;
 background-color: #ffffff;
}

h1 {
 font-size: 32px; font-size: 3.2rem;
 line-height: 120%;
 font-weight: bold;
}
h2 {
 font-size: 28px; font-size: 2.8rem;
 line-height: 120%;
}
h3{
 font-size: 24px; font-size: 2.4rem;
 line-height: 120%;
}
a {
 transition: all 0.1s;
 text-decoration-skip-ink: none;
}
a:hover {
 color: #e94628;
 transition: all 0.1s;
}
img {
 width: 100%;
}

.wrapper {
 background-color: #ffffff;
}
/* デバイス幅が640px以下 */
@media only screen and (max-width:640px) {
 body {
  font-size: 16px;
 }
 .wrapper {
  margin-top: 50px;
 }
}

/*ページ内リンクのヘッダー高さ調整*/
 @media screen and (max-width: 640px) {
  html {
   scroll-padding-top: 50px;
  }
 }
 /*ページ内リンクのヘッダー高さ調整*/

/*TOPへ戻る*/
.backtotop {
 position: fixed;
 right: 20px;
 bottom: 20px;
 /*bottom: 180px;*/
 z-index: 88;
 display: none;
}
.backtotop a {
 display: block;
 content: url("../img/back_top.png");
 padding: 10px;
 margin: 0;
 background-color: #fd9e13;
 border-radius: 50%;
 text-decoration: none;
 font-weight: bold;
 border: 1px solid #ffffff;
 box-shadow: 0 5px 0 #87a1b4;
 transition: all 0.2s;
}
.backtotop a:hover {
 box-shadow: none;
 transform: translate3d(0,5px,0);
 transition: all 0.2s;
}
/* デバイス幅が640px以下 */
@media only screen and (max-width: 600px) {
 .backtotop {
  bottom: 60px;
  opacity: 0.9;
 }
}

/*サイドボタン*/
/*.style_form {
 position: fixed;
 right: 0;
 bottom: 100px;
 z-index: 88;
 display: none;
}
.style_form a {
 display: flex;
 justify-content: center;
 align-items: center;
 width: 200px;
 height: 50px;
 margin: 0;
 background-color: #f39b06;
 border-top-left-radius: 25px;
 border-bottom-left-radius: 25px;
 color: #ffffff;
 text-decoration: none;
 box-shadow: 0 5px 0 #87a1b4;
 transition: all 0.2s;
}
.style_form a:hover {
 box-shadow: none;
 transform: translate3d(0,5px,0);
 transition: all 0.2s;
}
@media only screen and (max-width: 600px) {
 .style_form {
  bottom: 120px;
  opacity: 0.9;
 }
 .style_form a {
  width: 170px;
  height: 40px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
 }
}
.style_form2 {
 position: fixed;
 right: 0;
 bottom: 20px;
 z-index: 88;
 display: none;
}
.style_form2 a {
 display: flex;
 justify-content: center;
 align-items: center;
 width: 200px;
 height: 50px;
 margin: 0;
 background-color: #f39b06;
 border-top-left-radius: 25px;
 border-bottom-left-radius: 25px;
 color: #ffffff;
 text-decoration: none;
 box-shadow: 0 5px 0 #87a1b4;
 transition: all 0.2s;
}
.style_form2 a:hover {
 box-shadow: none;
 transform: translate3d(0,5px,0);
 transition: all 0.2s;
}
@media only screen and (max-width: 600px) {
 .style_form2 {
  bottom: 60px;
  opacity: 0.9;
 }
 .style_form2 a {
  width: 170px;
  height: 40px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
 }
}*/

/*ハンバーガーメニュー*/
#menu-button {
 display: none;
 position: fixed;
 z-index: 88;
 top: 0;
 width: 100%;
 height: 50px;
 background-color: #fd6b00;
 box-sizing: border-box;
 box-shadow: 0px 2px 2px rgba(0,0,0,0.30);
}
.hun_txt_area {
 display: flex;
 flex-direction: row;
 padding: 5px 0 0 5px;
 box-sizing: border-box;
}
.hun_txt_area img {
 width: 40px;
 box-sizing: border-box;
 transition: all 0.2s;
}
.hun_txt_area img:hover {
 opacity: 0.7;
 transition: all 0.2s;
}
.icon {
 cursor: pointer;
 position: relative;
}
.icon span {
  position: absolute;
  right: 15px;
  width: 30px; /* 線の幅 */
  height: 3px; /* 線の太さ */
  background-color: #ffffff; /* 線の色 */
  transition: ease 0.3s;
}
.icon span:nth-of-type(1) {
  top: 15px; /* 上の線の位置調整 */
}
.icon span:nth-of-type(2) {
  top: 25px; /* 真ん中の線の位置調整 */
}
.icon span:nth-of-type(3) {
  top: 35px; /* 下の線の位置調整 */
}
.open span:nth-of-type(1) {
  top: 25px;
  transform: rotate(-45deg); /* 線の角度調整 */
}
.open span:nth-of-type(2) {
  opacity: 0; /* 透明化 */
}
.open span:nth-of-type(3) {
  top: 25px;
  transform: rotate(45deg);  /* 線の角度調整 */
}
.hun_tit {
 height: 100%;
 padding-left: 10px;
 font-style: normal;
 font-size: 16px;
 line-height: 18px;
 font-weight: bold;
 box-sizing: border-box;
}
.s_sp {
 display: none;
}
.sample-menu {
 display: none;
 width: 100%;
 position: fixed;
 z-index: 88;
 top: 50px;
 left: 0;
 background-color: #fd6b00;
 color: #ffffff;
}
.sample-menu li {
 border-top: 1px solid #ffffff;
 box-sizing: border-box;
 font-size: 16px;
 line-height: 18px;
}
.sample-menu li:last-child {
 border-bottom: 1px solid #ffffff;
}
.sample-menu li a {
 display: inline-block;
 width: 100%;
 padding: 10px;
 color: #ffffff;
 font-weight: bold;
 text-decoration: none;
 box-sizing: border-box;
}
/* デバイス幅が640px以下 */
@media only screen and (max-width: 640px) {
 #menu-button {
  display: block;
 }
 .top_hum {
  margin-top: 50px;
 }
}

/*ヘッダー*/
#hedder {
 position: sticky;
 top: 0;
 z-index: 88;
}
.hed_tit {
 position: relative;
 width: 100%;
 height: 100px;
 background-color: #ffffff;
}
.hed_tit p {
 position: absolute;
 left: 110px;
 top: 50%;
 transform: translateY(-50%);
 font-size: 30px;
 font-weight: bold;
 line-height: 150%;
 width: 100%;
 max-width: calc(100% - 120px);
}
.hed_tit p a {
 color: #3d3d3d;
 text-decoration: none;
 transition: all 0.2s;
}
.hed_tit p a:hover {
 opacity: 0.7;
 transition: all 0.2s;
}
.hed_chara {
 position: absolute;
 left: 20px;
 top: 50%;
 transform: translateY(-50%);
 width: 80px;
}
.hed_chara a {
 transition: all 0.2s;
}
.hed_chara a:hover {
 opacity: 0.7;
 transition: all 0.2s;
}
.hed_logo {
 position: absolute;
 right: 20px;
 top: 50%;
 transform: translateY(-50%);
 width: 100%;
 max-width: 100px;
}
.hed_nav {
 display: flex;
 flex-direction: row;
 justify-content: center;
 align-items: center;
 background-color: #fd6b00;
 padding: 10px 0;
 border-bottom: 1px solid #ffffff;
 box-sizing: border-box;
}
.hed_nav li {
 width: calc(100%/6);
 text-align: center;
 font-size: 18px;
 line-height: 120%;
 border-right: 1px solid #ffffff;
 box-sizing: border-box;
}
.hed_nav li:last-child {
 border-right: none;
}
.hed_nav li.tb {
 font-size: 15px;
}
.hed_nav li a {
 display: flex;
 justify-content: center;
 align-items: center;
 width: 100%;
 height: 40px;
 color: #ffffff;
 text-decoration: none;
 box-sizing: border-box;
 transition: all 0.2s;
}
.hed_nav li a:hover {
 opacity: 0.7;
 transition: all 0.2s;
}
.hed_nav2 li a {
 height: 20px;
}
/* デバイス幅が750px以下 */
@media only screen and (max-width:750px) {
 .hed_tit p {
  font-size: 28px;
 }
}
/* デバイス幅が640px以下 */
@media only screen and (max-width:640px) {
 #hedder {
  display: none;
 }
}

/*メインビジュアル*/
.style_main_vis {
 width: 100%;
 margin: 0 auto;
 text-align: center;
 background-color: #fff20f;
}
.style_main_vis_sp {
 display: none;
 width: 100%;
 text-align: center;
 background-color: #fff20f;
}
.style_main_vis img,
.style_main_vis_sp img {
 vertical-align: middle;
 max-width: 1000px;
}
/* デバイス幅が640px以下 */
@media only screen and (max-width:640px) {
 .style_main_vis {
  display: none;
 }
 .style_main_vis_sp {
  display: block;
 }
}

/*ニュース*/
.news_area {
 width: 100%;
 max-width: 1000px;
 height: 150px;
 overflow-y: auto;
 margin: 30px auto 0;
 padding: 20px;
 background-color: #ffffff;
 border: 1px solid #fd9e13;
 box-sizing: border-box;
}
.news_area dl {
 display: flex;
 padding: 10px 0;
 border-bottom: 1px dotted #fd9e13;
 box-sizing: border-box;
}
.news_area dl:last-child {
 border: none;
}
.news_area dl dt {
 width: 210px;
}
.news_red::after {
 content: "重要";
 font-size: 16px;
 color: #ffffff;
 padding: 5px;
 margin-left: 5px;
 border-radius: 10px;
 background-color: #e94628;
 box-sizing: border-box;
}
.news_new::after {
 content: "新着";
 font-size: 16px;
 color: #ffffff;
 padding: 5px;
 margin-left: 5px;
 border-radius: 10px;
 background-color: #fd9e13;
 box-sizing: border-box;
}
/* デバイス幅が640px以下 */
@media only screen and (max-width:640px) {
 .news_area dl {
  flex-direction: column;
 }
 .news_tit,
 .news_area {
  max-width: 100%;
 }
 .news_area {
  margin-top: 10px;
 }
 .news_red::after {
  font-size: 14px;
  padding: 3px;
 }
}

/*各項目*/
.main_top {
 height: 10px;
 background-color: #fd9e13;
}
.main {
 padding: 50px 20px;
 background-color: ffffff;
 box-sizing: border-box;
}
.style_green {
 background-color: #ffe475;
}
.main_tit {
 width: 100%;
 max-width: 1000px;
 text-align: center;
 font-size: 30px;
 font-weight: bold;
 line-height: 150%;
 margin: 0 auto;
}
.main_tit a:hover {
 opacity: 0.7;
 transition: all 0.2s;
}
.main_tit a {
 color: #3d3d3d;
 transition: all 0.2s;
}
.main_tit span {
 border-bottom: 5px solid #fd9e13;
 box-sizing: border-box;
}
.column_tit {
 width: 100%;
 max-width: 1000px;
 margin: 0 auto;
 margin-top: 30px;
 padding: 10px 20px;;
 color: #ffffff;
 font-size: 25px;
 background-color: #fd9e13;
 box-sizing: border-box;
}
.txt_area {
 width: 100%;
 max-width: 1000px;
 margin: 0 auto;
 padding: 20px;
 border: 1px solid #fd9e13;
 border-top: none;
 background-color: #ffffff;
 box-sizing: border-box;
}
.txt_area p {
 margin-bottom: 30px;
}
.news_txt_area {
 width: 100%;
 max-width: 1000px;
 margin: 30px auto 0;
 padding: 20px;
 box-sizing: border-box;
}
.s_t_img {
 width: 100%;
 max-width: 900px;
 margin: 0 auto 30px;
}
.s_t_img_sp {
 display: none;
 max-width: 300px;
 margin: 0 auto 20px;
}
.txt_area p:last-child {
 margin-bottom: 0;
}
/* デバイス幅が640px以下 */
@media only screen and (max-width:640px) {
 .main {
  padding: 20px 10px;
 }
 .main_tit {
  font-size: 22px;
 }
 .column_tit {
  font-size: 18px;
 }
 .txt_area {
  padding: 10px;
 }
 .txt_area p {
  margin-bottom: 20px;
 }
 .s_t_img {
  display: none;
 }
 .s_t_img_sp {
  display: block;
 }
}

.flex_area {
 display: flex;
 flex-direction: row;
 justify-content: flex-start;
 align-items: flex-start;
}
.flex_area p {
 margin: 0 30px 0 0;
}
/* デバイス幅が640px以下 */
@media only screen and (max-width:640px) {
 .flex_area {
  flex-direction: column;
 }
 .flex_area p {
  margin: 0 0 30px 0;
 }
}

/*ボタン*/
p.bt_tit {
 text-align: center;
 margin-bottom: 10px;
}
.style_bt {
 width: 100%;
 max-width: 450px;
 margin: 0 auto 30px;
 text-align: center;
}
.style_bt a {
 display:flex;
 justify-content: center;
 align-items: center;
 width: 100%;
 height: 50px;
 color: #ffffff;
 text-decoration: none;
 background-color: #f39b06;
 background-image: url("../img/button.png");
 background-repeat: no-repeat;
 background-position: 95% center;
 border-radius: 35px;
 box-sizing: border-box;
 box-shadow: 0 5px 0 #87a1b4;
 transition: all 0.2s;
}
.style_bt a::after {
 height: 45px;
 display: inline-block;
 vertical-align: middle;
 margin-left: 10px;
 transform: scale(0.8);
}
.style_bt a.bt_pdf::after {
 content: url("../img/icon_pdf.png");
}
.style_bt a.bt_doc::after {
 content: url("../img/icon_doc.png");
}
.style_bt a.bt_xl::after {
 content: url("../img/icon_xl.png");
}
.style_bt a.bt_ppt::after {
 content: url("../img/icon_ppt.png");
}
.style_bt a:hover {
 box-shadow: none;
 transform: translate3d(0,5px,0);
 transition: all 0.2s;
}
.style_tb {
 cursor: pointer;
 display:flex;
 justify-content: center;
 align-items: center;
 width: 100%;
 max-width: 400px;
 margin: 0 auto 30px;
 height: 50px;
 text-align: center;
 color: #ffffff;
 text-decoration: none;
 background-color: #f39b06;
 background-image: url("../img/button.png");
 background-repeat: no-repeat;
 background-position: 95% center;
 border-radius: 35px;
 box-sizing: border-box;
 box-shadow: 0 5px 0 #87a1b4;
 transition: all 0.2s;
}
.style_tb:hover {
 box-shadow: none;
 transform: translate3d(0,5px,0);
 transition: all 0.2s;
}
.s_tb_bt {
 margin-bottom: 30px;
}
.style_bt_blue,
a.style_bt_blue {
 background-color: #78a7d9;
}
.style_bt_red,
a.style_bt_red {
 /*background-color: #ed7979;*/
 background-color: #cc0000;
}
.style_bt_null {
 display:flex;
 flex-direction: column;
 justify-content: center;
 align-items: center;
 width: 100%;
 max-width: 400px;
 height: 50px;
 margin: 30px auto 0;
 color: #5d5d5d;
 line-height: 120%;
 text-align: center;
 border: 1px solid #999999;
 border-radius: 35px;
 background-color: #cccccc;
 box-sizing: border-box;
}
.style_img {
 margin: 30px 0;
 text-align: center;
}
.login_img {
 max-width: 800px;
 margin: 0 auto;
 text-align: center;
}

/*テーブル*/
.style_table {
 width: 100%;
 max-width: 1000px;
 margin: 0 auto;
 border-collapse: collapse;
}
.style_table th,
.style_table td {
 padding: 5px;
 border: 1px solid #fd9e13;
 box-sizing: border-box;
}
.style_table th {
 text-align: center;
 background-color: #ffe475;
}
.style_table td {
 background-color: #ffffff;
}
.tb_img {
 width: 100%;
 max-width: 100px;
 margin: 10px auto;
}
/* デバイス幅が640px以下 */
@media only screen and (max-width:640px) {
 .tb_img {
  max-width: 70px;
 }
}

.table_buy tr {
 margin-bottom: 20px;
}
.table_buy tr:last-child {
 margin-bottom: 0;
}
.table_buy td {
 border: none;
}
.table_buy td .style_bt a {
 max-width: 300px;
 height: 40px;
 border-radius: 20px;
}
.table_buy td .style_bt_null {
 max-width: 300px;
 height: 40px;
 margin: 0;
 border-radius: 20px;
}
/* デバイス幅が640px以下 */
@media only screen and (max-width:640px) {
 .table_buy tr {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
 }
 .table_buy td {
  width: 100%;
 }
 .table_buy td .style_bt a,
 .table_buy td .style_bt_null {
  margin: 0 auto;
 }
}

/*よくある質問*/
.faq_tit {
 width: 100%;
 max-width: 1000px;
 margin: 30px auto 0;
 font-size: 22px;
 font-weight: bold;
}
.faq {
 width: 100%;
 max-width: 1000px;
 margin: 0 auto;
}
.faq dl {
}
.faq dl dt,
.faq dl dd {
 position: relative;
 width: 100%;
 padding: 10px 10px 10px 50px;
 border-radius: 10px;
 box-sizing: border-box;
}
.faq dl dt::before,
.faq dl dd::before {
 position: absolute;
 left: 10px;
 top: 10px;
 font-size: 30px;
 font-weight: bold;
}
.faq dl dt {
 cursor:pointer;
 margin-top: 30px;
 color: #ffffff;
 background-color: #fd9e13;
}
.faq dl dt::before {
 content: "Q";
}
.faq dl dd {
 margin-top: 10px;
 background-color: #ffffff;
 border: 1px solid #fd9e13;
}
.faq dl dd::before {
 content: "A";
 color: #fd9e13;
}
/* デバイス幅が640px以下 */
@media only screen and (max-width:640px) {
 .faq_tit {
  margin: 20px auto 0;
  font-size: 18px;
 }
 .faq dl dt {
  margin-top: 20px;
 }
 .faq dl dt,
 .faq dl dd {
  padding-left: 40px;
 }
 .faq dl dt::before,
 .faq dl dd::before {
  font-size: 20px;
 }
}

/*バナー*/
.style_ban {
 width: 100%;
 max-width: 1000px;
 margin: 0 auto;
 display: flex;
 flex-direction: row;
 flex-wrap: wrap;
 justify-content: center;
 align-items: center;
}
.s_b_item {
 width: 100%;
 max-width: 333px;
 text-align: center;
}
.s_b_item a {
 width: 100%;
 transition: all 0.2s;
}
.s_b_item a:hover {
 opacity: 0.7;
 transition: all 0.2s;
}
.s_b_item img {
 width: 90%;
}

/*TOPページ下部リンク*/
.link_area {
 width: 100%;
 max-width: 1000px;
 margin: 0 auto;
}
.link_img_item {
 width: 100%;
 font-size: 30px;
 line-height: 150%;
 text-align: center;
}
.link_img_item a {
 display: flex;
 flex-direction: column;
 justify-content: center;
 align-items: center;
 width: 100%;
 max-width: 300px;
 height: 300px;
 margin: 0 auto 50px;
 text-decoration: none;
 color: #ffffff;
 background-image: url("../img/character2.png");
 background-repeat: no-repeat;
 background-position: center center;
 background-size: contain;
 box-sizing: border-box;
 transition: all 0.2s;
}
.link_item {
 width: 100%;
 font-size: 25px;
 line-height: 150%;
 text-align: center;
}
.link_item a {
 display: flex;
 flex-direction: column;
 justify-content: center;
 align-items: center;
 width: 100%;
 max-width: 400px;
 height: 60px;
 margin: 0 auto;
 text-decoration: none;
 color: #ffffff;
 border-radius: 10px;
 background-color: #00a5e3;
 box-sizing: border-box;
 transition: all 0.2s;
}
.link_item a:hover,
.link_img_item a:hover {
 transform: scale(1.1);
 transition: all 0.2s;
}

/*フッター*/
#footer {
 background-image: url("../img/character3.png");
 background-repeat: no-repeat;
 background-position: 98% bottom;
 background-size: 100px;
}
.style_foot_area {
 width: 100%;
 max-width: 1000px;
 margin: 0 auto;
 padding: 20px 10px;
 text-align: center;
 box-sizing: border-box;
}
.style_foot_area p.large {
 font-size: 28px;
}
.s_f_toi {
 display: flex;
 flex-direction: row;
 flex-wrap: wrap;
 justify-content: center;
 align-items: center;
 margin-top: 30px;
 padding: 10px;
 background-color: #ffffff;
 border-radius: 20px;
 box-sizing: border-box;
}
.toi_block {
 display: flex;
 flex-direction: column;
 justify-content: flex-start;
 align-items: center;
 width: 100%;
 max-width: 450px;
 height: 420px;
 margin: 20px auto;
 padding: 20px 10px;
 border: 1px solid #fd9e13;
 border-radius: 20px;
 box-sizing: border-box;
}
.toi_block h2 {
 font-size: 22px;
 line-height: 150%;
}
.toi_tit {
 display: flex;
 justify-content: center;
 align-items: center;
 width: 100%;
 max-width: 250px;
 height: 40px;
 margin: 0 auto 10px;
 padding: 0 5px;
 color: #ffffff;
 border-radius: 20px;
 background-color: #fd9e13;
 box-sizing: border-box;
}
.toi_tit_long {
 max-width: 400px;
}
.style_mail {
 width: 100%;
 font-size: 25px;
 margin: 10px auto;
}
.style_mail img {
 max-width: 30px;
 margin-right: 10px;
 vertical-align: bottom;
}
.style_copy {
 width: 100%;
 color: #ffffff;
 text-align: center;
 padding: 10px;
 background-color: #fd9e13;
 box-sizing: border-box;
}
.style_townmark {
 width: 100%;
 text-align: center;
 padding: 10px;
 background-color: #ffffff;
 box-sizing: border-box;
}
.style_townmark p img {
 max-width: 100px;
 vertical-align: middle;
}
/* デバイス幅が1400px以下 */
@media only screen and (max-width:1400px) {
 #footer {
  padding-bottom: 180px;
  background-position: center bottom;
  box-sizing: border-box
 }
}
/* デバイス幅が640px以下 */
@media only screen and (max-width:640px) {
 .s_f_toi {
  margin-top: 10px;
 }
 .style_foot_area p.large {
  font-size: 18px;
 }
 .toi_block,
 .toi_block:nth-child(2) {
  margin: 10px auto;
  height: auto;
 }
 .style_mail {
  font-size: 22px;
  margin: 10px auto;
 }
 .style_mail img {
  width: 22px;
 }
}

/*検索エリア*/
.search_area {
 display: flex;
 flex-direction: row;
 flex-wrap: wrap;
 justify-content: center;
 align-items: flex-start;
 width: 100%;
 max-width: 1000px;
 margin: 0 auto;
}
.search_box {
 width: 100%;
 max-width: 48%;
 height: 220px;
 margin-top: 30px;
 padding: 10px;
 font-size: 18px;
 line-height: 150%;
 border: 1px solid #3d3d3d;
 background-color: #ffffff;
 box-sizing: border-box;
}
.search_box.search_large {
 max-width: 100%;
 height: auto;
}
.search_box:first-child {
 margin-right: 4%;
}
.search_tit {
 text-align: center;
 font-weight: bold;
}
.search_key_area {
 display: flex;
 flex-direction: row;
 align-items: center;
 height: 100%;
}
.search_keyword {
 font-size: 1em;
 padding: 10px;
 border: solid 1px #3d3d3d;
 width: 80%;
 margin: 10px 10px 0 0;
 box-sizing: border-box;
}
.search_key_area
.search_item,
.search_item_r {
 display: flex;
 flex-direction: row;
 flex-wrap: wrap;
}
.search_item li,
.search_item_r li {
 display: inline-block;
 margin: 10px 30px 0 0;
}
.area_bt {
 display: flex;
 flex-direction: row;
 justify-content: center;
 text-align: center;
 margin-top: 10px;
}
.area_bt a,
.a_clear {
 display: flex;
 justify-content: center;
 align-items: center;
 width: 150px;
 height: 40px;
 color: #ffffff;
 text-decoration: none;
 border-radius: 20px;
 box-sizing: border-box;
 transition: all 0.2s;
}
.area_bt a {
 background-color: #fd9e13;
}
.a_clear {
 cursor: pointer;
 margin-left: 20px;
 background-color: #999999;
}
.area_bt a:hover,
.a_clear:hover {
 opacity: 0.7;
 transition: all 0.2s;
}
.a_clear:active {
 opacity: 0.7;
}
/* デバイス幅が1000px以下 */
@media only screen and (max-width:1000px) {
 .search_box {
  max-width: 100%;
  height: auto;
 }
 .search_box:first-child {
  margin-right: 0;
 }
}
/* デバイス幅が640px以下 */
@media only screen and (max-width:640px) {
 .search_key_area {
  flex-direction: column;
 }
 .search_keyword {
  padding: 5px;
  width: 100%;
  margin: 10px 0 0 0;
 }
}

span.list_sub_tit {
 font-size: 20px;
 font-weight: normal;
 border: none;
}
.list_search {
 display: flex;
 flex-direction: row;
 flex-wrap: wrap;
 justify-content: flex-start;
 align-items: flex-start;
 width: 100%;
 max-width: 1200px;
 margin: 0 auto;
}
.l_s_item {
 position: relative;
 width: 100%;
 max-width: 280px;
 margin: 10px;
 height: 250px;
 padding: 50px 10px 10px;
 font-size: 14px;
 line-height: 150%;
 box-sizing: border-box;
 border: 1px solid #3d3d3d;
}
.list_area {
 position: absolute;
 top: 0;
 left: 0;
 display: inline-block;
 padding: 5px 10px;
 color: #ffffff;
 background-color: #3d3d3d;
 border-bottom-right-radius: 10px;
 box-sizing: border-box;
}
.l_a_1 {
 background-color: #e94628;
}
.l_a_2 {
 background-color: #19649a;
}
.l_a_3 {
 background-color: #76bf65;
}
.l_a_4 {
 background-color: #327423;
}
.l_a_5 {
 background-color: #66a3cf;
}
.l_a_6 {
 background-color: #ff69b4;
}
.l_s_item .bold {
 font-size: 15px;
 line-height: 150%;
 margin-bottom: 5px;
}
.l_s_button a {
 position: absolute;
 left: 50%;
 bottom: 10px;
 transform: translateX(-50%);
 display: flex;
 justify-content: center;
 align-items: center;
 width: 100%;
 max-width: 150px;
 height: 30px;
 margin: 10px auto 0;
 font-weight: bold;
 color: #ffffff;
 text-decoration: none;
 border-radius: 15px;
 background-color: #00a5e3;
 box-sizing: border-box;
 transition: all 0.2s;
}
.l_s_button a:hover {
 opacity: 0.7;
 transition: all 0.2s;
}
.l_s_tit {
 width: 100%;
 font-size: 20px;
 font-weight: bold;
 margin: 10px;
}
/* デバイス幅が1000px以下 */
@media only screen and (max-width:1000px) {
 .list_search {
  justify-content: center;
 }
}
/* デバイス幅が640px以下 */
@media only screen and (max-width:640px) {
 .l_s_item {
  max-width: 100%;
  height: auto;
  margin: 20px 0 0 0;
 }
 .l_s_item .bold {
  height: auto;
 }
 .l_s_button a {
  position: static;
  transform: none;
  height: 40px;
  border-radius: 20px;
 }
 .l_s_tit {
  margin: 20px 0 0 0;
 }
}

.is-hide {
 display: none;
}

.map {
 width: 100%;
 max-width: 1000px;
 margin: 30px auto 0;
}
.map iframe {
 width: 100%;
 height: 800px;
}

/*アコーディオン用*/
.submenu {
 display: none;
}

/*文字装飾*/
.bold {
 font-weight: bold;
}
.nomal {
 font-weight: normal;
}
.red {
 color: #ff0000;
}
.blue {
 color: #0000cc;
}
.yellow {
 color: #fcc601;
}
.black {
 color: #3d3d3d;
}
.white {
 color: #ffffff;
}
.mark {
 background-color: #ffff00;
}
.line {
 text-decoration: underline;
 text-decoration-skip-ink: none;
}
.double_line {
 text-decoration: underline;
 text-decoration-style: double;
 text-decoration-skip-ink: none;
}
.small {
 font-size: 0.8em;
}
.small_2 {
 font-size: 0.7em;
}
.large {
 font-size: 1.2em;
}
.large_2 {
 font-size: 1.5em;
}
.cen {
 text-align: center;
}

/*二行目以降字下げ*/
.kai {
 display: block;
 text-indent: -1em;
 padding-left: 1em;
 box-sizing: border-box;
}
.kai_1-3 {
 display: block;
 text-indent: -1.3em;
 padding-left: 1.3em;
 box-sizing: border-box;
}
.kai_2 {
 display: block;
 text-indent: -2em;
 padding-left: 2em;
 box-sizing: border-box;
}
.kai_2-5 {
 display: block;
 text-indent: -2.5em;
 padding-left: 2.5em;
 box-sizing: border-box;
}
.kai_3 {
 display: block;
 text-indent: -3em;
 padding-left: 3em;
 box-sizing: border-box;
}
.kai_4 {
 display: block;
 text-indent: -4em;
 padding-left: 4em;
 box-sizing: border-box;
}
.kai_5 {
 display: block;
 text-indent: -5em;
 padding-left: 5em;
 box-sizing: border-box;
}
.kai_6 {
 display: block;
 text-indent: -6em;
 padding-left: 6em;
 box-sizing: border-box;
}
.kai_7 {
 display: block;
 text-indent: -7em;
 padding-left: 7em;
 box-sizing: border-box;
}
.kai_8 {
 display: block;
 text-indent: -8em;
 padding-left: 8em;
 box-sizing: border-box;
}

/*サイズ毎の表示変更*/
.pc {
 display: block;
}
.tb {
 display: none;
}
.sp {
 display: none;
}
/* デバイス幅が1000px以下 */
@media only screen and (max-width:1000px) {
 .pc {
  display: none;
 }
 .tb {
  display: block;
 }
}
/* デバイス幅が640px以下 */
@media only screen and (max-width: 640px) {
 .tb {
  display: none;
 }
 .sp {
  display: block;
 }
}

/*フロート解除*/
.clear {
 clear: both;
}

.none {
 display: none;
}