@charset "UTF-8";
img { image-rendering: -webkit-optimize-contrast; }
body { 
  font-family: 'Zen Kaku Gothic New', sans-serif; 
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  position: relative;
}
.fontserif {
  font-family: 'Noto Serif JP', serif;
}
img {
  image-rendering: -webkit-optimize-contrast;
}


/* ==============================================================
*  header
* ============================================================ */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  /* background-color: rgba(255, 255, 255, 1.0); */
  /* box-shadow: 0 0 6px rgba(0, 0, 0, 0.1); */
}
@media screen and (max-width: 767px) {
  .l-header {
    background-color: rgba(255, 255, 255, 0.6);
  }
}
.l-header_inner {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
.p-header {
  display: flex;
  justify-content: space-between;
  height: 80px;
}
.p-header_logo {
  width: 160px;
}
@media screen and (max-width: 767px) {
  .p-header_logo {
    width: 120px;
  }
}
.p-header_logo a {
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
}
.p-header_logo img {
  width: 100%;
  max-width: 160px;
  max-height: 54px;
}
.p-header_logo svg {
  width: 100%;
  max-width: 160px;
  max-height: 54px;
}
.p-header_logo svg .cls-1 {
  fill:#373737;
  transition: all .3s ease;
}
.p-header_logo svg .cls-2 {
  fill:#434343;
  transition: all .3s ease;
}
.header_w .p-header_logo svg .cls-1,
.header_w .p-header_logo svg .cls-2 {
  fill:#FFF;
}
.p-header_menu {
  display: flex;
}
.p-header_contact {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 12px;
}
.p-header_icon p {
  background-color: #666;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  position: relative;
  transform: scale(1);
  transition: transform 1s ease;
}
.header_w .p-header_icon p {
  background-color: #FFF;
}
.p-header_icon:hover p {
  background-color: #373737;
  transform: scale(1.05);
}
.header_w .p-header_icon:hover p {
  background-color: #EEE;
}
.p-header_icon p img {
  width: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: .8;
  transform: translate(-50%,-50%);
  transition: opacity 1s ease;
}
.header_w .p-header_icon p img {
  mix-blend-mode: difference;
}
.p-header_icon:hover p img {
  opacity: 1;
}
.p-Menu {
  width: 80px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-Menu {
    width: 50px;
  }
}
.p-Menu_btn {
  width: 50px;
  height: 50px;
  position: relative;
  cursor: pointer;
  z-index: 3;
}
.p-Menu_btn span {
  position: absolute;
  background: #666;
  height: 4px;
  display: block;
  transition: all .5s ease-out;
}
.header_w .p-Menu_btn span {
  background: #FFF;
}
.p-Menu_btn span:nth-of-type(1) {
  width: 35px;
  top: 9px;
}
.p-Menu_btn:hover span:nth-of-type(1) {
  width: 50px;
}
.p-Menu_btn span:nth-of-type(2) {
  width: 50px;
  top: 23px;
}
.p-Menu_btn:hover span:nth-of-type(2) {
  width: 40px;
}
.p-Menu_btn span:nth-of-type(3) {
  width: 40px;
  top: 37px;
  transition: all .3s ease-out;
}
.p-Menu_btn:hover span:nth-of-type(3) {
  width: 30px;
}
.p-Menu_btn.is_open span:nth-of-type(1) {
  transform: rotate(45deg) translate(5px, -7px);
  transform-origin: left top;
  width: 50px;
}
.p-Menu_btn.is_open span:nth-of-type(2) {
  opacity: 0;
}
.p-Menu_btn.is_open span:nth-of-type(3) {
  transform: rotate(-45deg) translate(3px,8px);
  transform-origin: left bottom;
  width: 50px;
}
.header_w .p-Menu_btn.is_open span {
  background: #666;
}

/*** Navi *******************************************************/
.p-header_menu {
  position: relative;
}
.p-globalNavi {
  position: absolute;
  top: 0;
  right: -20px;
  z-index: 2;
  width: 40vw;
  height: 100vh;
  display: block;
  padding: 80px 0 0;
  background-color: #EEE;
  overflow: hidden;
  transform: translateX(40vw);
  transition: all .5s ease;
}
@media screen and (max-width: 767px) {
  .p-globalNavi {
    width: 90vw;
    transform: translateX(90vw);
  }
}
.p-globalNavi.is_open {
  transform: translateX(0);
}
.p-globalNavi_logo {
  height: 10vh;
}
@media screen and (max-width: 767px) {
  .p-globalNavi_logo {
    height: 0;
  }
}
.p-globalNavi_logo p {
  text-align: center;
}
.p-globalNavi_logo img {
  width: 190px;
}
@media screen and (max-width: 767px) {
  .p-globalNavi_logo img {
    display: none;
  } 
}
.p-globalNavi_list {
  height: 60vh;
  display:flex;
  flex-flow: column;
  justify-content:space-around;
  align-items: center;
}
.p-globalNavi_item {
  width: 100%;
  text-align: center;
}
.p-globalNavi_link p {
  font-size: 30px;
  line-height: 1.3;
}
.p-globalNavi_link p span {
  font-size: 14px;
  display: block;
}
.p-globalNaviIcon_list {
  height: 15vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-globalNaviIcon_list {
    height: 10vh;
  }
}
.p-globalNaviIcon_item {
  width: 80px;
}
.p-globalNaviIcon_link p {
  background: #000;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}
.p-globalNaviIcon_link p img {
  width: 24px;
}

/* ==============================================================
*  footer
* ============================================================ */
.l-footer {
  width: 100%;
  background-color: #333;
  padding: 70px 0 10px;
  color: #FFF;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding-top: 50px;
  }
}
.p-pageTop {
  position: fixed;
  bottom: 20px;
  right: 2.5%;
  color: #333;
}
.l-footer.is_view .p-pageTop {
  position: absolute;
  top: -50px;
} 
.p-pageTop p {
  position: relative;
}
.p-pageTop p::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%) rotate(-45deg);
}
.p-pageTop_icon {
  text-align: center;
  line-height: 1.1;
}
.l-footer_inner {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}
.p-footer {
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-footer {
    flex-wrap: wrap;
  }
}
.p-footer_navi {
  width: 50%;
  order: 1;
}
@media screen and (max-width: 767px) {
  .p-footer_navi {
    width: 100%;
    order: 0;
  }
}
.p-footer_navi ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
}
.p-footer_navi li {
  width: 30%;
  margin-bottom: 30px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-footer_navi li {
    width: 100%;
    margin-bottom: 20px;
  }
}
.p-footer_navi li a {
  font-size: 20px;
  position: relative;
  padding: 10px 0 0 10px;
}
.p-footer_navi li a span {
  font-size: 11px;
  position: absolute;
  top: 0;
  left: 0;
}
.p-footer_signature {
  order: 0;
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .p-footer_signature {
    order: 1;
    width: 100%;
    flex-wrap: wrap;
    margin-top: 20px;
    margin-bottom: 30px;
  }
}
.p-footer_logo {
  width: 190px;
  margin-right: 30px;
}
@media screen and (max-width: 767px) {
  .p-footer_logo {
    width: 160px;
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.p-footer_logo svg .cls-1,
.p-footer_logo svg .cls-2 {
  fill: #FFF;
}
.p-footer_name {
  font-size: 20px;
}
.p-footer_address {
  font-size: 14px;
}
.p-footer_name {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .p-footer_address {
    font-size: 12px;
  }
  .p-footer_name {
    font-size: 16px;
  }
}
.p-copyright {
  text-align: center;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .p-copyright {
    font-size: 12px;
  }
}


/* ==============================================================
*  共通パーツ
* ============================================================ */
/*** ボタン ***/
.p-btn {
  background-color: #333;
  border: 1px solid #333;
  display: block;
  font-size: 16px;
  line-height: 1.2;
  width: 230px;
  margin: 70px auto 0;
  cursor: pointer;
  color: #FFF;
  position: relative;
  transition: all .5s;
  overflow: hidden;
}
.p-btn:hover a,
.p-btn:hover span {
  color: #333
}
.p-btn::before,
.p-btn::after {
  content: '';
  background: #FFF;
  position: absolute;
  z-index: 0;
}
.p-btn::after {
  height: 100%;
  left: 0;
  top: 0;
  width: 0;
  transition: all .5s;
}
.p-btn:hover::after {
  width: 100%;
}
.p-btn a,
.p-btn span {
  /* padding: 20px 0; */
  padding: 0;
  text-align: center;
  display: block;
  z-index: 1;
}
.p-btn a p,
.p-btn span p {
  position: relative;
  display: block;
  padding: 20px 50px 20px 20px;
  /* display: inline; */
  /* padding-left: 20px; */
  /* padding-right: 44px; */
  z-index: 1;
}
.p-btn a p::after,
.p-btn span p::after {
  position: absolute;
  display: block;
  content: '';
  top: calc(50% + 3px);
  right: 40px;
  width: 32px;
  height: 6px;
  border-right: 2px solid #FFF;
  border-bottom: 1px solid #FFF;
  transform: skewX(60deg) translateY(-50%);
  transition: all .3s;
}
.p-btn:hover a p::after,
.p-btn:hover span p::after {
  border-right-color: #333;
  border-bottom-color: #333;
  right: 32px;
  transition: all .3s;
}
/*** aside **/
.l-aside {
  position: fixed;
  top: 300px;
  right: 20px;
  opacity: 1;
  transition: opacity .3s ease;
}
@media screen and (max-width: 767px) {
  .l-aside {
    right: 5px;
    top: initial;
    bottom: 90px;
  }
}
.l-aside.stop_aside {
  opacity: 0;
}
.l-aside ul li {
  writing-mode: vertical-lr;
  text-orientation: sideways;
  line-height: 1.1;
  padding: 15px 0;
}
.l-aside ul li.is_aside {
  font-weight: 800;
}
/*** util **/
.u-inline_spno {
  display: inline;
}
.u-inline_pcno {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-inline_spno {
    display: none;
  }
  .u-inline_pcno {
    display: inline;
  }
}
.u-block_spno {
  display: block;
}
.u-block_pcno {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-block_spno {
    display: none;
  }
  .u-block_pcno {
    display: block;
  }
}




/* ==============================================================
*  main
* ============================================================ */
.l-main {
  width: 100%;
  /* padding: 80px 0 0; */
  padding: 0;
}


/* ==============================================================
*  TOPページ (メインビジュアル/ロゴ）
* ============================================================ */
.p-topMv_Inner {
  /* height: calc(100vh - 80px); */
  height: 100vh;
}
.p-topMv_msg {
  position: relative;
  height: 100%;
  background-image: url(/assets/img/top/top_back.webp);
  background-size: cover;
  background-attachment: fixed;
  z-index: -1;
}
.p-topMv_logo {
  width: 35%;
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: -1;
  transform: translate(-50%,-50%);
  opacity: 1;
  animation: opacityto100 7.5s ease-out 6s;
}
@keyframes opacityto100 {
  0% {
    opacity: .2;
  }
  90% {
    opacity: .2;
  }
  100% {
    opacity: 1;
  }
}
.p-topMv_logo .cls-2 {
  stroke:#434343;
  stroke-dasharray: 2000;
  stroke-dashoffset: 0;
  stroke-width: .1;
  animation: logo01 3s ease-in 7s;
}
@keyframes logo01 {
  0% {
    stroke-dashoffset: 2000;
    fill:transparent;
  }
  40% {
    stroke-dashoffset: 2000;
    fill:transparent;
  }
  80% {
    fill:transparent;
  }
  100% {
    stroke-dashoffset: 0;
    fill:#434343;
  }
}
.p-topMv_logo .cls-1 {
  stroke:#373737;
  stroke-dasharray: 2000;
  stroke-dashoffset: 0;
  stroke-width: 0;
  animation: logo02 3s ease-in 7s;
}
@keyframes logo02 {
  0% {
    stroke-dashoffset: 2000;
    fill:transparent;
  }
  40% {
    stroke-dashoffset: 2000;
    fill:transparent;
  }
  80% {
    fill:transparent;
  }
  100% {
    stroke-dashoffset: 0;
    fill:#373737;
  }
}
.p-topMv_Caption {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 10vw;
  font-weight: 900;
  letter-spacing: 2vw;
  line-height: 1;
  width: 70%;
  opacity: .1;
  z-index: -1;
  animation: opacityto10 7s ease-in-out 6s;
}
@keyframes opacityto10 {
  0% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: .1;
  }
}
.p-topMv_Caption span {
  display: block;
  width: 0;
	margin: 0;
  white-space: nowrap;
  overflow: hidden;
}
.p-topMv_Caption span:nth-of-type(1) {
  animation: flowtext 1s forwards linear 10s;
}
.p-topMv_Caption span:nth-of-type(2) {
  animation: flowtext 1s forwards linear 10.5s;
}
.p-topMv_Caption span:nth-of-type(3) {
  animation: flowtext 1s forwards linear 11s;
}
@keyframes flowtext {
  0%{
    width: 0%;
  }
 100%{
    width: 100%;
  }
}
.p-topMv_scroll {
  position: fixed;
  bottom: 63px;
  left: 50%;
  transform: translateX(-50%);
  color: #373737;
  font-size: 16px;
  opacity: 1;
  animation: scrollview 5s ease-in;
  z-index: -1;
}
@keyframes scrollview {
  0%{
    opacity: 0;
  }
  90%{
    opacity: 0;
  }
  100%{
    opacity: 1;
  }
}
.p-topMv_scroll p {
  position: relative;
}
.p-topMv_scroll p::after{
	content: "";
	position: absolute;
	top: 20px;
  left: 50%;
	width: 1px;
	height: 30px;
	background: #373737;
	animation: pathmove 1.4s ease-in-out infinite;
	opacity:0;
}
@keyframes pathmove{
	0%{
		height:0;
		top:20px;
		opacity: 0;
	}
	30%{
		height:30px;
		opacity: 1;
	}
	100%{
		height:0;
		top:80px;
		opacity: 0;
	}
}

/* ==============================================================
*  TOPページ (メインビジュアル）
* ============================================================ */
.p-mvStart {
  position: absolute;
  /* top: 80px; */
  top: 0;
  left: 0;
  width: 100%;
  /* height: calc(100vh - 80px); */
  height: 100vh;
  overflow: hidden;
}
.p-mvStart_wrap {
  position: relative;
}
.p-mvStart_item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  /* height: calc(100vh - 80px); */
  height: 100vh;
}
.p-mvStart_item img {
  object-fit: cover;
  width: 100%;
  /* height: calc(100vh - 80px); */
  height: 100vh;
  opacity: 0;
}
.p-mvStart_item:nth-of-type(3) img {
  animation: mvopacity 3s ease;
  transform-origin: 50% 50%;
}
.p-mvStart_item:nth-of-type(2) img {
  animation: mvopacity2 4s ease 2s;
  transform-origin: 40% 60%;
}
.p-mvStart_item:nth-of-type(1) img {
  animation: mvopacity 5s ease 4s;
  transform-origin: bottom 10% left 30%;
}

