@charset "UTF-8";
/*=========================
common ↓↓↓↓↓↓
=========================*/
html {
  font-size: 62.5%;
}

body {
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", sans-serif;
  color: #333333;
  font-weight: normal;
  line-height: 1.4;
}

a {
  text-decoration: none;
}

/*
a { color: #333;
text-decoration: none;}
a:link { color: #333;}
a:visited { color: #7f7f7f; }
a:hover {
color: #e2694a;
font-weight: inherit;
text-decoration: none;
}
a:active { color: #f0b4a4;}

a img { transition: opacity 0.2s linear; }
a:hover img { opacity: 0.5; }
a:active img { opacity: 0.8; }
*/
a.no-link {
  pointer-events: none;
}

img {
  display: block;
  width: 100%;
}

.d-block {
  display: block;
}

.clearfix::after {
  content: '';
  display: block;
  clear: both;
}

@media only screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}

@media print, screen and (min-width: 480px) {
  /*480px以上に対する適用*/
  .sp-min {
    display: none !important;
  }
}

@media print, screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }
}

/*フォント設定*/
.fw--light {
  font-weight: 200;
}

.fw--normal {
  font-weight: 400;
}

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

.font-size--s {
  font-size: 1.4rem;
}

.font-size--m {
  font-size: 1.6rem;
}

.font-size--l {
  font-size: 2.0rem;
}

.font-size--ll {
  font-size: 2.4rem;
}

@media print, screen and (min-width: 769px) {
  .font-size--s {
    font-size: 1.4rem;
  }
  .font-size--m {
    font-size: 1.6rem;
  }
  .font-size--l {
    font-size: 2.0rem;
  }
  .font-size--ll {
    font-size: 3.0rem;
  }
}

.kerning--small {
  letter-spacing: 0.03em;
}

.kerning--normal {
  letter-spacing: 0.05em;
}

.kerning--centering {
  letter-spacing: 0.05em;
  text-indent: 0.05em;
}

.wf-mplus1p {
  font-family: 'M PLUS 1p', sans-serif;
}

/*フォント設定

.font-size--s {
  font-size: 1.2rem;
}
.font-size--m {
  font-size: 1.4rem;
}
.font-size--l {
  font-size: 1.6rem;
}
.font-size--ll {
  font-size: 2.0rem;
}
@media print, screen and (min-width: 769px) { //PC表示内容
  .font-size--s {
    font-size: 1.4rem;
  }
  .font-size--m {
    font-size: 1.6rem;
  }
  .font-size--l {
    font-size: 2.0rem;
  }
  .font-size--ll {
    font-size: 3.0rem;
  }
}
*/
/* 上へ戻るボタン */
.btn-back-to-top {
  position: fixed;
  display: block;
  bottom: 10px;
  right: 10px;
  width: 50px;
  opacity: 0.7;
}

.whole-wrapper {
  width: 100%;
  overflow: hidden;
}

.loading {
  width: 100%;
  height: 100vh;
  -webkit-transition: all 1s;
  transition: all 1s;
  background-color: #808080;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
}

.loading__img,
.loading__img::after {
  border-radius: 50%;
  width: 10em;
  height: 10em;
}

.loading__img {
  margin: auto;
  font-size: 10px;
  position: relative;
  text-indent: -9999em;
  border-top: 1.1em solid rgba(255, 255, 255, 0.2);
  border-right: 1.1em solid rgba(255, 255, 255, 0.2);
  border-bottom: 1.1em solid rgba(143, 34, 34, 0.2);
  border-left: 1.1em solid #ffffff;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load01 1.1s infinite linear;
  animation: load01 1.1s infinite linear;
}

@-webkit-keyframes load01 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes load01 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.loaded {
  opacity: 0;
  visibility: hidden;
}

@media all and (-ms-high-contrast: none) {
  /* IEにのみ適用される */
  .loading {
    position: relative;
  }
  .loading__img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
            transform: translateY(-50%) translateX(-50%);
    margin: auto;
  }
  .loaded {
    height: 0;
  }
}

