html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat","Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
  font-size: 14px;
  letter-spacing: .05em;
  color: #7A6C6D;
}
#stalker {
  pointer-events: none;
  position: fixed;
  top: -8px;
  left: -8px;
  width: 16px;
  height: 16px;
  background: #990215;
  border-radius: 50%;
  transform: translate(0,0);
  transition: transform 0.2s;
  transition-timing-function: ease-out;
  z-index: 999;
}

a {
  transition: opacity .3s;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  border-style: none;
}

.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

.fade-up{
  opacity: 0;
  transform: translateY(50px);
  transition: 0.5s;
}
.fade-up.show{
  opacity: 1;
  transform: translateY(0);
}

.page-top-button{
  opacity: 0;
  transition: 0.5s;
}
.page-top-button.show{
  opacity: 1;
}

/*--------------------------------
ページトップ
---------------------------------*/
.page-top-button{
  z-index: 1000;
  position: fixed;
  width: 64px;
  height: 64px;
  right: 32px;
  bottom: 32px;
}

.page-top-button a {
  display: block;
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 3px 10px rgb(0 0 0 / 16%);
}

.page-top-button a:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 64px;
  height: 64px;
  background-color: #990215;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0, 0);
  transition: transform ease 0.4s;
}

.page-top-button a:hover:after {
  transform: translate(-50%, -50%) scale(1.1, 1.1);
}

.page-top-button a:before {
  content: "";
  position: absolute;
  z-index: 10;
  top: 52%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-style: solid;
  border-color: #990215;
  border-width: 2px 0 0 2px;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: border-color ease 0.1s;
}

.page-top-button a:hover:before {
  border-color: #fff;
}

/*--------------------------------
 レイアウト
---------------------------------*/

.section {
  padding: 120px 0 100px 0;
}

.container {
  margin: 0 auto;
  padding: 0 130px;
}

/*--------------------------------
 見出し
---------------------------------*/
.title {
  font-size: 36px;
  font-weight: bold;
  line-height: 40px;
  text-align: left;
  letter-spacing: .1em;
  color: #990215;
}

.subtitle{
  font-size: 18px;
  font-weight: 300;
  line-height: 32px;
  text-align: left;
  letter-spacing: .1em;
  color: #990215;
  margin-bottom: 32px;
}
.profile-capa .subtitle{
  margin-bottom: 8px;
}

.ja{
  font-size: 14px;
  font-weight: 300;
  color: #7A6C6D;
}

/*--------------------------------
バックグラウンド
---------------------------------*/

.bg_img{
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: -1000;
  background: url(../img/background_blur.jpg) center center / cover;
}


/*--------------------------------
ヘッダー
---------------------------------*/
.header {
  position: fixed;
  top: 0;
  z-index: 100;
  width: 100%;
  background-color: #ffffff01;
  backdrop-filter: blur(4px);
}

.header .container {
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 36px 40px;
}


.header-logo a {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: .16em;
  color: #7A6C6D;
  transition: .3s;
  display: inline-block;
  padding: 5px 0;
}

.header-logo a:hover {
  color: #990215;
}

.gnav-list {
  display: flex;
  justify-content: space-between;
  list-style: none;
}

.gnav-item:not(:last-child) {
  margin-right: 20px;
}

.gnav-item a {
  position: relative;
  font-size: 18px;
  font-weight: bold;
  display: inline-block;
  padding: 5px 0;
  transition: .3s;
  letter-spacing: .16em;
  color: #7A6C6D;
}

.gnav-item a:hover {
  color: #990215;
}

/*--------------------------------
 メインビジュアル
---------------------------------*/
.mv {
  display: flex;
  height: 100vh;
  text-align: left;
}

.mv-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 130px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.mv-title {
  font-size: 64px;
  font-weight: bold;
  line-height: 90%;
  margin-bottom: 14px;
  color: #990215;
  overflow: hidden;
  display: flex;
}
.mv-title:first-child{
  padding-left: 4px;
}

