@charset "UTF-8";

* {
  margin: 0px;
  padding: 0px;
}

body {
  font-family: 'メイリオ', 'Exo', sans-serif;
  color: #181818;
}

input, select, textarea, button {
  font-size: 100%;
  font-family: inherit;
  color: #181818;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  /* Firefox */
  -webkit-box-sizing: border-box;
  /* Chrome, Safari */
}

p {
  font-size: 16px;
  color: #181818;
  line-height: 1.7;
}

h2 {
  font-size: 18px;
}

h3 {
  font-size: 16px;
}

table {
  width: 100%;
  word-break: break-all;
  word-wrap: break-all;
}

th {
  font-size: 16px;
  padding: 5px 0;
  color: #181818;
}

td {
  font-size: 16px;
  color: #181818;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: #181818;
}

a:hover {
  opacity: 0.7;
}

li {
  list-style: none;
  color: #181818;
}

select {
  font-size: 14px;
  padding: 5px;
  border-radius: 4px;
  background: #fff;
  width: 100%;
}

select:focus {
  border: 1px solid #1B898D;
  outline: 0;
}

input:focus {
  border: 2px solid #1B898D;
  outline: 0;
}

#contents {
  max-width: 1230px;
  margin: 0 auto;
  padding: 50px 20px 0;
}

.contents {
  margin-top: 20px;
}

.contentbox {
  padding: 20px;
  background-color: #fff;
  filter: drop-shadow(1px 2px 1px rgba(0, 0, 0, 0.2));
  margin: 0 0 20px 0;
}

/* font */

.bold {
  font-weight: bold;
}

.color_mint {
  color: #1B898D;
}

.color_red {
  color: #F80404;
}

.color_white {
  color: #fff;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right !important;
}

.text-left {
  text-align: left !important;
}

.font15 {
  font-size: 15px;
}

.font14 {
  font-size: 14px;
}

.fontwun {
  font-weight: unset !important;
}

.yen {
  text-align: right !important;
}

.whitesp {
  white-space: nowrap;
}

/*flex*/

