@charset "UTF-8";

:root {
  /* 色管理用の変数 */
  --black-color: #000;
  --white-color: #fff;
  --btn-color: #00d0ff;
  --primary-color: #acf0ff;
  --accent-color: #f214d8;
}

:root {
  /* コンテンツ幅管理用の変数 */
  --content-width-sm: 760px;
  --content-width: 960px;
  --content-width-lg: 1088px;
}

:root {
  /* z-index管理用の変数 */
  --z-index-back: -1;
  --z-index-default: 1;
  --z-index-page-top: 50;
  --z-index-header: 100;
  --z-index-menu: 150;
}
a {
  color: inherit;
  text-decoration: none;
  position: relative;
  z-index: 5;
}
body {
  font-family: "DIN 2014", "Noto+Sans+JP", "Oswald";
  font-size: 18px;
  font-weight: bold;
}
.m_btn__mail-box {
  width: 19px;
  height: 15px;
}
.sns_logo {
  width: 30px;
  height: 30px;
}
.l_container-lg {
  text-align: center;
}
.l_contents {
  padding: 60px 0 120px;
}

.l_header {
  background-color: var(--primary-color);
  padding: 8px;
  width: 100%;
  position: fixed;
  z-index: 100;
  top: 0px;
}
.l_header-contact {
  background-color: var(--primary-color);
  z-index: 100;
  top: 0px;
}
.l_header_inner {
  padding: 8px 10% 8px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
  position: relative;
}

@media screen and (min-width: 960px) {
  .l_header-nav {
    position: static;
    transform: initial;
    background-color: inherit;
    height: inherit;
    display: flex;
    justify-content: end;
    width: 50%;
  }
}
.l_header_hamburger {
  background-color: transparent; /*buttonタグデフォルトスタイルを打ち消し*/
  border-color: transparent; /*buttonタグデフォルトスタイルを打ち消し*/
  z-index: 9999;
}
@media screen and (min-width: 700px) {
  /*PC時非表示にする*/
  .l_header_hamburger {
    display: none;
  }
}
@media screen and (max-width: 700px) {
  .l_header-nav.active {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 80;
    background-color: var(--white-color);
  }
}
@media screen and (max-width: 700px) {
  .l_header-nav {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%; /*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    transition: all 0.5s; /*アニメーション設定*/
  }
}
.l_header-list {
  padding-top: 250px;
  padding-bottom: 200px;
}
@media screen and (min-width: 700px) {
  .l_header-list {
    padding-top: inherit;
    padding-bottom: inherit;
  }
}
.l_header-nav_item {
  color: var(--black-color);
  width: 100%;
  display: block;
  text-align: center;
  font-size: 20px;
  margin-bottom: 24px;
}
@media screen and (min-width: 700px) {
  .l_header-nav_item {
    margin-bottom: 0;
  }
}
/*PC時のナビゲーションメニュー、横並びにする*/
@media screen and (min-width: 700px) {
  .l_header-list {
    gap: 1.5rem;
    display: flex;
    align-items: center;
    height: initial;
  }
}
@media screen and (min-width: 960px) {
  .l_header-list {
    gap: 3rem;
  }
}
.l_header-nav_link:last-child {
  margin-bottom: 0;
}

/* module */
.m_hamburger {
  width: 30px;
  height: 100%;
}

.m_hamburger-bar {
  display: block;
  width: 30px;
  height: 5px;
  position: relative;
  background: #000;
  transition: ease 0.4s; /*ハンバーガーメニュークリック時の三本線の動きを遅延*/
}

.m_hamburger-bar:nth-child(1) {
  top: 0;
}

.m_hamburger-bar:nth-child(2) {
  margin: 6px 0;
}

.m_hamburger-bar:nth-child(3) {
  top: 0;
}
/* ハンバーガーメニュークリック後のスタイル  */

.l_header_hamburger.active .m_hamburger-bar:nth-child(1) {
  top: 5px;
  transform: rotate(225deg);
}

