@charset "UTF-8";
/* box-sizing: border-box;を設定 */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* フォントサイズの拡大を防ぐ */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  word-break: break-word;
}

/* リストのスタイルを削除、これはデフォルトのスタイルが削除されることを示唆します */
ul,
ol {
  list-style: none;
}

/* 見出しやインタラクティブ要素のline-heightを設定 */
h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: inherit;
}

/* 見出しのテキスト折り返しをbalanceに設定 */
/* 画像の扱いを簡単にする */
img,
picture {
  max-width: 100%;
  display: block;
  height: auto;
}

/* inputやbuttonなどのfontは継承 */
input,
button,
textarea,
select {
  font: inherit;
}

table {
  border-collapse: collapse;
}

body,
button,
input,
textarea {
  font-family: "BIZ UDPGothic", sans-serif;
}

html {
  font-size: 62.5%;
  width: 100%;
  scroll-behavior: smooth;
}

body {
  overflow-y: scroll;
  overflow-x: hidden;
  font-size: 1.4rem;
  line-height: 1.6875;
}

.overflow {
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
}

html, body {
  position: relative;
  height: 100%;
}

.no-scroll {
  overflow-y: hidden;
  height: 100%;
  width: 100%;
}

:where(body, button, input, textarea, select) {
  color: #222;
  font-size: inherit;
  line-height: inherit;
}

label,
select,
input[type=checkbox],
input[type=radio],
button {
  cursor: pointer;
}

.hoverLink { /*全ページ汎用ボタン*/
  display: flex;
  justify-content: center;
  align-items: center;
  color: #0C0CB6;
  border: #0C0CB6 solid 1px;
  transition: 0.3s;
}
.hoverLink img {
  position: absolute;
  left: 28px;
  transition: 0.3s;
}
.hoverLink img.indexIcon00,
.hoverLink img.indexIcon00H {
  width: 6px;
  height: 10px;
  left: calc(100% - 34px);
}
.hoverLink img.indexIcon01,
.hoverLink img.indexIcon01H {
  width: 18.5px;
  height: 15.7px;
}
.hoverLink img.indexIcon02,
.hoverLink img.indexIcon02H {
  width: 21.2px;
  height: 22.5px;
}
.hoverLink img.indexIcon03,
.hoverLink img.indexIcon03H {
  width: 18px;
  height: 13px;
}
.hoverLink p {
  font-size: 14px;
  font-weight: bold;
}
.hoverLink img.indexIcon00,
.hoverLink img.indexIcon01,
.hoverLink img.indexIcon02,
.hoverLink img.indexIcon03 {
  opacity: 1;
}
.hoverLink img.indexIcon00H,
.hoverLink img.indexIcon01H,
.hoverLink img.indexIcon02H,
.hoverLink img.indexIcon03H {
  opacity: 0;
}

.hoverLink:hover {
  background-color: #3D9BE9;
  border: #3D9BE9;
  color: #fff;
}
.hoverLink:hover img.indexIcon00,
.hoverLink:hover img.indexIcon01,
.hoverLink:hover img.indexIcon02,
.hoverLink:hover img.indexIcon03 {
  opacity: 0;
}
.hoverLink:hover img.indexIcon00H,
.hoverLink:hover img.indexIcon01H,
.hoverLink:hover img.indexIcon02H,
.hoverLink:hover img.indexIcon03H {
  opacity: 1;
}

.pageHead { /*下層ページ共通FV*/
  background-size: 100%;
  background-repeat: no-repeat;
  width: 100%;
  height: auto;
}

.mainText {
  width: 100%;
  height: 50px;
  font-size: clamp(20px, 1.5vw + 1.5rem, 38px);
  color: #fff;
  background-color: #000000;
  text-align: center;
  line-height: 50px;
}

.subText {
  top: 60%;
  font-size: clamp(13px, 1vw + 0.4rem, 16px);
  text-align: center;
}

