@charset "utf-8";

/*
Theme Name: 原通信建設2511
Theme URI:
Author:
*/

/* -------------------------------------------------- */
/* RESET*/
/* -------------------------------------------------- */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

li {
  list-style-type: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  vertical-align: bottom;
}

textarea,
select,
option {
  font: inherit;
}

/* -------------------------------------------------- */
/* LINK */
/* -------------------------------------------------- */
a:link,
a:visited {
  text-decoration: none;
  color: #000000;
}

a:hover {
  text-decoration: none;
}

a:active {
  text-decoration: none;
}

/* -------------------------------------------------- */
/* フェードインアニメーション */
/* -------------------------------------------------- */
#container {
  opacity: 0;
}

.fadeInTrigger {
  opacity: 0;
}

.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* -------------------------------------------------- */
/* スクロールアニメーション */
/* -------------------------------------------------- */
.fadeUpTrigger {
  opacity: 0;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    /* transform: translateY(50px); */
  }

  to {
    opacity: 1;
    /* transform: translateY(0); */
  }
}

/* -------------------------------------------------- */
/* COMMON */
/* -------------------------------------------------- */
html {
  font-size: 62.5%;
  /* 10px */
}

body {
  background: #ffffff;
  color: #000000;
  font-size: 14px;
  font-size: 1.4rem;
}

#container {
  position: relative;
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3",
    "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック",
    "MS PGothic", sans-serif;
  line-height: 1.5;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

img {
  display: block;
  max-width: 100%;
}

/* レイアウト */
/* -------------------------------------------------- */
.inner {
  max-width: 92%;
  margin: 0 auto;
}

.flexWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

/* フォント */
/* -------------------------------------------------- */
.fontRobto {
  font-family: "Roboto", sans-serif;
}

.fontJost {
  font-family: "Jost", sans-serif;
}

.verticalTtl {
  padding-top: 0.2em;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

.mainSectionTtl {
  margin-bottom: 43px;
  font-size: 2.7rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}

.sectionTtl {
  font-weight: bold;
  color: #0d54a7;
}

.contentTxt {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  line-height: 2.25;
}

.contentTxt + .contentTxt {
  margin-top: 26px;
}

/* 背景 */
/* -------------------------------------------------- */
.bgGradation {
  background: linear-gradient(
    150deg,
    #079fe8 0%,
    #0c72c2 20%,
    #10459c 50%,
    #0c72c2 80%,
    #079fe8 99%,
    #079fe8 100%
  );
  color: #ffffff;
}

/* ボタン */
/* -------------------------------------------------- */
.roundBtn a {
  display: block;
  width: 100%;
  padding: 18px 21px;
  border: 1px solid #ffffff;
  border-radius: 30px;
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  position: relative;
  transition: all 0.3s;
}

.roundBtn a::after {
  display: inline-block;
  content: url(./img/arrow_right.png);
  position: absolute;
  top: 50%;
  right: 27px;
  transform: translateY(-50%);
  transition: all 0.3s;
}

/* ホバーアクション */
.roundBtn a:hover,
.roundBtn a:active {
  background: #ffffff;
  color: #0d54a7;
}

.roundBtn a:hover::after,
.roundBtn a:active::after {
  content: url(./img/arrow_right_color.png);
}

/* -------------------------------------------------- */
/* PC*/
/* -------------------------------------------------- */
.tbsp {
  display: none;
}

.tb {
  display: none;
}

.sp {
  display: none;
}

.telNum {
  pointer-events: none;
}

/* -------------------------------------------------- */
/* ヘッダー */
/* -------------------------------------------------- */
header {
  background: #ffffff;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 100;
}

#headerInner {
  max-width: 98%;
  padding: 8px 0;
}

#headerWrap {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  column-gap: 30px;
}

#headerLogo {
  width: 245px;
  max-width: 25%;
  z-index: 100;
}

#headerLogo img {
  transition: all 0.5s;
}