.l_header_hamburger.active .m_hamburger-bar:nth-child(2) {
  opacity: 0;
}

.l_header_hamburger.active .m_hamburger-bar:nth-child(3) {
  top: -17px;
  transform: rotate(-225deg);
}
.m_section_ttl {
  margin-bottom: 80px;
  text-align: center;
}
.m_section-ttl_sub {
  font-size: 40px;
  font-weight: bold;
  color: var(--white-color);
  margin-bottom: 80px;
  position: relative;
  text-align: center;
}
@media screen and (min-width: 960px) {
  .m_section-ttl_sub {
    font-size: 80px;
  }
}

.m_section-ttl_sub::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 3px;
  background-color: var(--white-color);
  position: absolute;
  top: 50%;
  transform: translate(-72px, -50%);
}
@media screen and (min-width: 960px) {
  .m_section-ttl_sub::before {
    width: 60px;
    height: 10px;
    transform: translate(-100px, -50%);
  }
}
.m_section-ttl_sub::after {
  content: "";
  display: inline-block;
  width: 40px;
  height: 3px;
  background-color: var(--white-color);
  position: absolute;
  top: 50%;
  transform: translate(32px, -50%);
}
@media screen and (min-width: 960px) {
  .m_section-ttl_sub::after {
    width: 60px;
    height: 10px;
    transform: translate(60px, -50%);
  }
}
.m_page_top {
  position: fixed;
  bottom: 50px;
  right: 10%;
  z-index: 1;
}
@media screen and (min-width: 960px) {
  .m_page_top {
    position: fixed;
    bottom: 50px;
    z-index: 1;
    text-align: end;
  }
}
.m_page_top_img {
  width: 30px;
}
@media screen and (min-width: 960px) {
  .m_page_top_img {
    width: 60px;
  }
}

.u_ov-contact {
  overflow: hidden !important;
}

/* header */
.header-logo,
.l_header-nav_link {
  text-decoration: none;
  color: var(--black-color);
}
.header-logo {
  font-weight: 900;
  color: var(--black-color);
  white-space: nowrap;
}
@media screen and (min-width: 960px) {
  .header-logo {
    font-size: 24px;
  }
}
.opening_kv-face {
  width: 147px;
  height: 147px;
  margin: 40px 0 40px;
}

/* top */
.top_kv {
  /* height: 812px; */
  background-color: var(--primary-color);
  padding: 200px 0;
}
.top_kv-face {
  width: 147px;
  height: 147px;
  margin: 0 0 80px;
  position: relative;
}
@media screen and (min-width: 960px) {
  .top_kv-face {
    width: 250px;
    height: 250px;
  }
}
.top_kv-face::after {
  content: "";
  display: inline-block;
  width: 147px;
  height: 147px;
  border-radius: 50%;
  color: #000;
  z-index: 100;
}
.top_kv-ttl,
.top_kv-ttl2 {
  font-size: 48px;
  font-weight: 900;
}

/* profile */
@media screen and (min-width: 960px) {
  table {
    font-size: 24px;
  }
}
.section_profile-kv {
  position: sticky;
  top: 20px;
  left: -30px;
  z-index: 0;
  width: 100vw;
  height: 100vh;
  background: url(../img/IMG_profile.jpg) no-repeat;
  background-size: cover;
  background-position: left;
  content: "";
}
@media screen and (min-width: 700px) {
  .section_profile::before {
    transform: translateY(-10%);
  }
}
/* .section_profile {
  /* height: 1230px; */
/* background-image: url(../img/IMG_profile.jpg);
  background-size: cover; */
/* background-position: -150px; */
/* background-position: 5% bottom;
  background-repeat: no-repeat;
  min-height: 100vh;
  max-width: 100%;
  position: relative;
  z-index: 0;
  background-attachment: fixed;
}  */

