@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
}
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  background-color: #fff;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
a {
  text-decoration: none;
}
a:hover {
  cursor: pointer;
}
li {
  list-style: none;
}
.wrapper {
  overflow: hidden;
}
.article_inner {
  width: 1200px;
  margin: 0 auto;
  position: relative;
}
.header-logo a:hover {
  opacity: 0.7;
}
.title {
  background-color: #24a8ec;
  width: 13vw;
  padding: 0 22px;
  border-radius: 0 0 50px 50px;
  height: 100px;
  display: table-cell;
  vertical-align: middle;
}
.pink {
  box-shadow: 10px 10px #d2a7cc;
}
.yellow {
  box-shadow: 10px 10px #fff1ad;
}
.title h2 {
  font-family: "Lexend", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #fff;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1;
}
.wrapper-inner {
  position: relative;
}
.line {
  position: fixed;
  bottom: 10px;
  right: 3%;
  z-index: 999;
  width: 150px;
  filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.5));
}
/*==========
ローディング
==========*/
#loading-5 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

#loading-5 span {
  display: inline-block;
  color: #66b7f4;
  font-weight: 600;
  font-size: 1.5em;
  animation: animation-loading-5 1s infinite;
}

#loading-5 span:nth-of-type(2) {
  animation-delay: 0.1s;
}

#loading-5 span:nth-of-type(3) {
  animation-delay: 0.2s;
}

#loading-5 span:nth-of-type(4) {
  animation-delay: 0.3s;
}

#loading-5 span:nth-of-type(5) {
  animation-delay: 0.4s;
}

#loading-5 span:nth-of-type(6) {
  animation-delay: 0.5s;
}

#loading-5 span:nth-of-type(7) {
  animation-delay: 0.6s;
}

#loading-5 span:nth-of-type(8) {
  animation-delay: 0.7s;
}

#loading-5 span:nth-of-type(9) {
  animation-delay: 0.8s;
}

#loading-5 span:nth-of-type(10) {
  animation-delay: 0.9s;
}

@keyframes animation-loading-5 {
  50% {
    transform: translateY(10px);
  }
}
.loaded {
  opacity: 0;
  visibility: hidden;
}

/*===========
header
============*/
header {
  height: 80px;
  width: 100vw;
  margin: 0 auto;
  position: fixed;
  z-index: 999;
}
.menu-white {
  background-color: rgba(255, 255, 255, 0.8);
}
.nav li a {
  font-family: "Lexend", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #111111;
  font-size: 1.4rem;
}
.nav li a:hover {
  color: #9eaf95;
  border-bottom: 2px solid #9eaf95;
}
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px 5% 0;
}
.nav {
  display: flex;
}
.nav li {
  margin-left: 4.1vw;
  text-align: center;
  line-height: 2;
}
/* ハンバーガーメニューの基本スタイル */
.hamburger-menu {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  z-index: 1001; /* メニューより上に表示するため */
}

.hamburger-menu span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 5px 0;
  transition: 0.3s;
}

/* メニューがアクティブな時にハンバーガーアイコンを変化させる */
.hamburger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(6.5px, 5px);
}

.hamburger-menu.active span:nth-child(2) {
  opacity: 0; /* 中央のラインを非表示 */
}

.hamburger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ナビゲーションメニューのスタイル */
.nav-list {
  display: flex;
  gap: 20px;
}

