@charset "UTF-8";

/* 共通 */
#wrapper {
  width: 100%;
  margin: 0 auto;
  position: relative;
  min-width: 1100px;
}

/* header */
header {
  width: 100%;
  padding: 1.5em 24px;
  display: flex;
  align-items: flex-start;
  height: 30vh;
  gap: 8px;
}

header h1 {
  text-align: left;
  width: 20%;
}

header #pcnavi {
  width: 50%;
}

header #spnavi {
  display: none;
}

header nav ul {
  display: flex;
  justify-content: flex-start;
}

header nav ul li {
  margin-right: 1.5em;
}

.gallery header nav ul li:nth-child(1) {
  opacity: 0.4;
}

.study header nav ul li:nth-child(2) {
  opacity: 0.4;
}

.about header nav ul li:nth-child(3) {
  opacity: 0.4;
}

.news header nav ul li:nth-child(4) {
  opacity: 0.4;
}

.contact header nav ul li:nth-child(5) {
  opacity: 0.4;
}

header #copy {
  text-align: right;
  width: 30%;
}

/* main */
main {
  width: 100%;
  padding: 0 24px;
  margin: 0 auto;
  animation: .4s pageIn .4s forwards;
  -webkit-animation: .4s pageIn .4s forwards;
  opacity: 0;
}

.study main {
  opacity: 1;
  animation: none;
  -webkit-animation: none;
}

/* pagetitle, category */
#pagetitle {
  display: flex;
  justify-content: flex-start;
  text-align: left;
  padding-bottom: 12px;
  border-bottom: 1px solid #707070;
  gap: 8px;
}

#pagetitle h2 {
  width: 20%;
}

#pagetitle h3 {
  width: 30%;
}

#pagetitle p {
  width: 50%;
}

#pagetitle #category {
  width: 80%;
  display: flex;
  justify-content: flex-start;
}

#pagetitle #category li {
  margin-right: 1.25em;
}

#pagetitle #category li::before {
  content: "[ ] ";
}

#pagetitle #category li.current-cat::before {
  content: "[•] ";
}

/* gallery_list */
#gallery_list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0 16px;
  position: relative;
}

#gallery_list>li {
  padding: 16px 0;
  position: relative;
}

/* 下罫線を行単位で引く */
#gallery_list>li:nth-child(5n)::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  height: 1px;
  background: #707070;
  width: calc(100% * 5 + 16px * 4);
  /* 5カラム分の幅 + gap分 */
}

#gallery_list li h3 {
  text-align: left;
  margin-bottom: 0.5em;
}

/* gallery_single */
#gallery_single {
  display: flex;
  flex-wrap: wrap;
  margin-top: 16px;
  gap: 16px;
}

#gallery_single div.w100 {
  width: calc(100%);
}

#gallery_single div.w50 {
  width: calc((100% - 16px) / 2);
}

#gallery_single div.w33 {
  width: calc((100% - 32px) / 3);
}

/* single-credit */
#single-credit {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #707070;
  padding-top: 16px;
  margin-top: 16px;
  padding-bottom: 10em;
}

#single-credit #left {
  width: 50%;
}

#single-credit #left p {
  text-align: justify;
  margin-bottom: 48px;
}

#single-credit #left #link {
  display: flex;
  gap: 16px;
}

#single-credit #left #link {
  display: flex;
  gap: 16px;
}

#single-credit #left #link h4 {
  text-align: left;
  margin-bottom: 1em;
  font-size: 0.85em;
}

#single-credit #left #link #link_study {
  width: 50%;
}

#single-credit #left #link .button_link {
  display: block;
  margin-bottom: 1em;
}

#single-credit #left #link #link_other {
  width: 50%;
}

#single-credit #right {
  width: 35%;
}

#single-credit #right p {
  text-align: left;
  font-size: 0.85em;
  margin-bottom: 80px;
}

#single-credit #right #pager {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

