@charset "UTF-8";
/*————————————————————————————————————————————

reset

———————————*/
th,
td {
  vertical-align: middle;
}

dt {
  font-weight: normal;
}

input[type=text],
input[type=submit],
input[type=email],
input[type=reset],
textarea,
select,
button {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
input[type=text]::-webkit-search-decoration,
input[type=submit]::-webkit-search-decoration,
input[type=email]::-webkit-search-decoration,
input[type=reset]::-webkit-search-decoration,
textarea::-webkit-search-decoration,
select::-webkit-search-decoration,
button::-webkit-search-decoration {
  display: none;
}
input[type=text]::focus,
input[type=submit]::focus,
input[type=email]::focus,
input[type=reset]::focus,
textarea::focus,
select::focus,
button::focus {
  outline-offset: -2px;
}

input[type=text],
input[type=submit],
input[type=email],
input[type=reset],
textarea {
  border: 1px solid;
  border-radius: 5px;
}

.br_contact_type_title {
  border: none!important;
}



/*————————————————————————————————————————————

base

———————————*/
html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
@media (max-width: 744px) {
  html {
    font-size: 14px;
    scroll-padding-top: 70px;
  }
}

body {
  font-family: "游ゴシック体", "Yu Gothic", "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.75;
  color: #2F2E2B;
  background: #FFF;
}

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

a {
  display: inline-block;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
a:hover {
  opacity: 0.7;
}

/*————————————————————————————————————————————

component

———————————*/
.c-title01 {
  text-align: center;
}
.c-title01 .en {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media (max-width: 744px) {
  .c-title01 .en {
    font-size: 16px;
  }
}
.c-title01 .ja {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-top: 12px;
}
@media (max-width: 744px) {
  .c-title01 .ja {
    font-size: 28px;
    margin-top: 8px;
  }
}

.c-title02 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
}
@media (max-width: 744px) {
  .c-title02 {
    font-size: 20px;
  }
}

.c-btn01 {
  width: 100%;
  max-width: 100%;
  height: 56px;
  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;
  gap: 8px;
  font-weight: 700;
  border-radius: 3px;
  padding: 0.5em;
}
@media (max-width: 744px) {
  .c-btn01 {
    width: 100%;
  }
}
.c-btn01:hover {
  text-decoration: none;
  opacity: 1;
}
.c-btn01--wh {
  border: 1px solid #2f2e2b;
}
.c-btn01--wh:hover {
  background: #2f2e2b;
  color: #fff;
}
.c-btn01--bk {
  border: 1px solid #2f2e2b;
  background: #2f2e2b;
  color: #fff;
}
.c-btn01--bk:hover {
  background: #fff;
  color: #2f2e2b;
}
.c-btn01 i {
  font-size: 0.8em;
}

.c-hamburger {
  display: none;
  z-index: 999;
}
@media (max-width: 1024px) {
  .c-hamburger {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    top: 50%;
    -webkit-transform: translateY(-45%);
            transform: translateY(-45%);
    right: clamp(1rem, 0.818rem + 0.91vw, 1.5rem);
  }
}
.c-hamburger span {
  width: 26px;
  height: 1.5px;
  background-color: #2E2828;
  position: relative;
  -webkit-transition: ease 0.4s;
  transition: ease 0.4s;
  display: block;
}
.c-hamburger span:nth-child(1) {
  top: 0;
}
.c-hamburger span:nth-child(2) {
  margin: 8px 0;
}
.c-hamburger span:nth-child(3) {
  top: 0;
}
.c-hamburger.active span:nth-child(1) {
  top: 10px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.c-hamburger.active span:nth-child(2) {
  opacity: 0;
}
.c-hamburger.active span:nth-child(3) {
  top: -9px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.c-hamburger__label {
  font-size: 10px;
  margin-top: 8px;
}

.c-breadcrumb {
  background: #f3f3f3;
}
@media (max-width: 744px) {
  .c-breadcrumb .l-inner {
    padding-right: 0;
  }
}
.c-breadcrumb__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  overflow-x: scroll;
  word-break: keep-all;
  white-space: nowrap;
  padding-top: 24px;
  padding-bottom: 24px;
}
.c-breadcrumb__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-breadcrumb__item:not(:last-child)::after {
  content: "\e901";
  font-family: "icomoon" !important;
  font-size: 0.8em;
  display: inline-block;
  margin-left: 8px;
}

.c-line {
  width: 100vw;
  height: 1px;
  margin: 0 calc(50% - 50vw);
  background: #4e4e4e;
}

/*————————————————————————————————————————————

icomoon

———————————*/
@font-face {
  font-family: "icomoon";
  src: url("../fonts/icomoon.eot?4yetj4");
  src: url("../fonts/icomoon.eot?4yetj4#iefix") format("embedded-opentype"), url("../fonts/icomoon.ttf?4yetj4") format("truetype"), url("../fonts/icomoon.woff?4yetj4") format("woff"), url("../fonts/icomoon.svg?4yetj4#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^=icon-], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-up:before {
  content: "\e902";
}

.icon-right:before {
  content: "\e901";
}

.icon-down:before {
  content: "\e903";
}

.icon-left:before {
  content: "\e900";
}

.icon-circle-up:before {
  content: "\ea41";
}

.icon-circle-right:before {
  content: "\ea42";
}

.icon-circle-down:before {
  content: "\ea43";
}

.icon-circle-left:before {
  content: "\ea44";
}

.icon-arrow-up2:before {
  content: "\ea3a";
}

.icon-arrow-right2:before {
  content: "\ea3c";
}

.icon-arrow-down2:before {
  content: "\ea3e";
}

.icon-arrow-left2:before {
  content: "\ea40";
}

.icon-plus:before {
  content: "\ea0a";
}

.icon-minus:before {
  content: "\ea0b";
}

.icon-search:before {
  content: "\e986";
}

.icon-zoom:before {
  content: "\e987";
}

.icon-zoom-out:before {
  content: "\e988";
}

.icon-link:before {
  content: "\e907";
}

.icon-link2:before {
  content: "\e932";
}

.icon-star-empty:before {
  content: "\e9d7";
}

.icon-star-full:before {
  content: "\e9d9";
}

.icon-fav:before {
  content: "\e905";
}

.icon-faved:before {
  content: "\e906";
}

.icon-tel:before {
  content: "\e928";
}

.icon-tel2:before {
  content: "\e90c";
}

.icon-sphere:before {
  content: "\e9c9";
}

.icon-mail:before {
  content: "\e925";
}

.icon-mail2:before {
  content: "\e92a";
}

.icon-book:before {
  content: "\e90b";
}

.icon-home:before {
  content: "\e90d";
}

.icon-home2:before {
  content: "\e909";
}

.icon-home3:before {
  content: "\e90a";
}

.icon-file-empty:before {
  content: "\e924";
}

.icon-files-empty:before {
  content: "\e937";
}

.icon-file-text2:before {
  content: "\e938";
}

.icon-play3:before {
  content: "\ea1c";
}

.icon-pause2:before {
  content: "\ea1d";
}

.icon-stop2:before {
  content: "\ea1e";
}

.icon-backward2:before {
  content: "\ea1f";
}

.icon-forward3:before {
  content: "\ea20";
}

.icon-first:before {
  content: "\ea21";
}

.icon-last:before {
  content: "\ea22";
}

.icon-previous2:before {
  content: "\ea23";
}

.icon-next2:before {
  content: "\ea24";
}

.icon-pin:before {
  content: "\e91c";
}

.icon-x:before {
  content: "\e904";
}

.icon-youtube:before {
  content: "\ea9d";
}

.icon-line:before {
  content: "\e908";
}

.icon-insta:before {
  content: "\ea92";
}

.icon-facebook2:before {
  content: "\ea91";
}

.icon-fb:before {
  content: "\ea90";
}

.icon-up2:before {
  content: "\e90e";
}

.icon-right2:before {
  content: "\e90f";
}

.icon-down2:before {
  content: "\e910";
}

.icon-left2:before {
  content: "\e911";
}

/*————————————————————————————————————————————

common

———————————*/
.l-section:not(:first-of-type) {
  margin-top: 120px;
}
@media (max-width: 744px) {
  .l-section:not(:first-of-type) {
    margin-top: 80px;
  }
}

.l-inner {
  position: relative;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  padding-right: clamp(1rem, 0.818rem + 0.91vw, 1.5rem);
  padding-left: clamp(1rem, 0.818rem + 0.91vw, 1.5rem);
}

.l-cta-block {
  background-image: url(../images/common/cta-group-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 120px 0;
}
@media (max-width: 744px) {
  .l-cta-block {
    padding: 60px 0;
  }
}
.l-cta-block__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 24px 1fr 24px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 24px;
}
@media (max-width: 1024px) {
  .l-cta-block__list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.l-cta-block__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #fff;
  border-radius: 6px;
  padding: 52px;
}
@media (max-width: 744px) {
  .l-cta-block__item {
    padding: 40px 32px;
  }
}
.l-cta-block__image {
  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;
}
.l-cta-block__image img {
  width: 210px;
  border-bottom: 1px solid #e2e2e2;
}
@media (max-width: 744px) {
  .l-cta-block__image img {
    width: 140px;
  }
}
.l-cta-block__desc {
  font-size: 14px;
  text-align: center;
  margin-top: 16px;
}
@media (max-width: 744px) {
  .l-cta-block__desc {
    margin-top: 12px;
  }
}
.l-cta-block__tel {
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  margin-top: 16px;
}
@media (max-width: 744px) {
  .l-cta-block__tel {
    margin-top: 12px;
  }
}
.l-cta-block__tel span {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.l-cta-block__link {
  margin-top: 32px;
}
@media (max-width: 744px) {
  .l-cta-block__link {
    margin-top: 20px;
  }
}

.l-floating-menu {
  position: fixed;
  top: 20%;
  right: 0;
  background: #fff302;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  z-index: 11;
}
@media (max-width: 744px) {
  .l-floating-menu {
    width: 100%;
    top: auto;
    bottom: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
@media (max-width: 744px) {
  .l-floating-menu__list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
.l-floating-menu__item {
  position: relative;
}
.l-floating-menu__item:not(:first-of-type)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 70%;
  border-top: 1px solid #e2da41;
}
@media (max-width: 744px) {
  .l-floating-menu__item:not(:first-of-type)::before {
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    left: 0;
    height: 70%;
    width: auto;
    border-top: none;
    border-left: 1px solid #e2da41;
  }
}
.l-floating-menu__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  padding: 20px 16px;
}
@media (max-width: 744px) {
  .l-floating-menu__link {
    gap: 4px;
    font-size: 10px;
    font-weight: 500;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    padding: 16px 0;
  }
}
@media (max-width: 744px) {
  .l-floating-menu__link i {
    font-size: 16px;
  }
}

/*————————————————————————————————————————————

header

———————————*/
.l-header {
  height: auto;
  position: sticky;
  top: 0;
  background: #fff;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  padding: 12px 0;
  z-index: 99;
}
@media (max-width: 1024px) {
  .l-header {
    padding: 24px 0;
  }
}
.l-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
  margin-right: auto;
  margin-left: auto;
  padding-right: clamp(1rem, 0.818rem + 0.91vw, 1.5rem);
  padding-left: clamp(1rem, 0.818rem + 0.91vw, 1.5rem);
}
.l-header__logo img {
  display: block;
  width: 226px;
}
@media (max-width: 1024px) {
  .l-header__logo img {
    width: 168px;
  }
}
.l-header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
@media (min-width: 1025px) {
  .l-header__nav {
    padding-right: 32px;
    margin-right: 32px;
    border-right: 1px solid #dedede;
  }
}
@media (max-width: 1024px) {
  .l-header__nav {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    gap: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    right: -120%;
    -webkit-transition: ease 0.4s;
    transition: ease 0.4s;
    background: #f8f8f8;
    overflow: scroll;
    padding-bottom: 60px;
  }
}
.l-header__nav.active {
  right: 0;
}
.l-header__nav-head {
  display: none;
}
@media (max-width: 1024px) {
  .l-header__nav-head {
    position: sticky;
    top: 0;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: #FFF;
    -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
            box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    padding-top: 24px;
    padding-bottom: 24px;
    padding-left: clamp(1rem, 0.818rem + 0.91vw, 1.5rem);
    padding-right: clamp(1rem, 0.818rem + 0.91vw, 1.5rem);
    z-index: 99;
  }
}
.l-header__nav-head-logo img {
  display: block;
  width: 168px;
}
.l-header__nav-sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1024px) {
  .l-header__nav-sub {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}
.l-header__nav-sub-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media (max-width: 1024px) {
  .l-header__nav-sub-list {
    width: 100%;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 0 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
}
@media (max-width: 1024px) {
  .l-header__nav-sub-item {
    border-bottom: 1px solid #dedede;
  }
}
@media (max-width: 1024px) {
  .l-header__nav-sub-item:nth-of-type(2n + 1) {
    border-right: 1px solid #dedede;
  }
}
.l-header__nav-sub-link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #7b7b7b;
}
@media (max-width: 1024px) {
  .l-header__nav-sub-link {
    width: 100%;
    font-size: 16px;
    letter-spacing: 0;
    color: #2F2E2B;
    padding: 16px clamp(1rem, 0.818rem + 0.91vw, 1.5rem);
  }
}
.l-header__nav-sub-link i {
  font-size: 0.8em;
}
@media (max-width: 1024px) {
  .l-header__nav-sub-link i {
    display: none;
  }
}
.l-header__nav-sns-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media (max-width: 1024px) {
  .l-header__nav-sns-list {
    margin-top: 60px;
  }
}
.l-header__nav-sns-link i {
  font-size: 24px;
}
@media (max-width: 1024px) {
  .l-header__nav-main {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.l-header__nav-main-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
@media (max-width: 1024px) {
  .l-header__nav-main-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 0;
  }
}
.l-header__nav-main-item {
  position: relative;
}
@media (max-width: 1024px) {
  .l-header__nav-main-item {
    width: 100%;
  }
}
@media (min-width: 1025px) {
  .l-header__nav-main-item.current {
    color: #1aa0fc;
  }
}
@media (min-width: 1025px) {
  .l-header__nav-main-item.current::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    -webkit-transform: translateY(12px);
            transform: translateY(12px);
    width: 100%;
    height: 3px;
    background: #1aa0fc;
  }
}
.l-header__nav-main-link {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media (max-width: 1024px) {
  .l-header__nav-main-link {
    width: 100%;
    font-size: 16px;
    letter-spacing: 0;
    padding: 16px clamp(1rem, 0.818rem + 0.91vw, 1.5rem);
    border-bottom: 1px solid #dedede;
  }
}
@media (max-width: 1024px) {
  .l-header__nav-main-link.has-child {
    position: relative;
  }
  .l-header__nav-main-link.has-child::before, .l-header__nav-main-link.has-child::after {
    content: "";
    display: inline-block;
    width: 20px;
    height: 1px;
    background-color: #7b7b7b;
    position: absolute;
    right: clamp(1rem, 0.818rem + 0.91vw, 1.5rem);
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .l-header__nav-main-link.has-child::after {
    -webkit-transform: translateY(-50%) rotate(90deg);
            transform: translateY(-50%) rotate(90deg);
  }
  .l-header__nav-main-link.has-child.open::before {
    opacity: 0;
  }
  .l-header__nav-main-link.has-child.open::after {
    -webkit-transform: translateY(-50%) rotate(180deg);
            transform: translateY(-50%) rotate(180deg);
  }
}
.l-header__nav-child {
  display: none;
  background: #f0f0f0;
  padding: 28px clamp(1rem, 0.818rem + 0.91vw, 1.5rem);
}
.l-header__nav-child-title {
  font-weight: 700;
  margin-bottom: 12px;
}
.l-header__nav-child-title i {
  font-size: 0.8em;
  color: #7b7b7b;
}
.l-header__nav-child-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 8px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.l-header__nav-child-list i {
  font-size: 0.8em;
  color: #7b7b7b;
}
@media (max-width: 1024px) {
  .l-header__aside {
    display: none;
  }
}
.l-header__aside-tel {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.l-header__aside-tel i {
  margin-right: 4px;
}
.l-header__aside-hours {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #7b7b7b;
}

/*————————————————————————————————————————————

fotter

———————————*/
.l-footer {
  color: #fff;
  background: #2f2e2b;
  padding-top: 80px;
}
.l-footer__head-content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 60px 1fr;
  grid-template-columns: auto 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
@media (max-width: 744px) {
  .l-footer__head-content {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.l-footer__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}
@media (max-width: 744px) {
  .l-footer__info {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.l-footer__logo img {
  width: 346px;
}
@media (max-width: 744px) {
  .l-footer__logo img {
    width: 278px;
  }
}
.l-footer__banner img {
  width: 282px;
}
@media (max-width: 744px) {
  .l-footer__banner img {
    width: 240px;
  }
}
.l-footer__address {
  font-size: 13px;
  font-weight: 700;
}
.l-footer__tel {
  font-size: 13px;
  font-weight: 700;
}
.l-footer__tel span {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.l-footer__btn-list {
  display: none;
}
@media (max-width: 744px) {
  .l-footer__btn-list {
    width: 100%;
    display: -ms-grid !important;
    display: grid !important;
    -ms-grid-columns: 1fr 8px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}
.l-footer__btn-item {
  border: 1px solid #7B7B7B;
  border-radius: 3px;
}
.l-footer__btn-link {
  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-size: 14px;
  font-weight: 700;
  color: #FFF;
  padding: 8px;
}
.l-footer__sns-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media (max-width: 744px) {
  .l-footer__sns-list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 40px;
  }
}
.l-footer__sns-link {
  color: #FFF;
}
.l-footer__sns-link i {
  font-size: 24px;
}
.l-footer__nav {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, auto));
  gap: 48px 60px;
}
@media (max-width: 744px) {
  .l-footer__nav {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.l-footer__nav-title {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #4e4e4e;
  margin-bottom: 24px;
}
@media (max-width: 744px) {
  .l-footer__nav-title {
    margin-bottom: 20px;
  }
}
.l-footer__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px 20px;
}
@media (max-width: 744px) {
  .l-footer__nav-list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
.l-footer__nav-link {
  font-size: 14px;
  font-weight: 700;
  color: #FFF;
}
.l-footer__nav-child-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  margin-top: 20px;
}
@media (max-width: 744px) {
  .l-footer__nav-child-list {
    gap: 4px;
    margin-top: 12px;
  }
}
.l-footer__nav-child-link {
  font-size: 13px;
  color: #FFF;
}
.l-footer__links-list {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, auto));
  gap: 40px 60px;
  margin-top: 60px;
}
@media (max-width: 744px) {
  .l-footer__links-list {
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
.l-footer__links-link {
  font-size: 11px;
  font-weight: 500;
  color: #FFF;
}
.l-footer__links-link span {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-top: 4px;
}
.l-footer__links-link span.l-footer__links-span {
  font-size: 20px;
}
.l-footer__map {
  margin-top: 60px;
}
.l-footer__foot {
  background: #4e4e4e;
  padding-top: 28px;
  padding-bottom: 28px;
  margin-top: 40px;
}
@media (max-width: 744px) {
  .l-footer__foot {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    padding-top: 20px;
    padding-bottom: 100px;
  }
}
.l-footer__foot-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 16px;
}
.l-footer__copyright {
  font-size: 11px;
  font-weight: 700;
  color: #7b7b7b;
}
.l-footer__policy-link {
  font-size: 13px;
  font-weight: 700;
  color: #7b7b7b;
}

.footer_map {
  width: 100%;
}
.footer_map iframe {
  width: 100%;
  height: 250px;
}
/*————————————————————————————————————————————

animation

———————————*/
/*————————————————————————————————————————————

script

———————————*/
/*————————————————————————————————————————————

display

———————————*/
.pc,
.tb,
.sp {
  display: none;
}

.pc {
  display: block;
}
@media (min-width: 745px) and (max-width: 1024px) {
  .pc {
    display: none;
  }
}
@media (max-width: 744px) {
  .pc {
    display: none;
  }
}

@media (min-width: 745px) and (max-width: 1024px) {
  .tb {
    display: block;
  }
}

@media (max-width: 744px) {
  .sp {
    display: block;
  }
}

/*————————————————————————————————————————————

utility

———————————*/
.u-p0 {
  padding: 0 !important;
}

.u-mt12 {
  margin-top: 12px !important;
}

/*————————————————————————————————————————————

temporary

———————————*/
main {
  font-family: "游ゴシック体", "Yu Gothic", "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif !important;
}

body {
  font-size: 16px;
}
@media (max-width: 744px) {
  body {
    font-size: 14px;
  }
}

.l-main section {
  padding: 0;
}

header {
  height: auto;
}

.l-header a:hover,
.l-footer a:hover,
.l-floating-menu a:hover,
.c-breadcrumb a:hover,
.p-aboutus a:hover {
  text-decoration: none;
}
.l-header a:hover p,
.l-footer a:hover p,
.l-floating-menu a:hover p,
.c-breadcrumb a:hover p,
.p-aboutus a:hover p {
  color: inherit;
}

.product_bnr a {
  display: block;
  width: 100%;
  max-width: 800px;
  margin: 120px auto;
  text-align: center;
  font-size: 28px;
  line-height: 1.5;
  letter-spacing: 0;
  color: #fff;
  border-radius: 25px;
  padding: 8px 30px;
  text-decoration: none;
  font-weight: bold;
  background: #6fb92c;
  box-shadow: 4px 4px 0px rgba(0, 0, 0, .3);
}
@media screen and (max-width: 767px){


.product_bnr a {
  margin: 60px 20px;
  font-size: 20px;
  width: auto;
  padding: 8px 20px;

}
}

.footer_subline {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}

.footer_subline .footer_subline_item {
  margin-right: 20px;
}
@media screen and (max-width: 767px) {

.footer_subline .footer_subline_item + * {
  margin-top: 20px;
}
}

.seo_bread_list {
  padding-left: 20px;
  padding-right: 20px;
}

.tel_flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.tel_flex .l-footer__sns-list {
  align-items: center;
  gap: 15px;
}
.tel_flex .l-footer__sns-list a {
  display: block;
}
.tel_flex .l-footer__sns-list a i {
  display: block;
}