/* モバイル表示用のスタイル */
@media (max-width: 1024px) {
  .nav-list {
    display: none; /* モバイルでは非表示に */
    position: absolute;
    top: 60px; /* ヘッダーの下に配置 */
    right: 0;
    background-color: #fff;
    width: 100%;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }

  /* メニューが表示されたときのスタイル */
  .nav-list.active {
    display: flex; /* メニューを表示 */
    top: 0;
  }
}
/*===========
KV
============*/
#kv {
  background: url(../image/kv_bg.jpg) no-repeat;
  background-size: cover;
  height: 100vh;
  background-position: center;
}
.main-visual {
  position: relative;
  height: calc(100vh - 80px);
  overflow: hidden;
}
.main-copy {
  width: 85vw;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.sun-img {
  position: absolute;
}

.sub-copy {
  position: absolute;
  right: 10vw;
  top: 60vh;
  width: 15%;
}
.sub-copy img {
  height: auto;
}
.kv-charactor {
  position: absolute;
  bottom: 10px;
  left: 20vw;
}
.kv-charactor img {
  height: auto;
  width: 80%;
}
/*スクロールダウン*/

.scroll_down {
  position: absolute;
  bottom: 100px;
  right: 50%;
  animation: arrowmove 1s ease-in-out infinite;
}

.scroll_down a {
  position: absolute;
  left: -24px;
  bottom: 30px;
  color: #000;
  width: 24px;
  height: 24px;
}

.text {
  display: block;
  margin-top: 70px;
  margin-left: -14px;
  font-size: 12px;
  color: #000;
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: 2px;
  font-family: "Lexend", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

.arrow {
  position: absolute;
  width: 28px;
  height: 5px;
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
  animation: move 3s ease-out infinite;
}

.arrow:first-child {
  animation: move 3s ease-out 1s infinite;
}

.arrow:nth-child(2) {
  animation: move 3s ease-out 2s infinite;
}

.arrow:before,
.arrow:after {
  content: " ";
  position: absolute;
  top: 0;
  height: 100%;
  width: 51%;
  background: #000;
}

.arrow:before {
  left: 0;
  transform: skew(0deg, 30deg);
}

.arrow:after {
  right: 0;
  width: 50%;
  transform: skew(0deg, -30deg);
}

@keyframes move {
  25% {
    opacity: 1;
  }
  33% {
    opacity: 1;
    transform: translateY(30px);
  }
  67% {
    opacity: 1;
    transform: translateY(40px);
  }
  100% {
    opacity: 0;
    transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
  }
}

/*===========
KVアニメーション
============*/

.wrapper-inner {
  opacity: 0;
  visibility: hidden;
}
.inner-active {
  opacity: 1;
  visibility: visible;
  animation: appearance;
  animation-duration: 1s;
}

@keyframes appearance {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 100;
  }
}
.yellow-paint {
  display: none;
  visibility: hidden;
  top: 10%;
  right: 10%;
  width: 20%;
}

.yellow-active {
  /*要素を表示させる*/
  display: block;
  opacity: 0;
  visibility: visible;
  animation-name: yellow-splash;
  animation-delay: 0.5s;
  animation-duration: 0.1s;
  animation-fill-mode: forwards;
}

@keyframes yellow-splash {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.blue-paint {
  display: none;
  visibility: hidden;
  top: 50%;
  left: 10%;
  width: 15%;
}
.blue-active {
  /*要素を表示させる*/
  display: block;
  opacity: 0;
  visibility: visible;
  animation-name: yellow-splash;
  animation-delay: 1s;
  animation-duration: 0.1s;
  animation-fill-mode: forwards;
}
.charactor-active {
  opacity: 0;
  animation: slideinBottom;
  animation-duration: 1s;
  animation-delay: 2.5s;
  animation-fill-mode: forwards;
}
@keyframes slideinBottom {
  0% {
    transform: translateY(1000px);
    transform: rotateY(0);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    transform: rotateY(360deg);
    opacity: 1;
  }
}
.main-copy {
  display: none;
  visibility: hidden;
}
.maincopy-active {
  display: block;
  visibility: visible;
}
.maincopy-active img {
  opacity: 0;
  animation-name: anime_left_to_right;
  animation-fill-mode: forwards;
  animation-duration: 1.5s;
  animation-iteration-count: 1;
  animation-timing-function: ease;
  animation-delay: 1.5s;
  animation-direction: normal;
}

@keyframes anime_left_to_right {
  0% {
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
    opacity: 0;
  }
  100% {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    opacity: 1;
  }
}

.sub-copy {
  opacity: 0;
  animation-name: fade;
  animation-duration: 0.5s;
  animation-delay: 4s;
  animation-fill-mode: forwards;
}
.line {
  opacity: 0;
  animation-name: fade;
  animation-duration: 0.8s;
  animation-delay: 4.5s;
  animation-fill-mode: forwards;
}
.about-page {
  position: relative;
}
.about-line {
  animation: none;
  opacity: 1;
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*===========
about me
============*/
#about-me {
  width: 100%;
  background: url(../image/about_right_bg.png) no-repeat top right,
    url(../image/about_left_bg.png) no-repeat bottom left;
  background-color: #fff;
  background-size: 50%;
}
.about {
  flex: 1;
}
.about-wrapper {
  padding-top: 6.4vw;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  padding-left: 2vw;
  padding-right: 2vw;
  padding-bottom: 250px;
}
.about-title {
  position: relative;
  z-index: 99;
}
.about-content {
  display: flex;
  position: absolute;
  top: 9vw;
}
#lead-inner {
  border-top: #24a8ec solid 2px;
  padding-top: 6rem;
  padding-bottom: 2rem;
}
.business-btn {
  color: #fb7803;
  text-align: right;
  white-space: nowrap;
}
.business-btn a {
  color: #fb7803;
}
.business-btn a:hover {
  color: #24a8ec;
}
.arrow-buisness {
  content: "";
  background-image: url(../image/arrow_orange.png);
  width: 30px;
  height: 30px;
  display: inline-block;
  background-size: contain;
  margin-left: 10px;
  vertical-align: middle;
}
.business-btn {
  display: flex;
  align-items: center; /* 垂直中心 */
  justify-content: center; /* 水平中心 */
  position: relative;
}
.business-btn:before {
  border-top: 2px solid #24a8ec;
  content: "";
  width: 50%; /* 線の長さ */
  margin-right: 1rem; /* 文字の右隣 */
  display: block;
  position: absolute;
  top: 10px;
}
.business-btn:hover {
  color: #24a8ec;
  .arrow-buisness {
    background-image: url(../image/arrow_blue.png);
  }
}
.illust-area {
  position: relative;
}
.dot-circle {
  width: 20%;
}
.stripe-circle {
  position: absolute;
  width: 30%;
  left: 30%;
  top: 20%;
}
.gray-m {
  position: absolute;
  z-index: 5;
  width: 40%;
  /*left: 40%;
  top: 40%;*/
  left: 20%;
  top: 80%;
}
.gray-move {
  animation-name: mletter;
  animation-duration: 1s;
  animation-delay: 3s;
  animation-fill-mode: forwards;
}
@keyframes mletter {
  100% {
    left: 40%;
    top: 40%;
  }
}
.blue-m {
  position: absolute;
  z-index: 99;
  width: 40%;
  left: 20%;
  top: 80%;
}
.m-content {
  position: relative;
}
.m-lead {
  padding: 1.5rem 0;
  border-top: solid 1.5px #24a8ec;
  border-bottom: solid 1.5px #24a8ec;
  margin-right: 10%;
  margin-left: 50%;
}
.about-charactor {
  text-align: right;
  position: absolute;
}
.about-charactor img {
  width: 80%;
  height: auto;
}
/*===========
Service
============*/
#service {
  background-color: #eee;
  position: relative;
  overflow: hidden;
}
.service-title {
  position: absolute;
  right: 0;
  height: 100px;
  z-index: 99;
}
.service-title h2 {
  line-height: 100px;
}
.service-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding-top: 110px;
  padding-bottom: 120px;
}
.service-inner {
  margin: 30px;
  text-align: center;
}
.service-inner h3 {
  text-align: center;
  /*color: #24a8ec;*/
  background: linear-gradient(transparent 70%, #fff1ad 70%);
  display: inline-block;
}
.service-icon {
  text-align: center;
  padding-top: 20px;
}
.service-icon img {
  width: 70%;
}
.service-inner p {
  text-align: left;
  padding: 20px 20px;
}
.service-inner p span {
  color: red;
  font-size: small;
  display: block;
  line-height: 1.5;
  margin-top: 1rem;
}
.accordion-header h3 {
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 700;
  font-style: normal;
}
/*背景*/
.snow-items div {
  position: absolute;
  top: 0;
  background-color: #fff;
  width: 15px;
  height: 15px;
  border-radius: 8px;
  opacity: 0;
}
.snow-item1 {
  left: 10%;
  animation: Snow 2.4s linear 0.1s infinite forwards;
}
.snow-item2 {
  left: 20%;
  animation: Snow 1.9s linear 0.3s infinite forwards;
}
.snow-item3 {
  left: 30%;
  animation: Snow 2.3s linear 0.6s infinite forwards;
}
.snow-item4 {
  left: 40%;
  animation: Snow 2.8s linear 0.2s infinite forwards;
}
.snow-item5 {
  left: 50%;
  animation: Snow 2.1s linear 1.2s infinite forwards;
}
.snow-item6 {
  left: 60%;
  animation: Snow 2.8s linear 0.9s infinite forwards;
}
.snow-item7 {
  left: 70%;
  animation: Snow 2.2s linear 1.4s infinite forwards;
}
.snow-item8 {
  left: 80%;
  animation: Snow 2.8s linear 0.2s infinite forwards;
}
.snow-item9 {
  left: 90%;
  animation: Snow 3.1s linear 0.9s infinite forwards;
}
/* アニメーション */
@keyframes Snow {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }
  50% {
    transform: translate(5px, 120px);
    opacity: 1;
  }
  100% {
    transform: translate(0, 240px);
    opacity: 0;
  }
}