.breadcrumbOuter { /*パンくずナビ*/
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.breadcrumb {
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 14px;
  margin-top: 10px;
  margin-left: 16px;
}
.breadcrumb img {
  width: 8px;
}
.breadcrumb a, .breadcrumb p {
  font-size: 14px;
}

.numberPagenation { /*ページネーション*/
  width: 310px;
  display: flex;
  justify-content: center;
  gap: 6px;
  align-items: center;
  padding: 0 10px;
  margin-left: auto;
  margin-right: auto;
}
.numberPagenation a.pageLink {
  width: 36px;
  height: 36px;
  color: #4D4D4D;
  border: solid 1px #4D4D4D;
  font-size: 16px;
  line-height: 36px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  transition: 0.3s;
}
.numberPagenation a.pageLink:hover {
  color: #fff;
  background-color: #4D4D4D;
}
.numberPagenation p.pageNow {
  width: 36px;
  height: 36px;
  color: #fff;
  background-color: #4D4D4D;
  border: solid 1px #4D4D4D;
  font-size: 16px;
  line-height: 36px;
  text-align: center;
  font-size: 14px;
}
.numberPagenation .nextIcon {
  position: relative;
  display: inline-block;
  width: 5.9px;
  height: 10.9px;
}
.numberPagenation .nextIcon::before,
.numberPagenation .nextIcon::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 0;
  width: 8px;
  height: 1px;
  border-radius: 9999px;
  background-color: #4D4D4D;
  transform-origin: calc(100% - 0.5px) 50%;
}
.numberPagenation .nextIcon::before {
  transform: rotate(45deg);
}
.numberPagenation .nextIcon::after {
  transform: rotate(-45deg);
}
.numberPagenation .prevIcon {
  position: relative;
  display: inline-block;
  width: 5.9px;
  height: 10.9px;
}
.numberPagenation .prevIcon::before,
.numberPagenation .prevIcon::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  left: 0;
  width: 8px;
  height: 1px;
  border-radius: 9999px;
  background-color: #4D4D4D;
  transform-origin: 0.5px 50%;
}
.numberPagenation .prevIcon::before {
  transform: rotate(45deg);
}
.numberPagenation .prevIcon::after {
  transform: rotate(-45deg);
}
.numberPagenation .iconOuter {
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: solid 1px #4D4D4D;
  transition: 0.3s;
}
.numberPagenation .iconOuter:hover {
  background-color: #4D4D4D;
}
.numberPagenation .iconOuter:hover .nextIcon::before,
.numberPagenation .iconOuter:hover .nextIcon::after,
.numberPagenation .iconOuter:hover .prevIcon::before,
.numberPagenation .iconOuter:hover .prevIcon::after {
  background-color: #fff;
}

ul.clickCategory { /*取扱商品・取扱看板のナビゲーション*/
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 20px 50px;
  flex-wrap: wrap;
  max-width: 1064px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 16px;
}
ul.clickCategory li {
  font-size: 16px;
  font-weight: bold;
  color: #444444;
  list-style: none;
  position: relative;
}

li.clickLink:hover {
  cursor: pointer;
}

.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

.pcflex {
  display: flex !important;
}

.spflex {
  display: none !important;
}

.mb5 {
  margin-bottom: 5px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb25 {
  margin-bottom: 25px;
}

.mb30 {
  margin-bottom: 25px;
}

.mb35 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 30px;
}

.mb45 {
  margin-bottom: 35px;
}

.mb50 {
  margin-bottom: 30px;
}

.mb55 {
  margin-bottom: 30px;
}

.mb60 {
  margin-bottom: 30px;
}

.mb65 {
  margin-bottom: 30px;
}

.mb70 {
  margin-bottom: 35px;
}

.mb75 {
  margin-bottom: 35px;
}

.mb80 {
  margin-bottom: 40px;
}

.mb85 {
  margin-bottom: 40px;
}

.mb90 {
  margin-bottom: 45px;
}