/* @media screen and (min-width: 960px) {
  .section_profile {
    background-position: 0;
  }
} */

/* .section_profile::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: inherit;
  filter: brightness(80%);
  z-index: -1;
} */

.m_section_txt {
  color: var(--white-color);
}
.m_section_txt_sub {
  max-width: calc(375px - 32px);
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 960px) {
  .m_section_txt_sub {
    max-width: 100vw;
    white-space: nowrap;
  }
}
.m_section_kv {
  margin-bottom: 80px;
}
.name-roma {
  font-size: 24px;
}
@media screen and (min-width: 960px) {
  .name-roma {
    font-size: 36px;
  }
}
.name {
  font-size: 40px;
  margin-bottom: 40px;
}
@media screen and (min-width: 960px) {
  .name {
    font-size: 60px;
    margin-bottom: 40px;
  }
}
table {
  margin-left: auto;
  margin-right: auto;
}
tr {
  margin: 16px, 0, 16px;
}
.table-center {
  padding: 8px;
  vertical-align: text-top;
}
.table-left {
  text-align: end;
  vertical-align: text-top;
  width: 500px;
  font-weight: bold;
}
.table-right {
  text-align: start;
  vertical-align: text-top;
  width: 500px;
}
@media screen and (min-width: 960px) {
  tr br {
    display: none;
  }
}

/* works */
/* .section_work-caroucel {
  width: 100vw;
  height: 100vh;
} */
.section_works-kv {
  position: sticky;
  top: 30px;
  left: -30px;
  background: url(../img/IMG_work.jpg) no-repeat;
  z-index: 0;
  width: 100vw;
  height: 100vh;
  background-size: cover;
  background-position: center;
  content: "";
}
/* @media screen and (max-width: 700px) {
  .me {
    position: sticky;
    background: url(../img/IMG_work-2.jpg) no-repeat;
    z-index: -1;
    width: 100vw;
    height: 100vh;
    background-size: cover;
    background-position: center 0;
    content: "";
  }
} */
/* @media screen and (max-width: 700px) {
  .jk {
    position: sticky;
    background: url(../img/IMG_work-3.jpg) no-repeat;
    z-index: -1;
    width: 100vw;
    height: 100vh;
    background-size: cover;
    background-position: center 0;
    content: "";
  }
} */
@media screen and (min-width: 1160px) {
  .section_work-box {
    display: flex;
    justify-content: space-between;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
  }
}
.m_section_txt_sub-ttl {
  font-size: 32px;
  margin-bottom: 40px;
}
.m_section_txt:not(:first-child) {
  margin-top: 80px;
}
.m_section_txt_sub:not(:first-child) {
  margin-top: 24px;
}
@media screen and (min-width: 960px) {
  .m_section_txt_sub {
    font-size: 24px;
  }
}
.section_stage-txt {
  line-height: 2;
}
@media screen and (min-width: 1160px) {
  .m_section_txt:nth-child(2) {
    margin-top: 0;
  }
}
@media screen and(min-width: 960px) {
  br {
    display: none;
  }
}