/* アコーディオン */
.accordion-content {
  display: none;
  background-color: #fff;
  border-radius: 0 0 20px 20px;
  transform: translateY(-10px);
  box-shadow: 5px 5px 5px 3px #ddd;
}
.accordion-header {
  position: relative;
  cursor: pointer;
  background-color: #fff;
  padding: 20px 10px;
  border-radius: 10px;
  box-shadow: 5px 5px 5px 3px #ddd;
  color: #24a8ec;
}
.accordion-header:hover {
  background-color: #999;
  color: #fff;
}

.accordion-header:hover::before,
.accordion-header:hover::after {
  background: #fff;
}
.accordion-header::before,
.accordion-header::after {
  position: absolute;
  content: "";
  top: 1px;
  right: 20px;
  bottom: 0;
  width: 12px;
  height: 3px;
  margin: auto;
  background: #24a8ec;
}
.accordion-header::after {
  transform: rotate(-90deg);
  transition: transform 0.3s;
}
.accordion-header.active::after {
  transform: rotate(0deg);
  background: #fff;
}
.accordion-header.active {
  background-color: #999;
  color: #fff;
}
.accordion-header.active h3 {
  background: none;
}
/*=========
News
=========*/
#news {
  background-image: url(../image/news-wrapper_bg.jpg);
  background-size: 50%;
  height: 800px;
}
.news-area {
  height: 500px;
  position: relative;
}
.news-1,
.news-2 {
  margin: 30px;
  line-height: 2;
  position: absolute;
}
.news-area section h3 {
  text-align: center;
  margin-bottom: 1.5rem;
}
.news-area section p {
  text-decoration: underline dotted #666;
  text-underline-offset: 8px;
}
.news-1 {
  background: url(../image/news_1_bg.png) no-repeat;
  background-size: cover;
  position: absolute;
  z-index: 99;
  width: 50%;
  height: 500px;
  left: 5%;
}