.mb95 {
  margin-bottom: 50px;
}

.mb100 {
  margin-bottom: 50px;
}

.mb110 {
  margin-bottom: 55px;
}

.mb120 {
  margin-bottom: 60px;
}

.mb125 {
  margin-bottom: 65px;
}

.mb130 {
  margin-bottom: 60px;
}

.mb140 {
  margin-bottom: 60px;
}

.mb150 {
  margin-bottom: 60px;
}

.mb160 {
  margin-bottom: 70px;
}

.mb170 {
  margin-bottom: 70px;
}

.mb180 {
  margin-bottom: 70px;
}

.mb190 {
  margin-bottom: 70px;
}

.mb200 {
  margin-bottom: 70px;
}

.centerBox {
  max-width: 1082px;
  margin-inline: auto;
  padding-inline: 25px;
}

.pcBr {
  display: none;
}

html::-webkit-scrollbar {
  width: 12px;
}

html::-webkit-scrollbar-track {
  width: 12px;
  background-color: #eee;
}

html::-webkit-scrollbar-thumb {
  background-color: #ccc;
}
header .headerBox {
  background-color: #0041BE;
  width: 100%;
  height: 160px;
  padding-left: 15%;
  padding-right: 15%;
}
header .headerOuter {
  background-color: #000097;
  max-width: 1400px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  height: 100%;
}
header .headerLogo {
  padding-top: 30px;
}
header .logoImg {
  display: block;
  width: 224px;
  height: 55px;
}
header .logoImg img {
  width: 100%;
}
header .logoImgh {
  display: block;
  width: 152px;
  height: 37px;
  margin: 0;
  padding: 0;
  align-items: center;
}
header .menuSectionOuter {
  background-color: #000000;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0 15px;
}

.menuSection {
  text-align: right;
  width: 100%;
}

.menuSecTel {
  color: #fff;
  font-size: 20px;
}

.formLink1 {
  height: 48px;
  display: flex;
  gap: 5px;
  border: solid 1px #fff;
  border-radius: 24px;
  padding: 0 20px;
  align-items: center;
  transition: 0.3s;
}
.formLink1 img {
  width: 15px;
  height: 11px;
}
.formLink1 img.letterIcon {
  display: block;
}
.formLink1 img.letterIconHoverh {
  display: none;
}
.formLink1:hover {
  background-color: #fff;
}
.formLink1:hover img.letterIcon {
  display: none;
}
.formLink1:hover img.letterIconHoverh {
  display: block;
}
.formLink1:hover .formLink1Txt {
  color: #222222;
}

.formLink1Txt {
  font-weight: bold;
  font-size: 16px;
  color: #fff;
}

.menuSecBottom {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  width: 100%;
}
.menuSecBottom a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s;
  padding-inline: 2px;
}
.menuSecBottom a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: rgb(255, 255, 255);
  transition: width 0.3s ease, left 0.3s ease;
}
.menuSecBottom a:hover::after {
  width: 100%;
  left: 0;
}
.menuSecBottom a:active {
  color: #00FFFF;
}
.menuSecBottom .gnavi__list {
  position: relative;
  z-index: 30;
  cursor: pointer;
}
.menuSecBottom .dropdown__lists {
  display: none; /*デフォルトでは非表示の状態にしておく*/
  width: 100%;
  position: absolute;
  left: 0;
}
.menuSecBottom .gnavi__list:hover .dropdown__lists {
  display: block; /*Gナビメニューにホバーしたら表示*/
}
.menuSecBottom .dropdown__list {
  background-color: #000000;
  height: 25px;
  width: 280px;
  transition: all 0.3s;
  position: relative;
}
.menuSecBottom .dropdown__list:not(:first-child)::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #ffffff;
  position: absolute;
  top: 0;
  left: 0;
}
.menuSecBottom .dropdown__list:hover {
  background-color: #003558;
}
.menuSecBottom .dropdown__list a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-decoration: none;
  position: relative;
}
.menuSecBottom .dropdown__list 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);
}
.menuSecBottom .dropdown__list a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: rgb(255, 255, 255);
  transition: width 0.3s ease, left 0.3s ease;
}

