@charset "utf-8";


/* RESET
----------------------------------------------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video,picture {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  line-height: 1.5em;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  margin : 0;
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
}

img {
  vertical-align: bottom;
  border: none;
}
picture {
  display: block;
}
/* ----------------------------------------------

 * 設定をしなおす

---------------------------------------------- */

:root {
  --inner: 102.5rem;
	--font-zen: yakuhanjp,"Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo,sans-serif;
	--font-mont: "Montserrat", sans-serif;
	--font-tenor: "Tenor Sans", sans-serif;
  --font-op: "Overpass", sans-serif;
	--font-shippori: "Shippori Mincho", serif;
}

@media (prefers-reduced-motion: reduce) {
  * {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
  }
}
html {
  -webkit-font-smoothing: antialiased;
  font-size: 62.5%;
}
@media screen and (max-width: 1200px) {
  html {
    font-size: 0.7320644217vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.6666666667vw;
  }
}
body {
  margin: 0 auto;
  padding: 0;
  font-size: 1.6rem;
  line-height: 1.8em;
  color: #575f65;
  height: 100%;
  font-family: var(--font-zen);
  font-weight: 400;
  position: relative;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.3rem;
  }
}
.en-mont {
  font-family: var(--font-mont);
  font-optical-sizing: auto;
  font-style: normal;
}
.en-tenor {
  font-family: var(--font-tenor);
}
.en-op {
  font-family: var(--font-op);
}
.min {
  font-family: var(--font-shippori);
}

table {
  margin : 0;
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
}

img {
  vertical-align: bottom;
  border: none;
  max-width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
}
main {
  display: block;
  position: relative;
}

a {
  outline:none;
  color: #59574c;
}

a:hover {
  text-decoration: none;
}

a,a:hover,a:hover img,button,input {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  text-decoration: none;
}

a:hover {
  filter: alpha(opacity=80);
  -moz-opacity:0.80;
  opacity:0.80;
}

* {
  -webkit-box-sizing:border-box;
  -moz-box-sizing:border-box;
  box-sizing:border-box;
}


/* -----------------------------------------------
 * COMMON
----------------------------------------------- */
input[type=text]:focus {
    outline: none;
}
#main {
  overflow: hidden;
}
.container {
  max-width: calc(var(--inner) + 4rem);
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}
.large_conteiner {
  max-width: calc(116rem + 4rem);
}


@media only screen and ( max-width : 767px ) {
  .container {
    max-width: 100%;
  }
  .section {
    padding: 45px 0;
  }
  .br_pc {
    display: none;
  }
  .sp_none{display:none !important;}
}
@media print, screen and ( min-width : 768px ) {
  .section {
    padding: 60px 0;
  }
  .br_sp {
    display: none;
  }
  .sp { display:none !important; }
}
/* ---------------------------------------------------------------------------------------------

　   FLEX

--------------------------------------------------------------------------------------------- */
.d-flex {
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-inline-flex {
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}
.flex-row {
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}

.flex-column {
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

.flex-row-reverse {
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -ms-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important;
}

.flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}

.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
  flex-wrap: wrap-reverse !important;
}
.justify-content-start {
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}

.justify-content-end {
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}

.justify-content-center {
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.justify-content-between {
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

.align-items-start {
  -ms-flex-align: start !important;
  align-items: flex-start !important;
}

.align-items-end {
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}

.align-items-center {
  -ms-flex-align: center !important;
  align-items: center !important;
}


@media (min-width: 576px) {
  .d-sm-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .justify-content-sm-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-sm-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .align-items-sm-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
}

@media (min-width: 768px) {
  .d-md-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .justify-content-md-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-md-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .align-items-md-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-md-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-md-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
}

@media (min-width: 992px) {
  .d-lg-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .justify-content-lg-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-lg-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .align-items-lg-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
}

@media (min-width: 1200px) {
  .d-xl-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xl-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-xl-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .align-items-xl-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
}

/* ---------------------------------------------------------------------------------------------

　   TEXT

--------------------------------------------------------------------------------------------- */
.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}
@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important;
  }
  .text-sm-right {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}

@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }
  .text-md-right {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}

@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important;
  }
  .text-lg-right {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}