.news-1-content {
  width: 80%;
  height: auto;
  position: relative;
  /*top: 120px;*/
  /*left: 50px;*/
  top: 100px;
  left: 60px;
  display: block;
  transform: rotate(-6deg);
}
.date {
  text-decoration: none !important;
  text-align: right;
}
.news-2 {
  background: url(../image/news_2_bg.png) no-repeat;
  background-size: contain;
  position: absolute;
  z-index: 10;
  width: 60%;
  height: 500px;
  right: -5%;
  top: 50px;
}
.news-2-content {
  width: 50%;
  height: auto;
  position: relative;
  top: 110px;
  left: 28%;
}
.news-charactor {
  position: absolute;
  right: -80px;
  z-index: 99;
  bottom: -180px;
}
.news-charactor img {
  width: 50%;
}
.fade-box {
  opacity: 0;
  visibility: hidden;
  transition: all 1.5s;
  transition-delay: 0.5s;
}
.fade-box2 {
  opacity: 0;
  visibility: hidden;
  transition: all 1.5s;
  transition-delay: 1s;
}
.fade-box3 {
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  transition-delay: 2s;
}
.is-fade {
  opacity: 1;
  visibility: visible;
}

/*===========
work
============*/

#work {
  background-image: url(../image/work_bg.jpg);
  position: relative;
  overflow: hidden;
}
#work .article_inner {
  text-align: center;
}
.news-title {
  position: absolute;
  right: 0;
  height: 100px;
  z-index: 99;
}
.news-title h2 {
  line-height: 100px;
}
#work h3 {
  color: #24a8ec;
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  margin-left: 1rem;
}
.web-site {
  padding-top: 150px;
}
.web-site h3 {
  text-align: center;
}
.achievements {
  color: #fb7803;
  display: inline-block;
  text-align: center;
  margin: 100px auto;
  padding: 1.5rem;
  border-top: 2px dotted;
  border-bottom: 2px dotted;
  position: relative;
  font-size: 1.3rem;
}
.achievements:hover {
  color: #24a8ec;
}
.achievements a {
  display: inline-block;
  padding-right: 1.8rem;
  color: #fb7803;
}
.achievements a:hover {
  color: #24a8ec;
}
.achievements a::before {
  content: "";
  width: 20px;
  height: 20px;
  background: #fb7803;
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: 1rem;
  bottom: 0;
  margin: auto;
}
.achievements a::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 6px;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  top: 0;
  right: calc(1rem + 6px);
  bottom: 0;
  margin: auto;
}
.achievements:hover {
  color: #24a8ec;
}
.achievements a:hover::before {
  background-color: #24a8ec;
}

