/*========================================
スプラッシュ
========================================*/

.p-splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  width: 100%;
  height: 100%;
  background-image: url(../img/splash_background.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  animation: splash-background 3s;
  animation-fill-mode: forwards;
}

.p-splash-screen .p-splash-screen__logo {
  opacity: 0;
  animation: splash-logo 1.5s;
  animation-fill-mode: forwards;
  animation-delay: 0.5s;
}

.p-splash-screen p {
  margin-top: 0;
  color: #ffffff;
  font-family: var(--font-family-Marcellus);
  opacity: 0;
  animation: splash-text 1s;
  animation-delay: 1s;
}

.p-splash-screen .p-splash-screen__title {
  margin-top: 96px;
}

.p-splash-screen .p-splash-screen__text {
  
}


@keyframes splash-background {
  0% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes splash-logo {
  0% {
    opacity: 0;
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes splash-text {
  0% {
    opacity: 0;
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@media (orientation: landscape) and (max-width: 956px) {
  .p-splash-screen .p-splash-screen__title {
    margin-top: 48px;
  }
}

@media (max-width: 639px) {
  .p-splash-screen {
    background-image: url(../img/splash_background_sp.jpg);
  }
  .p-splash-screen .p-splash-screen__logo {
    width: 50%;
  }
  .p-splash-screen .p-splash-screen__title {
    margin-top: 48px;
    max-width: 40%
  }
  .p-splash-screen .p-splash-screen__text {
    max-width: 70%
  }
}



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

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

#safety,
#about,
#method {
  margin-top: -208px;
  padding-top: 208px;
}

@media (max-width: 639px) {
  #safety,
  #about,
  #method {
    margin-top: -80px;
    padding-top: 80px;
  }
}



/*========================================
パララックス
========================================*/

.c-section2__inner {
  position: relative;
  /*padding: 36px 0;
  min-height: 100vh;*/
  overflow: hidden;
}

section,
.p-on-parade {
  position: relative;
  /*padding: 48px 0;*/
  /*min-height: 100vh;*/
  overflow: hidden;
}

.parallax {
  position: absolute;
  top: 0;
  display: none; 
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 100%;
  height: 100vh;
  z-index: -1;
}

.c-section2 .parallax {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  /*height: 100%;*/
  background-size: cover;
}

.parallax2 {
  position: absolute;
  top: 0;
  display: none; 
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 100%;
  height: 100vh;
  z-index: -1;
}

.c-section2 .parallax2 {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  /*height: 100%;*/
  background-size: cover;
}

.c-section2 .parallax.parallax-active,
.c-section2 .parallax2.parallax-active,
.c-section2 .parallax3.parallax-active,
.p-on-parade .parallax.parallax-active {  
  position: fixed;
  top: 0;
}

.block {
  display: block;
}

.parallax-active {  
  position: fixed;
  top: 0;
}



/*========================================
セクション
========================================*/

.c-section2 {
  position: relative;
  padding: 0;
}

.c-section3 {
  margin-top: 48px;
}

.c-section3--has-space {
  margin-top: 48px;
  padding: 24px;
  background-color: #ffffff;
}

* + .c-section2__contents {
  margin-top: 60px;
}

.c-section2__contents {
  margin: 0 auto;
  padding: 48px 24px;
  max-width: 1008px;
}

* + .c-section3__contents {
  margin-top: 36px;
}

* + .c-section4__contents {
  margin-top: 36px;
}

.c-section__background {
  z-index: 0;
}

@media (max-width: 639px) {
  .c-section2 {
    padding: 0;
  }
  .c-section3 {
    margin-top: 24px;
  }
  .c-section2__contents,
  * + .c-section2__contents {
    /*margin-top: 48px;*/
    padding: 30px 12px;
  }
  * + .c-section3__contents {
    margin-top: 24px;
  }
}



/*========================================
見出し
========================================*/

.c-heading2 + *,
.c-heading2-group + *,
.c-heading3 + * {
  margin-top: 24px;
}

.c-heading2--type3 {
  position: relative;
  margin: 0 calc(50% - 50vw);
  padding: 1.6rem 0.9rem;
  color: #ffffff;
  font-family: var(--font-family-sansserif);
  font-size: 2.1rem;
  font-weight: bold;
  text-align: center;
  background-color: var(--accent-color);
}

.c-heading2--type3::after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: -2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 3rem;
  height: 2.1rem;
  text-align: center;
  background-color: var(--accent-color);
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
}

@media (max-width: 639px) {
  .c-heading2 + *,
  .c-heading2-group + *,
  .c-heading3 + * {
    margin-top: 18px;
  }
  .c-heading2--type3 {
    margin: 0 -12px;
    font-size: 1.6rem;
  }
}



/*========================================
カラム
========================================*/

.c-2columns,
.c-3columns,
.c-4columns,
.c-5columns {
  display: flex;
  gap: 24px;
}

* + .c-2columns,
* + .c-3columns,
* + .c-4columns,
* + .c-5columns {
  margin-top: 24px;
}

.c-2columns__container > *:first-child,
.c-3columns__container > *:first-child,
.c-4columns__container > *:first-child,
.c-5columns__container > *:first-child {
  margin-top: 0;
}

.c-2columns__container {
  width: calc((100% - 24px) / 2);
}

.c-3columns__container {
  width: calc((100% - 48px) / 3);
}

.c-4columns__container {
  width: calc((100% - 72px) / 4);
}

.c-5columns__container {
  width: calc((100% - 96px) / 5);
}

@media (min-width: 640px) {
  .c-section2__inner.c-2columns,
  .c-heading2 + .c-2columns,
  .c-section2__contents > .c-section3 > .c-2columns,
  .c-section2__inner > .c-2columns {
    gap: 30px;
  }
}

@media (min-width: 992px) {
  .c-section2__inner.c-2columns,
  .c-heading2 + .c-2columns,
  .c-section2__contents > .c-section3 > .c-2columns,
  .c-section2__inner > .c-2columns {
    gap: 60px;
  }
}

@media (max-width: 639px) {
  .c-2columns,
  .c-3columns,
  .c-4columns {
    flex-direction: column;
  }
  .c-2columns__container,
  .c-3columns__container,
  .c-4columns__container {
    width: 100%;
  }
}



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

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

.c-note--01 {
  padding-left: 1em;
  text-indent: -1em;
  line-height: 1.25;
}

.c-note--02 {
  padding-left: 2em;
  text-indent: -1em;
  line-height: 1.25;
}

.c-nolink {
  pointer-events: none;
  text-decoration: none;
}

@media (min-width: 370px) {
  .c-newline--sp-ss {
    display: none;
  }
}

@media (min-width: 414px) {
  .c-newline--sp-s {
    display: none;
  }
}

@media (min-width: 640px) {
  .c-newline--sp {
    display: none;
  }
}

@media (min-width: 768px) {
  .c-newline--sp-l {
    display: none;
  }
}

@media (orientation: landscape) and (min-width: 957px) {
  .c-newline--sp-landscape {
    display: none;
  }
}

@media (min-width: 992px) {
  .c-newline--tb {
    display: none;
  }
}

@media (max-width: 991px) {
  .c-nonewline--tb {
    display: none;
  }
}

@media (max-width: 767px) {
  .c-nonewline--sp-l {
    display: none;
  }
}

@media (max-width: 639px) {
  .c-nonewline--sp {
    display: none;
  }
}



/*========================================
ヒーロー
========================================*/

.p-section-hero .parallax {
  display: block;
  position: fixed;
  z-index: -5;
  background-image: url(../img/hero_background.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

h1 {
  font-family: "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", YuMincho, "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  color: #ffffff;
  text-align: left;
  line-height: 1.5;
}

.sentence {
  margin-top: 36px;
  font-family: var(--font-family-serif);
  color: #ffffff;
}

.sentence + .sentence {
  margin-top: 3px;
}

.line {
  display: block;
  margin: 0;
}

.txtInner {
  animation-name: show;
  animation-duration: 1s;
  animation-fill-mode: backwards;
}

@media (min-width: 640px) {
  h1 {
    margin-top: 100px;
  }
  .sentence {
    display: flex;
    justify-content: center;
  }
}

@keyframes show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 991px) and (min-width: 640px) {
  .p-section-hero .parallax {
/*    background-position: calc(50% - 40px) calc(100% - 120px);*/
  }
}

@media (orientation: landscape) and (max-width: 956px) {
  h1 {
    margin: 80px auto 0;
    width: 80%;
  }
  h1 + p {
    margin: 12px auto 0;
    width: 80%;
  }
}

@media (max-width: 639px) {
  .p-section-hero .parallax {
    background-image: url(../img/hero_background_sp.jpg);
  }
  h1 {
    margin-top: 80px;
    text-align: center
  }
  h1 + p {
    text-align: center
  }
  .sentence {
    margin: 36px auto 0;
    max-width: 414px;
    text-align: center;
    /*letter-spacing: -1px;*/
  }
  .sentence + .sentence {
    margin-top: 0;
  }
}

@media (max-width: 369px) {
  .sentence {
    font-size: 1.4rem;
  }
}


  
/*========================================
ODM/OEM開発担当の皆様
========================================*/

.p-section-development {
  min-height: 60vh;
}

.p-section-development .c-section2__contents {
  max-width: 948px;
}

.p-section-development .parallax {
  display: block;
  background-image: url(../img/development_background.jpg);
}

.c-development-summary {
  margin-top: 24px;
}

.c-development_leave {
  margin-top: 48px;
  text-align: center;
}

.c-development_leave + p {
  margin-top: 18px;
  color: #ffffff;
  font-family: var(--font-family-serif);
  font-size: 2.8rem;
  text-align: center;
}

.c-genre-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 12px auto 0;
  padding: 0;
  max-width: 858px;
  list-style-type: none;
}

.c-genre-list__item {
  padding: 9px;
  width: calc((100% - 48px) / 3);
  color: #ffffff;
  font-size: 2.1rem;
  text-align: center;
  border: solid 1px #ffffff;
}

@media (min-width: 640px) {
  .c-development-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 24px;
  }
  .c-development-summary .c-development-summary__item {
    margin-top: 0;
    width: calc((100% - 60px) / 3);
  }
  .c-development-summary .c-development-summary__item:first-child {
    width: 100%;
  }
}

@media (max-width: 639px) and (-webkit-min-device-pixel-ratio:0) {
    .c-development-summary__item + .c-development-summary__item {
      margin-top: 16px;
  }
}

@media (max-width: 639px) {
  /*.p-section-development .parallax {
    background-image: url(../img/development_background_sp.jpg);
  }*/
  .c-development-summary__item img {
    width: 100%;
  }
 .c-development_leave {
   margin: 36px auto 0;
   width: 80%;
  }
 .c-development_leave + p {
   font-size: 1.8rem;
  }
 .c-genre-list {
   gap: 12px;
   margin: 12px auto 0;
  }
 .c-genre-list__item {
   padding: 9px;
   width: calc((100% - 12px) / 2);
   font-size: 1.8rem;
  }
}



/*========================================
受託開発と付加価値
========================================*/

.p-section-added-value .parallax,
.p-section-license .parallax {
  display: block;
  background-image: url(../img/added-value_background.jpg);
}

.p-section-added-value .c-section2__contents {
  padding: 48px 12px;
  max-width: 984px;
}

.c-odmoem {
  margin-top: 36px;
  background-color: rgba(0,0,0,0.7);
}

.c-odm-summary,
.c-oem-summary {
  padding: 30px;
}

.c-odmoem-flow {
  padding: 18px 30px;
  background-color: rgba(62,58,57,0.85);
}

.c-odmoem + .c-section3 {
  margin-top: 36px;
  padding: 24px 0 0;
  background-color: rgba(255,255,255,0.8);
}

.p-section-added-value .c-odmoem + .c-section3 h3 + p {
  margin-top: 24px;
  padding: 0 24px;
  text-align: center;
}

.c-added-value-servie {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 18px 24px 24px;
}

.c-added-value-servie__item {
  width: calc((100% - 24px) / 3);
  box-shadow: 0 6px 12px rgba(0,0,0,0.6);
}

.c-added-value-servie .c-added-value-servie__item:last-child {
  width: 100%;
}


@media (max-width: 767px) {
  .p-section-added-value .c-odmoem + .c-section3 h3 + p {
    text-align: left;
  }
}

@media (max-width: 639px) {
  .p-section-added-value .parallax,
  .p-section-license .parallax {
    background-image: url(../img/added-value_background_sp.jpg);
  }
  .p-section-added-value .c-section2__contents {
    padding: 30px 12px;
  }
  .c-odmoem + .c-section3 {
    margin-top: 24px;
    padding-top: 18px;
  }
  .p-section-added-value h3 img {
    max-width: 340px;
    width: 100%;
  }
  .p-section-added-value .c-odmoem + .c-section3 h3 + p {
    margin-top: 12px;
    padding: 0 12px;
  }
  .c-added-value-servie {
    padding: 12px;
  }
  .c-added-value-servie__item {
    width: calc((100% - 12px) / 2);
    box-shadow: 0 3px 6px rgba(0,0,0,0.6);
  }
  .c-odmoem {
    margin-top: 24px;
  }
  .c-odm-summary,
  .c-oem-summary
  {
    padding: 12px 18px;
  }
  .c-odmoem-flow
  {
    padding: 9px 18px;
  }
}



/*========================================
代表的なODM/OEM委託の失敗例 間違いだらけの委託先選びとは…
========================================*/

.p-section-failure .parallax {
  display: block;
  background-image: url(../img/failure_background.jpg);
  transition: 0.3s;
}

.p-section-failure .c-section2__inner {
  /*overflow: visible;*/
}

.p-section-failure:hover .parallax {
  transform: scale(1.1);
  transition: 0.3s;
}

.p-section-failure.xxx .parallax {
  position: fixed;
}

.p-section-failure .c-section2__contents {
  padding: 48px 24px 128px;
}

.p-section-failure h2 {
  padding-top: 30px;
  background-color: rgba(35,24,21,0.7)
}

.c-failure-text {
  padding: 12px 30px 0;
  color: #ffffff;
  background-color: rgba(35,24,21,0.7)
}

.c-failure-text p {
  margin: 0 auto;
  max-width: 710px;
}

.c-failure-example {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 0;
  padding: 24px;
  list-style-type: none;
  background-color: rgba(35,24,21,0.7)
}

.c-failure-example__case {
  padding: 9px;
  width: calc((100% - 18px) / 2);
  background-color: rgba(255,255,255,0.85);
  box-shadow: 0 6px 12px rgba(0,0,0,0.8);
}

.c-failure-example .c-failure-example__case:nth-child(6) {
  color: #961d1d;
  font-size: 1.6rem;
}

.c-failure-example .c-failure-example__case::before {
  content: "";
  display: block;
  margin-bottom: 6px;
  width: 154px;
  height: 36px;
  background-repeat: no-repeat;
  background-size: contain;
}

.c-failure-example .c-failure-example__case:nth-child(1)::before {
  background-image: url(../img/failure_case01.png);
}

.c-failure-example .c-failure-example__case:nth-child(2)::before {
  background-image: url(../img/failure_case02.png);
}

.c-failure-example .c-failure-example__case:nth-child(3)::before {
  background-image: url(../img/failure_case03.png);
}

.c-failure-example .c-failure-example__case:nth-child(4)::before {
  background-image: url(../img/failure_case04.png);
}

.c-failure-example .c-failure-example__case:nth-child(5)::before {
  background-image: url(../img/failure_case05.png);
}

.c-failure-example .c-failure-example__case:nth-child(6)::before {
  background-image: url(../img/failure_case06.png);
}

@media (max-width: 639px) {
  .p-section-failure .parallax {
    background-image: url(../img/failure_background_sp.jpg);
  }
  .p-section-failure .c-section2__contents {
    padding: 30px 12px 118px;
  }
  .c-failure-text {
    padding: 12px 12px 0;
  }
  .c-failure-example {
    gap: 12px;
    padding: 12px;
  }
  .c-failure-example__case {
    width: 100%;
    box-shadow: 0 3px 6px rgba(0,0,0,0.8);
  }
}



/*========================================
動画1
========================================*/

.c-connection {
  position: relative;
  margin-top: -100px;
  min-height: 420px;
  clip-path: polygon(50% 100px, calc(50% + 200px) 0, 100% 0, 100% 100%, 0 100%, 0 0, calc(50% - 200px) 0);
  background-color: #000000;
}

.c-connection .c-connection__inner {
  position: absolute;
  width: 100%;
  height: 100%;
}

.c-connection .parallax {
  position: fixed;
  top: -64px;
}

.c-connection video {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

@media screen and (max-width: 991px) {
  .c-connection {
    clip-path: polygon(50% 80px, calc(50% + 160px) 0, 100% 0, 100% 100%, 0 100%, 0 0, calc(50% - 160px) 0);
  }
  .c-connection .parallax {
    top: -20%;
  }
  _:lang(x)::-moz-placeholder, .connection .parallax {
    top: -64px;
  }
}

@-moz-document url-prefix() {
  .connection .parallax {
    top: -64px;
  }
}

@media (orientation: landscape) and (max-width: 926px) {
  _:-webkit-full-screen:not(.foo), .c-connection .parallax {
    top: -50%;
  }
}

@media (max-width: 639px) {
  .c-connection {
    min-height: 240px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  .c-connection .parallax {
    top: -30%;
  }
  /*_:-webkit-full-screen:not(.foo), .c-connection .parallax {
    top: -30%;
  }
  _:lang(x)+_:-webkit-full-screen-document, .c-connection .parallax {
    top: 0;
  }
  _:lang(x)::-internal-media-controls-overlay-cast-button, .c-connection .parallax {
    top: 0;
  }*/
  .c-connection figure {
    width: 120%;
  }
  .c-connection video {
    width: 100%;
    /*height: 50vh;*/
  }
}



/*========================================
ODM/OEM開発委託先にユニッシュが選ばれる理由
========================================*/

.p-section-reason {
  /*margin-top: -100px;*/
  /*padding-bottom: 40px;*/
  /*clip-path: polygon(50% 100px, calc(50% + 200px) 0, 100% 0, 100% 100%, 0 100%, 0 0, calc(50% - 200px) 0);*/
}

.p-section-reason .parallax {
  display: block;
  height: 100%;
  background: url(../img/reason_background.jpg) repeat;
  /*background-size: cover;*/
  background-size: contain;
}

.p-section-reason .c-section2__contents {
  /*padding-top: 120px;*/
}

.c-reason-text {
  margin-top: 24px;
}

.c-reason-text p {
  max-width: 780px;
  margin: 18px auto 0;
  font-size: 1.8rem;
}

.p-section-reason .c-heading3 {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 6px;
  font-size: 3rem;
  text-align: left;
  border-bottom: solid 2px #adadad;
}

.p-section-reason .c-heading3::before {
  flex-shrink: 0;
  content: "";
  display: inline-block;
  width: 36px;
  height: 36px;
  font-size: 30px;
  background-repeat: no-repeat;
  background-size: contain;
}

.p-section-reason .c-section3__contents:nth-child(1) .c-heading3::before {
  background-image: url(../img/reason_bullet-number01.png);
}

.p-section-reason .c-section3__contents:nth-child(2) .c-heading3::before {
  background-image: url(../img/reason_bullet-number02.png);
}

.p-section-reason .c-section3__contents:nth-child(3) .c-heading3::before {
  background-image: url(../img/reason_bullet-number03.png);
}

.p-section-reason .c-section3__contents:nth-child(4) .c-heading3::before {
  background-image: url(../img/reason_bullet-number04.png);
}

.p-section-reason .c-heading3 + .c-2columns {
  gap: 36px;
}

.p-section-reason .c-section3__contents:nth-child(4) {
  overflow: visible;
}

/*.p-section-reason .c-section3__contents:nth-child(4) .c-heading3::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: -54px;
  right: 27%;
  width: 124px;
  height: 126px;
  background-image: url(../img/reason_h3-04-decoration.png);
  background-repeat: no-repeat;
  background-size: contain;
}*/

.c-reason-summary {
  margin-bottom: 0;
  padding: 12px;
  font-family: var(--font-family-serif);
  font-size: 2.1rem;
  list-style-type: none;
  background-color: #e7edfa;
}

.c-reason-summary li {
  display: flex;
  gap: 3px;
  line-height: 1.25;
}

.c-reason-summary li::before {
  flex-shrink: 0;
  content: "";
  display: inline-block;
  margin-top: 8px;
  width: 7px;
  max-height: 100%;
  background: url(../img/bullet_triangle01.png) no-repeat;
  background-size: contain;
}

.c-reason-summary li + li {
  margin-top: 12px;
}

.c-reason-summary + p,
.c-reason-summary + p + p {
  /*font-size: 1.8rem;*/
}

@media (min-width: 1024px) {
  .c-reason-summary:nth-child(1),
  .c-reason-summary:nth-child(2) {
    letter-spacing: -1px;
  }
}

@media (max-width: 1023px) {
  .p-section-reason .c-section3__contents:nth-child(4) .c-heading3::after {
    right: 23%;
  }
}

@media (max-width: 991px) {
  /*.p-section-reason {
    clip-path: polygon(50% 80px, calc(50% + 160px) 0, 100% 0, 100% 100%, 0 100%, 0 0, calc(50% - 160px) 0);
  }*/
  .p-section-reason .c-section2__contents {
    padding-top: 96px;
  }
  .p-section-reason .c-section3__contents:nth-child(4) .c-heading3::after {
    top: -40px;
    right: 18%;
    width: 100px;
    height: 106px;
  }
}

@media (max-width: 899px) {
  .p-section-reason .c-section3__contents:nth-child(4) .c-heading3::after {
    right: 10%;
  }
}

@media (orientation: landscape) and (max-width: 767px) {
  .p-section-reason .c-section3__contents:nth-child(4) .c-heading3::after {
    top: -10px;
  }
}

@media (max-width: 767px) {
  .p-section-reason .c-section3__contents:nth-child(4) .c-heading3 {
    align-items: flex-start;
  }
  .p-section-reason .c-section3__contents:nth-child(4) .c-heading3::after {
    right: 8%;
  }
}

@media (max-width: 639px) {
  /*.p-section-reason {
    margin-top: -118px;
    clip-path: none;
  }*/
  .p-section-reason .parallax {
    background-image: url(../img/reason_background_sp.jpg);
  }
  .p-section-reason .c-section2__contents {
    padding-top: 36px;
  }
  .p-section-reason h2 img  {
    width: 90%;
  }
  .p-section-reason .c-heading3 {
    font-size: 2.1rem;
    font-weight: bold;
  }
  .p-section-reason .c-heading3 + .c-2columns {
    gap: 24px;
  }
  .p-section-reason .c-section3__contents:nth-child(4) .c-heading3::after {
    top: -10px;
    right: 5%;
    width: 80px;
    height: 86px;
  }
  .c-reason-summary {
    font-size: 1.8rem;
  }
  .c-reason-summary li {
    gap: 3px;
    line-height: 1.25;
  }
  .c-reason-summary li::before {
    width: 5px;
  }
}



/*========================================
オンパレード（動画2）
========================================*/

.p-on-parade {
  padding: 0;
  min-height: 470px;
  background-color: #ffffff;
  overflow: hidden;
}

.p-on-parade .p-on-parade__inner {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
/*clip: rect(auto, auto, auto, auto);*/
/*clip-path: inset(50px 0 0 0);*/
  clip-path: inset(0 0 0 0);
}

.p-on-parade .parallax {
  position: fixed;
}

@-moz-document url-prefix() {
  /*.p-on-parade {
    top: -50px;
  }
  .p-on-parade .parallax {
    top: -90px;
  */
}

/*
_:lang(x)+_:-webkit-full-screen-document, .p-on-parade {
  top: -50px;
}
_:lang(x)+_:-webkit-full-screen-document, .p-on-parade .parallax {
  top: -90px;
}
*/

/*.p-on-parade picture {
  display: block;
  height: 100vh;
}

.p-on-parade .swiper-slide img,
.p-on-parade .swiper-slide video {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.p-on-parade .swiper-slide:hover img {
  transform: scale(1);
}*/

.p-on-parade figure {
  display: block;
  height: 100vh;
}

.p-on-parade figure video {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}


@media (max-width: 1499px) {
  .p-on-parade {
    min-height: 440px;
  }
  .p-on-parade .swiper-slide img {
    transform: scale(1);
  }
}

@media (max-width: 1299px) {
  .p-on-parade {
    min-height: 420px;
  }
}

@media (max-width: 991px) {
  .p-on-parade {
    min-height: 400px;
  }
  .p-on-parade .swiper-slide img {
    /*height: auto;*/
  }
}

@media (max-width: 639px) {
  .p-on-parade {
    min-height: 330px;
  }
  /*_:lang(x)+_:-webkit-full-screen-document, .p-on-parade {
    top: -50px;
  }
  _:lang(x)+_:-webkit-full-screen-document, .p-on-parade .parallax {
    top: -110px;
  }*/
}



/*========================================
ODM/OEM対応機器
========================================*/

.p-section-machine {
  z-index: 2;
  margin-top: -120px;
/*  background-color: #ffffff;*/
}

.p-section-machine .c-section2__contents {
  padding-top: 60px;
}

.p-section-machine .parallax {
  height: 100%;
  background-repeat: repeat;
  background-size: contain;
  background-position: center top -60px;
}

.p-section-machine .parallax::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../img/machine_background.png) no-repeat;
  background-size: contain;
  background-position: center top;
}

.p-section-machine .parallax::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 60px;
  z-index: -5;
  width: 100%;
  height: 100%;
  background-image: url(../img/background01.gif);
  background-repeat: repeat;
  background-size: contain;
}