@keyframes mvopacity {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1.02);
  }
}
@keyframes mvopacity2 {
  0% {
    opacity: 1;
    transform: scale(1.02);
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}
.p-mvStart_sp {
  display: none;
}
@media screen and (orientation:portrait) and (max-width: 1240px) {
  .p-mvStart_sp {
    display: block;
  }
  .p-mvStart_pc {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .p-mvStart_sp {
    display: block;
  }
  .p-mvStart_pc {
    display: none;
  }
}


/* ==============================================================
*  TOPページ (メインビジュアル/スライダー）
* ============================================================ */
.p-hero {
  background-color: #FFF;
}
#js-slick-hero {
  width: 100%;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}
.p-heroSlider_item img {
  display: block;
  object-fit: cover;
  width: 100%;
}
.p-heroMsg {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  font-size: 40px;
  font-weight: 600;
  color: #666;
}
.p-heroSlider_item.item_01 .p-heroMsg {
  top: 30%;
  left: 30%;
}
.p-heroSlider .slick-list {
  background-color: #FFF;
}
.p-heroSlider .slick-dots {
  bottom: 10px;
}
.p-heroSlider .slick-dots li {
  width: 50px;
  height: 4px;
  margin: 0 1px;
}
.p-heroSlider .slick-dots li button {
  width: 50px;
  height: 4px;
  padding: 0;
}
.p-heroSlider .slick-dots li button:before{
  content: "";
  background-color: #000;
  width: 50px;
  height: 4px;

}



/* ==============================================================
*  TOPページ
* ============================================================ */
/*** メッセージ ***/
.p-topMsg {
  background-color: #FFF;
  padding: 150px 0;
}
.p-topMsg_wrap {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1020px;
  margin: 0 auto;
  padding: 0 20px;
}
.p-topMsg_wrap .p-topHeadingH2 {
  order: 1;
  font-size: 110px;
  font-weight: 900;
  line-height: 1.1;
  writing-mode: vertical-lr;
  text-orientation: sideways;
  /* color: #E6E6E6; */
  color: #434343;
  margin-left: 15px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-topMsg_wrap .p-topHeadingH2 {
    font-size: 11vw;
    line-height: 1;
    margin-left: 10px;
  }
}
.p-topMsg_wrap .p-topHeadingH2::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: #FFF;
  display: block;
  height: 100%;
  width: 100%; 
  transition: all 2s ease; 
}
.p-topMsg_wrap.is_view .p-topHeadingH2::after {
  top: 100%;
}
.p-topMsg_wrap .p-topHeadingH2 span {
  font-size: 22px;
  font-weight: 400;
  color: #666;
  margin-top: 10px;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-topMsg_wrap .p-topHeadingH2 span {
    font-size: 16px;
    margin-top: 3px;
  }
}
.p-topMsg_content {
  max-width: 780px;
  width: 100%;
  margin: 0 auto;
}
.p-topMsg_caption {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  transform: translateY(20px);
  opacity: 0;
  transition: all 1s ease .5s;
}
@media screen and (max-width: 767px) {
  .p-topMsg_caption {
    font-size: 22px;
  }
}
.p-topMsg_wrap.is_view .p-topMsg_caption {
  transform: translateY(0);
  opacity: 1;
}
.p-topMsg_caption span {
  display: block;
  font-size: 24px;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .p-topMsg_caption span {
    font-size: 18px;
    margin-bottom: 15px;
  }
}
.p-topMsg_text {
  margin-top: 40px;
  font-size: 20px;
  letter-spacing: -1px;
  line-height: 2;
  transform: translateY(20px);
  opacity: 0;
  transition: all 1s ease 1s;
}
@media screen and (max-width: 767px) {
  .p-topMsg_text {
    font-size: 16px;
  }
}
.p-topMsg_wrap.is_view .p-topMsg_text {
  transform: translateY(0);
  opacity: 1;
}

/*** 強み ***/
.p-topAdovantage {
  min-height: 100vh;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-image: url(/assets/img/top/top-bg.jpg);
  padding: 150px 0;
  position: relative;
}
body.iOS .p-topAdovantage {
  background-attachment: initial;
}
.p-topAdovantage::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  background: rgba(255, 255, 255, .3);
}
.p-topAdovantage_wrap {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1020px;
  margin: 0 auto;
  padding: 0 20px;
}
.p-topAdovantage_wrap .p-topHeadingH2 {
  font-size: 110px;
  font-weight: 900;
  line-height: 0.9;
  writing-mode: vertical-lr;
  text-orientation: sideways;
  color: #434343;
  margin-right: 15px;
  z-index: 1;
  transform: translateX(-20px);
  opacity: 0;
  transition: all 2s ease 0s;
}
@media screen and (max-width: 767px) {
  .p-topAdovantage_wrap .p-topHeadingH2 {
    font-size: 11vw;
    line-height: 1;
    margin-right: 10px;
  }
}
.p-topAdovantage_wrap .p-topHeadingH2.is_view {
  transform: translateX(0);
  opacity: 1;
}
.p-topAdovantage_wrap .p-topHeadingH2 span {
  font-size: 22px;
  font-weight: 400;
  color: #666;
  margin-top: 10px;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-topAdovantage_wrap .p-topHeadingH2 span {
    font-size: 16px;
    margin-top: 3px;
  }
}
.p-topAdvantate_content {
  max-width: 780px;
  width: 100%;
  margin: 0 auto;
}
.p-topAdvantage_item {
  position: relative;
  margin-bottom: 20px;
  transform: translateY(20px);
  opacity: 0;
  transition: all 1s ease 0s;
}
.p-topAdvantage_item.is_view {
  transform: translateY(0);
  opacity: 1;
}
.p-topAdvantage_no {
  font-size: 100px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-topAdvantage_no {
    font-size: 45px;
  }
}
.p-topAdvantage_text {
  position: absolute;
  left: 80px;
  bottom: 5px;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 3px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-topAdvantage_text {
    font-size: 20px;
    position: relative;
    left: 0;
    bottom: 0;
    margin-top: 10px;
  }
}
.p-topAdvantate_content .p-btn {
  border: none;
  transform: translateY(20px);
  opacity: 0;
  transition: all 1s ease 0s;
}
@media screen and (max-width: 767px) {
  .p-topAdvantate_content .p-btn {
    margin-right: 0;
  }
}
.p-topAdvantate_content .p-btn.is_view {
  transform: translateY(0);
  opacity: 1;
}

