@charset "UTF-8";

html {
  margin: 0;
  padding: 0;
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.6rem;
  line-height: 2.1;
  color: #333;
  margin: 0;
  padding: 0;
  text-align: center;
}

a {
  text-decoration: none;
}

h1,
h2,
h3
{
  font-weight: 600;
  margin: 0;
  padding: 0;
}

ul {
  margin: 0;
  padding: 0;
}

ul li {
  list-style: none;
}

.inner {
  width: 90%;
  margin: 0 auto;
  max-width: 1200px;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

section {
  position: relative;
  background: #fff;
}

/* ---------------------ヘッダー */
header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 10;
  background: #fff;
  box-shadow: 0 6px 3px -3px rgba(0, 0, 0, 0.1);
}

header .inner {
  width: 90%;
  max-width: initial;
  height: 100px;
  display: flex;
  justify-content: right;
}

header .menu-btn {
  display: none;
  font-family: "Lora", serif;
  font-optical-sizing: auto;
  font-weight: 400;
}

header .header-nav{
  padding: 30px 0 30px 30px;
  font-family: "Lora", serif;
  font-optical-sizing: auto;
  font-weight: 400;
}

header ul {
  display: flex;
}

header ul li {
  padding: 0 2px;
  height: 100%;
  width: 130px;
  overflow: hidden;
}

header ul li a {
  width: 100%;
  text-decoration: none;
  display: block;
  height: 100%;
  transition: .3s;
  font-weight: bold;
  position: relative;
  padding: 0 10px;
  z-index: 1;
  box-sizing: border-box;
  color: #333;
  letter-spacing: 0.3em;
}

header ul li a::after{
  position: absolute;
  content: '';
  right: 0;
  width: 300%;
  height: 100%;
  background: linear-gradient(to left, #fff 34%,#8e9a9f 34%,#8e9a9f 66%,#111619 66%);
  z-index: -1;
  transition: 0.6s;
}

header ul li a:hover {
  color: #fff;
}

header ul li a:hover::after{
  right: -200%;
}

 /* ---------------------フッター */
footer {
  margin: auto;
  position: relative;
  background: #111619;
}

footer p {
  font-size: 1.5rem;
  line-height: 2.3;
  color: #bec1c3;
  width: 50%;
  margin: auto;
  padding: 70px 0;
  text-align: center;
  letter-spacing: 0.05em;
}

#page_top{
  display: none;
  position: fixed;
  right: 10px;
  bottom: 50px;
  opacity: 0.7;
}

#page_top a{
  display: block;
  font-size: 0;
  width: 40px;
  height: 40px;
  text-align: center;
  background: #797e81;
  border-radius: 50%;
  line-height: 50px;
}

#page_top a i{
  font-size: 20px;
  color:#fff;
  line-height: 40px;
}