.p-section-machine .parallax {
  margin-top: 0;
  transition: 0.2s;
}

.p-section-machine .parallax.parallax-active {
  margin-top: -30px;
  background-color: #ffffff;
  transition: 0.2s;
}

.p-section-machine .c-section2__contents {
  max-width: 948px;
}

.p-section-machine .c-heading3 {
  display: flex;
  align-items: center;
  padding: 9px 18px;
  color: #ffffff;
  font-size: 3rem;
  text-align: left;
  background: linear-gradient(90deg, #0c2764 50%, #174dc7 100%);
}

.p-section-machine .c-heading3::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  background: url(../img/machine_bullet-h3.png) no-repeat;
  background-repeat: no-repeat;
  background-size: contain;
}

.p-section-machine .c-heading3::after {
  content: "";
  font-family: "Times",serif;
  font-size: 1.6rem;
  font-style: italic;
  margin-left: 3px;
}

.p-section-machine .c-section3__contents {
  background-color: #e7edfa;
  border: solid 1px #adadad;
  box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

.p-section-machine .c-section3__contents:nth-child(2) .c-heading3::after {
  content: "";
}

.p-section-machine .c-section3__contents:nth-child(3) .c-heading3::after {
  content: "";
}

.p-section-machine .c-section3__contents:nth-child(4) .c-heading3::after {
  content: "";
}

.p-section-machine .c-section3__contents:nth-child(5) .c-heading3::after {
  content: "";
}

.p-section-machine .c-section3__contents:nth-child(6) .c-heading3::after {
  content: "";
}

.p-section-machine .c-section3__contents .c-heading3 + .c-2columns {
  margin-top: 0;
  padding: 18px;
}

.c-machine-function__list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 24px;
  margin-bottom: 0;
  padding-left: 0;
  list-style-type: none;
}

