@charset "UTF-8";
/*==========
変数
============*/
/*==========
フォント読み込み
============*/
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");
@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 400;
  src: local("Noto Sans CJK JP Regular"), local("Noto Sans JP Regular"), url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Regular.woff2) format("woff2"), url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Regular.woff) format("woff"), url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Regular.otf) format("opentype");
}

@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 700;
  src: local("Noto Sans CJK JP Bold"), local("Noto Sans JP Bold"), url(//fonts.gstatic.com/ea/notosansjapanese/v6/NotoSansJP-Bold.woff2) format("woff2"), url(//fonts.gstatic.com/ea/notosansjapanese/v6/NotoSansJP-Bold.woff) format("woff"), url(//fonts.gstatic.com/ea/notosansjapanese/v6/NotoSansJP-Bold.otf) format("opentype");
}

@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 100;
  src: local("Noto Sans CJK JP Thin"), local("Noto Sans JP Thin"), url(//fonts.gstatic.com/ea/notosansjapanese/v6/NotoSansJP-Thin.woff2) format("woff2"), url(//fonts.gstatic.com/ea/notosansjapanese/v6/NotoSansJP-Thin.woff) format("woff"), url(//fonts.gstatic.com/ea/notosansjapanese/v6/NotoSansJP-Thin.otf) format("opentype");
}

/*==========
基本設定
============*/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 10px;
}

body {
  font-family: 'Roboto', 'Noto Sans JP', sans-serif;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: 16px;
  line-height: 1.7;
  text-align: center;
  background-color: #fff;
}

@media (max-width: 560px) {
  body {
    font-size: 14px;
  }
}

h1,
h2,
h3,
h4 {
  text-transform: capitalize;
  color: #36382e;
  font-weight: 400;
}

p,
li {
  color: #36382e;
}

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

a {
  text-decoration: none;
  color: #36382e;
}

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

/*==========
共有クラス
============*/
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: auto;
}

.wrapper-1400 {
  max-width: 1400px;
  width: calc(100% - 100px);
  margin: 0 auto;
}

@media (max-width: 960px) {
  .wrapper-1400 {
    width: calc(100% - 60px);
  }
}

@media (max-width: 560px) {
  .wrapper-1400 {
    width: calc(100% - 20px);
  }
}

.wrapper-1200 {
  max-width: 1200px;
  width: calc(100%-100px);
  margin: 0 auto;
}

@media (max-width: 960px) {
  .wrapper-1200 {
    width: calc(100% - 60px);
  }
}

@media (max-width: 560px) {
  .wrapper-1200 {
    width: calc(100% - 20px);
  }
}

.wrapper-1000 {
  max-width: 1000px;
  width: calc(100% - 100px);
  margin: 0 auto;
}

@media (max-width: 960px) {
  .wrapper-1000 {
    width: calc(100% - 100px);
  }
}

@media (max-width: 560px) {
  .wrapper-1000 {
    width: calc(100% - 20px);
  }
}

.main-title {
  font-size: 12rem;
  font-weight: 700;
  line-height: 1;
  text-align: left;
  max-width: 1200px;
  width: calc(100% - 100px);
  margin: 0 auto;
}

@media (max-width: 960px) {
  .main-title {
    font-size: 10rem;
  }
}

@media (max-width: 560px) {
  .main-title {
    font-size: 6.5rem;
    margin: 0px;
  }
}

.sub-title {
  font-size: 8rem;
  line-height: 1;
}

@media (max-width: 960px) {
  .sub-title {
    font-size: 7rem;
  }
}

@media (max-width: 560px) {
  .sub-title {
    font-size: 5rem;
  }
}

/*==========
header
============*/
.header {
  width: 100%;
  height: 65px;
  background: rgba(255, 255, 255, 0.6);
  -webkit-box-shadow: 0px 0px 5px rgba(255, 255, 255, 0.6);
          box-shadow: 0px 0px 5px rgba(255, 255, 255, 0.6);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  /*-----hamburger--------*/
}