#headerLogo img:hover {
  opacity: 0.6;
}

#headerNavWrap {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  column-gap: 26px;
  font-size: 1.4rem;
}

/* グローバルナビゲーション */
/* -------------------------------------------------- */
#gnavList {
  column-gap: 20px;
}

.gnavItem a {
  display: block;
  font-weight: 500;
  letter-spacing: 0.1em;
  transition: all 0.3s;
  cursor: pointer;
}

/* ホバーアクション */
.gnavItem a:hover,
.gnavItem a:active {
  color: #0d54a7;
}

/* コンタクトエリア */
/* -------------------------------------------------- */
#headerContactWrap {
  z-index: 100;
}

#headerTel {
  letter-spacing: 0.05em;
  font-weight: bold;
  padding: 0 5px;
}

#headerTel a {
  font-size: 1.6rem;
}

#headerContactBtn {
  width: 100%;
  background: linear-gradient(90deg, #008ccf 0%, #10459c 100%);
  border-radius: 13px;
  text-align: center;
  z-index: 1;
  position: relative;
  transition: all 0.3s ease;
}

#headerContactBtn a {
  display: block;
  color: #ffffff;
  font-size: 1rem;
  line-height: 2.57;
  cursor: pointer;
}

#headerContactBtn a::before {
  display: inline-block;
  content: url(./img/icon_mail.png);
  padding-right: 7px;
  vertical-align: middle;
}

/* ホバーアクション */
#headerContactBtn::before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #10459c 0%, #008ccf 100%);
  border-radius: 13px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

#headerContactBtn:hover::before,
#headerContactBtn:active::before {
  opacity: 1;
}

/* -------------------------------------------------- */
/* ページトップボタン */
/* -------------------------------------------------- */
#pagetop {
  position: fixed;
  bottom: 67px;
  right: 23px;
}

#pagetopBtn a {
  display: block;
  color: #4187f4;
  font-size: 1.2rem;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  cursor: pointer;
}

#pagetopBtn a::before {
  display: inline-block;
  content: "";
  width: 1px;
  height: 67px;
  margin-bottom: 15px;
  background: linear-gradient(0deg, #10459c 0%, #008ccf 100%);
  transition: all 0.3s;
  animation: scrollUp 2s ease-in-out infinite;
}

@keyframes scrollUp {
  0% {
    height: 0;
    opacity: 0;
  }

  100% {
    height: 67px;
    opacity: 1;
  }
}

/* ホバーアクション */
#pagetopBtn a:hover,
#pagetopBtn a:active {
  opacity: 0.8;
}

/* -------------------------------------------------- */
/* フッター */
/* -------------------------------------------------- */
footer {
  background: #06142a;
  color: #ffffff;
}

/* コンタクトリンク */
/* -------------------------------------------------- */
#footerContactWrap {
  background: url(./img/footer_contact_bg.jpg) no-repeat center center / cover;
}

#footerContactInner {
  padding: 112px 0;
  width: 675px;
}

#footerContactList {
  column-gap: 20%;
}

.footerContactItem {
  width: 40%;
  text-align: center;
}

.footerContactTtl {
  margin-bottom: 29px;
  font-size: 2.7rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* フッターエリア */
/* -------------------------------------------------- */
#footerInner {
  width: 90%;
  padding: 67px 0 60px;
}

#footerWrap {
  margin-bottom: 18px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#footerLogo {
  margin-bottom: 30px;
}

.footerContentWrap {
  letter-spacing: 0.1em;
}

#footerCompanyName {
  font-size: 1.6rem;
  margin-bottom: 1em;
}

.footerTxt {
  font-size: 1.4rem;
}

#footerTel a {
  color: #ffffff;
  font-size: 1.8rem;
}

#footerNavWrap {
  /* margin-bottom: 51px; */
  padding-top: 23px;
}

