@charset "UTF-8";
:root {
  --base: #000;
  --gray1: #7A8182;
  --gray2: #F0F4F5;
  --gray3: #F0F4F4;
  --gray4: #494949;
  --gray5: #E5EBEB;
  --gray6: #D6D6D6;
  --gray7: #707070;
  --gray8: #C4C4C4;
  --gray9: #E1E1E1;
  --gray10: #ABABAB;
  --green1: #229F91;
  --green2: #56C69E;
  --green3: #F0F4F5;
  --green4: #098374;
  --green5: #F0F4F4;
  --red1: #FF0000;
  --red2: #F76E5C;
  --blue: #0377CA;
}

@media only screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}
.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  background: #fff;
  z-index: 99;
}
.header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 768px) {
  .header-inner {
    display: block;
  }
}
.header-nav_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.6rem;
  font-weight: bold;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 1rem;
}
.header-nav_list-child {
  /*PCのプルダウン*/
}
.header-nav_list-child.--submenu {
  position: absolute; /* 親要素に対して絶対位置 */
  top: 100%; /* 親要素の下に配置 */
  left: 0;
  background-color: #fff; /* 背景色 */
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* 影を追加 */
  list-style: none; /* リストの点を削除 */
  padding: 0;
  margin: 0;
  min-width: 33.5rem; /* メニューの幅 */
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  pointer-events: none;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .header-nav_list {
    padding-top: 0;
    display: none;
    text-align: left;
    position: fixed;
    top: 6rem;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 0.1rem solid #6A6A6A;
    height: calc(100vh - 6rem);
    overflow: scroll;
  }
  .header-nav_list-child {
    display: none;
    padding-left: 4rem;
    border-bottom: 0.1rem solid #000;
  }
}
.header-nav_item {
  position: relative;
}
.header-nav_item + .header-nav_item {
  margin-left: 2rem;
}
@media only screen and (max-width: 768px) {
  .header-nav_item + .header-nav_item {
    margin-left: 0;
  }
}
.header-nav_item:hover .header-nav_list-child {
  opacity: 1;
  pointer-events: unset;
}
.header-nav_link {
  color: #000;
  position: relative;
  display: inline-block;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media only screen and (min-width: 769px) {
  .header-nav_link:after {
    content: "";
    width: 100%;
    height: 0.4rem;
    background: #DB0100;
    position: absolute;
    left: 0;
    bottom: 1.5rem;
    display: block;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    opacity: 0;
  }
  .header-nav_link:hover:after {
    opacity: 1;
    bottom: 1rem;
  }
}
.header-nav_link-child {
  display: block;
  padding: 2rem 1em;
  border-bottom: 0.1rem solid #CCCCCC;
  color: #000;
  position: relative;
}
.header-nav_link-child:hover {
  background: #FCE5E5;
}
.header-nav_link-child:after {
  content: "";
  width: 0.9rem;
  height: 0.9rem;
  rotate: -45deg;
  display: block;
  border-right: 0.1rem solid #000;
  border-bottom: 0.1rem solid #000;
  position: absolute;
  right: 4rem;
  top: calc(50% - 0.5rem);
}
@media only screen and (max-width: 768px) {
  .header-nav_link {
    display: block;
    padding: 1.8rem 4rem;
    border-bottom: 0.1rem solid #000;
    position: relative;
  }
  .header-nav_link:after {
    content: "";
    width: 0.9rem;
    height: 0.9rem;
    rotate: -45deg;
    display: block;
    border-right: 0.1rem solid #000;
    border-bottom: 0.1rem solid #000;
    position: absolute;
    right: 4rem;
    top: calc(50% - 0.5rem);
  }
  .header-nav_link.--pulldown:before {
    content: "";
    width: 1.4rem;
    height: 1.4rem;
    rotate: 90deg;
    display: block;
    border-right: 0.1rem solid #000;
    border-bottom: none;
    position: absolute;
    right: 3.3rem;
    top: calc(50% - 1.4rem);
  }
  .header-nav_link.--pulldown:after {
    content: "";
    width: 1.4rem;
    height: 1.4rem;
    rotate: 0deg;
    display: block;
    border-right: 0.1rem solid #000;
    border-bottom: none;
    position: absolute;
    right: 4rem;
    top: calc(50% - 0.7rem);
  }
  .header-nav_link.--pulldown.active {
    background: rgba(219, 1, 0, 0.1);
  }
  .header-nav_link.--pulldown.active:after {
    content: none;
  }
}
.header-logo {
  width: 30rem;
  padding: 2.3rem 0 1.6rem;
}
@media only screen and (max-width: 768px) {
  .header-logo {
    width: 21rem;
    padding: 1.2rem 0;
  }
}

.menu-trigger {
  width: 5.8rem;
  height: 5.8rem;
  position: absolute;
  right: 0;
  top: 0;
}
.menu-trigger.active span:first-child {
  rotate: 45deg;
  top: 50%;
}
.menu-trigger.active span:nth-child(2) {
  rotate: -45deg;
}
.menu-trigger.active span:last-child {
  display: none;
}
.menu-trigger span {
  position: absolute;
  width: 40%;
  display: block;
  border-bottom: 0.2rem solid #000;
  left: 30%;
}
.menu-trigger span:first-child {
  top: calc(50% - 0.7rem);
}
.menu-trigger span:nth-child(2) {
  top: 50%;
}
.menu-trigger span:last-child {
  top: calc(50% + 0.7rem);
}

.l-content-width {
  max-width: 100%;
  width: 140rem;
  padding: 0 10rem;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  .l-content-width {
    width: 100%;
    padding: 0 2rem;
  }
}

.l-breadcrumb {
  background: #F8F8F8;
  font-size: 1.3rem;
  padding: 0.3rem 0;
}
.l-breadcrumb_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.l-breadcrumb_item {
  color: #6A6A6A;
}
.l-breadcrumb_item:after {
  content: ">";
  display: inline-block;
  margin: 0 0.5rem;
}
.l-breadcrumb_item:last-child:after {
  content: "";
}
.l-breadcrumb_link {
  color: #6A6A6A;
}

.l-hero {
  width: 100%;
  height: 22rem;
  margin-top: 11.5rem;
}
@media only screen and (max-width: 768px) {
  .l-hero {
    height: 12rem;
    margin-top: 7.5rem;
  }
}
.l-hero img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.l-pageheader {
  background: #fff;
  position: relative;
  max-width: 100rem;
  margin: 0 auto 12rem;
  -webkit-transform: translateY(-5rem);
          transform: translateY(-5rem);
  padding-top: 5rem;
}
@media only screen and (max-width: 768px) {
  .l-pageheader {
    margin-top: 0;
    margin-bottom: 7rem;
    padding: 5rem 2rem 0;
    -webkit-transform: translateY(0rem);
            transform: translateY(0rem);
  }
}
.l-pageheader_title {
  font-size: 2.8rem;
}
@media only screen and (max-width: 768px) {
  .l-pageheader_title {
    font-size: 2.4rem;
  }
}
.l-pageheader_title-eng {
  font-size: 2rem;
  color: #DB0100;
  font-weight: bold;
}
.l-pageheader_lead {
  max-width: 78.8rem;
  margin: 2rem auto 0;
  line-height: 2;
  word-break: break-all;
  text-align: left;
  font-size: 1.6rem;
}

.footer {
  background: #FDF2F2;
  padding-top: 3.6rem;
  margin-top: 12rem;
}
@media only screen and (max-width: 768px) {
  .footer {
    margin-top: 6rem;
  }
}
.footer._top {
  margin-top: 0;
}
.footer-logo {
  width: 30rem;
  margin-bottom: 2.8rem;
}
@media only screen and (max-width: 768px) {
  .footer-logo {
    margin: 0 auto;
  }
}
.footer-sitemap {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 4.3rem 1fr 4.3rem 1fr 4.3rem 1fr 4.3rem 1fr;
  grid-template-columns: repeat(5, 1fr);
  gap: 4.3rem;
  text-align: left;
  padding-bottom: 6rem;
}
.footer-sitemap_list-child {
  margin-top: 2rem;
  font-size: 1.6rem;
  font-weight: bold;
}
.footer-sitemap_list-child_link {
  color: #000;
  margin-bottom: 1rem;
  display: block;
}
.footer-sitemap_list-child_link:hover {
  opacity: 0.6;
}
.footer-sitemap_btn {
  display: block;
  text-align: center;
  border: 0.1rem solid #DB0100;
  font-size: 1.6rem;
  color: #000;
  font-weight: bold;
  padding: 1rem 1.3rem;
  background: #fff;
  position: relative;
}
.footer-sitemap_btn + .footer-sitemap_btn {
  margin-top: 2.2rem;
}
.footer-sitemap_btn:hover {
  opacity: 0.6;
}
.footer-sitemap_btn:after {
  content: "";
  display: block;
  width: 0.7rem;
  height: 0.7rem;
  border-right: 0.1rem solid #DB0100;
  border-bottom: 0.1rem solid #DB0100;
  rotate: -45deg;
  position: absolute;
  right: 1.3rem;
  top: calc(50% - 0.35rem);
}
.footer-copyright {
  font-size: 1.6rem;
  padding: 2rem 0 3rem;
  font-weight: bold;
  background: #fff;
}
@media only screen and (max-width: 768px) {
  .footer-copyright {
    background: none;
  }
}

.u-back-btn {
  text-align: center;
  margin-top: 5rem;
}
@media only screen and (max-width: 768px) {
  .u-back-btn {
    padding: 0 2rem;
  }
}
.u-back-btn_link {
  background: #EFEFEF;
  font-size: 1.6rem;
  font-weight: bold;
  padding: 1.8rem 5rem;
  min-width: 27.3rem;
  color: #000;
  border: 0.1rem solid #000;
  display: inline-block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
}
.u-back-btn_link:hover {
  background: #DB0100;
  color: #fff;
}
.u-back-btn_link:hover:after {
  border-color: #fff;
}
.u-back-btn_link:after {
  content: "";
  width: 1rem;
  height: 1rem;
  display: block;
  position: absolute;
  right: 2rem;
  top: calc(50% - 0.6rem);
  rotate: -45deg;
  border-right: 0.1rem solid #000;
  border-bottom: 0.1rem solid #000;
}