@charset "UTF-8";
/* リセットcss */
/* ===================================================================
 style info : リセット及びフォントサイズ
=================================================================== */
/* 
html5doctor.com Reset Stylesheet
v1.4.1 
2010-03-01
Author: Richard Clark - http://richclarkdesign.com
*/
*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

article, aside, canvas, details, figcaption, figure, picture,
footer, header, hgroup, menu, nav, section, summary, main {
  display: block;
}

nav ul {
  list-style: none;
}

ul li,
ol li {
  list-style: none;
}

address {
  font-style: normal;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

a {
  margin: 0;
  padding: 0;
  border: 0;
  outline: none;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

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

iframe, video {
  vertical-align: bottom;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted #000;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  font-size: inherit;
  font: 100%;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

input::-moz-focus-inner, button::-moz-focus-inner {
  border: 0;
}

select, input, button, textarea, button {
  outline: 0;
}

pre, code, kbd, samp, tt {
  font-family: monospace;
  *font-size: 108%;
  line-height: 100%;
}

label[for],
input[type="checkbox"],
input[type="radio"],
input[type="button"],
select,
option {
  cursor: pointer;
  outline: 0;
  border: 0;
}

optgroup {
  cursor: default;
}

sup,
sub {
  font-size: 75%;
}

select {
  min-width: 2em;
}

textarea {
  resize: vertical;
  width: 100%;
  margin: 0;
}

input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}

input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background: transparent;
}

button,
input[type="submit"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
}

input[type="radio"] {
  display: none;
}

input[type="radio"]:checked + label {
  background: #ff0000;
}

/* 共通スタイル */
/* ===================================================================
 style info : ヘッダーやフッターなどサイト内共通
=================================================================== */
@font-face {
  font-family: 'crimson';
  src: url("../fonts/CrimsonText-Roman.woff") format("woff");
}

/*----------------------------------------------------
	共通
----------------------------------------------------*/
html {
  overflow-y: scroll;
  /* スクロールバーの有無によるズレ対策 */
  font-size: 62.5%;
  background: #ffffff;
}

body {
  font-family: "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HGS明朝E", "ＭＳ Ｐ明朝", serif;
  background: #ffffff;
  color: #000;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1;
}

a {
  text-decoration: none;
  transition: all .5s ease;
  -webkit-transition: all .5s ease;
}

a:hover {
  transition: all .5s ease;
  -webkit-transition: all .5s ease;
  opacity: 0.8;
}

/* -----------------------------------------------------------
    全体ボックス
----------------------------------------------------------- */
/* -----------------------------------------------------------
    Header
----------------------------------------------------------- */
.top-header {
  position: absolute;
  z-index: 100;
  top: 0;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}

.lower-header {
  padding: 17px 25px 11px;
  background: #000;
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

/* -----------------------------------------------------------
    Footer
----------------------------------------------------------- */
#footer {
  /*padding: 37px 0 0;追加*/
  padding: 97px 0 0;
  background: url(../img/common/footer_backimage.jpg) no-repeat center/cover;
  position: relative;
  z-index: 1;
}

#footer:before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background: rgba(0, 0, 0, 0.7);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

#footer .logo {
  text-align: center;
  padding: 0 35px;
  margin: 0 0 15px;
}

#footer .footernavitems {
  line-height: 1.42857;
  padding: 0 35px;
  /*margin: 0 0 30px;追加*/
  margin: 0 0 50px;
}

#footer .footernavitems .item {
  margin: 0 0 15px;
  text-align: center;
}

#footer .footernavitems .item a {
  color: #fff;
  font-size: 16px;/*追加*/
}

#footer .snsitems {
  padding: 0 35px 50px;/*追加*/
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  margin: 0 0 40px;
}

#footer .snsitems .item {
  margin: 0 30px 0 0;
}

#footer .snsitems .item:last-of-type {
  margin-right: 0;
}

#footer .copyright {
  /*padding: 15px 35px;追加*/
  padding: 15px 35px 25px;
  background: #000;
  text-align: center;
  font-family: acumin-pro-wide, sans-serif;
　font-weight: 200;
　font-style: normal;
}

#footer .copyright a{/*追加*/
  color: #fff;
  text-decoration: none;
}

