@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap");
html {
  scroll-behavior: smooth;
}

#mainContents {
  /* ======================================
    Reset / Base
  ====================================== */
}
#mainContents * {
  box-sizing: border-box;
}
#mainContents html {
  font-size: 18px;
  line-height: 2.3571428571;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
@media (max-width: 800px) {
  #mainContents html {
    font-size: 16px;
  }
}
#mainContents body {
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  min-height: 100%;
  word-wrap: break-word;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  color: #333;
}
#mainContents p,
#mainContents div,
#mainContents h1,
#mainContents h2,
#mainContents h3,
#mainContents h4,
#mainContents h5,
#mainContents ul,
#mainContents li {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font-weight: normal;
  line-height: 1;
}
#mainContents a {
  background-color: transparent;
  text-decoration: none;
}
#mainContents a:active {
  outline-width: 0;
}
#mainContents a:hover {
  outline-width: 0;
  opacity: 0.8;
  transition: 0.3s;
}
#mainContents img,
#mainContents svg,
#mainContents video {
  max-width: 100%;
  vertical-align: top;
}
#mainContents img {
  border-style: none;
  height: auto;
}
#mainContents {
  /* ======================================
    Utility
  ====================================== */
}
#mainContents .pc-only,
#mainContents .pc {
  display: block;
}
#mainContents .sp {
  display: none;
}
#mainContents .italic {
  font-style: italic;
}
#mainContents .orange {
  color: #f47836;
}
#mainContents .font12 {
  font-size: 12px;
}
#mainContents {
  /* ======================================
    Media Queries
  ====================================== */
}
@media (min-width: 768px) and (max-width: 1441px) {
  #mainContents .l-header__inner {
    padding: 14px 10px;
  }
}
@media (max-width: 750px) {
  #mainContents .l-header__inner h1 {
    width: 20.6%;
  }
  #mainContents .l-header__inner .logo__image {
    margin-top: 0;
  }
  #mainContents .l-header {
    height: 45px;
    width: 100%;
    max-width: 100%;
  }
  #mainContents .l-header__inner {
    padding: 4.5px 20px;
    width: 100%;
    max-width: 100%;
    height: 100%;
  }
  #mainContents .l-header__title .logo__image {
    width: auto;
    height: 37.7%;
  }
  #mainContents .l-header__inner .logo {
    width: 100%;
    height: auto;
  }
}
@media (max-width: 500px) {
  #mainContents .pc-only {
    display: none;
  }
  #mainContents .l-header {
    height: 45px;
  }
}
#mainContents .mb15 {
  margin-bottom: 15px;
}
#mainContents .mb25 {
  margin-bottom: 25px;
}

/* ======================================
  Header
====================================== */
#header {
  background-color: #fff !important;
  background-image: linear-gradient(to bottom, #ffffff 0%, #ffffff 100%) !important;
}

.l-header {
  position: fixed;
  display: flex;
  align-items: center;
  top: 0;
  left: 0;
  z-index: 5000;
  width: 100%;
  height: 100px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  transform: translateY(0);
}

.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1370px;
  margin: 0 auto;
  padding: 30px 10px;
}
.l-header__inner .logo {
  display: flex;
  align-self: center;
  position: relative;
  width: 156px;
  height: 31px;
}
.l-header__inner .logo__image {
  display: flex;
  width: 100%;
  height: 100%;
}
.l-header__inner .logo__main {
  display: block;
  width: 354px;
}
.l-header__inner .logo__japan {
  display: block;
  width: 44px;
  margin-top: 10px;
  margin-left: 10px;
}
.l-header__inner .logo__japan img {
  width: 99%;
}

/* Header title */
.l-header__title {
  display: flex;
  align-items: center;
}
.l-header__title dt {
  font-size: 11px;
  color: #000;
}
.l-header__title dd {
  max-width: 300px;
  margin-left: 25px;
}
.l-header__title nav {
  padding-right: 40px;
}
.l-header__title nav ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 19px;
}
@media screen and (max-width: 750px) {
  .l-header__title nav ul {
    gap: 0;
  }
}
.l-header__title nav ul li a {
  font-size: 17px;
  color: rgb(51, 51, 51);
  line-height: 1.2;
  text-align: left;
}
.l-header__title .btn_contact {
  font-size: 16px;
  color: rgb(255, 255, 255);
  line-height: 1.2;
  text-align: center;
  background-color: rgb(0, 0, 0);
  top: 30px;
  width: 120px;
  height: 40px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 750px) {
  .l-header__title .btn_contact {
    width: 90px;
    height: 30px;
    border-radius: 30px;
    font-size: 12px;
    right: 41px;
    top: 0;
    position: relative;
    z-index: 100;
  }
}