/*** 事業紹介 ***/
.p-topWorks {
  /* background-color: #FFF; */
  background-color: #ecf4fb;
  padding: 150px 0;
}
.p-topWorks_wrap {
  width: 100%;
  max-width: 1020px;
  margin: 0 auto;
  padding: 0 20px;
}
.p-topWorks_wrap .p-topHeadingH2 {
  font-size: 110px;
  font-weight: 900;
  line-height: 1.1;
  color: #434343;
  transform: translateY(20px);
  opacity: 0;
  transition: all 2s ease 0s;
}
@media screen and (max-width: 767px) {
  .p-topWorks_wrap .p-topHeadingH2 {
    font-size: 11vw;
  }
}
.p-topWorks_wrap .p-topHeadingH2.is_view {
  transform: translateY(0);
  opacity: 1;
}
.p-topWorks_wrap .p-topHeadingH2 span {
  font-size: 22px;
  font-weight: 400;
  color: #666;
  margin-left: 10px;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-topWorks_wrap .p-topHeadingH2 span {
    font-size: 16px;
    margin-left: 3px;
  }
}
.p-topWorks_item {
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .p-topWorks_item {
    margin-top: 100px;
  }
}
.p-topWorks_item a {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-topWorks_item a {
    flex-wrap: wrap;
  }
}
.p-topWorks_image {
  width: 45%;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-topWorks_image {
    width: 100%;
  }
}
.p-topWorks_image::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  /* background-color: #FFF; */
  background-color: #ecf4fb;
  transition: all 1s ease;
}
.p-topWorks_item a .p-topWorks_image img {
  transform: scale(1);
  transition: all .5s ease;
}
.p-topWorks_item a:hover .p-topWorks_image img {
  transform: scale(1.05);
}


.p-topWorks_item:nth-of-type(odd) .p-topWorks_image::after {
  left: 0;
}
.p-topWorks_item:nth-of-type(even) .p-topWorks_image::after {
  right: 0;
}
.p-topWorks_item.is_view .p-topWorks_image::after {
  width: 0;
}
.p-topWorks_image img {
  width: 100%;
}
.p-topWorks_content {
  transform: translate(20px,20px);
  width: 50%;
  opacity: 0;
  transition: transform 1s ease,opacity .3s ease;
}
.p-topWorks_item.is_view .p-topWorks_content {
  opacity: 1;
  transform: translate(0);
}
@media screen and (max-width: 767px) {
  .p-topWorks_content {
    transform: translate(0);
    width: 100%;
  }
  .p-topWorks_item.is_view .p-topWorks_content {
    transform: translate(0);
  }
}
.p-topWorks_title {
  font-size: 26px;
  /* background-color: #FFF; */
  padding: 6px;
  margin-bottom: 10px;
  display: inline-block;
  text-shadow:1px 1px 3px #444;
}
@media screen and (max-width: 767px) {
  .p-topWorks_title {
    width: 100%;
    padding-top: 16px;
  }
}
.p-topWorks_title.p-topWorks_be10img {
  padding: 15px;
}
.p-topWorks_title.p-topWorks_be10img img {
  width: 180px;
}
@media screen and (max-width: 767px) {
  .p-topWorks_title.p-topWorks_be10img img {
    width: 30%;
    max-width: 140px;
  }
}
.p-topWorks_text {
  line-height: 2;
  display: inline-block;
  /* background-color: #FFF; */
  padding: 10px;
}
@media screen and (max-width: 767px) {
  .p-topWorks_text {
    margin-top: 0;
  }  
}
.p-topWorks_item:nth-of-type(even) a {
  flex-direction: row-reverse
}
.p-topWorks_item:nth-of-type(even) a .p-topWorks_content {
  text-align: left;
  transform: translate(-20px,20px);
}
.p-topWorks_item:nth-of-type(even).is_view a .p-topWorks_content {
  transform: translate(0,0);
}
@media screen and (max-width: 767px) {
  .p-topWorks_item:nth-of-type(even) a .p-topWorks_content {
    text-align: left;
    transform: translateX(0);
  }
  .p-topWorks_item:nth-of-type(even).is_view a .p-topWorks_content {
    transform: translateX(0);
  }
}
.p-topWorks_item:nth-of-type(even) a .p-topWorks_content .p-topWorks_text {
  text-align: left;
}
.p-topWorks_item:nth-of-type(even) .p-topWorks_content .p-btn {
  margin-top: 20px;
  margin-left: 10px;
}
.p-topWorks_item:nth-of-type(odd) .p-topWorks_content .p-btn {
  margin-top: 20px;
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .p-topWorks_item:nth-of-type(even) .p-topWorks_content .p-btn {
    margin-left: auto;
  }
  .p-topWorks_item:nth-of-type(odd) .p-topWorks_content .p-btn {
    margin-right: auto;
  }
}



/*** お知らせ ***/
.p-topInfo {
  background-color: #EBEBEB;
  padding: 150px 0;
}
.p-topInfo_wrap {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1020px;
  margin: 0 auto;
  padding: 0 20px;
}
.p-topInfo_wrap .p-topHeadingH2 {
  order: 1;
  font-size: 110px;
  font-weight: 900;
  line-height: 1.1;
  writing-mode: vertical-lr;
  text-orientation: sideways;
  color: #434343;
  margin-left: 15px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-topInfo_wrap .p-topHeadingH2 {
    font-size: 11vw;
    line-height: 1;
    margin-left: 10px;
  }
}
.p-topInfo_wrap .p-topHeadingH2::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: #EBEBEB;
  display: block;
  height: 100%;
  width: 100%;
  transition: all 2s ease 0s;
}
.p-topInfo_wrap.is_view .p-topHeadingH2::after {
  top: 100%;
}
.p-topInfo .p-topHeadingH2 span {
  font-size: 22px;
  font-weight: 400;
  color: #666;
  margin-top: 10px;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-topInfo .p-topHeadingH2 span {
    font-size: 16px;
    margin-top: 3px;
  }
}
.p-topInfo_content {
  max-width: 780px;
  width: 100%;
  margin: 0 auto;
  transform: translateY(20px);
  opacity: 0;
  transition: all 2s ease 0s;
}
.p-topInfo_wrap.is_view .p-topInfo_content {
transform: translateY(0);
opacity: 1;
}
.p-topInfo_item {
  padding: 30px 0;
  border-bottom: 1px solid #CCC;
}
.p-topInfo_item:nth-of-type(1) {
  border-top: 1px solid #CCC;
}
.p-topInfo_date {
  color: #777;
  font-size: 18px;
}
.p-topInfo_text {
  font-size: 14px;
}
.p-topInfo_text span {
  font-size: 16px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-topInfo_content .p-btn {
    margin-left: 0;
  }
}


/*** お問い合わせ ***/
.p-commoncontact {
  background-color: #FFF;
  padding: 150px 0;
}
.p-commoncontact_wrap {
  width: 100%;
  max-width: 1020px;
  margin: 0 auto;
  padding: 0 20px;
}
.p-commoncontact_wrap .p-topHeadingH2 {
  font-size: 110px;
  font-weight: 900;
  line-height: 1.1;
  color: #434343;
  /* color: #E6E6E6; */
  transform: translateY(20px);
  opacity: 0;
  transition: all 1.5s ease 0s;
}
@media screen and (max-width: 767px) {
  .p-commoncontact_wrap .p-topHeadingH2 {
    font-size: 11vw;
  }
}
.p-commoncontact_wrap .p-topHeadingH2.is_view {
  transform: translateY(0);
  opacity: 1;
}
.p-commoncontact_wrap .p-topHeadingH2 span {
  font-size: 22px;
  font-weight: 400;
  color: #666;
  margin-left: 10px;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-commoncontact_wrap .p-topHeadingH2 span {
    font-size: 16px;
    margin-left: 3px;
  }
}
.p-commoncontact_text {
  margin-top: 80px;
  text-align: center;
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .p-commoncontact_text {
    margin-top: 50px;
    font-size: 18px;
  }
  .p-commoncontact_wrap .p-btn {
    margin-top: 50px;
  }
}
.p-commoncontact_note {
  margin-top: 50px;
  text-align: center;
  font-size: 18px;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-commoncontact_note {
    font-size: 15px;
  }
}


/* ==============================================================
*  下層共通
* ============================================================ */
.p-headingH1 {
  color: #434343;
  font-size: 50px;
  font-weight: 900;
  line-height: 1.1;
  padding: 100px 0;
  margin: 100px 0 120px;
  display: flex;
  flex-wrap: wrap-reverse;
  justify-content: center;
  position: relative;
  animation: h2textcolor 2s forwards linear
}
@media screen and (max-width: 767px) {
  .p-headingH1 {
    padding: 50px 0;
  }
}
@keyframes h2textcolor {
  0%{
    color: transparent;
  }
  50%{
    color: transparent;
  }
  100%{
  color: #434343;
  }
}
.p-headingH1 span {
  font-size: 20px;
  font-weight: 400;
  width: 100%;
  text-align: center;
}
.p-headingH1::before {
  content: "";
  width: 70%;
  position: absolute;
  background-color: #CCC;
  height: 100%;
  top: 20px;
  left: 0;
  z-index: -2;
  animation: h2anime 1s forwards linear
}
.p-headingH1::after {
  content: "";
  width: 70%;
  position: absolute;
  /* background-color: #ebebeb; */
  background: url(/assets/img/top/top-bg.jpg);
  background-attachment: fixed;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
  animation: h2anime 1s forwards linear
}
@keyframes h2anime {
  0%{
    width: 0%;
  }
 100%{
    width: 70%;
  }
}
@media screen and (max-width: 767px) {
  .p-headingH1::after {
    animation: h2animesp 1s forwards linear;
  }
  .p-headingH1::before {
    animation: h2animesp 1s forwards linear;
  }
    @keyframes h2animesp {
    0%{
      width: 0%;
    }
   100%{
      width: 90%;
    }
  }
}
.p-headingH2 {
  font-size: 42px;
  font-weight: 900;
  line-height: 1.2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 50px;
}
.p-headingH2 span {
  font-size: 16px;
  font-weight: 400;
  width: 100%;
  text-align: center;
}


