@charset "UTF-8";
/* ---------------------------------------------------------
config
--------------------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@900&family=Noto+Sans+JP:wght@300;400;500;600;700&family=Noto+Serif+JP:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@900&family=Noto+Serif+JP:wght@400;500;600;700&display=swap");
/* ---------------------------------------------------------
A Modern CSS Reset
--------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
dl,
dt,
dd,
ol,
ul,
li,
td,
th,
figure,
input,
select,
button,
optgroup,
textarea {
  margin: 0;
  padding: 0;
}

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

ul[role=list],
ol[role=list] {
  list-style: none;
}

li {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img,
picture {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@media screen and (max-width: 749px) {
  [data-sc-pc] {
    display: none !important;
  }
}

@media print, screen and (min-width: 750px) {
  [data-sc-sp] {
    display: none !important;
  }
}

/* ---------------------------------------------------------
style
--------------------------------------------------------- */
html {
  font-size: 62.5%; /* 通常時 1rem = 10px */
}

@media (max-width: 1200px) {
  html {
    font-size: 50%; /* さらに小さなデバイスでは 1rem = 6.4px */
  }
}
@media (max-width: 900px) {
  html {
    font-size: 45%; /* さらに小さなデバイスでは 1rem = 6.4px */
  }
}
@media (max-width: 750px) {
  html {
    font-size: 1.8vw; /* さらに小さなデバイスでは 1rem = 6.4px */
  }
}
body {
  font-family: "DM Sans", "Noto Sans JP", sans-serif;
  line-height: 2;
  color: #000;
  font-size: 2rem;
  letter-spacing: 0.05em;
  word-break: break-all;
}

img {
  border-style: none;
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  object-fit: cover;
}

a,
button {
  outline: 0;
  text-decoration: none;
  color: inherit;
  background-color: transparent;
  transition: opacity 0.3s;
  cursor: pointer;
}
a:hover,
button:hover {
  opacity: 0.6;
}

a.no_opacity:hover {
  opacity: 1;
}

/* ---------------------------------------------------------

  --------------------------------------------------------- */
.clearText {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

.row {
  display: flex;
  justify-content: space-between;
  /* align-items: center; */
}
@media screen and (max-width: 749px) {
  .row {
    display: block;
  }
}

.row > * {
  flex: 1;
}

.w1280 {
  /* width: 100%; */
  max-width: 1320px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.w1000 {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.p404 {
  text-align: center;
  margin: 2em 0;
}
.p404 a {
  margin-top: 1em;
  display: block;
}

body {
  overflow-x: hidden;
  position: relative;
}

/* ---------------------------------------------------------
ローディング　アニメーション
--------------------------------------------------------- */
#loading {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
}

.spinner {
  width: 100px;
  height: 100px;
  margin: 200px auto;
  background-color: #FFD200;
  border-radius: 100%;
  animation: sk-scaleout 1s infinite ease-in-out;
}

/* ローディングアニメーション */
@keyframes sk-scaleout {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
.loaded {
  opacity: 0;
  visibility: hidden;
}

/* ---------------------------------------------------------
ヘッダー
--------------------------------------------------------- */
header.pcHeader {
  position: relative;
  z-index: 999;
}
header.pcHeader .yam {
  position: absolute;
  width: 22rem;
  height: auto;
  left: calc(50% - 11rem);
  top: 8rem;
}

header.pcHeader .yam.on {
  position: fixed;
  width: 16rem;
  height: auto;
  left: 2rem;
  top: 3rem;
}

h1.logo {
  position: absolute;
  top: 3rem;
  left: calc(50% - 12rem);
  width: 24rem;
}

.headBtn {
  position: absolute;
  top: 8rem;
  left: 4rem;
  display: flex;
  z-index: 998;
}
@media screen and (max-width: 749px) {
  .headBtn {
    top: 4.5rem;
    left: 1rem;
  }
}
.headBtn a {
  display: none;
  position: relative;
  height: 8rem;
  width: 8rem;
  background: #F9F9F9;
  margin: 0 1rem;
  border-radius: 4rem;
}
.headBtn a:before {
  position: absolute;
  content: "";
  top: 30%;
  left: 30%;
  width: 40%;
  height: 40%;
  z-index: 100;
}
.headBtn a.youtube:before {
  background: url(../images/head_youtube.png) no-repeat center center/contain;
}
.headBtn a.inst:before {
  background: url(../images/head_insta.png) no-repeat center center/contain;
}
.headBtn a:hover {
  opacity: 1;
}
.headBtn a:hover:before {
  top: 25%;
}

/* ---------------------------------------------------------
ナビ
展開まわり
--------------------------------------------------------- */
.navToggle {
  position: fixed;
  top: 5.5rem;
  right: 3rem;
  z-index: 1000;
  width: 8rem;
  height: 8rem;
  cursor: pointer;
}
.navToggle span {
  position: absolute;
  top: 51%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  width: 7rem;
  height: 0.6rem;
  background: #000;
  border-radius: 1em;
  transition: transform 0.3s, opacity 0.3s;
  -webkit-transition: transform 0.3s, opacity 0.3s;
}
.navToggle span.bar01 {
  top: 23%;
}
.navToggle span.bar02 {
  opacity: 1; /* 必ず表示させる */
}
.navToggle span.bar03 {
  top: 81%;
}
.navToggle.active .bar01 {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
}
.navToggle.active .bar02 {
  opacity: 0;
}
.navToggle.active .bar03 {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
}

.navToggle.on {
  top: 2rem;
}

.navWrap {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #FFF1B2;
  z-index: 999;
}
.navWrap .centering {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.navWrap .centering .l {
  width: 50%;
}
.navWrap .centering .l img {
  width: 46%;
  margin: 0 auto;
}
.navWrap .centering .r {
  flex: 1;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 749px) {
  .navWrap .centering .r {
    padding-left: 4rem;
  }
}
.navWrap .about,
.navWrap .service {
  flex: 1;
}
.navWrap .about p,
.navWrap .service p {
  font-size: 5.4rem;
  font-weight: bolder;
  letter-spacing: 0.55rem;
}
.navWrap .about a,
.navWrap .service a {
  font-size: 12px;
  display: block;
  line-height: 1.3;
}
.navWrap .about a span,
.navWrap .service a span {
  font-size: 32px;
  display: block;
  margin-top: 5rem;
  font-weight: 900;
}
@media screen and (max-width: 749px) {
  .navWrap .about a span,
  .navWrap .service a span {
    font-size: 4.5vw;
  }
}
.navWrap .about {
  margin-top: 0;
}
.navWrap .about a span {
  font-size: 20px;
}
@media screen and (max-width: 749px) {
  .navWrap .about a span {
    font-size: 4.5vw;
  }
}

/* ---------------------------------------------------------

右下の問合せボタン
--------------------------------------------------------- */
.contactBtn_a {
  position: relative;
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 18rem;
  z-index: 995;
  animation: rotate 10s linear infinite;
}
@media screen and (max-width: 749px) {
  .contactBtn_a {
    width: 10rem;
  }
}
.contactBtn_a:before {
  position: absolute;
  content: "";
  top: 14%;
  left: 14%;
  width: 70%;
  height: 70%;
  background: url(../images/btn_contact01.png) no-repeat center/contain;
  animation: rotatere 10s linear infinite;
}

/* 回転アニメーション */
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg); /* 逆回転 */
  }
}
@keyframes rotatere {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
/* ---------------------------------------------------------
トップへ戻る
--------------------------------------------------------- */
#page_top {
  width: 5rem;
  height: 5rem;
  position: fixed;
  left: 0;
  bottom: 0;
  background: #e1e1e1;
  opacity: 0.6;
}

#page_top a {
  position: relative;
  display: block;
  width: 5rem;
  height: 5rem;
  text-decoration: none;
}

