@import url(https://db.onlinewebfonts.com/c/ab596f21664c5582567537d241e2a53e?family=DIN+Next+Rounded+LT+W01+Regular);
@import url(https://db.onlinewebfonts.com/c/643121b5d2cc9943eff9b59054cc29ba?family=DIN+Next+Rounded+LT+W01+Light);

/* Zen Kaku Gothic New, Zen Old Mincho  300:Light,400:Regular,500:Medium */
@import url(https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700&family=Zen+Old+Mincho:wght@400;500;600&display=swap);

/* 共通の設定（スマートフォン用） */
/* 共通 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}

html {
  margin: 0;
  padding: 0;
}

a {
  color: #373737;
}

ul {
  /* liにできる隙間除去 */
  font-size:0;
}

/* support iOS */
body {
  height: 100svh;
}

.sidebar {
  display: none;
}

.header-top {
  min-height: 50px;
  position: fixed;
  z-index: 999;
  width: 100%;
  background:#fff;
  display: flex;
  justify-content: space-between;
}


.logo {
  display: flex;
  align-items: flex-end;
}

.logo img{
  display: block;
  max-width: 80px;
  margin-left: 18px;
  margin-bottom: 10px;
}

/* ふわっと */
/*----------------------------
scroll_up ｜下から上へ出現
----------------------------*/
.scroll_up {
  transition: 0.8s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}
.scroll_up.on {
  transform: translateY(0);
  opacity: 1.0;
}

/*----------------------------
scroll_left ｜左から出現
----------------------------*/
.scroll_left {
    -webkit-transition: 0.8s ease-in-out;
    -moz-transition: 0.8s ease-in-out;
    -o-transition: 0.8s ease-in-out;
    transition: 0.8s ease-in-out;
    transform: translateX(-30px);
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
}
.scroll_left.on {
    opacity: 1.0;
    filter: alpha(opacity=100);
    -moz-opacity: 1.0;
    transform: translateX(0);
}

/*----------------------------
scroll_right ｜右から出現
----------------------------*/
.scroll_right {
    -webkit-transition: 0.8s ease-in-out;
    -moz-transition: 0.8s ease-in-out;
    -o-transition: 0.8s ease-in-out;
    transition: 0.8s ease-in-out;
    transform: translateX(30px);
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
}
.scroll_right.on {
    opacity: 1.0;
    filter: alpha(opacity=100);
    -moz-opacity: 1.0;
    transform: translateX(0);
}

/* fadeUpをするアイコンの動き */
.logo img{
/*   animation-name: fadeUpAnime;
  animation-duration:1.5s; */
 }

.logo p{
/*   animation-name: fadeUpAnime;
  animation-duration:1.5s;
  transition-delay: 0.1s; */
}

@media (min-width:768px){
  .nav-menu li:nth-child(1) {
/*     animation-name: fadeUpAnime;
    animation-duration:1.5s;
    transition-delay: 0.2s; */
  }

  .nav-menu li:nth-child(2) {
/*     animation-name: fadeUpAnime;
    animation-duration:1.5s;
    transition-delay: 0.3s; */
  }

  .nav-menu li:nth-child(3) {
/*     animation-name: fadeUpAnime;
    animation-duration:1.5s;
    transition-delay: 0.4s; */
  }

  .nav-menu li:nth-child(4) {
/*     animation-name: fadeUpAnime;
    animation-duration:1.5s;
    transition-delay: 0.5s; */
  }

  .nav-menu li:nth-child(6) {
/*     animation-name: fadeUpAnime;
    animation-duration:1.5s;
    transition-delay: 0.6s; */
  }

  .copy {
/*     animation-name: fadeUpAnime;
    animation-duration:1.5s;
    transition-delay: 0.7s; */
  }
}
  
@keyframes fadeUpAnime{
  0% {
    opacity: 0;
    transform: translateY(100%);
  }

  50% {
    opacity: 0;
    transform: translateY(50%);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.logo p {
  font-family: "DIN Next Rounded LT W01 Light";
  font-size: 11px;
  color: #BEBEBE;
  letter-spacing: 0.75px;
  margin-bottom:10px;
  margin-left: 9px;
  white-space: nowrap;
}

/* ハンバーガーメニュー */
.menu-btn {
  /* チェックボックス非表示 */
  display: none;
}

nav {
  height: 50px;
}

.menu-icon {
  display: inline-block;
  position: relative;
  cursor: pointer;
  padding: 24px 13px;
}

.navicon {
  background: #222;
  display: block;
  height: 1px;
  width: 24px;
  position: relative;
  background: rgba(0,0,0,0);
}

.navicon:before,
.navicon:after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  background: #000;
  transition: 0.3s;
}

.navicon:before {
  top: 2px;
}

.navicon:after {
  bottom: 2px;
}

/* ハンバーガーメニュークリック */
.menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(15deg);
}

.menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-15deg);
}

.menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before {
  top:0;
}

.menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  bottom:0;
}

nav {
  /* position: fixed; */
  position: absolute;
  /* top: 50px; */
  top: 0;
  left:0;
  margin-top: 50px;
  padding-left: 40px;
  padding-top: 50px;
 /*  right: 0; */
  z-index: 99;
  width: 100%;
  height: 100vh;
  /* height: -webkit-fill-available; */
  background-color: #fff;
  transform: translateX(110%);
  transition: 0.6s;
}

.menu-btn:checked ~ nav {
  transform: translateX(0%);
} 

.nav-menu a {
  display: block;
  width: 100%;
}

.nav-menu {
/*   position:absolute;
  width: 100%;
  height: 100vh;  
  top:0;
  left:0;
  margin-top: 50px;
  background: #fff;
  padding-left: 40px;
  padding-top: 50px;
  transform: scale(1,0);
  transform-origin: top;
  transition: 0.4s; */
}

.menu-btn:checked ~ .nav-menu {
/*   transform: scale(1,1);
  transform-origin: top; */
}

.nav-menu li {
  display: block;
  height: 18px;
  margin-bottom: 34px;
  font-family: "DIN Next Rounded LT W01 Light";
  font-size: 16px;
  color: #373737;
}

.copy {
  font-family: "DIN Next Rounded LT W01 Light";
  font-size: 14px;
  color: #BEBEBE;
  position:absolute;
  bottom:150px;
  left:0;
  margin-top: 580px;
  padding-bottom:50px;
  padding-left: 40px;
/*   transform: scale(1,0);
  transform-origin: top; */
}

.menu-btn:checked ~ .copy {
  transform: scale(1,1);
  transform-origin: top;
}

/* ローディング */
.page-load-status {
  text-align: center;
}

.page-load-status img {
  width: 24px;
  height: 24px;
  display: block;
  margin: auto;
}

/* ページネーション */
.pagination {
  width: 100%;
  text-align: center;
  font-family: "DIN Next Rounded LT W01 Light";
  margin-top: 20px;
}

.page-numbers {
  display: flex;
  justify-content: center;
}

.page-numbers a,
.page-numbers span {
  display:inline-block;
  width:50px;
  height:50px;
  margin:2px;
  line-height:50px;
  text-align:center;
  font-size:14px;
  font-weight:bold;
  text-decoration:none;
  background:#fff;
  color:#222;
  transition:.3s;
}

.current{
  /* background-color: #BEBEBE; */
  border: 1px solid #999;
}

/* メイン */
.main-contents,
.top-main-contents {
  padding-top: 50px;
  /* padding-bottom: 50px; */
  position: relative;
  z-index:1;
}

/* Top */
.keyvisual {
  background: url(../img/top.jpg) no-repeat center center/cover;
  /* background-position: -200px 0px; */
  height: calc(100vh - 50px);
  height: -webkit-fill-available;
  /* アドレスバーに隠れる問題。iPhone Safariのときだけ有効 */
  /* height: -webkit-fill-available; */
}

/* 画面サイズが400px以下の場合の設定（スマートフォン用） */
@media (max-width:400px){
  .keyvisual {
     background-position: -200px 0px;
  } 
}

/* Works */
.work-header,
.work-body {
  margin: 10px 20px;
}

.work-body {
  padding-bottom: 50px;
}

.work-header-tag ul{
  display: flex;
  flex-wrap: wrap;
}