#single-credit #right #pager div {
  font-size: 0.85em;
}

#single-credit #right #pager div a {
  border-bottom: 1px solid #707070;
  font-size: 1em;
  padding-bottom: 5px;
}

/* study_list */
#study_list {
  padding-top: 16px;
}

#study_list li {
  width: 100%;
  text-align: left;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #707070;
  font-size: 1.1em;
}

#study_list li a {
  width: 100%;
  display: flex;
  gap: 8px;
  position: relative;
}

#study_list li a:after {
  font-family: 'ysdktnb', "IBM Plex Serif", serif;
  content: '→';
  font-size: 0.8em;
  position: absolute;
  right: 0.2em;
  bottom: 0.2em;
}

#study_list li h3 {
  width: 20%;
}

/* study_single */
#study_single {
  padding-top: 16px;
}

#study_single section {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: stretch;
  text-align: left;
  margin-bottom: 8em;
}

#study_single section:last-child {
  margin-bottom: 5em;
}

#study_single section .format_title {
  width: 100%;
  margin-bottom: 3em;
}

/* study_single entry */
#study_single section .entry {
  width: 50%;
  text-align: left;
}

#study_single section .entry h2 {
  font-size: 1.3em;
  margin-bottom: 1em;
}

#study_single section .entry h3 {
  font-size: 1.2em;
  margin-bottom: 1em;
}

#study_single section .entry h4 {
  font-size: 1.1em;
  margin-bottom: 1em;
}

#study_single section .entry h5 {
  font-size: 1em;
  margin-bottom: 1em;
}

#study_single section .entry h6 {
  font-size: 0.9em;
  margin-bottom: 1em;
}

#study_single section .entry p {
  font-size: 1em;
  text-align: justify;
  margin-bottom: 1em;
}

#study_single section .entry strong {
  font-weight: 700;
}

#study_single section .entry figure {
  margin: 1em auto;
}

/* study_single group_photo */
#study_single section .group_photo {
  width: calc((100% - 32px) / 4);
  border-left: 1px dashed #707070;
  padding-left: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px 0;
}

/* study_single photogallery */
#study_single section .photogallery {
  width: 100%;
  text-align: left;
}

#study_single section .photogallery h2 {
  font-size: 1.3em;
  margin-bottom: 1em;
}

#study_single section .photogallery ul {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

#study_single section .photogallery .source {
  display: flex;
  text-align: left;
  margin-top: 2em;
  font-size: 0.85em;
  gap: 16px;
}

#study_single section .photogallery .source h5 {
  width: 25%;
}

#study_single section .photogallery .source div {
  width: 80%;
}

/* about */
#about {
  margin-bottom: 10em;
}

#about section {
  width: 100%;
  text-align: left;
  margin-top: 8em;
}

#about section.flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

#about section.flex .sc_title {
  width: 20%;
}

#about section.flex .sc_contents {
  width: 80%;
}

/* about introduction */
#about #introduction {
  width: 100%;
  text-align: left;
  margin-top: 3em;
}

#about #introduction::before {
  width: 20%;
  content: "";
  display: block;
}

#about #introduction div {
  width: 80%;
}

#about #introduction div h4 {
  margin-bottom: 1em;
}

/* about member */
#about #member .sc_contents .profile {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 4em;
}

#about #member .sc_contents .profile .text {
  width: calc((100% - 48px) * 2 / 4 + 16px);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

#about #member .sc_contents .profile .text dl {
  width: 48%;
}

#about #member .sc_contents .profile .text dl dt {
  margin-bottom: 1em;
}

#about #member .sc_contents .profile .text dl dd {
  font-size: 0.9em;
}

#about #member .sc_contents .profile .text dl.jp dd {
  font-size: 0.9em;
  text-align: justify;
}

#about #member .sc_contents .profile .text dl.en dd {
  font-size: 0.85em;
  line-height: 1.5;
}

