@charset "UTF-8";
html {
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box;
  -moz-tab-size: 4;
  tab-size: 4;
  word-break: normal;
}

*, :after, :before {
  background-repeat: no-repeat;
  box-sizing: inherit;
}

:after, :before {
  text-decoration: inherit;
  vertical-align: inherit;
}

* {
  margin: 0;
  padding: 0;
}

hr {
  color: inherit;
  height: 0;
  overflow: visible;
}

details, main {
  display: block;
}

summary {
  display: list-item;
}

small {
  font-size: 80%;
}

[hidden] {
  display: none;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

a {
  background-color: transparent;
}

a:active, a:hover {
  outline-width: 0;
}

code, kbd, pre, samp {
  font-family: monospace, monospace;
}

pre {
  font-size: 1em;
}

b, strong {
  font-weight: bolder;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  border-color: inherit;
  text-indent: 0;
}

iframe {
  border-style: none;
}

input {
  border-radius: 0;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

textarea {
  overflow: auto;
  resize: vertical;
}

button, input, optgroup, select, textarea {
  font: inherit;
}

optgroup {
  font-weight: 700;
}

button {
  overflow: visible;
}

button, select {
  text-transform: none;
}

[role=button], [type=button], [type=reset], [type=submit], button {
  cursor: pointer;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

[type=reset], [type=submit], button, html [type=button] {
  -webkit-appearance: button;
}

button, input, select, textarea {
  background-color: transparent;
  border-style: none;
}

a:focus, button:focus, input:focus, select:focus, textarea:focus {
  outline-width: 0;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
}

select::-ms-expand {
  display: none;
}

select::-ms-value {
  color: currentColor;
}

legend {
  border: 0;
  color: inherit;
  display: table;
  max-width: 100%;
  white-space: normal;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  color: inherit;
  font: inherit;
}

[disabled] {
  cursor: default;
}

img {
  border-style: none;
}

progress {
  vertical-align: baseline;
}

[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled=true] {
  cursor: default;
}

/* 共通事項
------------------------------------------ */
body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.75;
  font-size: 1rem;
  color: #444;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  object-fit: contain;
}

a {
  color: #444;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.7;
}

ul {
  list-style: none;
}

@media screen and (max-width: 767px) {
  .u-invisibleSp {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .u-invisiblePc {
    display: none;
  }
}

/* ボタンのスタイル
------------------------------------------ */
.button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3.75rem;
  width: 18.75rem;
  border-radius: 1.875rem;
  border: 2px solid #F5BB06;
  background-color: #F5BB06;
  color: #ffffff;
  font-size: 1.25rem;
  position: relative;
}
.button:hover {
  background-color: #ffffff;
  color: #F5BB06;
}
.button__login {
  margin-top: 1.25rem;
}
.button__list {
  height: 3.125rem;
  margin: 0.9375rem auto 0.625rem;
  background-color: #ffffff;
  color: #F5BB06;
}
.button__list:hover {
  background-color: #F5BB06;
  color: #ffffff;
}
.button__bi {
  position: absolute;
  top: 50%;
  right: 2vw;
  transform: translateY(-50%);
}

.container {
  margin: 0 auto;
  padding: 0 1rem;
}
@media screen and (min-width: 768px) {
  .container {
    padding: 0 1.375rem;
    width: 100%;
    max-width: 1100px;
  }
}

/* フォントの共通スタイル */
.mplus {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 500;
}

/* 見出し */
h2 {
  font-size: 2.5rem;
  line-height: 1.2;
  text-align: center;
  color: #000;
}
@media screen and (min-width: 768px) {
  h2 {
    font-size: 3.75rem;
  }
}
h2 span {
  position: relative;
}
h2 span::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 30px;
  height: 30px;
  background-color: #EDDDFD;
  border-radius: 50%;
  z-index: -1;
  transform: translate(-77%, -95%);
}
h2 span::before {
  width: 40px;
  height: 40px;
}

/* header
------------------------------------------ */
.menu-toggle {
  display: none;
}

.header {
  flex-wrap: wrap;
  overflow: hidden;
  transition: height 0.4s ease;
  position: fixed;
  top: 10px;
  left: 0;
  right: 0;
  width: 90vw;
  padding-left: 6vw;
  padding-right: 6vw;
  z-index: 100;
  background-color: #F5BB06;
  border-radius: 30px;
  overflow: hidden;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
}
.header__logo {
  color: #ffffff;
  font-size: 1.75rem;
}

/* ハンバーガーボタン
------------------------------------------ */
.hamburger__button {
  font-size: 2.0625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .hamburger__button {
    display: none;
  }
}

/* ハンバーガーメニュー
------------------------------------------ */
.hamburger-nav-list a {
  color: #ffffff;
  font-size: 1.25rem;
}

@media screen and (max-width: 767px) {
  .hamburger-menu {
    width: 90vw;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background-color: #F5BB06;
  }
  .menu-toggle:checked ~ .hamburger-menu {
    max-height: 21.875rem;
    opacity: 1;
    visibility: visible;
  }
  .hamburger-nav-list {
    display: flex;
    flex-direction: column;
    gap: 1.625rem;
    padding: 2rem 0;
    text-align: center;
  }
}
/* PC版 */
@media screen and (min-width: 768px) {
  .hamburger-menu {
    display: flex;
    align-items: center;
    column-gap: 0.5rem;
  }
  .hamburger-nav-list {
    display: flex;
    flex-direction: row;
    gap: 2.8vw;
    align-items: center;
    justify-content: space-between;
  }
}
/* cover
------------------------------------------ */
.cover {
  background-color: #FCC602;
}
.cover .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .cover .container {
    padding-top: 9.0625rem;
    padding-bottom: 8.625rem;
    flex-direction: row;
    justify-content: center;
    gap: 2.75rem;
  }
}
.cover__left img {
  width: 11.25rem;
  height: 11.25rem;
  border-radius: 50%;
  object-fit: cover;
  object-position: bottom;
}
@media screen and (min-width: 768px) {
  .cover__left img {
    width: 16.25rem;
    height: 16.25rem;
  }
}
.cover__right {
  padding-left: 16px;
  padding-right: 16px;
  color: #000;
}
.cover__right a {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 5px;
}
.cover__right a:hover {
  color: #ffffff;
}
.cover__title {
  background-color: #ffffff;
  color: #F5BB06;
  padding: 5px 16px;
  margin-bottom: 18px;
}
@media screen and (min-width: 768px) {
  .cover__title {
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 768px) {
  .cover__title p {
    font-size: 1.25rem;
  }
}
.cover__title h1 {
  font-size: 2.25rem;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .cover__title h1 {
    font-size: 3.5rem;
  }
}

/* About Me
------------------------------------------ */
.about {
  margin-top: 6rem;
}
.about__item {
  padding-top: 1rem;
  padding-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .about__item {
    padding-top: 1.25rem;
    padding-bottom: 0;
    flex-direction: row-reverse;
    gap: 2.5rem;
  }
}
@media screen and (min-width: 768px) {
  .about__right {
    width: 50%;
  }
}
.about__left img {
  width: 15.625rem;
  border-radius: 0 50px 0 50px;
}

/* Skills
------------------------------------------ */
.skills {
  margin-top: 6rem;
}
.skills__item {
  padding: 1.875rem 1rem 1.25rem 2.125rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .skills__item {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.skills__box {
  padding: 0.625rem 1.25rem 1.25rem 0.625rem;
  position: relative;
  z-index: 1;
  background-color: #FEF5D1;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: auto;
  min-height: 15.625rem;
  color: #000;
}
@media screen and (min-width: 768px) {
  .skills__box {
    width: calc(33.3333333333% - 16px);
  }
}
.skills__box::before {
  content: "";
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 100%;
  height: 100%;
  border: solid 3px #FCC602;
  z-index: -1;
}
.skills__box--s {
  font-size: 0.875rem;
}
.skills__box--wide {
  width: 100%;
}
.skills__box ul {
  flex-grow: 1;
}
.skills__box ul li {
  display: flex;
  align-items: flex-start;
  gap: 5px;
}
.skills__box ul li::before {
  font-family: "bootstrap-icons";
  content: "\f199";
  color: #92C353;
  flex-shrink: 0;
}
.skills h3 {
  text-align: center;
  font-size: 1rem;
  padding-bottom: 10px;
}

/* works
------------------------------------------ */
.works {
  margin-top: 6rem;
}
.works__attention {
  background-color: #EDDDFD;
  padding: 1.25rem 1rem;
}
@media screen and (min-width: 768px) {
  .works__attention {
    text-align: center;
  }
}
.works__item {
  background-color: #FCC602;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

/* 案件一覧
------------------------------------------ */
.work-card {
  margin: 2.5rem auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .work-card {
    display: grid;
    grid-template-columns: repeat(2, auto);
  }
}
.work-card__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.work-card__img {
  width: 40%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .work-card__img {
    width: 50%;
  }
}
.work-card__body {
  padding: 2em;
  background-color: #FEF5D1;
  position: relative;
}
.work-card__body::after {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  border-width: 0 25px 25px 0;
  border-style: solid;
  border-color: #FCC602 #fff #FCC602;
}
.work-card__body h3 {
  padding-bottom: 0.625rem;
  text-align: center;
}
.work-card__body dl {
  display: grid;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 768px) {
  .work-card__body dl {
    grid-template-columns: 5.3125rem 1fr;
  }
}
.work-card__body dt,
.work-card__body dd {
  padding: 0.3125rem 0.625rem;
  border-bottom: 2px solid #FCC602;
}
.work-card__body dt {
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .work-card__body dl dd:last-of-type {
    border-bottom: none;
  }
}
.work-card__body--full {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
}

.thumbnail {
  width: 180px;
  height: auto;
}

/* カルーセル
------------------------------------------ */
.works-carousel {
  margin: 2.5rem auto 0;
  max-width: 1100px;
}
.works-carousel__body {
  margin: 10px;
  padding: 10px;
  background-color: #F5BB06;
  position: relative;
  outline: solid 4px #F5BB06;
  outline-offset: 5px;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .works-carousel__body {
    margin: 1rem;
    padding: 1rem;
  }
}
.works-carousel__body::after {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  border-width: 25px 25px 0 0;
  border-style: solid;
  border-color: #F5BB06 #fff #F5BB06;
  box-shadow: -3px -1px 2px rgba(0, 0, 0, 0.15);
}
.works-carousel__body .work-card__title {
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .works-carousel__body .work-card__title {
    flex-direction: row;
  }
}
.works-carousel dt,
.works-carousel dd {
  padding: 0.3125rem 0.625rem;
  border-bottom: 2px dashed #FEF5D1;
}
.works-carousel dt {
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .works-carousel dl dd:last-of-type {
    border-bottom: none;
  }
}

.slick-track {
  display: flex;
  align-items: center;
}

.slick-slide {
  transform: scale(0.8);
  opacity: 0.6;
  transition: transform 0.4s ease;
  height: auto;
}

.slick-slide > div {
  height: 100%;
}

.slide-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.slick-center {
  opacity: 1;
  transform: scale(1);
}

.slick-dots {
  bottom: -40px;
}

.slick-dotted.slick-slider {
  margin-bottom: 4.375rem;
}

.slick-dots li button:before {
  font-size: 0.625rem;
  color: #92C353;
}

.slick-dots li.slick-active button:before {
  color: #92C353;
}

/* Contact
------------------------------------------ */
.contact {
  margin: 6rem auto 3.75rem;
}
.contact p {
  margin-top: 1.25rem;
  text-align: center;
}
.contact__list {
  margin: 1.25rem auto;
  padding: 1.25rem;
  background-color: #FEF5D1;
}
.contact__list h3 {
  text-align: center;
}
.contact__list ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.625rem;
}
.contact__btn {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .contact__btn {
    flex-direction: row;
  }
}

/* footer
------------------------------------------ */
.footer {
  background-color: #F5BB06;
  height: 3.25rem;
  font-size: 0.75rem;
  text-align: center;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* login
------------------------------------------ */
.login {
  background-color: #FCC602;
  height: calc(100vh - 3.25rem);
  padding-top: 9.0625rem;
  padding-bottom: 8.625rem;
}
.login h1 {
  font-weight: 700;
}
.login .container {
  background-color: #ffffff;
  width: 90%;
  max-width: 26.25rem;
  height: 25rem;
  border-radius: 0.625rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  flex-direction: column;
}
.login__error {
  color: red;
  font-size: 0.875rem;
}
.login__textbox {
  width: 100%;
  max-width: 21.875rem;
  height: 2.5rem;
  border-radius: 0.625rem;
  border: 1px solid #444;
}/*# sourceMappingURL=main.css.map */