/* -----------------------------------------------------------
    Skew Inner
----------------------------------------------------------- */
.skew-inner {
  transform: skewY(5deg);
  -webkit-transform: skewY(5deg);
}

/* -----------------------------------------------------------
    Main Title
----------------------------------------------------------- */
.maintitlebox {
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  margin: 0 0 70px;
}

.maintitlebox .image {
  order: 1;
  position: relative;
  padding: 0 0 15px;
  margin: 0 0 10px;
}

.maintitlebox .image:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  display: block;
  width: 70px;
  height: 1px;
  background: #000;
}

.maintitlebox .maintitle {
  order: 2;
  line-height: 1.57143;
  font-weight: 400;
}

.maintitlebox.w .image:after {
  background: #fff;
}

.maintitlebox.w .maintitle {
  color: #fff;
}

/* -----------------------------------------------------------
    Works Garrelly
----------------------------------------------------------- */
.art_works_garelly-wrap {
  max-width: 800px;
  width: 100%;
  margin: 0 auto 25px;
  align-items: flex-start;
  -webkit-align-items: flex-start;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.art_works_garelly-wrap .art_work_content {
  flex-basis: calc(50% - 5px);
  -webkit-flex-basis: calc(50% - 5px);
  margin: 0 0 15px;
}
.art_works_garelly-wrap .art_work_content img{/*追加*/
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.art_works_garelly-wrap .art_work_content.fullwidth {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}

.art_works_garelly-wrap .art_work_content a {
  font-size: 12px;
  font-size: 1.2rem;
  letter-spacing: 0.1 em;
  line-height: 1.41667;
  color: #fff;
  align-items: flex-start;
  -webkit-align-items: flex-start;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.art_works_garelly-wrap .art_work_content a .image {
  order: 1;
  margin: 0 0 5px;
  width: 100%;
}

.art_works_garelly-wrap .art_work_content a .image img {
  width: 100%;
}

.art_works_garelly-wrap .art_work_content a .title {
  order: 2;
  font-weight: 400;
  width: 100%;
}

.other-wroks-wrap .art_work_content a {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.42857;
  color: #000;
}

/* -----------------------------------------------------------
    News Archive item
----------------------------------------------------------- */
.newsarchivecontents {
  max-width: 800px;
  width: 100%;
  margin: 0 auto 40px;
}

.newsarchivecontents .newsarchiveitem {
  padding: 0 5px 7.5px;
  border-bottom: 1px dashed #707070;
  margin: 0 0 5px;
}

.newsarchivecontents .newsarchiveitem a {
  color: #000;
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN";
}

.newsarchivecontents .newsarchiveitem .title {
  line-height: 1.28571;
  margin: 0 0 8px;
}

.newsarchivecontents .newsarchiveitem time {
  line-height: 1.66667;
}

/* -----------------------------------------------------------
    MORE Button
----------------------------------------------------------- */
.morebtn {
  max-width: 150px;
  width: 100%;
  margin: 0 auto;
}

.morebtn a {
  line-height: 1.35714;
  letter-spacing: 0.02 em;
  transition: all 0.5s linear;
  background: #fff;
  border: 1px solid #000;
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  color: #000;
  padding: 10px 0 9px 0;
}

.morebtn a:hover {
  color: #fff;
  background: #000;
}

/* -----------------------------------------------------------
    OtherLink
----------------------------------------------------------- */
.otherlink {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}

.otherlink a {
  line-height: 1.57143;
  font-weight: 300;
  color: #fff;
  text-decoration: underline;
}

/* -----------------------------------------------------------
    Globalnavigation
----------------------------------------------------------- */
#menuicon {
  display: block;
  width: 40px;
  height: 50px;
  position: relative;
  z-index: 100;
  display: block;
  margin: 0 0 0 20px;
  cursor: pointer;
}

#menuicon > span {
  width: 30px;
  height: 2px;
  background: #fff;
  position: absolute;
  left: calc( ( 50px - 36px ) / 2);
}

#menuicon > span:first-child {
  top: 17px;
}

#menuicon > span:nth-child(2) {
  top: calc(50% - 1px);
}

#menuicon > span:nth-child(3) {
  bottom: 17px;
}

.top-header #menuicon {
  display: block;
  width: 40px;
  height: 50px;
  position: relative;
  display: block;
  margin: 20px 20px 0 auto;
  cursor: pointer;
}

#overlay {
  width: 100%;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  display: none;
}

