@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  /* スクロールバー非表示　IE, Edge 対応 */
  -ms-overflow-style: none;
  /* スクロールバー非表示　Firefox 対応 */
  scrollbar-width: none;
}

/* スクロールバー非表示　Chrome, Safari 対応 */
html::-webkit-scrollbar, body::-webkit-scrollbar {
  display: none;
}

body {
  margin: 0;
  background-color: #0072bd;
  font-family: "Noto Sans", "Noto Sans JP", sans-serif;
  font-size: 0.8rem;
}

img {
  max-width: 100%;
  height: auto;
}

#container {
  background-color: #fff;
  position: relative;
  z-index: 20;
  transition: all 0.5s;
}

.svgall {
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  padding: 0 10px;
  width: 22rem;
  margin: 0 auto;
}

.sp-menu {
  position: fixed;
  top: 25px;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 300px;
}
.sp-menu__main {
  list-style-type: none;
}
.sp-menu__item {
  margin: 15px 0;
  border-bottom: 2px solid #fff;
  transition: all 0.5s;
  position: relative;
  height: 4.5rem;
}
.sp-menu__item:hover {
  border-bottom: 2px solid #333;
}
.sp-menu__item a {
  color: #fff;
  text-decoration: none;
  line-height: 2rem;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.sp-menu__item a .main-title {
  display: block;
  font-size: 1.3rem;
}

.icon-sp {
  position: relative;
  pointer-events: none;
}
.icon-sp__main {
  display: flex;
  justify-content: center;
  list-style-type: none;
  position: absolute;
  top: 1rem;
  left: 0;
  right: 0;
  bottom: 2rem;
  margin: auto;
  z-index: 30;
  opacity: 0;
}
.icon-sp__main .icon-sp__item3 {
  border-top: 2px dashed #333;
  position: absolute;
  top: 3.8rem;
}
.icon-sp__item {
  padding: 0 10px;
  font-size: 3rem;
  background-color: #fff;
  border: solid thin #333;
  width: 72px;
  height: 4rem;
  text-align: center;
  position: relative;
}
.icon-sp__item:first-of-type {
  border-right: 2px dashed #333;
}
.icon-sp__item:nth-of-type(2) {
  border-left: 2px dashed #333;
}
.icon-sp__item a {
  color: #0072bd;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.left-leave {
  animation: left-leave 0.5s none;
}

@keyframes left-leave {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(-64px);
  }
}
.right-leave {
  animation: right-leave 0.5s none;
}

@keyframes right-leave {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(64px);
  }
}
.bottom-leave {
  animation: bottom-leave 0.5s none;
}

@keyframes bottom-leave {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(64px);
  }
}
.icon-landscape {
  display: none;
}

.sp-menu__btn {
  background-color: unset;
  border: none;
  outline: none !important;
  cursor: pointer;
  position: absolute;
  top: 8rem;
  left: 0;
  right: 0;
  width: 2.2rem;
  margin: 0 auto;
  z-index: 30;
  opacity: 0;
  pointer-events: none;
}
.sp-menu__btn > span {
  background-color: #333;
  width: 35px;
  height: 3px;
  display: block;
  margin-bottom: 9px;
  transition: transform 0.7s;
}
.sp-menu__btn > span:last-child {
  margin-bottom: 0;
}

.menu-open #container {
  transform: translate(0, 35rem);
}
.menu-open .sp-menu__btn > span {
  background-color: #333;
}
.menu-open .sp-menu__btn > span:nth-child(1) {
  transition-delay: 70ms;
  transform: translateY(12px) rotate(90deg);
  width: 40px;
}
.menu-open .sp-menu__btn > span:nth-child(2) {
  transition-delay: 0s;
  transform: translateX(15px) translateY(-11px) rotate(45deg);
  width: 25px;
}
.menu-open .sp-menu__btn > span:nth-child(3) {
  transition-delay: 140ms;
  transform: translateX(-1px) translateY(-23px) rotate(-45deg);
  width: 25px;
}

.pc-menu {
  display: none;
}

#info {
  padding-top: 12rem;
  text-align: center;
  z-index: 20;
  opacity: 0;
}
#info p {
  color: #333;
  font-weight: 600;
  font-size: 0.9rem;
}
#info p span {
  display: inline-block;
  background-color: #d4eeff;
  border-radius: 15px;
  padding: 8px;
}
#info p span:nth-of-type(3) {
  display: inline-block;
  margin-top: 20px;
  color: #333;
  font-weight: 500;
}
#info p span:nth-of-type(n+4) {
  display: inline-block;
  color: #333;
  font-weight: 500;
}
#info p span:nth-of-type(n+5) {
  display: inline-block;
  color: #333;
  font-weight: 500;
}

.info-landscape {
  display: none;
}

.fade-in {
  animation: fade-in 2s;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fade-out {
  animation: fade-out 2s;
}

@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.opa1 {
  opacity: 1 !important;
  pointer-events: visible !important;
}

.slider-area-sp {
  margin-top: 3rem;
  opacity: 0;
  z-index: 20;
}
.slider-area-sp .slider {
  width: 16rem;
}
.slider-area-sp .slider img {
  border: solid 5px #0072bd;
  border-radius: 30px 0 10px 0;
  width: 16rem;
  height: 10rem;
  -o-object-fit: contain;
     object-fit: contain;
}

.slick-dotted.slick-slider {
  position: relative;
}

#slider-info-landscape {
  display: none;
}

#area1 {
  width: 100%;
  min-height: 100vh;
  text-align: center;
  position: relative;
}
#area1 h2 {
  width: 10em;
  height: 2.25rem;
  padding-bottom: 5px;
  color: #0072bd;
  border-bottom: solid 2px #0072bd;
}
#area1 .circles-sp {
  line-height: 2rem;
  margin-bottom: 5rem;
  position: relative;
}
#area1 .circles-sp span {
  display: inline-block;
  position: relative;
  z-index: 90;
  margin-bottom: 5rem;
}

#area2 {
  background-image: url("../../img/keight.jpg");
  background-color: #0072bd;
  background-blend-mode: hard-light;
  width: 100%;
  min-height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}
