@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=BIZ+UDGothic:wght@700&family=Rajdhani:wght@400;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=BIZ+UDGothic:wght@700&family=BIZ+UDPMincho&family=Rajdhani:wght@400;600&display=swap");
@font-face {
  font-family: "Hiragino Sans";
  src: local(HiraginoSans-W8);
  font-weight: 900;
}
@font-face {
  font-family: "CP Font";
  src: url("../../font/CP Font.otf") format("opentype");
}
@font-face {
  font-family: "Hiragino Sans";
  src: local(HiraginoSans-W8);
  font-weight: 800;
}
@font-face {
  font-family: "Hiragino Sans";
  src: local(HiraginoSans-W6);
  font-weight: 600;
}
/*========= 背景動画設定のCSS ===============*/
/*header設定*/
/* ローディングアイコン設定 */
.movie-box {
  position: relative;
  width: 100%;
  height: auto;
  background-color: white;
}

#loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: bold;
}

#mov.disappear {
  display: none;
  opacity: 0;
}

/* youtube設定 */
#youtube-area {
  z-index: 1; /*最背面に設定*/
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  overflow: hidden;
  background-color: white;
}

/*jQueryで付与されたappearクラスがついたらYoutubeエリアをふわっと表示*/
#youtube-area.appear {
  animation-name: PageAnimeAppear;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}

@keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#youtube {
  /*天地中央配置*/
  position: absolute;
  top: 0%;
  left: 0%;
  /*縦横幅指定*/
  width: 177.77777778vh; /* 16:9 の幅→16 ÷ 9＝ 177.77% */
  height: 56.25vw; /* 16:9の幅 → 9 ÷ 16 = 56.25% */
  width: 100%;
  height: 100%;
}

/*youtubeがクリックされないためのマスク*/
#youtube-mask {
  position: absolute;
  z-index: 2; /*下から2番目に表示*/
  top: 0;
  width: 100%;
  height: 100%;
}

.video {
  top: 0%;
  left: 0%;
  /*縦横幅指定*/
  width: 100%; /* 16:9 の幅→16 ÷ 9＝ 177.77% */
  height: auto; /* 16:9の幅 → 9 ÷ 16 = 56.25% */
  width: 100%;
  height: 100%;
  margin: 0% 0;
}

#container {
  position: relative; /*relativeを指定してfixed指定をした#youtube-areaの上に表示*/
  z-index: 3; /*一番上に表示*/
  /*見た目の調整*/
  background: #333;
  color: #fff;
  padding: 300px 0;
  text-align: center;
}

/**************************************
top
***************************************/
.real-top {
  display: none;
  width: 100%;
  margin-top: 50px;
}
.real-top .recruit-url {
  position: absolute;
  left: 5%;
  bottom: 19%;
  z-index: 10;
}
.real-top .recruit-url a {
  background-color: black;
  color: white;
  padding: 8% 15%;
  display: inline !important;
  font-size: max(1.3vw, 13px);
}

.real-top.appear {
  display: block;
  position: relative;
}

.back1 {
  position: static !important;
  width: 100%;
  height: auto;
  overflow: hidden;
  display: block;
}

/*
@keyframes slideshow {
    0% {
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    28% {
        opacity: 1;
    }

    38% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.back1 {
    //position: static !important;
    //position: relative;
    width: 100%;
    height: auto;
    //height: 700px;
    overflow: hidden;
    display: block;
}

.back2 {
    //height: 56.25%;

    position: absolute;
    top: 0%;
    left: 0%;
    //transform: translate(-50%, -50%);
    //width: 63%;
    //height: auto;
    opacity: 0;
    animation: slideshow 40s linear infinite;
    z-index: 3;
    width: 100%;
    margin: 0% 0;
    //margin-top: -50px;
}

.back2:nth-child(2) {
    animation-delay: 8s;
    z-index: 4;
}

.back2:nth-child(3) {
    animation-delay: 16s;
    z-index: 5;
}

.back2:nth-child(4) {
    animation-delay: 24s;
    z-index: 6;
}

.back2:nth-child(5) {
    animation-delay: 32s;
    z-index: 7;
}

@keyframes slideshow {
    0% {
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    28% {
        opacity: 1;
    }

    38% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}
*/
@keyframes slideshow {
  0% {
    opacity: 0; /* Start fully transparent */
  }
  10% {
    opacity: 1; /* Fade in */
  }
  40% {
    opacity: 1; /* Hold the image */
  }
  50% {
    opacity: 0; /* Start fading out */
  }
  100% {
    opacity: 0; /* Ensure it ends transparent */
  }
}
.back1 {
  width: 100%;
  height: auto;
  overflow: hidden;
  display: block;
}

