@charset "utf-8";


/**************************************************************
* 全体設定
**************************************************************/

/* html, body
**************************************************************/
html,
body
{
  color: var(--base-font-color);
  font-size: var(--base-font-size);
  font-family: var(--base-font-family);
  background-color: var(--base-bg-color);
}

/* img
**************************************************************/
img {
  width: 100%;
  height: auto;
}
@media (hover: hover) {
  a img {
    transition: opacity, var(--transition-speed);
  }
  a:not(.u-not-hover):hover img {
    opacity: var(--opacity-degree);
  }
}


/* xxx
********************************/

@media all and (min-width: 768px) {}
@media all and (max-width: 767px) {}


/**************************************************************
* g-container__inner
**************************************************************/
.g-container__inner {
  overflow-x: hidden;
}

/**************************************************************
* g-header
**************************************************************/
.g-header {
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
}
@media all and (min-width: 768px) {
  .g-header {
    position: absolute;
  }
}
@media all and (max-width: 767px) {
  .g-header {
    position: fixed;
    top: 0;
    left: 0;
  }
}

/* is-open
********************************/
.g-header::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100vh;
  background-color: var(--hamberger-overlay-bg-color);
  transform: translate(100%, 0);
  transition: transform, var(--transition-speed);
}
.is-open.g-header::before {
  transform: translate(0, 0);
}