.work-header ul::before {
  content: "";
  background: url(../img/search-icon.svg);
  background-size: contain;
  margin-right: 5px;
  margin-top: 5px;
  width: 12px;
  height: 12px;
}

.work-header-tag li{
  margin-right: 10px;
}

.work-header-tag a {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  color: #555;
  font-size: 12px;
  text-decoration:underline #555;
  -webkit-text-decoration:underline #555;
}

.work-body-box {
  /* padding-bottom: 50px; */
}

.work-body-box li {
  margin: 0px 0px 25px 0px;
}

.work-body-box-thumb img {
  width:100%;
  object-fit: cover;
  position: relative;
}


.work-body-box-text {
  margin: 5px 5px 10px 5px;
}

.work-body-box-text-title h3 {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  color: #555;
  font-size: 15px;
  font-weight: 500;/* Medium */
}

.work-body-box-text-title-subtitle_en {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  color: #555;
  font-size: 14px;
  font-weight: 400;/* Regular 300はLight*/
  margin-left: 10px;
}

.work-body-box-text-tag {
  margin: 10px 0px 0px 0px;
}

.work-body-box-text-tag ul{
  display: flex;
  flex-wrap: wrap;
}

.work-body-box-text-tag li{
  font-family: 'Zen Kaku Gothic New', sans-serif;
  color: #555;
  font-size: 11px;
  margin: 0px 10px 0px 0px;
}

.work-body-box-text-tag li::after {
  margin-left:  10px;    
  content: "|";
}

.work-body-box-text-tag li:last-child::after  {
  content: none;
}

/* works-single */
.work-single-body {
  margin: 0 20px 10px 20px;
  padding-bottom: 50px;
}

.work-single-text-title {
  margin-bottom: 20px;
}

.work-single-text-title h3 {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  color: #555;
  font-size: 16px;
  font-weight: 500;/* Medium */
}

.work-single-text-title-subtitle_en {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  color: #555;
  font-size: 11px;
  font-weight: 400;/* Regular 300はLight*/
  margin-left: 10px;
}

.work-single-text-tag {
  margin: 0px 0px 0px 0px;
}

.work-single-text-tag ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.work-single-text-tag li{
  font-family: 'Zen Kaku Gothic New', sans-serif;
  color: #555;
  font-size: 11px;
  margin: 0px 10px 0px 0px;  
}

.work-single-text-tag li::after {
  margin-left:  10px;    
  content: "|";
}

.work-single-text-tag li:last-child::after  {
  content: none;
}

.work-single-text p {
  font-family: 'Zen Old Mincho', serif;
  color: #555;
  font-size: 11px;
  margin: 0px 0px 20px 0px;  
}

.work-single-photo-vertical img,
.work-single-photo-horizontal img{
  width:100%;
  object-fit: cover;
  position: relative;
  margin-bottom: 20px;
}

.work-single-data {
  margin-bottom: 20px;
}

.work-single-data dl {
  display: flex;
  flex-wrap: wrap;
}

.work-single-data dt,
.work-single-data dd {
  font-family: 'Zen Old Mincho', serif;
  color: #555;
  font-size: 11px;
}

.work-single-data dt {
  width: 15%;
  margin-bottom: 5px;
}

.work-single-data dd {
  width: 85%;
  margin-bottom: 5px;
}

/* Photo */
.photo-thumb img {
  width:100%;
  height: 100%;
  object-fit: cover;
  position: relative;
}

.photo-header-box-text {
  margin: 0px 20px;
}

.photo-header-box-text-title {
  margin-bottom: 5px;
}

.photo-header-box-text-description {
  margin-bottom: 30px;
}

.photo-header-box-text-title h3 {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  color: #555;
  font-size: 16px;
  font-weight: 500;/* Medium */
}

.photo-header-box-text-description p {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  color: #555;
  font-size: 11px;
  font-weight: 500;/* Medium */
}

.photo-body {
  margin: 10px 20px;
  padding-bottom: 50px;
}

.photo-body-box {
  /* padding-bottom: 50px; */
}

.photo-body-box li {
  margin: 0px 0px 25px 0px;
}

.photo-body-box-thumb img {
  width:100%;
  object-fit: cover;
  position: relative;
}

.photo-body-box-text {
  margin: 5px 5px 10px 5px;
}