.back2 {
  position: absolute;
  top: 0%;
  left: 0%;
  opacity: 0;
  animation: slideshow 24s linear infinite; /* Total duration for 3 images */
  z-index: 3;
  width: 100%;
  margin: 0% 0;
}

.back2:nth-child(2) {
  animation-delay: 8s; /* Starts after the first image */
  z-index: 4;
}

.back2:nth-child(3) {
  animation-delay: 16s; /* Starts after the second image */
  z-index: 5;
}

@keyframes showlogo {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/**********************************
messgae
**********************************/
.message-box {
  display: flex;
  margin: 70px auto;
  justify-content: center;
  width: 70%;
  gap: 7.5%;
}
.message-box img {
  border-radius: 5px;
}

.message-left {
  width: 63%;
}
.message-left .title {
  font-family: "Hiragino Sans" !important;
  line-height: 1.5em;
  font-weight: 800;
  font-size: max(4.7vw, 35px);
  font-weight: 800;
  line-height: 150%;
}
.message-left h2 {
  padding-top: 1%;
  font-weight: 400;
  font-size: max(1.45vw, 13px);
  font-family: "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 400;
  line-height: 180%;
}

.message-right {
  width: 37%;
}
.message-right p {
  font-size: max(1.25vw, 14px);
}
.message-right a {
  margin-bottom: 3%;
}

/**********************************
news
**********************************/
.news-box li a {
  display: flex !important;
}

/*
#news {
    padding-top: calc(100px + 3%);
    margin-top: calc(-100px - 3%);
}

.news-box {

    // margin-top: -3%;
    // background-color: $lightgreen;
    // padding-bottom: 2%;
    // border-bottom: solid 4px $green;


    h3 {
        font-size: max(1.6vw, 17px);
        text-align: center;
        @include font-koz-g();
        font-weight: 800;
    }

    background-color: #f1f1f1;
    margin-bottom: 3%;

    .box1 {
        //position: absolute;
        //bottom: -60%;
        //left: 50%;
        //transform: translate(-50%, 0%);
        width: 80%;
        margin: 0 auto;
        //overflow-y: scroll;
        padding: 3% 0;

        h1 {
            margin: 10px;
            font-size: 1.5em;
            //font-family: $font-fami; //!important;
            text-align: center;
            //color: $color-brown;
        }

        .box2 {
            width: 94%;
            margin: 0 auto;
            height: 165px;
            overflow-y: scroll;
            overflow-x: hidden;

            &::-webkit-scrollbar {
                display: none;
            }
        }

        hr {
            margin-top: 0;
            border: solid 0.5px black;
        }

        .border1 {
            margin: 0 auto;
            width: 90%;
            padding: 2% 7%;
            //border: solid 5px black;
            height: 155px;
            background-color: white;
            overflow-y: scroll;
            border-radius: 20px;
            //box-shadow: $box-shadow;
            -ms-overflow-style: none;
            scrollbar-width: none;
        }

        .border1::-webkit-scrollbar {
            display: none;
        }

        ul {
            counter-reset: number;
            list-style-type: none !important;
            padding-inline-start: 0px;
            margin: 0;
        }

        a {
            text-decoration: none !important;
        }

        span {
            font-size: 17px;
            padding-right: 2%;
            //@include font-koz-g();
        }

        ul.news li {
            //border-bottom: solid 1px $green;
            position: relative;
            padding: 0.5em 5% 0.2em 5%;
            line-height: 1.5em;
            color: black;
            @include font-koz-g();
            //font-weight: 100;
            //font-family: $font;
            font-size: 17px;
            //@include font-corp();
            //font-weight: 800;
            display: flex;

        // &:hover {
        //     color: rgb(75, 126, 255);
        // }
        }

        .li-right {
            margin-left: 10%;
        }

        ul li:last-of-type {
            border-bottom: none;
        }
    }
}
*/
/**********************************
info
**********************************/
.links h3,
.info h3 {
  font-family: "Hiragino Sans" !important;
  line-height: 1.5em;
  font-weight: 800;
  font-size: max(4.6vw, 30px);
  text-align: center;
}
.links h3 span,
.info h3 span {
  color: #ffbc0b;
}
.links .aboutus,
.info .aboutus {
  margin-bottom: 1%;
}

h3.aboutus {
  font-size: max(4.6vw, 25px);
  margin-top: 10%;
}

h3.aboutus.info-title {
  margin-top: 1.5%;
}

/*
.about-title {
    margin-top: 10%;
}*/
/**********************************
media
**********************************/
.media {
  background-color: #ffdc05;
}

.media-box {
  background-color: rgba(255, 255, 255, 0.95);
  margin: -4% auto -7.5% auto;
  position: relative;
  z-index: 10;
  padding: 2% 2%;
  border: solid 10px #333;
  border-radius: 4em;
  max-width: 90%;
}
.media-box h3 {
  text-align: center;
  font-family: "CP Font";
  font-size: 2.7vw;
  padding: 2.5% 0 2.5% 0;
  line-height: 130%;
}
.media-box h3 .sp1 {
  color: #ee5a24;
}
.media-box h3 .sp2 {
  color: #ffba0b;
}
.media-box h4 {
  font-family: "CP Font";
  font-size: max(2vw, 20px);
}

.media-flex {
  display: flex;
  padding-top: 2%;
  padding-bottom: 2%;
  flex-direction: row-reverse;
}
.media-flex .blog-box {
  width: 49%;
  padding-bottom: 3%;
  padding-top: 10%;
  padding-left: 5%;
}
.media-flex .blog-box h4 {
  margin-left: 2%;
}
.media-flex .border-center {
  width: 2%;
}
.media-flex .sns-box {
  padding-top: 4%;
  width: 49%;
  padding-left: 3%;
}
.media-flex .sns-box h4 {
  margin-left: 10%;
}

.radius {
  background-color: #333;
  width: 10px;
  height: 100%;
  border-radius: 9999px;
}

.blog-flex {
  display: flex;
  flex-wrap: wrap;
  padding-right: 5%;
  padding-top: 3%;
  position: relative;
}
.blog-flex a {
  width: 46%;
  margin: 2%;
  box-shadow: 0.2em 0.2em 0.4em rgba(0, 0, 0, 0.292);
}
.blog-flex .comingsoon2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Hiragino Sans" !important;
  line-height: 1.5em;
  font-weight: 800;
  color: white;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #333;
  font-size: max(2.5vw, 20px);
  width: 100%;
  text-align: center;
}