/* ==============================================================
*  WORKSページ
* ============================================================ */
.p-advan_list,
.p-product_list,
.p-flow_list,
.p-faq_list {
  width: 100%;
  max-width: 1020px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .p-advan_list,
  .p-product_list,
  .p-flow_list,
  .p-faq_list {
      padding-right: 34px;
  }
}
.p-advan_item {
  display: flex;
  margin-bottom: 140px;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-advan_item {
    flex-wrap: wrap;
  }
}
.p-advan_item:last-of-type {
  margin-bottom: 190px;
}
.p-advanItem_img {
  width: 40%;
  padding: 0 10px 10px 10px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-advanItem_img {
    width: 100%;
    padding: 0;
  }
}
.p-advanItem_img::before {
  content: "";
  background-color: #FFF;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  transition: width .5s ease;
}
.p-advan_item.is_view .p-advanItem_img::before {
  width: 0;
}
.p-advanItem_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.p-advan_item:nth-of-type(odd) .p-advanItem_img {
  order: 1;
}
@media screen and (max-width: 767px) {
  .p-advan_item:nth-of-type(odd) .p-advanItem_img {
    order: 0;
  }
}
.p-advan_item:nth-of-type(3) .p-advanItem_img img {
  object-fit: contain;
}
.p-advanItem_content {
  width: 55%;
}
@media screen and (max-width: 767px) {
  .p-advanItem_content {
    width: 100%;
    padding-top: 30px;
  }
}
.p-advanItem_content h3 {
  position: relative;
}
.p-advanItem_content h3 span {
  position: absolute;
  font-size: 50px;
  font-weight: 900;
  color: #666;
  top: -30px;
  left: 10px;
  line-height: 1;
  z-index: 1;
}
.p-advanItem_content h3 b {
  display: inline-block;
  background-color: #DDD;
  padding: 5px 20px 5px 65px;
  margin-bottom: 5px;
  color: #434343;
  line-height: 1.8;
  font-size: 20px;
  font-weight: 400;
  position: relative;
}
@media screen and (max-width: 480px) {
  .p-advanItem_content h3 b.p-advanItem_content-vw {
    font-size: 4.2vw;
    padding-right: 10px;
  }
}
.p-advanItem_content h3 b::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background-color: #FFF;
  display: inline;
  width: 100%;
  height: 100%;
  transition: width .5s ease;
}
.p-advan_item.is_view .p-advanItem_content h3 b::before {
  width: 0;
}
.p-advanItem_text {
  /* background-color: #FFF; */
  margin-top: 20px;
  padding: 10px;
  font-size: 16px;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-advanItem_text {
    margin-top: 0;
  }
}
.p-product_item {
  display: flex;
  position: relative;
  margin-bottom: 90px;
  justify-content: start;
}
@media screen and (max-width: 767px) {
  .p-product_item {
    flex-wrap: wrap;
  }
}
.p-product_item:nth-of-type(even) {
  justify-content: end;
}
.p-product_item:last-of-type {
  margin-bottom: 120px;
}
.p-productItem_img {
  background-color: #eee;
  width: 70%;
  padding: 0 15% 0 10%;
  position: relative;
}
.p-product_item:nth-of-type(even) .p-productItem_img {
  padding: 0 10% 0 15%;
}
@media screen and (max-width: 767px) {
  .p-productItem_img {
    width: 100%;
    padding: 0 15%;
  }
  .p-product_item:nth-of-type(even) .p-productItem_img {
    padding: 0 15%;
  }
}
.p-productItem_img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #FFF;
  transition: width .5s ease;
}
.p-product_item:nth-of-type(odd) .p-productItem_img::before {
  right: 0;
  left: initial;
}
.p-product_item.is_view .p-productItem_img::before {
  width: 0;
}
.p-productItem_img img {
  width: 100%;
}
.p-productItem_content {
  position: absolute;
  bottom: 20%;
  right: 0;
  width: 40%;
}
@media screen and (max-width: 767px) {
  .p-productItem_content {
    position: relative;
    width: 100%;
    text-align: left;
  }
}
.p-product_item:nth-of-type(even) .p-productItem_content {
  left: 0;
  right: inherit;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-product_item:nth-of-type(even) .p-productItem_content {
    text-align: left;
  }
}
.p-productItem_content h3 {
  font-size: 24px;
  margin-bottom: 10px;
}
.p-flow_list {
  margin-bottom: 120px;
}
.p-flow_item {
  position: relative;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-flow_item {
    margin-bottom: 70px;
  }
}
.p-flowItem_no {
  position: absolute;
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
  color: #666;
  left: 10px;
  top: -22px;
  z-index: 1;
}
.p-flowItem_content {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-flowItem_content {
    flex-wrap: wrap;
  }
}
.p-flowItem_content h3 {
  width: 250px;
  padding: 20px;
  background-color: #bbb;
  text-align: center;
  color: #fff;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80px;
}
@media screen and (max-width: 767px) {
  .p-flowItem_content h3 {
    width: 100%;
  }
}
.p-flowItem_content h3::before {
  content: "";
  width: 250px;
  height: 0;
  position: absolute;
  top: 0;
  border-left: 125px solid transparent;
  border-right: 125px solid transparent;
  border-top: 10px solid #FFF;
}
@media screen and (max-width: 767px) {
  .p-flowItem_content h3::before {
    content: none;
  }
}
.p-flow_item:nth-of-type(1) .p-flowItem_content h3::before {
  content: none;
}
.p-flowItem_content h3::after {
  content: "";
  width: 250px;
  height: 0;
  position: absolute;
  bottom: -10px;
  border-left: 125px solid transparent;
  border-right: 125px solid transparent;
  border-top: 10px solid #bbb;
}
@media screen and (max-width: 767px) {
  .p-flowItem_content h3::after {
    content: none;
  }
}
.p-flow_item:last-of-type .p-flowItem_content h3::after {
  content: none;
}
.p-flowItem_text {
  width: calc(98% - 250px);
  padding: 10px 0;
  font-size: 14px;
  border-bottom: dashed 1px #999;
}
@media screen and (max-width: 767px) {
  .p-flowItem_text {
    width: 100%;
  }
}
.p-faq_item {
  background: #fafafa;
  border: 1px solid #eee;
  margin-bottom: 15px;
  font-size: 14px;
  display: block;
}
.p-faq_item summary {
  padding: 20px;
  outline: 0;
  cursor: pointer;
  display: block;
  color: #333;
  font-size: 16px;
  list-style: none;
  position: relative;
}
.p-faq_item summary:hover {
  background: #eee;
  transition: all linear 0.2s;
}
.p-faq_item summary::-webkit-details-marker {
  display: none;
}
.p-faq_item summary::before {
  content: none !important;
}
.p-faq_item summary::after {
  content: "＋";
  color: #aaa;
  font-weight: 400;
  width: 16px;
  text-align:center;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.p-faq_item[open] summary {
  background: #eee;
}
.p-faq_item[open] summary::after {
  content: "−";
  margin-top: -2px;
}
.p-faq_item[open] p {
  animation: accordion 0.3s ease;
  overflow: hidden;
  font-size: 14px;
  padding: 20px 15px 20px 45px;
}
@keyframes accordion {
  0% {
    opacity: 0;
    height: 0;
  }
  70% {
    opacity: 0;
    max-height: 200px;
  }
  100% {
    opacity: 1;
  }
}
@media screen and (max-width: 767px) {
  .p-faq_item[open] p {
    padding: 20px;
  }
}


/* ==============================================================
*  MATELIALSページ
* ============================================================ */
@media screen and (max-width: 767px) {
  .p-materialsH1 {
    font-size: 7vw;
  }
}
.p-material_list {
  width: 100%;
  max-width: 1020px;
  margin: 0 auto;
  padding: 0 20px;
  margin-top: 140px;
}
.p-material_item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .p-material_item {
    flex-wrap: wrap;
  }
}
.p-materialItem_img {
  width: 45%;
  margin: 0;
  position: relative;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-materialItem_img {
    width: 100%;
  }
}
.p-materialItem_img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #FFF;
  transition: width .5s ease;
}
.p-material_item:nth-last-of-type(even) .p-materialItem_img {
  order: 1;
}
@media screen and (max-width: 767px) {
  .p-material_item:nth-last-of-type(even) .p-materialItem_img {
    order: 0;
  }
}
.p-material_item.is_view .p-materialItem_img::before {
  width: 0;
}
.p-material_item:nth-last-of-type(even) .p-materialItem_img::before {
  right: 0;
  left: initial;
}
.p-materialItem_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top;
}
.p-materialItem_content {
  width: 50%;
  transform: translate(20px,20px);
  opacity: 0;
  transition: transform .8s ease, opacity .3s ease;
}
@media screen and (max-width: 767px) {
  .p-materialItem_content {
    width: 100%;
    margin-top: 20px;
  }
}
.p-material_item.is_view .p-materialItem_content {
  transform: translate(0,0);
  opacity: 1;
}
.p-material_item:nth-last-of-type(odd) .p-materialItem_content {
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-material_item:nth-last-of-type(odd) .p-materialItem_content {
    text-align: left;
  }
}
.p-materialItem_content h2 {
  font-size: 26px;
  /* background-color: #FFF; */
  padding: 0 6px 15px 6px;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .p-materialItem_content h2 {
    font-size: 26px;
  }
}
.p-materialItem_content h2 span {
  font-size: 26px;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-materialItem_content h2 span {
    font-size: 24px;
  }
}
.p-materialItem_text {
  line-height: 2;
  display: inline-block;
  /* background-color: #FFF; */
  padding: 10px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-materialItem_text {
    padding: 0;
  }
}
.p-materialItem_content .p-btn {
  margin-top: 25px;
}