/* ページ変遷アニメーション */
.page-transition .animation-bg .animation-bg-element {
  position: fixed;
  top: 0;
  left: 0;
  height: calc(100% / 2);
  width: calc(100% / 2);
  z-index: 999;
  animation-name: PageAnime-four-color-ttb;
  animation-duration: 0.6s;
  animation-delay: 1s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

.page-transition .animation-bg .animation-bg-element:nth-child(2) {
  left: inherit;
  right: 0;
  animation-name: PageAnime-four-color-rtl;
}

.page-transition .animation-bg .animation-bg-element:nth-child(3) {
  top: inherit;
  bottom: 0;
  animation-name: PageAnime-four-color-ltr;
}

.page-transition .animation-bg .animation-bg-element:nth-child(4) {
  top: inherit;
  left: inherit;
  right: 0;
  bottom: 0;
  animation-name: PageAnime-four-color-btt
}

.page-transition .animation-bg .animation-bg-element::before {
  background: #e8e8e8;
  box-shadow: 0 0 0 1px #e8e8e8;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
 
@keyframes PageAnime-four-color-ttb {
  0% {
    transform-origin: bottom;
    transform: scaleY(1);
  }
  100% {
    transform-origin: bottom;
    transform: scaleY(0);
  }
}

@keyframes PageAnime-four-color-ltr {
  0% {
    transform-origin: right;
    transform: scaleX(1);
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}

@keyframes PageAnime-four-color-btt {
  0% {
    transform-origin: top;
    transform: scaleY(1);
  }
  100% {
    transform-origin: top;
    transform: scaleY(0);
  }
}

@keyframes PageAnime-four-color-rtl {
  0% {
    transform-origin: left;
    transform: scaleX(1);
  }
  100% {
    transform-origin: left;
    transform: scaleX(0);
  }
}

/* ---------------------ホーム */
.kv {
  width: 100%;
  position: relative;
  height: 100vh;
  max-height: 2000px;
  background: url(images/kv_me.jpg) no-repeat center bottom / cover;
}

.scrolldown {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 11%;
  width: 100%;
}

.container {
  position: relative;
  width: 34px;
  height: 34px;
}

.chevron {
  position: absolute;
  width: 35px;
  height: 1.5px;
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
  animation: move 3s ease-out infinite;
}

.chevron:first-child {
  animation: move 3s ease-out 1s infinite;
}

.chevron:nth-child(2) {
  animation: move 3s ease-out 2s infinite;
}

.chevron:before,
.chevron:after {
  content: ' ';
  position: absolute;
  top: 0;
  height: 100%;
  width: 51%;
  background: #fff;
}

.chevron:before {
  left: 0;
  transform: skew(0deg, 30deg);
}

.chevron:after {
  right: 0;
  width: 50%;
  transform: skew(0deg, -30deg);
}

@keyframes move {
  25% {
    opacity: 1;

  }
  33% {
    opacity: 1;
    transform: translateY(30px);
  }
  67% {
    opacity: 1;
    transform: translateY(40px);
  }
  100% {
    opacity: 0;
    transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
  }
}

.container .text {
  font-weight: 500;
  font-style: normal;
  display: block;
  margin-top: 56px;
  margin-left: -14px;
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: .25;
  animation: pulse 2s linear alternate infinite;
}

@keyframes pulse {
  to {
    opacity: 1;
  }
}

#greeting {
  padding: 150px 0 140px;
}

#greeting h1 {
  font-size: 4.5rem;
  padding: 20px 0 0;
  letter-spacing: 0.02em;
  font-family: "Lora", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  text-shadow: 0 5px 4px #bdc3c7;
}

#greeting .blurlead {
  padding: 0 0 70px;
  font-size: 1.8rem;
  letter-spacing: 0.02em;
}

/* スクロールアニメぼんやり出現 */
.blur {
  animation-name: blurAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
}

@keyframes blurAnime {
  from {
  filter: blur(10px);
  transform: scale(1.02);
  opacity: 0;
  }

  to {
  filter: blur(0);
  transform: scale(1);
  opacity: 1;
  }
}
 
#greeting .blurlead {
  opacity: 0;
}

#greeting .blurlead {
  animation-delay: 0.3s;
}

#profile {
  display: flex;
  background: #111619;
  height: 560px;
}

#profile .prof-image {
  width: 40%;
  height: 560px;
  background: url(images/f_flower2.jpg) no-repeat center / cover;
}

#profile .inner {
  width: 60%;
  padding: 0 60px;
  box-sizing: border-box;
  text-align: left;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #bec1c3;
}

#profile h2 {
  font-family: "Lora", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.1em;
  margin: 0 0 40px;
  font-size: 3rem;
}

#profile dl {  
  letter-spacing: 0.03em;
  line-height: 2.5;
}

#profile dt {
  float: left;
  width: 60px;
}

#profile dt::after {
  content: "：";
}

#profile dd {
  margin-left: 60px;
}

#profile .btn {
  text-align: right;
 }

#profile .btn a {
  color: #bec1c3;
  font-size: 1.8rem;
  letter-spacing: 0.03em;
  display: inline-block;
  text-decoration:none;
  position: relative;
  transition: .3s;
}

#profile .btn a::before,
#profile .btn a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  background: #bec1c3;
  transition: .3s;
}

#profile .btn a::before {
  top: 0;
	left: 0;
}

#profile .btn a::after {
  bottom: 0;
	right: 0;
}

#profile .btn a:hover::before,
#profile .btn a:hover::after{
  width: 100%;
}

#work {
  padding: 70px 0 20px;
}

#work h2 {
  padding: 70px 0 30px;
  font-size: 3rem;
  letter-spacing: 0.1em;
  font-family: "Lora", serif;
  font-optical-sizing: auto;
  font-weight: 700;
}

#work .work-subtitle { 
  margin: 0;
  padding-bottom: 40px;
  letter-spacing: 0.05em;
  font-weight: 700;
}

