@charset "UTF-8";
/*********************
BREAKPOINTS
*********************/
/* snippet */
.text-l {
  text-align: left;
}

.text-r {
  text-align: right;
}

.text-c {
  text-align: center;
}

.serif {
  font-family: "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", serif;
}

.gothic {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
}

.text-red {
  color: #c00;
}

.text-ul {
  border-bottom: 1px solid;
}

.text-bold {
  font-weight: bold;
}

.flex {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
}

.wrap {
  width: 94%;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (min-width: 1000px) {
  .wrap {
    max-width: 1000px;
  }
}

@media screen and (min-width: 768px) {
  .brsp {
    display: none;
  }
}

.brtab {
  display: none;
}

@media screen and (min-width: 768px) {
  .brtab {
    display: block;
  }
}

@media screen and (min-width: 1000px) {
  .brtab {
    display: none;
  }
}

.brpc {
  display: none;
}

@media screen and (min-width: 1000px) {
  .brpc {
    display: block;
  }
}

.btn {
  display: inline-block;
  background: #af1a0a;
  text-align: center;
  font-size: .75em;
  padding: .5em 1em;
}

@media screen and (min-width: 768px) {
  .btn {
    width: auto;
  }
}

@media screen and (min-width: 1000px) {
  .btn {
    font-size: .875em;
    transition: .3s;
  }
}

.btn-m {
  font-size: .85em;
  padding: .5em 2em;
}

@media screen and (min-width: 768px) {
  .btn-m {
    width: auto;
  }
}

@media screen and (min-width: 1000px) {
  .btn-m {
    font-size: 1em;
  }
}

.btn-l {
  font-size: 1em;
  padding: .5em 2.5em;
}

@media screen and (min-width: 768px) {
  .btn-l {
    width: auto;
  }
}

@media screen and (min-width: 1000px) {
  .btn-l {
    font-size: 1.25em;
  }
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.pb10 {
  padding-bottom: 10px;
}

.pb20 {
  padding-bottom: 20px;
}

.pb30 {
  padding-bottom: 30px;
}

.cf {
  zoom: 1;
}

.cf:before, .cf:after {
  content: "";
  display: table;
}

.cf:after {
  clear: both;
}

.col12 {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .col2-tab {
    width: 49%;
  }
  .col4-tab {
    width: 33.333%;
  }
  .col8-tab {
    width: 66.666%;
  }
}

body {
  margin: 0;
  padding: 0;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  font-size: 100%;
  line-height: 1.5;
  padding-top: 60px;
  vertical-align: baseline;
}

p, h1, h2, h3, h4, h5, ul, li, ol, img, dl, dt, dd, a, table, td, th, figure, header, footer, main, nav {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1, h2, h3, h4, h5 {
  font-weight: normal;
}

p, li, dl, table {
  font-size: .8125rem;
}

div {
  box-sizing: border-box;
}

a:link, a:visited {
  color: #000;
}

input, textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  padding: 0;
  margin: 0;
  border: 1px solid #ccc;
  vertical-align: middle;
  box-sizing: border-box;
}

ul {
  list-style: none;
}

figure, video {
  vertical-align: middle;
}

img {
  vertical-align: middle;
  border: 0;
  width: 100%;
  max-width: 100%;
}

main {
  display: block;
}

@media screen and (min-width: 768px) {
  body {
    padding-top: 126px;
  }
}

@media screen and (min-width: 1000px) {
  body {
    padding-top: 80px 46px;
  }
  a:hover {
    opacity: .8;
  }
  p, li, dl, table {
    font-size: 1rem;
  }
}

/* header */
.header-area {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: white;
  border-bottom: 1px solid #ccc;
}

.header-area .logo {
  height: 60px;
  position: relative;
  z-index: 20;
  background: white;
  padding: 12px 3% 0;
  line-height: 1.2;
  text-align: center;
}

.header-area .logo a {
  display: inline-block;
  text-decoration: none;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
}

.header-area .logo img {
  width: 130px;
}

.header-area .logo span {
  display: inline-block;
  padding-left: 4px;
  padding-top: 4px;
  font-size: .75rem;
  font-weight: bold;
  text-align: left;
}

@media screen and (min-width: 768px) {
  .header-area {
    border-bottom: 0;
  }
  .header-area .logo {
    height: 80px;
    padding-top: 10px;
    text-align: left;
  }
  .header-area .logo img {
    width: 220px;
  }
  .header-area .logo span {
    display: block;
    font-size: 1.5rem;
    padding: .25em .75em 0;
    letter-spacing: .1em;
    line-height: 1;
  }
}

@media screen and (min-width: 1000px) {
  .header-area .header-inner {
    position: relative;
  }
  .header-area .logo {
    height: 80px;
    max-width: 1000px;
    margin-right: auto;
    margin-left: auto;
    padding-left: 0;
    padding-right: 0;
    line-height: 1.75;
  }
}

/*********************
BREAKPOINTS
*********************/
/* spmenu */
#menu-btn-area {
  position: absolute;
  z-index: 30;
  right: 8px;
  top: 8px;
  width: 40px;
  height: 50px;
  padding: 8px 0;
  text-align: center;
}

@media screen and (min-width: 768px) {
  #menu-btn-area {
    display: none;
    top: 20px;
    right: 4.5%;
  }
}