#hamburgerwrap {
  width: 300px;
  height: 100vh;
  overflow-y: scroll;
  background: #000;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 200;
  transform: translateX(320px);
  transition: all 0.3s ease 0s;
}

#hamburgerwrap.open {
  transform: translateX(0);
}

#hamburgerwrap > #close {
  position: relative;
  width: 30px;
  height: 30px;
  display: block;
  margin: 15px 15px 80px auto;
  background: #fff;
}

#hamburgerwrap > #close > span {
  width: 15px;
  height: 1px;
  background: #060606;
  position: absolute;
  left: 50%;
  top: 50%;
}

#hamburgerwrap > #close > span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

#hamburgerwrap > #close > span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

#hamburgerwrap .navlist {
  margin: 0 0 5%;
}

#hamburgerwrap .navlist .item {
  border-bottom: 1px solid #fff;
}

#hamburgerwrap .navlist .item a {
  display: block;
  padding: 15px 28px 11px;
  color: #fff;
}

#hamburgerwrap .snsitems {
  padding: 0 28px 0;
  margin-top: 43px;
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

#hamburgerwrap .snsitems .item {
  margin: 0 30px 0 0;
}

#hamburgerwrap .snsitems .item:last-of-type {
  margin-right: 0;
}

/* -----------------------------------------------------------
    Lower Main Image
----------------------------------------------------------- */
.lowermainbox {
  padding: 0 35px;
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  position: relative;
  z-index: 0;
  background-color: #000;
  max-height: 300px;
  height: 66.667vw;
  transition: all 1s ease;
  -webkit-transition: all 1s ease;
}

.lowermainbox:before, .lowermainbox:after {
  content: "";
}

.lowermainbox .image {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 1s ease;
  -webkit-transition: all 1s ease;
}

.lowermainbox:before {
  opacity: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  z-index: -2;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 1s ease;
  -webkit-transition: all 1s ease;
}

.lowermainbox:after {
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: all 1s ease;
  -webkit-transition: all 1s ease;
}

.lowermainbox.e-v .image {
  opacity: 1;
}

.lowermainbox.e-v:before {
  opacity: 1;
}

.lowermainbox.e-v:after {
  opacity: 1;
}

.lowermainbox.biography:before {
  background-image: url(../img/biography/mainimg.png);
}

.lowermainbox.news:before {
  background-image: url(../img/news/mainimg.png);
}

.lowermainbox.contact:before {
  background-image: url(../img/contact/mainimg.png);
}

.lowermainbox.works:before {
  background-image: url(../img/works/mainimg.png);
}
.lowermainbox.error:before {/*追加*/
  background-image: url(../img/contact/mainimg.png);
}

/* -----------------------------------------------------------
    Animation
----------------------------------------------------------- */
/*.e {
  opacity: 0;
}
*/
.e.e-v {
  animation: fadeIn 1s ease forwards;
}

/*@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}*/

/* -----------------------------------------------------------
    Pagination
----------------------------------------------------------- */
.pagination {
  margin: 30px 0 0;
}

