@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);
  word-wrap: break-word;
  overflow-wrap: break-word;
}


/* 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);
  }
}


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


/**************************************************************
* g-header
**************************************************************/
.g-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  transition: width, var(--transition-speed);
}
.g-header::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  height: 100vh;
  background-color: var(--hamberger-overlay-bg-color);
  transform: translate(100%, 0);
  transition: transform, var(--transition-speed);
}
@media all and (min-width: 768px) {
  .g-header {
    width: 16rem;
    height: 100vh;
  }
  .g-header.is-through {
    width: 10rem;
  }
}
@media all and (max-width: 767px) {
  .g-header {
    background-color: #fff;
  }
}


/* is-open
**************************************************************/
.is-open.g-header {
  height: 100vh;
}
.is-open.g-header::before {
  width: 100%;
  transform: translate(0, 0);
}
@media all and (max-width: 767px) {
  .is-open.g-header {
    background-color: transparent;
  }
}


/* g-header-outer
**************************************************************/
.g-header-outer {
  height: 100%;
  padding-left: 0;
  padding-right: 0;
}


/* g-header-inner
**************************************************************/
.g-header-inner {
  height: 100%;
}


/* g-header-head
**************************************************************/
@media all and (min-width: 768px) {
  .g-header-head {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    z-index: 2;
    padding: 4.6rem 0;
    border-radius: 0 0 8rem 0;
    background-color: #fff;
  }
}
@media all and (max-width: 767px) {
  .g-header-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    width: 4.6rem;
    margin: 0 0 0 4%;
    padding: 1rem 0;
  }
}

/* is-open
********************************/
.is-open .g-header-head {
  z-index: 2;
}
@media all and (max-width: 767px) {
  .is-open .g-header-head {
    position: fixed;
    top: 0;
    left: 0;
  }
}

/* g-header-logo
**************************************************************/
.g-header-logo img {
  width: 100%;
}
@media all and (min-width: 768px) {
  .g-header-logo {
    width: 13.5rem;
  }
  .g-header.is-through .g-header-logo {
    width: calc(100% - 2rem);
  }
}
@media all and (max-width: 767px) {
  .g-header-logo {
    width: 100%;
  }
  .g-header-logo img {
    width: 250%;
    margin: 13px 0;
  }
}


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

/* g-header-sns
**************************************************************/
.g-header-sns-list .list__item:nth-child(n + 2) {
  margin-left: 2rem;
}
.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 img {
    width: 100%;
  }
}
@media all and (min-width: 1501px) {
  .g-header-sns {
    margin-left: 4rem;
  }
}
@media (hover: hover) {
  .g-header-sns-list .item__link:hover {
    opacity: var(--opacity-degree);
  }
}

/* is-open
********************************/
.is-open .g-header-sns {
  display: block;
  margin-top: 4rem;
  margin-left: 0;
}


/* g-header-sns-list
********************************/
.g-header-sns-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}


/* is-open
********************************/
.is-open .g-header-sns-list {
  justify-content: center;
}
@media all and (min-width: 768px) {}

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


/* g-header-cv
**************************************************************/
.g-header-cv {
  position: absolute;
}
@media all and (min-width: 768px) {
  .g-header-cv {
    left: 0;
    bottom: 0;
    z-index: 5;
    width: 21rem;
    margin: 0 0 5.5rem -5.5rem;
    transform: rotate(90deg);
  }
}
@media all and (max-width: 767px) {
  .g-header-cv {
    top: 0;
    right: 0;
    z-index: 5;
    width: 14rem;
    margin: 0 8rem 0 0;
  }
}

/* g-header-cv__link
********************************/
.g-header-cv__link {
  position: relative;
  width: 100%;
  text-align: center;
  background-color: var(--accent-color-01);
  transition: background var(--transition-speed);
}
@media all and (min-width: 768px) {
  .g-header-cv__link {
    display: block;
    padding: 3.2rem 0;
  }
}
@media all and (max-width: 767px) {
  .g-header-cv__link {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 2.2rem 0;
  }
}
@media (hover: hover) {
  .g-header-cv__link:hover {
    background-color: var(--accent-color-02);
  }
}

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

