body {
  font-family: "Helvetica Neue", "Arial", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: 16px;
  line-height: 1.5rem;
  color: #000;
  background-color: #fff;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
}
i {
  padding: 0.5rem;
}
* {
  box-sizing: border-box;
}
hr {
  width: 50%;
}
.bold {
  font-weight: bold;
}
/* webフォント/h2 */
.inter-<uniquifier > {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
}
.header {
  background-color: white;
  width: 100%;
  height: 60px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}
.header__inner {
  padding: 0 10px 0 20px; /*左右の余白確保*/
  display: flex; /*ロゴとハンバーガーメニューを横に並べる*/
  align-items: center;
  justify-content: space-between;
  height: inherit; /*親要素の高さを継承*/
  position: relative;
}
.header__title {
  width: 260px;
}
.header__title img {
  display: block;
  width: 100%;
  height: 100%;
}
/* ヘッダーのナビ部分 */
.header__nav {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  transform: translateX(100%);
  background-color: rgba(255, 255, 255, 0.9); /*ハンバーガーメニュークリック時のナビゲーションメニュー背景色*/
  transition: ease .4s; /*ハンバーガーメニュークリック時のナビゲーションメニュー出現を遅延*/
}
#contact .contact_branch {}
@media screen and (min-width: 801px) {
  .header__nav {
    position: static;
    transform: initial;
    background-color: inherit;
    height: inherit;
    display: flex;
    justify-content: space-around;
    width: auto;
    overflow-y: hidden;
  }
}
/*PC時のナビゲーションメニュー、横並びにする*/
@media screen and (min-width: 801px) {
  .nav__items {
    width: 100%;
    display: flex;
    align-items: center;
    height: initial;
    justify-content: space-between;
  }
}
/* ハンバーガーメニュー */
.header__hamburger {
  width: 48px;
  height: 100%;
}
.hamburger {
  background-color: transparent; /*buttonタグデフォルトスタイルを打ち消し*/
  border-color: transparent; /*buttonタグデフォルトスタイルを打ち消し*/
  z-index: 9999;
}
.menu-item a {
  color: #000000;
  text-decoration: none;
  display: block; /*幅と高さを持ったブロック要素*/
  line-height: 2rem; /*高さ*/
  padding: 0; /*各リスト項目の余白左右8px*/
  position: relative; /* アンダーバーの位置を決めるための基準 */
}
.menu-item a::after {
  position: absolute; /*親要素であるaタグを基準に位置を指定*/
  bottom: 0; /*アンダーバーが位置する、各リストの下端からの高さ*/
  left: 0; /*アンダーバーを各リストの左端に指定*/
  content: ''; /*本来は、擬似要素に入るテキストなどを’’内に指定。今回はアンダーバーなので何も記載しない*/
  width: 35%; /*アンダーバーの幅は各リストの幅*/
  height: 2px; /*アンダーバーの高さ（太さ）*/
  background: #b0191f; /*アンダーバーの色*/
  transform: scale(0, 1); /*アンダーバーの縮尺比率。ホバー前はx方向に0*/
  transform-origin: left top; /*変形（アンダーバーの伸長）の原点を、liの左指定*/
  transition: transform 0.75s; /*変形の時間*/
}
.menu-item a:hover::after {
  transform: scale(1, 1); /*ホバー後、x軸方向に1（相対値）伸長*/
}
/* 子メニュー - .sub-menu */
.sub-menu {
  margin-bottom: 20px;
  margin-left: -10px;
}
nav a {
  color: #000;
  text-decoration: none;
}
nav ul a:hover {
  color: #000;
}
@media screen and (min-width: 801px) {
  /*PC時非表示にする*/
  .hamburger {
    display: none;
  }
  .menu-item a {
    color: #000000;
    text-decoration: none;
    display: block; /*幅と高さを持ったブロック要素*/
    line-height: 60px; /*ヘッダーの高さと同じ60px*/
    padding: 0 0.5em; /*各リスト項目の余白左右8px*/
    position: relative; /* アンダーバーの位置を決めるための基準 */
  }
  .menu-item a::after {
    position: absolute; /*親要素であるaタグを基準に位置を指定*/
    bottom: 10px; /*アンダーバーが位置する、各リストの下端からの高さ*/
    left: 0; /*アンダーバーを各リストの左端に指定*/
    content: ''; /*本来は、擬似要素に入るテキストなどを’’内に指定。今回はアンダーバーなので何も記載しない*/
    width: 100%; /*アンダーバーの幅は各リストの幅*/
    height: 3px; /*アンダーバーの高さ（太さ）*/
    background: #b0191f; /*アンダーバーの色*/
    transform: scale(0, 1); /*アンダーバーの縮尺比率。ホバー前はx方向に0*/
    transform-origin: center top; /*変形（アンダーバーの伸長）の原点を、liの真ん中指定*/
    transition: transform 0.75s; /*変形の時間*/
  }
  .menu-item a:hover::after {
    transform: scale(1, 1); /*ホバー後、x軸方向に1（相対値）伸長*/
  }
  /* 子メニュー - .sub-menu-pc */
  .sub-menu-pc {
    line-height: 50%;
    position: absolute;
    width: 228px;
    background-color: rgba(255, 255, 255, 0.85);
    top: 60px;
    opacity: 0;
    visibility: hidden;
    transition: .5s;
    padding: 0px;
    font-size: 0.9rem;
  }
  .sub-menu-pc a {
    color: #000;
    line-height: 2rem;
    padding: 0 0 0 10px;
    display: block;
  }
  .sub-menu-pc a:hover {
    color: #000;
  }
  /* ホバー＆フォーカスで子メニュー表示 */
  /* Display sub menu by hover & focus */
  .menu-item-has-children:hover ul {
    opacity: 1;
    visibility: visible;
  }
  .menu-item-has-children li a:hover {
    background: #fff;
  }
  .sub-menu-pc a::after {
    position: absolute; /*親要素であるaタグを基準に位置を指定*/
    bottom: 0px; /*アンダーバーが位置する、各リストの下端からの高さ*/
    left: 0; /*アンダーバーを各リストの左端に指定*/
    content: ''; /*本来は、擬似要素に入るテキストなどを’’内に指定。今回はアンダーバーなので何も記載しない*/
    width: 100%; /*アンダーバーの幅は各リストの幅*/
    height: 2px; /*アンダーバーの高さ（太さ）*/
    background: #b0191f; /*アンダーバーの色*/
    transform: scale(0, 1); /*アンダーバーの縮尺比率。ホバー前はx方向に0*/
    transform-origin: left top; /*変形（アンダーバーの伸長）の原点を、liの真ん中指定*/
    transition: transform 0.75s; /*変形の時間*/
  }
  .sub-menu-pc a:hover::after {
    transform: scale(1, 1); /*ホバー後、x軸方向に1（相対値）伸長*/
  }
}
/* ハンバーガーメニューの線 */
.hamburger span {
  width: 100%;
  height: 2px;
  background-color: #000;
  position: relative;
  transition: ease .4s; /*ハンバーガーメニュークリック時の三本線の動きを遅延*/
  display: block;
}
.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  margin: 8px 0;
}
.hamburger span:nth-child(3) {
  top: 0;
}
/* ハンバーガーメニュークリック後のスタイル */
.header__nav.active {
  transform: translateX(0);
}
.hamburger.active span:nth-child(1) {
  top: 5px;
  transform: rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  top: -13px;
  transform: rotate(-45deg);
}
.nav-items {
  padding-top: 50px;
  padding-bottom: 200px;
}
@media screen and (min-width: 801px) {
  .nav-items {
    padding-top: inherit;
    padding-bottom: inherit;
    padding-left: 0;
  }
}
/* ナビのリンク */
.nav-items__item a {
  color: black;
  width: 100%;
  display: block;
  text-align: left;
  margin-bottom: 10px;
}
/*ナビのお問い合わせボタン*/
.btn, a.btn, button.btn {
  width: 150px;
  line-height: 2.0rem;
  padding: 0 0.5rem;
  margin-top: 0.3rem;
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  color: #fff;
  border-radius: 5rem;
}
.btn-menu, a.btn-menu {
  color: #fff;
  background-color: #b0191f;
}
.btn-menu:hover, a.btn-menu:hover {
  color: #fff;
  background-color: #2c338f;
  opacity: 0.8;
}
a.btn--radius {
  border-radius: 50vh;
}
@media screen and (min-width: 801px) {
  .nav-items__item:last-child a {
    margin-bottom: 0;
  }
  /*ナビのお問い合わせボタン*/
  .btn, a.btn, button.btn {
    width: 130px;
    line-height: 2.0rem;
    margin-left: 1.0rem;
    margin-top: -0.7rem;
    position: relative;
    display: inline-block;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    color: #fff;
    border-radius: 5rem;
  }
  .btn-menu, a.btn-menu {
    color: #fff;
    background-color: #b0191f;
  }
  .btn-menu:hover, a.btn-menu:hover {
    color: #fff;
    background-color: #2c338f;
    opacity: 0.8;
  }
  a.btn--radius {
    border-radius: 50vh;
  }
}
main {
  margin: 0 auto;
  padding-top: 60px;
  text-align: center;
}
/* section logo ロゴの説明　 */
.eyecatch {
  margin-right: auto;
  margin-left: auto;
  margin-top: 50px;
  text-align: center;
}
.selif {
  margin: 0 auto;
  padding: 1rem;
  font-family: serif;
  font-size: 1.1rem;
  max-width: 800px;
}
.selif p {
  margin: 0.5em 0;
}
/* section about us */
.explanation {
  margin: 1rem auto;
  padding: 1rem;
  font-size: 1.3rem;
  line-height: 2.5rem;
  max-width: 600px;
  text-align: left;
}
.color_red {
  color: #b0191f;
  font-weight: bolder;
}
.color_gray {
  color: #5a666a;
  font-weight: bolder;
}
.line_break {
  display: inline-block; /* 改行の調整 */
}
#about_us img {
  max-width: 520px;
  padding: 0 10px;
  margin-top: 10px;
  margin-bottom: 20px;
}
h2 {
  margin: 80px auto 50px;
  padding: 0.9em 0 0.5rem 0; /*上下の余白*/
  border-top: solid 4px #000; /*上線*/
  border-bottom: solid 4px #000; /*下線*/
  font-size: 1rem;
  font-weight: normal;
}
.title-en {
  font-size: 2rem;
  font-family: "Inter", sans-serif;
  font-weight: 900;
  letter-spacing: 0.1rem;
}
@media screen and (min-width: 801px) {
  .title-en {
    font-family: "Arial Black", "Inter", sans-serif;
    letter-spacing: 0;
  }
}
h3 {
  font-size: 1.5rem;
  border-bottom: solid 2px #b0191f;
  position: relative;
  text-align: left;
  padding: 0 0 0.3rem 0.3rem;
  max-width: 400px;
}
h3:after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 2px #2c338f;
  left: -0.3rem;
  bottom: -2px;
  width: 20%;
}
.title-en_h3 {
  font-family: "Inter", sans-serif;
  font-weight: 900;
}
.title-ja_small {
  font-size: 0.9rem;
  font-weight: normal;
  margin-left: 1rem;
}
/* 営業品目 */
.business-items {
  text-align: left;
  padding: 1rem;
}
@media screen and (min-width: 801px) {
  .business-items {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
  }
  .business-items_img_list {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
  }
  .business-items_1 {
    margin-right: 20px;
    max-width: 500px;
    min-width: 350px;
    flex-shrink: 2;
    padding: 1.5em;
  }
  .business-items_2 {
    max-width: 600px;
    margin-top: -1rem;
    padding: 1em;
  }
  .business-items_3, .business-items_4 {
    margin-top: 2rem;
    margin-left: 1.5rem;
  }
  div.our_website {
    width: 1200px;
  }
}
@media screen and (max-width: 400px) {
  .text_small {
    font-size: 0.9rem;
  }
}
.business-items_list {
  display: flex;
  flex-wrap: wrap;
  margin-left: -2rem;
}
.business-items_list li {
  padding-left: 0.8rem; /*アイコン分のスペース*/
  margin-right: 0.3rem;
  margin-bottom: 0.5rem;
}
/* 価格表へのリンク */
.price-list {
  padding: 0.4rem 2.5rem 0.4rem 1.0rem;
  margin-right: 1rem;
  background-color: #2C338F;
  color: #FFFFFF;
  margin-bottom: 1rem;
  display: inline-block;
  position: relative;
  border-radius: 5px;
}
.price-list:after {
  font-family: "Font Awesome 6 Free";
  content: "\f101"; /*アイコンのユニコード*/
  font-weight: 900;
  position: absolute; /*絶対位置*/
  font-size: 1rem; /*サイズ*/
  top: 0.4rem; /*アイコンの位置*/
  right: 1rem;
  color: #fff; /*アイコン色*/
}
/* ウェブサイトへのリンク集 */
div.our_website {
  margin: 0 0.5rem;
}
.our_website a {
  color: #000;
}
.our_website_list-item {
  border-bottom: 1px solid #7A7878;
  padding: 1rem 0.5rem;
  position: relative;
}
.our_website_list-item a:hover {
  color: #b0191f;
}
.our_website_list {
  margin-left: -3.5rem;
}
.our_website_list-item-url {
  font-size: 0.9rem;
  position: relative;
  margin-left: 1rem;
  word-break: break-all;
}
.our_website_list-item-url::before {
  font-family: "Font Awesome 6 Free";
  content: "\f0da"; /*アイコンのユニコード*/
  font-weight: 900;
  position: absolute; /*絶対位置*/
  font-size: 1rem; /*サイズ*/
  color: #000; /*アイコン色*/
  padding: 0 0.3rem;
  left: -1rem;
}
h5 {
  margin-top: -10px;
  position: relative;
  display: inline-block;
  padding: 0 2rem;
  font-size: 1.1rem;
  font-weight: normal;
}
h5:before, h5:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 30px;
  height: 2px;
  background-color: black;
  -webkit-transform: rotate(-60deg);
  transform: rotate(-60deg);
}
h5:before {
  left: 0;
}
h5:after {
  right: 0;
}
/* 会社概要 */
.company_profile {
  padding: 0 1rem;
  margin-top: 50px;
}
.company_profile_item dl {
  width: 90%;
  margin: 0 auto;
  text-align: left;
  margin-bottom: 5rem;
}
.company_profile_item dt {
  width: 100%;
  margin: 0;
  border-bottom: 2px solid #ccc;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.2rem;
  padding: 0 0 0.3rem 0.3rem;
  vertical-align: middle;
  align-items: center;
  position: relative;
  text-align: left;
}
.company_profile_item dt:after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 2px #2c338f;
  left: -0.3rem;
  bottom: -2px;
  width: 35%;
}
.company_profile_item dd {
  margin: 0;
  padding: 0.5rem 1rem 1rem 0.5rem;
  vertical-align: middle;
  line-height: 2.7rem;
  line-height: 1.8;
  text-align: left;
}
.invoice dl {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
  margin-bottom: 5rem;
}
.invoice dt {
  width: 100%;
  margin: 0;
  border-bottom: 2px solid #ccc;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.2rem;
  padding: 0 0 0.3rem 0.3rem;
  vertical-align: middle;
  align-items: center;
  position: relative;
  text-align: left;
}
.invoice dt:after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 2px #2c338f;
  left: -0.3rem;
  bottom: -2px;
  width: 35%;
}
.invoice dd {
  margin: 0;
  padding: 0.5rem 1rem 1rem 0.5rem;
  vertical-align: middle;
  line-height: 2.7rem;
  line-height: 1.8;
  text-align: left;
}
@media screen and (min-width: 801px) {
  .company_profile_item {
    display: flex;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
  }
  .company_profile_item dt {
    width: 20%;
    margin: 0;
    border-bottom: 2px solid #2c338f;
    font-size: 1rem;
    font-weight: bold;
    line-height: 1.2rem;
    padding: 1.2em 1em 1em 0;
    vertical-align: middle;
    align-items: center;
  }
  .company_profile_item dd {
    width: 80%;
    margin: 0;
    padding: 1em;
    border-bottom: 2px solid #ccc;
    vertical-align: middle;
    line-height: 2.7rem;
    line-height: 1.8;
  }
  .invoice {
    display: flex;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
  }
  .invoice dt {
    width: 32%;
    margin: 0;
    border-bottom: 2px solid #2c338f;
    font-size: 1rem;
    font-weight: bold;
    line-height: 1.2rem;
    padding: 1.2em 1em 1em 0;
    vertical-align: middle;
    align-items: center;
  }
  .invoice dd {
    width: 68%;
    margin: 0;
    padding: 1em 1em 1em 0;
    border-bottom: 2px solid #ccc;
    vertical-align: middle;
    line-height: 2.7rem;
    line-height: 1.8;
  }
}
/* 取引先リスト */
.customer_list {
  display: flex;
  flex-wrap: wrap;
  margin-left: -2.5rem;
}
.customer_list li {
  position: relative;
  padding-left: 0.9rem; /*アイコン分のスペース*/
  margin-right: 1.0rem;
  margin-bottom: 0.5rem;
}
.customer_list li:before {
  font-family: "Font Awesome 6 Free";
  content: "\f111"; /*アイコンのユニコード*/
  font-weight: 900;
  position: absolute; /*絶対位置*/
  font-size: 0.4rem; /*サイズ*/
  left: 0; /*アイコンの位置*/
  top: 0.5rem; /*アイコンの位置*/
  color: #b3b3b3; /*アイコン色*/
}
/* 取引銀行リスト */
.bank_list {
  display: flex;
  flex-wrap: wrap;
  margin-left: -2.5rem;
}
.bank_list li {
  position: relative;
  padding-left: 0.9rem; /*アイコン分のスペース*/
  margin-right: 1.0rem;
  margin-bottom: 0.5rem;
}
.bank_list li:before {
  font-family: "Font Awesome 6 Free";
  content: "\f111"; /*アイコンのユニコード*/
  font-weight: 900;
  position: absolute; /*絶対位置*/
  font-size: 0.4rem; /*サイズ*/
  left: 0; /*アイコンの位置*/
  top: 0.5rem; /*アイコンの位置*/
  color: #b3b3b3; /*アイコン色*/
}
/* アクセス */
.accsess {
  text-align: left;
  margin-top: 6rem;
}
.accsess_title {
  margin: 0 0 30px;
  border-bottom: 2px solid #ccc;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.2rem;
  padding: 0 0 0.3rem 0.3rem;
  vertical-align: middle;
  align-items: center;
  position: relative;
  text-align: left;
}
.accsess_title:after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 2px #2c338f;
  left: -0.3rem;
  bottom: -2px;
  width: 200px;
}
.accsess-en {
  font-family: "Inter", sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: 0.05rem;
  margin-right: 0.5rem;
}
/* Google Map */
.googlemap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  /* 16:9のアスペクト比 */
  height: 0;
}
.googlemap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.subway {
  margin-left: -2.5rem;
}
.subway_line {
  margin-left: -0.5rem;
}
.accsess_map {
  margin-bottom: 2rem;
}
@media screen and (min-width: 801px) {
  .accsess {
    margin: 10rem auto 0;
    max-width: 800px;
  }
  .accsess_map_wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .accsess_map {
    width: 400px;
    padding: 0 1rem;
  }
}
/* CONTACT　お問い合わせ */
/* お問い合わせボタン */
.contact_btn_wrap {
  max-width: 500px;
  margin: 60px auto;
  padding: 1rem;
}
.contact_btn {
  display: inline-block;
  width: 100%;
  padding: 0.5rem;
  border-radius: 1rem;
  text-decoration: none;
  font-size: 1.5rem;
  color: #FFF;
  background-color: #B0191F;
  transition: .4s;
  box-shadow: 4px 4px 5px 0 rgb(0, 0, 0, 0.5);
}
.contact_btn:hover {
  background-color: #2c338f;
  opacity: 0.8;
}
.contact_btn i {
  margin-left: 1rem;
}
/*　大阪・東京の連絡先　*/
.contact_branch {
  margin: 0 auto 25px;
  max-width: 1000px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.contact_branch-item {
  width: 360px;
  padding: 0 1rem;
  margin-bottom: 50px;
}
h4 {
  font-size: 1.3rem;
  border-bottom: solid 6px #b0191f;
  position: relative;
  padding: 0 0 0.3rem 0.3rem;
  max-width: 400px;
}
h4:after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 6px #2c338f;
  left: -0.3rem;
  bottom: -6px;
  width: 20%;
}
.contact_tel {
  font-size: 2.0rem;
  font-family: "Inter", sans-serif;
  font-weight: 900;
  letter-spacing: 0.1rem;
}
.contact_tel a {
  color: #000;
}
@media(min-width: 800px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
.contact_fax {
  font-size: 1.5rem;
  font-family: "Inter", sans-serif;
  font-weight: 900;
}
#whatsnew {
  margin-bottom: 100px;
}
#whatsnew div {
  padding: 0 1rem;
}
/* ページ内リンクのジャンプ位置調整 */
section, #our_website::before {
  content: '';
  display: block;
  padding-top: 70px;
  margin-top: -70px;
}
/* フッター */
footer {
  color: #fff;
  background-color: #353d41;
  padding: 0.5rem 0;
}
footer a {
  color: #fff;
}
footer a:hover {
  color: #b0191f;
}
.footer_wrap {
  max-width: 980px;
  margin: 0 auto;
  padding: 1rem;
}
.footer_item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-left: 1rem;
}
.footer_item-left, .footer_item-center, .footer_item-right {
  max-width: 300px;
  text-align: left;
  margin: 0 1rem 1rem;
}
/* フッター左 */
.sns {
  color: #fff;
  font-size: 2rem;
}
.sns i {
  margin-right: 1rem;
}
.sns a {
  color: #fff;
}
.footer_item-left ul {
  margin-left: -2rem;
}
/*　フッター中央　*/
.footer_item-center img {
  margin: 0.5rem auto;
}
.footer_item-center img:hover {
  opacity: 0.7;
}
.footer_item-center p {
  margin: -0.8rem 0 0.5rem;
}
/* フッター右 */
.footer_item-right p {
  padding: 0 0.5rem;
  margin-bottom: -0.3rem;
  background-color: #fff;
  color: #353d41;
}
.footer_item-right li {
  padding: 0 1.5rem;
  margin-left: -2rem;
  color: #FFFFFF;
  margin-bottom: 0.3rem;
  position: relative;
  font-size: 0.75rem;
}
.footer_item-right li:after {
  font-family: "Font Awesome 6 Free";
  content: "\f101"; /*アイコンのユニコード*/
  font-weight: 900;
  position: absolute; /*絶対位置*/
  font-size: 0.75rem; /*サイズ*/
  top: 0; /*アイコンの位置*/
  left: 0;
  color: #fff; /*アイコン色*/
}
.copyright {
  text-align: center;
}
#whatsnew img {
  width: 80%;
  max-width: 750px;
}