#page_top a::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f106";
  font-size: 2.8rem;
  color: #fff;
  position: absolute;
  width: 2.5rem;
  height: 2.5rem;
  top: -2.5rem;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

/* ---------------------------------------------------------
フッター
--------------------------------------------------------- */
.wave {
  background: url(../images/wave.svg) no-repeat center/contain;
  height: 1.8rem;
  background-repeat: repeat-x;
  transform: rotate(180deg);
  margin-bottom: -1.8rem;
  margin-top: 17rem;
}

footer {
  background-color: #F9F9F9;
  font-size: 1.8rem;
  padding-bottom: 15rem;
}
@media screen and (max-width: 749px) {
  footer {
    padding-bottom: 7rem;
  }
}
footer .grid {
  display: grid;
  grid-template-columns: 3fr 1fr 1fr;
  grid-template-rows: auto 1fr;
  padding: 2rem;
  max-width: 165rem;
  margin: 0 auto;
}
@media screen and (max-width: 749px) {
  footer .grid {
    grid-template-columns: 1fr 1fr auto;
  }
}
footer .yam {
  margin-top: 11rem;
  max-width: 34rem;
}
@media screen and (max-width: 749px) {
  footer .yam {
    max-width: 50%;
    grid-column: 1/4;
  }
}
footer .copy {
  margin-top: 3rem;
  font-size: 1.5rem;
  margin-left: 5rem;
}
footer .service {
  display: flex;
  flex-direction: column;
  margin-top: 18rem;
  font-weight: 600;
}
@media screen and (max-width: 749px) {
  footer .service {
    margin-top: 5rem;
    margin-left: 3.6rem;
  }
}
footer .service p {
  font-size: 0.8em;
}
footer .service a {
  margin-top: 1em;
}
footer .about {
  display: flex;
  flex-direction: column;
  margin-top: 18rem;
  font-weight: 600;
}
@media screen and (max-width: 749px) {
  footer .about {
    margin-top: 5rem;
  }
}
footer .about a {
  margin-top: 1em;
}
footer .icon {
  grid-column: 1/4;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-left: 1rem;
  margin-top: 2rem;
}
footer .icon a {
  display: block;
  width: 5rem;
  margin-left: 4rem;
}

html {
  scroll-behavior: smooth;
}

/* ---------------------------------------------------------
TOPだけ色変え
--------------------------------------------------------- */
.page-id-231,
.archive,
.home {
  background-color: #F9F9F9;
}

@media screen and (max-width: 749px) {
  .home header.pcHeader .yam {
    width: 50vw;
    height: auto;
    left: calc(50% - 25vw);
    top: 11rem;
  }
}
.home header.pcHeader .yam.on {
  position: fixed;
  width: 16rem;
  height: auto;
  left: 2rem;
  top: 4rem;
}
@media screen and (max-width: 749px) {
  .home header.pcHeader .yam.on {
    top: 3rem;
  }
}
.home .navToggle {
  top: 9rem;
}
@media screen and (max-width: 749px) {
  .home .navToggle {
    top: 10rem;
  }
}
.home .navToggle.on {
  top: 2rem;
}
.home .wave {
  transform: rotate(180deg);
  margin-bottom: 0;
  margin-top: 0;
}
.home .wave.Sblog {
  transform: rotate(0);
}
@media screen and (max-width: 749px) {
  .home .headBtn {
    top: 6.5rem;
  }
}
.home .headBtn a {
  background: #fff;
  display: block;
}

.archive footer {
  background-color: #fff;
}
.archive .wave {
  transform: rotate(0);
  margin-bottom: 0;
}
@media screen and (max-width: 749px) {
  .archive .headBtn {
    top: 6.5rem;
  }
}
.archive .headBtn a {
  background: #fff;
}