.comment {
  display: flex;
  align-items: start;
  justify-content: center;
  height: 150px;
  color: #24a8ec;
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 600;
  font-style: normal;
}
.site-chara img {
  height: 150px;
  width: auto;
}

.site-chara {
  max-height: 100%;
}
/*スライダー*/
.slide-items {
  width: 50%;
  height: auto;
  margin: 0 auto;
  border: 30px solid #fff;
  border-radius: 20px;
  box-shadow: 5px 5px 5px #ddd;
}

.slide-items img {
  max-width: 100%;
  object-fit: cover;
}
.slick-dots li button:before {
  font-size: 10px;
  top: 6px;
}

.slick-prev:before,
.slick-next:before {
  color: gray;
}

/*.bnr-area ul {
  overflow: hidden;
}*/

/*モーダルウィンドウ*/
.lb-data .lb-details {
  display: none;
}

/*============
フッター
=============*/

footer {
  background-color: #ccf6fd;
  padding: 32px 3rem;
}
.footer-content {
  display: flex;
  color: #24a8ec;
  justify-content: space-between;
  align-items: center;
  /*font-family: "Lexend", "Sawarabi Gothic", sans-serif;*/
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 1.1rem;
}
.company-info p {
  margin-bottom: 1rem;
}
.company-info p:first-child {
  border-bottom: dotted 1.5px;
}
.footer-logo img {
  width: 50%;
  height: auto;
}
small {
  margin: 0 auto;
  font-family: "Lexend", "Sawarabi Gothic", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  display: block;
  width: 100%;
  text-align: center;
}
.sp {
  display: none;
}
.pc {
  display: block;
}
/*============
レスポンシブ
=============*/
@media screen and (max-width: 1024px) {
  /* 1024px以下に適用されるCSS（タブレット用） */
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  .clip {
    display: none;
  }
  #kv {
    width: 100%;
    height: auto;
    background: url(../image/kv_bg-sp-inner@2x.png) no-repeat,
      url(../image/kv_bg-sp@2x.jpg) no-repeat;
    background-size: 80%, cover;
    background-position: left 80px, center;
  }

  .main-visual {
    height: 100vw;
  }
  .main-copy-sp {
    position: absolute;
    text-align: center;
    top: 40%;
    transform: translateY(-40%);
  }
  .main-copy-sp img {
    width: 70%;
    height: auto;
  }

  .blue-paint {
    top: 60%;
    left: 0;
  }
  .kv-charactor {
    position: absolute;
    bottom: 10px;
    /* left: 20vw; */
    width: 20%;
    /*text-align: right;
    padding-right: 10%;
    left: 0;*/
  }
  .charactor-active {
    opacity: 0;
    animation: slideinBottom;
    animation-duration: 1s;
    animation-delay: 1.5s;
    animation-fill-mode: forwards;
  }
  header {
    height: auto;
  }
  .sub-copy {
    top: 75%;
    width: 30%;
    animation-delay: 3s;
  }
  /*.nav li a {
    font-size: 2vw;
  }*/
  .about-wrapper {
    max-width: 1000px;
  }
  .about-charactor {
    top: -50%;
  }
  .about-charactor img {
    width: 80%;
  }
  .article_inner {
    max-width: 100%;
  }
  #news {
    height: 1100px;
  }
  .news-2 {
    background-size: cover;
    top: 350px;
    right: 0;
  }
  .news-1 {
    width: 60%;
    left: 0;
  }
  .news-charactor {
    right: 0;
    top: 0;
  }
  .news-charactor img {
    width: 60%;
  }
  .accordion-header h3 {
    font-size: 1.1rem;
  }
  .business-sp {
    text-align: right;
    margin-top: 8vw;
    margin-right: 10%;
  }
  .business-sp a {
    border: solid 2px #fb7803;
    border-radius: 30px;
    padding: 1rem 2rem;
    background-color: #fff;
    color: #fb7803;
    position: relative;
    display: inline-block;
  }
  .business-sp a::after {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 1rem;
    margin: auto;
    content: "";
    vertical-align: middle;
    width: 0.5em; /* arrow size */
    height: 0.5em; /* arrow size */
    border-top: 3px solid #fb7803; /* thickness, color */
    border-right: 3px solid #fb7803;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .business-sp a:hover {
    background-color: #fb7803;
    color: #fff;
  }
  .business-sp a:hover::after {
    border-top: 3px solid #fff; /* thickness, color */
    border-right: 3px solid #fff;
  }
  .about-wrapper {
    padding-bottom: 100px;
  }
  .line-area {
    width: 100%;
    background-color: #fff;
    position: fixed;
    bottom: 0;
    z-index: 999;
    box-shadow: 0px -1px 5px rgba(0, 0, 0, 0.5);
  }
  .line {
    width: 50%;
    position: static;
    margin: 0 auto;
    filter: none;
    animation: none;
    opacity: 1;
  }
}

