@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: "ヒラギノ明朝 ProN", "BIZ UDPGothic", sans-serif;
}

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

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

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 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 70px;
  padding: 0 20px;
}

.headerLogoLink {
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  line-height: 1;
  color: #333333;
  gap: 20px;
}
.headerLogoLink h1 {
  font-size: 21px;
}
.headerLogoLink h2 {
  font-size: 15px;
}

.headLink {
  display: flex;
  align-items: flex-end;
  gap: 90px;
}
.headLink a {
  text-decoration: none;
  color: #333333;
}

.headright {
  display: none;
}

/* 
hamburger(ハンバーガーアイコン)
=================================== */
.nav-wrapper {
  display: block;
}

.hamburger {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 50px;
  height: 40px;
  cursor: pointer;
  z-index: 300;
}

.hamburger__line {
  position: absolute;
  width: 30px;
  height: 2px;
  right: 0;
  background-color: #000;
  transition: all 0.5s;
}

.hamburger__line--1 {
  top: 6px;
}

.hamburger__line--2 {
  top: 15px;
}

.hamburger__line--3 {
  top: 25px;
}

/*ハンバーガーがクリックされたら*/
.open .hamburger__line--1 {
  transform: rotate(-45deg);
  top: 16px;
}

.open .hamburger__line--2 {
  opacity: 0;
}

.open .hamburger__line--3 {
  transform: rotate(45deg);
  top: 16px;
}

.open .hamburger__line {
  background-color: #ffffff;
}

/* 
sp-nav(ナビ)
=================================== */
.sp-nav {
  position: fixed;
  right: -100%; /*ハンバーガーがクリックされる前はWindow右側に隠す*/
  top: 0;
  width: 70%; /* 出てくるスライドメニューの幅 */
  height: 100vh;
  background-color: #719FE0;
  transition: all 0.5s;
  z-index: 200;
  overflow-y: auto; /* メニューが多くなったらスクロールできるように */
}
.sp-nav ul {
  margin-top: 115px;
}
.hamburgerLink {
  color: #ffffff;
  text-decoration: none;
  margin: 20px;
}

.hamburgerLink1 {
  color: #ffffff;
  text-decoration: none;
  margin: 20px;
}

.hamburgerLink2 {
  color: #ffffff;
  text-decoration: none;
  margin: 20px;
}

.hamburgerLink3 {
  color: #ffffff;
  text-decoration: none;
  margin: 20px;
}

.hamburgerLinkEng {
  font-size: 10px;
  line-height: 1;
  margin-left: 20px;
}

.hamburgerLinkItem {
  font-size: 22px;
  line-height: 1;
  margin-left: 20px;
}

.hamburgerBottomImg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: auto;
  z-index: -1;
}

/*ハンバーガーがクリックされたら右からスライド*/
.open .sp-nav {
  right: 0;
}

/* 
black-bg(ハンバーガーメニュー解除用bg)
=================================== */
.black-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 5;
  background-color: #000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  cursor: pointer;
  z-index: 100;
}

/*ハンバーガーメニューが開いたら表示*/
.open .black-bg {
  opacity: 0.3;
  visibility: visible;
}

.footer {
  background-color: #F3F3F3;
  margin: auto;
}

.footerbox {
  position: relative;
  display: block;
  justify-content: center;
  flex-direction: row-reverse;
  gap: 150px;
  padding-top: 50px;
  margin: 0 30px;
  margin-bottom: 50px;
  z-index: 10;
}

.footerLeft {
  color: #333333;
}
.footerLeft h1 {
  font-size: 18px;
}

.footerRight {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 3列固定 */
  gap: 10px;
  color: #333333;
  margin-bottom: 30px;
}
.footerRight a {
  text-decoration: none;
  color: #333333;
}
.footerRight a:before {
  content: url(../images/footerlink.png);
  display: inline-block;
  padding-right: 10px;
}

.footerBottom {
  position: relative;
  display: flex;
  justify-content: center;
  color: #333333;
  padding-bottom: 80px;
  z-index: 10;
}

.footerimage {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 5;
}

.footerimagepc {
  display: none;
}

.footerimagesp {
  display: block;
}

@media (min-width: 768px){
  .header {
    padding: 0 55px;
  }
  .headerLogoLink h1 {
    font-size: 30px;
  }
  .headerLogoLink h2 {
    font-size: 20px;
  }
  .footerbox {
    display: flex;
    padding-top: 100px;
    margin-bottom: 80px;
  }
  .footerLeft h1 {
    font-size: 2em;
  }
  .footerRight {
    gap: 20px;
  }
  .footerRight a:before {
    padding-right: 20px;
  }
  .footerBottom {
    padding-bottom: 40px;
  }
  .footerimage {
    bottom: 0;
  }
  .footerimagepc {
    display: block;
  }
  .footerimagesp {
    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;
  }
  .headright {
    display: block;
  }
  .nav-wrapper {
    display: none;
  }
}

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

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