#about #member .sc_contents .profile .text .link {
  width: 100%;
  display: flex;
  margin-top: 3em;
}

#about #member .sc_contents .profile .text .link li a {
  border-bottom: 1px solid #707070;
  font-size: 1em;
  padding-bottom: 5px;
  margin-right: 1em;
}

#about #member .sc_contents .profile figure {
  width: calc((100% - 48px) * 1 / 4 + 16px);
}


/* about statement */
#about #statement .sc_contents {
  width: 100%;
  margin-top: 2em;
}

#about #statement .sc_contents h2 {
  width: calc((100% - 48px) * 2 / 5 + 16px);
  margin: 0 auto;
  font-size: 1.1em;
  margin-bottom: 3em;
}

#about #statement .sc_contents p {
  width: calc((100% - 48px) * 2 / 5 + 16px);
  margin: 0 auto;
  line-height: 2.2;
  text-align: justify;
  margin-bottom: 2em;
  font-size: 1.05em;
}

#about #statement .sc_contents p#name {
  width: calc((100% - 48px) * 2 / 5 + 16px);
  text-align: right;
  font-size: 1em;
}


#about #statement .sc_contents .slide {
  width: calc((100% - 48px) * 4 / 5 + 16px);
  margin: 7em auto 8em;
  position: relative;
  padding: 0 5%;
}

#about #statement .sc_contents .slide .swiper-button-next {
  right: 1%;
  background-image: url("../images/swiper_arrow.svg");
  transform: scale(-1, 1);
  background-repeat: no-repeat;
}

#about #statement .sc_contents .slide .swiper-button-prev {
  left: 1%;
  background-image: url("../images/swiper_arrow.svg");
  background-repeat: no-repeat;
}

#about #statement .sc_contents .slide .swiper-button-prev:after, .swiper-button-next:after {
  display: none;
}


/* about service */
#about #service .sc_contents ul li {
  display: flex;
  margin-bottom: 1em;
  padding-bottom: 1em;
  border-bottom: 1px dashed #707070;
}

#about #service .sc_contents ul li h4 {
  width: calc((100% - 64px) * 1 / 5 + 16px);
}

/* about studio */
#about #studio .sc_contents .kouba {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 4em;
}

#about #studio .sc_contents .kouba .text {
  width: calc((100% - 48px) * 2 / 4 + 16px);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

#about #studio .sc_contents .kouba .text dl {
  width: 48%;
}

#about #studio .sc_contents .kouba .text dl dt {
  margin-bottom: 1em;
}

#about #studio .sc_contents .kouba .text dl dd {
  font-size: 0.9em;
}

#about #studio .sc_contents .kouba .text dl.jp dd {
  font-size: 0.9em;
  text-align: justify;
}

#about #studio .sc_contents .kouba .text dl.en dd {
  font-size: 0.85em;
  line-height: 1.5;
}

#about #studio .sc_contents .kouba figure {
  width: calc((100% - 48px) * 1 / 4 + 16px);
}

/* about project */
#about #project .sc_contents ul {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
}

#about #project .sc_contents li {
  width: 50%;
}

#about #project .sc_contents li figure {
  width: 100%;
  margin-bottom: 1em;
}

#about #project .sc_contents li .caption {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

#about #project .sc_contents li .caption h4 {
  width: 35%;
}

#about #project .sc_contents li .caption p {
  width: 50%;
  font-size: 0.85em;
}


/* news */
#news {
  margin-bottom: 10em;
}

#news #contents {
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-top: 2em;
}

#news #contents #category {
  width: 20%;
}

#news #contents #category li {
  margin-bottom: 0.5em;
  white-space: nowrap;
}

#news #contents #category li::before {
  content: "[ ] ";
}

#news #contents #category li.current-cat::before {
  content: "[•] ";
}

#news #contents #news_list {
  width: 80%;
}

#news #contents #news_list article {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 8em;
}

#news #contents #news_list article:last-child {
  margin-bottom: 0;
}