/*ハンバーガーメニュー：トグルボタン*/
.hamburger-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 24px;
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 100;
  cursor: pointer;
}

.hamburger-menu span {
  position: absolute;
  width: 100%;
  height: 3px;
  transition: 0.3s;
  background-color: #000;
}

.hamburgerTxt {
  position: absolute;
  color: #fff;
  font-size: 10px;
  top: 120%;
}

.hamburger-menu span:first-of-type { /* ハンバーガーメニューの1番目の線 非アクティブ */
  top: 0;
}

.hamburger-menu span:nth-of-type(2) { /* ハンバーガーメニューの2番目の線 非アクティブ */
  top: 50%;
}

.hamburger-menu span:last-of-type { /* ハンバーガーメニューの3番目の線 非アクティブ */
  top: 100%;
}

.active.hamburger-menu span:first-of-type { /* ハンバーガーメニューの1番目の線 アクティブ */
  top: 50%;
  transform: rotate(225deg);
  background-color: #fff;
}

.hamburger-menu.active span:nth-of-type(2) { /* ハンバーガーメニューの2番目の線 アクティブ */
  opacity: 0; /* 透明にする */
}

.hamburger-menu.active span:last-of-type { /* ハンバーガーメニューの3番目の線 アクティブ */
  top: 50%;
  transform: rotate(-225deg);
  background-color: #fff;
}

.slide-menu-menu.active {
  transform: translateX(0);
}

/* スライドメニューのスタイル */
.slide-menu {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transition: right 0.3s ease-in-out;
  z-index: 99;
  transform: translateX(100%);
  transition: 0.3s;
  visibility: visible;
}

.slide-menu-header {
  height: 79px;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
}
.slide-menu-header .logoImg {
  display: block;
  width: 150px;
  aspect-ratio: 224/55;
}

.slide-menu ul {
  list-style: none;
  padding: 20px 0;
  margin-top: 10px;
}

.slide-menu li {
  text-align: center;
  padding: 24px 0;
  border-bottom: solid 1px;
  transition: all 0.3s;
  line-height: 1.1;
}

#slide-menu li:last-of-type {
  padding-bottom: 0;
}

.slide-menu a {
  text-decoration: none;
  color: #333;
  font-size: 18px;
}

.slide-menu li:hover {
  background-color: #c7c5c5;
}

.slide-menu.active {
  transform: translateX(0);
  box-shadow: -2px 0 2px rgba(0, 0, 0, 0.2);
}

.slide-menu-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  margin-bottom: 20px;
  background-color: #000;
  height: 140px;
}
.slide-menu-bottom .menuSecTel {
  color: #fff;
  font-size: 16px;
}
.slide-menu-bottom .formLink1 {
  height: 48px;
  display: flex;
  gap: 5px;
  border: solid 1px #fff;
  border-radius: 24px;
  padding: 0 20px;
  align-items: center;
  transition: 0.3s;
}
.slide-menu-bottom .formLink1 img {
  width: 15px;
  height: 11px;
}
.slide-menu-bottom .formLink1 img.letterIconHoverh {
  display: none;
}
.slide-menu-bottom .formLink1 .formLink1Txt {
  font-weight: bold;
  font-size: 14px;
  color: #fff;
}
.slide-menu-bottom .formLink1:hover {
  background-color: #ffffff;
}
.slide-menu-bottom .formLink1:hover img.letterIcon {
  display: none;
}
.slide-menu-bottom .formLink1:hover img.letterIconHoverh {
  display: block;
}
.slide-menu-bottom .formLink1:hover .formLink1Txt {
  color: #222222;
}

