@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200&icon_names=link");
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 2rem 1.2rem 2rem;
  background: #fff;
  z-index: 99;
}
#header .logo {
  width: min(22rem, 220px);
  margin: 0;
  margin: 0;
  padding: 0;
  line-height: 1;
}
#header #menu {
  overflow: hidden;
  position: fixed;
  left: 100%;
  top: var(--header-height);
  width: 100%;
  height: 100vh;
  background: #434343;
  overflow-y: auto;
  padding-bottom: 150px;
  -webkit-transition: all 0.4s 0s ease;
  transition: all 0.4s 0s ease;
}
#header #menu .globalNav {
  display: block;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
#header #menu .globalNav li {
  position: relative;
  border-top: 1px solid #696969;
  margin: 0;
  padding: 0;
  line-height: 1;
}
.is-menuOpen #header #menu {
  left: 0;
}
#header #menu a {
  display: inline-block;
  padding: 1.5rem 3rem 1.5rem 2rem;
  color: #fff;
}
#header #menu .search {
  padding: 2rem;
  border-top: 1px solid #696969;
}
#header #menu .search .search-icon {
  display: none;
}
#header #menu .search .search-box .search-form {
  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;
  background-color: #fff;
  border-radius: 0.3rem;
  padding: 0.7rem;
}
#header #menu .search .search-box .search-form input[type=search] {
  border: none;
  outline: none;
  font-size: 2rem;
  background-color: #fff;
  width: 100%;
}
#header #menu .search .search-box .search-form input[type=search]::-webkit-input-placeholder {
  color: #CCC;
  font-size: 1.6rem;
}
#header #menu .search .search-box .search-form input[type=search]::-moz-placeholder {
  color: #CCC;
  font-size: 1.6rem;
}
#header #menu .search .search-box .search-form input[type=search]:-ms-input-placeholder {
  color: #CCC;
  font-size: 1.6rem;
}
#header #menu .search .search-box .search-form input[type=search]::-ms-input-placeholder {
  color: #CCC;
  font-size: 1.6rem;
}
#header #menu .search .search-box .search-form input[type=search]::placeholder {
  color: #CCC;
  font-size: 1.6rem;
}
#header #menu .search .search-box .search-form button {
  display: block;
  border: 1px solid #f00;
  width: 2rem;
  height: 2rem;
  border: none;
  outline: none;
  margin-left: 1rem;
  background-color: #434343;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  mask-image: url("../images/icon-search.svg");
  /* Safari対応 */
  -webkit-mask-image: url("../images/icon-search.svg");
}
#header .subNavBtn {
  display: inline-block;
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  width: 16px;
  height: 16px;
}
#header .subNavBtn:before {
  position: absolute;
  content: "";
  top: 50%;
  width: 100%;
  height: 0;
  border-top: 1px solid #fff;
}
#header .subNavBtn:after {
  position: absolute;
  content: "";
  top: 0;
  left: calc(50% - 1px);
  width: 0;
  height: 100%;
  border-right: 1px solid #fff;
}
#header .subNavBtn.is-active:after {
  display: none;
}
#header .subNav {
  height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0 0 0 2rem;
  list-style: none;
  -webkit-transition: height 0.4s 0s ease;
  transition: height 0.4s 0s ease;
}
#header .subNav li {
  padding-left: 1.5em;
}
#header .subNav-service {
  display: block;
}
#header .subNavBtn.is-active + .subNav {
  height: auto;
}

#toggle-icon {
  position: fixed;
  top: 2rem;
  right: 2rem;
  width: 40px;
  height: 26px;
  -webkit-transition: all 0.4s 0s ease;
  transition: all 0.4s 0s ease;
  cursor: pointer;
  pointer-events: all;
  z-index: 1;
}
#toggle-icon span {
  position: absolute;
  display: block;
  left: 0;
  width: 40px;
  height: 2px;
  border-radius: 1px;
  background-color: #434343;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
#toggle-icon span:nth-child(1) {
  top: 0;
}
#toggle-icon span:nth-child(2) {
  bottom: 0;
}
#toggle-icon span:nth-child(3) {
  top: 12px;
}
#toggle-icon.is-active span:nth-child(1) {
  -webkit-transform: translateY(12px) rotate(135deg);
          transform: translateY(12px) rotate(135deg);
}
#toggle-icon.is-active span:nth-child(2) {
  -webkit-transform: translateY(-12px) rotate(-135deg);
          transform: translateY(-12px) rotate(-135deg);
}
#toggle-icon.is-active span:nth-child(3) {
  width: 0;
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
}