.c-machine-function__list li {
  padding-bottom: 3px;
  border-bottom: solid 2px #ffffff;
}

.c-machine-function__list li::before {
  content: "";
  display: inline-block;
  margin-right: 3px;
  width: 9px;
  height: 14px;
  background: url(../img/machine_bullet-function.png) no-repeat;
  background-size: contain;
}

.p-section-machine .c-section3__contents .c-2columns .c-2columns__container:nth-child(2) {
  flex-shrink: 0;
  width: 150px;
}

@media (max-width: 991px) {
  .p-section-machine .parallax {
    background-size: 200%;
  }
}

@media (max-width: 991px) and (min-width: 768px) {
  .c-machine-function__list li {
    letter-spacing: -0.5px;
  }
}

@media (min-width: 768px) {
  .p-section-machine .c-section3__contents .c-2columns {
    justify-content: space-between;
  }
  .p-section-machine .c-section3__contents .c-2columns .c-2columns__container:nth-child(1) {
    width: calc(100% - 160px);
  }
  .c-machine-function__list li {
    width: calc((100% - 24px) / 2);
  }
}

@media (min-width: 1024px) {
  .p-section-machine .c-section3__contents .c-2columns .c-2columns__container:nth-child(1) {
    width: calc(100% - 220px);
  }
}

