
.mv,
#work{
  display: none;
}


/***************************************
 header
***************************************/

header {
  width: 100%;
  height: 6rem;
  background-color: rgba(255, 255, 255, 0);
  padding: 0 4rem;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
  opacity: 0;
  transform: translateY(-100%);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

header.active {
  opacity: 1;
  transform: translateY(0);
}

@media (hover: hover) {
  #header:hover {
    background-color: rgba(255,255,255,0.96);
  }
}

.nav-header {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
}

.nav-header .title {
  display: inline-block;
}

.nav-header .title svg {
  width: auto;
  height: 1.6rem;
  fill: #000;
}

.nav-list {
  display: flex;
  align-items: center;
  padding-right: 5rem;
}

.nav-list li { 
  display: inline;
  padding-left: 5rem;
}

.nav-list li:nth-of-type(1) {
  padding-left: 0;
}

.nav-list li a {
  display: inline-block;
  color: #000;
  font-size: 1.3rem;
  white-space: nowrap;
}

.sns {
  display: flex;
  align-items: center;
  padding: 0;
}

.sns li {
  display: inline;
  padding-left: 2.4rem;
}

.sns li a {
  display: block;
}

.sns li svg {
  width: 1.8rem;
  fill: none;
  vertical-align: middle;
}

.btn-menu {
  display: none;
}

@media (max-width: 768px) and (orientation: portrait) {
  .btn-menu {
    display: block;
    width: 2.4rem;
    height: 6rem;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
  }
  .btn-menu > span {
    display: block;
    width: 0;
    height: 0;
    overflow: hidden;
  }
  .btn-menu::before,
  .btn-menu::after {
    content: "";
    display: block;
    width: 2.4rem;
    height: 1px;
    background-color: #000;
    position: absolute;
    left: 0;
    transition: transform 0.3s cubic-bezier(0.76, 0, 0.24, 1), top 0.3s;
  }
  .btn-menu::before {
    top: calc(50% - 6px);
  }
  .btn-menu::after {
    top: calc(50% + 6px);
  }
  .btn-menu.is-active::before {
    top: 50%;
    transform: rotate(45deg);
  }
  .btn-menu.is-active::after {
    top: 50%;
    transform: rotate(-45deg);
  }
  header {
    padding: 0 2rem;
    transform: translateY(0);
    opacity: 1;
  }
  header .nav-list {
    display: none;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.98);
    padding: 6rem 0 1.6rem;
    position: absolute;
    margin: 0;
    left: 0;
    top: 0;
    z-index: 0;
  }
  header .nav-header .title {
    position: relative;
    z-index: 1;
  }
  header .nav-list li {
    display: block;
    padding: 0;
    text-align: center;
  }
  header .nav-list li a {
    color: #fff;
    padding: 1rem 0;
  }
  header .nav-header .title svg {
    height: 1.8rem;
  }
  header.is-open .nav-list {
    display: block;
  }
  header.is-open .nav-header .title svg {
    color: #fff;
  }
  header.is-open .btn-menu::before,
  header.is-open .btn-menu::after {
    background-color: #fff;
  }
}


/***************************************
 FV
***************************************/

#fv {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; 
  width: 100%;
  max-width: 128rem;
  margin: 0 auto;
  min-height: 100vh; 
  height: auto;
}

#fv .fv-catch-box {
  width: 100%;
  max-width: calc(100% - 18rem); 
  box-sizing: border-box;
}

#fv .fv-catch-box h2 {
  margin-bottom: 6.2rem;
}

#fv .fv-catch-box h2 > span {
  display: flex;
  flex-direction: column;
}

#fv .fv-catch-box h2 > span span {
  padding: 0 2rem;
}

#fv .fv-catch-box h2 > span span:nth-of-type(3) {
  padding: inherit;
}

#fv .line {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #000;
  margin-top: 3.7rem;
}

#fv .line::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #000;
  z-index: 1;
  transform: translateX(-100%);
  will-change: transform;
}

#fv .line.js-animate-item.is-animated::after {
  animation: slideRight 1.2s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

#fv .fv-sub-catch {
  width: 100%;
}

#fv .fv-sub-catch span{
  font-size: 3.7rem;
  line-height: 1.2;
  padding-left: 2rem;
}


.js-animate-item img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 768px) and (orientation: portrait) {
  #fv {
    min-height: calc(60vh - 4rem);
  }
  #fv .fv-catch-box {
    max-width: 100%;
    width: calc(100% - 4rem);
  }
  #fv .fv-catch-box h2 {
    margin-top: 0;
    margin-bottom: 2.5rem;
  }
  #fv .fv-sub-catch {
    margin: auto;
  }
  #fv .fv-sub-catch span {
    font-size: calc(3.7rem / 2.45); 
    line-height: 1.4;
  }
  #fv .line {
    margin-top: 1.5rem;
  }
}

/***************************************
 art
***************************************/

#art .motion-parse .js-animate-item {
  display: block;
}

#art img {
  width: 100%;
  height: auto;
}

#art .statement-catch {
  margin-top: 9.8rem;
}

#art .statement-catch span {
  width: 100%;
  display: inline-block;
  padding: 2rem 1.2rem;
  box-sizing: border-box;
  line-height: 1;
  background: #1956a6;
  color: #fff;
  font-size: 4.67rem;
}

#art .statement-text {
  margin-top: 7rem;
}

#art .statement-text p {
  font-size: 2.6rem;
  line-height: 1.8;
}

#art .statement-brand {
  margin-top: 6.5rem;
}



#art .statement-brand-name img {
  width: 376px;
}

#art .statement-brand-text {
  padding-top: 5.4rem;
  flex: 1;
}

#art .statement-brand-text p {
  margin: 0;
  line-height: 2;
}

#art .statement-brand-area .statement-brand-text:nth-of-type(1) {
  flex-basis: 54rem;
  flex-shrink: 0;
}

#art .statement-brand-area .statement-brand-text:nth-of-type(2) {
  flex-basis: 50rem;
  flex-shrink: 0;
}

#art .statement-brand + div {
  width: 35%;
  margin-top: 10rem;
}


@media (max-width: 768px) and (orientation: portrait) {
  #art .motion-parse .js-animate-item {
    display: block;
  }
  #art img {
    width: auto;
    height: 100%;
  }
  #art .statement-catch {
    margin-top: 4rem;
    margin-bottom: 0;
  }
  #art .statement-catch span {
    /*
    padding: .6rem .4rem;
    font-size: 1.3rem;
    */
    display: inline-block;
    width: 100%;
    text-align: justify;
    text-align-last: justify;
    white-space: nowrap; 
    font-size: clamp(1rem, 4vw, 1.3rem); 
    padding: .6rem .4rem;
    box-sizing: border-box;
  }
  #art .statement-text {
    margin-top: 1.75rem;
  }
  #art .statement-text p {
    margin: auto;
    font-size: 1.26rem;
    line-height: 1.6;
  }
  #art .statement-brand {
    margin-top: 4rem;
  }
  #art .statement-brand-name {
    width: 50%;
    margin: 0;
  }
  #art .statement-brand-text {
    padding-top: 2.75rem;
  }
  #art .statement-brand-area .statement-brand-text:nth-of-type(1),
  #art .statement-brand-area .statement-brand-text:nth-of-type(2) {
    flex-basis: auto;
  }
  #art .statement-brand-area {
    padding-bottom: 4rem;
  }
  #art .statement-brand-name img {
    width: 100%;
  }
  #art .statement-brand-text p {
    margin: auto;
    line-height: 1.6;
  }
  #art .statement-brand + div {
    width: 100%;
    margin-top: 2rem;
    margin-bottom: 8rem;
  }
  #art .statement-brand + div img {
    width: 100%;
  }
}