.menubtn {
  position: relative;
  display: inline-block;
  width: 32px;
  height: 22px;
  vertical-align: middle;
}

.menubtn .bar, .menubtn .bar:before, .menubtn .bar:after {
  position: absolute;
  height: 3px;
  /*line width*/
  width: 32px;
  /*line length*/
  border-radius: 1px;
  background: #000;
  display: block;
  content: '';
  cursor: pointer;
  transition: .3s ease-in-out;
}

.menubtn .bar {
  top: 0;
}

.menubtn .bar:before {
  bottom: -11px;
}

.menubtn .bar:after {
  bottom: -22px;
}

.active .menubtn .bar {
  top: 50%;
  transform: rotate(45deg) translateY(50%);
}

.active .menubtn .bar:before {
  opacity: 0;
  width: 0;
  height: 0;
}

.active .menubtn .bar:after {
  bottom: 50%;
  transform: rotate(-90deg) translateY(-5%) translateX(-5%);
}

#menu {
  position: absolute;
  top: 61px;
  right: 0;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  padding: 10px;
  overflow-y: auto;
  background: white;
  transition: .3s ease-in-out;
  -webkit-transform: translateY(-120%);
  transform: translateY(-120%);
  background: #313131;
  opacity: 0;
}

#menu.active {
  opacity: 1;
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}

#menu .menu-ttl {
  font-size: .875rem;
  text-align: center;
  background: #af1a0a;
  color: white;
  font-weight: bold;
  padding: .5em 0;
  letter-spacing: .1em;
}

@media screen and (min-width: 768px) {
  #menu .menu-ttl {
    display: none;
  }
}

#menu li a {
  display: block;
  padding: 1em 5%;
  font-size: .875rem;
  color: white;
  text-decoration: none;
  border-bottom: 1px solid #ccc;
  line-height: 1.3;
  text-align: center;
}

#menu li a > span > span {
  display: block;
  font-size: 12px;
}

#menu li img {
  width: 40px;
  margin-right: 8px;
}

@media screen and (min-width: 768px) {
  #menu {
    position: inherit;
    top: inherit;
    height: auto;
    right: unset;
    width: 100%;
    max-width: none;
    overflow-y: hidden;
    transition: 0;
    padding: 0;
    opacity: 1;
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
  #menu ul {
    border-left: 1px dotted #ccc;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
  }
  #menu li {
    flex-grow: 1;
  }
  #menu li a {
    border-bottom: 0;
    border-right: 1px dotted #ccc;
  }
}

@media screen and (min-width: 1000px) {
  #menu ul {
    width: 1000px;
    margin-right: auto;
    margin-left: auto;
  }
  #menu li a {
    font-size: 1rem;
  }
  #menu li a:hover {
    background: #af1a0a;
    opacity: 1;
  }
}

/* main */
.contents-area {
  padding: 1rem 0;
}

.contents-area section {
  padding: 1rem 0;
}

.contents-area .h2 {
  border-left: 4px solid #af1a0a;
  padding: .25em .5em;
  font-size: 1.25rem;
  margin-bottom: .5em;
}

.contents-area .h3 {
  color: #af1a0a;
  font-size: 1rem;
  border-bottom: 2px solid #af1a0a;
  margin-bottom: .5em;
  padding: .25em 0;
}

.contents-area .h3 .small {
  font-size: 75%;
}

.contents-area .h4 {
  font-size: .875rem;
  font-weight: bold;
}

.contents-area p {
  padding: 0 1em;
  line-height: 2;
  margin-bottom: 1.5em;
}