.sns-flex {
  display: flex;
  padding-top: 3%;
  align-items: center;
  flex-direction: row-reverse;
}

.phone {
  position: relative;
  width: 70%;
  padding-right: 10%;
  padding-top: 3%;
}
.phone .followme {
  position: absolute;
  top: -6%;
  right: 5%;
  width: 50%;
}

.sns-links {
  width: 30%;
}

.sns-links .link-block {
  margin: 20% 0;
}
.sns-links .link-block img {
  margin: 0 auto;
  filter: drop-shadow(0.2em 0.2em 0.2em rgba(0, 0, 0, 0.292));
}
.sns-links .icon {
  margin-bottom: 5%;
}
.sns-links .icon img {
  width: 50%;
  min-width: 50px;
}
.sns-links .btn1 img {
  width: 60%;
  min-width: 60px;
}

/*
//即席コード

.media {
    position: relative;
}

.vamos-link {
    position: absolute;
    top: 23%;
    left: 2%;
    width: 40%;

    a {
        display: flex !important;
        background-color: white;
        margin: 3%;
        box-shadow: 0.2em 0.2em 0.5em rgba(0, 0, 0, 0.489);

        .thumb {
            width: 41%;
        }
    }

    .info {
        padding: 2%;
        width: 60%;

        h3 {
            font-size: max(2vw, 16px);
            text-align: left;
            padding-left: 5%;
            font-family: "BIZ UDGothic", sans-serif !important;
            color: #333333;
            //font-family: "Rajdhani", sans-serif !important;
        }

        h4 {
            line-height: 135%;
            font-size: max(1.3vw, 11px);
            padding-left: 5%;
            padding-top: 2.5%;
            font-family: "BIZ UDPMincho", serif;
            color: #333333;
        }
    }
}

.follow-link {
    position: absolute;
    bottom: 9%;
    right: 2%;
    width: 24%;
}

@media (max-width: 700px) {
    .news-box .box1 span {
        font-size: 15px;
    }

    .news-box .box1 ul.news li {
        font-size: 15px;
    }

    .news-box .box1 {
        width: 100%;
    }
}*/
/**********************************
links
**********************************/
h3.aboutus {
  font-family: "Hiragino Sans" !important;
  line-height: 1.5em;
  font-weight: 800;
  font-size: max(4.6vw, 30px);
  text-align: center;
}
h3.aboutus span {
  color: #ffbc0b;
}