@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important;
  }
  .text-xl-right {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}


/* ---------------------------------------------------------------------------------------------

　   HEADER

--------------------------------------------------------------------------------------------- */
#header {
  position: relative;
  height: 100svh;
}
#header .mv_img {
  width: 100%;
  height: 100svh;
}

#head_logo {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}
#head_logo img {
  width: 100%;
}
#scroll {
  position: absolute;
  z-index: 2;
  left: 50%;
  transform: translateX(-50%);
}
#scroll a {
  display: block;
}
#scroll a img {
  width: 4.5rem;
}
@media only screen and ( max-width : 767px ) {
  #head_logo {
    width: 90%;
  }
  #scroll {
    bottom: 5rem;
  }
}
@media print, screen and ( min-width : 768px ) {
  #header {
  }
  #head_logo {
    width: 42.9vw;
    max-width: 80rem;
  }
  #scroll {
    bottom: 4.5rem;
  }
}




/* ---------------------------------------------------------------------------------------------

　   COMMON

--------------------------------------------------------------------------------------------- */

.fit {
  -o-object-fit: cover;
  object-fit: cover;
  font-family: 'object-fit: cover;';
  width: 100%;
  height: 100%;
}

@media only screen and ( max-width : 767px ) {
  .sec {
    padding: 7rem 0;
  }
}
@media print, screen and ( min-width : 768px ) {
  .sec {
    padding: 17rem 0;
  }
}

/* ---------------------------------------------------------------------------------------------

　   COLOR RENEWAL

--------------------------------------------------------------------------------------------- */
.color-renewal-title h2 {
  letter-spacing: .2em;
  line-height: 1em;
}
.color-renewal-text {
  letter-spacing: .05em;
}
.color-renewal-text p {
  line-height: 2em;
  letter-spacing: .1em;
}
.detail-text h4 {
  letter-spacing: .2em;
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
}
.detail-text p {
  line-height: 2em;
}
.detail-text .detail-lead-text {
  letter-spacing: .1em;
  font-weight: 500;
}
.color-renewal-text h3 {
  font-weight: 400;
}

.line {
  display: block;
  width: 1rem;
  position: relative;
  height: 9rem;
  margin: 0 auto;
}
.line:after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #575f65;
  width: .5px;
  height: 0;
  transition: height .5s;
  z-index: 1;
  opacity: .5;
  animation: scroll 2s infinite;
}

.line.active:after {
  height: 100%;
  transition-delay: .5s;
}
/* 線のアニメーション */
@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

@media only screen and ( max-width : 767px ) {
  #color-renewal .line {
    margin: 3rem auto;
  }
  .color-renewal-img {
    margin-left: -2rem;
    margin-right: -2rem;
    margin-bottom: 6rem;
  }
  .color-renewal-title {
    font-size: 3.9rem;
    text-align: center;
    margin-bottom: 5rem;
  }
  .color-renewal-text {
    position: relative;
  }
  .color-renewal-text h3 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
  }
  .color-renewal-text p {
    text-align: center;
    font-size: 1.7rem;
  }
  .color-renewal-detail {
    flex-direction: column;
    max-width: 27rem;
    margin: 0 auto;
  }
  .detail-img {
    order: 2;
  }
  .detail-text {
    order: 1;
  }
  .detail-lead-text {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
  .detail-img {
    margin-top: 6rem;
  }
}
@media print, screen and ( min-width : 768px ) {
  .color-renewal-img {
    max-width: 89rem;
    margin: 0 auto 16rem;
  }
  .color-renewal-title {
    width: 40.8rem;
    display: flex;
    justify-content: center;
    font-size: 6.3rem;
  }
  .color-renewal-text {
    width: 47rem;
    font-size: 2rem;
  }
  .color-renewal-text h3 {
    font-size: 3rem;
    margin-bottom: 2rem;
  }
  .color-renewal-text {
    white-space: nowrap;
  }
  .color-renewal-detail {
    margin-top: 3rem;
  }
  .detail-img {
    width: 40.8rem;
  }
  .detail-text {
    width: 47rem;
    font-size: 1.5rem;
  }
  .detail-lead-text {
    font-size: 2rem;
    margin-bottom: 3.5rem;
  }
  #color-renewal .line {
    margin-bottom: 9rem;
  }
}
/* ---------------------------------------------------------------------------------------------

　   COLOR COMMON

--------------------------------------------------------------------------------------------- */
.color-main {
  position: relative;
}
.color-main img {
  width: 100%;
  display: block;
  position: relative;
  z-index: 1;;
}
.color-main .color-main-title {
  position: absolute;
  z-index: 2;
  color: #fff;
  line-height: 1.3em;
  letter-spacing: .05em;
  font-weight: 400;
}
.color-sec:nth-child(odd) .color-main-title {
  text-align: right;
}
.color-title {
  font-size: 1.2rem;
  letter-spacing: .15em;
  text-align: center;
  font-weight: 700;
  position: relative;
  margin-bottom: 3rem;
}
.color-title-wrap {
}
.color-title .line {
  content: "";
  position: absolute;
  width: 1px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  transition: height .5s;
}
.color-title-wrap .line:after {
  opacity: 1;
}
.color-title-wrap .line.active {
  height: 9rem;
}
.wallet-image {
  position: relative;
}
.wallet-image a {
  display: block;
}
.wallet-image-title {
  position: absolute;
  color: #fff;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  letter-spacing: .05em;
  z-index: 10;
}

