@charset "UTF-8";
/*===============================================
# font-size
=================================================*/
/*==========================================================================
# reset - ブラウザの差異や不要なスタイルを無くすためのスタイル
========================================================================== */
* {
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
  background-color: #fff;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

header,
footer,
nav,
section,
article,
aside,
figure,
figcaption {
  display: block;
}

header {
  z-index: 15;
}

img {
  border: none;
  vertical-align: bottom;
}

a {
  cursor: pointer;
  text-decoration: none;
}

/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  appearance: button;
  border: none;
  box-sizing: border-box;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}

input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}

input[type="submit"] {
  -webkit-appearance: none;
}

iframe {
  border: none;
}

/*===============================================
# common
=================================================*/
html {
  scroll-behavior: initial !important;
  font-size: 16px;
}

body {
  font-size: 16px;
  font-size: 1rem;
  color: #222222;
  font-family: "Noto Sans JP", serif;
  line-height: 1.75;
  letter-spacing: 0.1em;
  font-weight: 400;
  color: #222222;
}

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

* {
  padding: 0;
  margin: 0;
}

#wrap {
  overflow: hidden;
  width: 100%;
}

a:hover {
  opacity: 0.8;
}

img {
  width: 100%;
  image-rendering: -webkit-optimize-contrast;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  box-sizing: border-box;
  position: relative;
}

@media screen and (max-width: 1279px) {
  .container {
    padding: 0 20px;
  }
}

@media screen and (max-width: 767px) {
  .container {
    margin: 0 auto;
    padding: 0 15px;
  }
}

@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
}

.is-sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .is-sp {
    display: block;
  }
}

a {
  color: #222222;
}

a:hover {
  opacity: 0.7;
  display: flex;
}

@media screen and (max-width: 767px) {
  .header-mt {
    margin-top: 55px;
  }
}

/* color
================================*/
.main-color {
  color: #222222;
}

/* font
================================*/
.kantumruy {
  font-family: "Kantumruy Pro", sans-serif;
}

/* btn
================================*/
.btn {
  width: 220px;
  background-color: #222222;
  padding: 18px 18px 18px 24px;
  color: #fff;
  font-weight: 500;
  border-radius: 8px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .btn {
    width: 180px;
    padding: 15px 15px 15px 18px;
  }
}

.btn::after {
  position: absolute;
  content: "";
  background: url(http://ys-portfolio.com/wp-content/uploads/2025/06/btn_arrow.png) center center/contain no-repeat;
  width: 40px;
  height: 18px;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .btn::after {
    width: 35px;
    height: 15px;
    right: 15px;
  }
}

/*===============================================
# header
=================================================*/
.wrap {
  position: relative;
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  padding: 17px 0;
}

@media screen and (max-width: 767px) {
  .header {
    height: 65px;
    padding: 15px 0;
  }
}

.header_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  padding-top: 4px;
}