.flex {
  display: flex;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.justify-end {
  justify-content: flex-end;
}

.align-center {
  align-items: center;
}

.flex-end {
  align-items: flex-end;
}

.wrap {
  flex-wrap: wrap;
}

.wrapre {
  flex-wrap: wrap-reverse;
}

.no-wrap {
  flex-wrap: nowrap;
}

/*color*/

.bg_white {
  background-color: #fff;
}

/*margin*/

.mar0auto {
  margin: 0 auto;
}

.mar20 {
  margin: 20px;
}

.mart5 {
  margin-top: 5px;
}

.mart10 {
  margin-top: 10px;
}

.mart20 {
  margin-top: 20px;
}

.mar20tb {
  margin: 20px 0;
}

.mar30tb {
  margin: 30px 0;
}

.mar10tb {
  margin: 10px 0;
}

.marl20 {
  margin-left: 20px;
}

.marl5 {
  margin-left: 5px;
}

.marl10 {
  margin-left: 10px;
}

.marr8 {
  margin-right: 10px;
}

.marr10 {
  margin-right: 10px;
}

.marr5 {
  margin-right: 5px;
}

.marb0 {
  margin-bottom: 0 !important;
}

.marb10 {
  margin-bottom: 10px;
}

.marb20 {
  margin-bottom: 20px;
}

.marb30 {
  margin-bottom: 30px;
}

.mart30 {
  margin-top: 30px;
}

/*padding*/

.pad5 {
  padding: 5px !important;
}

.pad10 {
  padding: 10px;
}

.pad20 {
  padding: 20px;
}

.pad30 {
  padding: 30px;
}

.pad60 {
  padding: 60px;
}

.padt0 {
  padding-top: 0 !important;
}

.padb0 {
  padding-bottom: 0 !important;
}

.padb20 {
  padding-bottom: 20px;
}

.padb30 {
  padding-bottom: 30px;
}

.pad0 {
  padding: 0 !important;
}

.pad0010 {
  padding: 0 0 10px !important;
}

.pad20bt {
  padding: 0 20px;
}

.pad30tb {
  padding: 30px 0;
}

.pad3020 {
  padding: 30px 20px;
}

.padtrlb20 {
  padding: 0 20px 20px;
}

.pa100tb {
  padding: 100px 50px;
}

/* width */

.maxw950 {
  max-width: 950px;
}

.wid15 {
  width: 15%;
}

.wid10 {
  width: 10%;
}

.widauto {
  width: auto;
}

/*header*/

.header_pc {
  max-width: 1230px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 15px 20px 10px;
}

header img {
  max-width: 10%;
  margin: 0 10px 5px 0;
}

.header_menu_pc {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}

.header_menu_pc li {
  display: block;
  border: solid 1px #1B898D;
  border-radius: 5px;
  text-align: center;
  margin-right: 5px;
  min-width: 120px;
}

.header_menu_pc li:hover {
  background: #1B898D;
}

.header_menu_pc li a:hover {
  color: #fff;
  opacity: 1;
}

.header_menu_pc li a {
  display: block;
  padding: 9px;
  font-weight: bold;
  color: #1B898D;
}

.droppy--header {
  min-width: 200px;
  margin-left: 5px;
  text-align: right;
}

.droppy--header li a {
  font-weight: bold;
  font-size: 12px;
}

header {
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  background-color: #fff;
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 99
}

.header_menu_sp {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin: 10px 0 0;
}

.header_menu_sp li {
  position: relative;
  background: #1B898D;
  text-align: center;
  width: 25%;
  border: solid 1px #fff;
}

.header_menu_sp li a {
  color: #fff;
  font-size: 12px;
  display: block;
  padding: 6px;
}

.header_menu_sp img {
  width: 30px;
}

/* search-box */

.search-form {
  margin-bottom: 5px;
}

.wrap-search-header .search-form {
  width: 290px;
}

.search-form__input {
  position: relative;
  margin-right: 10px;
}

input[type=search] {
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.search-form__submit {
  border-radius: 0 4px 4px 0;
}

.search-form__submit {
  position: absolute;
  right: -1px;
  top: 0;
  bottom: 0;
  font-size: 13px;
  color: #fff;
  background-color: #1B898D;
  text-shadow: none;
  background-image: none;
  font-weight: 600;
  padding: 10px 16px;
  border: unset;
  cursor:pointer;
}

.search-form__text-field {
  border: solid 1px #1B898D;
  margin-bottom: 0;
  border-radius: 3px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 14px;
  width: 270px;
  padding: 10px;
}

.search-form__submit i {
  margin-right: 5px;
  font-size: 15px;
}

.fa-user.icon--first {
  background: #ebebeb;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  background: #ebebeb;
  top: 7px;
  line-height: 30px;
  color: #979797;
  font-size: 14px;
  text-align: center;
  margin-right: 5px;
}

/* slide */
.slider {
  margin: 0 auto;
  width: 100%;
  opacity: 0;
  transition: 3s;
}

.slick-initialized {
  opacity: 1
}

/*side_menu*/
.searchbox {
  line-height: 30px;
  background: #363636;
  margin: 10px 0 0;
  text-align: center;
}

.searchbox a {
  color: #fff;
  font-size: 14px;
  padding: 5px 0;
  display: block;
}

.sbtitle1 p {
  display: block;
  color: #1B898D;
  border-bottom: 1px solid #1B898D;
  text-decoration: none;
  font-weight: bold;
}
.sbtitle1{
  padding: 20px 0 0;
}

.menu_item {
  color: #fff;
  cursor: pointer;
  display: block;
  margin-bottom: 2px;
  font-weight: bold;
}

.menu_item_link {
  color: #1B898D;
  display: block;
  padding: 20px 0 0;
  position: relative;
  font-weight: bold;
  border-bottom: 1px solid #1B898D;
  text-decoration: none;
}

.menu_item_link:after {
  content: '\f067';
  display: block;
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  line-height: 55px;
  position: absolute;
  right: -15px;
  text-align: center;
  top: 0;
  width: 60px;
}

.menu_item_link.on:after {
  content: '\f068';
}

.submenu {
  background: #fff;
  display: none;
  margin-top: 5px;
}

.submenu_item {
  text-align: left;
  border: solid 1px #1B898D;
  border-radius: 5px;
  margin-top: 5px;
}

.submenu_item a {
  color: #1B898D;
  padding: 8px;
  display: block;
  font-weight: normal;
  box-shadow: 3px 3px;
  border-radius: 5px;
  font-size: 14px;
}

.submenu_item a span {
  font-size: 14px;
  width: calc(100% - 70px);
}

.submenu_item a::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url(../img/index/download.png);
  background-size: contain;
  vertical-align: middle;
  background-repeat: no-repeat;
  margin-right: 10px;
}

.salesoffice_btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.salesoffice_btn li {
  text-align: left;
  border: solid 1px #1B898D;
  border-radius: 5px;
  margin-top: 5px;
}

.salesoffice_btn li a {
  color: #1B898D;
  padding: 10px;
  display: block;
  font-weight: normal;
  box-shadow: 3px 3px;
  border-radius: 5px;
  font-size: 12px;
}

.othermenu li {
  text-align: left;
  border: solid 1px #1B898D;
  border-radius: 5px;
  margin-top: 5px;
  box-shadow: 2px 2px #1B898D;
}

.othermenu li:hover {
  opacity: 0.7;
}

.othermenu li a {
  color: #1B898D;
  padding: 10px;
  font-weight: normal;
  border-radius: 5px;
}

.othermenu li a span {
  font-size: 14px;
  width: calc(100% - 30px);
}

.othermenu a::before {
  content: '';
  width: 30px;
  height: 30px;
  background-size: contain;
  vertical-align: middle;
  background-repeat: no-repeat;
  margin-right: 10px;
}

.othermenu1, .othermenu2, .othermenu3, .othermenu4, .othermenu5 {
  display: flex!important;
  align-items: center;
}

.othermenu1::before {
  background-image: url(../img/index/cart.png)!important;
}

.othermenu2::before {
  background-image: url(../img/index/card.png)!important;
}

.othermenu3::before {
  background-image: url(../img/index/bill.png)!important;
}

.othermenu4::before {
  background-image: url(../img/index/fire.png)!important;
}

.othermenu5::before {
  background-image: url(../img/index/news.png)!important;
}

.othermenu img {
  width: 30px;
}

/* main */
main {
  width: calc(100% - 240px);
}

aside {
  width: 240px;
}

.top_main {
  padding: 10px 0 10px 10px;
}

/*tab*/
.tab_wrap {
  width: 100%;
  margin: 0 auto;
}

input[type="radio"] {
  display: none;
}

.tab_area {
  font-size: 0;
}

.tab_area label {
  width: 50%;
  display: inline-block;
  padding: 5px 0;
  color: #1B898D;
  background: #fff;
  text-align: center;
  font-size: 16px;
  cursor: pointer;
  transition: ease 0.2s opacity;
  border-radius: 5px 5px 0 0;
  font-weight: bold;
}

.tab_area label:hover {
  opacity: 0.7;
}

.panel_area {
  background: #fff;
}

.tab_panel {
  width: 100%;
  display: none;
  border-top: solid 3px #1B898D;
  background: #E9F4F5;
  padding: 0 0 10px;
}

.tab_panel_ul {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 10px;
}

.tab_panel p {
  font-size: 12px;
  letter-spacing: 1px;
}

#tab1:checked~.tab_area .tab1_label {
  background: #1B898D;
  color: #fff;
}