@media (max-width: 767px) {
  .p-section-machine .c-section3__contents .c-heading3 + .c-2columns {
    padding: 12px 18px 18px;
  }
  .c-machine-function__list {
    flex-direction: column;
  }
}

@media (max-width: 1023px) {
  .c-machine-function__list {
    gap: 6px 18px;
  }
}

@media (max-width: 639px) {
  .p-section-machine .parallax::before {
    background-size: 200%;
  }
  .p-section-machine .c-section2__contents {
    padding: 48px 12px 36px;
  }
  .p-section-machine h2 img  {
    width: 90%;
  }
  .p-section-machine .c-heading3 {
    font-size: 1.8rem;
  }
  .p-section-machine .c-heading3::before {
    width: 16px;
    height: 16px;
  }
  .p-section-machine .c-heading3::after {
    font-size: 1.4rem;
  }
  .p-section-machine .c-heading3 + .c-2columns {
    margin-top: 12px;
  }
  .p-section-machine .c-section3__contents .c-2columns .c-2columns__container:nth-child(2) {
    display: none;
  }
}

@media (max-width: 369px) {
  .p-section-machine .c-heading3 {
    padding: 9px 12px;
  }
  .p-section-machine .c-section3__contents:nth-child(4) .c-heading3 {
    letter-spacing: -0.8px;
  }
  .p-section-machine .c-section3__contents .c-heading3 + .c-2columns {
    padding: 12px 12px 18px;
  }
}