/***************************************
 service
***************************************/

#service.section {
  padding-top:22.5rem;
}

#service .sec-title.ml {
  color: #fff;
}

#service .service-list {
  margin-top: 6.7rem;
  padding-left: 0;
}

#service .service-list > li:nth-of-type(1) {
 margin-bottom: 17.5rem;
}

#service .service-list > li:nth-of-type(2) {
  margin-bottom: 17.5rem;
 }

#service .service-box dt {
  margin-bottom: 1.8rem;
}

#service .service-box dt.flex {
  display: flex!important;
  align-items: center;
}
#service .sec-heading {
  display: flex;
  align-items: center;
  font-size: 4.8rem;
  line-height: 1;
  color: #505a5f;
}

#service .sec-heading span {
  padding-left: 2.3rem;
  font-size: 2.4rem;
  color: #727f84;
  opacity: .5;
}

#service .service-box p {
  font-size: 1.2rem;
  color: #505a5f;
}

#service .service-list-tag {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  width: 100%;
  padding: 0;
  align-items: center;
}

#service .service-box .service-list-tag:nth-of-type(1) {
  margin-bottom: 1rem;
}

#service .service-list-tag li:last-child {
  margin-right: inherit;
}

#service .service-list-tag li em {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 2rem;
  border: 0.8px solid;
  padding: 1rem 0.6em;
  vertical-align: middle;
  border: .8px solid #505a5f;
  box-sizing: border-box;
  font-size: 1.4rem;
}

#service .service-box .service-list-tag:nth-of-type(1) li em {
  font-style: normal;
}

#service .service-box .service-list-tag:nth-of-type(2) li em {
  font-size: 1rem;
  border: .8px solid #727f84;
  color: #727f84;
}

#service .service-text {
  margin-top: 2.3rem;
}

#service .service-text p {
  flex: 1;
}

#service .service-text p:nth-of-type(1) {
  flex-basis: 4rem;
  flex-shrink: 0;
}

#service .service-text p:nth-of-type(2) {
  flex-basis: 5rem;
  flex-shrink: 0;
}

#service .service-text .sm {
  letter-spacing: -0.06rem;
}

#service .service-text .ml {
  padding-left: 2.5rem;
}

@media (max-width: 768px) and (orientation: portrait) {
  #service.section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  #service .sec-title {
    margin: auto;
  } 
  #service .service-list {
    margin-top: 3rem;
    margin-bottom: 0;
  }
  #service .service-list > li:nth-of-type(1) {
    margin-bottom: 8rem;
  }
  #service .service-list > li:nth-of-type(2) {
    margin-bottom: 8rem;
  }
  #service .service-list > li:nth-of-type(3) {
    margin-bottom: 0;
  }

  #service .service-box dt {
    margin-bottom:1.6rem;
  }
  #service .sec-heading {
    font-size: 2rem;
    margin: 0;
  }
  #service .sec-heading span {
    padding-left: .5rem;
    font-size: 1rem;
  }
  #service .service-box dt.flex {
    flex-direction: initial;
    display: block!important;
  }
  #service .service-box .service-list-tag {
    gap: .6rem;
  }
  #service .service-text {
    margin-top: 1.8rem;
  }

  #service .service-text p:nth-of-type(1),
  #service .service-text p:nth-of-type(2) {
    flex-basis:auto;
  }
  #service .service-box dd {
    margin: auto;
  }
  #service .service-box .service-list-tag:nth-of-type(1) li em {
    font-style: normal;
    height: 2rem;
    padding: 0 0.8em;
    display: inline-flex;
    justify-content: center;
    align-items: center;
  }
  #service .service-box .service-list-tag:nth-of-type(2) li em {
    font-size: 1rem;
    font-style: normal;
    height: 2rem;
    padding: 0 0.8em;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: .8px solid #727f84;
    color: #727f84;
  }
  #service .service-list-tag li em {
    font-size: .9rem;
  }
  #service .service-text .sm {
    margin: auto;
  }
  #service .service-text .ml {
    padding-left:inherit;
    padding-top: 2.75rem;
  }
}

/***************************************
 work
***************************************/

#work .flex {
  margin-top: 7rem;
}

#work .flex p {
  flex: 1 ;
}

#work .flex .ml {
  padding-left: 2rem; 
}

#work .work-slider-preview {
  width: 100%;
  overflow: hidden;
  padding-top: 13rem;
  margin-bottom: 15rem;
}

#work  .work-img-wrapper {
  position: relative;
  overflow: hidden; 
  line-height: 0;
  width: 100%;
  border-radius: 4rem;
  background-color: rgba(0, 0, 0, 0.4); 
}


#work  .work-img-wrapper::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: background-color 0.4s ease;
  pointer-events: none;
  z-index: 10;
  border-radius: 4rem;
  background-color: rgba(0, 0, 0, 0.4); 
  mix-blend-mode: multiply;
  opacity: 1;
  transition: opacity 0.5s ease;
}

#work  .work-img-wrapper img {
  width: 100%;
  height: auto;
  transform: none !important;
  object-fit: cover; 
}


#work  .work-list-item a:hover .work-img-wrapper::after {
  opacity: 0;
}

#work  .is-active .work-text-content {
  opacity: 1;
  visibility: visible;
}

#work  .mv {
  margin-top: 19.5rem;
}

#work  .mv img {
  width: 100%;
}

#work  .work-style {
  background-color: #1955a6;
  margin-bottom: 50rem;
}

#work  .work-style h3 {
  padding-top: 9rem;
  font-size: 1.8rem;
  color: #fff;
}

#work  .work-style-text {
  padding-top: 7rem;
}

#work  .work-style .work-style-text .sm {
  font-weight: bold;
}

#work  .work-style .work-style-text .ml {
  margin-top: 11rem;
}

#work  .work-style .work-style-text p {
  font-size: 2rem;
  color: #fff;
}

#work .process-style {
  margin-top: 17.6rem;
  position: relative;
}

#work  .process-sec-box {
  margin-bottom: 14rem;
}

#work .process-style h3 {
  padding-top: initial;

}

#work .process-area {
  position: absolute;
  top: 5.8rem;
  left: 0;
  right: 0;
}

#work .process-list {
  display: flex!important;
  margin-top: auto;
  padding: initial;
}

#work  .process-list.js-animate-item {
  overflow: visible !important;
}

#work  .process-list-item {
  width: calc(100% / 5);
  text-align: center;
}

#work  .process-list-item div {
  width: 16.8rem;
  margin: 0 auto;
}

#work .process-list-item > div {
  -web-lit-filter:drop-shadow(2rem 1.4rem 1.6rem rgba(0, 0, 0, 0.3))!important;
  filter:drop-shadow(2rem 1.4rem 1.6rem rgba(0, 0, 0, 0.3))!important;
}

#work .process-list-item h4 {
  font-size: 1.8rem;
  color: #fff;
}

#work .process-list-item p {
  font-size: 1rem;
  line-height: 2;
  letter-spacing: -.06rem;
}

#work .process-list-item:nth-child(even) {
  display: flex;
  flex-direction: column-reverse;
}

#work .process-list-item:nth-child(odd) div {
  padding-top: 2rem;
  padding-bottom: 4.6rem;
}