/* g-header-head
**************************************************************/
@media all and (min-width: 768px) {
  .g-header-head {
  }
}
@media all and (min-width: 768px) and (max-width: 1200px) {
  .g-header-head {
  }
}
@media all and (min-width: 1200px) {
  .g-header-head {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media all and (max-width: 767px) {
  .g-header-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    width: 18rem;
    padding: 2rem 0;
  }
}

/* is-open
********************************/
@media all and (min-width: 768px) and (max-width: 1200px) {
  .is-open .g-header-head {
    width: 100%;
  }
}

/* g-header-logo
**************************************************************/
.g-header-logo {
  
}
.g-header-logo img {
  width: 100%;
}
@media all and (min-width: 768px) {
  .g-header-logo {
    width: 40rem;
    margin-left: 6.25%;
    padding: 8rem 0;
  }
}
@media all and (max-width: 767px) {
  .g-header-logo {
    width: 100%;
  }
  .g-header-logo img {
    width: 100%;
  }
}


/* g-header-logo__link
********************************/
.g-header-logo__link {
  display: block;
}

/* g-header-sns
**************************************************************/
.g-header-sns {
  margin-left: 30px;
}
.g-header-sns-list .list__item {
}
.g-header-sns-list .item__link {
  transition: opacity var(--transition-speed);
}
.g-header-sns img {
  width: 100%;
}
@media all and (min-width: 768px) {
  .g-header-sns-list .list__item:nth-child(n + 2) {
    margin-left: 10px;
  }
  .g-header-sns-list img {
    width: 100%;
  }
}
@media all and (max-width: 1366px) {
  .g-header-sns {
    display: none;
  }
}
@media all and (max-width: 767px) {
  .g-header-sns {
  }
  .g-header-sns-list .list__item:nth-child(n + 2) {
    margin-top: 2rem;
  }
}
@media (hover: hover) {
  .g-header-sns-list .item__link:hover {
    opacity: var(--opacity-degree);
  }
}

/* is-open
********************************/
@media all and (max-width: 1366px) {
  .is-open .g-header-sns {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 2;
    margin: 210px 40px 0 0;
  }
}
@media all and (max-width: 767px) {
  .is-open .g-header-sns {
    display: block;
    width: 3rem;
    margin: 100px 30px 0 0;
  }
}

/* g-header-sns-list
********************************/
@media all and (min-width: 768px) {
  .g-header-sns-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
}


/* g-header-sns-list list__item
********************************/
@media all and (min-width: 768px) {
  .g-header-sns-list .list__item {
    width: 30px;
  }
  .g-header-sns-list .--instagram {
    width: 20px;
  }
}
@media all and (min-width: 768px) {
  
}

/**************************************************************
* g-nav-container
**************************************************************/
.g-nav-container {
}
@media all and (min-width: 768px) {
  .g-nav-container {
  }
}
@media all and (min-width: 1361px) {
  
}
@media all and (max-width: 1360px) {
  .g-nav-container {
    display: none;
  }
}
@media all and (max-width: 767px) {

}

/* is-open
********************************/
.is-open .g-nav-container {
  display: block;
  position: fixed;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 50%;
  margin: 0;
  transform: translate(-50%, -50%);
}
.is-open .g-nav-container .g-nav-list {
  display: initial;
}


/* g-header-outer
**************************************************************/
.g-header-outer {
  margin: 0 auto;
}
@media all and (min-width: 768px) {
  .g-header-outer {
  }
}
@media all and (max-width: 767px) {
  .g-header-outer {
  }
}

/* g-header-inner
**************************************************************/
.g-header-inner {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
@media all and (min-width: 768px) {
  .g-header-inner {
    min-width: 64rem;
  }
}
@media all and (min-width: 768px) and (max-width: 1200px) {
  .g-header-inner {
  }
}
@media all and (max-width: 767px) {
  .g-header-inner {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    width: 92%;
    margin: 0 auto;
  }
}

/* g-nav
**************************************************************/
.g-nav {
}
@media all and (min-width: 768px) {
  .g-nav {
  }
}

/* is-open
********************************/
.is-open .g-nav-container {
}

/* g-nav-list
**************************************************************/
@media all and (min-width: 768px) {
  .g-nav-list {
    display: flex;
  }
}

/* list__item
********************************/
@media all and (min-width: 768px) {
  .g-nav-list .list__item.--st {
  }
}


/* item__link
********************************/
.g-nav-list .item__link {
  display: block;
  text-align: center;
  border-left: .1rem dashed #fff;
  border-right: .1rem dashed #fff;
  border-bottom: .1rem dashed #fff;
  transition: background-color var(--transition-speed);
}
.g-nav-list .--st .item__link {
  background-color: var(--accent-color-01);
}
@media all and (min-width: 1361px) {
  .g-nav-list .item__link {
    width: 16rem;
    padding: 6.7rem 0;
  }
}
@media all and (min-width: 768px) and (max-width: 1360px) {
  .g-nav-list .item__link {
    padding: 2rem 1rem;
    border-top: .1rem dashed #fff;
  }
}
@media all and (max-width: 767px) {
  .g-nav-list .item__link {
    padding: 2rem 1rem;
    border-top: .1rem dashed #fff;
  }
}
@media (hover: hover) {
  .g-nav-list .--st .item__link:hover {
    background-color: var(--accent-color-02);
  }
  .g-nav-list .list__item:not(.--st) .item__link:hover {
    background-color: var(--base-font-color);
  }
}

/* item__lbl
********************************/
.g-nav-list .item__lbl {
  position: relative;
  color: #fff;
  font-weight: bold;
  line-height: 1.5;
}
.g-nav-list .--st .item__lbl {
  
}
.g-nav-list .item__lbl::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  width: 0;
  height: .1rem;
  margin: 0 auto;
  transition: width var(--transition-speed);
}
@media all and (min-width: 768px) {
  .g-nav-list .item__lbl {
    font-size: 1.6rem;
  }
}
@media all and (max-width: 767px) {
  .g-nav-list .item__lbl {
    font-size: 1.6rem;
  }
}
@media (hover: hover) {
  .g-nav-list .list__item:not(.--st) .item__link:hover .item__lbl::before {
    width: 100%;
  }
}

/* is-open
********************************/
.is-open .g-nav-list .list__item:nth-child(n + 2) {
  margin: 3rem 0 0 0;
}
.is-open .g-nav-list .--st .item__link {
  background-color: var(--main-bg-color);
}
@media (hover: hover) {
  .is-open .g-nav-list .--st .item__link:hover {
    background-color: var(--accent-color-02);
  }
}


/* c-accent-btn-container
**************************************************************/
.g-nav-container .c-accent-btn-container {
  margin-top: 5rem;
}


/**************************************************************
* g-header-sub
**************************************************************/
.g-header-sub {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  margin: 72px 0 0;
}

/**************************************************************
* g-footer
**************************************************************/
.g-footer {
  overflow: hidden;
  position: relative;
}

@media all and (min-width: 768px) {
}
@media all and (max-width: 767px) {
}


/* c-outer
**************************************************************/
.g-footer .c-outer {
  position: relative;
  z-index: 1;
}
@media all and (max-width: 767px) {
  .g-footer .c-outer {
    width: 92%;
    margin-left: left;
    margin-right: auto;
  }
}


/* g-footer-contents
**************************************************************/
.g-footer-contents {
  position: relative;
  z-index: 1;
}
@media all and (min-width: 768px) {
  .g-footer-contents {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .--bottom .g-footer-contents {
    align-items: center;
  }
}
@media all and (min-width: 768px) and (max-width: 1360px) {}
@media all and (max-width: 767px) {}

/* g-footer-wrapper
**************************************************************/

/* --top
********************************/
.g-footer-wrapper.--top {
  background-color: var(--footer-bg-color);
}
@media all and (min-width: 768px) {
  .g-footer-wrapper.--top {
    padding: 12rem 0 0;
  }
}
@media all and (max-width: 767px) {
  .g-footer-wrapper.--top {
    padding: 8rem 0 0;
  }
}


/* --center
********************************/
.g-footer-wrapper.--center {
  padding-bottom: 8rem;
  background-color: var(--footer-bg-color);
}
@media all and (min-width: 768px) {
}
@media all and (max-width: 767px) {
  .g-footer-wrapper.--center {
    padding-top: 6rem;
  }
}


/* --bottom
********************************/
.g-footer-wrapper.--bottom {
  padding: 4rem 0;
  background-color: var(--main-bg-color);
}
@media all and (min-width: 768px) {}
@media all and (max-width: 767px) {}


/* g-footer-header
**************************************************************/
@media all and (min-width: 768px) {
  .g-footer-header {
    width: 26rem;
  }
}
@media all and (max-width: 767px) {}

/* g-footer-logo
********************************/

@media all and (min-width: 768px) {
  .g-footer-logo {
    width: 100%;
  }
}
@media all and (max-width: 767px) {
  .g-footer-logo {
    width: 18rem;
  }
}



/* g-footer-address-list-blk
**************************************************************/
@media all and (min-width: 768px) {
  .g-footer-address-list-blk {
    display: flex;
    flex-wrap: wrap;
  }
}

/* g-footer-address-list-container
********************************/
.g-footer-address-list .list__item {
  color: #fff;
  line-height: 2;
}
@media all and (min-width: 768px) {
  .g-footer-address-list-container {
    width: 22.619%;
    margin-top: 8rem;
  }
  .g-footer-address-list-blk .g-footer-address-list-container:nth-child(2n) {
    margin-left: 4.7619%;
  }
}
@media all and (max-width: 767px) {
  .g-footer-address-list-blk .g-footer-address-list-container:nth-child(n + 2) {
    margin-top: 4rem;
  }
}


/* list__item
********************************/
@media all and (min-width: 768px) {
  .g-footer-address-list .list__item {
    font-size: .833vw;
  }
  .g-footer-address-list .list__item:nth-child(n + 2) {
    margin-top: 1.4rem;
  }
}
@media all and (min-width: 1920px) {
  .g-footer-address-list .list__item {
    font-size: 1.6rem;
  }
}
@media all and (max-width: 767px) {
  .g-footer-address-list .list__item {
    font-size: 1.4rem;
  }
  .g-footer-address-list .list__item:nth-child(n + 2) {
    margin-top: .5rem;
  }
}

/* item__ttl
********************************/
.g-footer-address-list .item__ttl {
  font-weight: bold;
}


/* item__link
********************************/
.g-footer-address-list .item__link {
  position: relative;
}
.g-footer-address-list .item__link::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: .1rem;
  margin-bottom: -.6rem;
  background-color: #fff;
  transition: width var(--transition-speed);
}
@media (hover: hover) {
  .g-footer-address-list .item__link:hover::before {
    width: 0;
  }
}


/* g-footer-body
**************************************************************/
@media all and (min-width: 768px) {
  .g-footer-body {
    position: relative;
    width: 43.928%;
    margin-left: 0;
  }
}
@media all and (min-width: 768px) and (max-width: 1360px) {
  .g-footer-body {
    position: relative;
  }
}
@media all and (min-width: 1361px) {
  .g-footer-body {
  }
}

/* g-footer-nav-container
**************************************************************/
.g-footer-nav-container {}
@media all and (min-width: 768px) {
  .g-footer-nav-container {
  }
}
@media all and (min-width: 768px) and (max-width: 1200px) {
  .g-footer-nav-container {
  }
}
@media all and (max-width: 767px) {
  .g-footer-nav-container {
    margin-top: 4rem;
  }
}

/* g-footer-nav
********************************/
.g-footer-nav {}
@media all and (min-width: 768px) {
  .g-footer-nav {}
}
@media all and (max-width: 767px) {
  .g-footer-nav {}
}

/* g-footer-nav-list
********************************/
.g-footer-nav-list {
  display: flex;
  flex-wrap: wrap;
}
@media all and (min-width: 768px) {
  .g-footer-nav-list {
    justify-content: end;
  }
}
@media all and (max-width: 767px) {
  .g-footer-nav-list {
  }
}

/* list__item
********************************/
.g-footer-nav .list__item {
}
@media all and (min-width: 768px) {
  .g-footer-nav .list__item {
    margin-bottom: 2rem;
  }
  .g-footer-nav .list__item:nth-child(n + 2) {
    margin-left: 3rem;
  }
}
@media all and (max-width: 767px) {
  .g-footer-nav .list__item {
    width: 50%;
  }
  .g-footer-nav .list__item {
    margin-top: 2rem;
  }
}


/* item__lbl
********************************/
.g-footer-nav .item__lbl {
  position: relative;
  padding-bottom: 1rem;
  font-family: var(--main-ttl-font-family);
  color: #fff;
}
.g-footer-nav .item__lbl::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  width: 0;
  height: .1rem;
  margin: auto;
  background-color: #fff;;
  transition: width var(--transition-speed);
}
@media all and (min-width: 768px) {
  .g-footer-nav .item__lbl {
    font-size: 1.6rem;
  }
}
@media all and (max-width: 767px) {
  .g-footer-nav .item__lbl {
    font-size: 1.3rem;
  }
}
@media (hover: hover) {
  .g-footer-nav .item__link:hover .item__lbl::before {
    width: 100%;
  }
}