/* g-header-cv__link-lbl
********************************/
.g-header-cv__link-lbl {
  color: #fff;
  font-family: var(--main-ttl-font-family);
  font-weight: 700;
  letter-spacing: .2rem;
}
@media all and (min-width: 768px) {
  .g-header-cv__link-lbl {
    width: 10rem;
    font-size: 1.6rem;
  }
}
@media all and (max-width: 767px) {
  .g-header-cv__link-lbl {
    font-size: 1.2rem;
  }
}

/* g-header-cv__link-icon
********************************/
.g-header-cv__link-icon {
  position: relative;
  border-radius: 100%;
  background-color: #fff;
}
.g-header-cv__link-icon::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background-image: url(../img/common/icon/arrow_orange.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transform: rotate(-90deg);
}
@media all and (min-width: 768px) {
  .g-header-cv__link-icon {
    width: 3.6rem;
    height: 3.6rem;
    margin-left: .4rem;
  }
  .g-header-cv__link-icon::before {
    width: 1.8rem;
    height: 1.8rem;
  }
}
@media all and (max-width: 767px) {
  .g-header-cv__link-icon {
    width: 1.8rem;
    height: 1.8rem;
    margin-left: 1rem;
  }
  .g-header-cv__link-icon::before {
    width: 1rem;
    height: 1rem;
  }
}


/**************************************************************
* g-nav-container
**************************************************************/
.g-nav-container {
  display: none;
}
@media all and (min-width: 768px) {
  .g-nav-container {}
}
@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;
}
@media all and (max-width: 767px) {
  .is-open .g-nav-container {
    width: 92%;
  }
}


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


/* g-header-inner
**************************************************************/
.g-header-inner {
  margin: 0 auto;
}
@media all and (min-width: 768px) {
  .g-header-inner {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 10rem;
    height: 100%;
    background-color: #fff;
  }
}
@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
**************************************************************/
@media all and (min-width: 768px) {}

/* is-open
********************************/

/* 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:nth-child(n + 2) {
    margin-left: 3rem;
  }
}


/* item__link
********************************/
.g-nav-list .item__link {
  display: block;
  text-align: center;
}
@media all and (min-width: 768px) {}
@media all and (max-width: 767px) {}

/* item__lbl
********************************/
.g-nav-list .item__lbl {
  position: relative;
  color: var(--base-font-color);
  font-weight: bold;
  line-height: 1.5;
}
.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);
  background-color: var(--accent-color-04);
}
@media all and (min-width: 768px) {
  .g-nav-list .item__lbl {
    font-size: 2rem;
  }
}
@media all and (max-width: 767px) {
  .g-nav-list .item__lbl {
    font-size: 1.6rem;
  }
}
@media (hover: hover) {
  .g-nav-list .list__item .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);
}
.is-open .g-nav-list .item__lbl::before {
  background-color: var(--base-font-color);
}
@media (hover: hover) {}


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


/**************************************************************
* g-footer
**************************************************************/
.g-footer {
  position: relative;
  z-index: 3;
}
@media all and (min-width: 768px) {}
@media all and (max-width: 767px) {}


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


/* g-footer-pageTop
**************************************************************/
.g-footer-pageTop {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, 0);
}
.g-footer-pageTop::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 0;
  width: 100%;
  height: 0;
  padding-top: 38rem;
  border-radius: 100%;
  background-color: var(--footer-bg-color);
}
@media all and (min-width: 768px) {
  .g-footer-pageTop {
    width: 69.3rem;
    margin-top: -10rem;
  }
}

@media all and (max-width: 767px) {
  .g-footer-pageTop {
    width: 100%;
    margin-top: -6rem;
  }
}