#tab1:checked~.panel_area #panel1 {
  display: block;
}

#tab2:checked~.tab_area .tab2_label {
  background: #1B898D;
  color: #fff;
}

#tab2:checked~.panel_area #panel2 {
  display: block;
}

.tab_panel_li {
  width: 24%;
  margin-top: 10px;
}

.tab_panel_li img {
  width: 100%;
  border-radius: 5px;
}

.tab_panel_inner {
  background: #fff;
  border-radius: 5px;
  padding: 10px;
  font-size: 12px;
  box-shadow: 1px 1px 1px 1px rgb(0 0 0 / 15%);
}

.tab_panel_inner span {
  background: #1B898D;
  color: #fff;
  font-size: 12px;
  padding: 0 3px;
}

.tab_panel_inner ul {
  margin-top: 10px;
}

.tab_panel_inner li span {
  background: unset;
  color: #F80404;
}

.fa-heart {
  color: #EC5F87;
}

.to_see {
  text-align: right;
}

.to_see a {
  color: #1B898D;
  font-weight: bold;
}

.to_see a::after {
  content: '\f054';
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  margin-left: 5px;
}

/* notice */
.ttlbox {
  padding: 10px;
  background-color: #1B898D;
  color: #fff;
}

.acmenu_notice {
  width: 100%;
}

.acmenu_notice input {
  display: none;
}

.acmenu_notice label {
  cursor: pointer;
  display: block;
  text-decoration: none;
  color: #181818;
  line-height: 1.6;
  position: relative;
  padding: 10px 40px 10px 10px;
  background-color: #fff;
  border: solid 1px #DDDDDD;
  margin-bottom: -1px;
  font-size: 14px;
}