.photo-body-box-text-date {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  color: #555;
  font-size: 11px;
  font-weight: 400;/* Regular */
  margin-bottom: 5px;
}

.photo-body-box-text-title h3 {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  color: #555;
  font-size: 15px;
  font-weight: 500;/* Medium */
}

/* Photo-single */
.photo-single-thumb img{
  width:100%;
  object-fit: cover;
  position: relative;
}

.photo-single-body {
  margin: 0 20px 10px 20px;
  padding-bottom: 50px;
}

.photo-single-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 10px;
}

.photo-single-date {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  color: #555;
  font-size: 11px;
  margin: 0px 10px 0px 0px;
  display: flex;
}

.photo-single-date::after {
  margin-left: 20px;
  content: "|";
}

.photo-single-date:last-child::after {
  content: none;
}

.photo-single-sns {

}

.photo-single-sns ul{
  display: flex;
}

.photo-single-sns li{
  margin-left: 10px;

}

.sns-ins {
  background: url(../img/sns-icon-instagram.svg);
  background-size: contain;
  opacity: 0.5;
  width: 12px;
  height: 12px;
}

.sns-pin {
  background: url(../img/sns-icon-pinterest.svg);
  background-size: contain;
  opacity: 0.5;
  width: 12px;
  height: 12px;
}

.sns-fb {
  background: url(../img/sns-icon-facebook.svg);
  background-size: contain;
  opacity: 0.5;
  width: 12px;
  height: 12px;
}

.photo-single-title h3{
  font-family: 'Zen Kaku Gothic New', sans-serif;
  color: #555;
  font-size: 16px;
  font-weight: 500;/* Medium */
  margin-bottom: 10px;
}

.photo-single-text p {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  color: #555;
  font-size: 11px;
  margin: 0px 0px 20px 0px;  
}

.photo-single-photo-vertical,
.photo-single-photo-horizontal {
  margin-bottom: 20px;
}


.photo-single-photo-vertical img,
.photo-single-photo-horizontal img{
  width:100%;
  object-fit: cover;
  position: relative;
  /* margin-bottom: 20px; */
}

.photo-single-photo img {
/*   width:100%;
  object-fit: cover;
  position: relative;
  margin-bottom: 10px; */
}

.photo-single-photo-vertical p,
.photo-single-photo-horizontal p {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  color: #555;
  font-size: 11px;
  margin: 0px 0px 0px 0px;
}

.photo-single-team {
  border-top: 0.5px solid #999;
  padding-top: 20px;
  margin: 40px 0px;
  clear: both;
}

.photo-single-team h4{
  font-family: 'Zen Kaku Gothic New', sans-serif;
  color: #555;
  font-size: 16px;
  margin: 0px 0px 20px 0px;
}

.photo-single-team li{
  font-family: 'Zen Kaku Gothic New', sans-serif;
  color: #555;
  font-size: 11px;
  margin: 0px 0px 10px 0px;
}

.photo-single-team li::after {
/*   margin-left: 20px;
  margin-right: 20px;
  content: "|"; */
}

.photo-single-team li:last-child::after {
  content: none;
}

/* About */
.thumb img {
  width:100%;
  object-fit: cover;
  position: relative;
}

.about-body {
  margin: 5px 20px;
  padding-bottom: 50px;
}

.about-body h2 {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  color: #555;
  font-size: 16px;
  font-weight:500;
}

.about-body h3 {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  color: #555;
  font-size: 11px;
  font-weight:500;
}

.about-body p {
  font-family: 'Zen Old Mincho', serif;
  color: #555;
  font-size: 11px;
  line-height: 1.75;
  margin-top: 20px;
}

.profile {
  margin: 40px 0px;
  /* padding-bottom: 50px; */
}

.profile-photo img {
  width:100%;
  object-fit: cover;
  position: relative;
}


.profile-text dl {
  display: flex;
  flex-wrap: wrap;
}

.profile-text dt,
.profile-text dd {
  font-family: 'Zen Old Mincho', serif;
  color: #555;
  font-size: 11px;
}

.profile-text dt {
  width: 15%;
  margin-bottom: 5px;
}

.profile-text dd {
  width: 85%;
  margin-bottom: 5px;
}