.pagination .nav-links {
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.pagination .nav-links .page-numbers {
  line-height: 1.42857;
  color: #000;
  margin: 0 0 5px 5px;
  padding: 1px 5px 4px;
  border: 1px solid #000;
}

.pagination .nav-links .page-numbers.current {
  color: #fff;
  background: #000;
}

.pagination .nav-links .prev, .pagination .nav-links .next {
  border: none;
  padding-top: 0;
}

.works .pagination .nav-links .page-numbers {
  line-height: 1.42857;
  color: #fff;
  margin: 0 0 5px 5px;
  padding: 1px 5px 4px;
  border: 1px solid #fff;
}

.works .pagination .nav-links .page-numbers.current {
  color: #000;
  background: #fff;
}

.works .pagination .nav-links .prev, .works .pagination .nav-links .next {
  border: none;
  padding-top: 0;
}

/* -----------------------------------------------------------
    No Query
----------------------------------------------------------- */
.nonquery {
  text-align: center;
  margin: 40px auto;
}

/* 個別スタイル */
@font-face {
  font-family: 'crimson';
  src: url("../fonts/CrimsonText-Roman.woff") format("woff");
}

/* トップページ */
.toppage .mainimage {
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  max-height: 100vh;
  min-height: 450px;
  height: 100vh;
  background: url(../img/top/main_img.jpg) no-repeat center/cover;/
  position: relative;
  z-index: 1;
}

.toppage .mainimage:before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

/* mainimage_movie */
.toppage .image{
    z-index: 10;
}
.toppage .mainimage_movie{
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* video */
.toppage .video{
  width: 100%;
  height: 100vh;
  background: url(../img/top/main_img.jpg) no-repeat center/cover;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 1;
}

.toppage .video::after{
  content: '';
  width: 100%;
  height: 100%;
  background-color: #10394b;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  opacity: .3;
}

.toppage .video video{
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

@media screen and (min-width: 768px) {
   /*<!--kv -->*/
  .toppage .mainimage_movie{
    min-width: 960px;
  }

   /*video*/ 
  .toppage .video{
    min-width: 960px;
  }
}

.toppage .about-wrap {
  background: #2B2B2B;
  transform: skewY(-5deg);
  -webkit-transform: skewY(-5deg);
  padding: 150px 35px 40px;
  margin: -5% 0 0;
  position: relative;
  z-index: 0;
}

@media screen and (max-width: 480px) {
  .toppage .about-wrap {
    padding: 100px 35px 40px;
  }
}

.toppage .about-wrap .title-wrap {
  max-width: 270px;
  width: 100%;
  margin: 0 auto 50px;
  align-items: flex-end;
  -webkit-align-items: flex-end;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.toppage .about-wrap .title-wrap .imagebox {
  order: 1;
  position: relative;
  z-index: 0;
}

.toppage .about-wrap .title-wrap .detailbox {
  order: 2;
  position: relative;
  z-index: 1;
  margin: 0 0 15px -20px;
}

.toppage .about-wrap .title-wrap .detailbox .title {
  margin: 0 0 15px;
}

.toppage .about-wrap .title-wrap .detailbox .nameimage {
  margin: 0 0 10px;
}

.toppage .about-wrap .title-wrap .detailbox .name {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.41667;
  letter-spacing: 0.4 em;
  color: #fff;
  margin: 0 0 0 10px;
}

.toppage .about-wrap .secread {
  line-height: 2;
  color: #fff;
  max-width: 800px;
  width: 100%;
  margin: 0 auto 30px;
}

.toppage .about-wrap .otherlink {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}

.toppage .about-wrap .otherlink:first-of-type {
  margin: 0 0 7px;
}

.toppage .about-wrap .otherlink a {
  line-height: 2.14286;
  font-weight: 300;
  color: #fff;
  text-decoration: underline;
}

.toppage .art_works-wrap {
  background: #000;
  transform: skewY(-5deg);
  -webkit-transform: skewY(-5deg);
  padding: 100px 35px 40px;
  position: relative;
  z-index: 0;
}

.toppage .newsarchive-wrap {
  padding: 100px 35px 50px;
}

/* 番洋について */
.biography .about-wrap {
  color: #fff;
  background: #000;
  padding: 75px 20px 80px;
}

.biography .about-wrap > .title {
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.45;
  font-weight: 700;
  display: table;
  margin: 0 auto 25px;
}

.biography .about-wrap > .titleunderread {
  line-height: 1.57143;
  max-width: 800px;
  width: 100%;
  margin: 0 auto 50px;
}

.biography .about-wrap .outlineitems {
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN";
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.33333;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}

.biography .about-wrap .outlineitems .itemcontent {
  margin: 0 0 10px;
  padding: 0 0 5px;
  border-bottom: 1px dashed #707070;
}

.biography .about-wrap .outlineitems .itemcontent .image {
  max-width: 80%;
  text-align: center;
  margin: 0 auto 10px;
}

.biography .about-wrap .outlineitems .itemcontent .image img {
  width: 100%;
}

.biography .about-wrap .outlineitems .itemcontent .title {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.57143;
  margin: 0 0 5px;
}
.biography a{/*追加*/
  text-decoration: underline;
  color:#fff;
}
/* ニュース */
.news .news-wrap {
  padding: 25px 30px 40px;
}

.news .news-wrap > .title {
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.45;
  font-weight: 700;
  text-align: center;
  margin: 0 0 27px;
}

.news .news-wrap .titleunderread {
  line-height: 1.57143;
  max-width: 800px;
  width: 100%;
  margin: 0 auto 30px;
}

.news-single .news-single-wrap {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  padding: 30px 25px 70px;
}

.news-single .news-single-wrap > .title {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.25;
  font-weight: 700;
  margin: 0 0 30px;
}

.news-single .news-single-wrap .newscontent {
  font-family: 'Noto Sans JP', sans-serif;
  color: #262626;
  line-height: 1.57143;
}

.news-single .news-single-wrap .newscontent p {
  margin: 0 0 20px;
}

/* 制作事例 */
.works .works-wrap {
  padding: 25px 30px 40px;
  background: #000;
}

.works .works-wrap > .title {
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.45;
  font-weight: 700;
  text-align: center;
  margin: 0 0 27px;
}

.works .works-wrap .titleunderread {
  line-height: 1.57143;
  max-width: 320px;
  width: 100%;
  margin: 0 auto 30px;
}

.works-single .works-single-wrap {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  padding: 30px 25px 20px;
}

.works-single .works-single-wrap > .title {
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.45;
  font-weight: 700;
  margin: 0 0 30px;
}

.works-single .works-single-wrap .workscontent {
  font-family: 'Noto Sans JP', sans-serif;
  color: #262626;
  line-height: 1.57143;
}

.works-single .works-single-wrap .workscontent p {
  margin: 0 0 20px;
}

.works-image {
  padding: 25px 25px 15px;
  text-align: center;
  background: #000;
}

.other-wroks-wrap {
  max-width: 800px;
  width: 100%;
  padding: 0 25px;
  margin: 0 auto;
}

.other-wroks-wrap > .title {
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.45;
  font-weight: 700;
  margin: 0 0 20px;
}
/* 404ページ　追加 */
.error .error-wrap {
  padding: 50px 30px 70px;
  background: #fff;
}
.error h1{
  font-size:2.4rem;
  font-family: acumin-pro-wide, sans-serif;
  font-weight: 200;
  font-style: normal;
  color:#fff;
}
.error h2{
  font-size:2.4rem;
  padding: 100px;
}
.error .error-wrap .mainread {
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN";
  line-height: 1.42857;
  color: #333;
  max-width: 800px;
  width: 100%;
  margin: 0 auto 40px;
  text-align: center;
}
/* お問いわせ */
.contact .contact-wrap {
  padding: 50px 30px 70px;
  background: #000;
}
.contact h1{ /*追加*/
  font-size:2.4rem;
  font-family: acumin-pro-wide, sans-serif;
  font-weight: 200;
  font-style: normal;
  color:#fff;
}
.contact .contact-wrap .mainread {
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN";
  line-height: 1.42857;
  color: #fff;
  max-width: 800px;
  width: 100%;
  margin: 0 auto 40px;
}

.contact .contact-wrap .formcontents {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}

.contact .contact-wrap .formcontents .formitem {
  margin: 0 0 20px;
}

.contact .contact-wrap .formcontents .formitem input, .contact .contact-wrap .formcontents .formitem textarea {
  padding: 15px 13px;
  background: #fff;
  border: 1px solid #FF0000;
  border-radius: 3px;
  width: 100%;
}

.contact .contact-wrap .formcontents .formitem input::placeholder, .contact .contact-wrap .formcontents .formitem textarea::placeholder {
  font-family: "Noto Serif JP", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HGS明朝E", "ＭＳ Ｐ明朝", serif;
  color: #000;
}

.contact .contact-wrap .formcontents .formitem textarea {
  height: 120px;
}

.contact .contact-wrap .formcontents .formbtn input {
  max-width: 150px;
  width: 100%;
  margin: 0 auto;
  line-height: 1.35714;
  letter-spacing: 0.02 em;
  transition: all 0.5s linear;
  background: #000;
  border: 1px solid #fff;
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  color: #fff;
  padding: 10px 0 9px 0;
}

.contact .contact-wrap .formcontents .formbtn input:hover {
  color: #fff;
  background: #000;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output{
  color: #fff;
}
/* ===================================================================
 コンタクトふぉーむ
=================================================================== */
  
.wpcf7 form.sent .wpcf7-response-output {/*追加：サンクスメッセージ*/
    color: #fff;
}
/* ===================================================================
 ビデオカード（スマホはみ出る修正）
=================================================================== */
.wp-embedded-content {
width:100%;
}