#work .work-subtitle::after {
  display: block;
  width: 30px;
  height: 3px;
  margin: 0 auto 10px;
  background: #bdc3c7;
  content: "";
} 

#work .item-blk {
  padding-bottom: 100px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
 }

#work .item {
  padding: 0 30px 40px;
  max-width: 420px;
}

#work .photo,
#work .b-photo {
  transition: all 0.2s;
} 

#work .photo:hover,
#work .b-photo:hover {
  transform: scale(1.1);  
}

#work .photo img {
  max-width: 750px;
  margin: 0 auto;
  display: block;
}

#work .b-photo img {
  /* max-width: 650px; */
  margin: 0 auto;
  display: block;
}

#work .item h3 {
  font-size: 1.4rem;
  margin: 20px 0 0;
  letter-spacing: 0.01em;
}

#work .item .text {
  font-size: 1.3rem;
  letter-spacing: 0.03em;
  color: #666;
}

/* ---------------------profileページ */
body#about {
  margin: 0;
  padding: 0;
}

#about .page-title {  
  width: 100%;
  height: 320px;
  position: relative;
  top: 100px;
  background: url(images/pt_shadow.jpg) no-repeat center / cover;
}

#about .page-title::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  content: "";
}

#about .page-title h1 {
  position: relative;
  z-index: 1;
  letter-spacing: 0.2em;
  font-size: 6.5rem;
  color: #fff;
  margin: 0 auto;
  top: 35px;
  font-family: "Lora", serif;
  font-optical-sizing: auto;
  font-weight: 700;
}

#prof-content .inner {
  margin: 0 auto;
}

#prof-content .prof-text {
  text-align: left;
  padding: 100px 50px;
}

#prof-content .my-image img {
  width: 200px;
}

#prof-content .prof-text h2 {
  letter-spacing: 0.03em;
  padding: 40px 0;
  font-size: 3.3rem;
  color: transparent;
  -webkit-text-stroke: 1px #333;
}

#prof-content .prof-text dl {  
  letter-spacing: 0.03em;
}

#prof-content .prof-text dt {
  float: left;
  width: 110px;
}

#prof-content .prof-text dt::after {
  content: "：";
}

#prof-content .prof-text dd {
  margin-left: 110px;
  padding-bottom: 45px;
}

#prof-content .tool {
  display: flex;
  justify-content: space-between;
  margin: 20px 0 0;
}

#prof-content .tool .box {
  letter-spacing: 0.03em;
  padding: 10px;
  margin: 20px;
  border: 2px solid #f0f0f0;
  box-sizing: border-box;
  width: 300px;
  height: 330px;
  transition: all 0.2s;
} 

#prof-content .box:hover {
  color: #fff; 
  background-color: #666; 
}

#prof-content .box h3 {
  font-size: 1.6rem;
  text-align: center;
  margin: 10px 0 0;
}

#prof-content .box-text {
  font-size: 1.3rem;
  margin: 10px;
  text-align: left;
}

/* ---------------------worksページ */
body #works {
  margin: 0;
  padding: 0;
}

#works .page-title {  
  width: 100%;
  height: 320px;
  position: relative;
  top: 100px;
  background: url(images/pt_shadow.jpg) no-repeat center / cover;
}

#works .page-title::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  content: "";
}

#works .page-title h1 {
  position: relative;
  z-index: 1;
  letter-spacing: 0.2em;
  font-size: 6.5rem;
  color: #fff;
  margin: 0 auto;
  top: 35px;
  font-family: "Lora", serif;
  font-optical-sizing: auto;
  font-weight: 700;
}

#website .item-blk,
#lp .item-blk {
  padding: 70px 0 0;
}

#works section h2 {
  padding: 0 0 50px;
  letter-spacing: 0.03em;
  font-size: 2.5rem;
}

#works #link1,
#works #link4
 {
  padding-top: 200px;
  margin-top: -200px;
}

#works #link2,
#works #link3,
#works #link5,
#works #link6,
#works #link7,
#works #link8 {
  padding-top: 180px;
  margin-top: -180px;
}

#works section .item {
  padding: 0 0 70px;
}

#works section .mockup,
#works section .banner {
  transition: all 0.2s;
}

#works section .mockup:hover,
#works section .banner:hover {
  transform: scale(1.1);  
}