.header {
  position: fixed;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 6rem;
  background-color: rgba(102, 102, 102, 0.5);
  -webkit-backdrop-filter: blur(5px) grayscale(1);
          backdrop-filter: blur(5px) grayscale(1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media all and (-ms-high-contrast: none) {
  /* IEにのみ適用される */
  .header {
    background-color: rgba(102, 102, 102, 0.8);
  }
}

@-moz-document url-prefix() {
  /* FireFoxにのみ適用される */
  .header {
    background-color: rgba(102, 102, 102, 0.8);
  }
}

.container--header {
  max-width: 100rem;
  width: 90%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.header-logo {
  width: 4.5rem;
}

.header-logo__img {
  -webkit-animation: rotation01 10s linear infinite;
          animation: rotation01 10s linear infinite;
}

.header-logo__link, .header-logo__link:link, .header-logo__link:visited {
  color: #fff;
}

@-webkit-keyframes rotation01 {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotation01 {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.header-title {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
  margin: auto;
  text-align: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-family: 'Heebo', sans-serif;
  color: #fff;
  font-size: 2.4rem;
}

@media print, screen and (min-width: 769px) {
  .header-title {
    position: static;
    top: 0%;
    left: 0%;
    -webkit-transform: translateY(0%) translateX(0%);
            transform: translateY(0%) translateX(0%);
    width: auto;
    margin: auto auto auto 1.5rem;
    font-size: 2.8rem;
  }
}

@media print, screen and (min-width: 769px) {
  .header-nav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-transform: uppercase;
  }
  .header-nav__list-item:not(:first-child) {
    padding-left: 2.2rem;
  }
  .header-nav__link, .header-nav__link:link, .header-nav__link:visited {
    color: #fff;
    font-family: 'Heebo', sans-serif;
    letter-spacing: 0.06em;
    position: relative;
  }
  .header-nav__link::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 99%;
    height: 3px;
    background-color: #fff;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .header-nav__link:hover::after, .header-nav__link:active::after {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  .header-nav__list-item--current .header-nav__link {
    position: relative;
  }
  .header-nav__list-item--current .header-nav__link::after {
    content: '';
    display: block;
    position: absolute;
    bottom: -2.2rem;
    left: 50%;
    -webkit-transform: translateX(-51%);
            transform: translateX(-51%);
    margin: auto;
    width: 105%;
    height: 0.7rem;
    background-color: #fff;
  }
}

.drawer-menu {
  font-family: 'Heebo', sans-serif;
}

.drawer-menu-item {
  text-transform: uppercase;
}

.hero-header-content {
  width: 100vw;
  min-height: 100vh;
  /* Fallback */
  min-height: calc(var(--vh, 1vh) * 100);
  background-image: url(../img/bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: -100;
  background-color: rgba(255, 255, 255, 0.3);
  background-blend-mode: lighten;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
}

.hero-header-content::before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
  margin: auto;
  width: 85vh;
  height: 85vh;
  background-image: url(../img/logomark.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 1;
  opacity: 0.7;
  -webkit-animation: 60s linear infinite rotation02;
          animation: 60s linear infinite rotation02;
  overflow: hidden;
}

@-webkit-keyframes rotation02 {
  0% {
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%) rotate(0);
            transform: translateY(-50%) translateX(-50%) rotate(0);
  }
  100% {
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%) rotate(360deg);
            transform: translateY(-50%) translateX(-50%) rotate(360deg);
  }
}

@keyframes rotation02 {
  0% {
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%) rotate(0);
            transform: translateY(-50%) translateX(-50%) rotate(0);
  }
  100% {
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%) rotate(360deg);
            transform: translateY(-50%) translateX(-50%) rotate(360deg);
  }
}

.page-title-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 90%;
  max-width: 100rem;
  vertical-align: middle;
  margin: auto;
  position: relative;
  z-index: 1;
  padding: 2.5rem 1.5rem;
  line-height: 1.2;
  font-family: 'Heebo', sans-serif;
  font-weight: 900;
}

.page-title-container::before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
  margin: auto;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.6);
}

.page-title {
  color: #fff;
  font-size: 2.4rem;
  letter-spacing: 0.06em;
}