/* about */
.section_about-kv {
  position: sticky;
  top: 30px;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100vh;
  background: url(../img/IMG_about-sp.jpg) no-repeat;
  background-size: cover;
  background-position: left;
  content: "";
}
@media screen and (min-width: 700px) {
  .section_about::before {
    transform: translateY(-10%);
  }
}
@media screen and (min-width: 960px) {
  .section_about {
    background-image: url(../img/IMG_about-pc.png);
    background-size: cover;
    /* background-position: 70%; */
    background-position: center;

    background-repeat: no-repeat;
    min-height: 100vh;
    max-width: 100%;
    position: relative;
    z-index: 0;
    background-attachment: fixed;
  }
}
/* .section_about::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: inherit;
  filter: brightness(70%);
  z-index: -1;
} */
.m_section_doc {
  font-size: 16px;
  color: var(--white-color);
  width: calc(100% - 32px);
  margin-left: auto;
  margin-right: auto;
  text-align: start;
  margin-bottom: 100%;
}
.m_section_doc-box {
  margin-bottom: 16px;
}
@media screen and (min-width: 960px) {
  .m_section_doc {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    font-size: 24px;
    font-weight: normal;
    line-height: 2em;
  }
}
@media screen and (min-width: 960px) {
  .m_section_doc-box {
    margin-bottom: 32px;
  }
}
/* sns */
.sns_logo {
  width: 30px;
  height: 30px;
}
@media screen and (min-width: 960px) {
  .sns_logo {
    width: 60px;
    height: 60px;
  }
}
.m_cta_sns_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 140px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 960px) {
  .m_cta_sns_box {
    flex-flow: column;
    /* align-items: center; */
    justify-content: space-between;
    height: 300px;
    margin-left: 20px;
  }
}
.m_cta_box {
  position: fixed;
  bottom: 50px;
  width: 100%;
}
@media screen and (min-width: 960px) {
  .m_cta_box {
    position: fixed;
    top: 50%;
    height: 100vh;
    transform: translateY(-150px);
    left: 5%;
  }
}