#area2 #about_me {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: rgba(0, 0, 0, 0.5);
  min-height: 100vh;
}
#area2 #about_me h2 {
  width: 10rem;
  height: 5rem;
  background-color: #fff;
  border-top: solid 1px #aaa;
  border-left: solid 1px #aaa;
  border-right: solid 1px #aaa;
  border-bottom: solid 0.5rem #0072bd;
  color: #0072bd;
  text-align: center;
  margin: 0 auto;
  padding: 0.5rem 0.5rem 1rem 0.5rem;
}
#area2 #about_me h2::after {
  content: "自己紹介";
  font-size: 0.9rem;
  display: block;
  padding-top: 0.3rem;
}
#area2 #about_me h3 {
  color: #fff;
  width: 75%;
  text-align: center;
  margin: 1rem auto 0 auto;
  padding: 0.5rem;
}
#area2 #about_me h3 span {
  font-size: 0.7rem;
}
#area2 #about_me dl {
  display: flex;
  width: 70%;
  margin: 2rem auto 0 auto;
  color: #fff;
  padding: 1rem 0;
}
#area2 #about_me dl dt {
  width: 50%;
  margin-right: 0.5rem;
  font-weight: 600;
}
#area2 #about_me dl dt span {
  background-color: #0072bd;
  padding: 5px;
}
#area2 #about_me dl dd {
  width: 50%;
}
#area2 #about_me dl dd ul {
  list-style-type: none;
}
#area2 #about_me dl dd ul li {
  width: 201px;
}
#area2 #about_me dl dd ul li::before {
  content: "・";
}
#area2 #about_me dl:nth-of-type(3) dd img {
  display: block;
}
#area2 #about_me p {
  color: #fff;
  width: 75%;
  text-align: left;
  margin: 0 auto;
  padding: 2rem 0.3rem 5rem 0.3rem;
}

#area3 {
  width: 100%;
  min-height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}
#area3 #service {
  padding-top: 2rem;
  padding-bottom: 2rem;
  min-height: 100vh;
}
#area3 #service h2 {
  width: 10rem;
  height: 5rem;
  background-color: #fff;
  border-top: solid 1px #aaa;
  border-left: solid 1px #aaa;
  border-right: solid 1px #aaa;
  border-bottom: solid 0.5rem #0072bd;
  color: #0072bd;
  text-align: center;
  margin: 0 auto;
  padding: 0.5rem 0.5rem 1rem 0.5rem;
}
#area3 #service h2::after {
  content: "サービス詳細";
  font-size: 0.9rem;
  display: block;
  padding-top: 0.3rem;
}
#area3 #service .service-inner {
  margin: 1rem auto 0 auto;
  display: block;
  text-align: center;
}
#area3 #service .service-inner .service-card {
  background-color: rgba(0, 114, 189, 0.2);
  padding: 5rem;
  margin: 2rem 0;
  box-shadow: 0 3px 0 0 #c1d7f3;
}
#area3 #service .service-inner .service-card h3 {
  margin-top: 1rem;
  color: #0072bd;
}
#area3 #service .service-inner .service-card p {
  width: 100%;
  margin: 1rem 0 0 0;
}
#area3 #service .service-inner .service-card img {
  max-width: 100px;
}
#area3 #service p {
  color: #333;
  width: 91%;
  text-align: left;
  margin: 2rem auto 1.5rem auto;
  line-height: 2rem;
}
#area3 #service .genre {
  width: 91%;
  color: #0072bd;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
#area3 #service .genre::before {
  content: "▶";
  padding-right: 0.3rem;
}
#area3 #service .price-tbl {
  display: block;
}
#area3 #service .price-tbl dt {
  width: 90%;
  margin: 0 auto;
  padding: 0.5rem;
  background-color: #0072bd;
  color: #fff;
}
#area3 #service .price-tbl .dd-1 {
  width: 90%;
  margin: 0 auto;
  padding: 0.5rem;
}
#area3 #service .price-tbl .dd-2 {
  width: 90%;
  margin: 0 auto 1rem auto;
  padding: 0.5rem;
  font-weight: 600;
}

#area4 {
  background-image: url("../../img/works.jpg");
  background-color: #0072bd;
  background-blend-mode: hard-light;
  width: 100%;
  min-height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}
#area4 #works {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: rgba(0, 0, 0, 0.5);
  min-height: 100vh;
}
#area4 #works h2 {
  width: 10rem;
  height: 5rem;
  background-color: #fff;
  border-top: solid 1px #aaa;
  border-left: solid 1px #aaa;
  border-right: solid 1px #aaa;
  border-bottom: solid 0.5rem #0072bd;
  color: #0072bd;
  text-align: center;
  margin: 0 auto;
  padding: 0.5rem 0.5rem 1rem 0.5rem;
}
#area4 #works h2::after {
  content: "制作実績";
  font-size: 0.9rem;
  display: block;
  padding-top: 0.3rem;
}
#area4 #works .works-inner {
  display: block;
  text-align: center;
  margin: 2rem 0 0 0;
}
#area4 #works .works-inner img {
  width: 300px;
  height: 200px;
  margin: 1rem;
  padding: 1rem;
  box-shadow: 0 3px 12px 0 #fff;
}
#area4 #works .works-inner p {
  width: 90%;
  max-width: 19rem;
  text-align: left;
}
#area4 #works .works-inner .works-data {
  margin: 0 0 2rem 0;
}
#area4 #works .works-inner .works-data .works-name {
  color: #333;
}
#area4 #works .works-inner .works-data .works-name span {
  background-color: #fff;
}
#area4 #works .works-inner .works-data a {
  color: #fff;
  font-size: 0.8rem;
}
#area4 #works .works-inner .works-data a:hover {
  color: #fff;
  background-color: #0072bd;
}
#area4 #works p {
  color: #fff;
  width: 50%;
  text-align: left;
  margin: 0 auto;
}
#area4 #works .works-lookmore {
  width: 8rem;
  height: 3rem;
  line-height: 3rem;
  margin: 5rem auto;
  text-align: center;
  background-color: #0072bd;
  transition: all 0.5s;
  position: relative;
}
#area4 #works .works-lookmore:hover {
  background-color: #fff;
}
#area4 #works .works-lookmore a {
  color: #fff;
  text-decoration: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
#area4 #works .works-lookmore a:hover {
  color: #0072bd;
  border: solid 1px #0072bd;
}