/* g-sns-list-container
**************************************************************/
@media all and (min-width: 768px) {
  .g-sns-list-container {
  }
}
@media all and (max-width: 767px) {
  .g-sns-list-container {
  }
}

/* g-sns-list
********************************/
.g-sns-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media all and (max-width: 767px) {
  .g-sns-list {
    justify-content: center;
  }
}

/* list__item
********************************/
@media all and (min-width: 768px) {
  .g-sns-list .list__item {
    width: 4rem;
  }
  .g-sns-list .list__item:nth-child(n + 2) {
    margin-left: 2rem;
  }
}
@media all and (max-width: 767px) {
  .g-sns-list .list__item {
    width: 4rem;
  }
  .g-sns-list .list__item:nth-child(n + 2) {
    margin-left: 2rem;
  }
}


/* g-footer-copyright
**************************************************************/
.g-footer-copyright {
  color: #fff;
}
@media all and (min-width: 768px) {
  .g-footer-copyright {
    font-size: 1.2rem;
  }
}
@media all and (max-width: 767px) {
  .g-footer-copyright {
    margin-top: 3rem;
    font-size: 1rem;
    text-align: center;
  }
}


/* g-footer-bg
**************************************************************/
.g-footer-bg {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 0;
  height: 0;
}
.g-footer-bg::before {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 0;
  background-image: url(../img/common/footer_bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media all and (min-width: 768px) {
  .g-footer-bg {
    width: 84.37%;
    margin: 0 -14.791% -7.9166% 0;
    padding-top: 61.718%;
  }
  .g-footer-bg::before {
    opacity: .06;
    width: 100%;
    height: 100%;
  }
}
@media all and (min-width: 1920px) {

}