/* ==============================================================
*  PRODUCTSページ
* ============================================================ */
.p-products_list {
  width: 100%;
  max-width: 1020px;
  margin: 0 auto;
  padding: 0 20px;
  margin-top: 140px;
}
.p-products_item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .p-products_item {
    flex-wrap: wrap;
  }
}
.p-productsItem_img {
  width: 45%;
  margin: 0;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-productsItem_img {
    width: 100%;
  }
}
.p-productsItem_img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #FFF;
  transition: width .5s ease;
}
.p-products_item:nth-of-type(even) .p-productsItem_img {
  order: 1;
}
@media screen and (max-width: 767px) {
  .p-products_item:nth-of-type(even) .p-productsItem_img {
    order: 0;
  }
}
.p-products_item:nth-of-type(even) .p-productsItem_img::before {
  left: initial;
  right: 0;
}
.p-products_item.is_view .p-productsItem_img::before {
  width: 0;
}
.p-productsItem_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top;
}
.p-productsItem_content {
  width: 50%;
  transform: translate(20px,20px);
  opacity: 0;
  transition: transform .8s ease, opacity .3s ease;
}
@media screen and (max-width: 767px) {
  .p-productsItem_content {
    width: 100%;
    margin-top: 20px;
  }
}
.p-products_item.is_view .p-productsItem_content {
  transform: translate(0,0);
  opacity: 1;
}
.p-products_item:nth-of-type(even) .p-productsItem_content {
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-products_item:nth-of-type(even) .p-productsItem_content {
    text-align: left;
  }
}
.p-productsItem_content h2 {
  font-size: 34px;
  /* background-color: #FFF; */
  padding: 0 6px 15px 6px;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .p-productsItem_content h2 {
    font-size: 26px;
  }
}
.p-be10logo_img {
  width: 180px;
}
.p-skinimalogo_img {
  width: 100%;
}
.p-productsItem_text {
  line-height: 2;
  display: inline-block;
  /* background-color: #FFF; */
  padding: 10px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-productsItem_text {
    padding: 0;
  }
}
.p-productsItem_content .p-btn {
  margin-top: 25px;
}
/*** be-10 ***/
.p-be10mv h1 img {
  width: 100%;
}
.p-be10mv_pc {
  display: block;
}
.p-be10mv_sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-be10mv_pc {
    display: none;
  }
    .p-be10mv_sp {
    display: block;
  }
}

.p-be10_what {
  width: 100%;
  max-width: 1020px;
  margin: 0 auto;
  padding: 0 20px;
  margin-top: 110px;
  margin-bottom: 110px;
}
@media screen and (max-width: 767px) {
  .p-be10_what {
    margin-top: 80px;
    margin-bottom: 80px;
  }
}
.p-be10_intro {
  width: 100%;
  margin: 0 auto;
  padding: 40px 0;
  background-image: url('/assets/img/products/be104cellback.webp');
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-be10_intro {
    margin-top: 60px;
  }
}
.p-be10intro {
  width: 100%;
  max-width: 1020px;
  margin: 0 auto;
  padding: 0 20px;
}
.p-be10what {
  text-align: center;
}
.p-be10what img {
  width: 50%;
  max-width: 180px;
}
.p-be10what h2,
.p-be10_intro h2 {
  font-size: 36px;
  margin-top: 20px;
  text-align: center;
  position: relative;
  font-weight: 700;
  color: #8E7269;
}
@media screen and (max-width: 767px) {
  .p-be10what h2,
  .p-be10_intro h2 {
    font-size: 30px;
  }
}
.p-be10what h2 {
  color: #9b9b9b;
}

.p-be10what h2 span,
.p-be10_intro h2 span {
  /* background:linear-gradient(transparent 60%, #E6C0C0 0%);
  padding: 0 20px; */
}
@media screen and (max-width: 767px) {
  .p-be10what h2 span,
  .p-be10_intro h2 span {
    /* padding: 0; */
  }
}
.p-be10what_text {
  text-align: left;
  font-size: 18px;
  line-height: 1.8;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .p-be10what_text {
    font-size: 16px;
  }
}
.p-be10what_text span {
  font-size: 16px;
  line-height: 40px;
}
@media screen and (max-width: 767px) {
  .p-be10what_text span {
    font-size: 14px;
  }
}
.p-be10_intro h3 {
  font-size: 28px;
  font-weight: 700;
  margin-top: 20px;
  text-align: center;
  position: relative;
  z-index: 1;
  color: #777;
} 
@media screen and (max-width: 767px) {
  .p-be10_intro h3 {
    font-size: 24px;
  }
}
.p-be10intro_img01 {
  width: 100%;
  max-width: 900px;
  display: block;
  margin: 0 auto;
  margin-top: -150px;
  margin-bottom: -100px;
}
@media screen and (max-width: 767px) {
  .p-be10intro_img01 {
    margin-top: -15%;
    margin-bottom: -5%;
  }
}
.p-be10intro_list {
  margin-top: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.p-be10intro_item {
  width: 23%;
  position: relative;
  /* padding: 10px 1%;
  border: solid 1px #CCC; */
}
@media screen and (max-width: 767px) {
  .p-be10intro_item {
    width: 49%;
    margin-bottom: 20px;
    padding: 10px;
  }
}
@media screen and (max-width: 480px) {
  .p-be10intro_item {
    width: 100%;
  }
}
.p-be10intro_item h4 {
  /* background:linear-gradient(transparent 60%, #eee 0%); */
  display: inline;
  padding: 0;
  font-size: 17px;
  font-weight: 700;
  z-index: 1;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-be10intro_item h4 {
    font-size: 16px;
    padding: 0;
  }
}
.p-be10intro_item p {
  margin-top: 5px;
  font-size: 14px;
  line-height: 1.7;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .p-be10intro_item p {
    padding: 0;
  }
}
.p-be10intro_item p.p-be10intro_item-no {
  position: absolute;
  top: -15px;
  right: 0;
  font-size: 80px;
  font-weight: 700;
  color: #d1d1d1;
  line-height: 1;
  margin: 0;
}

.p-be10raw_list {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.p-be10raw_item {
  width: 19%;
  padding: 10px 1%;
  background-color: #eee;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-be10raw_item {
    width: 49%;
    margin-bottom: 20px;
    padding: 10px;
  }
}
.p-be10raw_item img {
  border-radius: 50%;
}
.p-be10raw_item h4 {
  font-size: 18px;
  font-weight: 700;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .p-be10raw_item h4 {
    font-size: 16px;
  }
}
.p-be10raw_item p {
  text-align: left;
  font-size: 12px;
  line-height: 1.6;
  margin-top: 10px;
}
.p-be10_goods {
  margin-top: 140px;
}
@media screen and (max-width: 767px) {
  .p-be10_goods {
    margin-top: 45vw;
  }
}
.p-be10goods_item {
  display: flex;
  margin-top: 100px;
  padding: 0 20px 40px 20px;
  position: relative;
}
.p-be10goods_item::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  z-index: -1;
  background-color: #EEE;
  transition: all .5s ease;
}
.p-be10goods_item.is_view::after {
  width: 60%;
}
@media screen and (max-width: 1070px) {
  .p-be10goods_item {
    flex-wrap: wrap;
    background-color: #eee;
    margin: 30px;
    margin-top: 25vw;
  }
}
@media screen and (max-width: 767px) {
  .p-be10goods_item {
    margin: 20px;
    margin-top: 35vw;
  }
}
.p-be10goods_item:nth-of-type(even)::after {
  right: inherit;
  left: 0;
}
.p-be10goods_item:nth-of-type(even).is_view::after {
  width: 60%;
}
@media screen and (max-width: 1070px) {
  .p-be10goods_item:nth-of-type(even) {
    background-color: #eee;
  }
}
.p-be10goods_img {
  width: 50%;
  text-align: right;
  display: flex;
  justify-content: right;
  align-items: center;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 1070px) {
  .p-be10goods_img {
    width: 100%;
    justify-content: center;
    margin-top: -17vw;
  }
}
@media screen and (max-width: 767px) {
  .p-be10goods_img {
    margin-top: -17vw;
  }
}
.p-be10goods_item:nth-of-type(even) .p-be10goods_img {
  order: 1;
  text-align: left;
  justify-content: left;
}
@media screen and (max-width: 1070px) {
  .p-be10goods_item:nth-of-type(even) .p-be10goods_img {
    order: 0;
    justify-content: center;
  }
}
.p-be10goods_img img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 1070px) {
  .p-be10goods_img img {
    position: initial;
    top: initial;
    transform: initial;
  }
}
@media screen and (max-width: 767px) {
  .p-be10goods_img img {
    max-width: 90%;
  }
}
.p-be10goods_img .p-be10goods_img-off {
  opacity: 1;
  transition: opacity .3s ease;
}
.p-be10goods_img .p-be10goods_img-on {
  opacity: 0;
  transition: opacity .3s ease;
}
.p-be10goods_img:hover .p-be10goods_img-off {
  opacity: 0;
}
.p-be10goods_img:hover .p-be10goods_img-on {
  opacity: 1;
}
@media screen and (max-width: 1070px) {
  .p-be10goods_img .p-be10goods_img-off {
    display: none;
  }
  .p-be10goods_img .p-be10goods_img-on {
    opacity: 1;
  }
}

.p-be10goods_img-01 img {
  width: 420px;
  margin-right: 50px;
}
.p-be10goods_img-02 img {
  width: 420px;
  margin-left: 50px;
}
.p-be10goods_img-03 img {
  width: 240px;
  margin-right: 70px;
}
.p-be10goods_img-03 img:nth-of-type(2) {
  width: 480px;
}
.p-be10goods_img-04 img {
  width: 400px;
  margin-left: 70px;
}
.p-be10goods_img-05 img {
  width: 150px;
  margin-right: 130px;
  transform: translateY(-50%) rotate(15deg);
}
@media screen and (max-width: 1070px) {
  .p-be10goods_img-05 img {
    transform: initial;
  }
}
.p-be10goods_img-05 img:nth-of-type(2) {
  width: 190px;
}
@media screen and (max-width: 767px) {
  .p-be10goods_img-05 img:nth-of-type(2) {
    width: 110px;
  }
}
.p-be10goods_img-01 img,
.p-be10goods_img-02 img,
.p-be10goods_img-03 img,
.p-be10goods_img-04 img,
.p-be10goods_img-05 img {
  image-rendering: auto;
}
@media screen and (max-width: 1070px) {
  .p-be10goods_img-01 img,
  .p-be10goods_img-02 img,
  .p-be10goods_img-03 img,
  .p-be10goods_img-04 img,
  .p-be10goods_img-05 img {
    margin: 0 0 20px;
  }
}