body:not(.home) .pcHeader {
  height: 23rem;
}

/* ---------------------------------------------------------
共通パーツ
--------------------------------------------------------- */
.anchorTOP {
  position: relative;
  padding-top: 5rem; /* 5rem分の余白 */
  margin-top: -5rem; /* 上方向にずらす */
}

.npH2Wrap {
  display: flex;
  justify-content: center;
}
.npH2Wrap h2 {
  position: relative;
  display: inline-block;
  font-size: 17rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 749px) {
  .npH2Wrap h2 {
    font-size: 15vw;
  }
}
@media screen and (max-width: 749px) {
  .npH2Wrap h2 span {
    display: block;
    font-size: 0.2em;
    margin-top: 1em;
  }
}
@media print, screen and (min-width: 750px) {
  .npH2Wrap h2 span {
    position: absolute;
    top: calc(50% - 3.3em);
    left: -4.5rem;
    font-size: 1.9rem;
    letter-spacing: 0.1em;
    font-weight: bold;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }
}

/* ---------------------------------------------------------
 H2
 テキストぴょんぴょん
--------------------------------------------------------- */
/* ---------------------------------------------------------

--------------------------------------------------------- */
.secMV {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 6rem;
  padding-bottom: 10rem;
}
@media screen and (max-width: 749px) {
  .secMV {
    padding-top: 10rem;
  }
}
.secMV .yellowBox {
  position: relative;
  text-align: center;
  margin: 0 auto;
  padding: 0 14%;
  width: calc(100% - 11em);
  aspect-ratio: 2/1.01;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 44rem;
  background-color: #FFD200;
}
@media screen and (max-width: 749px) {
  .secMV .yellowBox {
    width: auto;
    aspect-ratio: 1/1.31;
    border-radius: 29vw;
    padding: 0 14%;
    align-items: flex-end;
    padding-bottom: 6rem;
  }
}
.secMV img.yam {
  position: absolute;
  top: -2.6rem;
  height: 7.5rem;
  width: auto;
}
.secMV p.l,
.secMV p.r {
  position: absolute;
  top: calc(50% - 11em);
  font-size: 1.7rem;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-weight: 600;
}
.secMV p.l {
  left: 3rem;
}
.secMV p.r {
  right: 3rem;
}
.secMV ul.mvnav {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 1.8rem;
  margin-top: 1.5em;
}
@media screen and (max-width: 749px) {
  .secMV ul.mvnav {
    flex-direction: column;
  }
}
.secMV ul.mvnav li {
  margin: 0 1.9em;
}

/* ---------------------------------------------------------

スライダーセクション
--------------------------------------------------------- */
section.bnrArea {
  padding: 0 0 13rem 0;
}
section.bnrArea > div {
  display: flex;
}
section.bnrArea > div a {
  display: block;
  flex: 0 0 50%; /* アイテムの幅をコンテナの50%に設定 */
}

.slide-items img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slide-items .contents {
  padding: 0rem 2.5vw;
}
.slide-items .contents p {
  text-align: center;
  padding-top: 2em;
}
@media screen and (max-width: 749px) {
  .slide-items .contents p {
    text-align: justify;
    padding-top: 2em;
    line-height: 1.5;
  }
}

section.bnrArea a {
  overflow: hidden;
}
section.bnrArea a img {
  transition: all 0.5s ease-in-out;
}

section.bnrArea a:hover img {
  transform: scale(1.1);
}

