/* ========================================

common

======================================== */
.en_r {
  font-family: "Shippori Antique", sans-serif;
  font-weight: 400;
}

.is-fade > *:not(.is-not) {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: all 0.6s cubic-bezier(0.37, 0, 0.63, 1);
  transition: all 0.6s cubic-bezier(0.37, 0, 0.63, 1);
}
.is-fade > .is-not {
  opacity: 0;
  -webkit-transition: all 0.6s cubic-bezier(0.37, 0, 0.63, 1);
  transition: all 0.6s cubic-bezier(0.37, 0, 0.63, 1);
}
.is-fade.fadeIn > * {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.box-fade {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: all 0.6s cubic-bezier(0.37, 0, 0.63, 1);
  transition: all 0.6s cubic-bezier(0.37, 0, 0.63, 1);
}
.box-fade.fadeIn {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.p_hover a:hover {
  opacity: 0.7;
}

.svg.c_white svg {
  fill: #fff;
}
.svg.c_black svg {
  fill: #000;
}

.img-fit {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.img-fit::before {
  width: 100%;
  height: 0;
  content: '';
  display: block;
  padding-top: 100%;
  position: relative;
}
.img-fit img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
  -webkit-transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}

.replace_img {
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50% 50%;
}

.l_tel {
  pointer-events: none;
}

@media screen and (max-width: 800px) {
  .l_tel {
    pointer-events: auto;
  }
}
/* ========================================

link

======================================== */
.link_arrow a::after {
  -webkit-transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}
@media screen and (min-width: 800px) {
  .link_arrow a:hover {
    opacity: 0.7;
  }
  .link_arrow a:hover::after {
    translate: 4px 0px;
  }
}

.cmn_link {
  position: relative;
  padding: 120px 0;
  z-index: 10;
}
.cmn_link_inner {
  max-width: 1200px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.cmn_link .link {
  width: 48.3334%;
}
.cmn_link .link a {
  color: #fff;
  font-size: 22px;
  letter-spacing: 0.06em;
  width: 100%;
  height: 150px;
  position: relative;
  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;
  border-radius: 100px;
}
.cmn_link .link a::after {
  width: 116px;
  height: 122px;
  display: block;
  position: absolute;
  right: 48px;
  bottom: 0;
  content: '';
  background-repeat: no-repeat;
  background-position: 50% 100%;
  background-size: contain;
}
@media screen and (min-width: 800px) {
  .cmn_link .link a:hover {
    opacity: 0.6;
  }
}
.cmn_link .link._about a {
  background-color: var(--c_blue);
}
.cmn_link .link._about a::after {
  background-image: url(../img/common/cmn_link_illust01.png);
}
.cmn_link .link._initiative a {
  background-color: var(--c_orange);
}
.cmn_link .link._initiative a::after {
  background-image: url(../img/common/cmn_link_illust02.png);
}

@media screen and (max-width: 800px) {
  .cmn_link {
    padding: 0;
  }
  .cmn_link .link {
    width: 50%;
  }
  .cmn_link .link a {
    font-size: 13px;
    height: 110px;
    border-radius: 0;
  }
  .cmn_link .link a::after {
    width: 100%;
    height: 58px;
    right: 0;
    position: absolute;
    bottom: 50%;
    translate: 0% -29px;
  }
  .cmn_link .link a span {
    width: 83.7334%;
    height: 58px;
    display: block;
    background-color: #fff;
    border-radius: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .cmn_link .link._about a {
    color: var(--c_blue);
    background-color: var(--c_blue);
  }
  .cmn_link .link._about a::after {
    background-image: url(../img/common/cmn_link_illust01_sp.png);
  }
  .cmn_link .link._initiative a {
    color: var(--c_orange);
    background-color: var(--c_orange);
  }
  .cmn_link .link._initiative a::after {
    background-image: url(../img/common/cmn_link_illust02_sp.png);
  }
}
/* ========================================

column

======================================== */
.column_list_item a, .cmn_column_list_item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 800px) {
  .column_list_item a:hover .img img, .cmn_column_list_item a:hover .img img {
    opacity: 0.7;
  }
  .column_list_item a:hover h3, .cmn_column_list_item a:hover h3,
  .column_list_item a:hover .date,
  .cmn_column_list_item a:hover .date,
  .column_list_item a:hover .txt,
  .cmn_column_list_item a:hover .txt {
    color: var(--c_blue);
  }
}
.column_list_item .img, .cmn_column_list_item .img {
  aspect-ratio: 335 / 216;
  overflow: hidden;
  margin-bottom: 22px;
  background-color: #fff;
  border-radius: 15px;
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}
.column_list_item .img img, .cmn_column_list_item .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.column_list_item h3, .cmn_column_list_item h3 {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.88;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.column_list_item .cat, .cmn_column_list_item .cat {
  margin-bottom: 16px;
}
.column_list_item .cat span, .cmn_column_list_item .cat span {
  color: var(--c_blue);
  font-size: 13px;
  display: inline-block;
  padding: 5.5px 13px;
  border: 1px solid var(--c_blue);
  border-radius: 50px;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}
.column_list_item .date, .cmn_column_list_item .date {
  color: #666;
  font-family: "Shippori Antique", sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.08em;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.column_list_item .txt, .cmn_column_list_item .txt {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

@media screen and (max-width: 800px) {
  .column_list_item .img, .cmn_column_list_item .img {
    margin-bottom: 6px;
    background-color: transparent;
    border-radius: 7px;
  }
  .column_list_item h3, .cmn_column_list_item h3 {
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 10px;
  }
  .column_list_item .cat, .cmn_column_list_item .cat {
    margin-bottom: 3px;
    scale: 0.8;
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  .column_list_item .cat span, .cmn_column_list_item .cat span {
    font-size: 10px;
  }
  .column_list_item .date, .cmn_column_list_item .date {
    font-size: 10px;
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
}
/* ========================================

column

======================================== */
.cmn_column {
  padding: 85px 0;
  background-image: url(../img/common/cmn_column_bg.jpg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cmn_column_title {
  max-width: 1086px;
  margin: 0 auto 65px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cmn_column_title .illust {
  width: 157px;
  margin-right: 48px;
}
.cmn_column_title h2 {
  width: 194px;
  margin-bottom: 15px;
}
.cmn_column_title .desc {
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.08em;
}
.cmn_column_list {
  width: 100%;
}
.cmn_column_list_inner {
  margin-bottom: 68px;
}
.cmn_column_list_inner .slick-arrow {
  width: 48px;
  height: 48px;
  top: 108px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  z-index: 2;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}
.cmn_column_list_inner .slick-arrow::before {
  width: 12px;
  height: 8.5px;
  display: block;
  content: '';
  background-color: #000;
  opacity: 1;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
.cmn_column_list_inner .slick-arrow.slick-prev {
  left: 40px;
}
.cmn_column_list_inner .slick-arrow.slick-prev::before {
  margin-right: 2px;
  scale: -1 1;
}
.cmn_column_list_inner .slick-arrow.slick-next {
  right: 40px;
}
.cmn_column_list_inner .slick-arrow.slick-next::before {
  margin-left: 2px;
}
.cmn_column_list_inner .slick-arrow:hover {
  opacity: 0.4;
}
.cmn_column_list_item {
  width: 335px;
  margin-left: 46px;
}
.cmn_column .link {
  position: relative;
  z-index: 2;
}
.cmn_column .link a {
  color: #fff;
  font-size: 15px;
  letter-spacing: 0.06em;
  width: 300px;
  height: 50px;
  display: block;
  position: relative;
  margin: 0 auto;
  padding: 0 20px 2px;
  background-color: var(--c_blue);
  border-radius: 50px;
  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;
}
.cmn_column .link a::after {
  width: 9px;
  height: 5.8px;
  display: block;
  content: '';
  position: absolute;
  top: calc(50% - 2.4px);
  right: 18px;
  background-color: #fff;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
}

@media screen and (max-width: 800px) {
  .cmn_column {
    padding: 28px 0 48px;
  }
  .cmn_column_title {
    display: block;
    margin-bottom: 32px;
  }
  .cmn_column_title .illust {
    width: 141px;
    margin: 0 auto 24px;
  }
  .cmn_column_title h2 {
    width: 187px;
    margin: 0 auto 10px;
  }
  .cmn_column_title .desc {
    font-size: 17px;
    line-height: 1.76;
    letter-spacing: 0;
    width: 82.1334%;
    margin: 0 auto;
  }
  .cmn_column_list {
    width: 89.3334%;
    margin: 0 auto 40px;
  }
  .cmn_column_list_inner {
    margin-bottom: 38px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .cmn_column_list_item {
    width: 45.7972%;
    margin: 0 0 15px;
  }
}
/* ========================================

page_title

======================================== */
.page_title {
  color: var(--c_orange);
  max-width: 1100px;
  position: relative;
  margin: 0 auto 82px;
  padding-top: 82px;
  padding-bottom: 18px;
  border-bottom: 2px solid #c4c4c4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.page_title::before {
  width: 136px;
  height: 2px;
  display: block;
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  background-color: var(--c_orange);
  z-index: 2;
}
.page_title::after {
  width: 82px;
  height: 90px;
  display: block;
  content: '';
  position: absolute;
  right: 10px;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: 50% 100%;
  background-size: contain;
  z-index: 2;
}
.page_title h1 {
  font-size: 30px;
  letter-spacing: 0.1em;
}
.page_title .en {
  font-family: "Shippori Antique", sans-serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}

@media screen and (max-width: 800px) {
  .page_title {
    width: 86.4307%;
    margin-bottom: 30px;
    padding: 0 0 12px;
  }
  .page_title h1 {
    font-size: 18px;
  }
  .page_title .en {
    font-size: 10px;
    scale: 0.8;
    margin-bottom: 6px;
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
  }
}
/* ========================================

hl01

======================================== */
.hl01 {
  color: var(--c_orange);
  font-size: 24px;
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.hl01::before {
  width: 4px;
  height: 22px;
  display: block;
  content: '';
  margin-right: 24px;
  background-color: var(--c_orange);
  translate: 0 2px;
}

@media screen and (max-width: 800px) {
  .hl01 {
    font-size: 15px;
  }
  .hl01::before {
    width: 3px;
    height: 14px;
    margin-right: 15px;
    translate: 0 1px;
  }
}
.cmn_link {
  background-color: #e4e4e4;
}

/* ========================================

kv

======================================== */
.l_kv {
  position: relative;
  margin-bottom: 160px;
  padding-bottom: 55px;
}

.kv {
  width: 100%;
  height: calc(100vh - 180px);
  min-height: 480px;
  max-height: 780px;
  position: relative;
  margin: 0 auto;
  overflow: hidden;
}
.kv::before {
  width: calc(100% - 84px);
  height: 100%;
  display: block;
  content: '';
  position: absolute;
  top: 50%;
  right: 50%;
  background-image: url(../img/top/kv_bg.jpg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  border-radius: 70px;
  translate: 50% -50%;
  z-index: 1;
}
.kv .dots {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 2;
}
.kv .dots li {
  text-indent: 100%;
  width: 8px;
  height: 8px;
  margin: 0 5px;
  overflow: hidden;
  background-color: #fff;
  border-radius: 50%;
  white-space: nowrap;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.kv .dots li.current {
  background-color: var(--c_orange);
}
.kv_list {
  height: 100%;
  position: relative;
  z-index: 2;
}
.kv_list_item {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.kv_list_item p {
  width: 391px;
  overflow: hidden;
  position: absolute;
  top: 50%;
  translate: 0% -50%;
  -webkit-transition: all 1s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 1s cubic-bezier(0.33, 1, 0.68, 1);
}
@media screen and (min-width: 800px) {
  .kv_list_item p:nth-child(1) {
    border-radius: 500px 0 0 500px;
    right: 50%;
    -webkit-transform: translateX(-50vw);
            transform: translateX(-50vw);
  }
  .kv_list_item p:nth-child(2) {
    border-radius: 0 500px 500px 0;
    left: 50%;
    -webkit-transform: translateX(50vw);
            transform: translateX(50vw);
  }
}
.kv_list_item p img {
  opacity: 0;
  -webkit-transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1);
  -webkit-transition-delay: 1.4s;
          transition-delay: 1.4s;
}
.kv_list_item .copy {
  background-color: #fff;
}
.kv_list_item .illust {
  background-color: var(--c_orange);
}
.kv_list_item.pre {
  z-index: 2;
  opacity: 1;
}
@media screen and (min-width: 800px) {
  .kv_list_item.pre p:nth-child(1) {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .kv_list_item.pre p:nth-child(2) {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.kv_list_item.now {
  z-index: 3;
  opacity: 1;
}
@media screen and (min-width: 800px) {
  .kv_list_item.now p:nth-child(1) {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .kv_list_item.now p:nth-child(2) {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.kv_list_item.now p img {
  opacity: 1;
}

@media screen and (max-width: 800px) {
  .l_kv {
    margin-bottom: 105px;
    padding-bottom: 72px;
  }

  .kv {
    height: calc(100vh - 75px);
    height: calc(100svh - 75px);
    min-height: 400px;
    max-height: none;
    padding-bottom: 18px;
  }
  .kv::before {
    width: calc(100% - 36px);
    height: calc(100% - 18px);
    top: 0;
    border-radius: 20px;
    translate: 50% 0%;
  }
  .kv_list .dots {
    display: none;
  }
  .kv_list_item p {
    width: 232px;
    height: calc((100vh - 75px - 18px - 80px) / 2);
    height: calc((100svh - 75px - 18px - 80px) / 2);
    min-height: calc((400px - 80px) / 2);
    max-height: 205px;
    right: 50%;
    translate: 50% 0;
  }
  .kv_list_item p:nth-child(1) {
    top: auto;
    bottom: 50%;
    border-radius: 150px 150px 0 0;
    -webkit-transform: translateY(-50vh);
            transform: translateY(-50vh);
  }
  .kv_list_item p:nth-child(2) {
    top: 50%;
    border-radius: 0 0 150px 150px;
    -webkit-transform: translateY(50vh);
            transform: translateY(50vh);
  }
  .kv_list_item p img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .kv_list_item .copy img {
    -o-object-fit: contain;
       object-fit: contain;
  }
  .kv_list_item.pre p:nth-child(1), .kv_list_item.now p:nth-child(1) {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .kv_list_item.pre p:nth-child(2), .kv_list_item.now p:nth-child(2) {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* ========================================

information

======================================== */
.information {
  width: 556px;
  height: 110px;
  position: absolute;
  right: 0;
  bottom: 0;
  border-radius: 15px 0 0 15px;
  background-color: #fff;
  -webkit-box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.25);
          box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.25);
  z-index: 3;
}
.information_list {
  height: 100%;
}
.information_list .slick-list {
  height: 100%;
}
.information_list .slick-list .slick-track {
  height: 100%;
}
.information_list_item {
  height: 100%;
}
.information_list_item a {
  width: 100%;
  height: 100%;
  padding-top: 20px;
  padding-left: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.information_list_item a .date {
  color: var(--c_blue);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}
.information_list_item a .date span {
  font-family: "Shippori Antique", sans-serif;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-right: 1em;
}
.information_list_item a .txt {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.02em;
  padding-right: 100px;
  -webkit-transition: all .2s;
  transition: all .2s;
}
@media screen and (min-width: 800px) {
  .information_list_item a:hover .txt {
    color: var(--c_blue);
  }
}
.information .arrow {
  width: 48px;
  height: 48px;
  display: block;
  overflow: hidden;
  position: absolute;
  right: 20px;
  top: 50%;
  background-color: var(--c_base);
  translate: 0 -50%;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.information .arrow::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -50%;
  width: 100%;
  height: 100%;
  background-color: #cacaca;
  -webkit-transform-origin: right 24px;
          transform-origin: right 24px;
  z-index: 2;
  -webkit-animation: rotate-circle-left 7s linear infinite;
          animation: rotate-circle-left 7s linear infinite;
}
.information .arrow::after {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: 50%;
  width: 100%;
  height: 100%;
  background: #000;
  -webkit-transform-origin: left 24px;
          transform-origin: left 24px;
  z-index: 3;
  -webkit-animation: rotate-circle-right 7s linear infinite;
          animation: rotate-circle-right 7s linear infinite;
}
.information .arrow span {
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  position: relative;
  background-color: #fff;
  border-radius: 50%;
  z-index: 5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.information .arrow span::before {
  width: 9px;
  height: 5px;
  display: block;
  margin-left: 2px;
  content: '';
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
  background-color: var(--c_base);
}

@-webkit-keyframes rotate-circle-right {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    background-color: #cacaca;
  }
  50% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
    background-color: #cacaca;
  }
  50.01% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
    background: #000;
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
    background: #000;
  }
}

@keyframes rotate-circle-right {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    background-color: #cacaca;
  }
  50% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
    background-color: #cacaca;
  }
  50.01% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
    background: #000;
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
    background: #000;
  }
}
@-webkit-keyframes rotate-circle-left {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
}
@keyframes rotate-circle-left {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
}
@media screen and (max-width: 800px) {
  .information {
    width: 82.6667%;
    right: auto;
    left: 0;
    border-radius: 0 15px 15px 0;
  }
  .information_list_item a {
    padding-top: 26px;
    padding-right: 20px;
  }
  .information_list_item a .date {
    font-size: 14px;
    margin-bottom: 14px;
  }
  .information_list_item a .txt {
    padding-right: 0;
  }
  .information .arrow {
    display: none;
  }
}
/* ========================================

about

======================================== */
.about {
  width: calc(100% - 84px);
  margin: 0 auto 220px;
  background-image: url(../img/top/about_bg.jpg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  border-radius: 70px;
}
.about_wrap {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding-top: max(100px, 7.3207vw);
  padding-bottom: max(128px, 9.3705vw);
}
.about_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.about_title {
  width: 35.8815%;
  position: relative;
  margin-right: 7.0203%;
  padding-bottom: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.about_title .en {
  font-family: "Shippori Antique", sans-serif;
  font-weight: 400;
  color: #fd6e9d;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  position: absolute;
  top: 80px;
  left: -60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.about_title .en::before {
  width: 17px;
  height: 9.5px;
  display: block;
  content: '';
  margin-right: 26px;
  border-radius: 10px;
  background-color: #fd6e9d;
}
.about_title h2 {
  margin-bottom: 52px;
}
.about_title h2 span {
  width: 30px;
  display: block;
}
.about_title .illust {
  width: 255px;
}
.about_title .img {
  width: 46.8522vw;
  max-width: 1030px;
  min-width: 640px;
  overflow: hidden;
  position: absolute;
  right: 118px;
  bottom: clamp(208px, 15.227vw, 208px);
  border-radius: 400px;
  translate: 0% 100%;
}
.about_cont {
  width: 35.8815%;
  position: relative;
  padding-top: calc(max(467px, 34.1845vw) - max(100px, 7.3207vw) + 100px);
  padding-bottom: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.about_cont .txt {
  font-size: 17px;
  line-height: 2.35;
  letter-spacing: 0.02em;
  margin-bottom: 105px;
}
.about_cont .img {
  width: 65.1538vw;
  min-width: 890px;
  overflow: hidden;
  position: absolute;
  top: clamp(-9999px, -7.3207vw, -100px);
  left: 0;
  margin-left: -20.6522%;
  border-radius: 500px;
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}
.about_cont_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.about_cont_link .link {
  width: 46.7392%;
}
.about_cont_link .link a {
  color: #fd6e9d;
  font-size: 16px;
  letter-spacing: 0.06em;
  width: 100%;
  height: 50px;
  display: block;
  position: relative;
  padding: 0 20px 2px;
  background-color: #fff;
  border-radius: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.about_cont_link .link a::after {
  width: 9px;
  height: 5.8px;
  display: block;
  content: '';
  position: absolute;
  top: calc(50% - 2.4px);
  right: 20px;
  background-color: #fd6e9d;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
}

@media screen and (max-width: 800px) {
  .about {
    width: calc(100% - 36px);
    margin-bottom: 100px;
    padding-bottom: 50px;
    border-radius: 20px;
  }
  .about_wrap {
    padding: 0;
  }
  .about_inner {
    display: block;
  }
  .about_title {
    width: 87.0207%;
    margin: 0 auto 25px;
    padding: 96px 0 0 0;
  }
  .about_title .en {
    font-size: 13.7px;
    top: 32px;
    left: 0;
  }
  .about_title .en::before {
    width: 14.8px;
    height: 8px;
  }
  .about_title h2 {
    margin-bottom: 0;
    padding-bottom: 20px;
  }
  .about_title h2 span {
    width: 22px;
  }
  .about_title .illust {
    width: 254px;
    position: absolute;
    bottom: 0;
    right: 50%;
    translate: 50% 0%;
  }
  .about_cont {
    width: 87.0207%;
    margin: 0 auto;
    padding: 0;
  }
  .about_cont .txt {
    font-size: 16px;
    line-height: 1.875;
    margin-bottom: 20px;
  }
  .about_cont .img02 {
    overflow: hidden;
    margin-bottom: 30px;
    border-radius: 7px;
  }
  .about_cont_link {
    display: block;
  }
  .about_cont_link .link {
    width: 100%;
  }
  .about_cont_link .link:not(:last-child) {
    margin-bottom: 20px;
  }
  .about_cont_link .link a {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .about_cont_link .link a::after {
    position: absolute;
    right: 16px;
  }
}
/* ========================================

column

======================================== */
.column {
  position: relative;
  margin-bottom: 140px;
  padding-top: 88px;
}
.column::before {
  width: calc((100% - 1096px) / 2 + 621px + 125px);
  height: calc(100% - 88px - 138px);
  display: block;
  content: '';
  position: absolute;
  top: 88px;
  right: 0;
  border-radius: 70px 0 0 70px;
  background-image: url(../img/top/column_bg.jpg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  z-index: 1;
}
.column_top {
  max-width: 1096px;
  margin: 0 auto;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 2;
}
.column_title {
  max-width: 250px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.column_title .illust {
  width: 200px;
  position: relative;
  margin: 0 auto 50px;
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}
.column_title .illust::before {
  width: 100%;
  height: 100%;
  display: block;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../img/top/column_title_illust02.png);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  -webkit-animation: rotate 50s linear infinite;
          animation: rotate 50s linear infinite;
}
.column_title h2 {
  width: 219px;
  margin: 0 auto 26px;
}
.column_title .desc {
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.06em;
}
.column_list {
  position: relative;
  margin-bottom: 190px;
  z-index: 1;
}
.column_list_inner .slick-arrow {
  width: 48px;
  height: 48px;
  top: 108px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  z-index: 2;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}
.column_list_inner .slick-arrow::before {
  width: 12px;
  height: 8.5px;
  display: block;
  content: '';
  background-color: #000;
  opacity: 1;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
.column_list_inner .slick-arrow.slick-prev {
  left: 40px;
}
.column_list_inner .slick-arrow.slick-prev::before {
  margin-right: 2px;
  scale: -1 1;
}
.column_list_inner .slick-arrow.slick-next {
  right: 40px;
}
.column_list_inner .slick-arrow.slick-next::before {
  margin-left: 2px;
}
.column_list_inner .slick-arrow:hover {
  opacity: 0.4;
}
.column_list_item:not(.column_pickup_item), .cmn_column_list_item:not(.column_pickup_item) {
  width: 335px;
  margin-left: 48px;
}
.column_pickup {
  width: 621px;
  margin-bottom: 95px;
  margin-top: -88px;
}
.column_pickup_item {
  width: 100%;
  position: relative;
  margin-left: 0;
}
.column_pickup_item::before {
  width: 78px;
  height: 91px;
  display: block;
  content: '';
  position: absolute;
  top: -16px;
  left: -8px;
  background-image: url(../img/top/column_ico_pickup.png);
  background-repeat: no-repeat;
  background-position: 50% 0%;
  background-size: contain;
  z-index: 2;
}
.column_pickup_item h3 {
  font-size: 20px;
  margin-bottom: 10px;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.column_pickup_item .img {
  margin-bottom: 38px;
  border-radius: 25px;
}
.column_pickup_item .info {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.column_pickup_item .info .date {
  font-size: 16px;
  margin-right: 15px;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.column_pickup_item .info .cat {
  margin-bottom: 0;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.column_pickup_item .txt {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.02em;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
.column .link {
  position: relative;
  z-index: 2;
}
.column .link a {
  color: #fff;
  font-size: 15px;
  letter-spacing: 0.06em;
  width: 300px;
  height: 50px;
  display: block;
  position: relative;
  margin: 0 auto;
  padding: 0 20px 2px;
  background-color: var(--c_blue);
  border-radius: 50px;
  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;
}
.column .link a::after {
  width: 9px;
  height: 5.8px;
  display: block;
  content: '';
  position: absolute;
  top: calc(50% - 2.4px);
  right: 18px;
  background-color: #fff;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@media screen and (max-width: 800px) {
  .column {
    margin-bottom: 0;
    padding: 0 0 70px;
  }
  .column::before {
    width: 100%;
    height: calc(100% - 70px);
    top: 70px;
    border-radius: 0;
  }
  .column_top {
    display: block;
    margin-bottom: 25px;
  }
  .column_title {
    max-width: none;
    margin-bottom: 45px;
  }
  .column_title .illust {
    width: 141px;
  }
  .column_title h2 {
    width: 188px;
  }
  .column_title .desc {
    font-size: 17px;
    line-height: 1.76;
    letter-spacing: 0;
    width: 82.1334%;
    margin: 0 auto;
  }
  .column_list {
    width: 89.3334%;
    margin: 0 auto 40px;
  }
  .column_list_inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .column_list_item:not(.column_pickup_item), .cmn_column_list_item:not(.column_pickup_item) {
    width: 45.7972%;
    margin: 0 0 15px;
  }
  .column_pickup {
    width: 89.3334%;
    margin: 0 auto;
  }
  .column_pickup_item {
    width: 100%;
  }
  .column_pickup_item::before {
    width: 42px;
  }
  .column_pickup_item h3 {
    font-size: 16px;
  }
  .column_pickup_item .img {
    margin-bottom: 18px;
    border-radius: 13.5px;
  }
  .column_pickup_item .info {
    margin-bottom: 6px;
  }
  .column_pickup_item .info .date {
    font-size: 12px;
    margin-right: 15px;
    margin-bottom: 4px;
  }
  .column_pickup_item .txt {
    display: none;
  }
}
/* ========================================

store

======================================== */
.store {
  padding-top: 130px;
  background-color: #e4e4e4;
}
.store_inner {
  margin-left: 106px;
  padding: 64px 0 85px 76px;
  background-color: #fff;
  border-radius: 15px 0 0 15px;
}
.store_title {
  margin-bottom: 60px;
  padding-right: 76px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.store_title h2 {
  color: var(--c_blue);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.store_title h2 em {
  font-size: 30px;
  letter-spacing: 0.12em;
  margin-right: 0.8em;
}
.store_title h2 .en {
  font-family: "Shippori Antique", sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.06em;
  padding-top: 4px;
}
.store_title .link {
  font-size: 16px;
  letter-spacing: 0.06em;
  margin-left: auto;
  margin-right: 150px;
}
.store_title .link a {
  padding: 0 3px 8px;
  border-bottom: 1px solid #666;
}
.store_title .link a:hover {
  opacity: 0.6;
}
.store_list_inner .slick-arrow {
  width: 48px;
  height: 48px;
  position: absolute;
  top: -55px;
  left: auto;
  border: 1px solid #000;
  border-radius: 50%;
  z-index: 2;
  -webkit-transform: translate(0, -100%);
          transform: translate(0, -100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}
.store_list_inner .slick-arrow::before {
  width: 12px;
  height: 8.5px;
  display: block;
  content: '';
  background-color: #000;
  opacity: 1;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
.store_list_inner .slick-arrow.slick-prev {
  right: 128px;
}
.store_list_inner .slick-arrow.slick-prev::before {
  margin-right: 2px;
  scale: -1 1;
}
.store_list_inner .slick-arrow.slick-next {
  right: 60px;
}
.store_list_inner .slick-arrow.slick-next::before {
  margin-left: 2px;
}
.store_list_inner .slick-arrow:hover {
  opacity: 0.4;
}
.store_list_item {
  font-size: 16.8px;
  letter-spacing: 0.08em;
  width: 310px;
  margin-right: 60px;
}
.store_list_item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.store_list_item a:hover {
  opacity: 0.6;
}
.store_list_item .img {
  overflow: hidden;
  margin-bottom: 28px;
  border-radius: 16px;
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}
.store_list_item h3 {
  color: #000;
  margin-bottom: 8px;
}
.store_list_item .txt {
  color: var(--c_base);
  line-height: 1.75;
}

@media screen and (max-width: 800px) {
  .store {
    padding: 68px 0 72px 0;
  }
  .store_inner {
    width: 100%;
    position: relative;
    margin: 0;
    padding: 38px 0 58px;
    background-color: transparent;
    border-radius: 0;
  }
  .store_inner::before {
    width: 94.9334%;
    height: 100%;
    display: block;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-color: #fff;
    border-radius: 0 8px 8px 0;
    z-index: 1;
  }
  .store_title {
    margin-bottom: 38px;
    padding: 0 0 0 30px;
    position: relative;
    z-index: 2;
  }
  .store_title h2 {
    display: block;
  }
  .store_title h2 em {
    font-size: 21.7px;
    width: 100%;
    display: block;
    margin-right: 0;
    margin-bottom: 12px;
  }
  .store_title h2 .en {
    font-size: 11.6px;
  }
  .store_title .link {
    display: none;
  }
  .store_list {
    position: relative;
    z-index: 2;
  }
  .store_list_inner {
    margin-bottom: 40px;
  }
  .store_list_item {
    font-size: 11px;
    width: 178px;
    margin-right: 35px;
  }
  .store_list_item .img {
    margin-bottom: 16px;
    border-radius: 9px;
  }
  .store_list_item h3 {
    margin-bottom: 4px;
  }
  .store_list_item .txt {
    font-size: 1.72;
  }
  .store_list .link a {
    color: #fff;
    font-size: 16px;
    letter-spacing: 0.08em;
    width: 78.6667%;
    height: 50px;
    display: block;
    position: relative;
    margin: 0 auto;
    background-color: var(--c_blue);
    border-radius: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .store_list .link a::after {
    width: 9px;
    height: 5.8px;
    display: block;
    content: '';
    position: absolute;
    right: 15px;
    background-color: #fff;
    -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
            clip-path: polygon(0 0, 0% 100%, 100% 50%);
    -webkit-transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1);
    transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1);
  }
}

/*# sourceMappingURL=top.css.map */