#footerNavList {
  min-width: 620px;
  column-gap: 3%;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.footerNavItem a {
  display: block;
  color: #ffffff;
  font-size: 1.2rem;
  transition: all 0.3s;
  cursor: pointer;
}

.footerNavItem a:hover,
.footerNavItem a:active {
  text-decoration: underline;
}

#footerLinkList {
  column-gap: 15px;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

#footerLinkList a {
  display: inline-block;
  transition: all 0.3s;
}

#footerLinkList a:hover,
#footerLinkList a:active {
  opacity: 0.8;
}

#copyrightBox {
  color: #596880;
  text-align: right;
  font-size: 1rem;
  letter-spacing: 0.1em;
}

/* -------------------------------------------------- */
/* 新着情報共通 */
/* -------------------------------------------------- */

/* 全ページ */
/* -------------------------------------------------- */
.newsItem a {
  display: block;
  padding: 10px;
  border-bottom: 1px solid #e3e3e3;
  letter-spacing: 0.1em;
  cursor: pointer;
}

.newsItemDate {
  display: inline-block;
  margin-right: 26px;
  font-size: 1.4rem;
  font-weight: 500;
  color: #7e7e7e;
}

.newsItemCat {
  display: inline-block;
  margin-right: 26px;
  padding: 0 20px;
  border: 1px solid #008ccf;
  border-radius: 15px;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.86;
  color: #008ccf;
  transition: all 0.3s;
}

.newsItemCat + .newsItemCat {
  margin-left: -16px;
}

.newsItemTtl {
  display: inline-block;
  font-size: 1.6rem;
  transition: all 0.3s;
}

/* ホバーアクション */
.newsItem a:hover .newsItemCat,
.newsItem a:active .newsItemCat {
  background: #008ccf;
  color: #ffffff;
}

.newsItem a:hover .newsItemTtl,
.newsItem a:active .newsItemTtl {
  color: #008ccf;
}

/* 詳細ページ */
/* -------------------------------------------------- */
#newsDetailTtlBox {
  margin-bottom: 31px;
  padding-bottom: 36px;
  border-bottom: 1px solid #e3e3e3;
}

.newsDetailTtl {
  margin-bottom: 22px;
}

/* -------------------------------------------------- */
/* 下層ページ共通 */
/* -------------------------------------------------- */

/* ページタイトル */
/* -------------------------------------------------- */
#pageTtlInner {
  margin: auto;
  padding: 70px 0;
}

#pageTtl {
  padding-top: 60px;
  background-repeat: no-repeat;
  background-position: bottom 10px center;
  background-size: auto calc(100% - 10px);
  color: #0d54a7;
  text-align: center;
  font-size: 2.7rem;
  font-weight: bold;
  letter-spacing: 0.3em;
}

/* パンくずリスト */
/* -------------------------------------------------- */
#breadcrumb {
  margin-bottom: 44px;
}

#breadcrumbList {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.breadcrumbItem a {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
}

.breadcrumbItem:not(:last-child) a {
  color: #2394d2;
}

.breadcrumbItem:not(:last-child)::after {
  display: inline-block;
  content: "";
  width: 8px;
  height: 1px;
  margin: 0 10px;
  background: #0d54a7;
  vertical-align: middle;
}

/* ホバーアクション */
.breadcrumbItem a:hover {
  text-decoration: underline;
}

/* セクションタイトル */
/* -------------------------------------------------- */
.commonTtl {
  display: block;
  margin-bottom: 30px;
  color: #0d54a7;
  font-size: 2.2rem;
  font-weight: bold;
  letter-spacing: 0.15em;
  text-align: center;
}

