@charset "UTF-8";
:root {
  --roboto: Roboto, sans-serif;
  --arial: Arial, sans-serif;
}

/* 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: "Noto Sans JP", sans-serif;
}

::selection {
  background-color: rgb(27, 74, 119);
  color: #fff;
}

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

html {
  font-size: 62.5%;
  scroll-padding-top: 120px;
}

body {
  font-size: 1.4rem;
  line-height: 1.6875;
}

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

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

a {
  color: #0065bb;
}
a:hover {
  text-decoration: none;
}

.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: #fff;
}

html::-webkit-scrollbar-thumb {
  background-color: #0065bb;
}
.header {
  height: 60px;
  position: sticky;
  background-color: #fff;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 25px;
  top: 0;
  gap: 25px;
  overflow-x: clip;
}

.headerLogo {
  display: block;
  max-width: 200px;
  width: 50%;
}

.headerLogoLink {
  display: block;
}

.main {
  margin: 0 0 70px;
}

.pageTitleWrap {
  position: relative;
  height: 100px;
  padding: 25px;
  text-align: center;
  display: grid;
  place-items: center;
}

.pageTitlePic {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.pageTitlePic img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  object-position: center center;
}

.pageTitle {
  color: #fff;
  font-weight: normal;
  font-size: 2rem;
  line-height: 1.4;
}

.bread {
  margin: 0 auto 40px;
  display: flex;
  align-items: center;
  margin-inline: auto;
  padding: 10px 25px;
  overflow-x: auto;
  white-space: nowrap;
}

.breadItem:not(:last-of-type) {
  display: flex;
  align-items: center;
}
.breadItem:not(:last-of-type)::after {
  content: "";
  width: 7px;
  aspect-ratio: 1/1;
  border-right: 1px solid #707070;
  border-bottom: 1px solid #707070;
  margin: 0 15px;
  rotate: -45deg;
}

.breadLink {
  text-decoration: none;
  color: inherit;
  font-size: 1.3rem;
  line-height: 1.821429;
  display: block;
}

.breadText {
  font-size: 1.3rem;
  line-height: 1.821429;
  display: block;
}

.pageSubTitle {
  text-align: center;
  padding: 0 25px 10px;
  font-size: 1.8rem;
  line-height: 1.4;
  border-bottom: 2px solid #0065bb;
  position: relative;
  margin: 0 0 20px;
  font-weight: normal;
}
.pageSubTitle::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 25px;
  background-color: #0065bb;
  right: 0;
  bottom: -2px;
  transform-origin: right top;
  rotate: 15deg;
}

.centerTitle {
  font-size: 1.8rem;
  line-height: 1.4;
  margin: 0 0 20px;
  text-align: center;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 40px 0 0;
}

.paginationNumber {
  width: 28px;
  aspect-ratio: 28/31;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: inherit;
  padding: 0 0 1px;
  font-size: 1.6rem;
}

.paginationNow {
  width: 28px;
  aspect-ratio: 28/31;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0065bb;
  border-bottom: 1px solid #0065bb;
  font-size: 1.6rem;
}

.paginationPrev {
  width: 28px;
  aspect-ratio: 28/31;
  position: relative;
  display: block;
}
.paginationPrev::before {
  content: "";
  width: 8px;
  aspect-ratio: 1/1;
  border-left: 1px solid #222;
  border-top: 1px solid #222;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.paginationNext {
  width: 28px;
  aspect-ratio: 28/31;
  position: relative;
  display: block;
}
.paginationNext::before {
  content: "";
  width: 8px;
  aspect-ratio: 1/1;
  border-right: 1px solid #222;
  border-top: 1px solid #222;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.footer {
  background-color: #0065bb;
  padding: 30px 25px;
  position: relative;
  background-image: url(../images/footer-bg.svg);
  background-size: 332px 296px;
  background-position: right bottom;
  background-repeat: no-repeat;
}

.pagetop {
  position: absolute;
  right: 10px;
  top: -23px;
  width: 46px;
}

.footerHeadWrap {
  margin: 0 0 40px;
}

.footerLogo {
  max-width: 200px;
  margin: 0 0 20px;
  display: block;
}

.footerAddress {
  font-size: 1.4rem;
  color: #fff;
}

.copyrightMenu {
  display: flex;
  align-items: center;
  margin: 0 0 10px;
}

.copyrightMenuItem:not(:last-of-type) {
  border-right: 1px solid #fff;
  margin: 0 10px 0 0;
  padding: 0 10px 0 0;
}

.copyrightMenuLink {
  color: #fff;
  font-size: 1.4rem;
  text-decoration: none;
  line-height: 1.2;
  display: block;
}

.copyright {
  font-size: 1.4rem;
  color: #fff;
}

.footerContactWrap {
  margin: 0 0 40px;
}

.footerContactTitle {
  font-size: 1.4rem;
  display: block;
  color: #fff;
  margin: 0 0 10px;
}

.footerTelWrap {
  display: flex;
  align-items: baseline;
  margin: 0 0 25px;
}

.footerTel {
  font-size: 1.4rem;
  color: #fff;
  margin: 0 6px 0 0;
}

.footerTelNumber {
  font-size: 2.3rem;
  font-weight: bold;
  color: #fff;
}

.footerContactListItem:not(:last-of-type) {
  margin: 0 0 16px;
}

.footerContactLisLink {
  border: 1px solid #fff;
  background-color: #ffffff;
  color: #0065bb;
  text-decoration: none;
  display: block;
  text-align: center;
  font-size: 1.3rem;
  padding: 6px;
  border-radius: 7px;
  position: relative;
}
.footerContactLisLink:hover {
  background-color: #0065bb;
  color: #fff;
}
.footerContactLisLink:hover::after {
  background-color: #fff;
}
:where(.footerContactListItem:nth-of-type(1) .footerContactLisLink)::after {
  content: "";
  width: 16px;
  aspect-ratio: 1/1;
  mask-image: url(../images/icon-mail.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-image: url(../images/icon-mail.svg);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  background-color: #0065BB;
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
}
:where(.footerContactListItem:nth-of-type(2) .footerContactLisLink)::after {
  content: "";
  width: 16px;
  aspect-ratio: 1/1;
  mask-image: url(../images/icon-cart.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-image: url(../images/icon-cart.svg);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  background-color: #0065BB;
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
}
:where(.footerContactListItem:nth-of-type(3) .footerContactLisLink)::after {
  content: "";
  width: 16px;
  aspect-ratio: 1/1;
  mask-image: url(../images/icon-download.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-image: url(../images/icon-download.svg);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  background-color: #0065BB;
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
}

.footerNav {
  display: none;
}

.footerNavItem {
  min-width: 145px;
}

.footerNavTitle {
  color: #fff;
  display: block;
  margin: 0 0 10px;
}

.footerMenuItem:not(:last-of-type) {
  margin: 0 0 10px;
}

.footerMenuLink {
  display: flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  width: fit-content;
  padding: 0 10px 0 0;
}
.footerMenuLink:hover {
  text-decoration: underline;
}
.footerMenuLink::before {
  content: "";
  width: 4px;
  height: 1px;
  background-color: #fff;
  flex-shrink: 0;
  margin: 0 10px 0 0;
}

.copyrightWrapPc {
  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;
  }
  .header {
    height: 95px;
    padding: 14px 50px 10px;
    align-items: flex-end;
  }
  .headerLogo {
    max-width: 300px;
    width: auto;
  }
  .main {
    margin: 0 0 150px;
  }
  .pageTitleWrap {
    height: 276px;
  }
  .pageTitle {
    font-size: 4rem;
  }
  .bread {
    margin: 0 0 80px;
    padding: 10px 50px;
  }
  .breadItem:not(:last-of-type)::after {
    margin: 0 20px;
  }
  .pageSubTitle {
    padding: 0 25px 20px;
    font-size: 3.5rem;
    margin: 0 0 65px;
  }
  .centerTitle {
    margin: 0 0 40px;
    font-size: 2.6rem;
  }
  .pagination {
    margin: 90px 0 0;
  }
  .paginationNumber {
    font-size: 2rem;
  }
  .paginationNow {
    font-size: 2rem;
  }
  .footer {
    padding: 55px 50px;
    display: flex;
    flex-wrap: wrap;
    gap: 60px 0;
  }
  .pagetop {
    width: 91px;
    right: 75px;
    top: -28px;
  }
  .footerHeadWrap {
    margin: 0 120px 0 0;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .footerLogo {
    max-width: 300px;
    margin: 0 0 25px;
  }
  .footerContactWrap {
    margin: 0 90px 0 0;
    min-width: 195px;
  }
  .footerNav {
    display: flex;
    gap: 25px;
  }
  .copyrightWrapPc {
    display: block;
  }
  .copyrightWrapSp {
    display: none;
  }
}

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

/*# sourceMappingURL=common.css.map*/