#work  .process-list-item:nth-child(even) div {
  order: 1;
  padding-top: 4.4rem;
} 

#work  .process-list-item:nth-child(even) h4 {
  order: 3;
}

#work  .process-list-item:nth-of-type(1) h4 {
  color: #359cef;
}

#work .process-list-item:nth-of-type(3) h4 {
  color: #1955a6;
}

#work .process-list-item:nth-of-type(5) h4 {
 color: #1f2f54; 
}

#work .process-list-item:nth-child(even) p {
  order: 2;
  margin-top: 1.2rem;
  color: #fff;
}

#work .process-list + div.js-animate-item.only-blur {
  display: flex!important;
  justify-content: right;
  margin-top: 7rem;
}

@media (max-width: 768px) and (orientation: portrait) {
  #work .work-style {
    margin-bottom: 5rem;
  }
  #work .sec-title {
    margin: 0;
  }
  #work .box .flex {
    margin-top: 4rem;
  }
  #work .box .flex p {
    margin: 0 0 2rem 0;
  }
  #work .flex .ml {
    padding: 0;
  }
  #work .work-slider-preview {
    padding-top: 3rem;
    margin-bottom: 5rem;
  }
  #work .mv {
    margin-top: 7.5rem;
  }
  #work .work-style h3 {
    margin: 0;
    padding-top: 3rem;
    font-size: 1.2rem;
  }
  #work .work-style-text {
    padding-top: 2.5rem;
  }
  #work .work-style .work-style-text p {
    font-size: 1rem;
  }
  #work .work-style .work-style-text .sm,
  #work .work-style .work-style-text .ml {
    margin: 0 0 2.75rem 0;
  }
  #work .process-style {
    margin-top: 5rem;
  }
  #work .process-sec-box {
    margin-bottom: 2rem;
  }
  #work .process-area {
    position: relative;
    top: auto;
  }
  #work .process-list-item {
    width: 100%;
    margin-bottom: 4rem;
  }
  #work .process-list-item:nth-child(even) {
    display: block;
  }
  #work .process-list-item p {
    color: #fff;
  }
  #work .process-list-item h4,
  #work .process-list-item:nth-of-type(1) h4,
  #work .process-list-item:nth-of-type(3) h4,
  #work .process-list-item:nth-of-type(5) h4 {
    color: #fff;
    margin: 0;
  }
  #work .process-list-item div {
    width: 11.5rem;
  }
  #work .process-list-item:nth-child(odd) div,
  #work .process-list-item:nth-child(even) div {
    padding-top: 1.25rem;
    padding-bottom: 2.25rem;
  }
  #work .process-list + div.js-animate-item.only-blur {
    margin: 0;
    padding: 2rem 0;
  }
  #work .process-list + div.js-animate-item.only-blur p {
    color: #fff;
  }
}

/***************************************
 philosophy
***************************************/


#philosophy.section {
  padding-top: 34.5rem;
}

#philosophy .sec-title {
  color: #fff;
}

#philosophy .philosophy-box {
  margin-top: 7.5rem;
}

#philosophy .philosophy-box > div:nth-of-type(1).js-animate-item.white-bg {
  display: block!important;
}

#philosophy .philosophy-box span {
  display: block;
}

#philosophy .philosophy-box span:nth-of-type(1) {
  font-size: 1.8rem;
}

#philosophy .philosophy-box span:nth-of-type(2) {
  padding-top: 6.5rem;
}

#philosophy .philosophy-box span:nth-of-type(3) {
  display: inline-block;
  margin-top: 3.5rem;
  color: #fff;
  font-size: 3rem;
  box-sizing: border-box;
  line-height: 1;
  background: #1956a6;
  padding: 1rem;
}

#philosophy .philosophy-box .flex {
  margin-top: 12rem;
}

#philosophy .philosophy-box .flex > div {
  flex: 1;
}

#philosophy .philosophy-box .flex > div:nth-of-type(1) p {
  letter-spacing: -.02rem;
}

#philosophy .philosophy-box .flex .ml {
  padding-left: 3rem;
}

#philosophy .values-style {
  margin-top: 25rem;
  background-color: #1f2f54;
}

#philosophy .values-sec-box.js-animate-item.only-blur {
  display: block!important;
  overflow: visible!important;
}

#philosophy .values-style h3 {
  padding-top: 6rem;
  color: #fff;
}

#philosophy .values-style h3 span {
  font-size: 1.8rem;
  color: #fff;
}

#philosophy .values-box {
  padding-bottom: 13rem;
  padding-top: 6.5rem;
}

#philosophy .values-box > div.js-animate-item.only-blur {
  display: block!important;
}

#philosophy .values-box > div.js-animate-item {
  overflow: visible!important;
}

#philosophy .values-list {
  display: grid!important;
  grid-template-columns: 1fr 1fr;
  row-gap: 0rem;
  column-gap: 10.0rem;
  list-style: none;
  padding: 0;
  max-width: 120rem; 
  margin: 0 auto;
}

#philosophy .values-list-item {
  position: relative;
  width: 100%;
  isolation: isolate;
}

#philosophy .values-list-item:nth-of-type(1) {
  padding-left: 10rem;
  padding-top: 2rem;
}

#philosophy .values-list-item:nth-of-type(2) {
  margin-top: 5rem;
  padding-top: 4.5rem;
  padding-left: 12rem;
}

#philosophy .values-list-item:nth-of-type(3) {
  margin-top: -4rem;
  padding-left: 9.75rem;
  padding-top: 2.7rem;
}

#philosophy .values-list-item h4,
#philosophy .values-list-item p {
  color: #fff;
}

#philosophy .values-list-item h4 {
  position: relative;
  font-size: 3rem;
}

#philosophy .values-list-item h4 span {
  font-size: 2.4rem;
  padding-left: 1rem;
}

#philosophy .values-list-item p {
  font-size: 1.2rem;
}

#philosophy .values-list-item .sm {
  margin-top: 5rem;
  letter-spacing: .075rem;
}

#philosophy .values-list-item .sm span {
  color: #fff;
}

#philosophy .values-list-item .ml {
  margin-top: 6rem;
}

#philosophy .values-list-item3 {
  grid-column: 1 / 3;
  width: calc(50% - 5.0rem); 
  margin-left: auto;
  margin-right: auto;
  max-width: none;
}

#philosophy .values-list-item .values-bg {
  position: absolute;
  z-index: -1;
  left: 50%;
  transform: translateX(-50%);
}

#philosophy .values-list-item:nth-of-type(1) .values-bg {
  top: 0;
  width: 38.5rem;
}

#philosophy .values-list-item:nth-of-type(2) .values-bg {
  top: 0;
  width: 40rem;
}

#philosophy .values-list-item:nth-of-type(3) .values-bg {
  top: 0;
  left: 45%;
  width: 37.8rem;
}

#philosophy .philosophy-area {
  position: relative;
  padding-top: 10.5rem;
  background-color: #eaeaea;
  padding-bottom: 2.4rem;
}

#philosophy .philosophy-bg-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
}

#philosophy .philosophy-bg-img > div {
  display: block!important;
}

#philosophy .philosophy-bg-img img {
  width: 100%;
  display: block;
}

#philosophy .philosophy-text-area {
  position: relative;
}

#philosophy .philosophy-text-area > div.js-animate-item.only-blur {
  display: block!important;
  overflow: visible!important;
}