/* Contact */
.contact-body {
  margin: 5px 20px;
}

.contact-title h3 {
  display: block;
  height: 18px;
  margin-top: 15px;
  margin-bottom: 15px;
  font-family: "DIN Next Rounded LT W01 Light";
  font-size: 16px;
  color: #373737;
  text-align: center;
}

form#mail_form {
  width: 100%;
  margin: 0;
}

form#mail_form dl{
  width: 100%;
  margin: 0;
}

#mail_form dt,
#mail_form dd {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  color: #555;
  font-size: 14px;
  font-weight:500;
}

form#mail_form input[type="button"] {
	font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 16px;
  font-weight: 500;
  border: 1px solid #cccccc;
  width: 150px;
  height: 34px;

}

.thanks {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 16px;
  text-align: center;
  margin-top: 200px;
}

input:focus,
textarea:focus {
  border: #000 1px solid;
  outline: none;
}

input[type="button"],
input[type="text"],
input[type="submit"],
input[type="image"],
input[type="email"],
input[type="tel"],
textarea {
  -webkit-appearance: none;
  border-radius: 0;
}

/* 404ページ */
.page404 h3 {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  margin-top: 200px;
}

.page404 p {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 12px;
  text-align: center;
  margin-top: 10px;
}


/* 画面サイズが768px以上の場合の設定（タブレット用） */
@media (min-width:768px){
  /* 共通 */
  .container,
  .top-container {
    display: flex;
    margin-left: auto;
    margin-right: auto;
  }
  
  .header-top {
    display: none;
  }

  .sidebar {
    display: block;
    width: 260px;
    position: relative;
  }

  /* 固定したい要素のCSS */
  .sticky_part {
    top: 50px;
    position: sticky;
    height: 95vh;
  }

  .logo {
    display: block;
    margin-top: 50px;
    margin-left: 64px;
  }
  
  .logo img{
    max-width: 100px;
    margin-left: 0px;
    margin-bottom: 0px;
  }
  
  .logo p {
    font-size: 15px;
    line-height: 20px;
    margin-top: 10px;
    margin-bottom: 0px;
    margin-left: 0px;
  }

  .nav-menu {
    margin-top: 50px;
    margin-left: 64px;
    position:static;
    width: auto;
    padding-left: 0px;
    padding-top: 0px;
    transform: scale(1,1);
    transform-origin: top;
    transition: 0.0s;
    /* height: 484px; */
  }

  .nav-menu li {
    display: block;
    height: 18px;
    margin-bottom: 20px;
    font-family: "DIN Next Rounded LT W01 Light";
    font-size: 16px;
    color: #373737;
  }

  .copy {
    transform: scale(1,1);
    /* position: inherit; */
    position: absolute;
    margin-top: 0px;
    padding-bottom: 0px;
    padding-left: 64px;
    bottom: 40px;
  }

  .main-contents,
  .top-main-contents {
    width: calc(100% - 210px);
    padding-top: 0px;
  }

  /* Top-Tablet */
  .keyvisual {
    margin-top: 40px;
    margin-right: 30px;
    height: calc(100vh - 50px);
    /* height: 684px; */
  }

  /* Works-Tablet */
  .work-header {
    margin-top: 40px;
    margin-bottom: 20px; 
  }

  .work-body {
    max-width: 1026px;
  }

  .work-body-box ul {
    display: flex;
    flex-wrap: wrap;
  }

  .work-header ul::before {
    content: "";
    background: url(../img/search-icon.svg);
    background-size: contain;
    margin-right: 20px;
    margin-top: 5px;
    width: 12px;
    height: 12px;
  }

  .work-header-tag li{
    margin-right: 15px;
  }

  .work-header-tag a {
    font-size: 15px;
  }

  .work-body-box li {
    width: calc(33.33% - 9px * 2 / 3);
    margin: 0 9px 5px 0;
  }

  .work-body-box li:nth-child(3n) {
    margin-right: 0;
  }

  .work-body-box-text-tag li,
  .work-body-box-text-tag li:nth-child(3n) {
    margin: 0px 10px 0px 0px;
    width: auto;
    font-size: 14px;
  }

  /* Work-single-Tablet */
  .work-single-text-tag li{
    font-size: 15px;
  }

  .work-single-text-tag {
    margin: 10px 10px 0px 10px;
  }

  .work-single-body {
    margin: 0 30px 10px 0px;
  }

  .work-single-text-title {
    margin: 0px 10px 20px 10px;
  }

  .work-single-text-title h3 {
    font-size: 20px;
  }
  
  .work-single-text-title-subtitle_en {
    font-size: 17px;
  }

  .work-single-text {
    display: block;
    clear: both;
  }

  .work-single-text p {
    font-size: 16px;
    margin: 0px 10px 20px 10px;
  }

  .work-single-photo-vertical {
    float: left;
    margin-left: 10px;
    margin-right: 10px;
    width: calc(50% - 20px);

  }

 .work-single-photo-horizontal {
    display: block;
    clear: both;
    margin: 0 10px;
 }

 .work-single-photo-vertical img,
 .work-single-photo-horizontal img {
    margin-bottom: 20px;
 }

  .work-single-data {
    margin: 40px 10px 40px 10px;
  }

  .work-single-data dt,
  .work-single-data dd {
    font-size: 14px;
  }

  /* Photo-Tablet */
  .photo-header {
    display: flex;
    margin: 40px 20px 20px 20px;
  }

  .photo-thumb {
    background-position: 0px 0px;
    width: 50%;
  }
  
  .photo-header-box-text {
    width: 50%;
    margin:0px;
  }

  .photo-header-box-text-title h3 {
    font-size: 24px;
    padding: 20px 0px 40px 20px;
  }

  .photo-header-box-text-description p {
    font-size: 15px;
    padding: 0px 0px 40px 20px;
  }

  .photo-body {
    max-width: 1026px;
  }

  .photo-body-box ul {
    display: flex;
    flex-wrap: wrap;
  }

  .photo-body-box li {
    width: calc(33.33% - 9px * 2 / 3);
    margin: 0 9px 5px 0;
  }

  .photo-body-box li:nth-child(3n) {
    margin-right: 0;
  }

  .photo-body-box-text-date {
    font-size: 12px;
  }

  /* Photo-single-Tablet */
  .photo-single-thumb {
    margin-top: 40px;
    margin-right: 30px;
    background-position: 0px 0px;
    /* height: 684px; */
  }

  .photo-single-body {
    margin: 0 30px 10px 0px;
  }

  .photo-single-header {
    margin-top: 10px;
  }

  .photo-single-date {
    font-size: 16px;
  }

  .sns-ins,
  .sns-pin,
  .sns-fb {
    width: 19px;
    height: 19px;
  }

  .photo-single-title h3 {
    font-size: 26px;
  }

  .photo-single-text p {
    font-size: 16px;
    margin-bottom: 50px;
  }

  .photo-single-photo-vertical,
  .photo-single-photo-horizontal {
    margin-bottom: 50px;
  }

  .photo-single-photo-vertical img,
  .photo-single-photo-horizontal img {
  /*     margin-bottom: 20px; */
  }

  .photo-single-photo-vertical p,
  .photo-single-photo-horizontal p {
    font-size: 16px;
    /* margin-bottom: 50px; */
  }

  .photo-single-photo-vertical p {
    padding-left: 10px;
  }

  .photo-single-team h4 {
    font-size: 18px;
  }

  .photo-single-team ul {
    /* display: flex; */
  }

  .photo-single-team li {
    font-size: 16px;
  }

  /* About-Tablet */
  .thumb {
    margin-top: 40px;
    margin-right: 30px;
    background-position: 0px 0px;
  }

  .about-body {
    margin: 0 30px 10px 0px;
  }

  .profile {
    display: flex;
    margin-top: 40px;
  }

  .profile-photo {
    width: 30%;
  }

  .profile-text {
    width: 70%;
    padding-left: 25px;
  }

  .about-body h2 {
    font-size: 25px;
  }

  .about-body h3 {
    font-size: 14px;
  }

  .about-body p {
    font-size: 14px;
  }

  .profile-text dt,
  .profile-text dd {
    font-size: 14px;
  }

  /* Contact-Tablet */
  .contact-title {
    margin-top: 40px;
  }

  .contact-title h3 {
    font-size: 25px;
    height: 100px;
  }

  form#mail_form dl dt {
    width: 20%;
    margin-bottom: 10px;
  }
  
  form#mail_form dl dd {
    width: 80%;
    margin-bottom: 10px;
  }

}