#works section .mockup img {
  margin: 0 auto;
  display: block;
  width: 550px;
}

#works section .banner img {
  margin: 0 auto;
  display: block;
  width: 400px;
}

#works .item-text {
  margin: 0 auto;
  padding: 0 20px;
}

#works .item-text h3 {
  font-size: 2rem;
  letter-spacing: 0.01em;
  padding: 30px 0 10px;
}

#works .url {
  font-size: 1.4rem;
  text-decoration: underline;
  margin: 0;
}

#works .item-text a {
  color: #333;
}

#works .work-tool {
  font-size: 1.4rem;
  margin: 0;
  padding: 10px 20px 10px;
  letter-spacing: 0.03em;
  color: #666;
}

#works section .text-content {
  text-align: left;
}

#works section .text-content p {
  margin: 0;
  padding-bottom: 20px; 
}

#works section dl {
  margin: 0;
}

#works .text-content dt {
  float: left;
  width: 150px;
  padding: 20px 0;
}

#works .text-content dt span {
  display: inline-block;
  background-image: linear-gradient(transparent 70%, #baecf7 0%);
  line-height: 1.5;
}

#works .text-content dd {
  margin-left: 150px;
  padding: 20px 0;
}

#works .btn {
  margin: 0 0 90px;
}

#works .btn a {
  background: #eee;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  max-width: 240px;
  padding: 10px 25px;
  color: #333;
  transition: 0.3s ease-in-out;
  font-weight: 500;
}

#works .btn a:before {
  content: '';
  position: absolute;
  top: calc(50% - 2px);
  right: -2em;
  transform: translateY(calc(-50% - 2px)) rotate(30deg);
  width: 12px;
  height: 2px;
  background-color: #666;
  transition: 0.3s;
}

#works .btn a:after {
  content: '';
  position: absolute;
  top: 50%;
  right: -2em;
  transform: translateY(-50%);
  width: 60px;
  height: 2px;
  background-color: #666;
  transition: 0.3s;
}

#works .btn a:hover:before,
#works .btn a:hover:after {
  right: -2.5em;
}

#works .btn a:hover {
  background: #ebf4f6;
  color: #00bae4;
}

#lp #jump,
#lp #jump2 {
  padding-top: 100px;
  margin-top: -100px;
}

#lp .lp-photo img {
  width: 640px;
  margin: 40px 0 60px;
}