/* ---------------------------------------------------------

About　プロジェクト
横スクロールセクション
--------------------------------------------------------- */
.secAbout-Project {
  background-color: #FFD200;
  padding-top: 18rem;
  padding-bottom: 16rem;
}
@media screen and (max-width: 749px) {
  .secAbout-Project {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
}
.secAbout-Project .aboutbox {
  position: relative;
  padding: 0 4rem;
  max-width: 89rem;
  margin: 0 auto;
}
.secAbout-Project .aboutbox .npH2Wrap {
  background: url(../images/aboutbg.png) no-repeat top center/contain;
  height: 28rem;
}
@media screen and (max-width: 750px) {
  .secAbout-Project .aboutbox .npH2Wrap {
    background: url(../images/aboutbg_sp.png) no-repeat top center/contain;
  }
}
.secAbout-Project .aboutbox .npH2Wrap h2 {
  line-height: 1.4;
  font-size: 18rem;
  margin-left: 0.2em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 749px) {
  .secAbout-Project .aboutbox .npH2Wrap h2 {
    font-size: 16vw;
    padding: 7.5vw 0;
    margin-top: -4.5rem;
    margin-left: 0;
  }
}
.secAbout-Project .aboutbox .npH2Wrap h2 span {
  top: calc(50% - 4.1em);
  font-size: 1.65rem;
  letter-spacing: 0.1em !important;
}
@media screen and (max-width: 749px) {
  .secAbout-Project .aboutbox .npH2Wrap h2 span {
    margin-top: 0;
    padding-bottom: 1em;
    margin-top: -1.4rem;
  }
}
.secAbout-Project .aboutbox h3 {
  font-size: 4.7rem;
  margin-top: 1em;
  line-height: 1.5;
  margin-bottom: 0.4em;
}
.secAbout-Project .aboutbox h3 span {
  font-size: 6.8rem;
}
@media screen and (max-width: 749px) {
  .secAbout-Project .aboutbox h3 {
    text-align: center;
    font-size: 6.5vw;
  }
  .secAbout-Project .aboutbox h3 span {
    font-size: 10.5vw;
    line-height: 1.4;
  }
}
.secAbout-Project .aboutbox p {
  font-size: 1.7rem;
  line-height: 2.34;
  margin-bottom: 1em;
}
@media screen and (max-width: 749px) {
  .secAbout-Project .aboutbox p {
    font-size: 2.2rem;
  }
}
.secAbout-Project .aboutbox .yattemiyo {
  position: absolute;
  bottom: 3rem;
  right: -9rem;
  width: 49rem;
  height: auto;
  z-index: 1;
}
@media screen and (max-width: 749px) {
  .secAbout-Project .aboutbox .yattemiyo {
    position: static;
    width: 80%;
    margin: 2em auto;
  }
}

/* ---------------------------------------------------------
サービス
サービスリストのスライダー
--------------------------------------------------------- */
.secService {
  padding-top: 28rem;
  padding-bottom: 10rem;
  background: #fff;
}
@media screen and (max-width: 749px) {
  .secService {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
}

.slide-items-service-v2 {
  margin-bottom: 17rem;
  margin-top: 10rem;
  padding-bottom: 3rem;
}
.slide-items-service-v2 .contents {
  padding: 7rem 4rem;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease-in-out; /* スムーズなトランジション */
  transform: translateY(7rem); /* Default lower position */
  opacity: 0.5;
  transition: transform 0.45s cubic-bezier(0.65, 1.8, 0.5, 0.8) 0s;
}
@media screen and (max-width: 749px) {
  .slide-items-service-v2 .contents {
    padding: 7rem 1.9rem;
  }
}
.slide-items-service-v2 .contents a {
  opacity: 1;
  display: block;
  pointer-events: none;
}
.slide-items-service-v2 .slick-center {
  transform: translateY(0); /* Raised position */
  opacity: 1;
}
.slide-items-service-v2 .slick-center img {
  transition: transform 0.45s cubic-bezier(0.65, 1.8, 0.5, 0.8) 0s;
}
.slide-items-service-v2 .slick-center a {
  pointer-events: auto;
}
.slide-items-service-v2 .slick-center a:hover img {
  transform: scale(1.05);
}

.slide-items-service {
  overflow: hidden;
  margin: 0 auto;
  margin-bottom: 17rem;
  margin-top: 10rem;
  padding-bottom: 3rem;
}
.slide-items-service .slick-list.draggable {
  overflow: visible;
  height: auto;
  padding-top: 1vw !important;
}
@media screen and (max-width: 749px) {
  .slide-items-service .slick-list.draggable {
    padding-top: 2vw !important;
  }
}
.slide-items-service .contents {
  margin: 0 4rem;
  width: 40rem;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease-in-out; /* スムーズなトランジション */
  transform: translateY(7rem); /* Default lower position */
  opacity: 0.5;
  transition: transform 0.45s cubic-bezier(0.65, 1.8, 0.5, 0.8) 0s;
}
@media screen and (max-width: 749px) {
  .slide-items-service .contents {
    margin: 0 2rem;
  }
}
.slide-items-service .slick-center {
  transform: translateY(0); /* Raised position */
  opacity: 1;
}
.slide-items-service .slick-center img {
  transition: transform 0.45s cubic-bezier(0.65, 1.8, 0.5, 0.8) 0s;
}
.slide-items-service .slick-center a:hover img {
  transform: scale(1.05);
}
.slide-items-service .contents a {
  opacity: 1;
  display: block;
}
@media screen and (max-width: 749px) {
  .slide-items-service .contents a {
    width: 37rem;
    height: 47rem;
  }
}

.slick-prev {
  left: calc(50% - 11vw);
  position: absolute;
  top: 46%;
  height: 3rem;
  width: 2rem;
  background: url(../images/arrow.png) no-repeat top center/cover;
  border: none;
  z-index: 10;
  color: rgba(255, 0, 0, 0);
  transform: rotate(180deg);
  color: rgba(255, 0, 0, 0);
}
@media screen and (max-width: 2000px) {
  .slick-prev {
    left: calc(50% - 13vw);
  }
}
@media screen and (max-width: 1750px) {
  .slick-prev {
    left: calc(50% - 15vw);
  }
}
@media screen and (max-width: 1500px) {
  .slick-prev {
    left: calc(50% - 17vw);
  }
}
@media screen and (max-width: 1300px) {
  .slick-prev {
    left: calc(50% - 20.5vw);
  }
}
@media screen and (max-width: 749px) {
  .slick-prev {
    left: calc(50% - 22rem);
  }
}

.slick-next {
  right: calc(50% - 11vw);
  position: absolute;
  top: 46%;
  height: 3rem;
  width: 2rem;
  background: url(../images/arrow.png) no-repeat top center/cover;
  border: none;
  color: rgba(255, 0, 0, 0);
}
@media screen and (max-width: 2000px) {
  .slick-next {
    right: calc(50% - 13vw);
  }
}
@media screen and (max-width: 1750px) {
  .slick-next {
    right: calc(50% - 15vw);
  }
}
@media screen and (max-width: 1500px) {
  .slick-next {
    right: calc(50% - 17vw);
  }
}
@media screen and (max-width: 1300px) {
  .slick-next {
    right: calc(50% - 20.5vw);
  }
}
@media screen and (max-width: 749px) {
  .slick-next {
    right: calc(50% - 22rem);
  }
}

.slick-dots {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: -3.5rem;
}
.slick-dots li button:before {
  content: ""; /* テキストを空にする */
  display: none;
}
.slick-dots li {
  margin: 0 1rem; /* ドット間の間隔を調整 */
}
.slick-dots li button {
  font-size: 0;
  width: 1.5rem; /* 画像の幅を設定 */
  height: 1.5rem; /* 画像の高さを設定 */
  background: url("../images/dot_1.png") no-repeat center center; /* ドットの背景に画像を設定 */
  background-size: cover; /* 画像を全体に表示 */
  border: none; /* ボーダーを削除 */
  padding: 0; /* パディングを削除 */
}
.slick-dots li.slick-active button {
  background: url("../images/dot_1a.png") no-repeat center center; /* アクティブな画像 */
  background-size: cover;
}
.slick-dots li:nth-child(2) button {
  background-image: url("../images/dot_2.png");
}
.slick-dots li:nth-child(3) button {
  background-image: url("../images/dot_3.png");
}
.slick-dots li:nth-child(4) button {
  background-image: url("../images/dot_4.png");
}
.slick-dots li:nth-child(5) button {
  background-image: url("../images/dot_5.png");
}
.slick-dots li.slick-active:nth-child(2) button {
  background-image: url("../images/dot_2a.png");
}
.slick-dots li.slick-active:nth-child(3) button {
  background-image: url("../images/dot_3a.png");
}
.slick-dots li.slick-active:nth-child(4) button {
  background-image: url("../images/dot_4a.png");
}
.slick-dots li.slick-active:nth-child(5) button {
  background-image: url("../images/dot_5a.png");
}

/* ---------------------------------------------------------

TOPICS
記事リスト出力
--------------------------------------------------------- */
.topicssort {
  display: flex;
  margin-top: 11rem;
  justify-content: center;
  font-weight: bold;
}
@media screen and (max-width: 749px) {
  .topicssort {
    flex-wrap: wrap;
    margin-top: 8rem;
  }
}
.topicssort li {
  margin: 0 3.5rem;
}
@media screen and (max-width: 900px) {
  .topicssort li {
    margin: 0 1.5rem;
    margin-bottom: 2rem;
  }
}

.archive .topicssort {
  margin-top: 5rem;
}

.secTopics {
  position: relative;
  padding: 0;
}
.secTopics:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 8.3rem;
  background: #fff;
}
@media screen and (max-width: 749px) {
  .secTopics:before {
    top: -4.27rem;
  }
}

/* ---------------------------------------------------------
TOP アーカイブ　カテゴリー　共通　スタイル
--------------------------------------------------------- */
.topics-listWrap {
  max-width: 165rem;
  margin: 0 auto;
  padding: 0 4rem;
  padding-top: 8rem;
}
.topics-listWrap ul.topics-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4rem;
  padding: 2rem;
}
@media screen and (max-width: 749px) {
  .topics-listWrap ul.topics-list {
    grid-template-columns: 1fr;
    padding: 0;
  }
}
.topics-listWrap li.topics-item {
  margin-bottom: 5rem;
}
.topics-listWrap .topics-item a .topics-thumbnail {
  overflow: hidden;
}
.topics-listWrap .topics-item a .topics-thumbnail img {
  transition: all 0.5s ease-in-out;
  aspect-ratio: 1;
}
.topics-listWrap .topics-item a:hover .topics-thumbnail img {
  transform: scale(1.1);
}
.topics-listWrap .topics-date {
  font-weight: bolder;
  margin-top: 0.5em;
  font-size: 1.4rem;
}
.topics-listWrap .flx {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 1em;
  margin-bottom: 1em;
}
.topics-listWrap .ttlWrap {
  width: 70%;
}
.topics-listWrap .topics-title {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.8;
  text-align: justify;
  letter-spacing: 0.05em;
  font-feature-settings: "palt", "kern";
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  height: 3.5em;
}
@media screen and (max-width: 749px) {
  .topics-listWrap .topics-title {
    font-size: 1.5rem;
    line-height: 1.4;
  }
}
.topics-listWrap .topics-cate {
  width: 30%;
  text-align: end;
}
.topics-listWrap .topics-cate .term-name {
  padding: 0 0.7em;
  color: #fff;
  font-weight: bold;
  font-size: 1.3rem;
  display: inline-block;
}
.topics-listWrap .topics-cate .term-promotion {
  background: #F25F7C;
}
.topics-listWrap .topics-cate .term-design {
  background: #0093DC;
}
.topics-listWrap .topics-cate .term-web {
  background: #7BBA1D;
}
.topics-listWrap .topics-cate .term-movie {
  background: #E65514;
}
.topics-listWrap .topics-cate .term-event {
  background: #FF9613;
}
.topics-listWrap .topics-cate .term-info {
  background: #FDC000;
}
.topics-listWrap .topics-cate .term-pickup {
  position: absolute;
  top: -18px;
  left: 9rem;
  font-size: 0;
}
@media screen and (max-width: 749px) {
  .topics-listWrap .topics-cate .term-pickup {
    top: -3vw;
    left: -5vw;
  }
}
.topics-listWrap .topics-cate .term-pickup:before {
  position: absolute;
  content: "";
  top: -4rem;
  left: -14rem;
  width: 21rem;
  height: 17rem;
  background: url(../images/pickup.png) no-repeat center/contain;
}
@media screen and (max-width: 749px) {
  .topics-listWrap .topics-cate .term-pickup:before {
    left: 0;
    width: 23vw;
    height: 20vw;
  }
}
.topics-listWrap .highlighted {
  position: relative;
  grid-column: 1/-1;
}
.topics-listWrap .highlighted a .topics-thumbnail img {
  aspect-ratio: 3/1.5;
}
@media screen and (max-width: 749px) {
  .topics-listWrap .highlighted a .topics-thumbnail img {
    aspect-ratio: 1;
  }
}
.topics-listWrap a.btn_motto {
  background: url(../images/topiBtn.png) no-repeat center center/contain;
  font-weight: bold;
  padding: 1em;
  width: 15em;
  display: block;
  text-align: center;
  margin: 3.5em auto;
  font-size: 2.2rem;
  /* margin-top: 3.5em; */
  /* margin-bottom: 4em; */
}