@media screen and (min-width: 769px) {
  #header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    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;
    gap: 2rem;
    padding: 1.5rem 4rem;
    background-color: #fff;
  }
  #header .logo {
    width: 26rem;
    margin: 0;
    padding: 0;
    line-height: 1;
  }
  #header #menu {
    overflow: visible;
    position: relative;
    left: auto;
    top: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: auto;
    background: none;
    padding: 0;
  }
  #header #menu .globalNav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1400px) {
  #header #menu .globalNav {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1250px) {
  #header #menu .globalNav {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1160px) {
  #header #menu .globalNav {
    font-size: 1rem;
  }
}
@media screen and (min-width: 769px) {
  #header #menu .globalNav li {
    position: relative;
    border: none;
    margin: 0;
    padding: 0;
    line-height: 1;
    -ms-flex-line-pack: center;
        align-content: center;
    text-align: center;
  }
  #header #menu .globalNav li > a {
    padding: 2rem 1.6rem;
    margin: 0;
    color: #434343;
  }
  #header #menu .globalNav li .subNav {
    position: absolute;
    top: 4.5rem;
    left: -1rem;
    opacity: 0;
    pointer-events: none;
    list-style-type: none;
    padding: 3rem;
    height: auto;
    background: #434343;
    border-radius: 1rem;
    -webkit-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2);
            box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2);
    -webkit-transition: all 0.4s 0s ease;
    transition: all 0.4s 0s ease;
  }
  #header #menu .globalNav li .subNav li {
    margin: 0;
    padding: 0;
    text-align: left;
  }
  #header #menu .globalNav li .subNav li a {
    display: block;
    padding: 1rem;
    white-space: nowrap;
    color: #fff;
  }
  #header #menu .globalNav li .subNav li a:hover {
    color: #CCC;
  }
  #header #menu .globalNav li .subNav-col {
    padding-left: 0;
  }
  #header #menu .globalNav li .subNav-service {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 3rem;
  }
  #header #menu .globalNav li:hover > a {
    color: #8691A3;
  }
  #header #menu .globalNav li:hover .subNav {
    opacity: 1;
    pointer-events: all;
  }
  #header #menu .search {
    position: relative;
    line-height: 1;
    padding: 0;
    border: none;
  }
  #header #menu .search .search-icon {
    display: block;
    cursor: pointer;
    width: 4rem;
    height: 3.5rem;
    background-color: #434343;
    -webkit-mask-size: 60%;
            mask-size: 60%;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-position: right center;
            mask-position: right center;
    mask-image: url("../images/icon-search.svg");
    /* Safari対応 */
    -webkit-mask-image: url("../images/icon-search.svg");
  }
  #header #menu .search:hover .search-icon {
    background-color: #CCC;
  }
  #header #menu .search .search-box {
    position: absolute;
    top: 3.5rem;
    right: -2rem;
    opacity: 0;
    pointer-events: none;
    list-style-type: none;
    padding: 2rem;
    height: auto;
    background: #434343;
    border-radius: 1rem;
    -webkit-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2);
            box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2);
    -webkit-transition: all 0.4s 0s ease;
    transition: all 0.4s 0s ease;
  }
  #header #menu .search .search-box .search-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: #fff;
    border-radius: 0.3rem;
    padding: 0 0.7rem;
  }
  #header #menu .search .search-box .search-form input[type=search] {
    border: none;
    outline: none;
    margin: 0.4rem 0;
    padding: 0;
    font-size: 2rem;
    width: 16rem;
    -moz-appearance: none;
         appearance: none;
    -webkit-appearance: none;
  }
  #header #menu .search .search-box .search-form input[type=search]::-webkit-input-placeholder {
    color: #CCC;
    font-size: 1.6rem;
  }
  #header #menu .search .search-box .search-form input[type=search]::-moz-placeholder {
    color: #CCC;
    font-size: 1.6rem;
  }
  #header #menu .search .search-box .search-form input[type=search]:-ms-input-placeholder {
    color: #CCC;
    font-size: 1.6rem;
  }
  #header #menu .search .search-box .search-form input[type=search]::-ms-input-placeholder {
    color: #CCC;
    font-size: 1.6rem;
  }
  #header #menu .search .search-box .search-form input[type=search]::placeholder {
    color: #CCC;
    font-size: 1.6rem;
  }
  #header #menu .search .search-box .search-form input[type=search]::-webkit-search-cancel-button {
    -webkit-appearance: none;
  }
  #header #menu .search .search-box .search-form button {
    display: none;
  }
  #header #menu .search:hover .search-box {
    opacity: 1;
    pointer-events: all;
  }
  #header .subNavBtn {
    display: none;
  }
  #header #toggle-icon {
    display: none;
  }
}
.footer {
  padding: 4rem 0 6rem 0;
  background-color: #fff;
}
.footer .breadcrumbs {
  list-style-type: none;
  margin-bottom: 3rem;
  padding: 0 0 2rem 0;
  border-bottom: 1px solid #CCC;
  font-size: 1.4rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .footer .breadcrumbs {
    display: none;
  }
}
.footer .breadcrumbs .breadcrumbs__item {
  display: inline-block;
}
.footer .breadcrumbs .breadcrumbs__item a {
  display: inline-block;
  padding-right: 1rem;
  margin-right: 1rem;
  position: relative;
  color: #434343;
}
.footer .breadcrumbs .breadcrumbs__item a::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  width: 0.7rem;
  height: 0.7rem;
  border-top: 1px solid #434343;
  border-right: 1px solid #434343;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
}
.footer .breadcrumbs .breadcrumbs__item a:hover {
  color: #8691A3;
}
.footer .footer__cols {
  display: grid;
  grid-template-columns: 3fr 7fr;
  grid-template-areas: "footer__btn footer__nav" "footer__info footer__nav";
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 3rem 7rem;
}
@media screen and (max-width: 768px) {
  .footer .footer__cols {
    display: block;
  }
}
.footer .footer__cols .footer__btn {
  grid-area: footer__btn;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .footer .footer__cols .footer__btn {
    margin-bottom: 4rem;
  }
}
.footer .footer__cols .footer__btn .footer__btn-item {
  margin: 0 0 1.2rem 0;
}
.footer .footer__cols .footer__btn .footer__btn-item a {
  display: block;
  border: 1px solid #CCC;
  border-radius: 2rem;
  text-align: center;
  padding: 1.2rem;
  line-height: 1;
  color: #434343;
}
.footer .footer__cols .footer__btn .footer__btn-item a:hover {
  color: #8691A3;
  border: 1px solid #8691A3;
}
.footer .footer__cols .footer__nav {
  grid-area: footer__nav;
}
@media screen and (max-width: 768px) {
  .footer .footer__cols .footer__nav {
    margin-bottom: 4rem;
  }
}
.footer .footer__cols .footer__nav .footer__nav-list1 {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.footer .footer__cols .footer__nav .footer__nav-list1 a {
  color: #434343;
}
.footer .footer__cols .footer__nav .footer__nav-list1 a:hover {
  color: #8691A3;
}
.footer .footer__cols .footer__nav .footer__nav-list1 > li {
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 4rem;
}
.footer .footer__cols .footer__nav .footer__nav-list1 > li .footer__nav-list1-sub {
  font-size: 1.4rem;
  font-weight: 400;
  list-style-type: none;
  padding: 0;
  margin: 1.5rem 0 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem 2.5rem;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}
@media screen and (max-width: 768px) {
  .footer .footer__cols .footer__nav .footer__nav-list1 > li .footer__nav-list1-sub {
    grid-template-columns: repeat(2, 1fr);
  }
}
.footer .footer__cols .footer__nav .footer__nav-list2 {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.6rem 3rem;
}
.footer .footer__cols .footer__nav .footer__nav-list2 a {
  color: #434343;
}
.footer .footer__cols .footer__nav .footer__nav-list2 a:hover {
  color: #8691A3;
}
.footer .footer__cols .footer__nav .footer__nav-list2 > li {
  font-size: 1.4rem;
  line-height: 1.5;
}
.footer .footer__cols .footer__info {
  grid-area: footer__info;
  -ms-flex-line-pack: end;
      align-content: end;
}
.footer .footer__cols .footer__info .footer__logo {
  width: 65%;
  margin-bottom: 2rem;
}
.footer .footer__cols .footer__info .footer__name {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 0;
}
.footer .footer__cols .footer__info .footer__address {
  font-size: 1.4rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.footer .footer__cols .footer__info .footer__sns {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  gap: 1.5rem;
  padding: 0;
  margin-bottom: 2rem;
}
.footer .footer__cols .footer__info .footer__sns .footer__sns-item a {
  display: block;
  width: 3rem;
  height: 3rem;
  background-color: #434343;
  -webkit-mask-size: cover;
          mask-size: cover;
}
.footer .footer__cols .footer__info .footer__sns .footer__sns-item a:hover {
  background-color: #CCC;
}
.footer .footer__cols .footer__info .footer__sns .footer__sns-item .icon-instagram {
  mask-image: url("../images/icon-instagram.svg");
  /* Safari対応 */
  -webkit-mask-image: url("../images/icon-instagram.svg");
}
.footer .footer__cols .footer__info .footer__sns .footer__sns-item .icon-x {
  mask-image: url("../images/icon-x.svg");
  /* Safari対応 */
  -webkit-mask-image: url("../images/icon-x.svg");
}
.footer .footer__cols .footer__info .footer__sns .footer__sns-item .icon-facebook {
  mask-image: url("../images/icon-facebook.svg");
  /* Safari対応 */
  -webkit-mask-image: url("../images/icon-facebook.svg");
}
.footer .footer__cols .footer__info .footer__copyright {
  line-height: 1.5;
  font-size: 1rem;
  margin-bottom: 0;
}