/*-----------------------------------
スマホ
-----------------------------------*/
@media screen and (max-width: 600px) {

  .inner {
    font-size: 1.5rem;
  }
 
  /* ---------------------ヘッダー */
 
  header .inner {
    height: 80px;
  }
 
  header .menu-btn {
    display: block;
    position: absolute;
    right: 3%;
    top: 18px;
    padding: 0;
    width: 44px;
    height: 44px;
    line-height: 3px;
    text-align: center;
    border: 1px solid #666;
    color: #666;
    background: transparent;
    border-radius: 50%;
   }
 
  .menu-btn:focus {
    outline: none;
  }
 
  header .header-nav {
    width: 200px;
    position: fixed;
    display: block;
    top: 80px;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.2s;
    transform: translate(250px);
    padding: 10px 0;
  }
 
  header .header-nav.open {
    transform: translate(0);
  }
 
  header ul {
    display: block;
  }
 
  header ul li{
    width: auto;
  }

  header ul li a {
    padding: 0 10px;
    height: 30px;
    line-height: 30px;
    box-sizing: border-box;
    margin: 0;
  }

  header ul li a::after{
    background: none;
  }
 
  /*-----------------------フッター*/ 
  footer p {
    width: 94%;
    margin: 0 auto;
    padding: 40px 0;
    font-size: 1.2rem;
  }
 
  /*-------------------------ホーム*/
  #greeting {
    padding: 70px 0;
  }

  #greeting h1 {
    padding: 0;
    font-size: 3.5rem;
    line-height: 1.5;
  }

  #greeting .blurlead {
    padding: 0;
    font-size: 1.5rem;
  }
 
  #profile {
    display: block;
    height: auto;
  }
 
  #profile .prof-image {
    width: 100%;
    height: 240px;
  }
 
  #profile .inner {
    width: 90%;
    padding: 35px 0
  }

  #profile h2 {
    margin: 0 0 25px;
    font-size: 2.5rem;
  }

  #profile dl {
    line-height: 2.1;
    margin: 0;
  }

  #profile .btn {
    margin: 5px 0;
  }
   
  #work {
    padding: 50px 0 0;
  }
 
  #work h2 {
    padding: 0;
    font-size: 2.5rem;
  }

  #work .work-subtitle {
    padding: 0 0 25px;
  }
 
  #work .item-blk {
    flex-wrap: wrap;
    padding-bottom: 0;
    justify-content: center;
  }
 
  #work .item {
    padding: 0 0 40px;
  }

  #work .photo img {
    max-width: 375px;
  }

  #work .b-photo img {
    max-width: 280px;
  }

  #work .item h3 { 
    margin: 10px 0 5px;
    font-size: 1.5rem;
  }

  #work .item .text {
    margin: 0;
    line-height: 1.9;
  }

  /*-----------------profileページ*/
  #about .page-title {
    top: 80px;
    height: 240px;
  }
 
  #about .page-title h1 {
    top: 21px;
    font-size: 5rem;
  }

  #prof-content .inner {
    width: 90%;
  }
 
  #prof-content .prof-text {
    padding: 50px 0;
  }

  #prof-content .prof-text h2 {
    text-align: center;
    font-size: 3rem;
    padding: 40px 0 30px;
  }

  #prof-content .my-image img {
    width: 190px;
    margin: 0 auto;
    display: block;
  }

  #prof-content .prof-text dl {
    overflow-wrap: break-word;
    font-size: 1.4rem;
    margin: 0;
  }

  #prof-content .prof-text dt {
    width: 90px;
  }

  #prof-content .prof-text dd {
    margin-left: 90px;
    padding-bottom: 20px;
  }

  #prof-content .tool {
    flex-wrap: wrap;
    justify-content: center;
    margin: 0;
  }

  #prof-content .tool .box {
    margin: 15px 10px;
  }

  #prof-content .box h3 {
    font-size: 1.5rem;
  }

  /*-----------------worksページ*/
  #works .page-title {
    top: 80px;
    height: 240px;
  }
 
  #works .page-title h1 {
    top: 21px;
    font-size: 5rem;
  }

  #website .item-blk,
  #lp .item-blk {
    padding: 40px 0 0;
  }

  #works section h2 {
    padding: 0 0 30px;
    font-size: 2.3rem;
  }

  #works #link1,
  #works #link4 {
    padding-top: 155px;
    margin-top: -155px;
  }

  #works #link2,
  #works #link3,
  #works #link5,
  #works #link6,
  #works #link7,
  #works #link8 {
    padding-top: 150px;
    margin-top: -150px;
  }

  #works section .item {
    padding: 0 0 40px;
  }

  #works section .mockup img {
    width: 100%;
    max-width: 375px;
  }

  #works section .banner img {
    width: 100%;
    max-width: 280px;
  }

  #works .item-text {
    padding: 0;
  }

  #works .item-text h3 {
    padding: 0;
    font-size: 1.8rem;
    margin: 25px 0 15px;
    line-height: 1.5;
  }

  #lp #jump, #lp #jump2 {
    padding-top: 90px;
    margin-top: -90px;
  }

  #works .url {
    font-size: 1.2rem;
  }

  #works .work-tool {
    font-size: 1.3rem;
    padding: 15px 20px 10px;
  }

  #works .text-content dl {
    padding: 0;
    text-align: left;
  }

  #works .text-content dt {
    float: none;
    width: auto;
    padding: 15px 0 0;
  }

  #works .text-content dd {
    margin-left: 0;
    padding: 5px 0 10px;
  }

  #works .btn {
    margin: 0 0 60px;
  }

  #works .btn a {
    max-width: 160px;
  }

  #works .btn a:before {
    right: -1.5em;
  }

  #works .btn a:after {
    right: -1.5em;
    width: 50px;
  }

  #lp .lp-photo {
    margin: 0;
  }

  #lp .lp-photo img {
    width: 100%;
    max-width: 375px;
    margin: 30px 0 50px;
  } 
}

 /*-----------------------------------
タブレット
-----------------------------------*/
@media screen and (min-width: 601px) and (max-width: 1080px) {

  body {
    font-size: 1.5rem;
  }

  .inner {
    width: 90%;
    margin: 0 auto;
  }
 
  /* ---------------------ヘッダー */
  header .inner {
    height: 80px;
  }
 
  header .menu-btn {
    display: block;
    position: absolute;
    right: 3%;
    top: 18px;
    padding: 0;
    width: 44px;
    height: 44px;
    line-height: 3px;
    text-align: center;
    border: 1px solid #666;
    background: transparent;
    border-radius: 50%;
  }
 
  .menu-btn:focus {
    outline: none;
  }
 
  header .header-nav {
    width: 180px;
    position: fixed;
    display: block;
    top: 80px;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.2s;
    transform: translate(250px);
    padding: 30px;
  }
 
  header .header-nav.open {
    transform: translate(0);
  }
 
  header ul {
    display: block;
  }

  header ul li{
    width: auto;
  }
 
  header ul li a {
    padding: 0 10px;
    height: 30px;
    line-height: 30px;
    box-sizing: border-box;
    margin: 0;
  }

  header ul li a::after{
    background: none;
  }

  /*-----------------------フッター*/
   footer p {
     width: 94%;
     margin: 0 auto;
     padding: 50px 0;
     font-size: 1.2rem;
   }
 
  /*-------------------------ホーム*/
  #greeting {
    padding: 140px 0;
  }

  #greeting h1 {
    font-size: 3.5rem;
    padding: 0;
  }
 
  #greeting .blurlead {
    padding: 0;
    margin: 0 0 30px;
    font-size: 1.5rem;
  }

  #profile {
    height: 400px;
  }
 
  #profile .prof-image {
    height: 400px;
  }
 
  #profile .inner {
    padding: 0 30px;
  }

  #profile h2 {
    margin: 5px 0 15px;
    font-size: 2.5rem;  
  }
 
  #profile dl {
    line-height: 2.1;
    margin: 0;
  }

  #profile .btn {
    margin: 0;
  }

  #profile .btn a {
    font-size: 1.6rem;
  }
 
  #work {
    padding: 50px 0 20px;
  }
 
  #work h2 {
    padding: 0;
    font-size: 2.5rem;
  }
 
  #work .work-subtitle {
    padding: 10px 0 20px;
  }

  #work .item-blk {
    flex-wrap: wrap;
    padding-bottom: 0;
    margin: 0 auto;
    max-width: 650px;
    justify-content: center;
  }
 
  #work .item {
    padding: 0 0 50px;
  }
 
  #work .photo img {
    max-width: 350px;
  }

  #work .b-photo img {
    max-width: 330px;
  }
  
  #work .item h3 { 
    margin: 10px 0 0;
    font-size: 1.5rem;
  }

  #work .item .text {
    margin: 0;
  }

  /*-----------------profileページ*/
  #about .page-title {
    top: 80px;
    height: 260px;
  }
 
  #about .page-title h1 {
    top: 16px;
  }
  
  #prof-content .inner {
    width: 94%;
  } 

  #prof-content .prof-text {
    padding: 60px 10px;
    max-width: 800px;
    margin: 0 auto;
  }

  #prof-content .prof-text h2{
    padding: 40px 0 30px;
  }

  #prof-content .prof-text dd{
    padding-bottom: 35px;
  }

  #prof-content .tool {
    flex-wrap: wrap;
    max-width: 650px;
    margin: 20px auto 0;
  }

  #prof-content .tool .box {
    width: calc(50% - 15px);
    margin: 20px 0;
  }

  #prof-content .box h3 {
    font-size: 1.5rem;
  }

  /*-----------------worksページ*/
  #works .page-title {
    top: 80px;
    height: 260px;
  }
 
  #works .page-title h1 {
    top: 16px;
  }

  #works section .item-blk {
    flex-wrap: wrap;
  }

  #works #link1,
  #works #link4 {
    padding-top: 175px;
    margin-top: -175px;
  }

  #works #link2,
  #works #link3,
  #works #link5,
  #works #link6,
  #works #link7,
  #works #link8 {
    padding-top: 150px;
    margin-top: -150px;
  }

  #works section .item {
    padding: 0 0 50px;
  }

  #works section .mockup img {
    width: 100%;
    max-width: 480px;
  }

  #works section .banner img {
    width: 100%;
    max-width: 360px;
  }

  #works .item-text {
    max-width: 800px;
  }

  #works .work-tool {
    padding: 15px 30px 20px 40px;
  }

  #works .text-content dt {
    width: 120px;
  }

  #works .text-content dd {
    margin-left: 120px;
  }

  #lp .lp-photo img {
    max-width: 550px;
  }
}