/*ハンバーガーメニューここまで*/
header .headerBox2 {
  background-color: #FFFFFF;
  width: 100%;
  height: 128px;
}
header .headerOuter {
  background-color: #000097;
  max-width: 1400px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  height: 100%;
}
header .headerLogo {
  padding-top: 30px;
}
header .ToplogoImg2 {
  display: block;
  width: 170px;
  height: auto;
  aspect-ratio: 224/55;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 20px;
}
header .ToplogoImg2 img {
  width: 100%;
}
header .logoImgh {
  display: block;
  width: 152px;
  height: 37px;
  margin: 0;
  padding: 0;
  align-items: center;
}
header .menuSectionOuter2 {
  display: block;
  background-color: #000000;
  display: flex;
  align-items: center;
  width: 100%;
  height: 35px;
  padding: 10px 10%;
}

.menuSection {
  text-align: right;
  width: 100%;
}

.menuSecTel {
  color: #fff;
  font-size: 20px;
}

.formLink1 {
  height: 48px;
  display: flex;
  gap: 5px;
  border: solid 1px #fff;
  border-radius: 24px;
  padding: 0 20px;
  align-items: center;
  transition: 0.3s;
}
.formLink1 img {
  width: 15px;
  height: 11px;
}
.formLink1 img.letterIcon {
  display: block;
}
.formLink1 img.letterIconHoverh {
  display: none;
}
.formLink1:hover {
  background-color: #fff;
}
.formLink1:hover img.letterIcon {
  display: none;
}
.formLink1:hover img.letterIconHoverh {
  display: block;
}
.formLink1:hover .formLink1Txt {
  color: #222222;
}

.formLink1Txt {
  font-weight: bold;
  font-size: 16px;
  color: #fff;
}

.menuSecBottom {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.menuSecBottom a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s;
  padding-inline: 2px;
}
.menuSecBottom a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: rgb(255, 255, 255);
  transition: width 0.3s ease, left 0.3s ease;
}
.menuSecBottom a:hover::after {
  width: 100%;
  left: 0;
}
.menuSecBottom a:active {
  color: #00FFFF;
}
.menuSecBottom .gnavi__list {
  position: relative;
  z-index: 30;
  cursor: pointer;
}
.menuSecBottom .gnavi__list a {
  font-size: 13px;
}
.menuSecBottom .dropdown__lists {
  display: none; /*デフォルトでは非表示の状態にしておく*/
  width: 100%;
  position: absolute;
  left: 0;
}
.menuSecBottom .gnavi__list:hover .dropdown__lists {
  display: block; /*Gナビメニューにホバーしたら表示*/
}
.menuSecBottom .dropdown__list {
  background-color: #000000;
  height: 25px;
  width: 280px;
  transition: all 0.3s;
  position: relative;
}
.menuSecBottom .dropdown__list:not(:first-child)::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #ffffff;
  position: absolute;
  top: 0;
  left: 0;
}
.menuSecBottom .dropdown__list:hover {
  background-color: #003558;
}
.menuSecBottom .dropdown__list a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-decoration: none;
  position: relative;
}
.menuSecBottom .dropdown__list 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);
}
.menuSecBottom .dropdown__list a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: rgb(255, 255, 255);
  transition: width 0.3s ease, left 0.3s ease;
}
footer {
  position: relative;
  background-color: #000097;
  width: 100%;
  text-align: center;
  color: #fff;
}

h2 {
  font-size: 27px;
  font-weight: bold;
  color: #51B8FF;
  padding-top: 85px;
  margin-bottom: 31px;
}

.footertopline {
  height: 15px;
  width: 100%;
  background-color: #000000;
  margin-bottom: 30px;
}

.footerTel {
  text-align: center;
}

.footerTelTxt {
  margin-bottom: 21px;
}