/* 画面サイズが960px以上の場合の設定（PC用） */
@media (min-width:960px){
  /* 共通-PC */
  .container {
    display: flex;
/*     max-width: 1366px; */
    margin-left: auto;
    margin-right: auto;
  }

  .top-container {
    display: flex;
/*     max-width: 1366px; */
    margin-left: auto;
    margin-right: auto;
  }

  .contents{
    max-width: 1026px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .header-top {
    display: none;
  }

  .sidebar {
    display: block;
    width: 310px;
    position: relative;
/*     height: 100vh; */
  }

  /* 固定したい要素のCSS */
  .sticky_part {
    top: 50px;
    position: sticky;
    height: 95vh;
  }
  
  .logo {
    display: block;
    margin-top: 50px;
    margin-left: 64px;
  }
  
  .logo img{
    max-width: 122px;
    margin-left: 0px;
    margin-bottom: 0px;
  }
  
  .logo p {
    font-size: 15px;
    line-height: 20px;
    margin-top: 10px;
    margin-bottom: 0px;
    margin-left: 0px;
  }
  
  .nav-menu {
    margin-top: 50px;
    margin-left: 64px;
    position:static;
    width: auto;
    padding-left: 0px;
    padding-top: 0px;
    transform: scale(1,1);
    transform-origin: top;
    transition: 0.0s;
    /* height: 484px; */
  }

  .nav-menu li {
    display: block;
    height: 18px;
    margin-bottom: 20px;
    font-family: "DIN Next Rounded LT W01 Light";
    font-size: 16px;
    color: #373737;
  }

  .copy {
    transform: scale(1,1);
    /* position: inherit; */
    position: absolute;
    margin-top: 0px;
    padding-bottom: 0px;
    bottom: 40px;
  }
  
  .main-contents {
    width: calc(100% - 310px);
    padding-top: 0px;
  }

  .top-main-contents {
   /*  flex: 1; */
    width: calc(100% - 310px);
    padding-top: 0px;
/*     margin-right: calc(50% - 50vw); */
  }
  
  /* Top-PC */
  .keyvisual {
    margin-top: 40px;
    margin-right: 30px;
    background-position: 0px 0px;
    height: calc(100vh - 50px);
    /* height: 684px; */
  }

  /* Works-PC */
  .work-header {
    margin-top: 40px;
    margin-bottom: 20px; 
  }

  .work-body {
    max-width: 1026px;
  }

  .work-body-box ul {
    display: flex;
    flex-wrap: wrap;
  }

  .work-header ul::before {
    content: "";
    background: url(../img/search-icon.svg);
    background-size: contain;
    margin-right: 20px;
    margin-top: 5px;
    width: 16px;
    height: 16px;
  }
  
  .work-header-tag li{
    margin-right: 15px;
  }

  .work-header-tag a {
    font-size: 15px;
  }

  .work-body-box li {
    width: calc(33.33% - 9px * 2 / 3);
    margin: 0 9px 5px 0;
  }

  .work-body-box li:nth-child(3n) {
    margin-right: 0;
  }

  .work-body-box-text-tag li,
  .work-body-box-text-tag li:nth-child(3n) {
    margin: 0px 10px 0px 0px;
    width: auto;
    font-size: 14px;
  }

  /* Work-single-PC */
  .work-single-text-tag li{
    font-size: 15px;
  }

  .work-single-text-tag {
    margin: 10px 10px 0px 10px;
  }

  .work-single-body {
    margin: 0 30px 10px 0px;
  }

  .work-single-text-title {
    margin: 0px 10px 20px 10px;
  }

  .work-single-text-title h3 {
    font-size: 20px;
  }
  
  .work-single-text-title-subtitle_en {
    font-size: 17px;
  }

  .work-single-text {
    display: block;
    clear: both;
  }

  .work-single-text p {
    font-size: 16px;
    margin: 0px 10px 20px 10px;
  }

  .work-single-photo-vertical {
    float: left;
    margin-left: 10px;
    margin-right: 10px;
    width: calc(50% - 20px);

  }

 .work-single-photo-horizontal {
    display: block;
    clear: both;
    margin: 0 10px;
 }

 .work-single-photo-vertical img,
 .work-single-photo-horizontal img {
    margin-bottom: 20px;
 }

  .work-single-data {
    margin: 40px 10px 40px 10px;
  }

  .work-single-data dt,
  .work-single-data dd {
    font-size: 14px;
  }

  /* Photo-PC */
  .photo-header {
    display: flex;
    margin: 40px 20px 20px 20px;
  }

  .photo-thumb {
    background-position: 0px 0px;
    width: 50%;
  }
  
  .photo-header-box-text {
    width: 50%;
    margin:0px;
  }

  .photo-header-box-text-title h3 {
    font-size: 24px;
    padding: 20px 0px 40px 20px;
  }

  .photo-header-box-text-description p {
    font-size: 15px;
    padding: 0px 0px 40px 20px;
  }

  .photo-body {
    max-width: 1026px;
  }

  .photo-body-box ul {
    display: flex;
    flex-wrap: wrap;
  }

  .photo-body-box li {
    width: calc(33.33% - 9px * 2 / 3);
    margin: 0 9px 5px 0;
  }

  .photo-body-box li:nth-child(3n) {
    margin-right: 0;
  }

  .photo-body-box-text-date {
    font-size: 12px;
  }

  /* Photo-single-PC */
  .photo-single-thumb {
    margin-top: 40px;
    margin-right: 30px;
    background-position: 0px 0px;
    /* height: 684px; */
  }

  .photo-single-body {
    margin: 0 30px 10px 0px;
  }

  .photo-single-header {
    margin-top: 10px;
  }

  .photo-single-date {
    font-size: 16px;
  }

  .sns-ins,
  .sns-pin,
  .sns-fb {
    width: 19px;
    height: 19px;
  }

  .photo-single-title h3 {
    font-size: 26px;
  }

  .photo-single-text p {
    font-size: 16px;
    margin-bottom: 50px;
  }

  .photo-single-photo-vertical,
  .photo-single-photo-horizontal {
    margin-bottom: 50px;
  }

  .photo-single-photo-vertical {
/*     float: left;
    margin-left: 10px;
    margin-right: 10px;
    width: calc(50% - 20px); */
    display: flex;
    justify-content: flex-end;
  }

  .photo-single-photo-horizontal {
  /*     display: block;
      clear: both;
      margin: 0 0px; */
  }

  .photo-single-photo-vertical img,
  .photo-single-photo-horizontal img {
      /* margin-bottom: 20px; */
  }

  .photo-single-photo-vertical img {
      width: 50%;
  }

  .photo-single-photo-vertical p,
  .photo-single-photo-horizontal p {
    font-size: 16px;
    /* margin-bottom: 50px; */
  }

  .photo-single-photo-vertical p {
    padding-left: 10px;
  }

  .photo-single-team h4 {
    font-size: 18px;
  }

  .photo-single-team ul {
    /* display: flex; */
  }

  .photo-single-team li {
    font-size: 16px;
  }

  /* About-PC */
  .thumb {
    margin-top: 40px;
    margin-right: 30px;
    background-position: 0px 0px;
    /* height: 684px; */
  }

  .about-body {
    margin: 0 30px 10px 0px;
  }

  .profile {
    display: flex;
    margin-top: 40px;
  }

  .profile-photo {
    width: 30%;
  }

  .profile-text {
    width: 70%;
    padding-left: 25px;
  }

  .about-body h2 {
    font-size: 25px;
  }

  .about-body h3 {
    font-size: 14px;
  }

  .about-body p {
    font-size: 14px;
  }

  .profile-text dt,
  .profile-text dd {
    font-size: 14px;
  }

  /* Contact-PC */
  .contact-title {
    margin-top: 40px;
  }

  .contact-title h3 {
    font-size: 25px;
    height: 100px;
  }

  form#mail_form dl dt {
    width: 20%;
    margin-bottom: 10px;
  }
  
  form#mail_form dl dd {
    width: 80%;
    margin-bottom: 10px;
  }
}