#philosophy .philosophy-text-area > div:nth-of-type(1) .sm {
  font-size: 2rem;
  font-weight: bold;
}

#philosophy .philosophy-text-area > div:nth-of-type(1) .ml {
  font-size: 2rem;
  margin-top: 9.5rem;
}

.btn-area {
  display: flex;
  justify-content: right;
  padding-right: 3rem;
  position: relative;
  bottom: 2rem;
}

.btn-bg-area {
  background-color: #505a5f;
}

.btn {
  display: inline-block;
  padding: .5rem .7rem;
}

.btn .flex {
  align-items: center;
  border-bottom: 1px solid #fff;
}

.btn span {
  font-size: 2.3rem;
  color: #fff;
}

.btn svg {
  margin-left: 2.4rem;
  color: #fff;
}

.btn + span {
  display: block;
  padding: .5rem .7rem;
}

.btn + span small {
  font-size: 1.8rem;
  color: #fff;
  line-height: 1;
}

@media (max-width: 768px) and (orientation: portrait) {
  #philosophy.section {
    padding-top: 5rem;
  }
  #philosophy .sec-title {
    margin: 0;
  }
  #philosophy .philosophy-box {
    margin-top: 2rem;
  }
  #philosophy .philosophy-box h3 {
    margin: 0;
  }
  #philosophy .philosophy-box span {
    line-height: 1;
  }
  #philosophy .philosophy-box span:nth-of-type(1) {
    font-size: 1.2rem;
  }
  #philosophy .philosophy-box span:nth-of-type(2) {
    padding-top: 1.8rem;
  }
  #philosophy .philosophy-box span:nth-of-type(3) {
    /*
    padding: .6rem .4rem;
    font-size: 1.42rem;
    */
    display: inline-block;
    width: 100%;
    text-align: justify;
    text-align-last: justify;
    white-space: nowrap; 
    font-size: clamp(1rem, 4vw, 1.42rem); 
    padding: .6rem .4rem;
    box-sizing: border-box;
    margin-top: 1.8rem;
  }
  #philosophy .philosophy-box .flex {
    margin-top: 5rem;
  }
  #philosophy .philosophy-box .flex > div:nth-of-type(2) {
    padding-top: 2.75rem;
  }
  #philosophy .philosophy-box .flex .sm {
    margin: 0;
  }
  #philosophy .philosophy-box .flex .ml {
    padding-left: inherit;
  }
  #philosophy .values-style {
    margin-top: 7rem;
  }
  #philosophy .values-style h3 {
    padding-top: 2.5rem;
    margin: 0;
  }
  #philosophy .values-style h3 span {
    font-size: 1.2rem;
    color: #fff;
    line-height: 1;
  }
  #philosophy .values-box {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  #philosophy .values-list {
    display: block!important;
    grid-template-columns: 1fr;
  }
  #philosophy .values-list-item h4.sm {
    font-size: 1.85rem;
    line-height: 1;
  }
  #philosophy .values-list-item:nth-of-type(1) h4.sm {
    margin-top: 0;
  }
  #philosophy .values-list-item .sm span {
    font-size: 1.2rem;
    padding-left: .5rem;
  }
  #philosophy .values-list-item .sm {
    margin-top: 3rem;
    margin-bottom: auto;
  }
  #philosophy .values-list-item .ml {
    margin-top: 3rem;
    margin-bottom: auto;
  }
  #philosophy .values-list-item:nth-last-of-type(3) {
    grid-column: auto;
  }
  #philosophy .values-list-item3 {
    width: 100%;
  }
  #philosophy .values-list-item:nth-of-type(1),
  #philosophy .values-list-item:nth-of-type(2),
  #philosophy .values-list-item:nth-of-type(3) {
    padding-left: inherit;
  } 
  #philosophy .values-list-item:nth-of-type(2) {
    padding-top: 0;
  }
  #philosophy .values-list-item:nth-of-type(3) {
    margin-top: 5rem;
    padding-top :0;
  }
  #philosophy .values-list-item:nth-of-type(1) .values-bg {
    width: 15rem;
  }
  #philosophy .values-list-item:nth-of-type(2) .values-bg {
    width: 15rem;
  }
  #philosophy .values-list-item:nth-of-type(3) .values-bg {
    width: 15rem;
  }
  #philosophy .philosophy-area {
    padding-top:0;  
  }
  #philosophy .philosophy-bg-img {
    position: relative;
    width: 100%;
  }
  #philosophy .philosophy-text-area > div:nth-of-type(1) .sm {
    font-size: 1.2rem;
    margin: 2rem 0 0 0;
  }
  #philosophy .philosophy-text-area > div:nth-of-type(1) .ml {
    font-size: 1.2rem;
    margin: 2rem 0 2.5rem 0;
  }
  .btn-area {
    padding-right: 0;
    bottom: 0;
  }
  .btn .flex {
    flex-direction: row;
  }
  .btn span {
    font-size: 1.6rem;
  }
  .btn svg {
    margin-left: .4rem;
  }
  .btn + span small {
    font-size: 1.2rem;
    color: inherit;
  }

}


/***************************************
 message
***************************************/

#messages .sec-title.ml {
  color: #fff;
}

#messages .message-area {
  margin-top: 17rem;
  padding-bottom: 25.8rem;
}

#messages .message-area .message-member-img,
#messages .message-area .message-box {
  flex:1;
}

#messages .message-member-img {
  padding-left: 6rem;
}

#messages .message-member-img img {
  border-radius: 4rem;
}

#messages .message-box {
  padding-left: 6rem;
}

#messages .message-box dt {
  font-size: 1.2rem;
  line-height: 2;
}

#messages .message-box dd {
  margin-top: 6rem;
  font-size: 1.2rem;
}

#messages .member-btn-area {
  padding-top: 9.8rem;
}

#messages .member-btn-area h3 {
  text-align: right;
  padding-bottom: 3.2rem;
}

#messages .member-btn-area h3 span {
  display: block;
  line-height: 1;
}

#messages .member-btn-area h3 span:nth-of-type(1) {
  padding-bottom: 1.2rem;
  font-size: 1.2rem;
}

#messages .member-btn-area h3 span:nth-of-type(2) {
  font-size: 3.2rem;
}

#messages .member-btn-area .btn {
  width: 20rem;
}

#messages .member-btn-area .btn span {
  color: #505a5f;
  font-size: 1.8rem;
}

#messages .member-btn-area .btn svg {
  color: #505a5f;
}

#messages .member-btn-area .btn .flex {
  justify-content: space-between;
  padding: 0 .5rem;
  border-bottom: 1px solid #505a5f;
}

@media (max-width: 768px) and (orientation: portrait) {
  #messages .sec-title {
    margin: 5.5rem 0 0 0;
  }
  #messages .message-area {
    margin-top: 5rem;
    padding-bottom: 5rem;
  }
  #messages .message-member-img {
    padding-left: 0;
  }
  #messages .message-box {
    margin-top: 5rem;
    padding-left: 0;
  }
  #messages .message-box dt br,
  #messages .message-box dd br {
    display: block;

  }
  #messages .message-box dd {
    margin: 4rem 0 0 0;
  }
  #messages .member-btn-area {
    padding-top: 5rem;
  }
  #messages .member-btn-area h3 {
    margin: 0;
    padding-bottom: 2rem;
  }
  #messages .member-btn-area h3 span:nth-of-type(2) {
    font-size: 2.25rem;
  }
  #messages .member-btn-area .btn span {
    font-size: 2rem;
  }

}