.fotterLink {
  position: relative;
  display: flex;
  max-width: 378px;
  width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

.fotterLinktext {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 16px;
  font-weight: bold;
  color: #FFFFFF;
  text-align: center;
  align-items: center;
}

.footerTextpc {
  display: block;
  margin: 20px 61px 40px;
}

.footerTextsp {
  display: none;
  margin: 20px 61px 35px;
}

.flink {
  width: 279px;
  height: 51px;
  display: flex;
  border-radius: 24px;
  padding: 0 20px;
  justify-content: center;
  align-items: center;
  gap: 5px;
  transition: 0.3s;
}
.flink.formLink {
  background-color: #fff;
  border: solid 1px #000;
  color: #000;
  font-weight: bold;
}
.flink:hover.formLink {
  background-color: #000;
  border: solid 1px #fff;
  color: #fff;
}
.flink:hover.formLink .letterIcon {
  display: block;
}
.flink:hover.formLink .letterIconHover {
  display: none;
}
.flink img {
  width: 15px;
  height: 11px;
}

.lineLink {
  width: 49px;
  height: auto;
  display: flex;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 40px;
}

:hover.lineLink {
  opacity: 0.7;
  transition: 0.3s;
}

.logoImg {
  display: block;
  width: 261px;
  aspect-ratio: 224/55;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}

.logoImg2 {
  display: block;
  width: 261px;
  aspect-ratio: 224/55;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}

.footerBottomTxt {
  font-family: "Meiryo UI", "Hiragino Sans", "Yu Gothic UI", "MS PGothic", "Hiragino Kaku Gothic ProN", sans-serif;
  padding-bottom: 20px;
}
.footerBottomTxt .footerBottomTel {
  display: flex;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  gap: 0 15px;
}
.footerBottomTxt .footerBottomTel .footerBottomTelpc {
  display: block;
}
.footerBottomTxt .footerBottomTel .footerBottomTelsp {
  display: none;
}

.pagetopIcon {
  position: fixed;
  width: 76px;
  height: 76px;
  bottom: 40px;
  right: 1%;
  transition: 0.3s;
  z-index: 25;
}

.fixed_btn {
  position: fixed;
  width: 57px;
  height: 57px;
  bottom: 10px;
  right: 10px;
  z-index: 25;
}

.usual {
  opacity: 1;
}

.usual:hover {
  opacity: 0;
}

.hover {
  opacity: 0;
}

.hover:hover {
  cursor: pointer;
  opacity: 1;
}

/* モーダルのスタイル
※ライトボックスを先に特定のページで使用してしまったため、同等の機能を作成 */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.8);
  transition: 0.3s;
}