/* pageTop
********************************/
.pageTop {
  cursor: pointer;
  position: relative;
  z-index: 1;
  margin-left: auto;
  margin-right: auto;
  transition: transform var(--transition-speed);
}
@media all and (min-width: 768px) {
  .pageTop {
    width: 12rem;
    margin-top: 6.4rem;
  }
}
@media all and (max-width: 767px) {
  .pageTop {
    width: 10rem;
    margin-top: 4.4rem;
  }
}
@media (hover: hover) {
  .pageTop:hover {
    transform: translate(0, -2rem);
  }
}


/* pageTop__txt
********************************/
.g-footer-pageTop .pageTop__txt {
  color: #fff;
  font-weight: 700;
  font-family: var(--main-ttl-font-family);
  text-align: center;
}
@media all and (min-width: 768px) {
  .g-footer-pageTop .pageTop__txt {
    margin-top: 2rem;
    font-size: 1.6rem;
    letter-spacing: .2rem;
  }
}
@media all and (max-width: 767px) {
  .g-footer-pageTop .pageTop__txt {
    margin-top: 1.6rem;
    font-size: 1.5rem;
    letter-spacing: .1rem;
  }
}


/* pageTop__icon
********************************/
.g-footer-pageTop .pageTop__icon {
  display: block;
  position: relative;
  width: 100%;
  margin: 0 auto;
  border-radius: 100%;
  background-color: #fff;
}
.g-footer-pageTop .pageTop__icon::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  margin: auto;
  background-image: url(../img/common/icon/arrow_brown.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transform: rotate(180deg);
}
@media all and (min-width: 768px) {
  .g-footer-pageTop .pageTop__icon {
    height: 12rem;
  }
  .g-footer-pageTop .pageTop__icon::before {
    width: 5.2rem;
    height: 5.4rem;
  }
}
@media all and (max-width: 767px) {
  .g-footer-pageTop .pageTop__icon {
    width: 6rem;
    height: 6rem;
  }
  .g-footer-pageTop .pageTop__icon::before {
    width: 3.2rem;
    height: 3.2rem;
  }
}


/* -outer
**************************************************************/
.g-footer-outer {
  position: relative;
  z-index: 1;
}
@media all and (max-width: 767px) {}


/* g-footer-inner
**************************************************************/
@media all and (max-width: 767px) {
  .g-footer-inner {
    width: 100%;
  }
}



/* g-footer-contents
**************************************************************/
.g-footer-contents {
  position: relative;
  z-index: 1;
}
@media all and (min-width: 768px) {}
@media all and (min-width: 768px) and (max-width: 1360px) {}
@media all and (max-width: 767px) {}


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