@media (max-width: 960px) {
  .header {
    background: none;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

@media (max-width: 560px) {
  .header {
    height: 60px;
  }
}

.header-flex {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header__title {
  margin: auto 0;
}

@media (max-width: 960px) {
  .header__title {
    margin: 0;
  }
}

.header__title a {
  display: block;
}

.header__title img {
  max-width: 50px;
}

@media (max-width: 960px) {
  .header__title img {
    max-width: 45px;
  }
}

@media (max-width: 560px) {
  .header__title img {
    max-width: 35px;
  }
}

.header__hamburger-btn {
  width: 35px;
  height: 30px;
  position: fixed;
  top: 10px;
  right: auto;
  margin: auto;
  display: block;
  cursor: pointer;
  -webkit-transition: all .3s;
  transition: all .3s;
  display: none;
}

@media (max-width: 960px) {
  .header__hamburger-btn {
    display: block;
  }
}

.header__hamburger-btn:hover, .header__hamburger-btn:focus, .header__hamburger-btn:active {
  outline: none;
}

.header__hamburger-btn:hover .header__hamburger-btn--line, .header__hamburger-btn:focus .header__hamburger-btn--line, .header__hamburger-btn:active .header__hamburger-btn--line {
  background-color: #c1e62e;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.header__hamburger-btn--line {
  width: 100%;
  height: 3px;
  background-color: #36382e;
  position: absolute;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  border-radius: 5px;
  display: block;
}

.header__hamburger-btn--line:nth-of-type(1) {
  top: 0;
}

.header__hamburger-btn--line:nth-of-type(2) {
  top: 48%;
}

.header__hamburger-btn--line:nth-of-type(3) {
  bottom: 0;
}

.header__hamburger-btn-close {
  /*--menu オープンのとき（形状：→(矢印））--*/
  -webkit-transform: rotate(-450deg);
          transform: rotate(-450deg);
  -webkit-transition: all .4s;
  transition: all .4s;
}

.header__hamburger-btn-close--line:nth-of-type(1), .header__hamburger-btn-close--line:nth-of-type(3) {
  width: 20px;
  background-color: #36382e;
}

.header__hamburger-btn-close--line:nth-of-type(2) {
  background-color: #36382e;
}

.header__hamburger-btn-close--line:nth-of-type(1) {
  -webkit-transform: translate(18px, 8px) rotate(45deg);
          transform: translate(18px, 8px) rotate(45deg);
}

.header__hamburger-btn-close--line:nth-of-type(3) {
  -webkit-transform: translate(18px, -6px) rotate(-45deg);
          transform: translate(18px, -6px) rotate(-45deg);
}

.hamburger-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1400px;
  width: calc(100% - 100px);
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: fixed;
}

@media (max-width: 560px) {
  .hamburger-right {
    width: calc(100% - 30px);
  }
}

.nav-area {
  opacity: 0;
  padding: 20px 40px 0 0;
}

@media (max-width: 960px) {
  .nav-area {
    display: none;
    background: rgba(255, 255, 255, 0.8);
    -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
            box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
    width: 100vw;
    height: 40vh;
    position: absolute;
    padding: 40px 0 0 0;
    top: 0;
    z-index: -1;
  }
}

@media (max-width: 560px) {
  .nav-area {
    height: 45vh;
  }
}

.nav-area-pc {
  display: block;
  opacity: 1;
}

@media (max-width: 960px) {
  .nav-area-pc {
    display: none;
  }
}

.nav-area-tab {
  position: absolute;
  -webkit-transform: translateY(-40vh);
          transform: translateY(-40vh);
  -webkit-transition: 1s;
  transition: 1s;
}

@media (max-width: 960px) {
  .nav-area__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 20px auto 0;
  }
}

@media (max-width: 560px) {
  .nav-area__list {
    margin: 20px auto 0;
  }
}

.nav-area__item {
  font-size: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: auto 0;
  margin-right: 40px;
}

.nav-area__item:last-child {
  margin-right: 60px;
}

@media (max-width: 960px) {
  .nav-area__item:last-child {
    margin-right: auto;
  }
}

@media (max-width: 960px) {
  .nav-area__item {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
  }
}

.nav-area__hover {
  position: relative;
}

.nav-area__hover::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #c1e62e;
  bottom: 0;
  left: 0;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: .2s;
  transition: .2s;
}

