/*
Theme Name: manga-biz2024
*/

@charset "utf-8";
@import url("css/reset.css");

html {
  scroll-padding-top: 150px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", "hiragino-kaku-gothic-pron", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", Meiryo, sans-serif;
  /*font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;*/
  font-weight: 400;
  line-height: 1.6em;
  font-size: 15px;
  color: #231815;
}

img {
  line-height: 1;
}

.mt0 {
  margin-top: 0 !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mt70 {
  margin-top: 70px !important;
}

.mt80 {
  margin-top: 80px !important;
}

.mt90 {
  margin-top: 90px !important;
}

.mt100 {
  margin-top: 100px !important;
}

.mb0 {
  margin-bottom: 0px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.mb90 {
  margin-bottom: 90px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

.mb200 {
  margin-bottom: 200px !important;
}

.mb300 {
  margin-bottom: 300px !important;
}

.pt0 {
  padding-top: 0px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.pt60 {
  padding-top: 60px !important;
}

.pt70 {
  padding-top: 70px !important;
}

.pt80 {
  padding-top: 80px !important;
}

.pt90 {
  padding-top: 90px !important;
}

.pt100 {
  padding-top: 100px !important;
}

.pb0 {
  padding-bottom: 0px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.pb60 {
  padding-bottom: 60px !important;
}

.pb70 {
  padding-bottom: 70px !important;
}

.pb80 {
  padding-bottom: 80px !important;
}

.pb90 {
  padding-bottom: 90px !important;
}

.pb100 {
  padding-bottom: 100px !important;
}

a {
  word-wrap: break-word;
}


.grecaptcha-badge {
  visibility: hidden;
}


/* common */
.linkBtRed {
  color: #FFFFFF !important;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.7em;
  text-align: center;
  max-width: 400px;
  margin: 0 auto;
}

.linkBtRed a {
  background: #9b2222;
  border-radius: 30px;
  text-align: center;
  padding: 15px 50px 16px 30px;
  width: auto;
  max-width: 100%;
  transition: 0.5s;
  position: relative;
  display: block;
}

.linkBtRed a:hover {
  background-size: 200% auto;
  -webkit-animation: pulse 2s infinite;
  animation: linkBtRedAnime 1.5s infinite;
}

.linkBtRed a:after {
  position: absolute;
  right: 25px;
  top: calc(50% - 3px);
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  color: #fff;
  background-color: #fff;
}

.linkBtRed a:active {
  opacity: 0.5;
}

@keyframes linkBtRedAnime {
  0% {box-shadow: 0 0 0 0 #9b2222;}
  70% {box-shadow: 0 0 0 10px rgb(27 133 251 / 0%);}
  100% {box-shadow: 0 0 0 0 rgb(27 133 251 / 0%);}
}

.linkBtBlack {
  color: #FFFFFF !important;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.7em;
  text-align: center;
  max-width: 400px;
  margin: 0 auto;
}

.linkBtBlack a {
  background: #231815;
  border-radius: 30px;
  padding: 15px 50px 16px 30px;
  width: auto;
  max-width: 100%;
  transition: 0.5s;
  position: relative;
  display: block;
}

.linkBtBlack a:hover {
  background-size: 200% auto;
  -webkit-animation: pulse 2s infinite;
  animation: linkBtBlackAnime 1.5s infinite;
}

.linkBtBlack a:after {
  position: absolute;
  right: 25px;
  top: calc(50% - 3px);
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  color: #fff;
  background-color: #fff;
}

.linkBtBlack a:active {
  opacity: 0.5;
}

@keyframes linkBtBlackAnime {
  0% {box-shadow: 0 0 0 0 #231815;}
  70% {box-shadow: 0 0 0 10px rgb(27 133 251 / 0%);}
  100% {box-shadow: 0 0 0 0 rgb(27 133 251 / 0%);}
}

.linkBtGold {
  color: #FFFFFF !important;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.7em;
  text-align: center;
  max-width: 400px;
  margin: 0 auto;
}

.linkBtGold a {
  background: #B4995C;
  border-radius: 30px;
  text-align: center;
  padding: 15px 50px 16px 30px;
  width: auto;
  max-width: 100%;
  transition: 0.5s;
  position: relative;
  display: block;
}

.linkBtGold a:hover {
  background-size: 200% auto;
  -webkit-animation: pulse 2s infinite;
  animation: linkBtGoldAnime 1.5s infinite;
}

.linkBtGold a:after {
  position: absolute;
  right: 25px;
  top: calc(50% - 3px);
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  color: #fff;
  background-color: #fff;
}

.linkBtGold a:active {
  opacity: 0.5;
}

@keyframes linkBtGoldAnime {
  0% {box-shadow: 0 0 0 0 #B4995C;}
  70% {box-shadow: 0 0 0 10px rgb(27 133 251 / 0%);}
  100% {box-shadow: 0 0 0 0 rgb(27 133 251 / 0%);}
}

.linkBtBlackArrow p {
  border-bottom: 2px solid #231815;
  display: block;
}

.linkBtBlackArrow a {
  font-size: 16px;
  line-height: 1.7em;
  display: block;
  padding: 10px 20px 10px 0;
  position: relative;
  font-weight: 600;
  transition: 0.5s;
  white-space: nowrap;
}

.linkBtBlackArrow a:hover {
  opacity: 0.5;
}

.linkBtBlackArrow a:after {
  content: "";
  background-image: url(images/btn_bk.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  width: 16px;
  height: 16px;
  position: absolute;
  right: 0;
  top: calc(50% - 8px);
}

/* header */
header {
  background: #fff;
  background-color: rgba(255, 255, 255, 1);
  width: 100%;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  height: 100px;
}

.headerBox {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 15px;
  height: 100px;
  max-width: 1730px;
  margin: 0 auto;
}

.headerLogo {
  flex-basis: 120px;
}

.headerLogo a {

}

.headerLogo img {
  height: 50px;
  width: auto;
}

.headerMenu {
  max-width: 100%;
  flex-shrink: 2;
  flex-grow: 2;
  margin: 0 65px 0 15px;
}

.headerMenu > ul {
  display: flex;
  justify-content: flex-end;
}

.headerMenu > ul > li {
  color: #333;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
  justify-content: center;
}

.headerMenu > ul > li > a {
  padding: 25px 10px 30px 10px;
  display: block;
  transition: 0.5s;
  position: relative;
}

.headerMenu > ul > li > a:after {
  content: "";
  width: 100%;
  height: 4px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #fff;
  transition: 0.5s;
}

.headerMenu > ul > li > a:hover {
  color: #c0ae72;
  font-weight: 700;
}

.headerMenu > ul > li > a:hover:after {
  background-color: #c0ae72;
}

.headerTel {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5em;
  text-align: left;
  flex-basis: 170px;
  position: relative;
}

.headerTel:before {
  content: "";
  width: 40px;
  height: 40px;
  background-image: url(images/telIconBk.svg);
  background-size: 100%;
  position: absolute;
  left: -45px;
  top: 0;
}

.headerTel span {
  font-size: 24px;
  font-weight: 700;
  font-family: "Roboto";
  font-style: italic;
}

.headerTel a {
  text-decoration: none;
  transition: 0.5s;
}

.headerTel a:hover {
  opacity: 0.5;
}

.headerBt {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5em;
  text-align: center;
  flex-basis: 200px;
}

.headerBt a {
  background: #9b2222;
  border-radius: 32px;
  padding: 10px 50px 12px 30px;
  width: auto;
  max-width: 100%;
  transition: 0.5s;
  white-space: nowrap;
  position: relative;
}

.headerBt a:hover {
  /*opacity: 0.5;*/
  background-size: 200% auto;
  -webkit-animation: pulse 2s infinite;
  animation: headerBtAnime 1.5s infinite;
}

.headerBt a:active {
  opacity: 0.5;
}

.headerBt a:after {
  position: absolute;
  right: 15px;
  top: calc(50% - 3px);
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  color: #fff;
  background-color: #fff;
}

@keyframes headerBtAnime {
  0% {box-shadow: 0 0 0 0 #9b2222;}
  70% {box-shadow: 0 0 0 10px rgb(27 133 251 / 0%);}
  100% {box-shadow: 0 0 0 0 rgb(27 133 251 / 0%);}
}

.headerServiceMenu {
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  position: absolute;
  bottom: -60px;
  left: 0;
  background-color: #c0ae72;
  width: 100%;
  box-shadow: 1px 1px 5px #aaa;
  display: none;
}

.headerServiceMenu.active {
  display: flex !important;
}

.headerServiceMenu li {
}

.headerServiceMenu a {
  color: #FFFFFF;
  font-size: 14px;
  font-style: normal;
  line-height: 1.4;
  padding: 20px;
  position: relative;
  transition: 0.5s;
  display: block;
}

.headerServiceMenu :hover {
  opacity: 0.5;
}

.headerServiceMenu a:before {
  content: ">";
  margin-right: 5px;
}


/* アニメーション関連 */
.scroll_up {
  transition: 0.8s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}

.scroll_up.on {
  transform: translateY(0);
  opacity: 1.0;
}

.scroll_fadein {
  transition: 0.8s ease-in-out;
  opacity: 0;
}

.scroll_fadein.on {
  transform: translateY(0);
  opacity: 1.0;
}

.auto_scroll_up {
  transition: 0.8s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}

.auto_scroll_up.on {
  transform: translateY(0);
  opacity: 1.0;
}

.auto_scroll_fadein {
  transition: 0.8s ease-in-out;
  opacity: 0;
}

.auto_scroll_fadein.on {
  transform: translateY(0);
  opacity: 1.0;
}

.scroll_left {
  transition: 0.8s ease-in-out;
  transform: translateX(-30px);
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
}
.scroll_left.on {
  opacity: 1.0;
  filter: alpha(opacity=100);
  -moz-opacity: 1.0;
  transform: translateX(0);
}

.scroll_leftup {
  transition: 0.8s ease-in-out;
  transform: translateX(-30px);
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
}
.scroll_leftup.on {
  opacity: 1.0;
  filter: alpha(opacity=100);
  -moz-opacity: 1.0;
  transform: translateX(0);
}

.scroll_right {
  -webkit-transition: 0.8s ease-in-out;
  -moz-transition: 0.8s ease-in-out;
  -o-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
  transform: translateX(30px);
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
}
.scroll_right.on {
  opacity: 1.0;
  filter: alpha(opacity=100);
  -moz-opacity: 1.0;
  transform: translateX(0);
}

.scroll_rightup {
  -webkit-transition: 0.8s ease-in-out;
  -moz-transition: 0.8s ease-in-out;
  -o-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
  transform: translateX(30px);
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
}
.scroll_rightup.on {
  opacity: 1.0;
  filter: alpha(opacity=100);
  -moz-opacity: 1.0;
  transform: translateX(0);
}

.stiming01 {transition-delay: .0s;}
.stiming02 {transition-delay: .2s;}
.stiming03 {transition-delay: .4s;}
.stiming04 {transition-delay: .6s;}
.stiming05 {transition-delay: .8s;}
.stiming06 {transition-delay: 1.0s;}
.stiming07 {transition-delay: 1.2s;}
.stiming08 {transition-delay: 1.4s;}
.stiming09 {transition-delay: 1.6s;}


/* タイトル系アニメーション */
.h1titleanimation {
  display: inline-block;
  position: relative;
}
.h1titleanimation::after {
  content: "";
  display: block;
  background-color: #ebe4d3;
  position: absolute;
  top: 0;
  left: 0;
  right: 100%;
  bottom: 0;
}
.h1titleanimation.__anima::after {
  animation: h1titleanimation_bg 0.9s ease-out 1 forwards;
}

.h1titleanimation span {
  position: relative;
  z-index: 1;
  opacity: 0;
}
.h1titleanimation.__anima span {
  animation: h1titleanimation_fadein 0.5s ease-out 0.7s 1 forwards;
}

@keyframes h1titleanimation_fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes h1titleanimation_bg {
  0% {
    left: 0;
    right: 100%;
  }
  40% {
    left: 0;
    right: 0;
  }
  60% {
    left: 0;
    right: 0;
  }
  100% {
    left: 100%;
    right: 0;
  }
}





/* contents */
main {
  margin-top: 100px;
}


/* works List */
.worksList {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-evenly;
}

.worksList > li {
  width: calc((100% - 80px) / 3);
  transition: 0.5s;
}

.worksList > li:hover {
  opacity: 0.5;
}

.worksList > li > a {
  display: block;
}

.worksListEachBox {

}

.worksListEachThumbnail {

}

.worksListEachThumbnail img {
  width: 100%;
  max-width: 100%;
}

.worksListEachClient {
  font-size: 15px;
  margin: 15px 0 5px 0px;
}

.worksListEachTitle {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.6em;
}

.worksListEachCategory {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding: 0;
}

.worksListEachCategory li {
  padding: 0 10px 10px 0;
}

.worksListEachCategory > li > object > a {
  font-size: 13px;
  color: #231815;
  font-weight: 600;
  background-color: #fff;
  border: 1px solid #231815;
  border-radius: 5px;
  padding: 5px 10px;
  line-height: 1.5em;
}



/* column List */
.columnList {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.columnList > li {
  background: #FFFFFF;
  width: calc((100% - 80px) / 3);
  transition: 0.5s;
}

.columnList > li:hover {
  opacity: 0.5;
}

.columnList > li > a {
  display: block;
}

.columnListEachBox {

}

.columnListEachThumbnail {

}

.columnListEachThumbnail img {
  width: 100%;
  max-width: 100%;
}

.columnListEachClient {
  font-size: 15px;
  margin: 15px 0 5px 0px;
}

.columnListEachTitle {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.6em;
}

.columnListEachExcerpt {
  font-size: 11px;
  line-height: 1.8em;
  margin: 15px 0px;
}

.columnListEachCategory {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding: 0;
}

.columnListEachCategory li {
  padding: 0 10px 10px 0;
}

.columnListEachCategory > li > object > a {
  font-size: 13px;
  color: #231815;
  font-weight: 600;
  background-color: #fff;
  border: 1px solid #231815;
  border-radius: 5px;
  padding: 5px 10px;
  line-height: 1.5em;
}


/* 共通cta */
.cta {
  background-color: #231815;
  background-image: url(images/ctaBg.svg);
  background-size: cover;
  background-position: right top;
  background-repeat: no-repeat;
  color: #fff;
  padding: 50px 0;
}

.ctaBox {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.ctaEachWebBox {
  width: 100%;
  padding: 0 90px;
}

.ctaEachWebBox h2 {
  font-size: 36px;
  font-weight: 600;
  text-align: center;
  line-height: 1.6em;
}

.ctaEachWebText {
  text-align: center;
  padding: 20px 0;
}

.ctaEachWebBt {
  max-width: 900px;
}

.ctaEachWebBt a {
  padding-top: 18px;
  padding-bottom: 20px;
  border-radius: 35px;
}

.ctaEachTelBox {
  width: 100%;
  padding: 0 90px;
  margin-top: 40px;
}

.ctaEachTelText {
  text-align: center;
  padding: 20px 0;
}

.ctaEachTel {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7em;
  text-align: left;
  position: relative;
  width: 340px;
  padding-left: 80px;
  margin: 0 auto;
  /*background: rgba(255, 255, 255, 0.2);*/
}

.ctaEachTel:before {
  content: "";
  width: 65px;
  height: 65px;
  background-image: url(images/telIconWh.svg);
  background-size: 100%;
  position: absolute;
  left: 0;
  top: -3px;
}

.ctaEachTel span {
  font-size: 40px;
  font-weight: 600;
  font-family: "Roboto";
  font-style: italic;
}

.ctaEachTel a {
  text-decoration: none;
  transition: 0.5s;
}

.ctaEachTel a:hover {
  opacity: 0.5;
}


/* footer */
footer {
  background: #fff;
  padding: 30px;
}

.footerMenu {
  width: 100%;
  max-width: 1100px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto;
  padding: 0 0 25px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}

.footerMenuEachBox {

}

.footerMenuTitle {
  font-size: 16px;
  font-weight: 600;
  padding: 0 0 10px 0;
}

.footerMenuTitle a {
  text-decoration: none;
}

.footerMenuInList {

}

.footerMenuInList li {
  position: relative;
  padding: 0 0 5px 0;
}

.footerMenuInList a {
  color: #231815;
  font-size: 14px;
  font-weight: 400;
  text-align: left;
}

.footerMenuList {

}

.footerMenuList li {
  padding: 0 0 10px 0;
}

.footerMenuList a {
  color: #231815;
  font-size: 16px;
  font-weight: 600;
}

.footerBox {
  margin: 35px auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1100px;
  position: relative;
}

.footerLogoBox {
  width: 30%;
}

.footerLogo {

}

.footerLogo img {
  width: 100%;
  max-width: 170px;
}

.footerCopy {
  font-size: 12px;
  font-weight: 600;
  padding: 5px 0 0 0;
}

.footerAddressBox {
  width: 70%;
}

.footerAddress {
  font-size: 14px;
}

.footerAddress span {
  font-weight: 600;
}

.copyright {
  color: #909090;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
  text-align: right;
  position: absolute;
  right: 0;
  bottom: 0;
}


@media all and (max-width: 1024px) {
  /* SP */
  .pconly {
    display: none;
  }


  /* common */
  .linkBtRed a {
    width: 100%;
    max-width: 320px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 40px;
    font-size: 16px;
  }

  .linkBtGold a {
    width: 100%;
    max-width: 320px;
    display: block;
    padding-left: 20px;
    padding-right: 40px;
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
  }

  .linkBtBlack a {
    width: 100%;
    max-width: 320px;
    display: block;
    padding-left: 20px;
    padding-right: 40px;
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
  }

  .linkBtBlackArrow a {
    text-align: center;
  }


  /* header */
  header {
    padding-bottom: 15px;
    height: 60px;
  }

  .headerBox {
    height: 60px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .headerLogo img {
    height: 40px;
  }

  .headerMenu {
    display: none;
  }

  .headerTel {
    display: none;
  }

  .headerBt {
    display: none;
  }

  .headerMenuBt {
    display: block;
  }

  .menu-trigger,
  .menu-trigger span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
  }

  .menu-trigger {
    position: relative;
    width: 30px;
    height: 28px;
    background: none;
    border: none;
    appearance: none;
    cursor: pointer;
    margin-top: 5px;
  }

  .menu-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #231815;
    border-radius: 2px;
  }

  .menu-trigger span:nth-of-type(1) {
    top: 0;
  }

  .menu-trigger span:nth-of-type(2) {
    top: 13px;
  }

  .menu-trigger span:nth-of-type(3) {
    bottom: 0;
  }

  .menu-trigger.active span:nth-of-type(1) {
    transform: translateY(13px) rotate(-45deg);
  }

  .menu-trigger.active span:nth-of-type(2) {
    opacity: 0;
  }

  .menu-trigger.active span:nth-of-type(3) {
    transform: translateY(-13px) rotate(45deg);
  }

  .headerMenuSp {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    z-index: 10001;
    width: 100%;
    box-sizing: border-box;
    height: calc(100vh -60px);
    min-height: calc(100vh -60px);
    background-color: #fff;
  }

  .headerMenuInSp {
    margin-top: 15px;
    padding: 0 15px;
  }

  .headerMenuInSp ul {

  }

  .headerMenuInSp > ul > li {
    padding: 0;
    text-align: center;
  }

  .headerMenuInSp > ul > li > a {
    color: #231815;
    font-size: 17px;
    padding: 15px 0;
    font-weight: 600;
    display: block;
  }

  .headerServiceMenu {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    top: 0;
    box-shadow: none;
  }

  .headerServiceMenu a {
    padding: 0 20px 0 10px;
    margin: 10px 0;
    font-size: 12px;
  }

  .headerServiceMenu a:before {
    content: "-";
  }

  .headerTelBtSp {
    background: #F4F1E9;
    border-radius: 15px;
    margin: 15px;
    padding: 15px 15px 25px 15px;
  }

  .headerBtTitle {
    text-align: center;
    font-weight: 600;
    line-height: 2em;
  }

  .headerBtTitleBorder {
    border-top: 1px solid #231815;
    padding: 10px 0;
  }

  .headerBtSp {
    color: #FFFFFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
    flex-basis: 200px;
    padding-left: 15px;
    margin: 15px 0 30px 0;
  }

  .headerBtSp a {
    align-content: center;
    align-items: center;
    background: #9b2222;
    border-radius: 32px;
    flex: none;
    flex-direction: column;
    flex-wrap: nowrap;
    height: auto;
    justify-content: center;
    padding: 10px 60px 12px 40px;
    width: auto;
    max-width: 100%;
    transition: 0.5s;
    white-space: nowrap;
    position: relative;
    display: block;
  }

  .headerBtSp a:hover {
    opacity: 0.5;
  }

  .headerBtSp a:after {
    position: absolute;
    right: 15px;
    top: calc(50% - 3px);
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    color: #fff;
    background-color: #fff;
  }

  .headerTelSp {
    color: #231815;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5em;
    text-align: left;
    position: relative;
    width: 280px;
    margin: 0 auto;
    padding-left: 70px;
  }

  .headerTelSp:before {
    content: "";
    width: 60px;
    height: 60px;
    background-image: url(images/telIconBk.svg);
    background-size: 100%;
    position: absolute;
    left: 0;
    top: 0;
  }

  .headerTelSp span {
    color: #231815;
    font-size: 32px;
    font-weight: 600;
    font-family: "Roboto";
    font-style: italic;
    display: block;
    padding: 6px 0;
  }

  .headerTelSp a {
    text-decoration: none;
    transition: 0.5s;
  }

  .headerTelSp a:hover {
    opacity: 0.5;
  }

  /* main */
  main {
    margin-top: 60px;
    overflow: hidden;
  }

  /* works */
  .worksList > li {
    width: 100%;
    max-width: 100%;
  }

  /* column */
  .columnList > li > a {
    flex-wrap: wrap;
  }

  .columnListEachThumbnail img {
    width: 100%;
  }

  .columnListEachBox {
    padding-top: 20px;
  }


  /* cta */
  .cta {
    padding: 40px 10px;
    background-size: 100vh;
    position: relative;
    z-index: 100;
  }

  .ctaEachWebBox {
    padding-left: 5px;
    padding-right: 5px;
  }

  .ctaEachWebBox h2 {
    font-size: 24px;
  }

  .ctaEachWebBt {
    max-width: 320px;
    margin: 0 auto;
  }


  .ctaEachTel {
    width: 280px;
    padding-left: 60px;
  }

  .ctaEachTel:before {
    width: 50px;
    height: 50px;
    top: 3px;
  }

  .ctaEachTelBox {
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    padding-left: 5px;
    padding-right: 5px;
    margin-top: 30px;
  }

  .ctaEachTel span {
    font-size: 32px;
  }


  /* footer */
  footer {
    padding-top: 50px;
    padding-left: 25px;
    padding-right: 25px;
    position: relative;
    z-index: 100;
  }

  .footerAddressBox {
    width: 100%;
    margin-bottom: 50px;
  }

  .footerMenu {
    width: 100%;
  }

  .footerMenuEachBox {
    width: 100%;
  }

  .footerMenuTitle {
    font-size: 14px;
    padding-bottom: 5px;
  }

  .footerMenuList li a {
    font-size: 14px;
  }

  .footerMenuInList {
    margin-bottom: 10px;
  }

  .footerMenuInList li {
    padding-bottom: 2.5px;
  }

  .footerMenuInList li a {
    font-size: 12px;
  }

  .footerLogoBox {
    width: 100%;
    margin-bottom: 20px;
  }

  .copyright {
    text-align: left;
    left: 0;
    right: auto;
  }


  /* animation */
  .scroll_leftup {
    transition: 0.8s ease-in-out;
    transform: translateY(30px);
    opacity: 0;
  }

  .scroll_leftup.on {
    transform: translateY(0);
    opacity: 1.0;
  }

  .scroll_rightup {
    transition: 0.8s ease-in-out;
    transform: translateY(30px);
    opacity: 0;
  }

  .scroll_tightup.on {
    transform: translateY(0);
    opacity: 1.0;
  }
}

@media all and (min-width: 1025px) {
  /* PC */
  .sponly {
    display: none;
  }

  .ml100 {
    margin-left: 100px !important;
  }

  .ml200 {
    margin-left: 200px !important;
  }

  .mr100 {
    margin-right: 100px !important;
  }

  .mr200 {
    margin-right: 200px !important;
  }

  #headerMenuBt {
    display: none;
  }

  .headerMenuSp {
    display: none;
  }
}