.aboutus {
  margin-bottom: 1%;
}

.info-box-gray {
  background-color: #f1f1f1;
  padding: 1% 3% 6% 3%;
}
.info-box-gray img {
  padding: 3%;
  background-color: white;
  border-radius: 3em;
}
.info-box-gray h3.aboutus {
  font-size: max(3vw, 25px);
  margin-top: 0;
  margin-bottom: 1%;
}

section.links {
  padding: 4%;
  margin-top: 1%;
  background-color: #f9e493;
}

.links-box {
  display: flex;
  width: 82%;
  margin: 0 auto;
}
.links-box div {
  width: 45%;
  margin: 0 2.5%;
}
.links-box div img {
  filter: drop-shadow(0.2em 0.2em 0.5em rgba(0, 0, 0, 0.872));
}

/**********************************
system
**********************************/
.system fieldset {
  width: 85%;
  margin: 5% auto 5% auto;
  border-radius: 4em;
  border: solid 2px black;
  padding: 5% 2.5% 3% 2.5%;
}
.system legend {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: flex-start;
  font-size: 40px;
  font-family: "Hiragino Sans" !important;
  line-height: 1.5em;
  font-weight: 800;
  background-color: white;
}
.system legend img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.system .img-box {
  width: 120px;
  padding-left: 20px;
}
.system .img-box img {
  width: 100px;
}
.system .title-box {
  width: auto !important;
  padding-left: 3%;
  display: inline-block !important;
  margin: 0 !important;
  flex-basis: auto;
  white-space: nowrap;
  background-color: white;
  padding-right: 5%;
}
.system .table-box {
  display: flex;
  padding: 1% 0%;
  margin-bottom: 1%;
}
.system .th-box {
  background-color: #333;
  color: white;
  width: 20%;
  text-align: center;
  padding: 1.5% 0;
  font-size: max(1.5vw, 15px);
  margin-left: 2%;
  align-self: center;
}
.system .th-box.voice {
  background-color: transparent !important;
  padding-right: 1%;
}
.system .td-box {
  padding-left: 3%;
  font-size: max(1.4vw, 15px);
  line-height: 170%;
  width: 80%;
}
.system .td-box.prof {
  padding-top: 5%;
  width: 80%;
}
.system .td-box.prof h5 {
  font-family: "Hiragino Sans" !important;
  line-height: 1.5em;
  font-weight: 800;
  font-weight: 900;
  font-size: max(1.5vw, 15px);
  margin-bottom: 4%;
}
.system .td-box.prof h5 span {
  font-family: "kozuka-gothic-pr6n", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-weight: 400;
  padding-left: 5%;
}
.system .td-box.prof .name {
  display: inline;
}

/**********************************
work
**********************************/
.work {
  margin-top: 0%;
}
.work h3 {
  font-family: "Hiragino Sans" !important;
  line-height: 1.5em;
  font-weight: 800;
  font-size: max(5.7vw, 30px);
  text-align: center;
  border-bottom: solid 2.5px #03318f;
  margin: 0 auto;
  width: 20%;
  line-height: 120%;
  margin-top: 5%;
}
.work h3 span {
  color: #ffbc0b;
}
.work h4 {
  font-family: "Hiragino Sans" !important;
  line-height: 1.5em;
  font-weight: 800;
  font-size: max(2.2vw, 15px);
  margin: 0 auto;
  text-align: center;
  margin-top: 0.7%;
  margin-bottom: 5%;
}