/* g-footer-header
**************************************************************/
@media all and (min-width: 1201px) {
  .g-footer-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media all and (min-width: 768px) and (max-width: 1200px) {}
@media all and (max-width: 767px) {}


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

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


/* g-footer-logo__link
********************************/
.g-footer-logo__link {
  color: #fff;
  font-family: var(--main-ttl-font-family);
  font-weight: 700;
  letter-spacing: .8rem;
}
@media all and (min-width: 768px) {
  .g-footer-logo__link {
    font-size: 4rem;
  }
}
@media all and (max-width: 767px) {
  .g-footer-logo__link {
    font-size: 3.2rem;
  }
}

/* g-footer-logo__text
********************************/
.g-footer-logo__text {
  color: #fff;
  font-family: var(--main-ttl-font-family);
  font-weight: 700;
  letter-spacing: .8rem;
  font-size: 3rem;
}
@media all and (max-width: 767px) {
  .g-footer-logo__text {
    font-size: 2.2rem;
    letter-spacing: .4rem;
  }
}

/* g-footer-logo__des
********************************/
.g-footer-logo__des {
  color: #fff;
  line-height: 1.5;
}
@media all and (min-width: 768px) {
  .g-footer-logo__des {
    margin-top: .8rem;
    font-size: 1.6rem;
  }
}
@media all and (max-width: 767px) {
  .g-footer-logo__des {
    margin-top: .8rem;
    font-size: 1.4rem;
  }
}


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


/* g-footer-link
**************************************************************/
@media all and (min-width: 768px) {
  .g-footer-link {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: end;
  }
}

/* c-btn-container
********************************/
.g-footer-link .c-btn-container {
  margin: 0;
}


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


/* list__item
********************************/
.g-footer-address-list .list__item {
  display: flex;
  flex-wrap: wrap;
}
@media all and (min-width: 768px) {
  .g-footer-address-list .list__item {
    margin-top: .4rem;
  }
}
@media all and (max-width: 767px) {
  .g-footer-address-list .list__item {}
  .g-footer-address-list .list__item {
    margin-top: .4rem;
  }
}

/* item__name
********************************/
.g-footer-address-list .item__name {
  margin-right: 2rem;
  color: var(--base-bg-color);
  font-weight: bold;
  line-height: 1.5;
}
@media all and (min-width: 768px) {
  .g-footer-address-list .item__name {
    width: 6rem;
    font-size: 1.4rem;
  }
}
@media all and (max-width: 767px) {
  .g-footer-address-list .item__name {
    width: 6rem;
    font-size: 1.3rem;
  }
}

/* item__des
********************************/
.g-footer-address-list .item__des {
  color: var(--base-bg-color);
  line-height: 1.5;
}
@media all and (min-width: 768px) {
  .g-footer-address-list .item__des {
    width: calc(100% - 6rem - 2rem);
    font-size: 1.6rem;
  }
}
@media all and (max-width: 767px) {
  .g-footer-address-list .item__des {
    width: calc(100% - 6rem - 2rem);
    font-size: 1.4rem;
  }
}


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

/* g-footer-nav-container
**************************************************************/
@media all and (min-width: 768px) {
  .g-footer-nav-container {
    display: flex;
    justify-content: end;
    width: calc(100% - 60.2rem - 8rem);
  }
}
@media all and (min-width: 768px) and (max-width: 1200px) {
  .g-footer-nav-container {
    display: block;
    width: 100%;
    margin-top: 8rem;
  }
}
@media all and (max-width: 767px) {
  .g-footer-nav-container {
    margin-top: 4rem;
  }
}


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


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

/* list__item
********************************/
@media all and (min-width: 768px) {
  .g-footer-nav .list__item {
    margin: 0 3rem 2rem 0;
  }
}
@media all and (max-width: 767px) {
  .g-footer-nav .list__item {
    width: 44%;
    margin: 0 6% 2rem 0;
  }
}


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


/* g-sns-list-container
**************************************************************/
.g-sns-list-container {
  position: relative;
}
.g-sns-list-container::before {
  content: "SHARE";
  display: block;
  color: #fff;
  font-family: var(--main-ttl-font-family);
}
@media all and (min-width: 768px) {
  .g-sns-list-container::before {
    position: absolute;
    top: 50%;
    left: 0;
    font-size: 1.6rem;
    letter-spacing: .2rem;
    transform: translate(0, -50%);
  }
}
@media all and (max-width: 767px) {
  .g-sns-list-container {
    margin: 4rem 0 0;
  }
  .g-sns-list-container::before {
    margin-bottom: 1.6rem;
    font-size: 1.4rem;
    letter-spacing: .1rem;
  }
}

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

/* list__item
********************************/
.g-sns-list .--white img {
  background-color: var(--base-bg-color);
}
.g-sns-list .--circle img {
  border-radius: 100%;
}
@media all and (min-width: 768px) {
  .g-sns-list .list__item {
    width: 4rem;
    margin-left: 7rem;
  }
  .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: var(--base-bg-color);
}
@media all and (min-width: 768px) {
  .g-footer-copyright {
    font-size: 1.4rem;
  }
}
@media all and (max-width: 767px) {
  .g-footer-copyright {
    margin-top: 6rem;
    font-size: 1.1rem;
    text-align: right;
  }
}