.mv-title span {
  margin-right: 10px;
  display: block;
  transform: translate(0, 105%);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 1.0s;
}
.mv-title.-visible span {
  transform: translate(0, 0);
}
.mv-title span:nth-child(2) {
  transition-delay: 0.06s;
}
.mv-title span:nth-child(3) {
  transition-delay: 0.12s;
}
.mv-title span:nth-child(4) {
  transition-delay: 0.18s;
}
.mv-title span:nth-child(5) {
  margin-right: 9px;
  transition-delay: 0.24s;
}
.mv-title span:nth-child(6) {
  margin-right: 6px;
  transition-delay: 0.30s;
}
.mv-title span:nth-child(7) {
  margin-right: 5px;
  transition-delay: 0.36s;
}
.mv-title span:nth-child(8) {
  transition-delay: 0.42s;
}

.mv-subtitle {
  font-size: 20px;
  font-weight: 200;
  line-height: 150%;
  margin-bottom: 40px;
  letter-spacing: .2em;
  color: #7A6C6D;
  padding-left: 3px;
}

.mv-next {
  width: 100%;
  margin: 0 auto;
  padding: 0 157px;
  position: absolute;
  bottom: 0px;
  display: flex;
}

.mv-next .text{
  transform: rotate(270deg);
  display: inline;
  color: #990215;
  font-size: 12px;
}

.mv-next .border{
  margin-left: -36px;
  width: 1px;
  height: 88px;
  background-color: #990215;
}


/*--------------------------------
 Works
---------------------------------*/
.works-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 64px;
  margin-bottom: -40px;
}

.works-item {
  width: calc(50% - 10px);
  margin-bottom: 40px;
}

.works-item:hover {
  opacity: .8;
}

.works-name {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.4px;
  margin-top: 8px;
  color: #7A6C6D;
}

.works-info {
  font-size: 10px;
  margin-top: 4px;
  color: #990215;
}

/*--------------------------------
 About
---------------------------------*/
.profile {
  display: flex;
  flex-wrap: wrap;
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  color: #7A6C6D;
  margin-top: 24px;
}
.profile .name{
  position: absolute;
  top: 240px;
  z-index: -50;
}
.profile .name-en{
  font-size: 36px;
  line-height: 40px;
  letter-spacing: 0.16em;
  font-weight: 700;
  margin-bottom: 4px;
}