#area5 {
  background-color: #0072bd;
  width: 100%;
  min-height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
}
#area5 #contact_me {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: rgba(0, 0, 0, 0.5);
  min-height: 100vh;
}
#area5 #contact_me h2 {
  width: 10rem;
  height: 5rem;
  background-color: #fff;
  border-top: solid 1px #aaa;
  border-left: solid 1px #aaa;
  border-right: solid 1px #aaa;
  border-bottom: solid 0.5rem #0072bd;
  color: #0072bd;
  text-align: center;
  margin: 0 auto;
  padding: 0.5rem 0.5rem 1rem 0.5rem;
}
#area5 #contact_me h2::after {
  content: "お問い合わせ";
  font-size: 0.9rem;
  display: block;
  padding-top: 0.3rem;
}
#area5 #contact_me p {
  color: #fff;
}
#area5 #contact_me .form-container {
  width: 80%;
  margin: 2rem auto 0 auto;
  padding: 3rem 4rem 3rem 4rem;
  background-color: #fff;
}
#area5 #contact_me .form-container .form-inner-comment {
  text-align: center;
  margin-bottom: 40px;
}
#area5 #contact_me .form-container .form-inner-comment p {
  color: #333;
  text-align: left;
}
#area5 #contact_me .form-container dt span {
  display: inline-block;
  background-color: red;
  margin-left: 5px;
  padding: 1px 3px 3px 3px;
  font-size: 0.5rem;
  color: #fff;
}
#area5 #contact_me .form-container input, #area5 #contact_me .form-container button, #area5 #contact_me .form-container select, #area5 #contact_me .form-container textarea {
  margin: 1rem;
}
#area5 #contact_me .form-container input, #area5 #contact_me .form-container textarea {
  border: solid 1px #0072bd;
  padding: 0.3rem;
  margin: 15px auto 20px auto;
}
#area5 #contact_me .form-container input {
  width: 80%;
}
#area5 #contact_me .form-container input[type=email] {
  width: 100%;
}
#area5 #contact_me .form-container textarea {
  width: 100%;
}
#area5 #contact_me .form-container .submit-cont {
  text-align: center;
}
#area5 #contact_me .form-container .submit-cont input[type=submit] {
  background-color: #0072bd;
  color: #fff;
  transition: 0.1s;
  height: 3rem;
}
#area5 #contact_me .form-container .submit-cont input[type=submit]:active {
  transform: translateY(1px);
}

.cover-slide {
  position: relative;
  overflow: hidden;
}
.cover-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #0072bd;
  z-index: 20;
  opacity: 0;
}
.cover-slide.inview::after {
  opacity: 1;
  animation-name: kf-cover-slide;
  animation-duration: 1.6s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}

@keyframes kf-cover-slide {
  0% {
    left: 0;
    right: 100%;
  }
  50% {
    left: 0;
    right: 0;
  }
  100% {
    left: 100%;
    right: 0;
  }
}
.img-zoom {
  opacity: 0;
}
.inview .img-zoom {
  opacity: 1;
  animation-name: kf-img-show;
  animation-duration: 1.6s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: none;
}

@keyframes kf-img-show {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  50.1% {
    opacity: 1;
    transform: scale(1.5);
  }
  100% {
    opacity: 1;
  }
}
.sp-web-enjoy-container {
  opacity: 0;
  margin-top: 5rem;
}
.sp-web-enjoy-container h2 {
  margin: 0 auto 0.5rem auto;
}
.sp-web-enjoy-container span {
  padding: 0 0.5rem;
}

.top-leave-fade-in {
  animation: top-leave-fade-in 2s none;
}