.work-box {
  margin-bottom: 5%;
  display: flex;
}
.work-box div {
  width: 50%;
  margin: 0 auto;
}

.work-left {
  display: flex;
  flex-wrap: wrap;
  padding: 1%;
}
.work-left a {
  display: flex !important;
  flex-direction: column;
  align-items: stretch;
}
.work-left a .card-title {
  flex-grow: 1;
}

.work-box .card {
  width: 50%;
  max-width: 80%;
  padding: 1%;
}
.work-box .card img {
  box-shadow: 0.3em 0.3em 0.8em rgba(0, 0, 0, 0.488);
}
.work-box .card .card-title {
  font-size: max(1.5vw, 15px);
  width: 100%;
  font-family: "Hiragino Sans" !important;
  line-height: 1.5em;
  font-weight: 800;
  padding: 5%;
  font-weight: 600;
}
.work-box .card .read {
  font-size: max(1.2vw, 12px);
  width: 50%;
  padding: 1.5% 0;
  font-family: "Hiragino Sans" !important;
  line-height: 1.5em;
  font-weight: 800;
  font-weight: 600;
  margin: 0 auto;
  text-align: center;
  border: solid 1px #333;
  margin-bottom: 5%;
}

/**********************************
staff
**********************************/
section.staff {
  position: relative;
  margin-top: -100px;
  padding-top: calc(100px + 3%);
}

.title-interview {
  position: absolute;
  width: 35%;
  top: 15%;
  right: 8%;
}
.title-interview img {
  opacity: 0.3;
}
.title-interview h3 {
  font-family: "Hiragino Sans" !important;
  line-height: 1.5em;
  font-weight: 800;
  font-size: max(6vw, 30px);
  text-align: center;
  line-height: 100%;
  padding: 0% 5% 1% 5%;
  border-bottom: solid 3px #03318f;
  padding-bottom: 1%;
}
.title-interview h3 span {
  color: #ffbc0b;
}
.title-interview h4 {
  font-family: "Hiragino Sans" !important;
  line-height: 1.5em;
  font-weight: 800;
  font-size: max(2.4vw, 14px);
  text-align: center;
  line-height: 100%;
  padding: 0% 5% 1% 5%;
  padding-bottom: 1%;
  margin-top: 7%;
  padding-left: 3%;
}

.container {
  width: 100%;
  position: relative;
  background-image: url("../../src/home/bg-interview.webp");
  padding-top: 20%;
  background-size: 100% 100%;
  background-color: white !important;
  background-position: center center;
  padding-bottom: 3%;
}
.container .card-image {
  position: relative;
  padding-top: 5%;
  filter: drop-shadow(0.2em 0.2em 0.4em rgba(0, 0, 0, 0.588));
}
.container .card-image a {
  width: 90%;
  display: block;
}

.card-image > a {
  display: block;
  width: 100%;
  margin: 0 auto;
}

/**********************************
litリンク
**********************************/
.lit {
  width: 400px;
  margin: 50px auto;
  max-width: 90%;
  margin-top: 20px;
}