/*========================================
ODM/OEM開発事例
========================================*/

.p-section-example {
  z-index: 2;
  min-height: 60vh;
}

.p-section-example .parallax {
  display: block;
  /*background: url(../img/example_background.png),#ffffff;*/
  background-color: #f3f6fc;
  background-repeat: no-repeat;
  background-size: contain;
}

.p-section-example .c-section2__contents {
  overflow: visible;
}

.c-example-list {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  column-gap: 48px;
  margin-top: 36px;
}

.c-example-list__item {
  position: relative;
  width: calc((100% - 48px) / 2);
}

.c-example-list__item-maker {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 0;
  font-size: 1.4rem;
}

.c-example-list__item-maker::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 28px;
  background-repeat: no-repeat;
  background-size: contain;
}

.c-example-list .c-example-list__item:nth-child(1) .c-example-list__item-maker::before {
  background-image: url(../img/example_bullet-number01.png);
}

.c-example-list .c-example-list__item:nth-child(2) .c-example-list__item-maker::before {
  background-image: url(../img/example_bullet-number02.png);
}

.c-example-list .c-example-list__item:nth-child(3) .c-example-list__item-maker::before {
  background-image: url(../img/example_bullet-number03.png);
}

.c-example-list .c-example-list__item:nth-child(4) .c-example-list__item-maker::before {
  background-image: url(../img/example_bullet-number04.png);
}

.c-example-list .c-example-list__item:nth-child(5) .c-example-list__item-maker::before {
  background-image: url(../img/example_bullet-number05.png);
}

.c-example-list .c-example-list__item:nth-child(6) .c-example-list__item-maker::before {
  background-image: url(../img/example_bullet-number06.png);
}

.c-example-list .c-example-list__item:nth-child(7) .c-example-list__item-maker::before {
  background-image: url(../img/example_bullet-number07.png);
}

.c-example-list .c-example-list__item:nth-child(8) .c-example-list__item-maker::before {
  background-image: url(../img/example_bullet-number08.png);
}