/***************************************
 companies
***************************************/

#companies.company-style {
  background-color: #eaeaea;
  padding-bottom: 18rem;
}

#companies .sec-title.ml {
  color: #fff;
}

#companies .company-list {
  margin-top: 7rem;
}

#companies .company-list .sm {
  font-weight: bold;
  color: #505a5f;
}

#companies .company-list-item {
  padding-bottom: 2.5rem;
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 8rem;
}

#companies .company-list-item:last-child {
  padding-bottom: inherit;
}

#companies .company-list-item dd {
  letter-spacing: .05rem;
}

@media (max-width: 768px) and (orientation: portrait) {
  #companies.company-style {
    padding-bottom: 5rem;
  }
  #companies .sec-title {
    margin: 2.5rem 0 0 0;
  }
  #companies .company-list {
   margin-top: 3rem;
  }
  #companies .company-list-item {
    grid-template-columns: 5rem 1fr;
    gap: 2rem;
  }
  #companies .company-list-item br {
    display: block;
  }
  #companies .company-list-item dt {
    font-size: 1.25rem;
  }
  #companies .company-list-item dd {
    font-size: 1.25rem;
    margin: 0;
  }
}

/***************************************
 contact
***************************************/

.contact-style {
  background-color: #505a5f;
  padding-top: 6.7rem;
}

.contact-style .sec-title {
  background-color: inherit;
  color: #fff;
}

.contact-form-area {
  padding-bottom: 16rem;
  padding-top: 13rem;
}

.contact-form-area p {
  text-align: center;
  color: #fff;
}

#contactForm {
  margin-top: 9.6rem;
  margin-left: 14rem;
}

.form-group {
  display: grid;
  grid-template-columns: 13.8rem 1fr;
  gap: 3rem;
  margin-bottom: 2.8rem;
}

.form-group dt {
  text-align: right;
}

.form-group dd {
  margin: 0;
}

.form-group label {
  display: block;
  font-size: 1.8rem;
  color: #fff;
  font-weight: bold;
}

label .required {
  color: #e74c3c;
  margin-left: 4px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 54rem;
  padding: 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
  border-radius: 2rem;
  border: none;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

input.error,
textarea.error {
  border-color: #e74c3c;
}

.error-message {
  color: #e74c3c;
  font-size: 12px;
  margin-top: 5px;
  display: none;
}

.error-message.show {
  display: block;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.agreement {
  width: 50rem;
  margin-left: 17rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 6px;
  border-left: 4px solid #667eea;
}

.agreement label {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  cursor: pointer;
  font-weight: normal;
  margin-bottom: 0;
}

.agreement input[type="checkbox"] {
  margin-right: 10px;
  margin-top: 3px;
  cursor: pointer;
  width: 18px;
  height: 18px;
}

.agreement-text {
  font-size: 13px;
  line-height: 1.6;
  color: #555;
}

.agreement-text a {
  color: #667eea;
  text-decoration: underline;
}

.submit-btn {
  width: 28rem;
  margin-top: 3rem;
  margin-left: 17rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.submit-btn:disabled {
  background: #cccccc;
  cursor: not-allowed;
  opacity: 0.6;
}

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease;
}

.modal-overlay.show {
  display: flex;
}

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

.confirm-modal {
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
      opacity: 0;
      transform: translateY(30px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.confirm-modal h2 {
  color: #333;
  margin-bottom: 20px;
  font-size: 24px;
  text-align: center;
}

.confirm-item {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e0e0e0;
}

.confirm-item:last-child {
  border-bottom: none;
}

.confirm-label {
  font-weight: 600;
  color: #555;
  font-size: 13px;
  margin-bottom: 5px;
}

.confirm-value {
  color: #333;
  font-size: 15px;
  line-height: 1.6;
  white-space: pre-wrap;
}

.confirm-buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.btn-back,
.btn-submit {
  flex: 1;
  padding: 15px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-back {
  background: #e0e0e0;
  color: #555;
}

.btn-back:hover {
  background: #d0d0d0;
}

.btn-submit {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.complete-modal {
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  text-align: center;
  max-width: 400px;
  animation: slideUp 0.3s ease;
}

.complete-icon {
  width: 60px;
  height: 60px;
  background: #27ae60;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  color: white;
}

.complete-modal h2 {
  color: #333;
  margin-bottom: 15px;
  font-size: 24px;
}

.complete-modal p {
  color: #666;
  margin-bottom: 25px;
  line-height: 1.6;
}

.btn-close {
  padding: 12px 30px;
  background: #667eea;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-close:hover {
  background: #5568d3;
}

.loading {
  display: none;
  text-align: center;
  margin-top: 10px;
}

.loading.show {
  display: block;
}

.spinner {
  border: 3px solid #f3f3f3;
  border-top: 3px solid #667eea;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
/* レスポンシブ */
@media (max-width: 600px) {
  .container,
  .confirm-modal {
      padding: 25px;
  }

  .confirm-buttons {
      flex-direction: column;
  }
}

@media (max-width: 768px) and (orientation: portrait) {
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="number"],
  textarea,
  select {
    font-size: 16px !important;
  }
  
  .contact-style {
    padding-top: 2.5rem;
  }
  #contact .sec-title {
    margin: 0;
  }
  .contact-form-area {
    padding: inherit;
  }
  .contact-form-area p {
    padding: inherit; 
    text-align: left;
  }
  #contactForm {
    margin-top: 3rem;
    margin-left: 0;
  }
  .form-group {
    display: block;
    margin: 0 0 2rem 0;
  }
  .form-group dt {
    text-align: left;
    margin-bottom: .75rem;
  }
  input[type="text"], input[type="email"], input[type="tel"], textarea {
    width: 100%;
  }
  .form-group label {
    font-size: 1.3rem;
  }
  .agreement {
    width: 100%;
    margin: 0 auto;
  }
  .submit-btn {
    width: 100%;
    margin-top: 2rem;
    margin-left: auto;
    margin-right: auto;
  }

}
/***************************************
 footer
***************************************/

.footer-style {
  background-color: #505a5f;
}

.footer-area {
  padding-top: 7.2rem;
  padding-bottom: 3rem;
}

.nav-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-inline: 10.5rem;
}

.nav-footer .title svg {
  width: 24.5rem;
  height: auto;
  color: #fff;
}


.nav-footer .nav-list {
  display: grid;
  grid-template-columns: repeat(4, auto);
  grid-template-rows: repeat(3, auto);
  gap: 3rem 4.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-footer .nav-list li {
  padding-left:inherit;;
}

.nav-footer .nav-list li a {
  font-size: 1.8rem;
  color: #fff;
}

.nav-footer .nav-list li a svg {
  color: #fff;
}

.nav-footer .nav-list .sns li:nth-of-type(2) {
  padding-left: 2rem;
}

.copy {
  margin-top: 11.5rem;
  text-align: center;
  font-size: .8rem;
  color: #fff;
}

@media (max-width: 768px) and (orientation: portrait) {
  .footer-area { 
    padding-bottom: 2rem;
  }
  .nav-footer {
    display: block;
    padding: 0; 
  }
  .nav-footer .title svg {
    width: 12.5rem;
  }
  .nav-footer .nav-list {
    margin-top: 5rem;
    grid-template-columns: repeat(2, auto);
    grid-template-rows: repeat(3, auto);
    gap: 1rem 2rem;
  }
  .nav-footer .nav-list li a {
    font-size: 1.4rem;
  }
}



/***************************************
 interview
***************************************/

#interview h2,
#interview h3,
#interview p {
  margin: 0;
}

#interview img {
  display: block;
}

#interview p {
  font-size: 1.8rem;
  line-height: 2;
  /*
  letter-spacing: -.125rem;
  text-align: justify;
  text-justify: inter-character;
  */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

}

#interview .js-animate-item.interview-fv-picture {
  display: block;
}