.profile-img {
  width: 100%;
  max-width: 480px;
  margin-left: auto;
  position: relative;
	overflow: hidden;
  background-color: none;
}
.profile-img img{
  box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.166);
}
.profile-img .name-en-white{
  position: absolute;
  top: 240px;
  left: -300px;
  font-size: 36px;
  line-height: 40px;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: #ffffff;
}
.profile-body {
  flex: 1;
  max-width: 780px;
  margin: 0 auto;
}
.profile-body .profile-body-inner{
  padding-bottom: 40px;
}
.profile-body .profile-introduce {
  font-size: 14px;
  letter-spacing: 1.4px;
  line-height: 32px;
  margin-top: 24px;
  margin-bottom: 40px;
}
.profile-body .profile-body-inner a{
  padding: 16px 40px;
  border: 1px #7a6c6ddf solid;
  border-radius: 9999px;
  color: #7a6c6ddf;
  text-decoration: none;
  transition: .3s;
  margin-left: -0.4px;
  filter: drop-shadow(#00000040 0px 0px 8px);
}
.profile-body .profile-body-inner a:hover{
  color: #7a6c6d50;
  border-color: #7a6c6d50;
  filter: drop-shadow(#00000000 0px 0px 0px);
}

.profile-body .profile-mission{
margin-top: 104px;
}
.profile-body .profile-mission .cont{
  display: flex;
  margin-bottom: 32px;
  justify-content: space-between;
}
.profile-body .profile-mission .cont > p{
  font-size: 36px;
  line-height: 170%;
  color: #990215;
  font-weight: 700;
  letter-spacing: .1em;
}
.profile-body .profile-mission .cont > p span.first{
  font-weight: 500;
  margin-left: -10px;
  margin-right: 3px;
  font-size: 35px;
}
.profile-body .profile-mission .cont > p span.second{
  font-weight: 500;
  margin-right: -12px;
  font-size: 35px;
}
.profile-body .profile-mission .cont .shapes{
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateX(-25%);
  column-gap: 20px;
}
.profile-body .profile-mission .cont .shapes .first{
  width: 64px;
  height: 64px;
  border-radius: 100px;
  background-color: #990215;
  filter: blur(16px);
  margin-right: 8px;
}
.profile-body .profile-mission .cont .shapes .second{
  position: relative;
  display: inline-block;
  width: 24px;
  height: 2px;
  margin: 29px 0;
  border-radius: 9999px;
  background-color: #d4caca;
}
.profile-body .profile-mission .cont .shapes .second::before,
.profile-body .profile-mission .cont .shapes .second::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  width: 8px;
  height: 2px;
  right: 0;
  border-radius: 9999px;
  background-color: #d4caca;
  transform-origin: calc(100% - 1px) 50%;
}
.profile-body .profile-mission .cont .shapes .second::before {
  transform: rotate(45deg);
}
.profile-body .profile-mission .cont .shapes .second::after {
  transform: rotate(-45deg);
}

.profile-body .profile-mission .cont .shapes .third{
  width: 64px;
  height: 64px;
  border-radius: 100px;
  background-color: #990215;
}
.profile-body .profile-mission .sub-cont{
  font-size: 14px;
  letter-spacing: 1.4px;
  line-height: 32px;
}
.profile-body .profile-capa{
  margin-top: 100px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 64px;
}
.profile-body .profile-capa .skill{
  width: calc(50% - 20px);
}
.profile-body .profile-capa .certification{
  width: calc(50% - 20px);
}
.profile-body .profile-capa .skill .img{
  max-width: 300px;
  width: 100%;
  margin-left: -8px;
}
.profile-body .profile-capa .certification .img{
  max-width: 300px;
  width: 100%;
}
.profile-body .profile-other{
  margin-bottom: 40px;
}
.profile-body .profile-other .other .img{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px 2px;
}



/*--------------------------------
 フッター
---------------------------------*/
footer {
  padding: 32px 0 24px;
  background-color: #990215;
}
footer .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
footer .icon .icon_area {
  width: 80px;
  height: 80px;
}
footer .icon .icon_area a {
  margin: 0 auto;
  fill: #fff;
  color: #fff;
  width: 100%;
  height: auto;
  transition: 0.3s;
  text-decoration: none;
}
footer .icon .icon_area a .icon_img {
  width: 40px;
  height: 40px;
  margin: 0 auto;
}
footer .icon .icon_area {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 171.429% */
  letter-spacing: 1.4px;
}
footer .icon .icon_area a:hover {
  opacity: 0.5;
}
footer > p {
  color: var(--For-text-Pale-Gray, #fff);
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 200% */
  letter-spacing: 1.2px;
  margin-top: 40px;
}



/*--------------------------------
 下層：Worksページ
---------------------------------*/


.article .summary{
  width: 100%;
  height: 560px;
  box-sizing: border-box;
  padding: 172px 0 28px 0;
  background: url(../img/background_blur.jpg) center center / cover;
}
.article .summary.others-page{
  height: 440px;
}
.article .summary .container{
  position: relative;
  height: 360px;
}

.article .summary .description{
  display: flex;
  column-gap: 80px;
  justify-content: end;
  position: absolute;
  bottom: 0;
  right: 130px;
}

.article-title{
  font-size: 80px;
  line-height: 120px;
  font-weight: 700;
  letter-spacing: .1em;
}
.article-title span{
  margin-right: 4px;
}
.article-subtitle{
  font-size: 24px;
  line-height: 150%;
  font-weight: 700;
}
.article-info{
  font-weight: 400;
  color: #990215;
  margin-top: 4px;
  font-size: 12px;

}

.article-cont .container{
  margin: 0 auto;
  padding: 0 130px;
}

.article-cont .title{
  color: #7A6C6D;
}

.description .item p{
  font-weight: 600;
  font-size: 12px;
}

.description .item p.pink{
  color: #D9ADAA;
}
.description .item p.orange{
  color: #FF743C;
}
.description .item p.red{
  color: #CE1112;
}
.description .item p.blue{
  color: #024CAF;
}
.description .item p.maincolor{
  color: #990215;
}

.description .item p.value{
  color: #7A6C6D;
  font-weight: 700;
  font-size: 12px;
}

.container_small{
  max-width: 940px;
  margin: 0 auto;
  padding: 0 80px;
}

.article_inner_img{
  width: 100%;
  height: auto;
}
.article_inner_img img{
  width: 100%;
  height: auto;
}

.concept{
  padding: 160px 0px 140px 0px;
}
.concept-cont{
  display: flex;
  justify-content: space-between;
}
.concept-cont .text{
  width: 100%;
  max-width: 480px;
}
.concept-cont .text .large{
  font-size: 44px;
  letter-spacing: 4px;
  font-weight: 700;
  margin-bottom: 32px;
}
.concept-cont .text .small{
  font-size: 14px;
  line-height: 32px;
}

.screen{
  width: 180px;
  min-width: 180px;
  height: 380px;
}
.background{
  color: #fff;
  text-align: center;
  line-height: 200%;
}
.background.pink{
  background-color: #D9ADAA;
}
.background.orange{
  background-color: #FF743C;
}
.background.red{
  background-color: #CE1112;
}
.background.blue{
  background-color: #024CAF;
}
.background.maincolor{
  background-color: #990215;
}


.background .container{
  padding: 32px;
  margin: 0 auto;
  max-width: 940px;
}

.service-design{
  padding: 140px 0 160px 0;
  background-color: #F7F7F7;
}
.design-process{
  padding: 140px 0 160px 0;
  background-color: #FFFFFF;
}
.article-cont.others{
  padding: 40px 0 160px 0;
  background-color: #FFFFFF;
}
.article-cont .text p{
  margin-top: -4px;
}
.article-cont .text .comment p{
  margin-top: 0px;
}
.reflection{
  padding: 140px 0 160px 0;
  background-color: #F7F7F7;
}
.next_button_area{
  margin-top: 160px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.next_button_area a{
  padding: 16px 40px;
  border: 1px #7a6c6d solid;
  border-radius: 9999px;
  color: #7a6c6d;
  text-decoration: none;
  transition: .3s;
  margin-left: -0.4px;
  filter: drop-shadow(#00000040 0px 0px 8px);
}
.next_button_area a:hover{
  color: #7a6c6d50;
  border-color: #7a6c6d50;
  filter: drop-shadow(#00000000 0px 0px 0px);
}

.article-cont .container{
  max-width: 1240px;
}

.article-cont-title-area{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 20px;
}

.border_area{
  position: relative;
  width: 50%;
}

.leftborder{
  position: absolute;
  top: 20px;
  width: 100%;
  height: 1px;
  background-color: #7a6c6d90;
}
.title-only{
  display: block;
  max-width: 1240px;
  z-index: 50;
  padding-left: 20px;
  width: 100%;
  transform: translateX(-20px);
}
.service-design .title-only{
  background-color: #F7F7F7;
}
.design-process .title-only{
  background-color: #FFFFFF;
}
.reflection .title-only{
  background-color: #F7F7F7;
}
.box{
  margin-top: 120px;
}
.box-title{
  display: flex;
  margin-bottom: 20px;
  align-items: center;
  column-gap: 8px;
  font-size: 18px;
}
.box-title.pink{
  color: #D9ADAA;
}
.box-title.orange{
  color: #FF743C;
}
.box-title.red{
  color: #CE1112;
}
.box-title.blue{
  color: #024CAF;
}
.box-title.maincolor{
  color: #990215;
}
.box-cont{
  display: flex;
  justify-content: space-between;
}
.box-cont.reverse{
  display: flex;
  flex-direction: row-reverse;
}
.box-cont.reverse .img{
  margin-right: 0px;
}
.box-cont.reverse .text{
  margin-right: 64px;
}
.box-cont.reverse.mb .text{
  margin-right: 0px;
}

.box-cont.tonemanner{
  margin-top: 48px;
}
.box-cont .img{
  width: calc(50% - 10px);
  max-width: 440px;
  min-width: 200px;
  margin-right: 64px;
  margin-bottom: 16px;
}

.box-cont .img.polygon{
  margin-bottom: 0px;
}
.box .physicom_lp{
  display: flex;
  column-gap: 20px;
  justify-content: space-between;
}
.box .physicom_lp .img{
  margin-right: 0px;
}
.box .physicom_lp .pc{
  width: 80%;
}
.box .physicom_lp .pc img{
  width: 100%;
  height: auto;
  max-width: none;
  min-width: none;
}
.box .physicom_lp .sp{
  width: 20%;
}
.box .physicom_lp .sp img{
  width: 100%;
  height: auto;
}
.box .physicom_lp .img{
  margin-right: 0px;
}
.box .physicom_lp .img{
  margin-right: 0px;
}

.box-cont .img img{
  width: 100%;
  height: auto;
}
.box-cont .width_small{
  width: 320px;
  height: auto;
}
.box-cont.mb .img{
  width: calc(36% - 10px);
  max-width: 360px;
  min-width: 320px;
  margin-right: 0px;
}
.box-cont .text{
  width: calc(50%-10px);
  max-width: 476px;
  min-width: 300px;
}
.box-cont.mb .text{
  width: calc(64% - 10px);
  max-width: 1000px;
  min-width: 300px;
}
.box-cont .width100{
  width: 100%;
  max-width: 100%;
}
.box-cont .text span{
  font-size: 24px;
  font-weight: 500;
}
.box-cont .text h4{
  font-size: 28px;
  margin-bottom: 12px;
}
.box-cont .text p{
  margin-bottom: 12px;
}
.box-cont .text a{
  text-decoration: none;
}
.box-cont .text .comment{
  width: 100%;
  background-color: #f3f3f3;
  margin-top: 20px;
  padding: 15px 16px 17px 16px;
  border-radius: 4px;
  position: relative;
}
.box-cont .text .comment.bg_white{
  background-color: #ffffff;
}
.box-cont .text .comment .img{
  margin-bottom: 0px;
}
.box-cont .text .comment img{
  width: 18px;
  height: 18px;
  position: absolute;
  left: -18px;
  top: 50%;
  transform: translateY(-50%);
}
.box-cont .text .comment p{
  font-size: 16px;
  font-weight: 300;
  text-align: center;
  margin-bottom: 0;
}
.img100{
  display: block;
}
.img100 .img{
  width: 100%;
  max-width: 100%;
  margin-right: 0px;
}
.lp_img img{
  box-shadow: 0 3px 10px rgb(0 0 0 / 16%);
}
.text_button_area{
  margin-top: 20px;
  min-width: 240px;
}
.text_button_area a{
  padding: 8px 20px;
  background-color: #ffffff;
  border-radius: 9999px;
  color: #7a6c6ddf;
  text-decoration: none;
  transition: .3s;
  margin-left: -0.4px;
  font-size: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.088);
}
.text_button_area a:hover{
  box-shadow: 0 0px 0px rgba(0, 0, 0, 0);
  background-color: #f3f3f3;
}



/*media Queries 1510
----------------------------------------------------*/
@media screen and (max-width: 1509px){
  .container {
    padding: 0 80px;
  }
  .mv-container {
    padding: 0 80px;
  }
  .mv-next {
    padding: 0 107px;
  }
  .summary .container {
    padding: 0 80px;
  }
  .article-title{
    font-size: 64px;
    line-height: 96px;
  }
}


/*media Queries 940
----------------------------------------------------*/
@media screen and (max-width: 939px){
  .profile {
    flex-direction: column-reverse;
    flex-wrap: nowrap;
    margin-top: 20px;

  }
  .profile .name{
    position: static;
  }
  .profile .name-en{
    font-size: 36px;
    line-height: 44px;
    letter-spacing: 0.1em;
    font-weight: 700;
    margin-top: 20px;
  }
  .profile-img {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
  .profile-img .name-en-white{
    position: static;
    display: none;
  }
  .summary .container {
    padding: 0 24px;
  }
  .article .summary .description{
    display: block;
    bottom: 0;
    left: 24px;
  }
  .article .summary .description .item{
    margin-top: 12px;
  }
  .article-cont .container{
    padding-right: 80px;
    padding-left: 80px;
  }
  .box-cont .img{
    margin-right: 40px;
  }
}



/*media Queries 767
----------------------------------------------------*/
@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }

  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
  }
  .ja{
    font-size: 12px;
  }
  .page-top-button{
    right: 24px;
    bottom: 24px;
  }

  /* 見出し */
  .title {
    font-size: 28px;
    line-height: 36px;
  }



  /* レイアウト */

  .section {
    padding: 80px 0 60px 0;
  }

  .container {
    padding: 0 20px;
  }

  /* ヘッダー */
  .header {
    background-color: #ffffff01;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }

  .header .container {
    padding: 24px 24px;
  }

  .header-logo a {
    font-size: 13px;
  }

  .gnav-item:not(:last-child) {
    margin-right: 10px;
  }

  .gnav-item a {
    font-size: 13px;
  }

  .gnav-item a:after {
    display: none;
  }

  /*  メインビジュアル */
  .mv {
    height: 100vh;
  }

  .mv-container {
    top: 50%;
    transform: translateY(-50%);
    padding: 0 24px;
  }

  .mv-title {
    font-size: 40px;
    line-height: 80%;
  }
  .mv-title:first-child{
    padding-left: 3px;
  }
  .mv-title span {
    margin-right: 5px;
  }
  .mv-title span:nth-child(5) {
    margin-right: 4.5px;
  }
  .mv-title span:nth-child(6) {
    margin-right: 3px;
  }
  .mv-title span:nth-child(7) {
    margin-right: 2.5px;
  }
  .mv-subtitle {
    font-size: 16px;
    margin-bottom: 24px;
    padding-left: 2px;
    margin-top: -3px;
  }
  .mv-next {
    padding: 0 48px;
  }

  .mv-text {
    font-size: 14px;
    line-height: 1.7;
  }

  /* Works */
  .works-name {
    font-size: 13px;
  }

  .works-info {
    margin-top: 3px;
  }
  .works-list {
    flex-direction: column;
    margin-top: 40px;
  }

  .works-item {
    width: 100%;
    margin-bottom: 24px;
  }

  /* About */
  .profile {
    flex-direction: column-reverse;
    flex-wrap: nowrap;
    margin-top: 20px;

  }
  .profile .name{
    position: static;
  }
  .profile .name-en{
    font-size: 24px;
    line-height: 28px;
    letter-spacing: 0.16em;
    font-weight: 700;
    margin-top: 24px;
  }
  .profile-img {
    width: 100vw;
    max-width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
  .profile-img .name-en-white{
    position: static;
    display: none;
  }
  .profile-body .profile-introduce {
    line-height: 28px;
    margin-top: 32px;
  }
  .button_position{
    display: flex;
    justify-content: center;
  }
  .profile-body .profile-mission{
    margin-top: 64px;
  }
  .profile-body .profile-mission .cont{
    display: block;
  }
  .profile-body .profile-mission .cont > p{
    font-size: 28px;
  }
  .profile-body .profile-mission .cont > p span.first{
    font-size: 27px;
  }
  .profile-body .profile-mission .cont > p span.second{
    font-size: 27px;
  }
  .profile-body .profile-mission .cont .shapes{
    align-items:center;
    margin: 80px auto;
    transform: translateX(0%);
    width: 100%;
  }
  .profile-body .profile-mission .sub-cont{
    line-height: 28px;
  }
  .profile-body .profile-capa{
    margin-top: 80px;
    display: block;
    margin-bottom: 0px;
  }
  .profile-body .profile-capa .skill{
    width: 100%;
    margin-bottom: 40px;
  }
  .profile-body .profile-capa .skill .img {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0px 20px;
    margin: 0 auto;
  }
  .profile-body .profile-capa .skill .img img{
    width: 100%;
    height: auto;
  }
  .profile-body .profile-capa .skill .subtitle{
    text-align: left;
  }
  .profile-body .profile-capa .certification{
    width: 100%;
    margin-bottom: 40px;
  }
  .profile-body .profile-capa .certification .img{
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0px 20px;
    margin: 0 auto;
  }
  .profile-body .profile-capa .certification .img img{
    width: 100%;
    height: auto;
  }
  .profile-body .profile-capa .certification .subtitle{
    text-align: left;
  }

  /* 下層ページ */
  .summary .container {
    padding: 0 20px;
  }
  .article .summary{
    padding: 154px 0 0px 0;
  }
  .article .summary.others-page{
    height: 320px;
  }
  .article .summary .container{
    height: 378px;
  }
  .article .summary .description{
    width: 100%;
    max-width: 100%;
    padding: 0 24px;
    left: 0;
    justify-content: left;
  }
  .article .summary .description .item{
    margin-top: 20px;
    width: 100%;
    max-width: 100%;
  }

  .article-cont .container{
    padding: 0 20px;
  }
  .article-title{
    font-size: 40px;
    line-height: 56px;
  }
  .article-subtitle{
    margin-top: 8px;
    font-size: 14px;
    line-height: 150%;
  }
  .container_small{
    margin: 0 auto;
    padding: 0 24px;
  }
  .concept{
    padding: 80px 0px 64px 0px;
  }
  .concept-cont{
    flex-direction: column-reverse;
    align-items: center;
  }
  .concept-cont .text{
    width: 100%;
    max-width: 480px;
  }
  .concept-cont .text .large{
    font-size: 32px;
    letter-spacing: 3.2px;
    margin-bottom: 24px;
  }
  .concept-cont .text .small{
    font-size: 14px;
    line-height: 32px;
  }
  .screen{
    margin-bottom: 48px;
  }
  .background{
    text-align: left;
  }
  .background .container{
    padding: 20px;
  }
  .service-design{
    padding: 70px 0 80px 0;
  }
  .design-process{
    padding: 70px 0 80px 0;
  }
  .reflection{
    padding: 70px 0 80px 0;
  }
  .next_button_area{
    margin-top: 120px;
  }
  .border_area{
    position: relative;
    width: 12px;
    min-width: 12px;
  }
  .title-only{
    width: 100%;
    padding-left: 8px;
    transform: translateX(-8px);
  }
  .box{
    margin-top: 64px;
  }
  .box.others{
    margin-top: 0px;
  }
  .box-title{
    column-gap: 6px;
    font-size: 16px;
    margin-bottom: 14px;
  }
  .box-cont{
    display: block;
    margin-bottom: 16px;
  }
  .box-cont.reverse{
    display: block;
  }
  .box-cont.reverse .img{
    margin-right: 0px;
  }
  .box-cont.reverse .text{
    margin-right: 0px;
  }
  .box-cont .img{
    width: 100%;
    min-width: 100%;
    margin-right: 0px;
    margin-bottom: 12px;
  }
  .box-cont.mb .img{
    width: 100%;
    min-width: 100%;
    margin-right: 0px;
    margin-bottom: 12px;
  }
  .box .physicom_lp{
    display: block;
    column-gap: 0px;
    row-gap: 20px;
  }
  .box .physicom_lp .pc{
    width: 100%;
  }
  .box .physicom_lp .sp{
    width: 100%;
    max-width: 390px;
    margin: 20px auto 0px auto;
  }
  .box-cont .img img{
    width: 100%;
    height: auto;
  }
  .box-cont .width_small{
    display: flex;
    justify-content: center;
  }
  .box-cont .width_small img{
    width: 200px;
    height: auto;
  }
  .box-cont .text{
    width: 100%;
    min-width: 100%;
  }
  .box-cont.mb .text{
    width: 100%;
    min-width: 100%;
  }
  .box-cont .text h4{
    font-size: 20px;
    margin-bottom: 8px;
  }
  .box-cont .text h4.persona_name{
    text-align: left;
  }
  .box-cont .text .comment{
    margin-top: 24px;
    padding: 15px 16px 17px 16px;
  }
  .box-cont .text .comment p{
    margin-top: 0px;
  }
  .box-cont .text .comment img{
    display: none;
  }

}