.color-sec .btn {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 4.5rem;
  width: 27rem;
  margin: 0 auto;
  position: relative;
  border-radius: .5rem;
  letter-spacing: .2em;
  padding-right: 4.5rem;
}
.color-sec .btn:after {
  content: "";
  position:absolute;
  background: url(../img/arrow-white.png) no-repeat center / 1rem auto;
  right: 0;
  top: 0;
  border-left: 1px solid #fff;
}
#charcoal-black .color-title {
  color: #5c5d5f;
}
#charcoal-black .color-title-wrap .line:after {
  background: #5c5d5f;
}
#charcoal-black .btn {
  background: #5c5d5f;
}
#warm-grey .color-title {
  color: #9a9fa3;
}
#warm-grey .color-title-wrap .line:after {
  background: #9a9fa3;
}
#warm-grey .btn {
  background: #9a9fa3;
}
#deep-brown .color-title {
  color: #8d6449;
}
#deep-brown .color-title-wrap .line:after {
  background: #8d6449;
}
#deep-brown .btn {
  background: #8d6449;
}
#slate-khaki .color-title {
  color: #928372;
}
#slate-khaki .color-title-wrap .line:after {
  background: #928372;
}
#slate-khaki .btn {
  background: #928372;
}
#deep-green .color-title {
  color: #2e8b57;
}
#deep-green .color-title-wrap .line:after {
  background: #2e8b57;
}
#deep-green .btn {
  background: #2e8b57;
}
#mustard .color-title {
  color: #e3b400;
}
#mustard .color-title-wrap .line:after {
  background: #e3b400;
}
#mustard .btn {
  background: #e3b400;
}
#slate-blue .color-title {
  color: #6080a2;
}
#slate-blue .color-title-wrap .line:after {
  background: #6080a2;
}
#slate-blue .btn {
  background: #6080a2;
}
#coral-pink .color-title {
  color: #f9aa8f;
}
#coral-pink .color-title-wrap .line:after {
  background: #f9aa8f;
}
#coral-pink .btn {
  background: #f9aa8f;
}
@media only screen and ( max-width : 767px ) {
  .color-contents .container {
    display: flex;
    flex-direction: column;
  }
  .color-sec:nth-child(even) .container {
    align-items: flex-end;
  }
  .color-main-title {
    font-size: 1.9rem;
  }
  .color-sec:nth-child(odd) .color-main-title {
    top: 2rem;
    right: 2rem;
  }
  .color-sec:nth-child(even) .color-main-title {
    left: 2rem;
    bottom: 2rem;
  }
  .color-contents .container {
    width: 80.6%;
  }
  .color-title-wrap {
    margin-bottom: 6rem;
    width: 100%;
  }
  .color-contents-01,
  .color-contents-02 {
    display: contents;
  }
  .color-contents-01 .color-title {
    order: 1;
  }
  .color-contents-02 .wallet-image {
    order: 2;
    margin-bottom: 6rem;
  }
  .color-contents-01 .wallet-image {
    order: 3;
    width: 84%;
    margin-bottom: 6.4rem;
  }
  .color-contents-02 .btn {
    order: 4;
  }
  .wallet-image-title {
    font-size: 1.1rem;
    right: 1rem;
    bottom: 1.5rem;
  }
  .color-sec .btn {
    width: 22rem;
    height: 3.6rem;
    font-size: 1.2rem;
    padding-right: 3.6rem;
  }
  .color-sec .btn:after {
    width: 3.6rem;
    height: 3.6rem;
    background-size: .8rem;
  }
}
@media print, screen and ( min-width : 768px ) {
  .color-sec:nth-child(even) .color-contents .container {
    flex-direction: row-reverse;
  }
  .color-main .color-main-title {
    font-size: 6rem;
  }
  .color-sec:nth-child(odd) .color-main-title {
    top: 8rem;
    right: 8rem;
  }
  .color-sec:nth-child(even) .color-main-title {
    left: 8rem;
    bottom: 8rem;
  }
  .color-title-wrap {
    margin-bottom: 16rem;
  }
  .color-contents-01 {
    width: 42rem;
  }
  .color-contents-02 {
    width: 51.4rem;
  }
  .wallet-image-title {
    font-size: 1.4rem;
    right: 1.5rem;
    bottom: 2rem;
  }
  .color-contents-02 .btn {
    margin-top: 9rem;
  }
  .color-sec .btn {
    height: 4.5rem;
    width: 27rem;
    font-size: 1.5rem;
  }
  .color-sec .btn:after {
    width: 4.5rem;
    height: 4.5rem;
  }
}