/* contact */
.m_contact-title {
  font-size: 32px;
  font-weight: bold;
}
.m_contact-desc {
  font-weight: normal;
  margin-top: 24px;
}
.contact_form_list {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
.contact_contents {
  padding-top: 0;
}
.contact_form_heading {
  font-size: 16px;
  display: flex;
  align-items: flex-end;
}
.contact_form_heading:not(:first-child) {
  margin-top: 32px;
}
.contact_form_example {
  font-size: 12px;
  color: #aaa;
  margin-left: 8px;
}
.contact_form_input {
  width: 100%;
  height: 40px;
  border: 1px solid #aaa;
  border-radius: 4px;
  padding: 0 8px;
}
.contact_form_detail {
  margin-top: 16px;
}

.contact_form_textarea {
  width: 100%;
  height: 250px;
  border: 1px solid #aaa;
  border-radius: 4px;
  padding: 0px 8px;
}

.contact_form_heading:not(:first-child)::after {
  content: "必須";
  font-weight: normal;
  font-size: 14px;
  border: 1px #e20505;
  background-color: #e20505;
  border-radius: 5px;
  color: var(--white-color);
  padding: 2px 8px;
  position: absolute;
  left: 85%;
}
.m_btn__right-arrow {
  background: #1863af;
  position: relative;
}
.contact_form_btn-wrapper {
  max-width: 300px;
  height: 64px;
  margin: 80px auto 0;
}
.m_btn {
  width: 100%;
  height: 100%;
  border-radius: 100vh;
  /* display: flex; */
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  color: var(--white-color);
  font-weight: bold;
  letter-spacing: 0.1em;
  overflow: hidden;
}
.m_btn_input {
  width: 100%;
  height: 100%;
  text-align: center;
  cursor: pointer;
}
.m_btn__right-arrow::after {
  content: "";
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  border-top: 6px solid transparent;
  border-left: 6px solid var(--white-color);
  border-bottom: 6px solid transparent;
}

/* 404 */
.p404-box {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 760px) {
  .p404-box {
    text-align: center;
  }
}
.p404-ttl {
  font-size: 80px;
  text-align: center;
  margin-bottom: 32px;
}
.p404-txt {
  font-size: 30px;
}
.p404-kv {
  text-align: center;
  padding: 40px 0;
  margin-bottom: 0;
}
.p404-face {
  margin-bottom: 0;
  animation: rotate-anime 60s steps(60) infinite;
}
@keyframes rotate-anime {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media screen and (min-width: 760px) {
  .p404-face {
    width: 250px;
    height: 250px;
  }
}
@media screen and (min-width: 500px) {
  .p404-doc br {
    display: none;
  }
}
/* footer */
.l_footer {
  background-color: var(--primary-color);
  position: fixed;
  bottom: 0;
  width: 100%;
}
.l_footer-copyright {
  text-align: center;
  font-size: 12px;
  padding: 12px 0;
}

/* footer-contact */
.l_footer-contact {
  background-color: var(--primary-color);
  bottom: 0;
}

/* single */
.single-bg {
  background: url(../img/IMG_blog.jpg) no-repeat;
  background-size: cover;
  background-position: 70%;
  width: 100vw;
  height: 100vh;
  top: 0;
  position: fixed;
  z-index: -1;
  content: "";
}
.single-bg::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: inherit;
  filter: brightness(90%);
  z-index: -2;
}
.blog-container {
  padding: 80px 0;
}
.single-container {
  width: 70%;
  height: 80%;
  margin-left: auto;
  margin-right: auto;
  padding: 10%;
  background: rgba(255, 255, 255, 0.4);
}

.single-post_container {
  padding: 80px 0;
}
.wp-post-image {
  width: 200px;
  height: 300px;
  flex-basis: 200px;
}

.airticle-kv-megane {
  background: url(/img/IMG_megane.jpg) 47% no-repeat;
  background-size: cover;
}
.airticle-kv-jacket {
  background: url(/img/IMG_jacket.jpg) no-repeat;
  background-size: 300px calc(300px * 1.66);
  background-position: -30px -80px;
}
.blog_article {
  padding-bottom: 32px;
  border-bottom: 1px solid var(--white-color);
}
/* １番目の記事以外の上に余白を付ける */
.blog_article:not(:first-child) {
  margin-top: 32px;
}

@media screen and (min-width: 700px) {
  .blog_airtcle-box {
    display: flex;
    gap: 40px;
  }
}
.airticle-doc {
  margin-top: 8px;
  flex-basis: 50%;
}
.airtcle-doc-ttl {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}
.archive p {
  color: #999;
  font-size: 14px;
  font-weight: normal;
  margin-top: 8px;
}
.article-btn-wrapper {
  /*記事の文章との余白*/
  margin-top: 40px;
  text-align: right;
}
.article-btn {
  color: #ff7f00;
  font-size: 14px;
  font-weight: bold;
}

/* single-post */
.single-post-bg {
  background: url(../img/IMG_post.jpg) no-repeat;
  background-size: cover;
  background-position: 70%;
  width: 120vw;
  min-height: 100vh;
  position: relative;
  z-index: 0;
}
.single-post-bg::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: inherit;
  filter: brightness(70%);
  z-index: -2;
}
.post-thumb-wrapper {
  background: no-repeat;
  background-size: 100%;
  width: 200px;
  height: 300px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 700px) {
  .post-thumb-wrapper {
    margin-left: calc(50% - 100px);
  }
}
.article-post-doc {
  flex-basis: 50%;
}
@media screen and (min-width: 700px) {
  .single-post-doc {
    flex-basis: 90%;
  }
}

.article-post-doc-ttl {
  font-size: 20px;
  font-weight: bold;
}
.article-post-doc-txt {
  margin-top: 40px;
  font-weight: normal;
}
@media screen and (min-width: 700px) {
  .article-post-box {
    display: flex;
    gap: 50px;
  }
}
@media screen and (min-width: 700px) {
  .single-post-doc-ttl {
    font-size: 32px;
  }
}
.single-post-box {
  width: 65%;
  margin-left: auto;
  margin-right: 25%;
}
@media screen and (min-width: 700px) {
  .single-post-box {
    gap: 0;
  }
}
@media screen and (min-width: 960px) {
  .single-post-box {
    margin-right: 20%;
  }
}
.article-post-blog {
  color: var(--white-color);
}
.single-cat {
  font-size: 12px;
}
/* wp css #F29307*/
a:-webkit-any-link {
  text-decoration: none;
}
.customize-support p a {
  color: #1863af;
  text-decoration: underline;
}