.topicssort li.active a {
  position: relative;
  font-weight: bold;
  color: #FFD200;
}
.topicssort li.active a:before {
  position: absolute;
  content: "";
  bottom: -1rem;
  left: 0;
  width: 100%;
  height: 3px;
  background: #FFD200;
}

.topicssort .term-promotion.active a {
  color: #F25F7C;
}
.topicssort .term-promotion.active a:before {
  background: #F25F7C;
}

.topicssort .term-design.active a {
  color: #0093DC;
}
.topicssort .term-design.active a:before {
  background: #0093DC;
}

.topicssort .term-web.active a {
  color: #7BBA1D;
}
.topicssort .term-web.active a:before {
  background: #7BBA1D;
}

.topicssort .term-movie.active a {
  color: #E65514;
}
.topicssort .term-movie.active a:before {
  background: #E65514;
}

.topicssort .term-event.active a {
  color: #FF9613;
}
.topicssort .term-event.active a:before {
  background: #FF9613;
}

/* ---------------------------------------------------------
テキストスクロール
--------------------------------------------------------- */
.tesu {
  margin-top: 3rem;
}
.tesu .sec1 {
  width: 100%;
  display: flex;
  overflow: hidden;
}
.tesu .sec1__title--first,
.tesu .sec1__title--second {
  flex-shrink: 0;
  width: auto;
  height: auto;
  display: inline-block;
  text-wrap: nowrap;
  white-space: nowrap;
}
.tesu .sec1__title--first {
  animation: anim--first 30s infinite linear 0.1s both;
}
@media screen and (max-width: 749px) {
  .tesu .sec1__title--first {
    animation: anim--first 60s infinite linear 0.1s both;
  }
}
.tesu .sec1__title--second {
  animation: anim--second 30s infinite linear 0.1s both;
}
@media screen and (max-width: 749px) {
  .tesu .sec1__title--second {
    animation: anim--second 60s infinite linear 0.1s both;
  }
}
.tesu a {
  margin-right: 0.8em;
  font-size: 2.4rem;
  font-weight: 900;
}
.tesu span {
  margin-right: 1em;
}
.tesu .term-promotion {
  color: #F25F7C;
}
.tesu .term-design {
  color: #0093DC;
}
.tesu .term-web {
  color: #7BBA1D;
}
.tesu .term-movie {
  color: #E65514;
}
.tesu .term-event {
  color: #FF9613;
}
.tesu .term-info {
  color: #FDC000;
}