/* ---------------------------------------------------------------------------------------------

　   PAL SERIES

--------------------------------------------------------------------------------------------- */
.pal-series-list .btn {
  color: #575f65;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 4.5rem;
  width: 19.2rem;
  margin: 0 auto;
  position: relative;
  border-radius: .5rem;
  letter-spacing: .2em;
  border: 1px solid #d5d7d8;
  padding-right: 4.5rem;
}
.pal-series-list .btn:after {
  content: "";
  position:absolute;
  background: url(../img/arrow.png) no-repeat center / 1rem auto;
  right: 0;
  top: 0;
  border-left: 1px solid #d5d7d8;
}
.pal-series-item-title {
  text-align: center;
  letter-spacing: .025em;
  white-space: nowrap;
  font-weight: 300;
}
.pal-series-item {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.pal-series-item-text {
  flex-grow: 1;
}
#pal-series h2 {
  font-weight: 400;
}
@media only screen and ( max-width : 767px ) {
  #pal-series h2 {
    font-size: 1.8rem;
    max-width: 80.6%;
    margin: 0 auto;
  }
  .pal-series-list {
    max-width: 80.6%;
    margin: 0 auto;
  }
  .pal-series-item {
    width: 48.5%;
    margin-top: 3rem;
    margin-right: 3%;
  }
  .pal-series-item:nth-child(2n) {
    margin-right: 0;
  }
  .pal-series-item-title {
    font-size: 1.4rem;
    margin-bottom: 2rem;
  }
  .pal-series-list .btn {
    max-width: 8rem;
    height: 3rem;
    font-size: 1rem;
    padding-right: 3rem;
  }
  .pal-series-list .btn:after {
    width: 3rem;
    height: 3rem;
    background-size: .6rem;
  }
}
@media print, screen and ( min-width : 768px ) {
  #pal-series h2 {
    font-size: 4.6rem;
    margin-bottom: 4rem;
  }
  .pal-series-list .btn {
    font-size: 1.5rem;
  }
  .pal-series-list .btn:after {
    width: 4.5rem;
    height: 4.5rem;
  }
  .pal-series-item {
    width: 20%;
    margin-top: 6rem;
    margin-right: 6.66666667%;
  }
  .pal-series-item:nth-child(4n) {
    margin-right: 0;
  }
  .pal-series-item-img {
    max-width: 20rem;
    margin: 0 auto;
  }
  .pal-series-item-title {
    margin-bottom: 2rem;
  }
}