@media (max-width: 768px) {
  .sp_menu {
    width: 100%;
    display: block;
    width: 45px;
    height: 45px;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 999;
    /*追記：いつも一番上*/
    border: 1px solid #222222;
    border-radius: 4px;
  }
  .bar {
    width: 19px;
    height: 1px;
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background-color: #000;
    transition: transform .3s;
    z-index: 100;
  }
  .bar-top {
    top: 14px;
  }
  .bar-middle {
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .bar-bottom {
    bottom: 13px;
  }
  .sp_menu.close .bar-top {
    transform: translate(-50%, 8px) rotate(45deg);
    transition: transform .3s;
  }
  .sp_menu.close .bar-middle {
    opacity: 0;
    transition: opacity .3s;
  }
  .sp_menu.close .bar-bottom {
    transform: translate(-50%, -7px) rotate(-45deg);
    transition: transform .3s;
  }
  .header_logo {
    text-align: center;
    margin-bottom: 80px;
  }
  .header_logo img {
    width: initial;
	height: 70px;
  }
  .header_contents {
    display: none;
    background-color: #F5F5F5;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    padding-top: 50px;
    text-align: center;
  }
  .header_menu {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-bottom: 80px;
  }
  .header_menu a {
    padding-bottom: 6px;
    border-bottom: 1px solid #222222;
    font-size: 40px;
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1;
  }
  .sns_wrap {
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(3, 38px);
    margin-top: 15px;
    gap: 10px;
  }
}

/*===============================================
# page_header
=================================================*/
.page_header {
  padding: 45px 40px;
}

.page_header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page_header_logo {
  height: auto;
}

.page_header_logo a {
  display: flex;
  width: 0;
}

.page_header_logo img {
  width: initial;
  height: 70px;
}

.page_header_contents {
  display: flex;
  gap: 50px;
}

.page_header_menu {
  display: flex;
  gap: 40px;
}

.page_header_menu a {
  padding-bottom: 6px;
  border-bottom: 1px solid #222222;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
}

.page_sns_wrap {
  display: grid;
  grid-template-columns: repeat(3, 32px);
  gap: 10px;
}

/*===============================================
# footer
=================================================*/
.footer {
  background: #222222;
  padding: 70px 0;
}

@media screen and (max-width: 767px) {
  .footer {
    padding: 50px 0;
  }
}

.footer_body {
  display: grid;
  grid-template-columns: auto 95px;
  justify-content: space-between;
  align-items: end;
  position: relative;
}

@media screen and (max-width: 1023px) {
  .footer_body {
    grid-template-columns: 1fr;
  }
}

.footer_contents {
  display: flex;
  gap: 100px;
}


@media screen and (max-width: 767px) {
  .footer_contents {
    flex-direction: column;
    gap: 50px;
  }
}

.footer_menu h2 {
  font-weight: 700;
  color: #fff;
  position: relative;
  left: -10px;
}

.footer_menu_wrap {
  margin-top: 20px;
  display: flex;
  gap: 30px;
}

.footer_menu_wrap a {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  color: #fff;
}

.footer_menu img {
  height: 70px;
  width: 70px;
}

@media screen and (max-width: 1023px) {
  .footer_right {
    margin-top: 30px;
  }
	
  .footer_menu h2 {
    left: -20px;
  }
}

.copyright {
  margin-top: 20px;
  font-size: 10px;
  font-size: 0.625rem;
  font-weight: 400;
  color: #fff;
  text-align: right;
  white-space: nowrap;
  display: flex;
  justify-content: right;
}

.totop {
  width: 44px;
  height: 44px;
  margin-left: auto;
  margin-right: 10px;
}

.footer_title {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}

.footer_button {
  display: flex;
  align-items: center;
  width: 100%;
}

/*===============================================
# トップページ
=================================================*/
.mv {
  position: relative;
  padding-top: 40px;
  background: linear-gradient(#F5F5F5 0%, #F5F5F5 76%, #fff 76%, #fff) 100%;
}

@media screen and (max-width: 1023px) {
  .mv {
    padding-top: 80px;
  }
}

@media screen and (max-width: 767px) {
  .mv {
    padding-top: 55px;
  }
}

.scroll-down {
  position: absolute;
  bottom: 140px;
  left: 3.75%;
  width: 8px;
}

@media screen and (max-width: 1450px) {
  .scroll-down {
    width: 10px;
  }
}

@media screen and (max-width: 1279px) {
  .scroll-down {
    bottom: 60px;
    width: 11px;
  }
}

@media screen and (max-width: 767px) {
  .scroll-down {
    display: none;
  }
}

.scroll-down .move {
  animation-name: UpDown;
  animation-duration: 0.5s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-direction: alternate;
}

/* アニメーションの設定 */
@keyframes UpDown {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(10px);
  }
}

.mv_contents {
  width: 92%;
  margin-left: auto;
  padding-right: 30px;
  display: grid;
  grid-template-columns: 67% auto;
  justify-content: space-between;
  align-items: end;
}

@media screen and (max-width: 1023px) {
  .mv_contents {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media screen and (max-width: 767px) {
  .mv_contents {
    width: 100%;
    padding: 0 15px;
  }
}

@media screen and (max-width: 767px) {
  .mv_title {
    display: flex;
    flex-direction: column;
  }
}

.mv_title_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .mv_title_top {
    display: contents;
  }
}

.mv_title_top p {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .mv_title_top p {
    font-size: 16px;
    font-size: 1rem;
    order: -2;
    text-align: center;
  }
}

@media screen and (max-width: 560px) {
  .mv_title_top p {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.mv_sns_wrap {
  display: grid;
  grid-template-columns: repeat(3, 32px);
  gap: 10px;
  justify-content: flex-end;
}

@media screen and (max-width: 1023px) {
  .mv_sns_wrap {
    justify-content: center;
  }
}

@media screen and (max-width: 767px) {
  .mv_sns_wrap {
    justify-content: center;
    grid-template-columns: repeat(3, 38px);
  }
}

.mv_title_name {
  margin-top: 10px;
}

@media screen and (max-width: 767px) {
  .mv_title_name {
    order: -1;
  }
}

.mv_title_name h1 {
  font-size: 110px;
  font-size: 6.875rem;
  font-weight: 500;
  line-height: 1.175;
}

@media screen and (max-width: 1279px) {
  .mv_title_name h1 {
    font-size: 90px;
    font-size: 5.625rem;
  }
}

@media screen and (max-width: 1023px) {
  .mv_title_name h1 {
    font-size: 80px;
    font-size: 5rem;
  }
}

@media screen and (max-width: 767px) {
  .mv_title_name h1 {
    text-align: center;
    font-size: 64px;
    font-size: 4rem;
  }
}

.mv_menu {
  height: 100%;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-self: flex-end;
}

@media screen and (max-width: 1023px) {
  .mv_menu {
    padding-bottom: 15px;
    gap: 50px;
  }
}

@media screen and (max-width: 767px) {
  .mv_menu {
    padding-bottom: 45px;
    gap: 40px;
  }
}

.mv_menu ul {
  display: flex;
  gap: 40px;
}

@media screen and (max-width: 1279px) {
  .mv_menu ul {
    gap: 30px;
  }
}

@media screen and (max-width: 1023px) {
  .mv_menu ul {
    gap: 30px;
    justify-content: center;
  }
}

.mv_menu ul a {
  padding-bottom: 6px;
  border-bottom: 1px solid #222222;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
}

@media screen and (max-width: 1023px) {
  .mv_menu ul a {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.mv_img {
  margin-top: 30px;
  width: 92%;
  margin-left: auto;
  max-height: 600px;
  overflow: hidden;
}

.mv_img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 1560px) {
  .mv_img {
    max-height: 750px;
  }
}

@media screen and (max-width: 767px) {
  .mv_img {
    margin-top: 40px;
    width: 100%;
    height: initial;
  }
}

/* top_works
================================*/
.top_works {
  padding-top: 200px;
}

@media screen and (max-width: 767px) {
  .top_works {
    padding-top: 100px;
  }
}

.top_works_title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.works_body {
  margin-top: 50px;
}

.works_body .btn {
  margin: auto;
  margin-top: 50px;
}

.works_wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 70px 80px;
}

@media screen and (max-width: 1279px) {
  .works_wrapper {
    gap: 80px 50px;
  }
}

@media screen and (max-width: 767px) {
  .works_wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

.works_wrapper._archive {
  padding-bottom: 120px;
}

@media screen and (max-width: 767px) {
  .works_wrapper._archive {
    padding-bottom: 50px;
  }
}

.works_item {
  position: relative;
}

.works_item_img {
  width: 100%;
  height: 320px;
}

@media screen and (max-width: 1023px) {
  .works_item_img {
    height: 290px;
  }
}

@media screen and (max-width: 767px) {
  .works_item_img {
    height: 350px;
  }
}

@media screen and (max-width: 560px) {
  .works_item_img {
    height: 250px;
  }
}

.works_item_img img {
  object-fit: cover;
  aspect-ratio: 560 / 320;
  width: 100%;
  height: 100%;
}

.works_item_body {
  position: relative;
  margin-top: 20px;
}

.works_item_body::after {
  position: absolute;
  content: "";
  background: url(http://ys-portfolio.com/wp-content/uploads/2025/06/works_arrow.png) center center/contain no-repeat;
  width: 56px;
  height: 24px;
  right: 0;
  bottom: 0;
}

.works_item_title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .works_item_title {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

.works_item_meta {
  margin-top: 5px;
}

.works_item_category {
  display: inline;
  position: relative;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 400;
  color: #666666;
}

.works_item_category + .works_item_category {
  padding-left: 15px;
}

.works_item_category + .works_item_category::before {
  position: absolute;
  content: ",";
  bottom: 0;
  left: -8px;
}

/* top_about
================================*/
.top_about {
  padding-top: 180px;
  padding-bottom: 150px;
}

@media screen and (max-width: 767px) {
  .top_about {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.top_about .container {
  position: relative;
  z-index: 2;
}

.top_about_body {
  position: relative;
  width: 83%;
  max-width: 1440px;
  margin-left: auto;
  transform: translateY(-50px);
  background: #F5F5F5;
  z-index: 0;
  padding: 100px 120px;
}

@media screen and (max-width: 1279px) {
  .top_about_body {
    width: 100%;
    max-width: 1200px;
    margin-left: 50px;
    padding: 100px 80px;
  }
}

@media screen and (max-width: 767px) {
  .top_about_body {
    margin-left: 30px;
    padding: 80px 30px;
  }
}

@media screen and (max-width: 560px) {
  .top_about_body {
    padding: 80px 30px 50px 30px;
  }
}

.top_about_title {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

@media screen and (max-width: 767px) {
  .top_about_title {
    padding-right: 15px;
  }
}

.top_about_title h3 {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
}

.top_about_title p {
  font-weight: 500;
}

.top_about_text {
  margin-top: 30px;
  font-weight: 400;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .top_about_text {
    padding-right: 15px;
  }
}

.top_about_btn {
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .top_about_btn {
    padding-right: 15px;
  }
}

.top_about_btn a {
  margin-left: auto;
  display: block;
}

/*===============================================
# page_common
=================================================*/
.section_title01 {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.section_title01 h2 {
  font-size: 70px;
  font-size: 4.375rem;
  line-height: 1;
  font-weight: 500;
}

@media screen and (max-width: 1023px) {
  .section_title01 h2 {
    font-size: 60px;
    font-size: 3.75rem;
  }
}

@media screen and (max-width: 767px) {
  .section_title01 h2 {
    font-size: 60px;
    font-size: 3.75rem;
  }
}

.section_title01 p {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}

.section_title02 h2 {
  font-size: 70px;
  font-size: 4.375rem;
  line-height: 1;
  font-weight: 500;
}

@media screen and (max-width: 1023px) {
  .section_title02 h2 {
    font-size: 60px;
    font-size: 3.75rem;
  }
}

@media screen and (max-width: 767px) {
  .section_title02 h2 {
    font-size: 60px;
    font-size: 3.75rem;
  }
}

.section_title02 p {
  margin-top: 6px;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}

.section_title03 {
  text-align: center;
}

.section_title03 h2 {
  font-size: 70px;
  font-size: 4.375rem;
  line-height: 1;
  font-weight: 500;
}

@media screen and (max-width: 1023px) {
  .section_title03 h2 {
    font-size: 60px;
    font-size: 3.75rem;
  }
}

@media screen and (max-width: 767px) {
  .section_title03 h2 {
    font-size: 60px;
    font-size: 3.75rem;
  }
}

.section_title03 p {
  margin-top: 13px;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}

/* page_mv
================================*/
.page_mv {
  padding-top: 40px;
  padding-bottom: 105px;
}

@media screen and (max-width: 767px) {
  .page_mv {
    padding-top: 80px;
    padding-bottom: 60px;
  }
}

.page_mv_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page_mv_inner h1 {
  font-size: 90px;
  font-size: 5.625rem;
  font-weight: 500;
}

@media screen and (max-width: 1023px) {
  .page_mv_inner h1 {
    font-size: 80px;
    font-size: 5rem;
  }
}

@media screen and (max-width: 767px) {
  .page_mv_inner h1 {
    font-size: 70px;
    font-size: 4.375rem;
  }
}

@media screen and (max-width: 560px) {
  .page_mv_inner h1 {
    font-size: 60px;
    font-size: 3.75rem;
  }
}

.page_mv_inner p {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
}

@media screen and (max-width: 1023px) {
  .page_mv_inner p {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

@media screen and (max-width: 767px) {
  .page_mv_inner p {
    font-size: 16px;
    font-size: 1rem;
  }
}

/*===============================================
# about
=================================================*/
/* about_message
================================*/
.about_message {
  border-top: 1px solid #B8B8B8;
  display: grid;
  align-items: center;
  grid-template-columns: 38% auto;
}

@media screen and (max-width: 1279px) {
  .about_message {
    grid-template-columns: 34% auto;
  }
}

@media screen and (max-width: 767px) {
  .about_message {
    border: none;
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 40px;
  }
}

.about_message_contents {
  padding-left: 80px;
  padding-right: 120px;
}

@media screen and (max-width: 1450px) {
  .about_message_contents {
    padding-right: 90px;
  }
}

@media screen and (max-width: 1279px) {
  .about_message_contents {
    padding-right: 20px;
    padding-left: 40px;
  }
}

@media screen and (max-width: 1023px) {
  .about_message_contents {
    font-size: 14px;
    font-size: 0.875rem;
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media screen and (max-width: 1023px) {
  .about_message_contents .section_title02 h2 {
    font-size: 55px;
    font-size: 3.4375rem;
  }
}

@media screen and (max-width: 767px) {
  .about_message_contents .section_title02 h2 {
    font-size: 40px;
    font-size: 2.5rem;
  }
}

.about_message_contents_text {
  margin-top: 30px;
  line-height: 2;
}

@media screen and (max-width: 1023px) {
  .about_message_contents_text {
    margin-top: 15px;
  }
}

@media screen and (max-width: 767px) {
  .about_message_contents_text {
    margin-top: 30px;
  }
}

/* about_detail
================================*/
.about_detail {
  background-color: #222222;
  padding: 80px 0;
}

@media screen and (max-width: 767px) {
  .about_detail {
    padding: 50px 0;
  }
}

.about_detail_wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

@media screen and (max-width: 767px) {
  .about_detail_wrap {
    grid-template-columns: 1fr;
  }
}

.about_detail_item {
  background-color: #fff;
  padding: 40px;
  display: grid;
  grid-template-columns: 90px auto;
}

@media screen and (max-width: 767px) {
  .about_detail_item {
    padding: 30px 20px;
  }
}

.about_detail_item h3 {
  font-weight: 700;
}

/* about_skills
================================*/
.about_skills {
  background-color: #F5F5F5;
  padding-top: 150px;
  padding-bottom: 150px;
}

@media screen and (max-width: 767px) {
  .about_skills {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.about_skills_wrap {
  margin-top: 50px;
}

.about_skills_item {
  border-top: 1px solid #222222;
  padding: 50px 40px;
  display: grid;
  grid-template-columns: 180px auto;
  gap: 80px;
}

@media screen and (max-width: 1279px) {
  .about_skills_item {
    gap: 50px;
  }
}

@media screen and (max-width: 767px) {
  .about_skills_item {
    padding: 30px 20px;
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

.about_skills_item:last-child {
  border-bottom: 1px solid #222222;
}

.about_skills_item dt {
  display: flex;
  align-items: center;
  gap: 25px;
}

.about_skills_item dt h3 {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
}

/* about_career
================================*/
.about_title h2 {
  font-size: 50px;
  font-size: 3.125rem;
}

@media screen and (max-width: 1279px) {
  .about_title h2 {
    font-size: 45px;
    font-size: 2.8125rem;
  }
}

.about_career {
  background-color: #F5F5F5;
}

.about_career_body {
  width: 92%;
  background-color: #fff;
  padding: 100px 0;
}

@media screen and (max-width: 1279px) {
  .about_career_body {
    width: 95%;
  }
}

@media screen and (max-width: 1023px) {
  .about_career_body {
    padding: 50px 0;
  }
}

.about_career_inner {
  display: grid;
  grid-template-columns: 25% auto;
  align-items: center;
}

@media screen and (max-width: 1279px) {
  .about_career_inner {
    grid-template-columns: 23% auto;
  }
}

@media screen and (max-width: 1023px) {
  .about_career_inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.about_career_list {
  border-left: 1px solid #222222;
  padding-left: 100px;
}

@media screen and (max-width: 1279px) {
  .about_career_list {
    padding-left: 40px;
  }
}

@media screen and (max-width: 1023px) {
  .about_career_list {
    padding-left: 0px;
    border: none;
  }
}

.about_career_list ul {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  font-size: 14px;
  font-size: 0.875rem;
}

@media screen and (max-width: 767px) {
  .about_career_list ul {
    padding: 0 5px;
  }
}

.about_career_list ul li {
  display: grid;
  grid-template-columns: 45px auto;
  gap: 20px;
  padding-left: 38px;
  position: relative;
}

@media screen and (max-width: 1279px) {
  .about_career_list ul li {
    padding-left: 32px;
  }
}

@media screen and (max-width: 1023px) {
  .about_career_list ul li {
    padding-left: 20px;
  }
}

.about_career_list ul li::before {
  position: absolute;
  content: "";
  background: #222222;
  width: 8px;
  height: 8px;
  left: 0;
  top: 8px;
  border-radius: 50%;
}

/* about_strength
================================*/
.about_strength {
  background-color: #F5F5F5;
  padding: 150px 0;
}

@media screen and (max-width: 767px) {
  .about_strength {
    padding: 90px 0;
  }
}

.about_strength_wrapper {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

@media screen and (max-width: 1279px) {
  .about_strength_wrapper {
    gap: 20px;
  }
}

@media screen and (max-width: 767px) {
  .about_strength_wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.about_strength_item {
  background-color: #222222;
  padding: 50px;
  color: #fff;
}

@media screen and (max-width: 1279px) {
  .about_strength_item {
    padding: 40px 30px;
  }
}

@media screen and (max-width: 767px) {
  .about_strength_item {
    padding: 35px 15px;
  }
}

.about_strength_item_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.about_strength_item_top h3 {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
}

.about_strength_item_top p {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
}

.about_strength_item_text {
  margin-top: 25px;
}

.about_strength_item_text p {
  font-size: 14px;
  font-size: 0.875rem;
}

/*===============================================
# contact
=================================================*/
.contact {
  padding: 140px 0;
  border-top: 1px solid #B8B8B8;
}

.contact_text {
  margin-top: 30px;
  text-align: center;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 400;
}

.contact_attend {
  margin-top: 40px;
}

.contact_attend p {
  text-align: center;
  color: #666666;
  font-size: 12px;
  font-size: 0.75rem;
}

.contact_attend p span {
  color: #ED5B5B;
  font-size: 12px;
  font-size: 0.75rem;
}

.contact_wrap {
  max-width: 760px;
  margin: auto;
  margin-top: 20px;
}

.contact_item {
  display: grid;
  grid-template-columns: 150px auto;
  gap: 25px;
}

@media screen and (max-width: 767px) {
  .contact_item {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}

.contact_item + .contact_item {
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .contact_item + .contact_item {
    margin-top: 20px;
  }
}

.contact_item_title {
  font-weight: 700;
  text-align: right;
}

@media screen and (max-width: 767px) {
  .contact_item_title {
    text-align: left;
  }
}

.contact_item_title_inline {
  color: #E82525;
  font-size: 12px;
  font-size: 0.75rem;
  vertical-align: top;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  border: 0;
  font-size: 16px;
  font-size: 1rem;
  width: 100%;
}

@media screen and (max-width: 767px) {
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  select,
  textarea {
    font-size: 16px;
    font-size: 1rem;
  }
}

input[type="text"],
input[type="email"],
select,
input[type="tel"] {
  padding: 8px 12px;
  border-bottom: 1px solid #BABABA;
}

textarea {
  min-height: 70px;
  height: 70px;
  resize: vertical;
  padding: 8px 12px;
  border-bottom: 1px solid #BABABA;
}

.wpcf7-radio .wpcf7-list-item {
  display: block;
  margin-bottom: 10px;
}

.contact_item_check {
  margin-bottom: 100px;
}

@media screen and (max-width: 1023px) {
  .contact_item_check {
    margin-bottom: 70px;
  }
}

@media screen and (max-width: 767px) {
  .contact_item_check {
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 560px) {
  .contact_item_check {
    margin-bottom: 35px;
  }
}

.contact_footer {
  margin-top: 50px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .contact_footer {
    margin-top: 30px;
  }
}

.contact_footer-text {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1;
}

.contact_footer_text {
  display: flex;
  margin-top: 40px;
  font-weight: bold;
}

.wpcf7-form-control-wrap {
  display: block;
}

span.wpcf7-list-item {
  position: relative;
  display: block;
  margin: 0;
}

@media screen and (max-width: 767px) {
  span.wpcf7-list-item {
    margin: 0;
  }
}

.wpcf7-list-item-label {
  position: relative;
}

input[type="checkbox"] {
  position: absolute;
  opacity: 0;
}

.wpcf7-list-item-label::before {
  content: "";
  border: 2px solid #707070;
  display: inline-block;
  top: -2px;
  left: 0;
  width: 22px;
  height: 22px;
  cursor: pointer;
  position: relative;
  margin-right: 12px;
  vertical-align: middle;
}

@media screen and (max-width: 767px) {
  .wpcf7-list-item-label::before {
    margin-right: 7px;
    width: 18px;
    height: 18px;
  }
}

input[type="checkbox"]:checked + .wpcf7-list-item-label::after {
  /*チェックアイコン*/
  position: absolute;
  content: "";
  width: 10px;
  height: 17px;
  border: 3px solid #222222;
  border-top: 0;
  border-left: 0;
  transform: rotate(40deg);
  top: 2px;
  left: 6px;
  cursor: pointer;
  transition: opacity 0.3s ease 0s;
}

@media screen and (max-width: 767px) {
  input[type="checkbox"]:checked + .wpcf7-list-item-label::after {
    top: 3px;
    left: 5px;
    width: 7px;
    height: 13px;
  }
}

.contact_privacy {
  font-size: 20px;
  font-size: 1.25rem;
}

@media screen and (max-width: 767px) {
  .contact_privacy {
    font-size: 16px;
    font-size: 1rem;
  }
}

.contact_privacy a {
  color: #0094CB;
  text-decoration: underline;
  font-weight: 500;
  text-underline-offset: 4px;
}

.contact_footer_submit {
  margin-top: 50px;
  width: 220px;
  height: 58px;
  border-radius: 8px;
  margin-left: auto;
  overflow: hidden;
  text-align: left;
  position: relative;
}

@media screen and (max-width: 767px) {
  .contact_footer_submit {
    width: 180px;
    height: 53px;
  }
}

.contact_footer_submit::after {
  position: absolute;
  content: "";
  background: url(http://ys-portfolio.com/wp-content/uploads/2025/06/btn_arrow.png) center center/contain no-repeat;
  width: 40px;
  height: 18px;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .contact_footer_submit::after {
    width: 35px;
    height: 15px;
    right: 15px;
  }
}

.contact_link {
  display: block;
  width: 220px;
  background-color: #222222;
  padding: 18px 18px 22px 24px;
  color: #fff;
  font-weight: 500;
  border-radius: 8px;
  text-align: left;
  position: relative;
}

@media screen and (max-width: 767px) {
  .contact_link {
    width: 180px;
    padding: 16px 15px 19px 18px;
  }
}

@supports (-webkit-touch-callout: none) {
  .contact_link {
    padding: 18px 18px 32px 24px;
  }
  @media screen and (max-width: 767px) {
    .contact_link {
      padding: 19px 15px 28px 18px;
    }
  }
}

::-webkit-full-page-media, :future, :root .contact_link {
  padding: 21px 18px 32px 24px;
}

@media screen and (max-width: 767px) {
  ::-webkit-full-page-media, :future, :root .contact_link {
    padding: 19px 15px 28px 18px;
  }
}

.attend-box {
  margin: 0 auto;
  margin-top: 40px;
  width: 86.5%;
  height: 205px;
  overflow-y: scroll;
  text-align: left;
  padding: 30px 35px;
  padding-top: 0;
  border: 1px solid #b5b5b5;
}

@media screen and (max-width: 767px) {
  .attend-box {
    padding: 15px 18px;
    padding-top: 0;
    width: 95%;
    margin-top: 10px;
  }
}

.attend-box p {
  font-size: 14px;
  line-height: 18px;
  color: #333333;
}

@media screen and (max-width: 767px) {
  .attend-box p {
    font-size: 12px;
  }
}

#scroll::-webkit-scrollbar {
  width: 20px;
}

#scroll::-webkit-scrollbar-track {
  background: #f2f2f2;
  border-left: solid 1px #ececec;
}

#scroll::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
  box-shadow: inset 0 0 0 2px #fff;
  border: 3px solid #f2f2f2;
}

.contact_radio {
  margin-bottom: 5px;
}

.wpcf7-radio .wpcf7-list-item {
  display: block;
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .wpcf7-radio .wpcf7-list-item {
    margin-left: 0;
  }
}

.contact_radio_wrap {
  margin-top: -5px;
}

.contact_radio_wrap_top {
  margin-top: -35px;
}

@media screen and (max-width: 767px) {
  .contact_radio_wrap_top {
    margin-top: -20px;
  }
}

/* thanks
================================*/
.thanks-btn {
  margin-top: 100px;
}

@media screen and (max-width: 767px) {
  .thanks-btn {
    margin-top: 60px;
  }
}

.thanks-btn a {
  margin: auto;
}

/*===============================================
# recaptcha
=================================================*/
.grecaptcha-badge {
  visibility: hidden;
}

.recaptcha {
  margin-top: 10px;
  font-size: 12px;
  font-size: 0.75rem;
}

/*===============================================
# archive
=================================================*/
/* ページネーション
================================*/
.pagenation {
  border-top: solid 1px #B8B8B8;
  padding-top: 70px;
  padding-bottom: 150px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .pagenation {
    padding-top: 50px;
    padding-bottom: 90px;
  }
}

.pagenation a {
  transition: all 0.3s ease 0s;
}

.pagenation a:hover {
  opacity: 0.6;
}

.pagenation a.next:hover,
.pagenation a.prev:hover {
  opacity: 0.6;
}

.page-numbers {
  color: #FFF;
  display: inline-block;
  font-size: 24px;
  font-size: 1.5rem;
  margin-right: 20px;
  line-height: 1.5;
  font-weight: 500;
  color: #919191;
  text-align: center;
  text-decoration: none;
  border-bottom: 2px solid #919191;
}

@media screen and (max-width: 767px) {
  .page-numbers {
    font-size: 18px;
    font-size: 1.125rem;
    margin-right: 10px;
    line-height: 1.9;
  }
}

.page-numbers:last-child {
  margin-right: 0;
}

.page-numbers.current {
  color: #222222;
  font-weight: 500;
  border-bottom: 2px solid #222222;
}

.page-numbers.dots {
  background-color: transparent;
  color: #A59B81;
  margin-left: 5px;
  margin-right: 5px;
}

.page-numbers.dots,
.page-numbers.next,
.page-numbers.prev {
  border: none;
  min-width: 48px;
  height: 48px;
  width: auto;
  background: none;
  line-height: 3;
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .page-numbers.dots,
  .page-numbers.next,
  .page-numbers.prev {
    width: 35px;
    height: 35px;
    line-height: 3.2;
  }
}

.page-numbers.dots img,
.page-numbers.next img,
.page-numbers.prev img {
  width: 100%;
  height: 100%;
  margin-bottom: 8px;
}

@media screen and (max-width: 767px) {
  .page-numbers.dots img,
  .page-numbers.next img,
  .page-numbers.prev img {
    margin-bottom: 8px;
  }
}

@media screen and (max-width: 767px) {
  body.m_fixed_sns {
    padding-bottom: 67px;
  }
  .archive-head {
    margin-bottom: 20px;
    padding-top: 26px;
    margin-top: 30px;
  }
  .archive-lead {
    margin-bottom: 8px;
  }
  .archive-title {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .inner {
    padding-left: 16px;
    padding-right: 16px;
  }
  #content > .inner {
    display: block;
    padding-top: 40px;
  }
  #primary {
    margin-bottom: 70px;
    width: 100%;
  }
  .m_one #primary {
    margin-bottom: 70px;
  }
  #secondary {
    width: 100%;
  }
  .m_one #secondary {
    display: block;
  }
  .breadcrumb {
    margin-bottom: 14px;
  }
  .drawer {
    display: block;
  }
  .entries.m_horizontal .entry-item .entry-item-published {
    font-size: 10px;
  }
  .entries.m_horizontal .entry-item .entry-item-tag {
    font-size: 10px;
    margin-right: 8px;
  }
  .entries.m_horizontal .entry-item .entry-item-title {
    font-size: 12px;
    margin-bottom: 0;
  }
  .entries.m_horizontal .entry-item .entry-item-excerpt {
    display: none;
  }
  .entries.m_horizontal {
    margin-bottom: 40px;
  }
  .entries.m_block .entry-item .entry-item-published {
    font-size: 12px;
  }
  .entries.m_block .entry-item .entry-item-tag {
    font-size: 12px;
  }
  .entries.m_block .entry-item .entry-item-title {
    font-size: 18px;
  }
  .entries.m_block .entry-item .entry-item-excerpt {
    font-size: 14px;
  }
}

/*===============================================
# single
=================================================*/
.single_title_wrap {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .single_title_wrap {
    flex-direction: column;
    position: relative;
  }
}

.single_title h1 {
  font-size: 32px;
  font-size: 2rem;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .single_title h1 {
    font-size: 28px;
    font-size: 1.75rem;
  }
}

.single_category_item + .single_category_item::before {
  left: 0;
}

.single_wrap {
  padding-bottom: 100px;
}

@media screen and (max-width: 767px) {
  .single_wrap {
    padding-bottom: 50px;
  }
}

.single_img {
  margin-top: 50px;
}

@media screen and (max-width: 767px) {
  .single_img {
    margin-top: 25px;
  }
}

.single_img img {
  width: 100%;
  height: initial;
}

.single_url a {
  font-size: 18px;
  font-size: 1.125rem;
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
  .single_url a {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.single_inner {
  margin: auto;
  margin-top: 80px;
  background-color: #fff;
  max-width: 960px;
}

@media screen and (max-width: 767px) {
  .single_inner {
    margin-top: 50px;
  }
}

.single_inner h2 {
  background-color: #222222;
  padding: 10px 20px;
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 60px;
  margin-top: 15px;
}

@media only screen and (min-device-width: 360px) and (max-device-width: 768px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .single_inner h2 {
    font-weight: 400;
  }
}

@media screen and (max-width: 767px) {
  .single_inner h2 {
    font-size: 20px;
    font-size: 1.25rem;
    margin-bottom: 35px;
  }
}

.single_inner h3 {
  font-size: 18px;
  font-size: 1.125rem;
  padding: 8px 10px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.7;
  margin-top: 15px;
  margin-bottom: 60px;
  border-bottom: 2px solid #222222;
}

@media only screen and (min-device-width: 360px) and (max-device-width: 768px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .single_inner h3 {
    font-weight: 700;
  }
}

@media screen and (max-width: 767px) {
  .single_inner h3 {
    font-size: 16px;
    font-size: 1rem;
    margin-bottom: 35px;
  }
}

.single_inner p {
  line-height: 2.2;
  margin-bottom: 60px;
  font-size: 16px;
  font-size: 1rem;
}

@media screen and (max-width: 767px) {
  .single_inner p {
    margin-bottom: 35px;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 2;
  }
}

.single_inner ul {
  margin-bottom: 60px;
  background: #F7F7F7;
  padding: 15px;
  border-radius: 10px;
}

@media screen and (max-width: 767px) {
  .single_inner ul {
    margin-bottom: 35px;
  }
}

.single_inner ul li {
  padding-left: 20px;
  letter-spacing: 0;
  line-height: 1.56;
  margin-bottom: 10px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .single_inner ul li {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.single_inner ul li:last-child {
  margin-bottom: 0;
}

.single_inner ul li::before {
  position: absolute;
  content: "";
  top: 7px;
  left: 0;
  background: #222222;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

@media screen and (max-width: 767px) {
  .single_inner ul li::before {
    top: 4px;
  }
}

.single_inner ol {
  margin-bottom: 60px;
  list-style-type: decimal;
  padding-left: 20px;
  counter-reset: number;
}

@media screen and (max-width: 767px) {
  .single_inner ol {
    margin-bottom: 35px;
  }
}

.single_inner ol li {
  padding-left: 20px;
  letter-spacing: 0;
  line-height: 1.56;
  margin-bottom: 10px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .single_inner ol li {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.single_inner ol li:last-child {
  margin-bottom: 0;
}

.single_inner ol li::before {
  position: absolute;
  content: "";
  top: 0px;
  left: 0;
  color: #222222;
  counter-increment: number;
  content: counter(number) ".";
}

@media screen and (max-width: 767px) {
  .single_inner ol li::before {
    top: 0px;
  }
}

.single_inner .wp-block-table td {
  border: none;
  padding: 30px 5px;
}

.single_inner .wp-block-table td:first-child {
  font-weight: bold;
  text-align: center;
  width: 110px;
  vertical-align: middle;
}

@media screen and (max-width: 767px) {
  .single_inner .wp-block-table td:first-child {
    width: 100px;
  }
}

.single_inner .wp-block-table tr {
  border-top: 1px solid #222222;
}

.single_inner .wp-block-table tr:last-child {
  border-bottom: 1px solid #222222;
}

.single_inner img {
  width: initial;
  margin-bottom: 40px;
}

.single_inner a {
  text-decoration: underline;
  color: #0000EE;
}

.single_bottom_btn {
  margin: auto;
  margin-top: 120px;
  display: block;
  width: 385px;
  cursor: pointer;
  border-radius: 3px;
  font-size: 20px;
  font-size: 1.25rem;
  background: #222222;
  padding-top: 4px;
  padding-bottom: 5px;
  text-align: center;
  color: #fff;
  font-weight: 500;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .single_bottom_btn {
    margin-top: 60px;
    font-size: 18px;
    font-size: 1.125rem;
    padding-top: 2px;
    padding-bottom: 3px;
  }
}

.single_bottom_btn a {
  margin: auto;
}

/* other_works
================================*/
.other_works {
  border-top: 1px solid #B8B8B8;
  border-bottom: 1px solid #B8B8B8;
  padding: 100px 0;
}

@media screen and (max-width: 767px) {
  .other_works {
    padding: 60px 0;
  }
}

.other_works_wrap {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

@media screen and (max-width: 1279px) {
  .other_works_wrap {
    gap: 50px;
  }
}

@media screen and (max-width: 1023px) {
  .other_works_wrap {
    gap: 25px;
  }
}

@media screen and (max-width: 767px) {
  .other_works_wrap {
    margin-top: 40px;
    gap: 40px;
    grid-template-columns: 1fr;
  }
}

.other_works_item_img {
  height: 205px;
}

@media screen and (max-width: 1023px) {
  .other_works_item_img {
    height: 180px;
  }
}

@media screen and (max-width: 767px) {
  .other_works_item_img {
    height: 350px;
  }
}

@media screen and (max-width: 560px) {
  .other_works_item_img {
    height: 250px;
  }
}

/* back_list
================================*/
.back_list {
  padding-top: 120px;
  padding-bottom: 150px;
}

@media screen and (max-width: 767px) {
  .back_list {
    padding-top: 80px;
    padding-bottom: 90px;
  }
}

.back_list a {
  position: relative;
  display: block;
  margin: auto;
  width: 320px;
  padding-bottom: 20px;
  border-bottom: 2px solid #222222;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 500;
  text-align: center;
}

@media screen and (max-width: 1279px) {
  .back_list a {
    width: 250px;
    font-size: 22px;
    font-size: 1.375rem;
    padding-bottom: 16px;
  }
}

@media screen and (max-width: 767px) {
  .back_list a {
    width: 220px;
    padding-bottom: 10px;
    font-size: 20px;
    font-size: 1.25rem;
  }
}

.back_list a::before {
  position: absolute;
  content: "";
  background: url(../img/works/back-arrow.svg) center center/contain no-repeat;
  width: 30px;
  height: 16px;
  top: 15px;
  left: 0;
}

@media screen and (max-width: 1279px) {
  .back_list a::before {
    width: 26px;
    height: 14px;
    top: 13px;
  }
}

@media screen and (max-width: 767px) {
  .back_list a::before {
    width: 23px;
    height: 12px;
  }
}

/*===============================================
# 404
=================================================*/
#content > .inner {
  display: block;
  padding-top: 40px;
  background: url(../img/common/bg03.png) center center/cover no-repeat;
}

.entry-404 {
  padding-bottom: 85px;
  text-align: center;
  margin-top: 160px;
}

.entry-404-head {
  color: #222222;
  font-family: "Lato", sans-serif;
  font-size: 80px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 36px;
}

@media screen and (max-width: 767px) {
  .entry-404-head {
    font-size: 45px;
    font-size: 2.8125rem;
  }
}

.entry-404-head span::after {
  content: " ";
}

.entry-404-lead {
  color: #808080;
  font-family: "HiraKakuPro-W6", "ヒラギノ角ゴ Pro W6", "Meiryo", "Meiryo", "Noto Sans Japanese", sans-serif;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 24px;
}

@media screen and (max-width: 767px) {
  .entry-404-lead {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

.entry-404-lead .m_sp {
  display: none;
}

.entry-404-content {
  color: #808080;
}

.entry-404-btn {
  margin-top: 58px;
}

.entry-404-btn a {
  margin: auto;
  color: #fff;
  text-align: left;
}

.entry-404-btn .btn {
  background: #ebebeb;
  color: #8d8d8d;
}

.entry-404-btn .btn:hover {
  background: #ccc;
  opacity: 1;
}
/*# sourceMappingURL=style.css.map */