.acmenu_notice ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.acmenu_notice li {
  height: 0;
  overflow-y: hidden;
  transition: padding-bottom 0.5s, padding-top 0.5s;
  /*閉じるときのアニメーション*/
  -webkit-transition: padding-bottom 0.5s, padding-top 0.5s -moz-transition: padding-bottom 0.5s, padding-top 0.5s;
  -ms-transition: padding-bottom 0.5s, padding-top 0.5s;
  -o-transition: padding-bottom 0.5s, padding-top 0.5s;
}

.acmenu_notice li p {
  font-size: 14px;
}

#acmenu_notice_bar01:checked~#notice_links01 li, #acmenu_notice_bar02:checked~#notice_links02 li, #acmenu_notice_bar03:checked~#notice_links03 li, #acmenu_notice_bar04:checked~#notice_links04 li {
  height: auto;
  opacity: 1;
  background: #f1f1f1;
  padding: 10px;
  margin: 5px 0;
  border-radius: 5px;
}

/*閉じた状態の矢印描画*/
.acmenu_notice label:after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: #1B898D 2px solid;
  border-right: #1B898D 2px solid;
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
  position: absolute;
  right: 3%;
  top: 0;
  bottom: 13%;
  margin: auto;
}

/*開いた状態の矢印描画*/
.acmenu_notice input[type=checkbox]:checked+label:after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: #1B898D 2px solid;
  border-right: #1B898D 2px solid;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  position: absolute;
  right: 3%;
  top: 0;
  bottom: -5%;
  margin: auto;
}

/* news */
.acmenu_news {
  width: 100%;
}

.acmenu_news input {
  display: none;
}

.acmenu_news label {
  cursor: pointer;
  display: block;
  text-decoration: none;
  color: #181818;
  line-height: 1.6;
  position: relative;
  padding: 10px 40px 10px 10px;
  background-color: #fff;
  border: solid 1px #DDDDDD;
  margin-bottom: -1px;
  font-size: 14px;
}

.acmenu_news ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.acmenu_news li {
  height: 0;
  overflow-y: hidden;
  transition: padding-bottom 0.5s, padding-top 0.5s;
  /*閉じるときのアニメーション*/
  -webkit-transition: padding-bottom 0.5s, padding-top 0.5s -moz-transition: padding-bottom 0.5s, padding-top 0.5s;
  -ms-transition: padding-bottom 0.5s, padding-top 0.5s;
  -o-transition: padding-bottom 0.5s, padding-top 0.5s;
}

.acmenu_news li p {
  font-size: 14px;
}

#acmenu_news_bar01:checked~#news_links01 li, #acmenu_news_bar02:checked~#news_links02 li, #acmenu_news_bar03:checked~#news_links03 li, #acmenu_news_bar04:checked~#news_links04 li {
  height: auto;
  opacity: 1;
  background: #f1f1f1;
  padding: 10px;
  margin: 5px 0;
  border-radius: 5px;
}

/*閉じた状態の矢印描画*/

.acmenu_news label:after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: #1B898D 2px solid;
  border-right: #1B898D 2px solid;
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
  position: absolute;
  right: 3%;
  top: 0;
  bottom: 13%;
  margin: auto;
}

/*開いた状態の矢印描画*/

.acmenu_news input[type=checkbox]:checked+label:after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: #1B898D 2px solid;
  border-right: #1B898D 2px solid;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  position: absolute;
  right: 3%;
  top: 0;
  bottom: -5%;
  margin: auto;
}

.to_see_btn {
  display: inline-block;
  border: solid 1px #1B898D;
  border-radius: 5px;
  margin-top: 10px;
  box-shadow: 2px 2px #1b898d;
}

.to_see_btn:hover {
  opacity: 0.7;
}

.to_see_btn a {
  color: #1B898D;
  font-weight: bold;
  font-size: 14px;
  display: block;
  padding: 5px 10px;
}

.to_see_btn a::after {
  content: '\f054';
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  margin-left: 5px;
}

/* footer */

footer {
  padding: 20px 0 0;
  background: #1B898D;
  margin-top: 20px;
}

.copy {
  text-align: center;
  padding-bottom: 20px;
}

.copy p {
  color: #fff;
  font-size: 12px;
}

.copy p a {
  color: #fff;
  font-size: 14px;
}

/* Back to top */

#PageTopBtn {
  position: fixed;
  bottom: 15px;
  right: 20px;
}

#PageTopBtn a {
  display: block;
  outline: none;
}

#PageTopBtn a:hover {
  text-decoration: none;
}

#PageTopBtn {
  z-index: 2;
}

#PageTopBtn img {
  width: 30px;
  z-index: 200;
}