#interview .interview-fv-area {
  position: relative;
}

#interview .interviews-picture {
  width: 100%;
  height: auto; 
  position: relative;
  overflow: hidden;
  line-height: 0; 
}

#interview .interviews-picture img {
  display: block;
  width: 100% !important;
  height: auto !important;
  max-width: none !important;
  transform-origin: left top;
}








#interview .interview-member-name div {
  white-space: nowrap;
}

#interview .interview-fv-area h2 {
  position: absolute;
  top: 4.3rem;
  right: 0;
  padding-left: 1.8rem;
  padding-right: 8.4rem;
  z-index: 1;
  animation: bgShow 1.0s 1.0s forwards;
  background-color: rgba(31, 47, 84, 0);
}

#interview .interview-fv-area h2 em {
  font-size: 2.1rem;
  color: #fff;
  font-style: italic;
}

#interview .interview-member-name {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  writing-mode: vertical-rl;
  width: fit-content;
  height: auto; 
  display: flex;
  flex-direction: column-reverse;
  gap: 1.5rem; 
  padding-top: 5rem;
  padding-bottom: 7.5rem;
  padding-left: 2.7rem;
  padding-right: 6.2rem;
  color: #fff;

  animation: bgShow 1.0s 1.0s forwards;
  background-color: rgba(31, 47, 84, 0);
}

@keyframes bgShow {
  from {
    background-color: rgba(31, 47, 84, 0);
  }
  to {
    background-color: #1f2f54;
  }
}

#interview .interview-member-name div {
  color: #fff;
  line-height: 1;
}

#interview .interview-member-name div:nth-of-type(1) {
  font-size: 1.6rem;
}

#interview .interview-member-name div:nth-of-type(2) {
  font-size: 6.8rem;
}


#interview .outline {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  height: 2.8rem;
  margin-top: 2.8rem;
  background-color: #1f2f54;
}

#interview .outline .js-animate-item {
  padding-right: 10.5rem;
}

#interview .outline svg {
  width: 16.3rem;
  height: auto;
  color: #fff;
}


#interview .interview-no01 {
  margin-top: 4.8rem;
}

#interview .interview-no01 h3 span {
  display: block;
}

#interview .interview-no01 h3 span:nth-of-type(1) {
  width: 86.3rem;
}

#interview .interview-no01 h3 span:nth-of-type(2) {
  padding-top: 4.6rem;
}

#interview .interview-no01 h3 span:nth-of-type(2) em {
  font-size: 2rem
}

#interview .interview-box {
  display: flex;
}

#interview .interview-no01 .interview-text-box {
  flex-direction: row-reverse;
  margin-top: 6.8rem;
}

#interview .interview-no01 .interview-text-box > div:nth-of-type(1) {
  margin-left: 2.7rem;
  flex-basis: 54.8rem;
  flex-shrink: 0;
  height: 100%;
}

#interview .interview-no01 .interview-text-box > div:nth-of-type(2) p {
  font-size: 1.8rem;
  line-height: 2.2;
  flex-grow: 1;
}

#interview .interview-no02 {
  margin-top: 25rem;
}

#interview .interview-no02 .interview-box {
  flex-direction: row-reverse;
}


#interview .interview-no02 .interview-box > h3 {
  text-align: right;
}

#interview .interview-no02 .interview-box > h3 span {
  font-size: 7.2rem;
  line-height: 1.25;
}

#interview .interview-no02 .interview-box .sm > span:nth-of-type(1),
#interview .interview-no02 .interview-box .sm > span:nth-of-type(3) {
  position: relative;
  left: 4rem;
}

#interview .interview-no02 .interview-box > div {
  flex-basis: 56rem;
  flex-shrink: 0;
}

#interview .interview-no02 .interview-text-box {
  margin-top: 5.6rem;
}

#interview .interview-no02 .interview-text-box > p {
  font-size: 1.8rem;
  line-height: 2.25;
}

#interview .interview-no03 {
  margin-top: 36rem;
}

#interview .interview-no03 .interview-box > h3 {
  order: 2;
  font-size: 7.2rem;
}

#interview .interview-no03 .interview-box > h3 span {
  writing-mode: vertical-rl;
  width: fit-content;
  height: auto;
}

#interview .interview-no03 .interview-box > h3,
#interview .interview-no03 .interview-box > div {
  flex: 1;
}

#interview .interview-no03 .interview-box > div:nth-of-type(1) {
  flex-basis: 32.8rem;
  flex-shrink: 0; 
  height: 100%;
}

#interview .interview-no03 .interview-box > div:nth-of-type(2) {
  flex-basis: 62.5rem;
  flex-shrink: 0; 
}

#interview .interview-no03 .interview-text-box span {
  display: block;
}

#interview .interview-no03 .interview-text-box span em {
  font-size: 2.1rem;
  color: #000;
}

#interview .interview-no03 .interview-text-box p {
  padding-top: 6.6rem;
  font-size: 1.8rem;
  line-height: 2.25;
}

#interview .interview-no04 {
  margin-top: 25.3rem;
}

#interview .interview-no04 .interview-box > div {
  flex: 1;
}

#interview .interview-no04 .interview-box > div:nth-of-type(1) {
  flex-basis: 65rem;
  flex-shrink: 0;
}

#interview .interview-no04 .interview-box > div:nth-of-type(2) {
  flex-basis: 44.3rem;
  flex-shrink: 0;
}

#interview .interview-no04 .interview-box h3 {
  font-size: 7.2rem;
}

#interview .interview-no04 .interview-box h3 span {
  display: block;
}

#interview .interview-no04 .interview-text-box {
  padding-top: 12.5rem;
}

#interview .motion-parse {
  margin-top: 18.1rem;
}

#interview .motion-parse > div {
  width: 100%;
}

#interview .interview-no05 {
  margin-top: 13.3rem;
}

#interview .interview-no05 .interview-box > div:nth-of-type(1) {
  flex-grow: 1;
}

#interview .interview-no05 .interview-box > div:nth-of-type(2) {
  flex-basis: 52.1rem;
  flex-shrink: 0;
}



#interview .interview-no05 .interview-box h3 {
  font-size: 7.2rem;
}

#interview .interview-no05 .interview-box h3 > span {
  display: block;
  line-height: 1.25;
}

#interview .interview-no05 .interview-box > div:nth-of-type(1) > span {
  margin-top: 7.5rem;
  display: block;
} 

#interview .interview-no05 .interview-box > div:nth-of-type(1) > span em {
  font-size: 2.1rem;
    color: #000;
}

#interview .interview-no05 .interview-text-box {
  margin-top: 7.1rem;
}

#interview  .interview-no06 {
  margin-top: 28.7rem;
}

#interview .interview-no06 .interview-box > div:nth-of-type(1) {
  flex-basis: 89.8rem;
  flex-shrink: 0;
}

#interview .interview-box.picture-layout span {
  display: block; 
}

#interview .interview-box.picture-layout span:nth-of-type(1) {
  margin-right: 4.2rem;
}

#interview .interview-box.picture-layout span:nth-of-type(2) {
  margin-right: 3.6rem;
}