/* ======================================
  Footer
====================================== */
@media (max-width: 767px) {
  #footer {
    margin: 0px auto;
    clear: both;
    line-height: 1.3;
  }
  #footerbox {
    padding-left: 0;
    padding-right: 0;
  }
  #footerbox ul {
    background-color: #000000;
    color: #ffffff;
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    margin-left: -15px;
    margin-right: -15px;
  }
  #footerbox ul li {
    width: 50%;
    float: left;
    padding-left: 0;
    padding-right: 0;
    font-size: 13px;
  }
  #footerbox ul li:first-child {
    width: 100%;
  }
  #footerbox ul li span.nolink {
    background-color: #ffffff;
    color: #000000;
    display: block;
    padding: 10px 10px;
    border: 1px solid #ffffff;
  }
  #footerbox ul li a {
    background-color: #000000;
    color: #ffffff;
    display: block;
    padding: 10px 10px;
    border: 1px solid #ffffff;
  }
  #footerbox ul li a:hover {
    color: #d9d9d9;
  }
  #footerbox #footer_identifier {
    padding-top: 10px;
    text-align: center;
  }
  #footerbox #footer_identifier img {
    width: auto;
    height: 15px;
  }
  #footerbox .copyright {
    text-align: center;
    font-size: 13px;
  }
  #footerbox .copyright span.nolink,
  #footerbox .copyright a {
    display: inline-block;
    padding: 10px 0px;
    color: #000000;
  }
}
@media (min-width: 768px) {
  #footer {
    margin: 0px auto;
    clear: both;
    line-height: 1.3;
    background-color: #000000;
  }
  #footer ul {
    color: #ffffff;
    margin-bottom: 0;
  }
  #footer ul a,
  #footer ul span.nolink {
    color: #ffffff;
    display: inline-block;
    padding: 10px 0px;
    font-size: 13px;
  }
  #footer ul a:hover {
    color: #d9d9d9;
  }
  #footer ul li:after {
    content: " |";
    position: relative;
    color: #ffffff;
  }
  #footer ul li:last-child:after {
    content: "";
  }
  #footer .copyright {
    text-align: right;
  }
  #footer .copyright span.nolink,
  #footer .copyright a {
    color: #ffffff;
    display: inline-block;
    padding: 10px 0px;
    font-size: 13px;
  }
}
/* header footer 調整 */
.footer_menu_inner div {
  display: flex;
  align-items: center;
}
.footer_menu_inner div a {
  line-height: 0;
  margin: 0;
}
.footer_menu_inner div img {
  display: inline-block;
}

.footer_menu .footer_menu_inner {
  padding-block: calc(30px + 2.0833333333vw);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  gap: 0;
}

.footer_menu .footer_menu_inner > div:first-child a:first-child {
  padding-right: calc(5px + 2.0833333333vw);
}

.footer_menu .sec_inner {
  width: min(1382px, 100% - 16px) !important;
  max-width: 1382px !important;
  padding-left: 47px !important;
  margin-inline: auto !important;
}

#footer ul li:last-child:after {
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  font-size: 9px;
}

img {
  max-width: 100%;
}

.sec .sec_inner {
  width: min(1140px, 100% - 16px);
  margin-inline: auto;
}/*# sourceMappingURL=style.css.map */

/* ===== ヘッダー修正 ===== */
#gHeader {
  overflow: hidden;
}

#gHeader .row {
  overflow: hidden;
}

#gHeader .sec_inner .row {
  margin-left: 0 !important;
  margin-right: 0 !important;
  float: none !important;
}

#gHeader #logo {
  display: flex !important;
  align-items: center !important;
  overflow: hidden;
  padding-left: 0 !important;
  padding-right: 0 !important;
  float: none !important;
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

#gHeader #identifier {
  flex-shrink: 1;
  min-width: 0;
  overflow: hidden;
}

#gHeader #identifier img {
  max-width: 100%;
  height: auto;
}

#gHeader .sec_inner {
  max-width: 1382px;
  width: 100%;
  padding-left: 47px;
}

/* SP版ヘッダー調整 */
#tos_sp_header .container-fluid {
  padding-left: 25px;
}

#tos_sp_header .navbar-header img {
  width: 132px;
  height: auto;
}

/* SP版フッターロゴ調整 */
@media (max-width: 768px) {
  .footer_menu .sec_inner {
    padding-left: 10px !important;
  }
}
  .footer_menu .footer_menu_inner > div:first-child {
    flex-wrap: wrap;
  }
  .footer_menu .footer_menu_inner > div:first-child a {
    display: block;
  }
}