@media screen and (max-width: 768px) {
  .clip {
    display: block;
  }
  .blue-paint {
    top: 60%;
  }
  .article_inner {
    max-width: 100%;
    overflow: hidden;
  }
  .header-logo {
    width: 60%;
  }
  .news-title h2 {
    line-height: 2;
  }
  .news-area {
    height: auto;
    padding-bottom: 15px;
  }
  .main-visual {
    height: 100vw;
  }
  .main-copy-sp img {
    width: 85%;
  }
  .sun-img img {
    width: 25vw;
  }
  .sub-copy {
    top: 70%;
    width: 40%;
  }
  .sub-copy img {
    width: 100%;
  }
  .kv-charactor {
    width: 20vw;
  }
  .kv-charactor img {
    width: 100%;
  }
  .about-content {
    display: block;
    position: relative;
    top: 0;
  }
  .about {
    position: relative;
    margin-top: 10vw;
  }
  .clip {
    position: absolute;
    right: 10%;
    z-index: 99;
    width: 12vw;
    top: -8vw;
  }
  .about-1 {
    background: url(../image/about-1-bg-sp@2x@2x@2x.jpg) no-repeat;
    background-size: cover;
    width: 90%;
    margin: 5vw auto;
    box-shadow: 5px 5px 3px #ddd;
  }
  #lead-inner {
    padding: 2rem 1rem 2rem 1rem;
    border: none;
    background: none;
    font-size: 16px;
  }
  #lead-inner p {
    max-width: 100%;
    font-size: 0.9rem;
  }
  .illust-area {
    height: 20vw;
  }
  .dot-circle {
    width: 20%;
    position: absolute;
    left: 10%;
  }
  .stripe-circle {
    position: absolute;
    top: 50%;
    /* right: 50%; */
    left: 0;
  }
  .gray-m {
    width: 20%;
    left: 70vw;
    top: 5%;
  }
  .blue-m {
    width: 20%;
    left: 60vw;
    top: 20%;
  }
  .m-content {
    margin-top: 0 !important;
    flex-direction: column-reverse;
  }
  .m-lead {
    border: none;
    position: relative;
    width: 90%;
    padding-left: 0;
    margin: 0 auto;
    font-size: 16px;
  }
  .about-charactor {
    text-align: center;
  }
  .about-charactor img {
    width: 50%;
  }
  .about-wrapper {
    padding-bottom: 13vw;
    padding-top: 0;
  }
  .business-sp {
    text-align: center;
    margin-top: 5vw;
    margin-right: 0;
  }
  .business-sp a {
    border: solid 2px #fb7803;
    border-radius: 30px;
    padding: 1rem 2rem;
    background-color: #fff;
    color: #fb7803;
    position: relative;
    display: inline-block;
  }
  .business-sp a::after {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 1rem;
    margin: auto;
    content: "";
    vertical-align: middle;
    width: 0.5em; /* arrow size */
    height: 0.5em; /* arrow size */
    border-top: 3px solid #fb7803; /* thickness, color */
    border-right: 3px solid #fb7803;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .business-sp a:hover {
    background-color: #fb7803;
    color: #fff;
  }
  .business-sp a:hover::after {
    border-top: 3px solid #fff; /* thickness, color */
    border-right: 3px solid #fff;
  }
  .service-content {
    display: block;
  }
  .active-inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-bottom: 2.6vw;
  }
  @media screen and (max-width: 430px) {
    .active-inner {
      display: block;
    }
    .service-icon img {
      width: 50%;
    }
  }
  .title {
    width: 30vw;
    height: 15vw;
  }
  .title h2 {
    font-size: 1.1rem;
    line-height: 15vw;
  }
  .about-title h2 {
    line-height: 1;
  }
  #about-me {
    background-size: 80%;
  }
  #news {
    height: auto;
    padding-bottom: 20vw;
  }
  .news-area section p {
    font-size: 16px;
  }

  .news-1 {
    position: static;
    background-image: none;
    width: 80%;
    padding-bottom: 13vw;
    padding-top: 5vw;
    background-size: contain;
    background-color: #fdf0d4;
    transform: rotate(-6deg);
    height: auto;
    box-shadow: 5px 5px 5px #999;
    margin-bottom: 50px;
  }
  .news-1-content {
    top: 5vw;
    width: 85%;
    font-size: 0.9rem;
    left: 6vw;
    transform: rotate(0);
  }

  .news-area section h3 {
    margin-bottom: 0;
    white-space: nowrap;
  }
  .news-charactor {
    z-index: 99;
    width: 40%;
    bottom: 0;
    right: 0;
    text-align: right;
  }

  .news-2 {
    position: static;
    background-image: none;
    background-color: #f7f5e6;
    width: 80%;
    height: auto;
    padding-bottom: 13vw;
    padding-top: 5vw;
    background-size: contain;
    transform: rotate(8deg);
    box-shadow: 5px 5px 5px #999;
    font-size: 0.8rem;
  }
  .news-2-content {
    top: 5vw;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.9rem;
    width: 85%;
  }
  .service-title h2 {
    line-height: 12vw;
  }
  .service-content {
    padding-top: 15.6vw;
    padding-bottom: 25vw;
  }
  .accordion-header::before,
  .accordion-header::after {
    right: 10px;
  }
  .footer-logo {
    text-align: right;
  }
  .web-site {
    padding-top: 50px;
    margin-bottom: 0;
  }
  .slide-items {
    width: 70%;
    border: 15px solid #fff;
  }
  .slick-dots {
    bottom: -30px;
  }
  .bnr-area {
    margin-top: 60px;
  }
  .achievements {
    width: 90%;
    background-color: #fff;
    margin: 50px auto;
  }
  .slide-items img {
    width: 100%;
  }
  .comment {
    display: block;
    height: 30px;
  }
  .fade-box3 {
    transition-delay: 1s;
  }
  .achievements a {
    font-size: 16px;
  }
}
@media screen and (max-width: 600px) {
  body {
    font-size: 16px;
  }
  .footer-content {
    display: block;
    text-align: center;
    font-weight: 600;
    font-size: 18px;
  }
  .footer-logo {
    text-align: center;
    margin-bottom: 20px;
  }
  .footer-content {
    font-weight: 600;
  }
  .line {
    width: 100%;
  }
}