.commonTtl span {
  display: block;
  padding-top: 5px;
  color: #0380c5;
  font-family: "Jost", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* テーブル */
/* -------------------------------------------------- */
.commonTable {
  width: 100%;
  margin: auto;
}

.commonTable tr {
  text-align: left;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
}

.commonTable th {
  width: 190px;
  padding: 20px 15px;
  border-bottom: 1px solid #089fe8;
  font-weight: bold;
}

.commonTable tr:first-child th {
  border-top: 1px solid #089fe8;
}

.commonTable td {
  padding: 20px 15px;
  border-bottom: 1px solid #dcdcdc;
}

.commonTable tr:first-child td {
  border-top: 1px solid #dcdcdc;
}

/* -------------------------------------------------- */
/* 一覧ページ共通 */
/* -------------------------------------------------- */

/* ページネーション */
/* -------------------------------------------------- */
#pageNavWrap {
  text-align: center;
}

#pager {
  display: inline-block;
}

#pageNavWrap a,
#pageNavWrap span {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  display: inline-block;
  background-color: #f8f7f7;
  margin: 0 3px;
  white-space: nowrap;
  font-family: "Jost", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s;
}

#pageNavWrap span.current {
  color: #fff;
  background: linear-gradient(150deg, #079fe8 0%, #0c72c2 40%, #10459c 100%);
}

#pageNavWrap span.dots {
  background-color: #fff;
  color: #000;
  padding: 10px 0;
}

#pageNavWrap a.next,
#pageNavWrap a.prev {
  position: relative;
}

#pageNavWrap a.next::after,
#pageNavWrap a.prev::after {
  display: block;
  content: "";
  width: 5px;
  height: 5px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  position: absolute;
  top: 42%;
  transition: all 0.3s;
}

#pageNavWrap a.next::after {
  left: 39%;
  transform: rotate(45deg);
}

#pageNavWrap a.prev::after {
  transform: rotate(-135deg);
  right: 39%;
}

/* ホバーアクション */
#pageNavWrap a:hover {
  background: #0c72c2;
  color: #ffffff;
}

#pageNavWrap a.next:hover::after,
#pageNavWrap a.prev:hover::after {
  border-color: #ffffff;
}

/* -------------------------------------------------- */
/* 詳細ページ共通 */
/* -------------------------------------------------- */
#detailCommonInner {
  width: 900px;
  padding-top: 37px;
  padding-bottom: 131px;
}

/* タイトル */
#detailCommonTtl {
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}

/* イメージボックス */
.detailCommonImgBox {
  margin-bottom: 33px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  column-gap: 26px;
  row-gap: 26px;
}

.detailCommonImgBox img {
  width: calc((100% - 26px) / 2);
  height: auto;
  /* object-fit: cover;
	font-family: 'object-fit: cover;'; */
  /* aspect-ratio: 15 /10; */
}

/* 一覧へ戻るボタン */
/* -------------------------------------------------- */
.backBtn {
  margin-top: 75px;
}

.backBtn a {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #008ccf;
  cursor: pointer;
}

.backBtn a::before {
  display: inline-block;
  content: "";
  width: 5px;
  height: 5px;
  margin-right: 5px;
  margin-left: 5px;
  border-top: 1px solid;
  border-left: 1px solid;
  transform: rotate(-45deg);
  vertical-align: middle;
  transition: all 0.3s;
}

/* ホバーアクション */
.backBtn a:hover::before,
.backBtn a:active::before {
  margin-right: 10px;
  margin-left: 0px;
}

/* -------------------------------------------------- */
/* IE対応 */
/* -------------------------------------------------- */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  #gnav {
    margin-right: 26px;
  }

  .gnavItem:not(:last-child) {
    margin-right: 29px;
  }

  .footerNavItem:not(:last-child) {
    margin-right: 40px;
  }

  .footerLinkItem:not(:last-child) {
    margin-right: 27px;
  }

  #pagetopBtn a {
    text-align: right;
  }
}

