@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap");
* {
  font-family: "Montserrat", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

body {
  color: #3d3d3d;
  font-family: "Montserrat", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

a img {
  opacity: 1;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
@media only screen and (min-width: 768px) {
  a:hover img {
    opacity: 0.8;
  }
}
a.opacity {
  opacity: 1;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
@media only screen and (min-width: 768px) {
  a.opacity:hover {
    opacity: 0.8;
  }
}

.clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.center {
  text-align: center;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.f-wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.f-jc-sb {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.f-jc-c {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.f-jc-fe {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.f-ai-c {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.f-ai-fs {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.f-ai-fe {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.f-ac-c {
  -ms-flex-line-pack: center;
      align-content: center;
}

.base {
  width: 100%;
  max-width: 930px;
  margin: 0 auto;
  padding: 0 15px;
}
@media only screen and (max-width: 767px) {
  .base {
    padding: 0 25px;
  }
}

@media only screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
/* slide設定
------------------------------- */
.swiper {
  -webkit-transition: opacity 1.2s;
  transition: opacity 1.2s;
  opacity: 0;
}
.swiper.swiper-initialized, .swiper.swiper-backface-hidden {
  opacity: 1;
}
.swiper-scrollbar {
  height: 3px;
  border-bottom: 1px solid #adadad;
  position: relative;
}
.swiper-scrollbar-drag {
  height: 2px;
  background-color: #adadad;
  cursor: pointer;
}
.swiper-pagination-progressbar {
  border-bottom: 1px solid #adadad;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.swiper-pagination-progressbar-fill {
  display: block;
  height: 3px;
  background-color: #adadad;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}

/* header
------------------------------- */
.header {
  width: 100%;
  height: 94px;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(6px);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2000;
}
@media only screen and (max-width: 767px) {
  .header {
    width: 100vw;
    height: 64px;
    background-color: rgba(255, 255, 255, 0.6);
  }
}
.header__inner {
  width: 100%;
  padding: 0 80px;
  position: relative;
}
@media only screen and (max-width: 1400px) {
  .header__inner {
    max-width: 1270px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
  }
}
@media only screen and (max-width: 767px) {
  .header__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start; /* 縦方向*/
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; /*横方向*/
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    height: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0 15px;
  }
}
.header__logo {
  width: 214px;
  position: absolute;
  top: 25px;
  left: 50%;
  -webkit-transform: translateY(0) translateX(-50%);
          transform: translateY(0) translateX(-50%);
}
@media only screen and (max-width: 767px) {
  .header__logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; /* 縦方向*/
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start; /*横方向*/
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 156px;
    height: 100%;
    position: relative;
    top: auto;
    left: auto;
    -webkit-transform: translateY(0) translateX(0);
            transform: translateY(0) translateX(0);
  }
}
.header__logo a,
.header__logo img {
  display: block;
  width: 100%;
}
.header__function {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start; /* 縦方向*/
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; /*横方向*/
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-top: 21px;
}
@media only screen and (max-width: 767px) {
  .header__function {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; /* 縦方向*/
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end; /*横方向*/
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 18px;
    width: calc(100% - 156px);
    height: 100%;
    padding-top: 0;
    padding-right: 4px;
  }
}
.header__function__search {
  width: 204px;
  height: 24px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .header__function__search {
    width: 18px;
    height: auto;
  }
  .header__function__search__btn {
    width: 100%;
  }
  .header__function__search__btn img {
    display: block;
    width: 100%;
  }
}
.header__function__search__inner {
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  .header__function__search__inner {
    display: none;
    width: 100vw;
    height: 50px;
    padding: 0 25px;
    position: fixed;
    top: 64px;
    left: 0;
    z-index: 3;
    background-color: #3d3d3d;
    overflow: hidden;
  }
}
.header__function__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; /* 縦方向*/
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; /*横方向*/
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
@media only screen and (max-width: 767px) {
  .header__function__nav {
    gap: 16px;
    padding-bottom: 1px;
  }
}
.header__function__nav__item {
  position: relative;
}
.header__function__nav__item img {
  display: block;
  width: auto;
  height: 19px;
}
.header__function__nav__item .count {
  left: 12px;
}
@media only screen and (max-width: 767px) {
  .header__function__nav__item .count {
    left: 10px;
    min-width: 18px;
    height: 18px;
    font-size: 11px;
  }
}
.header__form {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .header__form {
    height: 50px;
    padding: 5px 0;
  }
}
.header__form__input {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  width: 169px;
  height: 100%;
  background-color: #fff;
  border-radius: 24px;
  margin: 0 0 0 auto;
  padding: 0 1em;
}
@media only screen and (max-width: 767px) {
  .header__form__input {
    width: 100%;
    padding-left: 40px;
  }
}
.header__form__submit {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; /* 縦方向*/
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; /*横方向*/
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 18px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media only screen and (max-width: 767px) {
  .header__form__submit {
    top: 0;
    left: 10px;
    width: 24px;
  }
}
.header__form__submit img {
  display: block;
  width: 100%;
  height: auto;
}
.header__nav {
  margin-top: 24px;
}
@media only screen and (max-width: 767px) {
  .header__nav {
    display: none;
    width: 85vw;
    max-height: calc(100vh - 64px);
    background-color: #fff;
    margin: 0;
    position: fixed;
    top: 64px;
    right: 0;
    z-index: 2;
    overflow-y: scroll;
  }
}
.header__nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start; /* 縦方向*/
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; /*横方向*/
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 40px;
}
@media only screen and (max-width: 767px) {
  .header__nav__list {
    display: block;
    padding: 60px 30px;
    background-color: #fff;
    margin-bottom: 100px;
  }
}
.header__nav__list__item {
  position: relative;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 767px) {
  .header__nav__list__item {
    font-size: 16px;
  }
  .header__nav__list__item .link {
    display: block;
    padding: 15px 0;
  }
}
@media only screen and (min-width: 768px) {
  .header__nav__list__item::before {
    content: "";
    position: absolute;
    bottom: -2px;
    width: 100%;
    height: 0.5px;
    background: #000;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    opacity: 0;
    visibility: hidden;
  }
  .header__nav__list__item:hover::before {
    opacity: 1;
    visibility: visible;
  }
}
.header__nav__list__item:has(.drawer) {
  position: relative;
}
@media only screen and (min-width: 768px) {
  .header__nav__list__item:has(.drawer)::before {
    bottom: 8px;
  }
}
@media only screen and (min-width: 768px) {
  .header__nav__list__item .drawer {
    position: relative;
    padding: 0 15px 11px 0;
    cursor: pointer;
  }
}
.header__nav__list__item .drawer::before {
  content: "";
  position: absolute;
  top: 0px;
  right: 0;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 0.5px solid #000;
}
@media only screen and (max-width: 767px) {
  .header__nav__list__item .drawer::before {
    top: 16px;
    width: 16px;
    height: 16px;
  }
}
.header__nav__list__item .drawer::after {
  content: "";
  position: absolute;
  top: 3px;
  right: 4.1px;
  padding: 1.8px;
  border-bottom: 0.5px solid #000;
  border-right: 0.5px solid #000;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
@media only screen and (max-width: 767px) {
  .header__nav__list__item .drawer::after {
    top: 21px;
    right: 6px;
  }
}
.header__nav__list__item .drawer.opened::after {
  top: 5.5px;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
@media only screen and (max-width: 767px) {
  .header__nav__list__item .drawer.opened::after {
    top: 23px;
    right: 6.1px;
  }
}
.header__nav__list__item .menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  padding: 10px 15px;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  border-top: 1px solid #fff;
}
@media only screen and (max-width: 767px) {
  .header__nav__list__item .menu {
    position: relative;
    top: initial;
    left: initial;
    background: none;
    padding: 0;
  }
}
@media only screen and (max-width: 767px) {
  .header__nav__list__item .menu ul {
    padding: 0 10px 10px;
  }
}
.header__nav__list__item .menu ul li a {
  display: block;
  padding: 5px 0;
  white-space: nowrap;
}
.menu-bg {
  display: none;
}
@media only screen and (max-width: 767px) {
  .menu-bg {
    width: 100vw;
    height: calc(100vh - 64px);
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 64px;
    left: 0;
    z-index: 1;
  }
}

.menu-btn {
  width: 31px;
  height: 16px;
  position: relative;
}
.menu-btn span {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #3d3d3d;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%) translateX(0);
          transform: translateY(-50%) translateX(0);
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
.menu-btn::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #3d3d3d;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
.menu-btn::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #3d3d3d;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
.opened .menu-btn::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.menu-btn.opened span {
  opacity: 0;
}
.menu-btn.opened::before {
  top: 50%;
  -webkit-transform: rotate(-45deg) translateY(-50%);
          transform: rotate(-45deg) translateY(-50%);
}
.menu-btn.opened::after {
  bottom: 50%;
  -webkit-transform: rotate(45deg) translateY(50%);
          transform: rotate(45deg) translateY(50%);
}

/* footer
------------------------------- */
.footer {
  background-color: #3d3d3d;
  color: #fff;
}
.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start; /* 縦方向*/
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; /*横方向*/
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
  max-width: 1290px;
  padding: 51px 15px 51px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .footer__inner {
    display: block;
    padding: 60px 25px 54px;
  }
}
.footer__inner__item._item_a {
  width: 230px;
  padding-top: 5px;
}
@media only screen and (max-width: 767px) {
  .footer__inner__item._item_a {
    width: 100%;
    padding-top: 0;
    margin-bottom: 52px;
  }
}
.footer__inner__item._item_b {
  max-width: calc(100% - 230px - 30px);
  width: 896px;
}
@media only screen and (max-width: 980px) {
  .footer__inner__item._item_b {
    width: 580px;
  }
}
@media only screen and (max-width: 767px) {
  .footer__inner__item._item_b {
    width: 100% !important;
    max-width: 100%;
  }
}
.footer__inner__item._item_b ._child_b {
  margin-left: 21px;
}
@media only screen and (max-width: 1100px) {
  .footer__inner__item._item_b ._child_b {
    margin-left: 0;
  }
}
@media only screen and (max-width: 767px) {
  .footer__inner__item._item_b ._child_b {
    width: 50%;
    padding-left: 20px;
  }
}
@media only screen and (max-width: 980px) {
  .footer__inner__item._item_b ._child_d.pc {
    display: none !important;
  }
}
@media only screen and (max-width: 980px) {
  .footer__inner__item._item_b ._child_d.sp {
    display: block !important;
  }
}
@media only screen and (max-width: 767px) {
  .footer__inner__item._item_b ._child_d {
    width: 100%;
  }
}
.footer__inner__item._item_b ._child_e {
  padding-right: 39px;
  margin-left: 100px;
}
@media only screen and (max-width: 1100px) {
  .footer__inner__item._item_b ._child_e {
    margin-left: 20px;
  }
}
@media only screen and (max-width: 980px) {
  .footer__inner__item._item_b ._child_e {
    padding-right: 10px;
    margin-left: 0;
  }
}
@media only screen and (max-width: 767px) {
  .footer__inner__item._item_b ._child_e {
    width: 50%;
    margin-left: 0 !important;
    padding-left: 20px;
  }
}
.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start; /* 縦方向*/
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; /*横方向*/
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (max-width: 1100px) {
  .footer__nav {
    gap: 38px 0;
  }
}
@media only screen and (max-width: 767px) {
  .footer__nav__child {
    width: 50%;
  }
}
.footer__nav__ttl {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}
.footer__nav__ttl._jp {
  letter-spacing: 0;
  margin-bottom: 12px;
}
@media only screen and (max-width: 767px) {
  .footer__nav__ttl._jp {
    margin-bottom: 19px;
  }
}
.footer__nav__ttl-small {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin: 16px 0 7px;
}
.footer__nav__address {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
  padding: 0;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .footer__nav__address {
    line-height: 1.6;
    margin-right: -1.2em;
  }
}
.footer__nav__address span {
  font-weight: 700;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.footer__nav__more {
  margin: 10px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: "Montserrat", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 12px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  width: 94px;
  height: 25px;
  border: 1px solid #fff;
}
.footer__nav__list {
  padding: 0;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .footer__nav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; /* 縦方向*/
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start; /*横方向*/
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 6px 16px;
  }
}
.footer__nav__list__item {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.1em;
  padding: 0;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  ._item_b .footer__nav__list__item {
    width: 100%;
  }
}
.footer__nav__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; /* 縦方向*/
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start; /*横方向*/
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.footer__nav__sns__item img {
  display: block;
  width: auto;
  height: 13px;
}
.footer .footer__logo {
  display: block;
  width: 214px;
  margin-bottom: 22px;
}
@media only screen and (max-width: 767px) {
  .footer .footer__logo {
    margin-bottom: 36px;
  }
}
.footer .footer__logo img {
  display: block;
  width: 100%;
  height: auto;
}

/* title
------------------------------- */
.ttl-large,
.l-container .ttl-large {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 60px;
}
@media only screen and (max-width: 767px) {
  .ttl-large,
  .l-container .ttl-large {
    margin-bottom: 45px;
  }
}

.ttl-large-bold,
.l-container .ttl-large-bold {
  color: #000;
  font-size: 31px;
  font-weight: 700;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .ttl-large-bold,
  .l-container .ttl-large-bold {
    font-size: 24px;
    letter-spacing: 0.05em;
    margin-bottom: 15px;
  }
}

.news-excerpt {
  padding: 130px 0 130px;
}
@media only screen and (max-width: 767px) {
  .news-excerpt {
    padding: 76px 0 76px;
  }
}
.news-excerpt .ttl-large {
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .news-excerpt .ttl-large {
    margin-bottom: 44px;
  }
}
.news-excerpt .base {
  max-width: 905px;
}
.news-excerpt__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start; /* 縦方向*/
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start; /*横方向*/
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 45px;
}
@media only screen and (max-width: 767px) {
  .news-excerpt__list {
    gap: 35px;
  }
}
.news-excerpt__list__item {
  width: calc((100% - 1px - 90px) / 3);
}
@media only screen and (max-width: 767px) {
  .news-excerpt__list__item {
    width: 100%;
  }
}
.news-excerpt__list__item__child {
  display: block;
}
.news-excerpt__list__item__img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 7px;
}
@media only screen and (max-width: 767px) {
  .news-excerpt__list__item__img {
    margin-bottom: 16px;
  }
}
.news-excerpt__list__item__ttl {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
  margin-bottom: 9px;
}
@media only screen and (max-width: 767px) {
  .news-excerpt__list__item__ttl {
    font-size: 14px;
    margin-bottom: 8px;
  }
}
.news-excerpt__list__item__desc {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .news-excerpt__list__item__desc {
    font-size: 12px;
  }
}
.news-excerpt .btn-box {
  margin: 70px auto 0;
}
.news-excerpt__bnr {
  display: block;
  margin-top: 80px;
}
@media only screen and (max-width: 767px) {
  .news-excerpt__bnr {
    margin-top: 40px;
  }
}

/* button
------------------------------- */
.btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; /* 縦方向*/
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; /*横方向*/
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 260px;
  height: 50px;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-align: center;
  background-color: #fff;
  border: 1px solid #3d3d3d;
}
@media only screen and (max-width: 767px) {
  .btn-box {
    width: 190px;
    font-size: 14px;
    border: 1px solid #9a9a9a;
  }
}

._add-oval-line {
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  ._add-oval-line {
    padding-left: 32px;
  }
}
._add-oval-line::before {
  content: "";
  display: block;
  width: 24px;
  aspect-ratio: 1/1;
  border-radius: 24px;
  border: 1px solid #9a9a9a;
  position: absolute;
  left: 100%;
  top: 2px;
  z-index: 1;
  margin-left: 10px;
}
@media only screen and (max-width: 767px) {
  ._add-oval-line::before {
    top: 1px;
    left: 0;
    margin-left: 0;
  }
}
._add-oval-line::after {
  content: "";
  display: block;
  width: 193px;
  border-bottom: 1px solid #9a9a9a;
  position: absolute;
  left: 100%;
  top: 14px;
  margin-left: 34px;
}
@media only screen and (max-width: 767px) {
  ._add-oval-line::after {
    width: auto;
    height: 133px;
    border-bottom: 0;
    border-left: 1px solid #9a9a9a;
    margin-left: 0;
    margin-bottom: -1px;
    left: 12px;
    top: auto;
    bottom: 100%;
  }
}

@media only screen and (min-width: 768px) {
  ._reverse ._add-oval-line::before {
    left: auto;
    right: 100%;
    margin-left: auto;
    margin-right: 10px;
  }
  ._reverse ._add-oval-line::after {
    left: auto;
    right: 100%;
    margin-left: auto;
    margin-right: 34px;
  }
}

/* 下層用MV
------------------------------- */
.page-mv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; /* 縦方向*/
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; /*横方向*/
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  height: 289px;
  padding-top: 73px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .page-mv {
    height: 206px;
    padding-top: 64px;
  }
}
.page-mv__ttl {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .page-mv__ttl {
    font-size: 24px;
  }
}
.page-mv__ttl._col-gry {
  color: #3d3d3d;
}
.page-mv__bg {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

/* Breadcrumb
------------------------------- */
.breadcrumb {
  margin-top: 36px;
}
@media only screen and (max-width: 767px) {
  .breadcrumb {
    margin-top: 15px;
  }
}
.breadcrumb .base {
  max-width: 1270px;
}
.breadcrumb__list {
  display: block;
  width: 100%;
  color: #000;
  font-family: "Montserrat", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: left;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
@media only screen and (max-width: 767px) {
  .breadcrumb__list {
    font-size: 12px;
  }
}
.breadcrumb__list > li {
  display: inline;
}
.breadcrumb__list > li::after {
  content: ">";
}
.breadcrumb__list > li:last-child::after {
  content: "";
}
.breadcrumb__list > li a {
  text-decoration: none;
}

/* 2column
------------------------------- */
.column-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start; /* 縦方向*/
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start; /*横方向*/
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 1255px;
  padding-top: 40px;
}
.column-block__side {
  width: 268px;
  padding-right: 25px;
}
@media only screen and (max-width: 980px) {
  .column-block__side {
    width: 185px;
  }
}
@media only screen and (max-width: 767px) {
  .column-block__side {
    width: 100% !important;
    padding-top: 14px;
    padding-right: 0;
  }
}
.column-block__main {
  width: calc(100% - 268px);
}
@media only screen and (max-width: 980px) {
  .column-block__main {
    width: calc(100% - 185px);
  }
}
@media only screen and (max-width: 767px) {
  .column-block__main {
    width: 100% !important;
  }
}

.ttl-side {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .ttl-side {
    font-size: 14px;
    margin-bottom: 15px;
  }
}

/* アコーディオン
------------------------------- */
.js-aco-contents {
  display: none;
}

@media only screen and (max-width: 767px) {
  .js-aco-contents-sp {
    overflow: hidden;
    max-height: 0;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
}

@media only screen and (max-width: 767px) {
  .js-aco-btn-sp.aco-active + .js-aco-contents-sp {
    max-height: 600px;
  }
}

/* 「+」「-」で数値を増減
------------------------------- */
.spinner {
  width: 50px;
  padding: 0;
  text-align: center;
  border: none;
  background: none;
  outline: none;
  pointer-events: none;
  -moz-appearance: textfield !important;
}
.spinner__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  width: 120px;
  height: 35px;
  background-color: #fff;
}
.spinner__sub#btn-minus, .spinner__add#btn-plus {
  display: block;
  width: 35px;
  height: 35px;
  text-align: center;
  cursor: pointer;
  line-height: 33px;
  position: initial;
  top: initial;
  left: initial;
  right: initial;
  font-size: initial;
}

.spinner::-webkit-inner-spin-button,
.spinner::-webkit-outer-spin-button {
  -webkit-appearance: none !important;
  margin: 0 !important;
}

._disabled {
  opacity: 0.3;
  cursor: inherit;
}

.news-detail .p-column_header__bg {
  height: auto;
  margin: 94px 0 0;
  padding-top: 56%;
}
@media only screen and (max-width: 767px) {
  .news-detail .p-column_header__bg {
    margin: 64px 0 0;
  }
}
.news-detail .u-color__btn--bg {
  background: #000 !important;
}
.news-detail .u-text--link {
  color: #000 !important;
}

.product-detail .l-container__row {
  padding: 94px 0 0;
}
@media only screen and (max-width: 767px) {
  .product-detail .l-container__row {
    padding: 64px 0 0;
  }
}

.contact .l-container__row.top,
.news .l-container__row.top {
  padding: 94px 0 0;
}
@media only screen and (max-width: 767px) {
  .contact .l-container__row.top,
  .news .l-container__row.top {
    padding: 64px 0 0;
  }
}

body .u-color__btn--bg {
  background: #000 !important;
}
body .u-text--link {
  color: #000 !important;
}/*# sourceMappingURL=custom.css.map */