.c-example-list .c-example-list__item:nth-child(9) .c-example-list__item-maker::before {
  background-image: url(../img/example_bullet-number09.png);
}

.c-example-list .c-example-list__item:nth-child(10) .c-example-list__item-maker::before {
  background-image: url(../img/example_bullet-number10.png);
}

.c-example-list__item-maker span {
  font-size: 1.8rem;
}

.c-example-list__item-name {
  margin-top: 9px;
  padding: 9px 6px;
  color: #ffffff;
  font-size: 1.4rem;
  text-align: left;
  background: linear-gradient(90deg, rgba(16,46,114,1) 50%, rgba(255,255,255,0.1) 100%);
}

.c-example-list__item-detail {
  display: flex;
}

.c-example-list .c-example-list__item:nth-child(1) .c-example-list__item-detail {
  gap: 35px;
}

.c-example-list .c-example-list__item:nth-child(2) .c-example-list__item-detail {
  gap: 15px;
}

.c-example-list .c-example-list__item:nth-child(3) .c-example-list__item-detail {
  gap: 44px;
}

.c-example-list .c-example-list__item:nth-child(4) .c-example-list__item-detail {
  gap: 25px;
}

.c-example-list .c-example-list__item:nth-child(5) .c-example-list__item-detail {
  gap: 86px;
}

.c-example-list .c-example-list__item:nth-child(6) .c-example-list__item-detail {
  gap: 72px;
}

.c-example-list .c-example-list__item:nth-child(7) .c-example-list__item-detail {
  gap: 10px;
}

.c-example-list .c-example-list__item:nth-child(8) .c-example-list__item-detail {
  gap: 38px;
}

.c-example-list .c-example-list__item:nth-child(9) .c-example-list__item-detail {
  gap: 10px;
}

.c-example-list .c-example-list__item:nth-child(10) .c-example-list__item-detail {
  gap: 68px;
}

.c-example-list__item-detail table {
  margin-top: 6px;
  text-align: left;
  font-size: 1.4rem;
  line-height: 1.25;
}

.c-example-list__item-detail table th {
  padding: 0;
  font-weight: normal;
}

.c-example-list__item-detail table td {
  padding: 0 0 0 12px;
}

.c-example-list__item-detail table td span {
  /*font-size: 1.2rem;*/
}

.c-example-list__item figure {
  position: absolute;
  top: 5px;
  right: -30px;
}

.c-example-list .c-example-list__item:nth-child(3) figure {
  top: 55px;
  right: 10px;
}

.c-example-list .c-example-list__item:nth-child(4) figure {
  top: 30px;
  right: -36px;
}

.c-example-list .c-example-list__item:nth-child(5) figure {
  top: 35px;
  right: -40px;
}

.c-example-list .c-example-list__item:nth-child(6) figure {
  top: 30px;
  right: -30px;
}

.c-example-list .c-example-list__item:nth-child(7) figure {
  top: 65px;
  right: -25px;
}

.c-example-list .c-example-list__item:nth-child(8) figure {
  top: 30px;
  right: -40px;
}

.c-example-list .c-example-list__item:nth-child(9) figure {
  top: 65px;
  right: -40px;
}

.c-example-list .c-example-list__item:nth-child(10) figure {
  top: 80px;
  right: -60px;
}

.c-example-list .c-example-list__item:nth-child(1) figure {
  top: 55px;
  right: -20px;
}

.c-example-list .c-example-list__item:nth-child(2) figure {
  top: 115px;
  right: -90px;
}

@media (min-width: 640px) {
  .c-example-list__item-detail table th {
    /*letter-spacing: -0.5px;*/
  }
  .c-example-list__item-detail table td {
    /*letter-spacing: -1px;*/
  }
  .c-example-list__item-detail table td span {
    /*font-size: 1.1rem;
    letter-spacing: -1.2px;*/
  }
}

@media (max-width: 1023px) {
  .c-example-list .c-example-list__item .c-example-list__item-detail {
    flex-direction: column;
    gap: 0 !important;
  }
  .c-example-list .c-example-list__item .c-example-list__item-detail table:nth-child(2) {
    flex-direction: column;
    margin-top: 0;
  }
  .c-example-list .c-example-list__item .c-example-list__item-detail table th {
    flex-direction: column;
    width: 150px;
  }
  .c-example-list .c-example-list__item:nth-child(1) figure {
    top: auto;
    bottom: 5px;
    right: -30px;
  }
  .c-example-list .c-example-list__item:nth-child(2) figure {
    top: auto;
    bottom: 5px;
    right: 10px;
  }
  .c-example-list .c-example-list__item:nth-child(3) figure {
    top: auto;
    bottom: 5px;
    right: 45px;
  }
  .c-example-list .c-example-list__item:nth-child(4) figure {
    top: auto;
    bottom: -35px;
    right: -20px;
  }
  .c-example-list .c-example-list__item:nth-child(5) figure {
    top: auto;
    bottom: 5px;
    right: 3px;
  }
  .c-example-list .c-example-list__item:nth-child(6) figure {
    top: auto;
    bottom: 0;
    right: 10px;
  }
  .c-example-list .c-example-list__item:nth-child(7) figure {
    top: auto;
    bottom: -15px;
    right: -20px;
  }
  .c-example-list .c-example-list__item:nth-child(8) figure {
    top: auto;
    bottom: 5px;
    right: -10px;
  }
  .c-example-list .c-example-list__item:nth-child(9) figure {
    top: auto;
    bottom: 5px;
    right: -10px;
  }
  .c-example-list .c-example-list__item:nth-child(10) figure {
    top: auto;
    bottom: -15px;
    right: 10px;
  }
}

@media (max-width: 991px) {
  .p-section-example .parallax {
    background-size: 200%;
  }
  .c-example-list .c-example-list__item:nth-child(2) figure {
    top: auto;
    bottom: -40px;
    right: -20px;
  }
  .c-example-list .c-example-list__item:nth-child(5) figure {
    top: auto;
    bottom: 5px;
    right: -45px;
  }
  .c-example-list .c-example-list__item:nth-child(6) figure {
    top: auto;
    bottom: 0;
    right: 10px;
  }
}

@media (orientation: landscape) and (max-width: 956px) {
  .c-example-list__item-detail table th,
  .c-example-list__item-detail table td {
    letter-spacing: 0;
  }
  .c-example-list__item-detail table td span {
    font-size: 1.2rem;
    letter-spacing: 0;
  }
}