@keyframes top-leave-fade-in {
  0% {
    opacity: 0;
    transform: translateX(0px);
  }
  50% {
    opacity: 0.5;
    transform: translateY(-32px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
.landscape-web-enjoy-container {
  display: none;
}

.left-leave-fade-in {
  animation: left-leave-fade-in 2s none;
}

@keyframes left-leave-fade-in {
  0% {
    opacity: 0;
    transform: translateX(0px);
  }
  50% {
    opacity: 0.5;
    transform: translateX(-64px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}
#ie-only-disp {
  display: none;
}

@media (-ms-high-contrast: none) {
  body {
    margin: 0;
    background-color: #fff !important;
    font-family: "Noto Sans", "Noto Sans JP", sans-serif;
    position: relative;
  }
  body #ie-only-disp {
    display: block !important;
    width: 50%;
    text-align: center;
    margin: 20rem auto 0 auto;
    line-height: 2rem;
  }
  body #ie-only-disp h1 {
    display: inline-block;
    color: #0072bd;
  }
  body #ie-only-disp h1 + span {
    display: inline-block;
    color: #0072bd;
    padding-bottom: 1rem;
  }
  img {
    display: none;
  }
  #container {
    display: none;
  }
  .svgall {
    display: none;
  }
  .sp-menu {
    display: none;
  }
  .menu-open {
    display: none;
  }
  .pc-menu {
    display: none;
  }
  .icon-sp {
    display: none;
  }
  .icon-landscape {
    display: none;
  }
  #info {
    display: none;
  }
  .info-landscape {
    display: none;
  }
  .slider-area-sp {
    display: none;
  }
  #slider-info-landscape {
    display: none;
  }
  #area1 {
    display: none;
  }
  #area2 {
    display: none;
  }
  .cover-slide {
    display: none;
  }
  .img-zoom {
    display: none;
  }
  .web-enjoy-container {
    display: none;
  }
}
@media screen and (min-width: 480px) {
  html, body {
    height: 100%;
    /* スクロールバー非表示　IE, Edge 対応 */
    -ms-overflow-style: none;
    /* スクロールバー非表示　Firefox 対応 */
    scrollbar-width: none;
  }
  /* スクロールバー非表示　Chrome, Safari 対応 */
  html::-webkit-scrollbar, body::-webkit-scrollbar {
    display: none;
  }
  body {
    margin: 0;
    background-color: #0072bd;
    font-family: "Noto Sans", "Noto Sans JP", sans-serif;
    font-size: 0.8rem;
  }
  img {
    max-width: 100%;
    height: auto;
  }
  #container {
    background-color: #fff;
    position: relative;
    z-index: 20;
    transition: all 0.5s;
  }
  .header {
    height: 100px;
  }
  .svgall {
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    padding: 0 10px;
    width: 22rem;
    margin: 0 auto;
  }
  .sp-menu {
    position: fixed;
    top: 25px;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 300px;
  }
  .sp-menu__main {
    list-style-type: none;
  }
  .sp-menu__item {
    margin: 15px 0;
    border-bottom: 2px solid #fff;
    transition: all 0.5s;
    position: relative;
    height: 4.5rem;
  }
  .sp-menu__item:hover {
    border-bottom: 2px solid #333;
  }
  .sp-menu__item a {
    color: #fff;
    text-decoration: none;
    line-height: 2rem;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
  }
  .sp-menu__item a .main-title {
    display: block;
    font-size: 1.3rem;
  }
  .icon-sp {
    position: relative;
    pointer-events: none;
  }
  .icon-sp__main {
    display: flex;
    justify-content: center;
    list-style-type: none;
    position: absolute;
    top: 1rem;
    left: 0;
    right: 0;
    bottom: 2rem;
    margin: auto;
    z-index: 30;
    opacity: 0;
  }
  .icon-sp__item {
    padding: 0 10px;
    font-size: 3rem;
    background-color: #fff;
    border: solid thin #333;
    width: 72px;
    height: 4rem;
    text-align: center;
    position: relative;
  }
  .icon-sp__item:first-of-type {
    border-right: 2px dashed #333;
  }
  .icon-sp__item:nth-of-type(2) {
    border-left: 2px dashed #333;
  }
  .icon-sp__item a {
    color: #0072bd;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
  }
  .left-leave {
    animation: left-leave 0.5s none;
  }
  @keyframes left-leave {
    0% {
      transform: translateX(0px);
    }
    100% {
      transform: translateX(-64px);
    }
  }
  .right-leave {
    animation: right-leave 0.5s none;
  }
  @keyframes right-leave {
    0% {
      transform: translateX(0px);
    }
    100% {
      transform: translateX(64px);
    }
  }
  .icon-landscape {
    display: none;
  }
  .sp-menu__btn {
    background-color: unset;
    border: none;
    outline: none !important;
    cursor: pointer;
    position: absolute;
    top: 8rem;
    left: 0;
    right: 0;
    width: 2.2rem;
    margin: 0 auto;
    z-index: 30;
    opacity: 0;
    pointer-events: none;
  }
  .sp-menu__btn > span {
    background-color: #333;
    width: 35px;
    height: 3px;
    display: block;
    margin-bottom: 9px;
    transition: transform 0.7s;
  }
  .sp-menu__btn > span:last-child {
    margin-bottom: 0;
  }
  .menu-open #container {
    transform: translate(0, 30.5rem);
  }
  .menu-open .sp-menu__btn > span {
    background-color: #333;
  }
  .menu-open .sp-menu__btn > span:nth-child(1) {
    transition-delay: 70ms;
    transform: translateY(12px) rotate(90deg);
    width: 40px;
  }
  .menu-open .sp-menu__btn > span:nth-child(2) {
    transition-delay: 0s;
    transform: translateX(15px) translateY(-11px) rotate(45deg);
    width: 25px;
  }
  .menu-open .sp-menu__btn > span:nth-child(3) {
    transition-delay: 140ms;
    transform: translateX(-1px) translateY(-23px) rotate(-45deg);
    width: 25px;
  }
  .pc-menu {
    display: none;
  }
  #info {
    padding-top: 12rem;
    text-align: center;
    z-index: 20;
    opacity: 0;
  }
  #info p {
    color: #333;
    font-weight: 600;
    font-size: 0.9rem;
  }
  #info p span {
    display: inline-block;
    background-color: #d4eeff;
    border-radius: 15px;
    padding: 8px;
  }
  #info p span:nth-of-type(3) {
    display: inline-block;
    margin-top: 20px;
    color: #333;
    font-weight: 500;
  }
  #info p span:nth-of-type(n+4) {
    display: inline-block;
    color: #333;
    font-weight: 500;
  }
  #info p span:nth-of-type(n+5) {
    display: inline-block;
    color: #333;
    font-weight: 500;
  }
  .info-landscape {
    display: none;
  }
  .fade-in {
    animation: fade-in 2s;
  }
  @keyframes fade-in {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  .fade-out {
    animation: fade-out 2s;
  }
  @keyframes fade-out {
    0% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }
  .opa1 {
    opacity: 1 !important;
    pointer-events: visible !important;
  }
  .slider-area-sp {
    margin-top: 3rem;
    opacity: 0;
    z-index: 20;
  }
  .slider-area-sp .slider {
    width: 16rem;
  }
  .slider-area-sp .slider img {
    border: solid 5px #0072bd;
    border-radius: 30px 0 10px 0;
    width: 16rem;
    height: 10rem;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .slick-dotted.slick-slider {
    position: relative;
  }
  #slider-info-landscape {
    display: none;
  }
  #area1 {
    width: 100%;
    min-height: 100vh;
    text-align: center;
    position: relative;
  }
  #area1 h2 {
    width: 10em;
    height: 2.25rem;
    padding-bottom: 5px;
    color: #0072bd;
    border-bottom: solid 2px #0072bd;
  }
  #area1 h2 + p {
    line-height: 2rem;
    margin-bottom: 5rem;
    background-image: url("../../img/expression_bg-sp.png");
    background-size: cover;
    border-radius: 50%;
  }
  #area1 h2 + p span {
    background-color: rgba(255, 255, 255, 0.6);
  }
  #area2 {
    background-image: url("../../img/keight.jpg");
    background-color: #0072bd;
    background-blend-mode: hard-light;
    width: 100%;
    min-height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
  }
  #area2 #about_me {
    padding-top: 2rem;
    padding-bottom: 2rem;
    background-color: rgba(0, 0, 0, 0.5);
    min-height: 100vh;
  }
  #area2 #about_me h2 {
    width: 10rem;
    height: 5rem;
    background-color: #fff;
    border-top: solid 1px #aaa;
    border-left: solid 1px #aaa;
    border-right: solid 1px #aaa;
    border-bottom: solid 0.5rem #0072bd;
    color: #0072bd;
    text-align: center;
    margin: 0 auto;
    padding: 0.5rem 0.5rem 1rem 0.5rem;
  }
  #area2 #about_me h2::after {
    content: "自己紹介";
    font-size: 0.9rem;
    display: block;
    padding-top: 0.3rem;
  }
  #area2 #about_me h3 {
    color: #fff;
    width: 75%;
    text-align: center;
    margin: 1rem auto 0 auto;
    padding: 0.5rem;
  }
  #area2 #about_me h3 span {
    font-size: 0.7rem;
  }
  #area2 #about_me dl {
    display: flex;
    width: 50%;
    margin: 2rem auto 0 auto;
    color: #fff;
    padding: 1rem 0;
  }
  #area2 #about_me dl dt {
    width: 50%;
    margin-right: 0.5rem;
    font-weight: 600;
  }
  #area2 #about_me dl dt span {
    background-color: #0072bd;
  }
  #area2 #about_me dl dd {
    width: 50%;
  }
  #area2 #about_me dl dd ul {
    list-style-type: none;
  }
  #area2 #about_me dl dd ul li::before {
    content: "・";
  }
  #area2 #about_me dl:nth-of-type(3) dd img {
    display: block;
  }
  #area2 #about_me p {
    color: #fff;
    width: 75%;
    text-align: left;
    margin: 0 auto;
    padding: 2rem 0.3rem 5rem 0.3rem;
  }
  #area3 {
    width: 100%;
    min-height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
  }
  #area3 #service {
    padding-top: 2rem;
    padding-bottom: 2rem;
    min-height: 100vh;
  }
  #area3 #service h2 {
    width: 10rem;
    height: 5rem;
    background-color: #fff;
    border-top: solid 1px #aaa;
    border-left: solid 1px #aaa;
    border-right: solid 1px #aaa;
    border-bottom: solid 0.5rem #0072bd;
    color: #0072bd;
    text-align: center;
    margin: 0 auto;
    padding: 0.5rem 0.5rem 1rem 0.5rem;
  }
  #area3 #service h2::after {
    content: "サービス詳細";
    font-size: 0.9rem;
    display: block;
    padding-top: 0.3rem;
  }
  #area3 #service .service-inner {
    margin: 1rem auto 0 auto;
    display: block;
    text-align: center;
  }
  #area3 #service .service-inner .service-card {
    background-color: rgba(0, 114, 189, 0.2);
    padding: 5rem;
    margin: 2rem 0;
    box-shadow: 0 3px 0 0 #c1d7f3;
  }
  #area3 #service .service-inner .service-card h3 {
    margin-top: 1rem;
    color: #0072bd;
  }
  #area3 #service .service-inner .service-card p {
    width: 100%;
    margin: 1rem 0 0 0;
  }
  #area3 #service .service-inner .service-card img {
    max-width: 100px;
  }
  #area3 #service p {
    color: #333;
    width: 91%;
    text-align: left;
    margin: 2rem auto 1.5rem auto;
    line-height: 2rem;
  }
  #area3 #service .genre {
    width: 91%;
    color: #0072bd;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }
  #area3 #service .genre::before {
    content: "▶";
    padding-right: 0.3rem;
  }
  #area3 #service .price-tbl {
    display: block;
  }
  #area3 #service .price-tbl dt {
    width: 90%;
    margin: 0 auto;
    padding: 0.5rem;
    background-color: #0072bd;
    color: #fff;
  }
  #area3 #service .price-tbl .dd-1 {
    width: 90%;
    margin: 0 auto;
    padding: 0.5rem;
  }
  #area3 #service .price-tbl .dd-2 {
    width: 90%;
    margin: 0 auto 1rem auto;
    padding: 0.5rem;
    font-weight: 600;
  }
  #area4 {
    background-image: url("../../img/works.jpg");
    background-color: #0072bd;
    background-blend-mode: hard-light;
    width: 100%;
    min-height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
  }
  #area4 #works {
    padding-top: 2rem;
    padding-bottom: 2rem;
    background-color: rgba(0, 0, 0, 0.5);
    min-height: 100vh;
  }
  #area4 #works h2 {
    width: 10rem;
    height: 5rem;
    background-color: #fff;
    border-top: solid 1px #aaa;
    border-left: solid 1px #aaa;
    border-right: solid 1px #aaa;
    border-bottom: solid 0.5rem #0072bd;
    color: #0072bd;
    text-align: center;
    margin: 0 auto;
    padding: 0.5rem 0.5rem 1rem 0.5rem;
  }
  #area4 #works h2::after {
    content: "制作実績";
    font-size: 0.9rem;
    display: block;
    padding-top: 0.3rem;
  }
  #area4 #works .works-inner {
    display: block;
    text-align: center;
    margin: 2rem 0 0 0;
  }
  #area4 #works .works-inner img {
    width: 300px;
    height: 200px;
    margin: 1rem;
    padding: 1rem;
    box-shadow: 0 3px 12px 0 #fff;
  }
  #area4 #works .works-inner p {
    width: 90%;
    max-width: 19rem;
    text-align: left;
  }
  #area4 #works .works-inner .works-data {
    margin: 0 0 2rem 0;
  }
  #area4 #works .works-inner .works-data .works-name {
    color: #333;
  }
  #area4 #works .works-inner .works-data .works-name span {
    background-color: #fff;
  }
  #area4 #works .works-inner .works-data a {
    color: #fff;
    font-size: 0.8rem;
  }
  #area4 #works .works-inner .works-data a:hover {
    color: #fff;
    background-color: #0072bd;
  }
  #area4 #works p {
    color: #fff;
    width: 50%;
    text-align: left;
    margin: 0 auto;
  }
  #area4 #works .works-lookmore {
    width: 8rem;
    height: 3rem;
    line-height: 3rem;
    margin: 5rem auto;
    text-align: center;
    background-color: #0072bd;
    transition: all 0.5s;
    position: relative;
  }
  #area4 #works .works-lookmore:hover {
    background-color: #fff;
  }
  #area4 #works .works-lookmore a {
    color: #fff;
    text-decoration: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
  }
  #area4 #works .works-lookmore a:hover {
    color: #0072bd;
    border: solid 1px #0072bd;
  }
  #area5 {
    background-color: #0072bd;
    width: 100%;
    min-height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
  }
  #area5 #contact_me {
    padding-top: 2rem;
    padding-bottom: 2rem;
    background-color: rgba(0, 0, 0, 0.5);
    min-height: 100vh;
  }
  #area5 #contact_me h2 {
    width: 10rem;
    height: 5rem;
    background-color: #fff;
    border-top: solid 1px #aaa;
    border-left: solid 1px #aaa;
    border-right: solid 1px #aaa;
    border-bottom: solid 0.5rem #0072bd;
    color: #0072bd;
    text-align: center;
    margin: 0 auto;
    padding: 0.5rem 0.5rem 1rem 0.5rem;
  }
  #area5 #contact_me h2::after {
    content: "お問い合わせ";
    font-size: 0.9rem;
    display: block;
    padding-top: 0.3rem;
  }
  #area5 #contact_me p {
    color: #fff;
  }
  #area5 #contact_me .form-container {
    width: 80%;
    margin: 2rem auto 0 auto;
    padding: 3rem 4rem 3rem 4rem;
    background-color: #fff;
  }
  #area5 #contact_me .form-container .form-inner-comment {
    text-align: center;
    margin-bottom: 40px;
  }
  #area5 #contact_me .form-container .form-inner-comment p {
    color: #333;
  }
  #area5 #contact_me .form-container dt span {
    display: inline-block;
    background-color: red;
    margin-left: 5px;
    padding: 1px 3px 3px 3px;
    font-size: 0.5rem;
    color: #fff;
  }
  #area5 #contact_me .form-container input, #area5 #contact_me .form-container button, #area5 #contact_me .form-container select, #area5 #contact_me .form-container textarea {
    margin: 1rem;
  }
  #area5 #contact_me .form-container input, #area5 #contact_me .form-container textarea {
    border: solid 1px #0072bd;
    padding: 0.3rem;
  }
  #area5 #contact_me .form-container input[type=email] {
    width: 80%;
  }
  #area5 #contact_me .form-container textarea {
    width: 90%;
  }
  #area5 #contact_me .form-container input[type=submit] {
    background-color: #0072bd;
    color: #fff;
    transition: 0.1s;
  }
  #area5 #contact_me .form-container input[type=submit]:active {
    transform: translateY(1px);
  }
  .cover-slide {
    position: relative;
    overflow: hidden;
  }
  .cover-slide::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #0072bd;
    z-index: 20;
    opacity: 0;
  }
  .cover-slide.inview::after {
    opacity: 1;
    animation-name: kf-cover-slide;
    animation-duration: 1.6s;
    animation-timing-function: ease-in-out;
    animation-delay: 0s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
  }
  @keyframes kf-cover-slide {
    0% {
      left: 0;
      right: 100%;
    }
    50% {
      left: 0;
      right: 0;
    }
    100% {
      left: 100%;
      right: 0;
    }
  }
  .img-zoom {
    opacity: 0;
  }
  .inview .img-zoom {
    opacity: 1;
    animation-name: kf-img-show;
    animation-duration: 1.6s;
    animation-timing-function: ease-in-out;
    animation-delay: 0s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: none;
  }
  @keyframes kf-img-show {
    0% {
      opacity: 0;
    }
    50% {
      opacity: 0;
    }
    50.1% {
      opacity: 1;
      transform: scale(1.5);
    }
    100% {
      opacity: 1;
    }
  }
  .sp-web-enjoy-container {
    opacity: 0;
    margin-top: 5rem;
  }
  .sp-web-enjoy-container h2 {
    margin: 0 auto 0.5rem auto;
  }
  .sp-web-enjoy-container p {
    padding: 0 0.5rem;
  }
  .top-leave-fade-in {
    animation: top-leave-fade-in 2s none;
  }
  @keyframes top-leave-fade-in {
    0% {
      opacity: 0;
      transform: translateX(0px);
    }
    50% {
      opacity: 0.5;
      transform: translateY(-32px);
    }
    100% {
      opacity: 1;
      transform: translateY(0px);
    }
  }
  .landscape-web-enjoy-container {
    display: none;
  }
  .left-leave-fade-in {
    animation: left-leave-fade-in 2s none;
  }
  @keyframes left-leave-fade-in {
    0% {
      opacity: 0;
      transform: translateX(0px);
    }
    50% {
      opacity: 0.5;
      transform: translateX(-64px);
    }
    100% {
      opacity: 1;
      transform: translateX(0px);
    }
  }
  #ie-only-disp {
    display: none;
  }
}
@media screen and (min-width: 600px) {
  .svgall {
    width: 22rem;
  }
  .sp-menu {
    width: 400px;
  }
  .slider-area-sp .slider {
    width: 16rem;
  }
  .slider-area-sp .slider img {
    width: 100%;
    height: 10rem;
    -o-object-fit: contain;
       object-fit: contain;
  }
  #area5 #contact_me .form-container input {
    width: 80%;
    margin: 15px auto 20px auto;
  }
  #area5 #contact_me .form-container textarea {
    width: 100%;
    margin: 15px auto 20px auto;
  }
}
@media (orientation: landscape) {
  #container {
    z-index: 10;
    position: relative;
  }
  .svgall {
    width: 18rem;
    left: 20px;
    margin: 0;
    transition: 0.3s;
  }
  .pc-menu {
    display: flex;
    position: absolute;
    z-index: 20;
    top: 15px;
    right: 2%;
    opacity: 0;
    pointer-events: none;
  }
  .pc-menu__main {
    display: flex;
    list-style-type: none;
  }
  .pc-menu__item {
    margin: 15px 5px;
    padding: 7px 5px 5px 5px;
    transition: all 0.5s;
    width: 6rem;
    height: 3rem;
    background-color: #0072bd;
    text-align: center;
    position: relative;
  }
  .pc-menu__item:hover {
    background-color: #fff;
  }
  .pc-menu__item .inquiry {
    background-color: #fff;
    border: 2px solid #0072bd;
    text-align: center;
    line-height: 48px;
    font-size: 0.65rem;
  }
  .pc-menu__item a {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    line-height: 1rem;
    padding-top: 0.5rem;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
  }
  .pc-menu__item a:hover {
    color: #0072bd;
    border: solid 1px #0072bd;
  }
  .pc-menu__item a .main-title {
    display: block;
    font-size: 0.9rem;
  }
  .pc-menu__item a .sub-title {
    font-size: 0.6rem;
  }
  .far {
    padding-right: 5px;
  }
  .sp-menu__btn {
    display: none;
  }
  .sp-menu {
    display: none;
  }
  .icon-sp {
    display: none;
  }
  #info {
    display: none;
  }
  #pc-slider-info {
    display: none;
  }
  .slider-area-pc {
    display: block;
    opacity: 0;
  }
  .slider-area-pc .slider {
    width: 20rem;
  }
  .slider-area-sp {
    display: none;
  }
  #slider-info-landscape {
    display: flex;
    justify-content: space-around;
    padding-top: 4rem;
    padding-bottom: 5rem;
    z-index: 20;
  }
  #slider-info-landscape__slider-area {
    width: 50%;
    height: 16rem;
    margin-left: 2%;
    opacity: 0;
  }
  #slider-info-landscape .slider {
    width: 15rem;
  }
  #slider-info-landscape .slider img {
    border: solid 5px #0072bd;
    border-radius: 30px 0 10px 0;
    height: 15rem;
    -o-object-fit: contain;
       object-fit: contain;
  }
  #slider-info-landscape__info-landscape {
    display: block !important;
    text-align: left;
    height: 16rem;
    margin-left: 3%;
    margin-right: 3%;
    background-color: transparent;
    opacity: 0;
    box-shadow: 5px 10px 20px 0px rgba(0, 0, 0, 0.4);
    position: relative;
  }
  #slider-info-landscape__info-landscape p {
    color: #0072bd;
    font-weight: 600;
    padding: 8px;
  }
  #slider-info-landscape__info-landscape p span:first-of-type {
    font-size: 1.3rem;
  }
  #slider-info-landscape__info-landscape p span {
    display: inline-block;
    border-radius: 15px;
    padding: 4px;
    font-size: 0.9rem;
  }
  #slider-info-landscape__info-landscape p span:nth-of-type(3) {
    display: inline-block;
    margin-bottom: 10px;
    padding-top: 8px;
    color: #0072bd;
  }
  #slider-info-landscape__info-landscape p span:nth-of-type(n + 4) {
    display: inline-block;
    color: #333;
    font-weight: 500;
  }
  #slider-info-landscape__info-landscape p span:nth-of-type(n + 5) {
    display: inline-block;
    color: #333;
    font-weight: 500;
  }
  .slick-dotted.slick-slider {
    margin: auto;
    text-align: center;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    z-index: 20;
  }
  .icon-landscape {
    display: block;
    pointer-events: none;
  }
  .icon-landscape__main {
    display: flex;
    justify-content: center;
    list-style-type: none;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 30;
    opacity: 0;
  }
  .icon-landscape__main .icon-landscape__item3 {
    border-top: 2px dashed #333;
    position: absolute;
    top: 3rem;
    right: 0;
  }
  .icon-landscape__item {
    padding: 0 10px;
    background-color: #fff;
    border: solid thin #333;
    width: 55px;
    height: 50px;
    text-align: center;
    position: relative;
  }
  .icon-landscape__item:first-of-type {
    border-right: 2px dashed #333;
    border-bottom: 2px dashed #333;
  }
  .icon-landscape__item:first-of-type i {
    padding-top: 5px;
    font-size: 40px;
  }
  .icon-landscape__item:nth-of-type(2) {
    border-left: 2px dashed #333;
    border-bottom: 2px dashed #333;
  }
  .icon-landscape__item:nth-of-type(2) img {
    padding-top: 7px;
  }
  .icon-landscape__item a {
    color: #0072bd;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
  }
  .left-leave {
    animation: left-leave 0.5s none;
  }
  @keyframes left-leave {
    0% {
      transform: translateX(0px);
    }
    100% {
      transform: translateX(-32px);
    }
  }
  .right-leave {
    animation: right-leave 0.5s none;
  }
  @keyframes right-leave {
    0% {
      transform: translateX(0px);
    }
    100% {
      transform: translateX(32px);
    }
  }
  .bottom-leave {
    animation: bottom-leave 0.5s none;
  }
  @keyframes bottom-leave {
    0% {
      transform: translateY(0px);
    }
    100% {
      transform: translateY(32px);
    }
  }
  .info-landscape {
    display: none;
  }
  #area1 {
    min-height: 101vh;
  }
  .landscape-web-enjoy-container {
    display: flex;
    justify-content: space-evenly;
    opacity: 0;
    min-height: 50vh;
  }
  .landscape-web-enjoy-container h2 {
    width: 12em;
    height: 2.5rem;
    margin-top: 3rem;
    padding-bottom: 5px;
    color: #0072bd;
    border-bottom: solid 2px #0072bd;
    position: relative;
    z-index: 10000;
  }
  .landscape-web-enjoy-container .circles-pc {
    display: block;
    position: relative;
    z-index: 9998;
  }
  .landscape-web-enjoy-container .circles-pc span {
    display: block;
    font-size: 1rem;
    line-height: 2rem;
    position: relative;
    z-index: 9999;
  }
  .sp-web-enjoy-container {
    display: none;
  }
  #area2 {
    font-size: 0.9rem;
  }
  #area2 #about_me {
    padding-top: 0.5rem;
  }
  #area2 #about_me h2 {
    width: 9rem;
    height: 5rem;
    color: #0072bd;
    text-align: center;
    margin: 2rem auto 0 2rem;
    padding: 0.5rem 0.5rem 0 0.5rem;
    position: relative;
    z-index: 10000;
  }
  #area2 #about_me h2::after {
    content: "自己紹介";
    font-size: 1rem;
    display: block;
    padding-top: 0.3rem;
  }
  #area2 #about_me h3 {
    color: #fff;
    width: 100%;
    text-align: center;
    margin: 1rem auto 0 auto;
    padding: 0.5rem;
  }
  #area2 #about_me h3 span {
    font-size: 0.7rem;
  }
  #area2 #about_me .landscape-container {
    display: flex;
    justify-content: space-around;
  }
  #area2 #about_me dl {
    display: flex;
    width: auto;
    margin: 1rem 0;
    color: #fff;
    padding: 2rem 1rem;
  }
  #area2 #about_me dl dt {
    width: auto;
    margin-right: 0;
    font-weight: 600;
    padding: 0 0.5rem;
  }
  #area2 #about_me dl dd {
    width: auto;
    padding: 0 0.5rem;
  }
  #area2 #about_me dl dd ul {
    list-style-type: none;
  }
  #area2 #about_me dl dd ul li::before {
    content: "・";
  }
  #area2 #about_me dl:nth-of-type(3) dd img {
    display: inline;
    padding-right: 0.2rem;
  }
  #area2 #about_me p {
    padding-top: 3rem;
  }
  #area3 {
    font-size: 0.9rem;
  }
  #area3 #service {
    padding-top: 0.5rem;
  }
  #area3 #service h2 {
    width: 9rem;
    height: 5rem;
    color: #0072bd;
    text-align: center;
    margin: 2rem auto 0 2rem;
    padding: 0.5rem 0.5rem 0 0.5rem;
    position: relative;
    z-index: 10000;
  }
  #area3 #service h2::after {
    content: "サービス詳細";
    font-size: 1rem;
    display: block;
    padding-top: 0.3rem;
  }
  #area3 #service .service-inner {
    display: flex;
    justify-content: space-evenly;
  }
  #area3 #service .service-inner .service-card {
    background-color: rgba(0, 114, 189, 0.2);
    padding: 2rem;
    margin: 2rem;
  }
  #area3 #service .service-inner .service-card img {
    max-width: 150px;
  }
  #area3 #service .price-tbl {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
  #area3 #service .price-tbl dt {
    width: 20%;
    text-align: left;
    margin: 0 0 1rem 0;
    padding: 1rem;
    background-color: #0072bd;
    color: #fff;
  }
  #area3 #service .price-tbl .dd-1 {
    width: 55%;
    padding: 0 0 0 2rem;
    margin: 0;
  }
  #area3 #service .price-tbl .dd-2 {
    width: 15%;
    padding: 0 0 0 1rem;
    margin: 0;
    text-align: right;
  }
  #area4 {
    font-size: 0.9rem;
  }
  #area4 #works {
    padding-top: 0.5rem;
  }
  #area4 #works h2 {
    width: 9rem;
    height: 5rem;
    color: #0072bd;
    text-align: center;
    margin: 2rem auto 0 2rem;
    padding: 0.5rem 0.5rem 0 0.5rem;
    position: relative;
    z-index: 10000;
  }
  #area4 #works h2::after {
    content: "制作実績";
    font-size: 1rem;
    display: block;
    padding-top: 0.3rem;
  }
  #area4 #works .works-inner {
    display: flex;
    justify-content: space-around;
  }
  #area4 #works .works-inner img {
    width: 230px;
    height: 160px;
    margin: 0 1rem 1rem 1rem;
  }
  #area4 #works .works-inner p {
    width: 90%;
    max-width: 220px;
    text-align: left;
  }
  #area4 #works .works-lookmore {
    width: 20rem;
    height: 3rem;
    line-height: 3rem;
    text-align: center;
    background-color: #0072bd;
    transition: all 0.5s;
    position: relative;
  }
  #area4 #works .works-lookmore:hover {
    background-color: #fff;
  }
  #area4 #works .works-lookmore a {
    color: #fff;
    text-decoration: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
  }
  #area4 #works .works-lookmore a:hover {
    color: #0072bd;
    border: solid 1px #0072bd;
  }
  #area5 {
    font-size: 0.9rem;
  }
  #area5 #contact_me {
    padding-top: 0.5rem;
  }
  #area5 #contact_me h2 {
    width: 9rem;
    height: 5rem;
    color: #0072bd;
    text-align: center;
    margin: 2rem auto 0 2rem;
    padding: 0.45rem 0.5rem 0 0.5rem;
    font-size: 1.25rem;
    position: relative;
    z-index: 10000;
  }
  #area5 #contact_me h2::after {
    content: "お問い合わせ";
    font-size: 1rem;
    display: block;
    padding-top: 0.3rem;
  }
  #area5 #contact_me .form-container .form-inner-comment p {
    text-align: center;
  }
  #area5 #contact_me .form-container input {
    width: 40%;
  }
  #area5 #contact_me .form-container textarea {
    width: 80%;
  }
}
@media screen and (min-width: 1050px) {
  .svgall {
    width: 19rem;
  }
  .pc-menu__item {
    margin: 15px 5px;
    width: 9rem;
  }
  .pc-menu__item:hover {
    color: #0072bd;
  }
  .pc-menu__item .main-title {
    display: block;
    font-size: 1rem !important;
  }
  .pc-menu__item .sub-title {
    font-size: 0.8rem !important;
  }
  #slider-info-landscape__slider-area {
    width: 50%;
    margin-right: 3%;
    opacity: 0;
  }
  #slider-info-landscape .slider {
    width: 20rem;
  }
  #slider-info-landscape__info-landscape {
    display: block !important;
    text-align: left;
    height: 18rem;
    margin-left: 0;
    opacity: 0;
  }
  #slider-info-landscape__info-landscape p {
    color: #0072bd;
    font-weight: 600;
  }
  #slider-info-landscape__info-landscape p span {
    display: inline-block;
    border-radius: 15px;
    padding: 8px;
  }
  #slider-info-landscape__info-landscape p span:nth-of-type(3) {
    display: inline-block;
    color: #0072bd;
  }
  #slider-info-landscape__info-landscape p span:nth-of-type(n+4) {
    display: inline-block;
    color: #333;
    font-weight: 500;
  }
  #slider-info-landscape__info-landscape p span:nth-of-type(n+5) {
    display: inline-block;
    color: #333;
    font-weight: 500;
  }
  .slick-dotted.slick-slider {
    margin: auto;
    text-align: center;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    z-index: 20;
  }
  .info-landscape {
    display: none;
  }
  #area1 h2 {
    width: 12em;
    height: 3rem;
    margin-top: 3rem;
    padding-bottom: 5px;
    color: #0072bd;
    font-size: 1.8rem;
    border-bottom: solid 2px #0072bd;
  }
  #area4 #works .works-inner img {
    width: 250px;
    height: 180px;
  }
  #area4 #works .works-inner p {
    max-width: 17rem;
  }
  #area5 .form-container .display-name_mail {
    display: flex;
  }
}
@media screen and (min-width: 1280px) {
  .header {
    height: 100px;
  }
  .header.fixed {
    transform: translateY(-15px);
    position: fixed;
    z-index: 9999;
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.3), rgba(0, 138, 219, 0.6));
    width: 100%;
  }
  .svgall {
    width: 25rem;
  }
  .svgall.transform {
    transform: translateY(-10%) rotate(-10deg) scale(0.5);
  }
  .pc-menu__item {
    margin: 15px;
    width: 10rem;
  }
  .pc-menu__item:hover {
    color: #0072bd;
  }
  .pc-menu__item .main-title {
    display: block;
    font-size: 1rem;
  }
  .pc-menu__item .sub-title {
    font-size: 0.8rem;
  }
  #slider-info-landscape__slider-area {
    width: 40%;
    height: 23.5rem;
    opacity: 0;
  }
  #slider-info-landscape .slider {
    width: 30rem;
  }
  #slider-info-landscape .slider img {
    height: 23.5rem;
  }
  #slider-info-landscape__info-landscape {
    display: block !important;
    text-align: left;
    width: 60%;
    height: 23.5rem;
    padding: 3.5rem 1rem 0 1rem;
    opacity: 0;
  }
  #slider-info-landscape__info-landscape p {
    color: #0072bd;
    font-weight: 600;
  }
  #slider-info-landscape__info-landscape p span {
    display: inline-block;
    border-radius: 15px;
    padding: 8px;
    font-size: 1rem;
  }
  #slider-info-landscape__info-landscape p span:nth-of-type(3) {
    display: inline-block;
    color: #0072bd;
  }
  #slider-info-landscape__info-landscape p span:nth-of-type(n+4) {
    display: inline-block;
    color: #333;
    font-weight: 500;
  }
  #slider-info-landscape__info-landscape p span:nth-of-type(n+5) {
    display: inline-block;
    color: #333;
    font-weight: 500;
  }
  .icon-landscape__item {
    padding: 0 10px;
    font-size: 3rem;
    background-color: #fff;
    border: solid thin #333;
    width: 72px;
    height: 4rem;
    text-align: center;
    position: relative;
  }
  .icon-landscape__item:first-of-type {
    border-right: 2px dashed #333;
  }
  .icon-landscape__item:first-of-type i {
    padding-top: 0;
    font-size: 48px;
  }
  .icon-landscape__item:nth-of-type(2) {
    border-left: 2px dashed #333;
  }
  .icon-landscape__item:nth-of-type(2) img {
    padding-top: 0;
  }
  .icon-landscape__item a {
    color: #0072bd;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
  }
  .icon-landscape .icon-landscape__item3 {
    border-top: 2px dashed #333;
    position: absolute;
    top: 3.8rem;
    right: 0;
  }
  .left-leave {
    animation: left-leave 0.5s none;
  }
  @keyframes left-leave {
    0% {
      transform: translateX(0px);
    }
    100% {
      transform: translateX(-64px);
    }
  }
  .right-leave {
    animation: right-leave 0.5s none;
  }
  @keyframes right-leave {
    0% {
      transform: translateX(0px);
    }
    100% {
      transform: translateX(64px);
    }
  }
  #area1 h2 {
    font-size: 2.5rem;
    height: 4.5rem;
  }
  #area1 h2 + p {
    font-size: 1rem;
  }
  #area2 {
    font-size: 1rem;
  }
  #area2 #about_me h2 {
    padding: 0.25rem 0.5rem 0 0.5rem;
  }
  #area2 #about_me h3 span {
    font-size: 0.8rem;
  }
  #area2 #about_me dl {
    font-size: 1rem;
  }
  #area4 {
    font-size: 1rem;
  }
  #area4 #works h2 {
    padding: 0.25rem 0.5rem 0 0.5rem;
  }
  #area4 #works .works-inner img {
    width: 270px;
    height: 200px;
  }
  #area4 #works .works-inner p {
    max-width: 19rem;
  }
  #area5 {
    font-size: 1rem;
  }
  #area5 #contact_me h3 span {
    font-size: 0.8rem;
  }
  #area5 #contact_me dl {
    font-size: 1rem;
  }
}/*# sourceMappingURL=style.css.map */