#interview .interview-no06 .interview-box > div p {
  padding-top: 9rem;
  padding-right: 8.5rem;
}

#interview .interview-no06 .interview-text-box {
  margin-top: 6.3rem;
}

#interview .interview-no07 {
  margin-top: 29.6rem;
  position: relative;
}

#interview .interview-no07 > div:nth-of-type(1) {
  position: relative;
}

#interview .interview-no07 h3 {
  position: absolute;
  left: 35.8rem;
  top: -5rem;
}

#interview .interview-no07 h3 > span {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

#interview .interview-no07 h3 span > span {
  font-size: 5.7rem;
  line-height: 1.25;
}

#interview .interview-no07 h3 + div {
  width: 68.4rem;
  position: relative;
  z-index: -1;
}

#interview .interview-no07 > div:nth-of-type(2) {
  width: 24rem;
  position: absolute;
  top: 25rem;
  bottom: auto;
  right: 6.6rem;
}

#interview .interview-no08 {
  margin-top: 34.3rem;
}

#interview .interview-no08 .interview-box {
  padding-bottom: 30rem;
}

#interview .interview-no08 .interview-box > div:nth-of-type(1) {
  flex-basis: 45.4rem;
  flex-shrink: 0;
}

#interview .interview-no08 .interview-box > div:nth-of-type(2) {
  flex-grow: 1;
  padding-left: 5rem;
}

#interview .interview-no08 .interview-box > div svg {
  width: 100%;
  height: auto;
  margin-top: 13.8rem;
  color: #505a5f;
}

@media (max-width: 768px) and (orientation: portrait) {
  #interview p {
    font-size: 1.2rem;
    line-height: 2;
  }
  #interview .interview-fv-area h2 {
    top: 5rem;
    padding-left: 1rem;
    padding-right: 2.4rem;
  }
  #interview .interview-fv-area h2 em {
    font-size: 1.4rem;
  }
  #interview .interview-member-name {
    gap: 1.2rem;
    padding-top: 1rem;
    padding-bottom: 1.5rem;
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }
  #interview .interview-member-name div:nth-of-type(1) {
    font-size: 1.2rem;
  }
  #interview .interview-member-name div:nth-of-type(2) {
    font-size: 2.4rem;
  }
  #interview .outline .js-animate-item {
    padding-right: 2.5rem;
  }
  #interview .outline svg {
    width: 10.3rem;
  }
  #interview .interview-no01 {
    margin-top: 2.4rem;
  }
  #interview .interview-no03 .interview-box > h3 span {
    writing-mode: lr;
    line-height: 1;
  }
  #interview .interview-no01 h3 span:nth-of-type(1) {
    width: 25.3rem;
  }
  #interview .interview-no01 h3 span:nth-of-type(2) em {
    font-size: 1.6rem;
  }
  #interview .interview-box {
    flex-direction: column;
  }
  #interview .interview-no01 .interview-text-box {
    margin-top: 3.4rem;
    flex-direction: column;
  }
  #interview .interview-no01 .interview-text-box > div:nth-of-type(1) {
    flex-basis: auto;
  }
  #interview .interview-no01 .interview-text-box > div:nth-of-type(2) {
    padding-top: 2rem;
  }
  #interview .interview-no01 .interview-text-box > div:nth-of-type(2) p {
    font-size: 1.2rem;
    line-height: 2;
  }

  #interview .interview-no02 {
    margin-top: 12rem;
  }
  #interview .interview-no02 .interview-box {
    flex-direction: column;
  }
  #interview .interview-no02 .interview-box > h3 span {
    font-size: 4.2rem;
  }
  #interview .interview-no02 .interview-box .sm > span:nth-of-type(1), #interview .interview-no02 .interview-box .sm > span:nth-of-type(3) {
    left: 2rem;
  }
  #interview .interview-no02 .interview-box > div {
    flex-basis: auto;
    margin-right: 2.7rem;
  }
  #interview .interview-no02 .interview-text-box > p {
    font-size: 1.2rem;
    line-height: 2;
  }
  #interview .interview-no02 .interview-box > h3 {
    overflow: hidden;
    margin-bottom: 3rem;
    margin-right: 2.7rem;
  }
  #interview .interview-no03 .interview-box > h3, #interview .interview-no03 .interview-box > div {
    flex: none;
  }
  #interview .interview-no03 .interview-box > h3 {
    order: 0;
    font-size: 4.2rem;
    text-align: right;
  }
  #interview .interview-no03 .interview-box > div:nth-of-type(1),
  #interview .interview-no03 .interview-box > div:nth-of-type(2) {
    flex-basis: auto;
  }
  #interview .interview-no03 .interview-box > div:nth-of-type(1) {
    margin-right: 2rem;
    margin-left: 2rem;
  }
  #interview .interview-no02 .interview-text-box {
    margin-top: 2.4rem;
  }
  #interview .interview-no03 {
    margin-top: 18rem;
  }
  #interview .interview-no03 .interview-text-box span em {
    font-size: 1.6rem;
  }
  #interview .interview-no03 .interview-text-box span {
    padding-top: 2.4rem;
  }
  #interview .interview-no03 .interview-text-box p {
    padding-top: 2.4rem;
    font-size: 1.2rem;
    line-height: 2;
  }
  #interview .interview-no04 {
    margin-top: 12rem;
  }
  #interview .interview-no04 .interview-text-box {
    padding-top: 2.4rem;
    padding-bottom: 2.4rem;
  }
  #interview .interview-no04 .interview-box h3 {
    font-size: 4.2rem
  }
  #interview .interview-no04 .interview-box > div {
    flex: none;
  }
  #interview .interview-no04 .interview-box > div:nth-of-type(1),
  #interview .interview-no04 .interview-box > div:nth-of-type(2) {
    flex-basis: auto;
  }
  #interview .interview-no04 .interview-box > div:nth-of-type(2) {
    margin-right: 2rem;
    margin-left: 2rem;
  }
  #interview .motion-parse {
    margin-top: 10rem;
  }
  #interview .interview-no05 {
    margin-top: 7rem;
  }
  #interview .interview-no05 .interview-box > div:nth-of-type(1) > span {
    margin-top: 2.4rem;
    margin-bottom: 2.4rem;
  }
  #interview .interview-no05 .interview-box > div:nth-of-type(2) {
    flex-basis: auto;
    margin-left: 2.7rem;
  }
  #interview .interview-no05 .interview-box h3 {
    font-size: 4.2rem;
  }
  #interview .interview-no05 .interview-box > div:nth-of-type(1) > span em {
    font-size: 1.6rem;
  }
  #interview .interview-no05 .interview-text-box {
    margin-top:2.4rem;
  }
  #interview .interview-no06 {
    margin-top: 5rem;
  }
  #interview .interview-no06 .interview-box > div p {
    padding-right: 0;
    padding-top: 2.4rem;
    padding-bottom: 2.4rem;
  }
  #interview .interview-no06 .interview-box > div:nth-of-type(1) {
    flex-basis:auto;
  }
  #interview .interview-no06 .interview-box > div:nth-of-type(2) {
    margin-left: 2.7rem;
  }
  #interview .interview-no06 .interview-text-box {
    margin-top: 2.4rem;
  }
  #interview .interview-box.picture-layout span:nth-of-type(1) {
    margin-right: 2.7rem;
  }
  #interview .interview-box.picture-layout span:nth-of-type(2) {
    margin-top: 2.7rem;
    margin-left: 2.7rem;
    margin-right: 0;
  }

  #interview .interview-no07 {
    margin-top: 16rem;
  }
  #interview .interview-no07 h3 {
    left: 2rem;
    top: -10rem;
  }
  #interview .interview-no07 h3 span > span {
    font-size: 2.4rem;
  }
  #interview .interview-no07 h3 + div {
    width: 35rem;
  }
  #interview .interview-no07 > div:nth-of-type(2) {
    width: 15rem;
   right: 2.7rem;
  }
  #interview .interview-no08 {
    margin-top: 26.3rem;
  }
  #interview .interview-no08 .interview-box {
    padding-bottom: 12.5rem;
  }
  #interview .interview-no08 .interview-box > div:nth-of-type(1) {
    margin-left: 2.7rem;
    margin-right: 2.7rem;
  }
  #interview .interview-no08 .interview-box > div:nth-of-type(2) {
    padding-left:2rem;
    padding-right: 2rem;
    padding-top: 2.4rem;
  }
  #interview .interview-no08 .interview-box > div svg {
    margin-top: 7rem; 
  }

}