/**********************************
レスポンシブ
**********************************/
@media (max-width: 1000px) {
  .message-box {
    width: 90%;
    gap: 2%;
  }
}
@media (max-width: 700px) {
  .metal-hr {
    height: 50px;
  }
  .video {
    margin: 50px 0 0px 0;
  } /*
.light,
.back2 {
    margin: 50px 0 0px 0;
}*/
  .home-display .main-box .news {
    width: 100%;
    margin-bottom: 0%;
    font-size: 0px;
  }
  .links-box {
    display: block;
  }
  .links-box div {
    width: 100%;
  }
  /**********************************
  messgae
  **********************************/
  .message-box {
    display: block;
    margin: 13% auto 20% auto;
    width: 85%;
  }
  .message-left {
    width: 100%;
    padding-left: 0%;
    padding-right: 0%;
    margin-bottom: 50px;
  }
  .message-left .title {
    font-family: "Hiragino Sans" !important;
    line-height: 1.5em;
    font-weight: 800;
    line-height: 150%;
    margin-bottom: 1%;
  }
  .message-left h2 {
    padding-top: 1%;
    margin-bottom: 5%;
    margin-bottom: 8%;
  }
  .message-right {
    width: 100%;
    padding-right: 0%;
  }
  /**********************************
  about us
  **********************************/
  .links-box {
    width: 90%;
    margin: 0 auto;
  }
  .links-box div {
    margin: 5% 0%;
  }
  .links-box div img {
    filter: drop-shadow(0.2em 0.2em 0.5em rgba(0, 0, 0, 0.872));
  }
  /**********************************
  system
  **********************************/
  .system {
    margin-top: -50px;
  }
  .system fieldset {
    width: 85%;
    margin: 15% auto;
    border-radius: 2em;
    border: solid 2px black;
    padding: 0.5% 2.5% 3% 2.5%;
  }
  .system legend {
    font-size: max(3vw, 20px);
    font-family: "Hiragino Sans" !important;
    line-height: 1.5em;
    font-weight: 800;
    justify-content: center;
    background-color: white;
    padding: 0 5px 0;
    margin: 0 auto;
  }
  .system legend img {
    width: 50px !important;
  }
  .system .img-box {
    width: 70px;
    padding-left: 0%;
  }
  .system .title-box {
    width: auto !important;
    white-space: nowrap;
    padding-left: 3%;
    display: block !important;
    margin: 0 !important;
    flex-basis: auto;
  }
  .system .le1 {
    width: 80% !important;
    margin: 0 auto;
  }
  .system .table-box {
    display: flex;
    padding: 1% 0%;
    margin-bottom: 1%;
    flex-wrap: wrap;
    justify-content: center;
  }
  .system .th-box {
    display: block;
    background-color: #333;
    color: white;
    text-align: center;
    padding: 3% 0;
    margin-left: 0%;
    align-self: center;
    text-align: center;
    justify-content: center;
    text-align: center;
    width: 150px;
    margin: 2% 30% 5% 30%;
  }
  .system .fi3 .th-box {
    width: 200px;
    margin: 2% 22.5% 5% 22.5%;
  }
  .system .fi3 .th-box.voice {
    width: 150px;
    margin: 2% 30% 5% 30%;
  }
  .system .th-box.voice {
    margin-bottom: 0;
  }
  .system .td-box {
    padding: 0 5%;
    font-size: max(1.4vw, 15px);
    line-height: 170%;
    padding-bottom: 10%;
  }
  .system .td-box {
    width: 100%;
  }
  .system .td-box.prof {
    width: 100%;
  }
  /**********************************
      staff
  **********************************/
  section.staff {
    padding: 50px 0 0% 0;
    margin-top: -50px;
  }
  .title-interview {
    position: absolute;
    width: 50%;
    top: 15%;
  }
  .container {
    padding-bottom: 10%;
  }
  .work-box {
    display: block;
  }
  .work-box div {
    width: 100%;
  }
  /**********************************
      media
  **********************************/
  /*
      .media {
          margin-top: 15%;
      }
  */
  .vamos-link {
    position: absolute;
    top: 11%;
    left: 50%;
    width: 90%;
    transform: translate(-50%, 0);
  }
  .follow-link {
    position: absolute;
    bottom: 3%;
    left: 50%;
    right: auto;
    width: 50%;
    transform: translate(-50%, 0);
  }
  .media-box {
    margin: -5% auto -20% auto;
    border: solid 7px #333;
    border-radius: 3em;
  }
  .media-box h4 {
    margin-top: 2%;
  }
  .media-box h3 {
    font-size: 18px;
    line-height: 130%;
    margin-top: 3%;
  }
  .media-flex {
    display: flex;
    flex-direction: column-reverse;
  }
  .media-flex .blog-box {
    width: 100%;
  }
  .media-flex .border-center {
    width: 100%;
  }
  .media-flex .radius {
    height: 7px;
    width: 100%;
  }
  .media-flex .sns-box {
    width: 100%;
    padding: 10% 0 10% 0;
    /*
    h4 {
        margin-left: 2%;
    }*/
  }
  .blog-flex {
    padding: 5% 0 10% 0;
  }
  .blog-flex .comingsoon2 {
    font-size: 25px;
  }
  .work {
    margin-top: 0%;
  }
  .work h3 {
    width: 30%;
  }
}
@media (max-width: 300px) {
  .title-box {
    white-space: wrap !important;
  }
}/*# sourceMappingURL=home.css.map */