.p-be10goods_content {
  width: 50%;
  text-align: left;
}
@media screen and (max-width: 1070px) {
  .p-be10goods_content {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-be10goods_content {
    max-width: 100%;
  }
}
.p-be10goods_item:nth-of-type(even) .p-be10goods_content {
  text-align: right;
}
.p-be10goods_title,
.p-be10goods_text,
.p-be10goods_content h3,
.p-be10goods_content .p-be10goods_spec,
.p-be10goods_content ul {
  width: 50%;
  min-width: 480px;
  max-width: 480px;
  margin-right: auto;
  margin-left: 0;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-be10goods_title,
  .p-be10goods_text,
  .p-be10goods_content h3,
  .p-be10goods_content .p-be10goods_spec,
  .p-be10goods_content ul {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
  }
}
.p-be10goods_item:nth-of-type(even) .p-be10goods_title,
.p-be10goods_item:nth-of-type(even) .p-be10goods_text,
.p-be10goods_item:nth-of-type(even) .p-be10goods_content h3,
.p-be10goods_item:nth-of-type(even) .p-be10goods_content .p-be10goods_spec,
.p-be10goods_item:nth-of-type(even) .p-be10goods_content ul {
  margin-right: 0;
  margin-left: auto;
}
.p-be10goods_title {
  font-size: 30px;
  font-weight: 700;
  margin-top: -30px;
  /* color: #8E7269; */
  color: #a52d2d;
}
@media screen and (max-width: 1070px) {
  .p-be10goods_title {
    margin-top: 0;
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .p-be10goods_title {
    font-size: 5.5vw;
  }
}
.p-be10goods_text {
  margin-top: 25px;
  font-size: 14px;
}
.p-be10goods_content h3 {
  font-size: 30px;
  line-height: 1.1;
  font-weight: 600;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .p-be10goods_content h3 {
    font-size: 6vw;
    line-height: 1.2;
  }
}
.p-be10goods_content h3 span {
  display: block;
  font-size: 16px;
  font-weight: 400;
  padding-top: 10px;
}
@media screen and (max-width: 767px) {
  .p-be10goods_content h3 span {
    font-size: 16px;
    line-height: 1.4;
  }
}
.p-be10goods_spec {
  margin-top: 20px;
  padding-left: 30px;
  font-size: 16px;
  position: relative;
}
.p-be10goods_spec::before {
  content: "●";
  color: #E6C0C0;
  font-size: 10px;
  position: absolute;
  top: 6px;
  left: 15px;
}
@media screen and (max-width: 767px) {
  .p-be10goods_spec {
    padding-left: 15px;
  }
  .p-be10goods_spec::before {
    left: 0;
  }
}
.p-be10goods_content ul {
  margin-top: 30px;
  padding-left: 12px;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .p-be10goods_content ul {
    font-size: 14px;
    padding-left: 0;
  }
}
.p-be10goods_content ul li{
  padding-left: 33px;
  position: relative;
  margin-bottom: 10px;
}
.p-be10goods_content ul li:before,
.p-be10goods_content ul li:after{
	content:"";
	display:block;
	position:absolute;
}
.p-be10goods_content ul li:before{
  width: 16px;
  height: 16px;
  background: #ffffff;
  border: 1px solid #E6C0C0;
  border-radius: 5px;
  left: 0;
  top: 4px;
}
.p-be10goods_content ul li:after{
  border-left: 4px solid #8E7269;
  border-bottom: 3px solid #8E7269;
  width: 14px;
  height: 8px;
  transform: rotate(-45deg);
  left: 5px;
  top: 5px;
}
.p-be10intro_img02 {
  width: 90%;
  max-width: 700px;
  display: block;
  margin: 30px auto 30px;
}
.p-be10intro_h3-bc {
  margin-bottom: 20px;
}
.p-be10intro_img03 {
  width: 90%;
  max-width: 700px;
  display: block;
  margin: 30px auto 60px;
}
.p-be10intro_img04 {
  width: 90%;
  max-width: 700px;
  display: block;
  margin: 30px auto 30px;
}

/* ==============================================================
*  INFORMATIONページ
* ============================================================ */
.p-information {
  padding-bottom: 150px;
}
.p-infoH1 {
  color: #FFF;
}
@media screen and (max-width: 767px) {
  .p-infoH1 {
    font-size: 44px;
  }
}
.p-infoH1::after {
  background-position: top 10% center;
}
.p-info_content {
  width: 100%;
  max-width: 1020px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .p-info_content {
    padding-right: 34px;
  }
}
.p-info_item {
  padding: 30px 10px;
  border-bottom: 1px solid #CCC;
}
.p-info_item:nth-of-type(1) {
  border-top: 1px solid #CCC;
}
.p-info_date {
  color: #777;
  font-size: 18px;
}
.p-info_text {
  font-size: 14px;
}
.p-info_text span {
  font-size: 16px;
  font-weight: 700;
}
.p-info_icon {
  margin-left: 20px;
  font-size: 12px;
  line-height: 1;
  padding: 5px 10px;
  display: inline-block;
  background-color: #ccc;
  color: #333;
  position: relative;
  top: -1px;
}
.p-info_icon.p-infoIcon_red {
  background-color: #ed7a9b;
  color: #fff;
}
.p-info_icon.p-infoIcon_blue {
  background-color: #7b93c7;
  color: #fff;
}
.p-media {
  /* background-color: #EBEBEB; */
  padding: 150px 0;
}
.p-media_list {
  width: 100%;
  max-width: 1020px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
}
.p-media_item {
  width: 30%;
  display: flex;
  justify-content: space-around;
  margin: 30px 1%;
}
@media screen and (max-width: 767px) {
  .p-media_item {
    width: 98%;
  }
}
.p-media_img {
  width: 50%;
}
.p-media_img img {
  width: 100%;
}
.p-media_content {
  width: 45%;
}
.p-media_content h4 {
  padding-bottom: 15px;
}
.p-media_content h4 span {
  display: block;
  font-size: 14px;
}
.p-media_text {
  font-size: 12px;
  padding-top: 15px;
  border-top: 1px solid #999;
}


/* ==============================================================
*  COMPANYページ
* ============================================================ */
.p-company_message,
.p-company_profile,
.p-company_history,
.p-company_access,
.p-company_sdgs {
  margin-bottom: 140px;
}
.p-compmsg,
.p-compprofile_list,
.p-comphistory,
.p-compaccess,
.p-compsdgs {
  width: 100%;
  max-width: 1020px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .p-compmsg,
  .p-compprofile_list,
  .p-comphistory,
  .p-compaccess,
  .p-compsdgs {
      padding-right: 34px;
  }
}
.p-company_profile .p-companyH2,
.p-company_access  .p-companyH2 {
  margin-bottom: 20px;
}
.p-compprofile_icon,
.p-compaccess_icon {
  text-align: center;
  width: 40px;
  margin: 0 auto;
}
.p-compprofile_icon img,
.p-compaccess_icon img {
  width: 100%;
}
.p-companyH3 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 40px;
}
.p-companyH3 span {
  font-size: 24px;
  display: block;
}
.p-compmsg_text {
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: -1px;
}
.p-compprofile_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 20px;
}
.p-compprofile_title {
  width: 200px;
  font-weight: 400;
  padding: 24px 0;
  border-bottom: solid 1px #666;
}
@media screen and (max-width: 767px) {
  .p-compprofile_title {
    width: 100%;
    padding-top: 20px;
    border-top: solid 1px #666;
    border-bottom: none;
  }
}
.p-compprofile_text {
  width: calc(100% - 210px);
  padding: 24px 0;
  border-bottom: solid 1px #CCC;
}
@media screen and (max-width: 767px) {
  .p-compprofile_text {
    width: 100%;
    padding-bottom: 20px;
    border-top: solid 1px #CCC;
    border-bottom: none;
  }
  .p-compprofile_text:last-child {
    border-bottom: solid 1px #666;
  }
}
.p-comphistory {
  padding-left: 70px;
}
@media screen and (max-width: 767px) {
  .p-comphistory {
    padding-left: 45px;
  }
}
.p-comphistory_list {
  border-left: solid 1px #ccc;
  padding: 45px 0;
}
@media screen and (max-width: 767px) {
  .p-comphistory_list {
    padding: 20px 0;
  }
}
.p-comphistory_item {
  position: relative;
}
.p-history_year {
  position: absolute;
  font-size: 49px;
  font-weight: 900;
  letter-spacing: 3px;
  color: #cccccc;
  left: -52px;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-history_year {
    font-size: 36px;
    left: -39px;
  }
}
.p-history_text {
  padding: 40px 0 40px 45px;
  list-style: disc;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .p-history_text {
    padding: 30px 10px 30px 30px;
  }
}
.p-history_text li {
  margin-bottom: 10px;
}
.p-compaccess {
  display: flex;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .p-compaccess {
    flex-wrap: wrap;
  }
}
.p-compaccess_map {
  width: 50%;
  order: 1;
}
@media screen and (max-width: 767px) {
  .p-compaccess_map {
    width: 100%;
    order: 0;
  }
}
.p-compaccess_map img {
  width: 100%;
}
.p-compaccess_map p {
  text-align: right;
  font-size: 14px;
}
.p-compaccess_text {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .p-compaccess_text {
    width: 100%;
  }
}
.p-compaccess_text p:nth-of-type(1) {
  padding-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .p-compaccess_text p {
    padding-top: 16px;
  }
  .p-compaccess_text p:nth-of-type(1) {
    padding-bottom: 0;
  }
}
#sdgs img {
  width: 60%;
  max-width: 230px;
  margin-top: 10px;
  margin-bottom: 10px;
  order: 1;
}
@media screen and (max-width: 767px) {
  #sdgs img {
    max-width: 180px;
  }
}
#sdgs span {
  font-size: 42px;
  font-weight: 700;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  #sdgs span {
    font-size: 30px;
    line-height: 1.5;
    margin-bottom: 10px;
  }
}
.p-compsdgs {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
  padding: 30px 40px;
  background-color: #eee;
}
@media screen and (max-width: 767px) {
  .p-compsdgs {
    padding: 15px;
    margin: 0 30px 30px 20px;
    width: calc(100% - 50px);
  }
}
.p-compsdgs_text {
  width: 100%;
  font-size: 18px;
  position: relative;
  padding-left: 40px;
  border-bottom: 1px solid #dfdfdf;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .p-compsdgs_text {
    width: 100%;
    font-size: 16px;
    padding-left: 32px;
  }
}
.p-compsdgs_text::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: -3px;
  left: 0;
  width: 35px;
  height: 35px;
  background-image: url(/assets/img/company/sdgsicon.png);
  background-position: top;
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .p-compsdgs_text::before {
    top: -3px;
    width: 30px;
  }
}
.p-compsdgs_img {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .p-compsdgs_img {
    width: 100%;
    justify-content: center;
  }
}
.p-compsdgs_img img {
  width: 100px;
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .p-compsdgs_img img {
    margin-right: 0;
    margin-left: 10px;
    width: calc(25% - 10px);
  }
}