/***************************************
 interview
***************************************/

#conception .conception-fv {
  position: relative;
}

#conception .conception-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: left top;
  background-repeat: no-repeat;
  background-image: url('../img/conception/conception-bg-picture.webp');
}

#conception .conception-fv-area {
  position: absolute;
  top: 4.2rem;
  right: 0;
  z-index: 1;
}

#conception .conception-fv-area h2 {
  background-color: #1f2f54;
  font-size: 2.1rem;
  padding-left: 1rem;
  padding-right: 2.5rem;
}

#conception .conception-fv-area h2 em {
  color: #fff;
  font-style: italic;
}

#conception .conception-fv h3 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 21.7rem;
  margin-top: 0;
}

#conception .conception-fv h3 > span {
  line-height: 1;
}

#conception .conception-fv h3 > span:nth-of-type(1) {
  font-size: 4rem;
}

#conception .conception-fv h3 > span:nth-of-type(2) {
  margin-top: 9.1rem;
  font-size: 6rem;
}

#conception .conception-fv h3 > span:nth-of-type(3) {
  margin-top: 3.6rem;
  font-size: 2.4rem;
}

#conception .conception-fv h3 > span:nth-of-type(4) {
  margin-top: 1.7rem;
  font-size: 2.1rem;
}

#conception .conception-fv-box .js-animate-item.only-blur,
#conception .conception-text-area01 .js-animate-item.only-blur {
  display: block!important;
}

#conception .conception-text-area01 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 14.5rem;
}

#conception .conception-text-area01 > div {
  margin-bottom: 4.5rem;
}

#conception .conception-text-area01 > div:last-child {
  margin-bottom: 0;
}

#conception .conception-text-area01 span {
  font-size: 1.8rem;
  line-height: 1;
}

#conception .conception-text-area02 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 60.7rem;
}

#conception .conception-text-area02 > div {
  text-align: left;
}
 
#conception .conception-text-area02 > div p {
  font-size: 2.4rem;
  color: #fff;
  padding: 1.7rem 3.1rem;
  line-height: 1;
  background-color: #505a5f;
}

#conception .conception-text-area02 > div:nth-of-type(2) {
  margin-top: 1rem;
  margin-bottom: 21.9rem;
}
 
#conception .conception-text-area02 > div:nth-of-type(2) p {
  padding-right: 10.35rem;
}

#conception .conception-text-area03 {
  background-color: #1f2f54;
}

#conception .conception-text-area03 > div:nth-of-type(1) {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 24.6rem;
  padding-bottom: 22rem;
}

#conception .conception-text-area03 > div p {
  color: #fff;
  font-size: 1.8rem;
  line-height: 2.25;
}

#conception .conception-text-area03 .motion-parse {
  padding-bottom: 24.4rem;
}

#conception .conception-text-area03 .motion-parse > div {
  width: 100%;
}

#conception .conception-member-picture > div:nth-of-type(1),
#conception .conception-member-picture > div:nth-of-type(3) {
  display: block;
}

#conception .conception-member-picture > div:nth-of-type(3) {
  margin-bottom: 6rem;
}


#conception .member-btn-area {
  padding-top: 9.8rem;
  bottom: 5rem;
}

#conception .member-btn-area h3 {
  text-align: right;
  padding-bottom: 3.2rem;
}

#conception .member-btn-area h3 span {
  display: block;
  line-height: 1;
}

#conception .member-btn-area h3 span:nth-of-type(1) {
  padding-bottom: 1.2rem;
  font-size: 1.2rem;
}

#conception .member-btn-area h3 span:nth-of-type(2) {
  font-size: 3.2rem;
}

#conception .member-btn-area .btn {
  width: 20rem;
}

#conception .member-btn-area .btn span {
  color: #505a5f;
  font-size: 1.8rem;
}

#conception .member-btn-area .btn svg {
  color: #505a5f;
}

#conception .member-btn-area .btn .flex {
  justify-content: space-between;
  padding: 0 .5rem;
  border-bottom: 1px solid #505a5f;
}

@media (max-width: 768px) and (orientation: portrait) {
  #conception .conception-bg {
    background-position: center center;
    padding-bottom: 5rem;
  }
  #conception .conception-fv-area  {
    top: 5rem;
    padding-left: 1rem;
  }
  #conception .conception-fv-area h2 {
    margin: 0;
  }
  #conception .conception-fv-area h2 em {
    font-size: 1.4rem;
  }
  #conception .conception-fv h3 {
    padding-top: 11rem;
  }
  #conception .conception-fv h3 > span:nth-of-type(1) {
    font-size: 2.25rem;
  }
  #conception .conception-fv h3 > span:nth-of-type(2) {
    font-size: 2.6rem;
    margin-top: 3rem;
  }
  #conception .conception-fv h3 > span:nth-of-type(3) {
    font-size: 1.4rem;
    margin-top: 1.8rem;
  }
  #conception .conception-fv h3 > span:nth-of-type(4) {
    font-size: 1.2rem;
    margin-top: 1.4rem;
  }
  #conception .conception-text-area01 {
    margin-top: 7.25rem;
  }
  #conception .conception-text-area01 > div {
    margin-bottom: 2rem;
  }
  #conception .conception-text-area01 span {
    font-size: 1.2rem;
  }
  #conception .conception-text-area02 {
    margin-top: 20rem;
  }
  #conception .conception-text-area02 > div p {
    font-size: 1.15rem;
    padding: 1rem .8rem;
  }
  #conception .conception-text-area02 > div:nth-of-type(1) {
    margin-top: 5rem;
  }
  #conception .conception-text-area02 > div:nth-of-type(2) {
    margin-bottom: 5rem;
  }
  #conception .conception-text-area02 > div:nth-of-type(2) p {
    padding-right: 4.15rem;
  }
  #conception .conception-text-area03 > div:nth-of-type(1) {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
  #conception .conception-text-area03 > div p {
    font-size: 1.4rem;
  }
  #conception .conception-text-area03 p br {
    display: block!important;
  }
  #conception .conception-text-area03 .motion-parse {
    padding-bottom: 12rem;
  }
  #conception .member-btn-area {
    bottom: 5rem;
    padding-right: 2rem;
  }
  #conception .member-btn-area h3 span:nth-of-type(2) {
    font-size: 2.25rem;
  }
  #conception .member-btn-area .btn span {
    font-size: 2rem;
  }
}
