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

File Name:
Note:


New Creation:	.
Last Change:	2018/12/06 16:12:24.


Created By		Yoshiaki Murakami

------------------------------------------------------------------------
----------------------------------------------------------------------*/
/*----------------------------------------------------------------------
------------------------------------------------------------------------
目次

1.	共通使用変数定義
2.	Function
3.	Layout
4.	Object

------------------------------------------------------------------------
----------------------------------------------------------------------*/
.p-title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-left: 9.3333333333vw;
  height: 41.3333333333vw;
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: contain;
}

.c-contents-link {
  border-bottom: 0.2666666667vw solid #bdb5b0;
}
.c-contents-link a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 11.7333333333vw;
  text-align: center;
  line-height: 1.3333333333;
  font-size: 1.2rem;
  color: #fff;
}
.c-contents-link__list {
  display: flex;
}
.c-contents-link__item {
  box-sizing: border-box;
  flex: 1;
  flex-basis: 20%;
  background: #877d7a;
}
.c-contents-link__item + .c-contents-link__item {
  border-left: 0.2666666667vw solid #bdb5b0;
}
.c-contents-link__item.is-active a {
  background: #cac3c0;
}

.p-tab__list {
  display: flex;
  justify-content: space-between;
  background: transparent linear-gradient(0deg, #fff 0%, #fff 0.5333333333vw, #d9d0ca 0.5333333333vw, #fff 100%) 0% 0% no-repeat padding-box;
}
.p-tab__item {
  display: flex;
  position: relative;
  flex: 1;
  align-items: center;
  justify-content: center;
  padding-left: 0.8vw;
  min-height: 5.9rem;
  border-top: 0.2666666667vw solid #c7bcb4;
  border-bottom: 0.2666666667vw solid #c7bcb4;
  text-align: center;
  text-shadow: 0 -0.2666666667vw 0 #fff;
  line-height: 1.1538461538;
  font-size: 1.3rem;
  box-sizing: border-box;
}
.p-tab__item::before {
  content: "";
  display: block;
  position: absolute;
  top: 8%;
  bottom: 8%;
  left: 0vw;
  width: 0.2666666667vw;
  border-left: 0.2666666667vw solid #c7bcb4;
  background-color: #fff;
}
.p-tab__item.is-active {
  padding-left: 0.5333333333vw;
  border-left: 0.2666666667vw solid #c7bcb4;
  border-bottom-color: transparent;
  background: transparent linear-gradient(180deg, #fff 0%, #fff 0.5333333333vw, #d9d0ca 0.5333333333vw, #fff 100%) 0% 0% no-repeat padding-box;
  color: #ee7b75;
}
.p-tab__item.is-active::before {
  top: 0;
  bottom: 0;
  left: 0;
  width: 0.2666666667vw;
  border-left: 0;
  background-color: #fff;
}
.p-tab__item.is-active::after {
  content: "";
  display: block;
  position: absolute;
  top: 0.2666666667vw;
  right: 0;
  bottom: inherit;
  left: 0.2666666667vw;
  height: 0.4rem;
  background-color: #ee7b75;
}
.p-tab__item.is-active + .p-tab__item::before {
  top: 0;
  bottom: 0;
  left: -0.2666666667vw;
}
.p-tab__item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  line-height: 1.1538461538;
  font-size: 1.3rem;
  color: #6d6562;
}
.p-tab__contents {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.1s linear;
}
.p-tab__contents.is-active {
  position: relative;
  z-index: 1;
  opacity: 1;
}
.p-tab__contents__wrapper {
  position: relative;
}