/*=============
下層ページ
==============*/

/*about*/
#page-about {
  background: url(../image/about_bg_top.png) no-repeat top right;
  padding-bottom: 50px;
}
.business-content,
.aboout-secondsontent {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 100px;
  text-align: center;
}
.business-content h2 {
  color: #24a8ec;
  margin-bottom: 2rem;
  border-bottom: 3px dotted;
  display: inline-block;
  padding: 0 10px;
}

.business-content table {
  width: 90%;
  display: block;
  margin: 0 auto;
  background-color: #fff;
  border: #24a8ec 2px solid;
  border-radius: 20px;
  padding: 30px 5%;
  box-shadow: 15px 15px #87ceeb;
}
.business-content table th {
  width: 30%;
  height: 50px;
  font-weight: 500;
}
.business-content table th,
.business-content table td {
  border-bottom: #24a8ec dotted 3px;
  padding: 1rem 0;
}
.business-content table td {
  text-align: left;
  padding-left: 1rem;
}
.last-row {
  border: none !important;
}
.small-title {
  color: #191970;
}
.aboout-secondsontent {
  max-width: 1200px;
}
.profile-content {
  display: flex;
  width: 80%;
  margin: 0 auto;
}
.profile-content div img {
  width: 200px;
  /*border-radius: 20px;
  border: #24a8ec 10px solid;
  box-shadow: 3px 3px 1px rgba(192, 192, 192, 0.5);*/
}
.biography {
  width: 300px;
  text-align: left;
}
.profile-content h3 {
  font-weight: normal;
  margin-top: 1rem;
}
.profile-content p {
  margin-bottom: 1rem;
}
.job {
  border-bottom: #b0c4de solid 2px;
}
.greeting {
  text-align: left;
  padding-left: 30px;
}
.aboout-secondsontent h2 {
  color: #24a8ec;
  margin-bottom: 2rem;
  border-bottom: 3px dotted;
  display: inline-block;
  padding: 0 10px;
}
@media screen and (max-width: 430px) {
  .business-content table {
    padding: 20px;
  }
  .business-content {
    padding-top: 50px;
    margin-bottom: 30px;
  }
  .profile-content {
    flex-direction: column-reverse;
  }
  .aboout-secondsontent {
    background: url(../image/sp_greeting_bg@2x.png) top right no-repeat;
    background-size: contain;
  }

  .greeting {
    margin-bottom: 50px !important;
    margin-bottom: 50px !important;
    border: 2px #24a8ec solid;
    padding: 1rem;
    background-color: #fff;
  }
  .profile-content {
    width: 90%;
  }
  .biography {
    text-align: center;
    width: 100%;
  }
  .comment p {
    max-width: 90%;
    font-size: 0.9rem;
    margin: 0 auto;
    white-space: nowrap;
  }
}