/* -------------------------------------------------- */
/* TAB&SP */
/* -------------------------------------------------- */
@media screen and (max-width: 1024px) {
  .pc {
    display: none;
  }

  .tbsp {
    display: block;
  }

  .telNum {
    pointer-events: all;
  }

  .spImgBox img {
    margin: auto;
  }

  /* -------------------------------------------------- */
  /* ヘッダー */
  /* -------------------------------------------------- */
  #headerNavWrap {
    column-gap: 10px;
  }

  #headerLogo {
    max-width: none;
  }

  /* ハンバーガーメニュー */
  /* -------------------------------------------------- */
  #hamburger {
    width: 50px;
    height: 50px;
    border-radius: 5px;
    z-index: 100;
    cursor: pointer;
    position: relative;
  }

  #hamburger span {
    display: inline-block;
    transition: all 0.3s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background: #0d54a7;
    width: 45%;
  }

  #hamburger span:nth-of-type(1) {
    top: 15px;
  }

  #hamburger span:nth-of-type(2) {
    top: 23px;
  }

  #hamburger span:nth-of-type(3) {
    top: 31px;
  }

  #hamburger.active span:nth-of-type(1) {
    top: 18px;
    left: 12px;
    transform: translateY(6px) rotate(-45deg);
    width: 50%;
  }

  #hamburger.active span:nth-of-type(2) {
    opacity: 0;
  }

  #hamburger.active span:nth-of-type(3) {
    top: 30px;
    left: 12px;
    transform: translateY(-6px) rotate(45deg);
    width: 50%;
  }

  /* スマホナビゲーション */
  /* -------------------------------------------------- */
  #spNavWrap {
    z-index: 50;
  }

  #spNav {
    position: fixed;
    top: 0;
    right: -120%;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s;
  }

  #spNav.panelactive {
    right: 0;
  }

  #spNavInner {
    padding: calc(67px + 50px) 100px 55px;
  }

  .spNavItem a {
    color: #000000;
    display: block;
    font-size: 2rem;
    text-align: center;
    line-height: 2.5;
  }

  .spNavItem a:hover,
  .spNavItem a:active {
    color: #0d54a7;
  }

  /* -------------------------------------------------- */
  /* フッター */
  /* -------------------------------------------------- */

  /* コンタクトリンク */
  /* -------------------------------------------------- */
  #footerContactInner {
    width: 80%;
    padding: 70px 0;
  }

  #footerContactList {
    column-gap: 10%;
  }

  .footerContactItem {
    width: 45%;
  }

  /* フッターエリア */
  /* -------------------------------------------------- */
  #footerWrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 50px;
  }

  #footerLogo img {
    margin: auto;
  }

  #footerNavWrap {
    margin-bottom: 20px;
  }

  #footerNavList {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  #footerLinkList {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  /* -------------------------------------------------- */
  /* 新着情報共通 */
  /* -------------------------------------------------- */
  .newsItem a {
    padding: 19px 5px;
  }

  .newsItemDate {
    margin-right: 5px;
  }

  .newsItemCat {
    margin-right: 5px;
    padding: 0 10px;
  }

  .newsItemCat + .newsItemCat {
    margin-left: 0;
  }
}

/* -------------------------------------------------- */
/* TAB(調整) */
/* -------------------------------------------------- */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .tb {
    display: block;
  }

  .pcsp {
    display: none;
  }
}