/* ==============================================================
*  CONTACTページ
* ============================================================ */
.p-contact .is_hidden {
  display: none;
}
.p-contact_input,
.p-contact_confirm {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 20px;
}
.p-contact_form dl,
.p-contact_confirm dl {
  display: flex;
  padding: 20px 0;
  border-top: solid 1px #ccc;
}
@media screen and (max-width: 767px) {
  .p-contact_form dl,
  .p-contact_confirm dl {
    flex-wrap: wrap;
  }
}
.p-contact_form dt,
.p-contact_confirm dt {
  width: 30%;
  font-weight: 400;
  padding: 15px 10px 15px 0;
}
@media screen and (max-width: 767px) {
  .p-contact_form dt,
  .p-contact_confirm dt {
    width: 100%;
    padding: 5px 0;
  }
}
.p-contact_form dd,
.p-contact_confirm dd {
  width: 70%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .p-contact_form dd,
  .p-contact_confirm dd {
    width: 100%;
  }
}
.p-contact_form select {
  height: 34px;
  padding: 0.5em 0.83em;
  box-shadow: none;
  background: #ffffff url(/assets/img/contact/ico_arrow_select.svg) no-repeat right center;
  background-size: contain;
  font-size: 14px;
  -webkit-appearance: none;
  appearance: none;
  transition: all 0.3s ease;
  width: 100%;
  border: solid 1px #999;
  border-radius: 3px;
  line-height: 1;
}
.p-contact_form input {
  height: 34px;
  padding: 0.5em 0.83em;
  box-shadow: none;
  font-size: 14px;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  border: solid 1px #999;
  border-radius: 3px;
  line-height: 1;
}
.p-contact_form textarea {
  padding: 0.5em 0.83em;
  box-shadow: none;
  font-size: 14px;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  border: solid 1px #999;
  border-radius: 3px;
  line-height: 1.4;
}
.p-contact_form .form-txt._err {
  width: 100%;
  font-size: 12px;
  color: #c00;
}


/* ==============================================================
*  CPC(CELL-PROGRAMING CM)ページ
* ============================================================ */
.l-main_cpc {
  background-color: #FFF;
}
.p-cpc_title {
  overflow: hidden;
  position: relative;
}
.p-cpcH1::before,
.p-cpcH1::after {
  content: none;
}
.p-cpcH1 {
  animation: none;
  display: block;
  margin: 0 -100px;
  padding: 200px 100px 150px;
  text-align: center;
  background-image: url(/assets/img/materials/cpctitleback.webp);
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: rgba(255,255,255,0.6);
  background-blend-mode: lighten;
  border-radius: 0 0 50% 50% / 0 0 45% 45%;
}
@media screen and (max-width: 767px) {
  .p-cpcH1 {
    padding-top: 150px;
    padding-bottom: 120px;
    border-radius: 0 0 50% 50% / 0 0 30% 30%;
  }
}
@media screen and (max-width: 480px) {
  .p-cpcH1 {
    padding-top: 120px;
    padding-bottom: 100px;
  }
}
.p-cpcH1 span {
  display: inline;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-cpcH1 span {
    width: 100%;
  }
}
.p-cpcH1 span.p-cpcH1_row1,
.p-cpcH1 span.p-cpcH1_row1-2nd {
  line-height: 1.2;
  font-size: 40px;
  font-weight: 700;
  padding-bottom: 30px;
  border-bottom: 1px solid #434343;
}
@media screen and (max-width: 767px) {
  .p-cpcH1 span.p-cpcH1_row1,
  .p-cpcH1 span.p-cpcH1_row1-2nd {
    font-size: 4.5vw;
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 480px) {
  .p-cpcH1 span.p-cpcH1_row1,
  .p-cpcH1 span.p-cpcH1_row1-2nd {
    font-size: 8vw;
    border: none;
  }
}
.p-cpcH1 span.p-cpcH1_row1-2nd {
  padding-left: 20px;
}
@media screen and (max-width: 480px) {
  .p-cpcH1 span.p-cpcH1_row1-2nd {
    padding-left: 0;
    border-bottom: 1px solid #434343;
  }
}
.p-cpcH1 span.p-cpcH1_row1-2nd br {
  display: none;
}
@media screen and (max-width: 480px) {
  .p-cpcH1 span.p-cpcH1_row1-2nd br {
    display: inline;
  }
}
.p-cpcH1 span.p-cpcH1_row2 {
  line-height: 1.2;
  font-size: 30px;
  display: inline-block;
  padding-top: 60px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-cpcH1 span.p-cpcH1_row2 {
    font-size: 4vw;
    padding-top: 50px;
  }
}
@media screen and (max-width: 480px) {
  .p-cpcH1 span.p-cpcH1_row2 {
    font-size: 5.5vw;
  }
}
.p-cpcH1 span.p-cpcH1_row3 {
  font-size: 20px;
  display: inline-block;
  transform: translateY(-10px);
}
@media screen and (max-width: 767px) {
  .p-cpcH1 span.p-cpcH1_row3 {
    font-size: 2.5vw;
    transform: translateY(-15px);
  }
}
@media screen and (max-width: 480px) {
  .p-cpcH1 span.p-cpcH1_row3 {
    font-size: 4vw;
  }
}
.p-cpcH1 span.p-cpcH1_row4 {
  font-size: 24px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-cpcH1 span.p-cpcH1_row4 {
    font-size: 3vw;
  }
}
@media screen and (max-width: 480px) {
  .p-cpcH1 span.p-cpcH1_row4 {
    font-size: 4.5vw;
  }
}
.p-cpc_title-arrow {
  position: relative;
  width: 24px;
  height: 62px;
  margin: -42px auto 0;
}
.chevron {
  position: absolute;
  width: 28px;
  height: 8px;
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
  animation: move 3s ease-out infinite;
}
.chevron:first-child {
  animation: move 3s ease-out 1s infinite;
}
.chevron:nth-child(2) {
  animation: move 3s ease-out 2s infinite;
}
.chevron:before,
.chevron:after {
  content: ' ';
  position: absolute;
  top: 0;
  height: 100%;
  width: 51%;
  background: #333333;
}
.chevron:before {
  left: 0;
  transform: skew(0deg, 30deg);
}
.chevron:after {
  right: 0;
  width: 50%;
  transform: skew(0deg, -30deg);
}
@keyframes move {
  25% {
    opacity: 1;
  }
  33% {
    opacity: 1;
    transform: translateY(30px);
  }
  67% {
    opacity: 1;
    transform: translateY(40px);
  }
  100% {
    opacity: 0;
    transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
  }
}
.p-cpc_subtitle {
  margin-top: 50px;
  margin-bottom: 100px;
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  color: #B67B03;
}
@media screen and (max-width: 767px) {
  .p-cpc_subtitle {
    font-size: 4.5vw;
  }
}
@media screen and (max-width: 480px) {
  .p-cpc_subtitle {
    font-size: 8vw;
    margin-bottom: 45px;
  }
}
.p-cpc_subtitle-br {
  display: none;
}
@media screen and (max-width: 480px) {
  .p-cpc_subtitle-br {
    display: inline-block;
  }
}
.p-cpc_list {
  width: 100%;
  max-width: 1020px;
  margin: 70px auto 0;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  justify-content: space-between;
}
@media screen and (max-width: 480px) {
  .p-cpc_list {
    padding: 0 25px;
    margin-top: 0;
  }
}
.p-cpc_item {
  width: calc(50% - 30px);
  max-width: 400px;
  margin: 0 auto;
  padding-top: 20px;
  opacity: 0;
  transition: all .8s ease-in-out;
}
@media screen and (max-width: 767px) {
  .p-cpc_item {
    margin-top: 20px;
    width: 100%;
  }
}
.p-cpc_item.is_view {
  padding-top: 0;
  opacity: 1;
}
.p-cpcitem_view {
  cursor: pointer;
  aspect-ratio: 1 / 1;
  background-image: url(/assets/img/materials/cpcitemback.webp);
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: rgba(255,255,255,0.6);
  background-blend-mode: lighten;
  border-radius: 50%;
  display: flex;
  align-items: center;
  position: relative;
  transition: all .5s ease;
}
.p-cpcitem_view:hover {
  transform: scale(1.05);
}
.p-cpcitem_no {
  position: absolute;
  top: -30px;
  left: 0;
  font-size: 120px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  line-height: 1;
  color: #666666;
}
.p-cpcitem_view h2 {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
  width: 100%;
}
.p-cpcitem_view h2 span {
  font-size: 24px;
  color: #B67B03;
}
.p-cpcitem_more {
  position: absolute;
  bottom: 30px;
  right: 10px;
  padding: 10px 25px;
  background-color: #707070;
  color: #FFF;
  border-radius: 0 25px 25px;
  font-size: 14px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
}
.p-cpcitem_more p::after {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin: 0 0 0 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}
.p-cpc_item07,
.p-cpc_item08 {
  margin-top: 30px;
}
.p-cpc_item07 .p-cpcitem_view,
.p-cpc_item08 .p-cpcitem_view {
  aspect-ratio: unset;
  background: #707070;
  border-radius: 0 50px 50px;
  color: #FFF;
  padding: 15px 0;
}
.p-cpc_item07 h2::after ,
.p-cpc_item08 h2::after {
  content: "";
  display: inline-block;
  width: 11px;
  height: 11px;
  margin: 0 0 0 15px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}

.p-cpcitem_modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgb(0,0,0,0.5);
  z-index: 10;
}
.p-cpcitem_modal.is_show {
  display: block;
  animation: modalshow .5s ease;
}
@keyframes modalshow {
  0%{
    opacity: 0;
  }
  100%{
    opacity: 1;
  }
}
.p-cpcmodal_content {
  width: 95%;
  max-width: 980px;
  margin: 100px auto;
  height: calc(100vh - 200px);
  background-color: #FFF;
  padding: 60px 10px 40px 60px;
  border-radius: 4px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-cpcmodal_content {
    padding-left: 20px;
  }
}
.p-cpcmodal_close {
  position: absolute;
  right: 0px;
  top: 0;
  width: 50px;
  height: 50px;
  font-size: 50px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}