@media (max-width: 799px) {
  .c-example-list {
    flex-direction: column;
    gap: 24px;
    margin-top: 18px;
  }
  .c-example-list__item {
    width: 100%;
  }
  .c-example-list .c-example-list__item:nth-child(1) figure {
    top: auto;
    bottom: 5px;
    right: -10px;
  }
  .c-example-list .c-example-list__item:nth-child(2) figure {
    bottom: -35px;
    right: -10px;
    width: 124px;
  }
  .c-example-list .c-example-list__item:nth-child(3) figure {
    bottom: -15px;
    right: 30px;
  }
  .c-example-list .c-example-list__item:nth-child(4) figure {
    top: auto;
    bottom: -45px;
    right: -10px;
  }
  .c-example-list .c-example-list__item:nth-child(5) figure {
    bottom: -5px;
    right: -5px;
  }
}


@media (max-width: 413px) {
  .c-example-list__item-maker {
    flex-wrap: wrap;
    align-items: center;
  }
  .c-example-list__item-maker span {
    margin-top: -12px;
    padding-left: 34px;
    width: calc(100% - 34px);
  }
  .c-example-list__item-name {
    margin-top: 6px;
  }
  .c-example-list .c-example-list__item .c-example-list__item-detail table th {
    width: 140px;
    letter-spacing: -0.5px;
  }
  .c-example-list .c-example-list__item .c-example-list__item-detail table td {
    letter-spacing: -0.5px;
  }
  .c-example-list .c-example-list__item:nth-child(5) figure {
    bottom: -40px;
    right: -10px;
  }
  .c-example-list .c-example-list__item:nth-child(6) figure {
    top: auto;
    bottom: 0;
    right: -10px;
  }
  .c-example-list .c-example-list__item:nth-child(7) figure {
    bottom: -25px;
  }
}

@media (max-width: 375px) {
  .c-example-list .c-example-list__item:nth-child(2) figure {
    bottom: -50px;
  }
  .c-example-list .c-example-list__item:nth-child(8) figure {
    top: auto;
    bottom: -5px;
    right: -30px;
  }
  .c-example-list .c-example-list__item:nth-child(9) figure {
    top: auto;
    bottom: -5px;
    right: -30px;
  }
  .c-example-list .c-example-list__item:nth-child(10) figure {
    top: auto;
    bottom: -15px;
    right: -10px;
  }
}



/*========================================
保有特許
========================================*/

.p-section-license {
  z-index: 2;
  min-height: 60vh;
  background-color: #ffffff;
}

.p-section-license .parallax {
  display: block;
  height: 100vh;
  /*background-image: url(../img/evidence_background.png);*/
}

.p-section-license .c-section2__contents > p {
  margin: 24px auto 0;
  max-width: 800px;
  color: #ffffff;
}

.c-license-list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 12px;
  row-gap: 12px;
  margin-top: 36px;
}

.c-license-list__item {
  padding: 12px;
  width: calc((100% - 36px) / 4);
  /*background-color: #e7edfa;*/
  background-color: rgba(231,237,250,0.8);
}

.c-license-list__item figure {
  height: 122px;
}

.c-license-list__item figure img {
  box-shadow: 3px 3px 6px rgba(0,0,0,0.4);
}

.c-license-list__item-name {
  margin-top: 18px;
  color: var(--accent-color);
  font-size: 1.4rem;
  font-weight: bold;
}

.c-license-list__item-name + p {
  margin-top: 9px;
  font-size: 1.1rem;
}

@media (max-width: 799px) {
  .c-license-list__item {
    width: calc((100% - 12px) / 2);
  }
}

@media (max-width: 639px) {
  .p-section-license h2 img {
    width: 80%;
  }
  .c-license-list {
    margin-top: 18px;
  }
}



/*========================================
美容効果を裏付るエビデンス
========================================*/

.p-section-evidence {
  z-index: 2;
  min-height: 60vh;
}

.p-section-evidence .c-section2__inner {
  padding-bottom: 48px;
}

.p-section-evidence .parallax {
  background-image: url(../img/evidence_background.jpg);
}

.p-section-evidence .c-section2__contents > p {
  margin: 24px auto 0;
  max-width: 800px;
}

.p-section-evidence .c-2columns {
  position: relative;
  gap: 36px;
}

.p-section-evidence .c-2columns__container {
  padding-left: 12px;
  border-left: solid 6px var(--accent-color);
}