.modal-content-outer {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.modal-content {
  display: block;
  margin: auto;
  width: 80%;
  max-width: 280px;
}

.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

@media (min-width: 690px){
  .hamburger-menu * {
    display: none;
  }
  .hamburger-menu2 * {
    display: none;
  }
}

@media (min-width: 960px){
  body {
    font-size: 1.6rem;
    text-align: justify;
  }
  .mb30 {
    margin-bottom: 30px;
  }
  .mb35 {
    margin-bottom: 35px;
  }
  .mb40 {
    margin-bottom: 40px;
  }
  .mb45 {
    margin-bottom: 45px;
  }
  .mb50 {
    margin-bottom: 50px;
  }
  .mb55 {
    margin-bottom: 55px;
  }
  .mb60 {
    margin-bottom: 60px;
  }
  .mb65 {
    margin-bottom: 65px;
  }
  .mb70 {
    margin-bottom: 70px;
  }
  .mb75 {
    margin-bottom: 75px;
  }
  .mb80 {
    margin-bottom: 80px;
  }
  .mb85 {
    margin-bottom: 85px;
  }
  .mb90 {
    margin-bottom: 90px;
  }
  .mb95 {
    margin-bottom: 95px;
  }
  .mb100 {
    margin-bottom: 100px;
  }
  .mb110 {
    margin-bottom: 110px;
  }
  .mb120 {
    margin-bottom: 120px;
  }
  .mb125 {
    margin-bottom: 125px;
  }
  .mb130 {
    margin-bottom: 130px;
  }
  .mb140 {
    margin-bottom: 140px;
  }
  .mb150 {
    margin-bottom: 150px;
  }
  .mb160 {
    margin-bottom: 160px;
  }
  .mb170 {
    margin-bottom: 170px;
  }
  .mb180 {
    margin-bottom: 180px;
  }
  .mb190 {
    margin-bottom: 190px;
  }
  .mb200 {
    margin-bottom: 200px;
  }
  .spBr {
    display: none;
  }
  .pcBr {
    display: inline;
  }
}

@media (max-width: 959px){
  .menuSecTel {
    font-size: 16px;
  }
  .formLink1Txt {
    font-size: 14px;
  }
  .menuSecTel {
    font-size: 16px;
  }
  .formLink1Txt {
    font-size: 14px;
  }
  .footerTelTxt {
    margin-bottom: 16px;
  }
  .fotterLink {
    width: 273px;
  }
  .flink {
    width: 240px;
    height: 45px;
  }
}

@media (max-width: 940px){
  header .headerBox {
    padding-left: 10%;
    padding-right: 10%;
  }
  .menuSection {
    width: 100%;
    padding: 0 10px;
  }
  header .menuSectionOuter2 {
    width: 100%;
    padding: 10px 30px;
  }
}

@media (max-width: 740px){
  header .menuSectionOuter {
    width: 100%;
    padding: 0 0px;
    font-size: 15px;
  }
}

@media (max-width: 689px){
  html, body {
    scrollbar-width: none; /* Firefox 用の設定 */
  }
  html::-webkit-scrollbar, body::-webkit-scrollbar {
    display: none; /* WebKit ブラウザ（Chrome, Safari など）用の設定 */
  }
  .hoverLink img.indexIcon00,
  .hoverLink img.indexIcon00H {
    left: calc(100% - 74px);
  }
  .hoverLink {
    margin-left: auto;
    margin-right: auto;
  }
  .pageHead {
    aspect-ratio: auto;
    background-size: cover;
    background-position: center;
    object-fit: cover;
    margin-top: 21px;
  }
  .numberPagenation {
    width: 280px;
  }
  .numberPagenation a.pageLink {
    transition: 0s;
    font-size: 14px;
  }
  .numberPagenation .iconOuter {
    transition: 0s;
    font-size: 14px;
  }
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  .pcflex {
    display: none !important;
  }
  .spflex {
    display: flex !important;
  }
  header .logoImg {
    width: 152px;
    height: 37px;
    margin-top: 21px;
  }
  header {
    height: 79px;
  }
  .menuSectionOuter * {
    display: none;
  }
  header .ToplogoImg2 {
    width: 152px;
    height: 37px;
    margin-top: 21px;
  }
  header .menuSectionOuter2 {
    display: none;
  }
  header {
    height: 95px;
  }
  .menuSectionOuter2 * {
    display: none;
  }
  h2 {
    padding-top: 60px;
  }
  .footerTelTxt {
    margin-bottom: 3px;
  }
  .footerTextpc {
    display: none;
  }
  .footerTextsp {
    display: block;
  }
  .footerBottomTxt .footerBottomTel {
    display: block;
  }
  .footerBottomTxt .footerBottomTel .footerBottomTelpc {
    display: none;
  }
  .footerBottomTxt .footerBottomTel .footerBottomTelsp {
    display: block;
  }
  .pagetopIcon {
    right: 18px;
  }
}

@media (max-width: 500px){
  .subText {
    padding-right: 2%;
  }
}

@media (max-width: 419px){
  .slide-menu-bottom .menuSecTel {
    font-size: 14px;
  }
  .slide-menu-bottom .formLink1 .formLink1 {
    padding: 0 12px;
  }
  .slide-menu-bottom .formLink1 .formLink1Txt {
    font-size: 12px;
  }
}

@media (max-width: 385px){
  .subText {
    font-size: 9px;
  }
}

@media print{
  body {
    width: 960px;
    margin: 0 auto;
  }
}