/* -------------------------------------------------- */
/* SP(調整) */
/* -------------------------------------------------- */
@media screen and (max-width: 767px) {
  .pctb {
    display: none;
  }

  .sp {
    display: block;
  }

  /* -------------------------------------------------- */
  /* COMMON */
  /* -------------------------------------------------- */

  /* レイアアウト */
  /* -------------------------------------------------- */
  .inner {
    /* max-width: 90%; */
  }

  .sectionInner {
    padding: 50px 0 !important;
  }

  /* フォント */
  /* -------------------------------------------------- */
  .mainSectionTtl {
    margin-bottom: 20px;
  }

  .contentTxt {
    line-height: 1.7;
  }

  .contentTxt + .contentTxt {
    margin-top: 15px;
    line-height: 1.8;
  }

  /* -------------------------------------------------- */
  /* ヘッダー */
  /* -------------------------------------------------- */
  #headerInner {
    padding: 5px 0;
  }

  #headerWrap {
    column-gap: 10px;
  }

  #headerLogo {
    max-width: 50%;
  }

  #headerNavWrap {
    column-gap: 0;
  }

  /* コンタクトエリア */
  /* -------------------------------------------------- */
  #headerSpContactWrap {
    z-index: 100;
  }

  .spBtn {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: linear-gradient(90deg, #008ccf 0%, #10459c 100%);
    border-radius: 50%;
    vertical-align: middle;
    position: relative;
  }

  .spBtn:not(:last-child) {
    margin-right: 8px;
  }

  .spBtn a {
    display: block;
  }

  .spBtn img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  /* スマホナビゲージョン */
  /* -------------------------------------------------- */
  #spNavInner {
    padding: calc(60px + 10px) 40px 20px;
  }

  .spNavItem a {
    font-size: 1.6rem;
  }

  /* -------------------------------------------------- */
  /* ページトップボタン */
  /* -------------------------------------------------- */
  #pagetop {
    right: 2.5%;
  }

  /* -------------------------------------------------- */
  /* フッター */
  /* -------------------------------------------------- */

  /* コンタクトエリア */
  /* -------------------------------------------------- */
  #footerContactInner {
    padding: 50px 0;
  }

  #footerContactList {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    row-gap: 30px;
  }

  .footerContactItem {
    width: 100%;
  }

  .footerContactTtl {
    margin-bottom: 5px;
  }

  /* フッターエリア */
  /* -------------------------------------------------- */
  #footerInner {
    padding: 40px 0 20px;
  }

  #footerWrap {
    row-gap: 30px;
  }

  #footerLogo {
    margin-bottom: 15px;
  }

  .footerContentWrap {
    width: 100%;
  }

  #footerNavList {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 8px;
    min-width: 100%;
  }

  #footerNavList li {
    border-bottom: 1px solid #ffffff;
  }

  .footerNavItem a {
    font-size: 1.3rem;
    padding: 8px 0 16px 10px;
  }

  #footerLinkList {
    column-gap: 8px;
  }

  /* -------------------------------------------------- */
  /* 新着情報共通 */
  /* -------------------------------------------------- */
  .newsItem a {
    padding: 10px 5px;
  }

  .newsItemTtl {
    display: block;
  }

  .newsItemCat {
    font-size: 1.2rem;
  }

  /* -------------------------------------------------- */
  /* 下層ページ共通 */
  /* -------------------------------------------------- */

  /* ページタイトル */
  /* -------------------------------------------------- */
  #pageTtlInner {
    padding: 30px;
  }

  #pageTtl {
    background-size: 100% auto;
  }

  /* パンくずリスト */
  /* -------------------------------------------------- */
  #breadcrumb {
    margin-bottom: 15px;
  }

  /* セクションタイトル */
  /* -------------------------------------------------- */
  .commonTtl {
    font-size: 2.1rem;
  }

  /* テーブル */
  /* -------------------------------------------------- */
  .commonTable tr {
    border-bottom: 1px solid #e3e3e3;
  }

  .commonTable tr:first-child {
    border-top: 1px solid #e3e3e3;
  }

  .commonTable th,
  .commonTable td {
    display: block;
    width: 100%;
    border: none;
  }

  .commonTable th {
    padding: 10px 5px 5px;
  }

  .commonTable td {
    padding: 0 5px 10px;
  }

  .commonTable tr:first-child th,
  .commonTable tr:first-child td {
    border: none;
  }

  /* -------------------------------------------------- */
  /* 詳細ページ */
  /* -------------------------------------------------- */
  .detailCommonImgBox img {
    width: 100%;
  }
}

@media screen and (max-width: 374px) {
  html {
    font-size: 2.667vw;
  }
}