/*==============
お問い合わせページ
===============*/
#page-contact {
  padding-top: 100px;
  padding-bottom: 100px;
  background: url(../image/about_bg_top.png) top right,
    url(../image/about_left_bg.png) bottom left;
  background-repeat: no-repeat;
}
.contact-title {
  text-align: center;
}
#page-contact h2 {
  color: #24a8ec;
  text-align: center;
  display: inline-block;
  margin-top: 100px;
  font-size: 1.5rem;
  border-bottom: #24a8ec dotted 3px;
}

.contact-lead {
  text-align: center;
  margin: 30px 0;
}
@media screen and (max-width: 430px) {
  #page-contact {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .contact-lead {
    width: 90%;
    margin: 30px auto;
  }
}

/*==============
ThanksPage
===============*/
a:hover {
  cursor: pointer;
}
#thanks {
  text-align: center;
}
.btn-area {
  text-align: center;
}
.top-btn {
  display: inline-block;
  padding: 1.5rem 5rem;
  background-color: #fff;
  border: #24a8ec 2px solid;
  border-radius: 100vh;
  margin-top: 100px;
  position: relative;
}
.top-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 5%;
  margin-top: -10px;
  margin-left: -10px;
  border-width: 10px;
  border-style: solid;
  border-color: #24a8ec transparent transparent transparent;
  transform: rotate(-90deg);
}
.top-btn a {
  color: #24a8ec;
}
.top-btn:hover {
  background-color: #24a8ec;
}

.top-btn:hover a {
  color: #fff;
}
.top-btn:hover::before {
  border-color: #fff transparent transparent transparent;
}