.page-title-copy {
  color: #fff;
  font-size: 3.4rem;
  font-weight: 900;
  padding-top: 1.2rem;
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

.page-title-copy-sign {
  color: #fff;
  font-size: 2.4rem;
  padding-top: 1.2rem;
  letter-spacing: 0.06em;
}

@media all and (-ms-high-contrast: none) {
  /* IEにのみ適用される */
  .page-title-container {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
            transform: translateY(-50%) translateX(-50%);
    margin: auto;
  }
}

.container:not(.container--header) {
  max-width: 96rem;
  width: 85%;
  margin: auto;
  padding-bottom: 3rem;
}

.section:nth-child(odd) {
  background-color: rgba(230, 230, 230, 0.8);
  background-color: #ebebeb;
}

.section__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 3.6rem;
  font-weight: bold;
  margin: auto;
  padding: 3rem 0;
  font-family: 'Heebo', sans-serif;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.about-text__box--1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.about-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.about-name__primary {
  font-size: 3.2rem;
}

.about-name__note--tiny {
  font-size: 0.8em;
  padding: 0 0.08em;
}

.about-occupation {
  margin-top: 1.5rem;
}

.about-detail {
  margin: 2rem auto 0;
  line-height: 1.6;
  width: 100%;
}

.about-detail__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.about-detail__list:not(:first-child) {
  margin-top: 2rem;
}

.about-detail__list--row .about-detail__title {
  width: 6.0rem;
}

.about-detail__list--column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.about-detail__list--column .about-detail__desc {
  margin-top: 0.5rem;
  padding-left: 1em;
}

.about-detail__title {
  font-family: 'Heebo', sans-serif;
  font-weight: 700;
}

@media print, screen and (min-width: 769px) {
  .content--about {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: auto;
  }
  .about-avatar {
    width: 40%;
  }
  .about-text {
    width: 60%;
  }
  .about-detail {
    width: 90%;
  }
  .about-detail__list--row .about-detail__title {
    width: 5.5rem;
  }
}

.section-works__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 90%;
  margin: auto;
}

.section-works__text--2 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

.works-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: auto;
  margin-top: 2.5rem;
}

.works-list__link {
  text-decoration: underline;
}

.works-list__link:link, .works-list__link:visited {
  color: #0000ee;
}

.works-list__item {
  -webkit-box-shadow: 3px 3px 6px #bbb, -3px -3px 6px #ddd;
          box-shadow: 3px 3px 6px #bbb, -3px -3px 6px #ddd;
  background-color: #f9f9f9;
  padding: 1.5rem;
  border-radius: 1rem;
}

.works-list__item:not(:first-child) {
  margin-top: 4rem;
}

.works-list__item-container {
  margin-top: 1.5rem;
}

.works-list__thumb {
  margin: auto;
  position: relative;
}

.works-list__thumb::before {
  content: '';
  display: block;
  padding-top: 100%;
}

.works-list__thumb-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 0%;
     object-position: 50% 0%;
  -webkit-box-shadow: 0 0 5px 1.5px #a9a9a9;
          box-shadow: 0 0 5px 1.5px #a9a9a9;
}

.works-list__caption {
  margin: auto;
  margin-top: 1.5rem;
  width: 100%;
}

.works-list__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: auto;
  margin-top: 0.8rem;
}

.works-list__desc {
  margin-top: 0.5rem;
}

.works-list__detail {
  font-size: 1.4rem;
}

.works-list__detail-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.works-list__detail-item:not(:first-child) {
  margin-top: 0.5em;
}

.works-list__detail-term {
  font-weight: bold;
  min-width: 5.5em;
}

.works-list__detail-desc {
  margin-left: 0.5em;
}

@media print, screen and (min-width: 769px) {
  .works-list__item-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .works-list__thumb {
    width: 32%;
  }
  .works-list__caption {
    width: 68%;
    margin: auto 0.5rem auto 1.5rem;
  }
  .works-list__title {
    font-size: 2.4rem;
  }
  .works-list__detail {
    font-size: 1.6rem;
    margin: 1rem auto;
  }
  .works-list__detail-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .works-list__detail-term {
    text-align: right;
  }
}

.works-list-mordal-window__content--textarea {
  max-width: 80rem;
}

.works-list-mordal-window__desc-container {
  margin-top: 2rem;
}

.works-list-mordal-window__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: auto;
}

.works-list-mordal-window__item-title {
  font-weight: bold;
}

.works-list-mordal-window__item-title:not(:first-of-type) {
  margin-top: 2.5rem;
}

.works-list-mordal-window__item-desc {
  margin-top: 0.5rem;
}

.works-list-mordal-window__item-inner-list-item {
  padding-left: 1.2em;
  position: relative;
}

.works-list-mordal-window__item-inner-list-item::before {
  content: '○';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.works-list-mordal-window__item-inner-list-item:not(:first-child) {
  margin-top: 0.5rem;
}

.concept-sheet-bland-color {
  display: inline-block;
  padding: 0 5px;
}

.concept-sheet-bland-color--bg-color {
  background-color: skyblue;
}

.skill-list {
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  /* マージンボトムでやろうとしていた残骸。必要になるかもしれないので残しておく
  &__item:not(:nth-last-child(-n+3)) {
    margin-bottom: 3rem; //3列の並びにするので、最後から3番目まではmargin-bottomが0。それ以外はmargin-bottomが30px
  }
  */
}

.skill-list__item {
  -webkit-box-shadow: 2px 2px 4px #cccccc inset, -2px -2px 4px #FFF inset;
          box-shadow: 2px 2px 4px #cccccc inset, -2px -2px 4px #FFF inset;
  border-radius: 1rem;
  height: 100%;
  margin-top: 3rem;
}

.skill-list__item:nth-child(-n+3) {
  margin-top: 0;
}

.skill-list__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: 'Heebo', sans-serif;
  font-size: 1.4rem;
  padding-top: 0.6rem;
  margin-bottom: 0.8rem;
}