#news #contents #news_list article .date {
  width: 20%;
}

#news #contents #news_list article section {
  width: 80%;
}

#news #contents #news_list article section .category_name {
  margin-bottom: 1em;
}

#news #contents #news_list article section .entry p {
  margin-bottom: 1em;
}

#news #contents #news_list article section .entry a {
  opacity: 0.4;
  margin-top: 1em;
  display: block;
}


/* contact */
#contact {
  margin-bottom: 10em;
}

#contact section.flex {
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-top: 8em;
}

#contact section.flex:nth-child(2) {
  margin-top: 2em;
}

#contact section.flex h3 {
  width: 20%;
}

#contact section.flex .contents {
  width: 80%;
}


/* snow monkey form */
.snow-monkey-form {
  margin-right: auto;
  width: 85%;
}

.smf-form .smf-item .smf-text-control__control {
  border: 1px solid #707070 !important;
  background-color: #FFF;
  color: #121212;
  font-size: 1em;
  letter-spacing: 0.01em;
  font-family: 'Zen Old Mincho', "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  width: 100%;
  border-radius: 0;
}

.smf-form .smf-item .smf-textarea-control__control {
  border: 1px solid #707070 !important;
  background-color: #FFF;
  font-size: 1em;
  color: #121212;
  letter-spacing: 0.01em;
  font-family: 'Zen Old Mincho', "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  width: 100%;
  border-radius: 0;
}

.smf-form--letter .smf-item {
  margin-bottom: 1em !important;
}

.smf-item__description {
  font-size: 0.9em !important;
  color: #121212;
}

.smf-item {
  margin: 0 auto 4em;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.smf-item.info {
  margin: 0;
}

.smf-item__col.smf-item__col--label {
  width: 25%;
}

.smf-item__col.smf-item__col--controls {
  width: 75%;
}

.smf-item__label {
  text-align: left;
  font-size: 1em;
}

.smf-item__controls {
  text-align: left;
  font-size: 0.9em;
}

.smf-item__controls a {
  border-bottom: 1px dashed #707070;
}

.smf-placeholder {
  font-size: 1.1em;
}

.smf-action .smf-button-control__control {
  margin-top: 1em;
  background-color: #E2E2E0;
  background-image: none;
  border: 1px solid #707070;
  border-radius: 30px;
  padding: 1.25em 6em;
  color: #121212;
  font-size: 1em;
  line-height: 1;
  letter-spacing: 0.01em;
  font-family: YakuHanMPs, 'ysdktnb', 'Zen Old Mincho', "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}


/* footer */
footer {
  width: 100%;
  padding: 1.5em 24px;
  height: 400px;
  text-align: left;
  display: flex;
  flex-direction: column;
}

#ft_contents {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

#ft_contents h2 {
  width: 20%;
}

#ft_contents nav {
  width: 30%;
}

#ft_contents nav ul li {
  margin-bottom: 0.35em;
}

#ft_contents #mailmagazine {
  width: 50%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

#ft_contents #mailmagazine h3 {
  width: 20%;
}

#ft_contents #mailmagazine #mg_caption {
  width: 60%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  font-size: 0.85em;
  line-height: 1.7;
}

#ft_contents #mailmagazine #mg_caption p.en {
  line-height: 1.45;
}

#ft_contents #mailmagazine .line_link {
  width: 20%;
}

#ft_caption {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  font-size: 0.85em;
  margin-top: auto;
}

#ft_caption #copyright {
  width: 20%;
}

#ft_caption #privacypolicy {
  margin-right: auto;
  width: 30%;
}

#ft_caption #instagram {
  width: 50%;
  text-align: right;
}

/* index */
#index {
  margin-bottom: 10em;
}

#index #contents {
  width: 50%;
  text-align: left;
  margin-top: 2em;
}

#index #contents h2 {
  margin-top: 2em;
  margin-bottom: 2em;
  font-size: 1.1em
}


@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}