@keyframes anim--first {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes anim--second {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
/* マウスオーバー時にアニメーションを停止 */
.sec1:hover .sec1__title--first,
.sec1:hover .sec1__title--second {
  animation-play-state: paused; /* アニメーション停止 */
}

/* ---------------------------------------------------------
テキストスクロール
--------------------------------------------------------- */
.scrolling-text-container {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  box-sizing: border-box;
  margin-top: 1.3em;
  padding-bottom: 2em;
  font-size: 2.5rem;
}

.scrolling-text {
  display: inline-block;
  white-space: nowrap;
  position: absolute;
  font-weight: 900;
}

.scrolling-text span {
  margin-right: 1em;
}

.color .ki {
  color: #FF9613;
}
.color .ao {
  color: #0093DC;
}
.color .mi {
  color: #7BBA1D;
}
.color .aka {
  color: #E65514;
}

.scrolling-text-container div > span {
  margin-right: 0.8em;
}
.scrolling-text-container .term-promotion {
  color: #F25F7C;
}
.scrolling-text-container .term-design {
  color: #0093DC;
}
.scrolling-text-container .term-web {
  color: #7BBA1D;
}
.scrolling-text-container .term-movie {
  color: #E65514;
}
.scrolling-text-container .term-event {
  color: #FF9613;
}
.scrolling-text-container .term-info {
  color: #FDC000;
}

/* ---------------------------------------------------------
下層ページ  ベース
--------------------------------------------------------- */
.inner {
  max-width: 100rem;
  margin: 0 auto;
  padding: 0 2rem;
  margin-bottom: 10rem;
}

.inner__h2 {
  text-align: center;
  font-size: 6rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.1em;
  margin-bottom: 1em;
}
@media screen and (max-width: 749px) {
  .inner__h2 {
    font-size: 11vw;
  }
}
.inner__h2 span {
  display: block;
  font-size: 0.2em;
  letter-spacing: 0.1em;
}

/* ---------------------------------------------------------
コンタクト
--------------------------------------------------------- */
article.contact p.lead {
  text-align: center;
  margin-bottom: 5em;
  font-size: 1.5rem;
}
article.contact p.pl__a {
  font-size: 1.5rem;
  text-align: center;
  margin-top: 5em;
  margin-bottom: 2em;
}
article.contact p.pl__a a {
  text-decoration: underline;
}

.contactDL dl {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  font-size: 1.5rem;
  max-width: 70rem;
  margin: 0 auto;
}
@media screen and (max-width: 749px) {
  .contactDL dl {
    display: block;
  }
}
.contactDL dt {
  width: 30%;
  text-align: left;
  margin-top: 0.7em;
}
@media screen and (max-width: 749px) {
  .contactDL dt {
    width: 100%;
    margin-bottom: 0.6em;
  }
}
.contactDL dt span {
  background: #ff9613;
  margin-left: 0.5rem;
  padding: 3px 6px;
  font-size: 0.8em;
  color: #fff;
}
.contactDL dd {
  width: 70%;
  margin-bottom: 3rem;
}
@media screen and (max-width: 749px) {
  .contactDL dd {
    width: 100%;
  }
}
.contactDL input {
  width: 100%;
  background: #f9f9f9;
  border: none;
  padding: 0.7em 1.5em;
}
.contactDL textarea.wpcf7-form-control.wpcf7-textarea {
  width: 100%;
  background: #f9f9f9;
  border: none;
  padding: 0.7em 1.5em;
}
.contactDL input.wpcf7-form-control.wpcf7-submit.has-spinner {
  background: #ff9613;
  max-width: 40rem;
  margin: 0 auto;
  display: block;
  color: #fff;
  font-weight: 800;
}

/* ---------------------------------------------------------
プライバシーポリシー
--------------------------------------------------------- */
.privacy h3 {
  font-size: 2rem;
  margin-top: 2em;
}
.privacy p {
  font-size: 1.5rem;
  margin-bottom: 1em;
}
.privacy p a {
  text-decoration: underline;
}
.privacy li {
  list-style: disc;
  font-size: 1.5rem;
  margin-left: 3em;
}
.privacy .adbox {
  font-size: 1.6rem;
  background: #f9f9f9;
  padding: 2em;
}

/* ---------------------------------------------------------
会社概要
--------------------------------------------------------- */
.company dl {
  display: flex;
  flex-wrap: wrap;
  max-width: 76rem;
  padding: 0 4rem;
  margin: 0 auto;
}
.company dt {
  width: 30%;
  font-weight: bold;
  padding-right: 3em;
}
.company dd {
  width: 70%;
  margin-bottom: 1em;
}

/* --------------------------------------------------------

エディターで対応　デフォルト対応

--------------------------------------------------------- */
/* -------ページ囲い-------- */
.pageEditor {
  background: #eeeeee;
  max-width: 100rem;
  margin: 0 auto;
}

/* -------リード文-------- */
.block__lead {
  margin-bottom: 10em;
}
.block__lead p {
  color: rosybrown;
}
.block__lead p:nth-of-type(1) {
  color: aqua;
}
.block__lead h2 {
  color: #ff9613;
  font-size: 2em;
}

/* -------２列の四角いブロックリスト-------- */
.block__list01 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.block__list01 li {
  border: 1px solid;
}

/* ------成功事例-------- */
.block__case {
  background: #feeaea;
}
.block__case .dltopWrap {
  display: flex;
  justify-content: space-between;
}
.block__case dl {
  display: flex;
  flex: 1;
}
.block__case dt {
  font-weight: bold;
  width: 7em;
}
.block__case dd {
  flex: 1;
}
.block__case .btm_dl {
  border-top: 1px solid;
}

/* ------料金プラン　横長-------- */
.block_price div {
  display: flex;
  border: 1px solid;
  max-width: 80%;
  margin: 3rem auto;
}
.block_price div p:nth-of-type(1) {
  background: #feeaea;
  width: 6em;
}
.block_price div p:nth-of-type(2) {
  flex: 1;
}

/* ------よくある質問-------- */
.block_toggle {
  background: red;
  padding: 1em;
}

/* --------------------------------------------------------


--------------------------------------------------------- */
p.hankaku {
  text-indent: -0.5em;
}

/* ---------------------------------------------------------
記事詳細
--------------------------------------------------------- */
.postPage span.date {
  font-size: 1.2rem;
}
.postPage h2 {
  margin-top: 0.5em;
  font-size: 4rem;
  letter-spacing: 0.05em;
  font-feature-settings: "palt", "kern";
  line-height: 1.6;
  text-align: justify;
}
.postPage p {
  margin-bottom: 3em;
}
.postPage hr {
  margin-top: 10rem;
  margin-bottom: 4rem;
  border-top: 2px dashed;
}
@media screen and (max-width: 749px) {
  .postPage figure.pc {
    display: none;
  }
}
@media print, screen and (min-width: 750px) {
  .postPage figure.sp {
    display: none;
  }
}
.postPage iframe#instagram-embed-0 {
  margin: 2rem auto !important;
}
.postPage .wp-block-image {
  margin-bottom: 5rem;
}
.postPage .kiji__header {
  padding: 0 4rem;
  margin-bottom: 6rem;
}
.postPage .content {
  max-width: 100rem;
  margin: 0 auto;
  padding: 0 4rem;
}
.postPage .term-name {
  padding: 0 0.7em;
  color: #fff;
  font-weight: bold;
  font-size: 1.3rem;
  display: inline-block;
  margin-right: 1rem;
}
.postPage .term-pickup {
  background-color: #fdc000;
}
.postPage .term-promotion {
  background: #F25F7C;
}
.postPage .term-design {
  background: #0093DC;
}
.postPage .term-web {
  background: #7BBA1D;
}
.postPage .term-movie {
  background: #E65514;
}
.postPage .term-event {
  background: #FF9613;
}
.postPage .term-info {
  background: #FDC000;
}

.wp-block-embed-youtube iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

/* ---------------------------------------------------------
記事一覧
--------------------------------------------------------- */
.archive_woks .recordwrap {
  padding: 100px 0;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-right: -20px;
}
@media screen and (max-width: 749px) {
  .archive_woks .recordwrap {
    padding: 30px 0;
  }
}
.archive_woks .record {
  box-shadow: 1px 2px 5px 2px #ccc;
  margin-right: 20px;
  margin-bottom: 50px;
  border-radius: 13px;
  width: calc(33.3% - 20px);
  flex: none;
}
@media screen and (max-width: 1125px) {
  .archive_woks .record {
    font-size: 13px;
  }
}
@media screen and (max-width: 749px) {
  .archive_woks .record {
    width: calc(100% - 20px);
    margin: 0 0 30px;
  }
}
.archive_woks .record .txtarea {
  padding: 0.3em 1em 1.5em;
}
.archive_woks .record img {
  aspect-ratio: 5/3;
  border-radius: 13px 13px 0 0;
}
.archive_woks .record .ttl {
  color: #10245b;
  font-size: 1.5em;
  font-weight: 500;
  border-bottom: 1px solid #e1e1e1;
  line-height: 1.2;
  margin: 0.5em 0;
  padding-bottom: 0.5em;
}
.archive_woks .record .txt {
  font-size: 1.2em;
  margin: 0.6em 0;
  font-weight: 400;
}
.archive_woks .record span {
  background: #10245b;
  padding: 0.1em 1em;
  border-radius: 4px;
  font-weight: 500;
  color: #fff;
  margin-right: 0.5em;
  margin-top: 6px;
  display: inline-block;
}

/* ---------------------------------------------------------
関連記事
--------------------------------------------------------- */
.yarpp.yarpp-related {
  background-color: #f9f9f9;
  width: calc(100% - 12rem);
  max-width: 150rem;
  margin: 0 auto;
  margin-top: 10rem;
  padding: 5rem 6rem;
}
@media screen and (max-width: 749px) {
  .yarpp.yarpp-related {
    padding: 5rem;
    width: calc(100% - 9rem);
  }
}
.yarpp.yarpp-related h3 {
  margin-bottom: 3rem;
}
.yarpp.yarpp-related ul {
  display: flex;
  margin-right: -6rem;
}
@media screen and (max-width: 749px) {
  .yarpp.yarpp-related ul {
    display: block;
    margin-right: 0;
  }
}
.yarpp.yarpp-related li {
  margin-right: 6rem;
  width: calc(25% - 6rem);
}
@media screen and (max-width: 749px) {
  .yarpp.yarpp-related li {
    width: 100%;
  }
}
.yarpp.yarpp-related p.kijittl {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.8;
  text-align: justify;
  letter-spacing: 0.05em;
  font-feature-settings: "palt", "kern";
  margin-bottom: 2rem;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  height: 3.5em;
}
.yarpp.yarpp-related p.post-date {
  font-weight: bolder;
  margin-top: -1em;
  font-size: 1.4rem;
}
.yarpp.yarpp-related span.term {
  padding: 0 0.7em;
  margin-top: 2rem;
  margin-bottom: 1.3rem;
  color: #fff;
  font-weight: bold;
  font-size: 1.3rem;
  display: inline-block;
}
.yarpp.yarpp-related .term-pickup {
  background-color: #fdc000;
}
.yarpp.yarpp-related .term-promotion {
  background: #F25F7C;
}
.yarpp.yarpp-related .term-design {
  background: #0093DC;
}
.yarpp.yarpp-related .term-web {
  background: #7BBA1D;
}
.yarpp.yarpp-related .term-movie {
  background: #E65514;
}
.yarpp.yarpp-related .term-event {
  background: #FF9613;
}
.yarpp.yarpp-related .term-info {
  background: #FDC000;
}

/* ---------------------------------------------------------
secStaffblog
--------------------------------------------------------- */
.page-id-231 .wave {
  margin-top: 0;
}
.page-id-231 .wave.Sblog {
  transform: rotate(0deg);
  margin-bottom: 0;
  margin-top: 17rem;
}

.secStaffblog {
  padding-top: 28rem;
  padding-bottom: 17rem;
  background: #fff;
}
@media screen and (max-width: 749px) {
  .secStaffblog {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
}
.secStaffblog .npH2Wrap h2 {
  line-height: 1.3;
}
.secStaffblog .btn_motto {
  background: url(../images/topiBtn.png) no-repeat center center/contain;
  font-weight: bold;
  padding: 1em;
  width: 15em;
  display: block;
  text-align: center;
  margin: 3.5em auto;
  font-size: 2.2rem;
}

.staffblog-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 4rem;
  padding: 0 4rem;
  padding-top: 8rem;
  margin: 0 auto;
  max-width: 165rem;
}
@media screen and (max-width: 749px) {
  .staffblog-list {
    grid-template-columns: 1fr;
  }
}
.staffblog-list img {
  aspect-ratio: 1;
}
.staffblog-list h3 {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.8;
  text-align: justify;
  letter-spacing: 0.05em;
  font-feature-settings: "palt", "kern";
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  height: 3.5em;
}
.staffblog-list p.date,
.staffblog-list p.author {
  font-weight: bolder;
  margin-top: 1.5em;
  font-size: 1.4rem;
}
.staffblog-list p.category a {
  padding: 0 0.7em;
  color: #fff;
  font-weight: bold;
  font-size: 1.3rem;
  display: inline-block;
  background: #ff9613;
}
.staffblog-list p.tags a {
  padding: 0 0.7em;
  color: #fff;
  font-weight: bold;
  font-size: 1.3rem;
  display: inline-block;
  background: #0093DC;
}
.staffblog-list .matome {
  display: flex;
  gap: 2rem;
}

.staffblog-list + .pagination {
  text-align: center;
  margin-top: 5em;
}
.staffblog-list + .pagination * {
  margin: 0 1rem;
}

#toc_container.toc_white {
  background: #fff;
  width: 100%;
}



select.wpcf7-form-control.wpcf7-select.wpcf7-validates-as-required {
  width: 100%;
  background: #f9f9f9;
  border: none;
  padding: 0.9em 1.5em;
}

.syounin {
  text-align: center;
  margin: 0;
  margin-bottom: 2em;
  font-size: 1.5rem;
}
.syounin input[type=checkbox] {
  width: auto;
  margin-right: 1rem;
}
.syounin label {
  display: flex;
  justify-content: center;
}
.syounin span.wpcf7-list-item {
  width: 100%;
}

.contactDL input.wpcf7-form-control.wpcf7-submit:disabled.has-spinner {
  background-color: #999;
}/*# sourceMappingURL=style.css.map */

/*# sourceMappingURL=style.css.map */