.cpcmodal_wrap {
  height: 100%;
  overflow-y: scroll;
  padding-right: 30px;
  -ms-overflow-style: none;
  scrollbar-width: thin;
  scrollbar-color: #555 #ccc;
}
@media screen and (max-width: 767px) {
  .cpcmodal_wrap {
    padding-right: 10px;
  }
}
.cpcmodal_wrap::-webkit-scrollbar {
  width: 10px;
}
.cpcmodal_wrap::-webkit-scrollbar-track {
  background-color: #ccc;
  border-radius: 5px;
}
.cpcmodal_wrap::-webkit-scrollbar-thumb{
  background-color: #555;
  border-radius: 5px;
}


.p-cpcmodal_content h3 {
  font-size: 24px;
  font-weight: 700;
  color: #B67B03;
  text-align: center;
}
.p-cpcmodal_box {
  padding: 30px 0 80px;
}
@media screen and (max-width: 767px) {
  .p-cpcmodal_box {
    padding-top: 10px;
  }
}
.p-cpcmodal_text {
  width: 100%;
  font-size: 20px;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-cpcmodal_text {
    font-size: 18px;
  }
}
.p-cpcmodal_text ul {
  background-color: #eee;
  border-radius: 10px;
  list-style: disc;
  padding: 2em 2em 2em 3.2em;
  font-size: 18px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-cpcmodal_text ul {
    padding: 1em 1em 1em 2.5em;
    font-size: 16px;
  }
}
.p-cpcmodal_text ul li {
  margin-bottom: 15px;
}
.p-cpcmodal_text ul li:last-of-type {
  margin-bottom: 0;
}
.p-cpcmodal_contact {
  text-align: center;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .p-cpcmodal_contact {
    font-size: 16px;
  }
}
.p-cpcmodal_contact .p-btn {
  margin-top: 20px;
}
.p-cpcmodal_img {
  width: 100%;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .p-cpcmodal_img {
    width: 100%;
    margin-top: 25px;
  }
}
.p-cpcmodal_img.p-cpcmodal_img-100 {
  width: 100%;
}
.p-cpcmodal_img.p-cpcmodal_img-50 {
  width: 50%;
  margin: 20px auto 0;
}
@media screen and (max-width: 767px) {
  .p-cpcmodal_img.p-cpcmodal_img-50 {
    width: 100%;
  }
}
.p-cpcmodal_img img {
  width: 100%;
  image-rendering: auto;
}
.p-cpcmodal_img ol {
  margin: 0;
  padding: 0;
  font-size: 13px;
}
.p-cpcmodal_img ol li  {
  list-style: none;
  padding-left: 1.3em;
  text-indent: -1.3em;
}
.p-cpcmodal_img .p-cpcmodal_caption {
  text-align: center;
  margin-bottom: 5px;
  font-size: 14px;
}
.p-cpc_item06 .p-cpcmodal_text {
  width: 100%;
}
.p-cpc_item06 .p-cpcmodal_text ul {
  padding-left: 2.4em;
}
.p-cpc_item06 .p-cpcmodal_text ul li {
  font-size: 18px;
  margin-bottom: 10px;
}
.p-cpc_item07 .p-cpcmodal_text {
  width: 100%;
}
.p-cpc_item07 .p-cpcmodal_text details {
  background: #fafafa;
  border: 1px solid #eee;
  margin-bottom: 15px;
  font-size: 14px;
  display: block;
}
.p-cpc_item07 .p-cpcmodal_text summary {
  padding: 20px;
  outline: 0;
  cursor: pointer;
  display: block;
  color: #333;
  font-size: 16px;
  list-style: none;
  position: relative;
}
.p-cpc_item07 .p-cpcmodal_text summary::after {
  content: "＋";
  color: #aaa;
  font-weight: 400;
  width: 16px;
  text-align: center;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.p-cpc_item07 .p-cpcmodal_text p {
  padding: 10px 30px;
}
.p-cpcitem01-01 {
  padding: 20px;
}
@media screen and (max-width: 767px) {
  .p-cpcitem01-01 {
    padding: 20px 0 0;
  }
}
.p-cpcitem01-01 img {
  image-rendering: auto;
}
.p-cpcitem01-02 {
  padding-top: 20px;
}
.p-cpcitem02-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 100px;
}
.p-cpcitem02-01 {
  width: 75%;
}
@media screen and (max-width: 767px) {
  .p-cpcitem02-01 {
    width: 90%;
    margin: auto;
  }
}
.p-cpcitem02-02 {
  width: 45%;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .p-cpcitem02-02 {
    width: 60%;
    margin-top: 30px;
  }
}
.p-cpcitem02-02 img {
  image-rendering: auto;
}



.p-cpcitem03-01 {
  padding: 20px;
  width: 70%;
  margin: 70px auto 0;
}
@media screen and (max-width: 767px) {
  .p-cpcitem03-01 {
    width: 90%;
    padding: 0;
  }
}
.p-cpcitem04-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.p-cpcimg_caption {
  text-align: center;
  margin-bottom: 10px;
}
.p-cpcitem04-01 {
  width: 36%;
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .p-cpcitem04-01 {
    width: 70%;
    margin: 80px auto 0;
  }
}
.p-cpcitem04-02 {
  width: 54%;
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .p-cpcitem04-02 {
    width: 100%;
    margin-top: 80px;
  }
}
.p-cpcitem05-01 {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 100px;
  justify-content: center;
}
.p-cpcitem05-01 img {
  width: 40%;
}
@media screen and (max-width: 767px) {
  .p-cpcitem05-01 img {
    width: 95%;
  }
}
.p-cpcitem05-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.p-cpcitem05-02 {
  width: 43%;
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .p-cpcitem05-02 {
    width: 95%;
    margin-top: 60px;
  }
}
.p-cpcitem05-02 .p-cpcmodal_caption {
  margin-bottom: 15px;
  font-size: 18px;
}
.p-cpcitem05-03 {
  width: 37%;
  margin-top: 75px;
}
@media screen and (max-width: 767px) {
  .p-cpcitem05-03 {
    width: 95%;
    margin-top: 90px;
  }
}
.p-cpcitem05-03 .p-cpcmodal_caption {
  margin-bottom: 15px;
  font-size: 18px;
}
.p-cpcmodal_ulist ul {
  background-color: #eee;
  border-radius: 10px;
  list-style: disc;
  padding: 2em 2em 2em 3.2em;
  line-height: 2;
  margin: 20px;
}
@media screen and (max-width: 767px) {
  .p-cpcmodal_ulist ul {
    padding: 1em 1em 1em 2.5em;
    margin: 20px 0;
  }
}
.p-cpcmodal_img.p-cpcitem06-01 {
  margin-top: 40px;
}
.p-cpc_item08-qa details {
  background: #fafafa;
  border: 1px solid #eee;
  margin-bottom: 15px;
  font-size: 14px;
  display: block;
}
.p-cpc_item08-qa summary {
  padding: 20px;
  outline: 0;
  cursor: pointer;
  display: block;
  color: #333;
  font-size: 16px;
  list-style: none;
  position: relative;
}
.p-cpc_item08-qa summary:hover {
  background: #eee;
  transition: all linear 0.2s;
}
.p-cpc_item08-qa summary::-webkit-details-marker {
  display: none;
}
.p-cpc_item08-qa summary::before {
  content: none !important;
}
.p-cpc_item08-qa summary::after {
  content: "＋";
  color: #aaa;
  font-weight: 400;
  width: 16px;
  text-align:center;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.p-cpc_item08-qa details[open] summary {
  background: #eee;
}
.p-cpc_item08-qa details[open] summary::after {
  content: "−";
  margin-top: -2px;
}

.p-cpc_item08-qa p {
  animation: accordion 0.3s ease;
  overflow: hidden;
  font-size: 14px;
  padding: 20px 15px 20px 45px;
}
.p-cpc_item08-qa details[open] p {
  animation: accordion 0.3s ease;
  overflow: hidden;
  font-size: 14px;
  padding: 20px 15px 20px 45px;
}
@media screen and (max-width: 767px) {
  .p-cpc_item08-qa details[open] p {
    padding: 20px;
  }
}


/* ==============================================================
*  RECRUITページ
* ============================================================ */
.p-recruit {
  margin-bottom: 140px;
}
.p-recruit_list {
  width: 100%;
  max-width: 1020px;
  margin: 0 auto;
  padding: 0 20px;
}
.p-recruit_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.p-recruit_title {
  width: 200px;
  font-weight: 700;
  padding: 24px 0;
  border-bottom: solid 1px #666;
}
@media screen and (max-width: 767px) {
  .p-recruit_title {
    width: 100%;
    padding-top: 20px;
    border-top: solid 1px #666;
    border-bottom: none;
  }
}
.p-recruit_text {
  width: calc(100% - 210px);
  padding: 24px 0;
  border-bottom: solid 1px #CCC;
}
@media screen and (max-width: 767px) {
  .p-recruit_text {
    width: 100%;
    padding-bottom: 20px;
    border-top: solid 1px #CCC;
    border-bottom: none;
  }
  .p-recruit_text:last-child {
    border-bottom: solid 1px #666;
  }
}