.skill-icon {
  width: 6rem;
  height: 6rem;
  margin: auto;
  position: relative;
  margin: 1rem 1rem 0;
}

.skill-icon__img-container {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
  margin: auto;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.skill-icon__img-container--hover {
  -webkit-transition: opacity 0.3s ease-in;
  transition: opacity 0.3s ease-in;
  opacity: 0;
  z-index: 1;
}

.skill-icon__img {
  max-height: 6rem;
}

.skill-list__item:hover .skill-icon__img-container--hover,
.skill-list__item:active .skill-icon__img-container--hover,
.skill-list__item:focus .skill-icon__img-container--hover {
  opacity: 1;
}

@media print, screen and (min-width: 371px) {
  .skill-list__title {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
  }
  .skill-icon {
    margin: 2rem 2rem 0;
  }
}

@media print, screen and (min-width: 480px) {
  .skill-list__item:nth-child(-n+5) {
    margin-top: 0;
  }
  .skill-list__title {
    font-size: 1.8rem;
  }
  .skill-icon {
    width: 8rem;
    height: 8rem;
  }
  .skill-icon__img {
    max-height: 8rem;
  }
}

@media print, screen and (min-width: 769px) {
  .skill-list__item {
    margin-left: 2rem;
    margin-right: 2rem;
  }
}

@media print, screen and (min-width: 1121px) {
  .skill-list {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .skill-list__item:nth-child(-n+6) {
    margin-top: 0;
  }
}

.flexbox-item-layout-adjust--skill-list::after {
  content: '';
  display: block;
  width: 8rem;
  height: 0;
}

@media print, screen and (min-width: 371px) {
  .flexbox-item-layout-adjust--skill-list::after {
    width: 10rem;
  }
}

@media print, screen and (min-width: 480px) {
  .flexbox-item-layout-adjust--skill-list::after {
    width: 0;
  }
}

.ability__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 4rem auto 0;
}

.available-list {
  margin: 2rem auto 0;
  line-height: 1.6;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.available-list__item {
  padding-left: 1.4em;
  position: relative;
  font-weight: 500;
  font-weight: bold;
}

.available-list__item::before {
  content: '●';
  display: block;
  position: absolute;
  left: 0;
  top: 0.6em;
  margin: auto;
  font-size: 0.6em;
  width: 2.3333em;
  text-align: center;
}

.available-list__item:not(:first-child) {
  margin-top: 0.5em;
}

@media all and (-ms-high-contrast: none) {
  /* IEにのみ適用される */
  .ability {
    text-align: center;
  }
  .available-list {
    text-align: left;
    display: inline-block;
  }
}

.contact-intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.form {
  width: 100%;
  max-width: 60rem;
  margin: auto;
}

.form__list {
  margin-top: 3rem;
}

.form__term {
  font-weight: bold;
  line-height: 1.4;
}

.form__term:not(:first-child) {
  margin-top: 2rem;
}

.form__term-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.form__term-inner--02 {
  margin-top: 0.5rem;
}

.form__desc {
  margin-top: 0.5rem;
}

.form__desc--name, .form__desc--email, .form__desc--tel, .form__desc--detail {
  width: 100%;
  border: 1px solid #666;
  border-radius: 3px;
}

.tag-required {
  background-color: #F00000;
  color: #fff;
  font-size: 0.8em;
  padding: 0.1rem 0.5rem;
  height: 100%;
  margin-left: 0.8rem;
  font-weight: bold;
}

.submit-btn {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: block;
  font-weight: 600;
  border: 2px solid #888;
  border-radius: 0.3rem;
  color: #888;
  line-height: 2.4;
  width: 8em;
  margin: 4rem auto 0;
  -webkit-transition: all linear 0.1s;
  transition: all linear 0.1s;
}

.submit-btn:hover {
  color: #fff;
  background-color: #888;
}

.footer {
  text-align: center;
  margin: 10rem auto 3rem;
}
/*# sourceMappingURL=style.css.map */