.contents-area p:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 1000px) {
  .contents-area {
    padding: 2rem 0;
  }
  .contents-area section {
    padding: 2rem 0;
  }
  .contents-area .h2 {
    font-size: 1.5rem;
    border-width: 10px;
  }
  .contents-area .h3 {
    font-size: 1.25rem;
    padding: .25em;
  }
  .contents-area .h4 {
    font-size: 1rem;
  }
}

.contact-flow {
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.contact-flow > div {
  width: 100%;
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.contact-flow > div::after {
  content: '';
  width: 31px;
  height: 31px;
  display: block;
  position: absolute;
  left: 50%;
  bottom: -2.75rem;
  background: url(../img/common/arrow.png) no-repeat center;
  background-size: contain;
  transform: translate(-50%, 0) rotate(90deg);
}

.contact-flow > div:last-child {
  margin-bottom: 1rem;
}

.contact-flow > div:last-child::after {
  display: none;
}

.contact-flow > div p {
  margin-bottom: 0;
  padding: 0;
  line-height: 1.5;
}

.contact-flow > div p.tel-num {
  padding: .25em;
  font-size: 1rem;
}

.contact-flow > div p.tel-num img {
  width: 17px;
  margin-right: .25em;
}

.contact-flow .img {
  margin-bottom: .5rem;
}

.contact-flow .img img {
  width: auto;
}

@media screen and (min-width: 768px) {
  .contact-flow {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    padding: 1rem 5%;
  }
  .contact-flow > div {
    width: 30%;
  }
  .contact-flow > div::after {
    left: unset;
    right: -2.3rem;
    top: 80px;
    transform: rotate(0deg);
  }
  .contact-flow .img img {
    width: 180px;
  }
}

@media screen and (min-width: 1000px) {
  .contact-flow > div {
    margin-bottom: 1rem;
  }
  .contact-flow p {
    font-size: .875rem;
  }
  .contact-flow .img img {
    width: auto;
  }
}

.works-showcase > div {
  width: 100%;
  margin-bottom: 1rem;
}

.works-showcase > div p {
  padding: 0;
}

@media screen and (min-width: 768px) {
  .works-showcase {
    justify-content: space-between;
  }
  .works-showcase > div {
    width: 32.333%;
  }
}

/* pages */
.pankuzu-area {
  flex-direction: column;
}

.pankuzu-area a {
  font-size: .75rem;
  display: block;
}

.pankuzu-area h1 {
  font-size: .75rem;
}

.pankuzu-area .pankuzu-arrow {
  font-size: .75rem;
  padding: 0 .5em;
}

@media screen and (min-width: 1000px) {
  .pankuzu-area a, .pankuzu-area .pankuzu-arrow, .pankuzu-area h1 {
    font-size: .875rem;
  }
}

.main.about .text {
  margin-bottom: 1rem;
}

.main.about .r-mark .img, .main.about .r-mark .text {
  width: 100%;
}

.main.about .r-mark .img {
  text-align: center;
  margin: 1rem 0;
  order: 1;
}

.main.about .r-mark .text {
  order: 2;
}

.main.about .r-mark img {
  width: 90px;
}

@media screen and (min-width: 768px) {
  .main.about .text {
    padding-right: 4%;
  }
  .main.about .r-mark .img {
    width: 20%;
    order: 2;
  }
  .main.about .r-mark .text {
    width: 80%;
    order: 1;
  }
}

/* takumi page */
.takumi-work-detail .h3 {
  font-weight: bold;
  letter-spacing: .05em;
}

.takumi-work-detail .h3 span {
  font-weight: normal;
  color: #000;
  display: block;
}

@media screen and (min-width: 768px) {
  .takumi-work-detail .h3 {
    margin-bottom: 1rem;
  }
  .takumi-work-detail .h3 span {
    display: inline-block;
  }
}

@media screen and (min-width: 1000px) {
  .takumi-work-detail {
    margin-top: 3rem;
  }
}

.takumi-work-mov > div {
  margin-bottom: 1rem;
  border: 2px solid #ccc;
  padding: .5rem;
}

.takumi-work-mov .mov {
  margin-bottom: .5rem;
}

.takumi-work-mov video {
  width: 100%;
  height: auto;
}

.takumi-work-mov .h4 {
  background: #f2f2f2;
  margin-bottom: .5em;
}

.takumi-work-mov .h4 span {
  display: inline-block;
  background: #af1a0a;
  color: white;
  padding: .25em 1.5em;
  letter-spacing: .1em;
}

.takumi-work-mov p {
  line-height: 1.75;
  padding: 0;
}

@media screen and (min-width: 768px) {
  .takumi-work-mov {
    justify-content: space-between;
  }
  .takumi-work-mov > div {
    width: 49%;
    margin-bottom: 2rem;
    padding: 1rem;
  }
}

@media screen and (min-width: 1000px) {
  .takumi-work-mov > div {
    margin-bottom: 3rem;
  }
}

.about-takumi .text, .about-takumi .img {
  width: 100%;
}

.about-takumi .text {
  order: 2;
}

.about-takumi .img {
  order: 1;
  text-align: center;
  margin: 1rem 0;
}

.about-takumi .img img {
  width: auto;
}

@media screen and (min-width: 768px) {
  .about-takumi .text {
    order: 1;
    width: 80%;
  }
  .about-takumi .img {
    order: 2;
    width: 20%;
  }
}

/* takumi profile page */
.takumi-list .h3 {
  background: #af1a0a;
  color: white;
  padding: .3em .5em .2em;
  font-size: 1.25rem;
  margin-bottom: 1em;
}

@media screen and (min-width: 1000px) {
  .takumi-list .h3 {
    font-size: 1.5rem;
    letter-spacing: .1em;
  }
}

.takumi-list .page-link {
  margin: 1rem 0;
  background: #f2f2f2;
}

.takumi-list .page-link li {
  width: 50%;
}

.takumi-list .page-link a {
  display: block;
  text-align: center;
  background: #f2f2f2;
  padding: .5em 0;
  border-right: 1px dashed #ccc;
  border-bottom: 1px solid #ccc;
  font-size: .875rem;
  letter-spacing: .1em;
  text-decoration: none;
}

.takumi-list .page-link li:nth-child(even) a {
  border-right: 0;
}

.takumi-list .page-link li:last-child a {
  border-bottom: 0;
}

@media screen and (min-width: 768px) {
  .takumi-list .page-link li {
    width: auto;
    flex-grow: 1;
  }
  .takumi-list .page-link li:nth-child(even) a {
    border-right: 1px dashed #ccc;
  }
  .takumi-list .page-link li:last-child a {
    border-right: 0;
    border-bottom: 1px solid #ccc;
  }
  .takumi-list .page-link a {
    font-size: .9125rem;
  }
}

@media screen and (min-width: 1000px) {
  .takumi-list .page-link a {
    font-size: 1.125rem;
    transition: .3s;
  }
  .takumi-list .page-link a:hover {
    color: #af1a0a;
    font-weight: bold;
  }
}

.takumi-profile {
  margin-bottom: 2rem;
}

.takumi-profile > div {
  width: 100%;
  margin-bottom: .5rem;
  border-bottom: 1px solid #ccc;
  padding-bottom: .5rem;
  border: 1px solid #ccc;
  padding: .5rem;
}

.takumi-profile .head {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  align-items: center;
}

.takumi-profile .head .img {
  width: 30%;
  padding: 4px 0;
}

.takumi-profile .name {
  width: 70%;
  padding: 1em 0;
  font-size: 1.25rem;
  text-align: center;
}

.takumi-profile .name span {
  display: block;
  font-size: .75rem;
}

.takumi-profile dl {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  border-bottom: 1px solid #ccc;
}

.takumi-profile dl:nth-child(odd) {
  background: #f2f2f2;
}

.takumi-profile dl:last-child {
  border-bottom: 0;
}

.takumi-profile dt, .takumi-profile dd {
  display: block;
  font-size: .8125rem;
  padding: .25em;
  vertical-align: top;
}

.takumi-profile dt {
  width: 30%;
}

.takumi-profile dd {
  width: 70%;
  word-break: break-all;
}

@media screen and (min-width: 768px) {
  .takumi-profile > div {
    width: 48%;
    margin: 0 1% 1rem;
    padding-bottom: .5rem;
  }
  .takumi-profile dt, .takumi-profile dd {
    font-size: .875rem;
  }
}

@media screen and (min-width: 1000px) {
  .takumi-profile .head .img {
    width: 25%;
  }
  .takumi-profile .name, .takumi-profile dd {
    width: 75%;
  }
  .takumi-profile dt, .takumi-profile dd {
    padding: .5em;
    font-size: 1rem;
  }
  .takumi-profile dt {
    width: 25%;
  }
}

/* info page */
.info .info-area {
  border: 1px solid #ccc;
  background: #f2f2f2;
  padding: 1rem;
  line-height: 1.75;
  font-size: .875rem;
}

@media screen and (min-width: 1000px) {
  .info .info-area {
    font-size: 1.125rem;
  }
}

.flyer-area {
  justify-content: space-around;
  padding: 0 3%;
}

.flyer-area > div {
  margin-bottom: 1rem;
  text-align: center;
}

.flyer-area > div img {
  max-width: 300px;
}

@media screen and (min-width: 768px) {
  .flyer-area > div img {
    max-width: 100%;
  }
}

/* contact page */
.contact {
  min-height: 60vh;
}

@media screen and (min-width: 768px) {
  .contact {
    min-height: 70vh;
  }
}

.contact .contact-info, .contact .contact-form {
  margin: 0 5% 2rem;
}

@media screen and (min-width: 1000px) {
  .contact .contact-info, .contact .contact-form {
    margin-bottom: 4rem;
  }
}

.contact-form i {
  display: inline-block;
  background: #af1a0a;
  color: white;
  margin-right: .5rem;
  padding: 0 .5em;
  font-size: .75rem;
  line-height: 1.7;
}

.form-area {
  padding: 2rem 1rem;
  border: 1px solid #ccc;
  background: #f2f2f2;
}

.form-area span.required {
  display: inline-block;
  padding: 0 .5em;
  background: #af1a0a;
  color: white;
  margin-right: .5rem;
  font-size: .75rem;
}

.form-area .error_blank {
  line-height: 2;
  display: block;
  margin-bottom: 1rem;
  color: #af1a0a;
  font-size: .75rem;
}

@media screen and (min-width: 1000px) {
  .form-area .error_blank {
    font-size: .875rem;
  }
}

.form-area input, .form-area textarea {
  width: 100%;
  font-size: 16px;
  margin: .25em 0 0;
  padding: .5rem .25rem;
}

.form-area input {
  max-width: 300px;
}

.form-area input[type="button"] {
  padding: .5em;
  background: #000;
  color: white;
  letter-spacing: .5em;
  margin-bottom: 0;
  max-width: 300px;
}

.form-area .submit-area {
  text-align: center;
}

@media screen and (min-width: 768px) {
  .form-area dl {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    border-bottom: 1px solid #ccc;
    margin-bottom: 1rem;
  }
  .form-area dt, .form-area dd {
    vertical-align: top;
  }
  .form-area dt {
    padding: .5rem;
    width: 30%;
  }
  .form-area dd {
    width: 70%;
  }
  .form-area input, .form-area textarea {
    margin-top: 0;
  }
  .form-area input[type="submit"] {
    font-weight: bold;
    font-size: 1.25rem;
  }
  .form-area .submit-area {
    margin-top: 2rem;
  }
}

/* footer */
.footer-area {
  text-align: center;
  background: #313131;
  color: #bfbfbf;
  padding: 1rem 0;
}

.footer-nav {
  padding: 1rem 0 0;
  margin-bottom: 1rem;
  border-bottom: 1px solid;
}

.footer-nav li {
  width: 100%;
}

.footer-nav a {
  text-decoration: none;
  color: #bfbfbf !important;
  display: block;
  letter-spacing: .05em;
  padding: .75em 0;
  border-top: 1px solid;
}

@media screen and (min-width: 768px) {
  .footer-nav {
    border-bottom: 0;
    justify-content: center;
  }
  .footer-nav li {
    width: auto;
  }
  .footer-nav li:last-child a {
    border-right: 0;
  }
  .footer-nav a {
    border-top: 0;
    border-right: 1px solid;
    line-height: 1;
    padding: 0 1em;
  }
}

@media screen and (min-width: 1000px) {
  .footer-nav a {
    font-size: .875rem;
    padding: 0 1.5em;
  }
}

.copyright {
  padding: 1rem 0;
  font-size: .75rem;
  letter-spacing: .1em;
}

#btn-top {
  position: fixed;
  right: 10px;
  bottom: 10px;
}

/*********************
BREAKPOINTS
*********************/
.white-popup {
  position: relative;
  background: #FFF;
  padding: 20px;
  width: auto;
  max-width: 700px;
  margin: 20px auto;
  animation: open 1s;
}

.mfp-removing {
  animation: close 1s;
}

@keyframes open {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes close {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.works-img {
  justify-content: center;
}

.works-img > div {
  margin-bottom: .5rem;
}