.p-section-evidence .c-2columns__container .c-section3__contents {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.p-section-evidence .c-2columns__container .c-heading3 {
  color: #19274e;
  font-size: 1.8rem;
  font-family: var(--font-family-sansserif);
  font-weight: bold;
  text-align: left;
}

.p-section-evidence .c-2columns__container p {
  margin: 6px 0 18px;
  font-size: 1.4rem;
}

.p-section-evidence .c-2columns__container figure {
  margin-top: auto;
}


.p-section-evidence .c-product-image {
  position: absolute;
  right: 0;
}

@media (max-width: 899px) {
  .p-section-evidence {
    padding-bottom: 24px;
  }
  .p-section-evidence .c-product-image {
    max-width: 350px;
  }
}

@media (max-width: 767px) {
  .p-section-evidence .c-section2__inner {
    padding-bottom: 0;
  }
  .p-section-evidence .c-product-image {
    display: none;
  }
}

@media (max-width: 639px) {
  .p-section-evidence {
    padding-bottom: 0;
  }
  .p-section-evidence h2 img {
    width: 90%;
  }
}



/*========================================
ODM/OEM開発の流れ
========================================*/

.p-section-flow {
  z-index: 2;
}

.p-section-flow .parallax {
  background-image: url(../img/flow_background.jpg);
}

.c-flow-list {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  margin-top: 24px;
  color: #ffffff;
}

.c-flow-list dl {
  margin: 0;
  max-width: calc((100% - 36px) / 2);
}

.c-flow-list dt {
  display: flex;
  align-items: center;
  height: 54px;
  font-family: var(--font-family-serif);
  font-size: 2.4rem;
  border: solid 2px #ffffff;
  line-height: 1.0; 
}

.c-flow-list dt::before {
  content: "";
  display: inline-block;
  flex-shrink: 0;
  margin-right: 9px;
  width: 52px;
  height: 52px;
  text-align: center;
  background-repeat: no-repeat;
  background-size: contain;
  border-right: solid 2px #ffffff;
}

.c-flow-list dl:nth-of-type(1) dt::before {
  background-image: url(../img/flow_list-number01.png);
}

.c-flow-list dl:nth-of-type(2) dt::before {
  background-image: url(../img/flow_list-number02.png);
}

.c-flow-list dl:nth-of-type(3) dt::before {
  background-image: url(../img/flow_list-number03.png);
}

.c-flow-list dl:nth-of-type(4) dt::before {
  background-image: url(../img/flow_list-number04.png);
}

.c-flow-list dl:nth-of-type(5) dt::before {
  background-image: url(../img/flow_list-number05.png);
}

.c-flow-list dl:nth-of-type(6) dt::before {
  background-image: url(../img/flow_list-number06.png);
}

.c-flow-list dl:nth-of-type(7) dt::before {
  background-image: url(../img/flow_list-number07.png);
}

.c-flow-list dl:nth-of-type(7) dt::after,
.c-flow-list dl:nth-of-type(8) dt::after {
  content: "※ODM only";
  position: absolute;
  right: 9px;
  font-size: 1.4rem
}

.c-flow-list dl:nth-of-type(8) dt::before {
  background-image: url(../img/flow_list-number08.png);
}

.c-flow-list dl:nth-of-type(9) dt::before {
  background-image: url(../img/flow_list-number09.png);
}

.c-flow-list dl:nth-of-type(10) dt::before {
  background-image: url(../img/flow_list-number10.png);
}

.c-flow-list dl:nth-of-type(11) dt::before {
  background-image: url(../img/flow_list-number11.png);
}

.c-flow-list dl:nth-of-type(12) dt::before {
  background-image: url(../img/flow_list-number12.png);
}

.c-flow-list dl:nth-of-type(13) dt::before {
  background-image: url(../img/flow_list-number13.png);
}

.c-flow-list dl:nth-of-type(14) dt::before {
  background-image: url(../img/flow_list-number14.png);
}

.c-flow-list dd {
  margin-top: 9px;
  margin-left: 0;
  font-size: 1.8rem;
}

@media (max-width: 991px) {
  .c-flow-list {
    gap: 24px;
  }
  .c-flow-list dl {
    width: 100%;
    max-width: 100%;
  }
  .c-flow-list dt {
    font-size: 2.1rem;
    line-height: 1.2;
  }
}

@media (max-width: 639px) {
  .p-section-flow .parallax {
    background-image: url(../img/flow_background_sp.jpg);
  }
  .c-flow-list dt {
    font-size: 1.8rem;
  }
  .c-flow-list dt {
    height: 46px;
  }
  .c-flow-list dt::before {
    width: 40px;
    height: 42px;
  }
}



/*========================================
受託提供サービス一覧
========================================*/

.p-section-service {
  z-index: 2;
}

.p-section-service .parallax {
  background-image: url(../img/service_background.jpg);
}

.p-section-service p {
  margin: 24px auto 0;
  max-width: 890px;
  color: #ffffff;
  font-size: 1.8rem;
}

.p-section-service .c-table-image {
  margin-top: 24px;
}


@media (max-width: 639px) {
  .p-section-service .parallax {
    background-image: url(../img/service_background_sp.jpg);
  }
}



/*========================================
CONTACT
========================================*/

.p-section-contact {
  z-index: 2;
  font-size: 1.8rem;
  background-color: #ffffff;
}

.p-section-contact .c-section2__contents {
  padding-top: 0;
  max-width: 100%;
}

.p-section-contact h2 {
  margin: 0 calc(50% - 50vw);
  padding-top: 48px;
  color: #ffffff;
  font-size: 2.8rem;
  background: linear-gradient(to right,#1c4091,#001a53);
}

.p-contact-cta {
  margin: 0 calc(50% - 50vw);
  padding: 12px 0 36px;
  color: #ffffff;
  text-align: center;
  background: linear-gradient(to right,#1c4091,#001a53);
}

.p-contact-cta p {
  margin-top: 0;
}

.p-contact-cta p span::before {
  content: "";
  display: block;
  max-width: 404px;
  width: 100%;
  height: 1px;
  margin: 0 auto 12px;
  background-color: #cccccc;
}

.c-button-contact {
  display: block;
  margin: 12px auto 0;
  max-width: 240px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.8);
  border-radius: 12px;
  transition: 0.2s ease;
}

.c-button-contact:hover {
  filter: brightness(120%);
  transition: 0.3s ease;
}

.c-seminar {
  margin-top: 36px;
  text-align: center;
  background-color: #ffffff;
}

.c-seminar__inner {
  margin: 0 auto;
  max-width: 856px;
}

.c-seminar .p-seminar-title {
  margin-top: 0;
}

.c-seminar .p-seminar-outline {
  margin-top: 12px;
  font-size: 2rem;
}

.c-seminar .p-seminar-outline + p {
  margin-top: 18px;
  padding-top: 12px;
  font-size: 1.8rem;
  border-top: solid 1px #b4b3b3;
}

.c-seminar figure a {
  transition-duration: 0.3s;
}

.c-seminar figure a:hover {
/*  opacity: 0.7;*/
  filter: brightness(90%);
  transition-duration: 0.3s;
}

@media (orientation: landscape) and (max-width: 956px) {
  .c-seminar {
    padding: 48px 72px 0;
  }
  .c-seminar .p-seminar-outline,
  .c-seminar .p-seminar-outline + p {
    font-size: 1.6rem;
  }
}

@media (max-width: 639px) {
  .p-section-contact h2 {
    padding-top: 24px;
    font-size: 2.4rem;
  }
  .p-contact-cta {
    padding-bottom: 24px;
    font-size: 1.6rem;
  }
  .c-seminar {
    margin-top: 24px;
    font-size: 1.6rem;
  }
  .c-button-contact {
    max-width: 200px;
  }
  .c-seminar .c-2columns {
    flex-direction: row;
    gap: 12px;
    margin-top: 12px;
  }
  .c-seminar .p-seminar-outline {
    margin-top: 6px;
    font-size: 1.2rem;
  }
  .c-seminar .p-seminar-outline + p {
    margin-top: 12px;
    font-size: 1.2rem;
  }
}

@media (max-width: 413px) {
  .p-contact-cta p span::before {
    max-width: 360px;
  }
}

@media (max-width: 375px) {
  .c-seminar .p-seminar-outline + p {
    letter-spacing: -0.5px;
  }
  .p-contact-cta {
    font-size: 1.5rem;
  }
  .p-contact-cta p span::before {
    max-width: 336px;
  }
}



/*========================================
スクロールCSS
========================================*/

.fade-in {
	opacity: 0;
	transition-duration: 500ms;
	transition-property: opacity, transform;
}
  .fade-in-up {
	transform: translate(0, 50px);
}
  .scroll-in {
	opacity: 1;
	transform: translate(0, 0);
}


