@charset "utf-8";
html {
  box-sizing: border-box;
  font-size: 16px;
}
*,
*::before,
*::after {
  box-sizing: inherit;
}
* {
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Meiryo', 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro', 'ＭＳ Ｐゴシック', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
  min-height: 100vh;
}
img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
  line-height: 1.2;
}
ul,
ol {
  list-style-type: none;
}
a {
  display: inline;
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
button,
input,
select,
textarea {
  font: inherit;
  /* フォントを統一 */
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #fff;
  box-sizing: border-box;
}
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid #0066cc;
  outline-offset: 2px;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th,
td {
  border: 1px solid #ccc;
  text-align: left;
}
/* header */
.header {
  display: flex;
  justify-content: space-between;
  max-width: 1300px;
  width: 90%;
  margin: auto;
  @media (width > 750px) {
    min-height: 130px;
  }
}
.logo_list,
.sns_list {
  display: flex;
}
.logo_list {
  align-items: center;
  gap: 30px;
  padding: 30px 0 25px;
  @media (width < 751px) {
    gap: 8px;
    padding: 23px 0 10px;
  }
}
.logo_list.-slogan {
  padding: 30px 0 30px;
  @media (width < 751px) {
    padding: 23px 0 10px;
  }
}
.logo_list a img {
  height: 75px;
  width: auto;
  @media (width < 751px) {
    height: 48px;
  }
}
.logo_list.-slogan a img {
  width: 287px;
  height: auto;
  @media (width < 751px) {
    width: 238px;
    height: auto;
  }
}
.sns_list {
  align-items: center;
  gap: 16px;
  max-height: fit-content;
  padding-top: 30px;
  @media (width < 751px) {
    gap: 10px;
    padding-top: 23px;
  }
}
.sns_list a img {
  height: 32px;
  width: auto;
  @media (width < 751px) {
    height: 20px;
    width: auto;
  }
}
#share-x img {
  height: 25px;
  @media (width < 751px) {
    height: 19px;
  }
}
#container {
  min-width: 320px;
  /* これが無いとcommon.jsでviewport変えられる */
  max-width: 100%;
}
/*-------------------------------------------------------------*/
/* ftr-pagetop */
#ftr-pagetop {
  visibility: hidden;
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 11;
  opacity: 0;
  transition: all 0.4s ease-out;
}
#ftr-pagetop.show {
  visibility: visible;
  opacity: 1;
}
#ftr-pagetop a {
  color: #fff;
  white-space: nowrap;
  background-color: rgba(44, 67, 138, 0.6);
  box-sizing: border-box;
  display: block;
  text-indent: 47px;
  width: 47px;
  height: 47px;
  overflow: hidden;
  border-radius: 100%;
}
#ftr-pagetop a::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -25%) rotate(45deg);
  transform: translate(-50%, -25%) rotate(45deg);
}