@media (max-width: 960px) {
  .nav-area__hover::after {
    bottom: 4px;
  }
}

@media (max-width: 560px) {
  .nav-area__hover::after {
    bottom: 2px;
  }
}

.nav-area__hover:hover::after {
  content: "";
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: .4s;
  transition: .4s;
}

@media (max-width: 560px) {
  .nav-area__hover:last-of-type {
    display: inline-block;
  }
}

.nav-area__sns-item {
  width: 100%;
}

@media (max-width: 960px) {
  .nav-area__sns-item {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.nav-area__sns-item a {
  display: block;
  width: 56px;
  padding: 10px 14px;
  -webkit-transition: .2s;
  transition: .2s;
}

.nav-area__sns-item a:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-transition: .4s;
  transition: .4s;
  -webkit-filter: drop-shadow(0 4px 3px gray);
          filter: drop-shadow(0 4px 3px gray);
}

.nav-area-active {
  opacity: 1;
  display: block;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.pc-disappear {
  display: none;
}

@media (max-width: 960px) {
  .gnavi-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

/*==========
サイド
============*/
.side {
  position: fixed;
  top: 0;
  left: auto;
  width: 30px;
  height: 100%;
  padding: 0 5px;
  z-index: 9000;
}

@media (max-width: 560px) {
  .side {
    display: none;
  }
}

.side__text {
  position: fixed;
  font-size: 2rem;
  line-height: 1;
  white-space: nowrap;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-90deg);
          transform: translate(-50%, -50%) rotate(-90deg);
}

@media (max-width: 960px) {
  .side__text {
    font-size: 1.6rem;
  }
}

@media (max-width: 560px) {
  .side__text {
    display: none;
  }
}

.side__text::after {
  content: attr(data-text);
  position: absolute;
  top: 25px;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  font-size: 1.4rem;
  color: #e6e6e6;
}

@media (max-width: 960px) {
  .side__text::after {
    font-size: 1.2rem;
  }
}

/*==========
戻るボタン
============*/
.top-btn {
  width: 100px;
}

.top-btn a {
  display: block;
}

/*==========
footer
============*/
.footer__copy {
  font-size: 14px;
  margin-bottom: 20px;
}

@media (max-width: 960px) {
  .footer__copy {
    margin-bottom: 15px;
  }
}

@media (max-width: 560px) {
  .footer__copy {
    font-size: 12px;
    margin-bottom: 10px;
  }
}

/*==========
top
============*/
.top-video {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.top-anime {
  width: 100%;
}

.view {
  width: 100vw;
  height: 100vh;
}

.top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 70px;
}

.top__title {
  font-size: 6rem;
  text-transform: none;
  max-width: 760px;
  width: 100%;
  text-align: left;
  white-space: nowrap;
}

@media (max-width: 960px) {
  .top__title {
    font-size: 3.6rem;
    max-width: 440px;
  }
}

@media (max-width: 560px) {
  .top__title {
    font-size: 2.2rem;
    max-width: 280px;
  }
}

.top__title span {
  position: relative;
  display: block;
  font-size: 5.2rem;
  text-align: right;
}

@media (max-width: 960px) {
  .top__title span {
    font-size: 2.8rem;
  }
}

@media (max-width: 560px) {
  .top__title span {
    font-size: 1.8rem;
  }
}

.top__title span::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #36382e;
  top: 0;
  left: 0;
}

/*========== プロフィール ============*/
/*==========
変数
============*/
/*=================
プロフィール　intro
===================*/
.profile {
  padding-top: 50px;
  margin-top: -50px;
}

.profile__title {
  margin-bottom: 35px;
}

.profile-intro {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background-color: #f18805;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px 0;
}

.profile-intro::before {
  content: "";
  position: absolute;
  left: 0;
  top: -30px;
  width: 100%;
  height: 30px;
  background-image: linear-gradient(to right, #f18805, #f18805 20px, transparent 20px, transparent 40px);
  background-size: 40px 30px;
  background-repeat: repeat-x;
}

.profile-intro::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -30px;
  width: 100%;
  height: 30px;
  background-image: linear-gradient(to right, #f18805, #f18805 20px, transparent 20px, transparent 40px);
  background-size: 40px 30px;
  background-repeat: repeat-x;
}

@media (max-width: 960px) {
  .profile-intro-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.profile-intro__name {
  font-size: 4rem;
  font-weight: 100;
  margin-right: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
}

@media (max-width: 960px) {
  .profile-intro__name {
    font-size: 3.6rem;
    margin: 0 auto;
  }
}

@media (max-width: 560px) {
  .profile-intro__name {
    font-size: 3rem;
  }
}

.profile-intro-textbox {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.profile-intro__text {
  max-width: 580px;
  font-size: 1.8rem;
  text-align: left;
  margin: 0 auto;
}

.profile-intro__text:not(:last-child) {
  margin-bottom: 0.8em;
}

@media (max-width: 960px) {
  .profile-intro__text {
    max-width: 500px;
    font-size: 1.6rem;
  }
}

@media (max-width: 560px) {
  .profile-intro__text {
    max-width: 450px;
    font-size: 1.4rem;
  }
}

/*====================
プロフィール　like-hobby
======================*/
.profile-like {
  margin-top: 100px;
}

@media (max-width: 960px) {
  .profile-like {
    margin-top: 70px;
  }
}

@media (max-width: 560px) {
  .profile-like {
    margin-top: 120px;
  }
}

.profile-like {
  height: 500px;
}

.profile-like__list {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  margin: 0 auto;
}

.profile-like__item {
  width: 80px;
  margin-top: auto;
  margin-bottom: auto;
}

@media (max-width: 960px) {
  .profile-like__item {
    width: 60px;
  }
}

@media (max-width: 560px) {
  .profile-like__item {
    width: 40px;
  }
}

.profile-like__item:not(:last-child) {
  margin-right: 70px;
}

@media (max-width: 960px) {
  .profile-like__item:not(:last-child) {
    margin-right: 50px;
  }
}

@media (max-width: 560px) {
  .profile-like__item:not(:last-child) {
    margin-right: 20px;
  }
}

.profile-like__item label {
  cursor: pointer;
}

.profile-like__item input:checked ~ .profile-like-textbox {
  opacity: 1;
}

.profile-like__item input:checked ~ label {
  -webkit-filter: sepia(1);
          filter: sepia(1);
}

.profile-like__item img {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}

.profile-like-textbox {
  position: absolute;
  opacity: 0;
  top: 100px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 500px;
}

@media (max-width: 960px) {
  .profile-like-textbox {
    max-width: 500px;
    min-width: 300px;
    width: 100%;
  }
}

@media (max-width: 560px) {
  .profile-like-textbox {
    max-width: 300px;
    min-width: 250px;
    width: 100%;
  }
}

.profile-like__text {
  text-indent: .5em;
}

.profile-like input {
  display: none;
}

.radio-checked {
  -webkit-filter: none !important;
          filter: none !important;
}

/*====================
プロフィール skills
======================*/
.skill {
  margin-top: 30px;
}

@media (max-width: 960px) {
  .skill {
    margin-top: 100px;
  }
}

.skill__list {
  max-width: 950px;
  margin: 0 auto;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 960px) {
  .skill__list {
    max-width: 580px;
  }
}

@media (max-width: 560px) {
  .skill__list {
    max-width: 410px;
  }
}

.skill__item {
  max-width: 25%;
  width: 100%;
}

@media (max-width: 960px) {
  .skill__item {
    max-width: 50%;
    width: 100%;
  }
}

.skill-comment {
  position: relative;
}

.skill-comment-wrap {
  margin-top: 70px;
}

@media (max-width: 960px) {
  .skill-comment-wrap {
    margin-top: 90px;
  }
}

@media (max-width: 960px) {
  .skill-comment-wrap {
    margin-top: 90px;
  }
}

@media (max-width: 860px) {
  .skill-comment-wrap {
    width: 200px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 150px auto 0;
  }
}

@media (max-width: 560px) {
  .skill-comment-wrap {
    width: 160px;
    margin: 160px auto 0;
  }
}

.skill-comment-iconbox {
  -webkit-filter: opacity(0.5);
          filter: opacity(0.5);
  width: 40px;
}

@media (max-width: 560px) {
  .skill-comment-iconbox {
    width: 30px;
  }
}

.skill-comment-iconbox::before {
  content: attr(data-skill);
  position: absolute;
  top: -60px;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  width: 500px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: none;
  opacity: 1;
  -webkit-transition: 1s;
  transition: 1s;
}

@media (max-width: 1060px) {
  .skill-comment-iconbox::before {
    width: 430px;
    top: -80px;
  }
}

@media (max-width: 960px) {
  .skill-comment-iconbox::before {
    width: 350px;
    top: -80px;
  }
}

@media (max-width: 860px) {
  .skill-comment-iconbox::before {
    width: 300px;
    top: -130px;
  }
}

@media (max-width: 560px) {
  .skill-comment-iconbox::before {
    width: 250px;
  }
}

@media (max-width: 380px) {
  .skill-comment-iconbox::before {
    width: 200px;
    top: -150px;
  }
}

.skill-comment-iconbox:not(:last-child) {
  margin-right: 10px;
}

@media (max-width: 560px) {
  .skill-comment-iconbox:not(:last-child) {
    margin-right: 8px;
  }
}

@media (max-width: 860px) {
  .skill-comment-iconbox:nth-of-type(4) {
    margin-right: 0px;
  }
}

@media (max-width: 860px) {
  .skill-comment-iconbox {
    margin-bottom: 8px;
  }
}

.skill-comment-iconbox:hover {
  -webkit-filter: opacity(1);
          filter: opacity(1);
}

.skill-comment-iconbox:hover::before {
  display: block;
}

@media (max-width: 860px) {
  .skill-comment-iconbox:hover::before {
    background: rgba(255, 255, 255, 0.9);
    padding: 5px;
    border-radius: 10px;
    border: 1px solid gray;
  }
}

.skill-comment-iconbox__icon {
  width: 48px;
}

@media (max-width: 560px) {
  .skill-comment-iconbox__icon {
    width: 40px;
  }
}

/*==========
円グラフ　JS連動
============*/
.chart {
  position: relative;
  display: inline-block;
  max-width: 150px;
  width: 100%;
  max-height: 150px;
  height: 100%;
  margin-top: 50px;
  margin-bottom: 50px;
  text-align: center;
}

.chart canvas {
  position: absolute;
  top: 0;
  left: 0;
}

.percent {
  display: inline-block;
  line-height: 150px;
  z-index: 2;
  font-size: 2rem;
}

@media (max-width: 560px) {
  .percent {
    font-size: 1.6rem;
  }
}

.percent:after {
  content: '%';
  margin-left: 0.1em;
  font-size: .8em;
}

.label {
  font-size: 2.2rem;
  line-height: 1.2;
}

@media (max-width: 960px) {
  .label {
    font-size: 2rem;
  }
}

@media (max-width: 560px) {
  .label {
    font-size: 1.6rem;
  }
}

.angular {
  margin-top: 100px;
}

.angular .chart {
  margin-top: 0;
}

input {
  display: block;
  margin: auto;
  margin-bottom: 3em;
}

.btn {
  display: block;
  width: 200px;
  margin: 0 auto;
  padding: 10px 20px;
  background: #cccccc;
  color: #ffffff;
  text-transform: uppercase;
  cursor: pointer;
  font-size: 0.8em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.btn:hover {
  background: #333333;
  color: #ffffff;
}

/*========== works ============*/
/*==========
変数
============*/
/*==========
works
============*/
.works {
  margin-top: 250px;
  padding-top: 50px;
}

@media (max-width: 560px) {
  .works {
    margin-top: 220px;
  }
}

/*==========
works web(.site)
============*/
.site {
  margin-top: 10px;
}

@media (max-width: 960px) {
  .site {
    margin-top: 30px;
  }
}

.site__title {
  margin-bottom: 50px;
}

.site__item {
  width: 100%;
  height: 440px;
  border-radius: 2px;
  overflow: hidden;
  -webkit-box-shadow: 6px 6px 20px rgba(0, 0, 0, 0.16);
          box-shadow: 6px 6px 20px rgba(0, 0, 0, 0.16);
  position: relative;
  -webkit-transition: .2s;
  transition: .2s;
}

.site__item:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-transition: .4s;
  transition: .4s;
}

.site__item:not(:last-child) {
  margin-bottom: 50px;
}

.site__item::before {
  content: attr(data-number);
  position: absolute;
  top: 0;
  left: 0;
  font-size: 10rem;
  line-height: 1;
  z-index: 1000;
}

@media (max-width: 960px) {
  .site__item::before {
    font-size: 9rem;
  }
}

@media (max-width: 560px) {
  .site__item::before {
    font-size: 8rem;
  }
}

.site__item--open {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.site__item input {
  display: none;
}

.site__item input:checked ~ .accordion {
  display: block;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: -webkit-transform 1s;
  transition: -webkit-transform 1s;
  transition: transform 1s;
  transition: transform 1s, -webkit-transform 1s;
}

.site__item .accordion {
  display: none;
  -webkit-transform: translateY(-1000px);
          transform: translateY(-1000px);
  -webkit-transition: -webkit-transform 1s;
  transition: -webkit-transform 1s;
  transition: transform 1s;
  transition: transform 1s, -webkit-transform 1s;
}

.site__fig {
  height: 100%;
  padding: 30px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  cursor: pointer;
}

.site__fig::after {
  content: "";
  position: absolute;
  width: calc(100% - 80px);
  height: calc(100% - 60px);
  margin: 30px 0 0 40px;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: .2;
}

.site__fig > figcaption {
  font-size: 2rem;
  font-weight: 700;
  position: absolute;
  top: 50%;
  left: 80px;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  z-index: 1000;
  text-shadow: #fff 2px 0px, #fff -2px 0px, #fff 0px -2px, #fff 0px 2px, #fff 2px 2px, #fff -2px 2px, #fff 2px -2px, #fff -2px -2px, #fff 1px 2px, #fff -1px 2px, #fff 1px -2px, #fff -1px -2px, #fff 2px 1px, #fff -2px 1px, #fff 2px -1px, #fff -2px -1px;
}

@media (max-width: 960px) {
  .site__fig > figcaption {
    font-size: 1.8rem;
    left: 40px;
  }
}

@media (max-width: 560px) {
  .site__fig > figcaption {
    font-size: 1.6rem;
    left: 40px;
  }
}

.site__img {
  height: 230px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid #cecece;
}

.site-det {
  text-align: left;
  line-height: 3em;
  padding: 0 40px;
}

.site-det__title {
  font-size: 2.2rem;
  font-weight: 700;
}

@media (max-width: 960px) {
  .site-det__title {
    font-size: 2rem;
  }
}

@media (max-width: 560px) {
  .site-det__title {
    font-size: 1.8rem;
  }
}

.site-det__deflist {
  margin-top: 20px;
}

.site-det__deflist dt {
  float: left;
  font-weight: 700;
}

.site-det__deflist dt::after {
  content: "\03A";
}

.site-det__deflist dd {
  text-indent: .5em;
}

.site__icon-list {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 110px;
  margin-bottom: 70px;
}

.site__icon-item {
  width: 48px;
  height: 48px;
}

.site__icon-item:not(:last-child) {
  margin-right: 10px;
}

.site .not-use {
  opacity: .2;
}

/*==========
works other
※ベースのクラスは.siteから .otherはユニーク部分を設定
============*/
.other {
  margin-top: 70px;
}

@media (max-width: 960px) {
  .other {
    margin-top: 150px;
  }
}

@media (max-width: 560px) {
  .other {
    margin-top: 210px;
  }
}

.other__title {
  margin-bottom: 50px;
}

.other__list {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 960px) {
  .other__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media (max-width: 560px) {
  .other__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.other__item {
  width: 300px;
  height: 400px;
  margin-bottom: 100px;
}

@media (max-width: 560px) {
  .other__item {
    margin: 0 auto;
  }
}

.other__item:not(:nth-child(3n)) {
  margin-right: 2%;
}

@media (max-width: 560px) {
  .other__item:not(:nth-child(3n)) {
    margin-right: auto;
  }
}

@media (max-width: 960px) {
  .other__item:not(:nth-child(2n)) {
    margin-right: 2%;
  }
}

@media (max-width: 960px) and (max-width: 560px) {
  .other__item:not(:nth-child(2n)) {
    margin-right: auto;
  }
}

.other__fig {
  padding: 50px 15px;
}

.other__fig::after {
  width: calc(100% - 30px);
  height: calc(100% - 100px);
  margin: 50px 0 0 15px;
}

.other__fig > figcaption {
  left: 40px;
}

.other__fig--popup-icon {
  width: 24px;
  vertical-align: middle;
}

.other__img {
  height: 300px;
}

.other__link {
  text-decoration: underline;
  font-size: .9em;
}

.other__link:hover {
  color: #c1e62e;
}

.other__link::before {
  content: "→ ";
}

.other .comming-soon {
  position: relative;
}

.other .comming-soon::after {
  position: absolute;
  content: "";
  background-color: #cecece;
  border: 1px solid #36382e;
}

/*========== contact ============*/
/*==========
変数
============*/
/*==========
contact
============*/
.contact {
  margin-top: 250px;
  padding-top: 50px;
}

@media (max-width: 560px) {
  .contact {
    margin-top: 220px;
  }
}

.contact-area {
  margin-top: 30px;
}

.contact__text-ways {
  font-size: 10rem;
  line-height: 1;
  margin: 150px 0 210px;
}

@media (max-width: 960px) {
  .contact__text-ways {
    font-size: 6rem;
  }
}

@media (max-width: 560px) {
  .contact__text-ways {
    font-size: 5rem;
    margin: 130px 0 150px;
  }
}

.contact__link {
  position: relative;
}

.contact__link::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 5px;
  background-color: #c1e62e;
  bottom: 10px;
  left: 0;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: 0;
          transform-origin: 0;
  -webkit-transition: .4s;
  transition: .4s;
}

@media (max-width: 960px) {
  .contact__link::after {
    bottom: 4px;
  }
}

@media (max-width: 560px) {
  .contact__link::after {
    bottom: 2px;
  }
}

.contact__link:hover::after {
  content: "";
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: .6s;
  transition: .6s;
}

@media (max-width: 560px) {
  .contact__link:last-of-type {
    margin-top: 40px;
    display: inline-block;
  }
}

@media (max-width: 560px) {
  .sp-hide {
    display: none;
  }
}

.sp-show {
  display: none;
}

@media (max-width: 560px) {
  .sp-show {
    display: inline;
  }
}
/*# sourceMappingURL=style.css.map */