@charset "UTF-8";
:root {
  --baseBlue:#3F51B2;
  --deepBlue:#0A2076;
  --paleBlue:#F2F4FF;
  --paleGray:#F7F8FC;
  --neonBlue:#008efc;
  --orange:#FF9D00;
  --paleOrange:#FFD26C;
  --morePaleOrange:#ffe6ae;
  --activeOrange:#fb6400;
  --notice:#FF552C;
  --yellow:#FFF7B9;
  --black:#1f1f1f;
  --space:1em;
}

body {
  width: 100%;
}

.pict img {
  width: 100%;
}

.logo img {
  width: 100%;
}

.text {
  line-height: 2;
  margin-bottom: 2em;
}

div .text:last-of-type {
  margin-bottom: 0;
}

header#global-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  padding: 0 min(40px, 3vw);
}
header#global-header .logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
header#global-header .logo img {
  width: 100%;
}
header#global-header nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
header#global-header nav .headerNav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
header#global-header nav {
  /*headerNav*/
}
header#global-header nav .contactBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
}
header#global-header nav .contactBtn .title {
  color: #fff;
}
header#global-header .global-menu-btn {
  width: min(100px, 9.2vw);
  aspect-ratio: 1/1;
  background: var(--deepBlue);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
header#global-header .global-menu-btn .bar {
  width: 50%;
  height: 2px;
  background: #fff;
  position: relative;
}
header#global-header .global-menu-btn .bar::before, header#global-header .global-menu-btn .bar::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  position: absolute;
  left: 0;
}
header#global-header .global-menu-btn .bar::before {
  top: -0.75em;
}
header#global-header .global-menu-btn .bar::after {
  bottom: -0.75em;
}

nav .topic a {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  color: var(--deepBlue);
}

/*nav*/
#global-menu {
  z-index: 998 !important;
} /*global-menu*/
body #global-menu-mask.open,
body #global-menu-mask.close {
  z-index: 997;
}

footer {
  background: var(--paleBlue);
  position: relative;
  overflow: hidden;
}
footer .upper {
  position: relative;
  z-index: 10;
}
footer .upper .phoneBox .num {
  font-weight: 800;
  color: var(--deepBlue);
  line-height: 1;
  margin-bottom: 0.2em;
}
footer .upper .phoneBox .time .header {
  display: inline-block;
  background: var(--baseBlue);
  color: #fff;
  margin-right: 0.5em;
  padding: 0 0.5em;
  border-radius: 4px;
}
footer .upper {
  /*phoneBox*/
}
footer {
  /*upper*/
}
footer .under {
  position: relative;
  z-index: 10;
  display: flex;
  width: 100%;
  justify-content: center;
  gap: 2em;
  background: var(--deepBlue);
}
footer .under a, footer .under p {
  color: #fff;
  display: inline-block;
}
footer .pict.bg {
  width: 100%;
  height: min(200px, 15vw);
  opacity: 0.75;
  position: absolute;
  bottom: -50px;
  right: 0;
  background-image: url(../images/image-build.svg);
  background-repeat: repeat-x;
  background-size: 50%;
}

/*footer*/
.contSec {
  position: relative;
  width: 100%;
}
.contSec.bgBlue {
  background: var(--baseBlue);
}
.contSec.bgBlue .secTitle .main {
  color: #fff;
}
.contSec.bgPaleBlue {
  background: var(--paleBlue);
}
.contSec.bgYellow {
  background: var(--yellow);
}
.contSec .secTitle .main {
  color: var(--deepBlue);
}

.btn {
  transition: 0.2s;
}
.btn.koniro {
  background: var(--deepBlue);
}
.btn.orange {
  background: var(--orange);
}

/*btn*/
.kwskBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 1em;
  background: var(--orange);
  position: relative;
  border-radius: 2px;
  border-bottom-right-radius: 0.6em;
}
.kwskBtn::after {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background-image: url(../images/icon-arrow-white.svg);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 0.35em;
  transform: translateY(-50%);
  transition: 0.2s;
}
.kwskBtn.koniro {
  background: var(--deepBlue);
}
.kwskBtn .title {
  color: #fff;
}

.contactSec {
  padding: 90px 0;
}
.contactSec .secTitle {
  display: flex;
  align-items: flex-end;
  margin-bottom: 1.75em;
}
.contactSec .secTitle .main {
  font-size: 45px;
  font-weight: 800;
  line-height: 1;
  color: #fff;
}
.contactSec .secTitle .sub {
  font-size: 18px;
  font-family: "Dela Gothic One", sans-serif;
  color: var(--paleOrange);
  margin-left: 1em;
  letter-spacing: 0.1em;
}
.contactSec .text {
  color: #fff;
}
.contactSec .kwskBtn {
  width: 275px;
  height: 53px;
  margin-top: 1em;
}
.contactSec .contBlock {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 65px 45px;
  position: relative;
  background: var(--orange);
}
.contactSec .contBlock .contBox {
  width: 55%;
}
.contactSec .contBlock .pictBox {
  height: 100%;
  width: auto;
  position: absolute;
  top: 0;
  right: 0;
  padding: 28px;
}
.contactSec .contBlock .pictBox .pict {
  height: 100%;
}
.contactSec .contBlock .pictBox .pict img {
  height: 100%;
  width: auto;
}
.contactSec {
  /*contBlock*/
} /*contactSec*/
.underPage #pageTopSec {
  position: relative;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  overflow: hidden;
}
.underPage #pageTopSec .wrap {
  background: var(--baseBlue);
  position: relative;
  height: min(280px, 25.4vw);
}
.underPage #pageTopSec .wrap::after {
  content: "";
  display: block;
  aspect-ratio: 1/1;
  background-image: url(../images/pageHeaderKanban.svg);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 162px;
}
.underPage #pageTopSec .pankuzu {
  width: clamp(1100px, 100%, 1320px);
  padding: 0 20px;
  margin-left: auto;
  margin-right: auto;
}
.underPage #pageTopSec .innerBlock {
  height: 100%;
  width: clamp(1100px, 100%, 1320px);
  padding: 0 20px;
  margin-left: auto;
  margin-right: auto;
}
.underPage #pageTopSec .innerBlock .pageTitle {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
  align-content: center;
}
.underPage #pageTopSec .innerBlock .pageTitle .main {
  color: #fff;
  font-size: min(45px, 8vw);
  width: 100%;
  margin-bottom: 0.15em;
}
.underPage #pageTopSec .innerBlock .pageTitle .sub {
  color: var(--paleOrange);
  font-size: min(18px, 4vw);
  width: 100%;
  font-family: "Dela Gothic One", sans-serif;
  letter-spacing: 0.1em;
}
.underPage #pageTopSec .innerBlock {
  /*pageTitle*/
}
.underPage #pageTopSec {
  /*innerBlock*/
}
.underPage #pageTopSec .pankuzu {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0.75em;
}
.underPage #pageTopSec .pankuzu .topic {
  display: flex;
  align-items: center;
  margin-right: 0.5em;
}
.underPage #pageTopSec .pankuzu .topic::after {
  content: "";
  display: block;
  width: 0.85em;
  height: 0.85em;
  background-image: url(../images/icon-arrow-blue-bold.svg);
  background-size: cover;
  background-repeat: no-repeat;
}
.underPage #pageTopSec .pankuzu .topic:first-of-type a::before {
  content: "";
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  margin-right: 0.2em;
  background-image: url(../images/icon-home.svg);
  background-size: cover;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin-bottom: 0.3em;
}
.underPage #pageTopSec .pankuzu .topic:last-of-type::after {
  content: none;
}
.underPage #pageTopSec .pankuzu .topic:last-of-type .inner {
  color: var(--baseBlue);
}
.underPage #pageTopSec .pankuzu .topic .inner {
  display: block;
  margin-right: 0.5em;
}
.underPage #pageTopSec {
  /*pankuzu*/
}
.underPage {
  /*pageTopSec*/
}
.underPage .pageLeadSec {
  padding: 135px 0;
}
.underPage .pageLeadSec .innerBlock {
  display: flex;
}
.underPage .pageLeadSec .innerBlock .contBlock {
  width: 50%;
}
.underPage .pageLeadSec .innerBlock .pictBlock {
  width: 50%;
  padding-left: min(70px, 8vw);
  border-bottom-right-radius: 35px;
  overflow: hidden;
}
.underPage .pageLeadSec .innerBlock .pictBlock .pict {
  border-bottom-right-radius: 35px;
  overflow: hidden;
}
.underPage .pageLeadSec .secTitle {
  color: var(--deepBlue);
  font-size: 32px;
  line-height: 1.5;
  margin-bottom: 1em;
}
.underPage {
  /*pageLeadSec*/
}
.underPage .appealSec {
  padding: min(110px, 10vw) 0 min(140px, 13.5vw);
}
.underPage .appealSec .appealTitle {
  position: relative;
  margin-bottom: 90px;
}
.underPage .appealSec .appealTitle::after {
  content: "";
  display: block;
  background: var(--orange);
  width: 95px;
  height: 6px;
  border-radius: 3px;
  margin: 1em auto 0;
}
.underPage .appealSec .appealTitle .title {
  color: var(--deepBlue);
  text-align: center;
  font-size: min(35px, 6.5vw);
}
.underPage {
  /*appealSec*/
}
.underPage .innerBlock {
  margin-left: auto;
  margin-right: auto;
}
.underPage .titleSec {
  height: min(250px, 22.72vw);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 1em;
}
.underPage .otherTitle {
  position: relative;
}
.underPage .otherTitle::after {
  content: "";
  display: block;
  background: var(--orange);
  width: 95px;
  height: 6px;
  border-radius: 3px;
  margin: 0.5em auto 0;
}
.underPage .otherTitle .title {
  color: var(--baseBlue);
  text-align: center;
  font-size: min(35px, 6.5vw);
}
.underPage {
  /*otherTitle*/
}
.underPage .postTitle {
  position: relative;
  margin-bottom: 0.75em;
}
.underPage .postTitle .title {
  color: var(--baseBlue);
  font-size: min(35px, 6.5vw);
}
.underPage {
  /*otherTitle*/
} /*underPage*/
.spaceT {
  margin-top: 1em;
}

.spaceB {
  margin-bottom: 1em;
}

.spaceL {
  margin-left: 1em;
}

.spaceR {
  margin-right: 1em;
}

.linkText {
  color: var(--baseBlue);
  text-decoration: underline;
  text-underline-offset: 0.25em;
}
.linkText:hover, .linkText:visited, .linkText:active {
  color: var(--baseBlue);
}

.contBlock {
  counter-reset: upper-alpha;
}

.sujiList {
  counter-reset: suuji;
}
.sujiList li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2em;
  padding-bottom: 2em;
  border-bottom: 1px dashed var(--baseBlue);
}
.sujiList li::before {
  counter-increment: suuji;
  content: counter(suuji) " ";
  display: block;
  width: 2em;
  font-size: 1.25em;
  color: var(--baseBlue);
  line-height: 1.25;
}
.sujiList li .cont {
  width: calc(100% - 2.75em);
}

/*sujiList*/
.pict.nowprinting {
  background: #afafaf;
}
.pict.nowprinting img {
  opacity: 0.3;
  mix-blend-mode: multiply;
  filter: saturate(25%);
}

#page404 {
  padding: clamp(10px, 150px, 20vw);
}
#page404 h1 {
  font-size: min(45px, 9.5vw);
  color: var(--baseBlue);
}
#page404 .kwskBtn {
  width: min(200px, 50vw);
  height: min(53px, 12vw);
  color: #fff;
  margin-top: 50px;
}

.noPost {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: min(500px, 50vw);
}
.noPost .text {
  font-size: min(24px, 7vw);
  color: var(--baseBlue);
}

.paging,
.nav-links {
  width: 100%;
  margin-top: min(50px, 10vw);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
}
.paging .page-numbers,
.nav-links .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 0.1em;
  width: 2.2em;
  height: 2.2em;
  border: 1px solid var(--baseBlue);
  color: var(--baseBlue);
  border-radius: 50%;
  line-height: 1;
}
.paging .page-numbers.current,
.nav-links .page-numbers.current {
  background: var(--baseBlue);
  color: #fff;
}
.paging .page-numbers.prev, .paging .page-numbers.next,
.nav-links .page-numbers.prev,
.nav-links .page-numbers.next {
  background: none;
  border: none;
  color: var(--baseBlue);
  font-size: 0.75em;
}

.newsList .topic::after {
  content: "";
  display: block;
  transform: translateX(-50%);
  width: 1.2em;
  aspect-ratio: 1/1;
  background-image: url(../images/icon-arrow-orange.svg);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.is_pc .noPc {
  display: none !important;
}
.is_pc .tabOnly {
  display: none !important;
}
.is_pc .spOnly {
  display: none !important;
}
.is_pc header#global-header {
  width: 100%;
}
.is_pc header#global-header nav {
  gap: min(30px, 2.4vw);
}
.is_pc header#global-header nav .headerNav {
  gap: min(30px, 2.4vw);
}
.is_pc header#global-header nav .headerNav .topic a {
  font-size: min(20px, 1.6vw);
}
.is_pc header#global-header {
  /*nav*/
}
.is_pc header#global-header .contactBtn {
  font-size: min(20px, 1.6vw);
  width: min(218px, 18vw);
  height: 66px;
}
.is_pc header#global-header .contactBtn::before {
  content: "";
  display: inline-block;
  width: 1.1em;
  height: 0.75em;
  margin-bottom: -0.15em;
  margin-right: 0.15em;
  background-image: url(../images/icon-mail.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.is_pc header#global-header .global-menu-btn {
  display: none;
}
.is_pc footer {
  padding: 35px 0 0;
}
.is_pc footer .upper {
  display: flex;
  justify-content: space-between;
  max-width: 1320px;
  min-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.is_pc footer .upper .dataBlock {
  width: 370px;
}
.is_pc footer .upper .dataBlock .compBox {
  padding-bottom: 0.75em;
}
.is_pc footer .upper .dataBlock .compBox .logo {
  display: block;
  width: 309px;
  margin-bottom: 20px;
}
.is_pc footer .upper .dataBlock .compBox .text {
  margin-bottom: 0;
}
.is_pc footer .upper .dataBlock {
  /*compBox*/
}
.is_pc footer .upper .dataBlock .phoneBox {
  display: flex;
  align-items: center;
  padding: 30px 0;
  border-top: 1px solid var(--deepBlue);
}
.is_pc footer .upper .dataBlock .phoneBox .icon {
  width: 72px;
  margin-right: 15px;
}
.is_pc footer .upper .dataBlock .phoneBox .data .num {
  font-size: 40px;
}
.is_pc footer .upper .dataBlock .phoneBox .data span {
  font-size: 15px;
}
.is_pc footer .upper .dataBlock .phoneBox {
  /*data*/
}
.is_pc footer .upper .dataBlock {
  /*phoneBox*/
}
.is_pc footer .upper {
  /*dataBlock*/
}
.is_pc footer .upper nav {
  width: calc(100% - 370px);
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-left: 30px;
}
.is_pc footer .upper nav .footerNavList {
  display: flex;
  gap: min(2em, 2vw);
}
.is_pc footer {
  /*upper*/
}
.is_pc footer .under {
  height: 54px;
  align-items: center;
}
.is_pc footer .under a, .is_pc footer .under p {
  font-size: 16px;
}
.is_pc {
  /*footer*/
}
.is_pc main {
  min-height: calc(100vh - 380px);
}
.is_pc .dotBG {
  /* ドットのパターン */
  background-image: radial-gradient(#c6cbe8 12%, transparent 12%);
  /* パターンの大きさ（サイズが小さいほどドットの間隔が狭くなります） */
  background-size: 20px 20px;
}
.is_pc .paleDotBG {
  background-image: radial-gradient(#e4e5e8 12%, transparent 12%);
  background-size: 20px 20px;
}
.is_pc .underPage .innerBlock {
  width: clamp(1100px, 100%, 1320px);
  padding: 0 20px;
}
.is_pc .contactSec .kwskBtn {
  width: 275px;
}

/*is_pc*/
.is_tab .noTab {
  display: none !important;
}
.is_tab .pcOnly {
  display: none !important;
}
.is_tab .spOnly {
  display: none !important;
}
.is_tab header#global-header {
  height: 12vw;
}
.is_tab header#global-header nav {
  display: none;
}
.is_tab #global-menu nav {
  width: 100%;
}
.is_tab #global-menu nav .globalNavList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  height: 100%;
  overflow-y: auto;
}
.is_tab #global-menu nav .globalNavList .topic {
  border-bottom: 1px solid #AAB1DB;
  width: calc(50% - 2vw);
}
.is_tab #global-menu nav .globalNavList .topic:first-of-type, .is_tab #global-menu nav .globalNavList .topic:nth-of-type(2) {
  border-top: 1px solid #AAB1DB;
}
.is_tab #global-menu nav .globalNavList .topic a {
  display: block;
  padding: 1em 4vw;
  position: relative;
  font-size: 3.2vw;
  text-shadow: none;
}
.is_tab #global-menu nav .globalNavList .topic a::after {
  content: "";
  display: block;
  width: 1em;
  aspect-ratio: 1/1;
  background-image: url(../images/icon-arrow-blue.svg);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 4vw;
  transform: translateY(-50%);
}
.is_tab #global-menu nav .globalNavList .topic a .main {
  font-weight: 800;
  color: var(--deepBlue);
}
.is_tab #global-menu nav .globalNavList .topic a .sub {
  font-family: "Dela Gothic One", sans-serif;
  font-weight: 400;
  color: var(--paleOrange);
  font-size: min(16px, 3.2vw);
}
.is_tab #global-menu {
  /*naav*/
}
.is_tab {
  /*global-menu*/
}
.is_tab footer .upper {
  padding: 10vw 4vw 6vw;
}
.is_tab footer .upper .dataBlock {
  width: 100%;
  margin-bottom: 5vw;
}
.is_tab footer .upper .dataBlock .compBox {
  padding-bottom: 4vw;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 6vw;
}
.is_tab footer .upper .dataBlock .compBox .logo {
  display: block;
  width: 42vw;
  display: block;
}
.is_tab footer .upper .dataBlock .compBox .text {
  margin-bottom: 0;
  line-height: 1.6;
}
.is_tab footer .upper .dataBlock {
  /*compBox*/
}
.is_tab footer .upper .dataBlock .phoneBox {
  display: flex;
  padding: 30px 0;
  justify-content: center;
  border-top: 1px solid var(--deepBlue);
}
.is_tab footer .upper .dataBlock .phoneBox .icon {
  width: 10.9vw;
  margin-right: 15px;
}
.is_tab footer .upper .dataBlock .phoneBox .data .num {
  font-size: 9.16vw;
}
.is_tab footer .upper .dataBlock .phoneBox .data span {
  font-size: 3.8vw;
}
.is_tab footer .upper .dataBlock .phoneBox {
  /*data*/
}
.is_tab footer .upper .dataBlock {
  /*phoneBox*/
}
.is_tab footer .upper {
  /*dataBlock*/
}
.is_tab footer .upper nav {
  width: 100%;
}
.is_tab footer .upper nav .footerNavList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.is_tab footer .upper nav .footerNavList .topic {
  border-bottom: 1px solid #AAB1DB;
  width: calc(50% - 2vw);
}
.is_tab footer .upper nav .footerNavList .topic:first-of-type, .is_tab footer .upper nav .footerNavList .topic:nth-of-type(2) {
  border-top: 1px solid #AAB1DB;
}
.is_tab footer .upper nav .footerNavList .topic a {
  display: block;
  padding: 1em 4vw;
  position: relative;
  font-size: 3.2vw;
}
.is_tab footer .upper nav .footerNavList .topic a::after {
  content: "";
  display: block;
  width: 1em;
  aspect-ratio: 1/1;
  background-image: url(../images/icon-arrow-blue.svg);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 4vw;
  transform: translateY(-50%);
}
.is_tab footer {
  /*upper*/
}
.is_tab footer .under {
  height: 11.2vw;
  align-items: center;
  gap: 6vw;
}
.is_tab footer .under a, .is_tab footer .under p {
  font-size: 2.8vw;
}
.is_tab {
  /*footer*/
}
.is_tab #fv {
  height: calc(100vh - 12vw);
  padding: 0 5vw;
}
.is_tab .dotBG {
  /* ドットのパターン */
  background-image: radial-gradient(#c6cbe8 12%, transparent 12%);
  /* パターンの大きさ（サイズが小さいほどドットの間隔が狭くなります） */
  background-size: 20px 20px;
}
.is_tab .paleDotBG {
  background-image: radial-gradient(#e4e5e8 12%, transparent 12%);
  background-size: 20px 20px;
}
.is_tab .contactSec {
  padding: 15.2vw 4vw;
}
.is_tab .contactSec .contBlock {
  width: 100%;
  padding: 6vw 4vw;
  position: relative;
}
.is_tab .contactSec .contBlock .contBox {
  width: 50%;
}
.is_tab .contactSec .contBlock .pictBox {
  width: 45%;
  margin: 0;
}
.is_tab .contactSec .contBlock .pictBox .pict {
  width: 100%;
}
.is_tab .contactSec .contBlock .pictBox .pict img {
  width: 100%;
}
.is_tab {
  /*contactSec*/
}
.is_tab .underPage .pageLeadSec {
  padding: 135px 0;
}
.is_tab .underPage .pageLeadSec .innerBlock {
  display: block;
  width: 100%;
  padding: 4vw;
}
.is_tab .underPage .pageLeadSec .innerBlock .contBlock {
  margin-bottom: 7vw;
  width: 100%;
}
.is_tab .underPage .pageLeadSec .innerBlock .pictBlock {
  width: 85%;
  margin: 0 auto;
}
.is_tab .underPage {
  /*pageLeadSec*/
}
.is_tab .underPage .innerBlock {
  width: initial;
  width: 100%;
  padding: 0 4vw;
  margin-left: auto;
  margin-right: auto;
}
.is_tab #page404 {
  padding: 15vw 4vw;
}

/*is_tab*/
.is_sp .noSp {
  display: none !important;
}
.is_sp .pcOnly {
  display: none !important;
}
.is_sp .tabOnly {
  display: none !important;
}
.is_sp body {
  font-size: 4.6vw;
}
.is_sp header#global-header {
  height: 21.3vw;
  padding: 5vw;
}
.is_sp header#global-header .logo {
  width: 54.7vw;
}
.is_sp header#global-header nav {
  display: none;
}
.is_sp header#global-header .global-menu-btn {
  width: 14.75vw;
  aspect-ratio: 1/1;
}
.is_sp #global-menu nav {
  width: 100%;
}
.is_sp #global-menu nav .globalNavList {
  height: 100%;
  overflow-y: auto;
}
.is_sp #global-menu nav .globalNavList .topic {
  border-bottom: 1px solid #AAB1DB;
  width: 100%;
}
.is_sp #global-menu nav .globalNavList .topic a {
  display: block;
  padding: 1em 4vw;
  position: relative;
  font-size: 3.2vw;
  text-shadow: none;
}
.is_sp #global-menu nav .globalNavList .topic a::after {
  content: "";
  display: block;
  width: 1em;
  aspect-ratio: 1/1;
  background-image: url(../images/icon-arrow-blue.svg);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 4vw;
  transform: translateY(-50%);
}
.is_sp #global-menu nav .globalNavList .topic a .main {
  font-weight: 800;
  color: var(--deepBlue);
  font-size: 4.6vw;
}
.is_sp #global-menu nav .globalNavList .topic a .sub {
  font-family: "Dela Gothic One", sans-serif;
  font-weight: 400;
  color: var(--paleOrange);
  font-size: min(16px, 3.2vw);
}
.is_sp #global-menu {
  /*naav*/
}
.is_sp {
  /*global-menu*/
}
.is_sp footer .upper {
  padding: 10vw 4vw 6vw;
}
.is_sp footer .upper .dataBlock {
  width: 100%;
}
.is_sp footer .upper .dataBlock .compBox {
  padding-bottom: 0.75em;
}
.is_sp footer .upper .dataBlock .compBox .logo {
  display: block;
  width: 57vw;
  margin: 0 auto 4.5vw;
  display: block;
}
.is_sp footer .upper .dataBlock .compBox .text {
  margin-bottom: 0;
  text-align: center;
  line-height: 1.6;
}
.is_sp footer .upper .dataBlock {
  /*compBox*/
}
.is_sp footer .upper .dataBlock .phoneBox {
  display: flex;
  padding: 30px 0;
  justify-content: center;
  border-top: 1px solid var(--deepBlue);
}
.is_sp footer .upper .dataBlock .phoneBox .icon {
  width: 10.9vw;
  margin-right: 15px;
}
.is_sp footer .upper .dataBlock .phoneBox .data .num {
  font-size: 9.16vw;
}
.is_sp footer .upper .dataBlock .phoneBox .data span {
  font-size: 3.8vw;
}
.is_sp footer .upper .dataBlock .phoneBox {
  /*data*/
}
.is_sp footer .upper .dataBlock {
  /*phoneBox*/
}
.is_sp footer .upper {
  /*dataBlock*/
}
.is_sp footer .upper nav {
  width: 100%;
}
.is_sp footer .upper nav .footerNavList {
  border-top: 1px solid #AAB1DB;
}
.is_sp footer .upper nav .footerNavList .topic {
  border-bottom: 1px solid #AAB1DB;
}
.is_sp footer .upper nav .footerNavList .topic a {
  display: block;
  padding: 1em 4vw;
  position: relative;
}
.is_sp footer .upper nav .footerNavList .topic a::after {
  content: "";
  display: block;
  width: 1em;
  aspect-ratio: 1/1;
  background-image: url(../images/icon-arrow-blue.svg);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 4vw;
  transform: translateY(-50%);
}
.is_sp footer {
  /*upper*/
}
.is_sp footer .under {
  height: 11.2vw;
  align-items: center;
  gap: 6vw;
}
.is_sp footer .under a, .is_sp footer .under p {
  font-size: 4.1vw;
}
.is_sp {
  /*footer*/
}
.is_sp .dotBG {
  /* ドットのパターン */
  background-image: radial-gradient(#c6cbe8 12%, transparent 12%);
  /* パターンの大きさ（サイズが小さいほどドットの間隔が狭くなります） */
  background-size: 3vw 3vw;
}
.is_sp .paleDotBG {
  background-image: radial-gradient(#e4e5e8 12%, transparent 12%);
  background-size: 3vw 3vw;
}
.is_sp .underPage #pageTopSec {
  border-top-left-radius: 5.1vw;
  border-top-right-radius: 5.1vw;
  overflow: hidden;
}
.is_sp .underPage #pageTopSec .wrap {
  position: relative;
  height: 41.2vw;
}
.is_sp .underPage #pageTopSec .wrap::after {
  width: 17.3vw;
}
.is_sp .underPage #pageTopSec {
  /*wrap*/
}
.is_sp .underPage #pageTopSec .innerBlock {
  width: 100%;
  height: 100%;
}
.is_sp .underPage #pageTopSec .innerBlock .pageTitle {
  display: block;
  width: 100%;
  height: 100%;
}
.is_sp .underPage #pageTopSec .innerBlock .pageTitle .main {
  color: #fff;
  font-size: min(45px, 8vw);
  width: 100%;
  margin-bottom: 0.15em;
}
.is_sp .underPage #pageTopSec .innerBlock .pageTitle .sub {
  color: var(--paleOrange);
  font-size: min(18px, 4vw);
  width: 100%;
  font-family: "Dela Gothic One", sans-serif;
  letter-spacing: 0.1em;
}
.is_sp .underPage #pageTopSec .innerBlock {
  /*pageTitle*/
}
.is_sp .underPage #pageTopSec {
  /*innerBlock*/
}
.is_sp .underPage #pageTopSec .pankuzu {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0.75em;
  padding: 0 4vw;
  width: 100%;
}
.is_sp .underPage #pageTopSec .pankuzu .topic {
  display: flex;
  align-items: center;
  margin-right: 0.5em;
}
.is_sp .underPage #pageTopSec .pankuzu .topic::after {
  content: "";
  display: block;
  width: 0.85em;
  height: 0.85em;
}
.is_sp .underPage #pageTopSec .pankuzu .topic:first-of-type a::before {
  content: "";
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  margin-right: 0.2em;
  vertical-align: middle;
  margin-bottom: 0.3em;
}
.is_sp .underPage #pageTopSec .pankuzu .topic:last-of-type::after {
  content: none;
}
.is_sp .underPage #pageTopSec .pankuzu .topic:last-of-type a {
  color: var(--baseBlue);
}
.is_sp .underPage #pageTopSec {
  /*pankuzu*/
}
.is_sp .underPage {
  /*pageTopSec*/
}
.is_sp .underPage .pageLeadSec {
  padding: 15.26vw 0;
}
.is_sp .underPage .pageLeadSec .innerBlock {
  display: block;
}
.is_sp .underPage .pageLeadSec .innerBlock .contBlock {
  width: 100%;
  margin-bottom: 7vw;
}
.is_sp .underPage .pageLeadSec .innerBlock .pictBlock {
  width: 100%;
  padding-left: 0;
}
.is_sp .underPage {
  /*pageLeadSec*/
}
.is_sp .underPage .titleSec {
  height: 44.5vw;
}
.is_sp .underPage .otherTitle::after {
  content: "";
  display: block;
  background: var(--orange);
  width: 18.57vw;
  height: 3px;
  border-radius: 2px;
  margin: 0.5em auto 0;
}
.is_sp .underPage .otherTitle .title {
  color: var(--baseBlue);
  text-align: center;
  font-size: 7.12vw;
}
.is_sp .underPage {
  /*otherTitle*/
}
.is_sp .underPage #newsPagegWrapper .otherTitle::after {
  content: none;
}
.is_sp .underPage #newsPagegWrapper .otherTitle .title {
  text-align: left;
}
.is_sp .underPage #newsPagegWrapper .otherTitle .date {
  text-align: left;
}
.is_sp .underPage {
  /*newsPagegWrapper*/
}
.is_sp .underPage .appealSec {
  padding: 15.25vw 0;
}
.is_sp .underPage .appealSec .appealTitle {
  position: relative;
  margin-bottom: 11.45vw;
}
.is_sp .underPage .appealSec .appealTitle::after {
  width: 18.57vw;
  height: 3px;
  border-radius: 3px;
  margin: 1em auto 0;
}
.is_sp .underPage .appealSec .appealTitle .title {
  color: var(--deepBlue);
  text-align: center;
  font-size: min(35px, 6.5vw);
}
.is_sp .underPage {
  /*appealSec*/
}
.is_sp {
  /*underPage*/
}
.is_sp .contSec .innerBlock {
  width: 100%;
  padding: 0 5vw;
}
.is_sp .contSec .secTitle {
  font-size: 6.36vw;
}
.is_sp .contactSec {
  padding: 15.2vw 4vw;
}
.is_sp .contactSec .innerBlock {
  width: initial;
  width: 100%;
}
.is_sp .contactSec .secTitle {
  display: block;
}
.is_sp .contactSec .secTitle .main {
  font-size: 8vw;
}
.is_sp .contactSec .secTitle .sub {
  margin: 0.4em 0 0 0;
}
.is_sp .contactSec .contBlock {
  width: 100%;
  padding: 10vw 4vw;
  position: relative;
}
.is_sp .contactSec .contBlock .contBox {
  width: 100%;
}
.is_sp .contactSec .contBlock .pictBox {
  width: 75%;
  margin: 6vw auto 0;
  padding: 0;
  position: relative;
}
.is_sp .contactSec .contBlock .pictBox .pict {
  width: 100%;
}
.is_sp .contactSec .contBlock .pictBox .pict img {
  width: 100%;
}
.is_sp .contactSec .contBlock .kwskBtn {
  width: 100%;
  height: 12vw;
}
.is_sp {
  /*contactSec*/
}
.is_sp #page404 {
  padding: 15vw 4vw;
}

/*is_sp*/
@media (hover) {
  nav a {
    text-shadow: 0 0 0 rgba(0, 142, 252, 0.2);
    transition: 0.2s;
  }
  nav a:hover {
    color: var(--neonBlue);
    text-shadow: 0 0 5px rgba(0, 142, 252, 0.2);
  }
  /*nav*/
  .kwskBtn {
    transition: 0.2s;
  }
  .kwskBtn:hover {
    background: var(--activeOrange);
  }
  .kwskBtn:hover::after {
    right: 0;
  }
  /*kwskBtn*/
  .btn.koniro:hover {
    background: var(--neonBlue);
  }
  .btn:hover {
    cursor: pointer;
  }
  .newsList .topic::after {
    transition: 0.2s;
    right: 10px;
  }
  .newsList .topic:hover::after {
    right: 3px;
  }
  .newsList .inner {
    transition: 0.2s;
  }
  .newsList .inner:hover {
    background: var(--neonBlue);
  }
  /*newsList*/
  .archiveList a:hover {
    color: var(--baseBlue);
  }
  .workList .topic .inner .pict img {
    transition: 0.2s;
  }
  .workList .topic .inner .moreLink {
    transition: 0.2s;
    color: var(--baseBlue);
  }
  .workList .topic .inner .moreLink::after {
    transition: 0.2s;
    right: 2px;
  }
  .workList .topic {
    /*inner*/
  }
  .workList .topic:hover .pict img {
    transform: scale(108%);
  }
  .workList .topic:hover .moreLink {
    color: var(--orange);
  }
  .workList .topic:hover .moreLink::after {
    right: -2px;
  }
  /*workList*/
  .paging .page-numbers:hover,
  .page-numbers .page-numbers:hover {
    opacity: 0.6;
  }
  .is_pc .container:has(.swiper) .swiper-button-prev,
  .is_tab .container:has(.swiper) .swiper-button-prev {
    left: -55px;
  }
  .is_pc .container:has(.swiper) .swiper-button-prev:hover,
  .is_tab .container:has(.swiper) .swiper-button-prev:hover {
    transform: translateX(5px);
  }
  .is_pc .container:has(.swiper) .swiper-button-next,
  .is_tab .container:has(.swiper) .swiper-button-next {
    right: -55px;
  }
  .is_pc .container:has(.swiper) .swiper-button-next:hover,
  .is_tab .container:has(.swiper) .swiper-button-next:hover {
    transform: translateX(5px);
  }
  .is_pc .container:has(.swiper) .swiper-button-prev,
  .is_pc .container:has(.swiper) .swiper-button-next,
  .is_tab .container:has(.swiper) .swiper-button-prev,
  .is_tab .container:has(.swiper) .swiper-button-next {
    transition: 0.2s;
  }
  .is_pc,
  .is_tab {
    /*swiper*/
  } /*is_pc*/
} /*hover*/
@media screen and (max-width: 1400px) {
  .is_pc .container:has(.swiper) .swiper-button-prev,
  .is_tab .container:has(.swiper) .swiper-button-prev {
    background: var(--baseBlue);
    padding: 3px;
    left: -10px;
  }
  .is_pc .container:has(.swiper) .swiper-button-next,
  .is_tab .container:has(.swiper) .swiper-button-next {
    background: var(--baseBlue);
    padding: 3px;
    right: -10px;
  }
  /*pc tab*/
} /*〜1400px */
@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.elem {
  position: relative;
  overflow: hidden;
}
.elem .actBox {
  opacity: 0;
  transition-property: transform, opacity;
  transition-duration: 1s;
}
.elem .actBox.delay {
  transition-delay: 0.3s;
}
.elem.fadeUp .actBox {
  transform: translateY(50px);
}
.elem.fadeUp.isAnimate .actBox {
  transform: translateY(0);
}
.elem {
  /*fadeUp*/
}
.elem.isAnimate .actBox {
  opacity: 1;
}

/*elem*/
#firstBlock .actBox {
  opacity: 0;
  transform: translateY(50px);
  transition-property: transform, opacity;
  transition-duration: 1s;
  transition-delay: 0.4s;
  animation-timing-function: ease-in-out;
}
#firstBlock .actBox.delay {
  transition-delay: 0.9s;
}
#firstBlock.loaded .actBox {
  opacity: 1;
  transform: translateY(0);
}

/*firstBlock*/
#fv {
  aspect-ratio: 16/9;
  width: 100%;
  position: relative;
  overflow: hidden;
}
#fv .bgBoard#fvBg {
  position: absolute;
  top: -8%;
  left: -8%;
  z-index: 1;
  width: 115%;
  height: 115%;
  transition: transform 0.1s ease; /* 滑らかに追従させる */
}
#fv .pict {
  position: absolute;
  z-index: 10;
}
#fv .pict img {
  height: 110%;
  width: auto;
  transition: transform 0.1s ease; /* 滑らかに追従させる */
}
#fv #fvPict {
  transition: transform 0.1s ease; /* 滑らかに追従させる */
}
#fv #mainCopy {
  display: flex;
  height: 100%;
  align-content: center;
  flex-wrap: wrap;
  font-weight: 900;
  position: relative;
  z-index: 10;
}
#fv #mainCopy .copy {
  color: var(--deepBlue);
  width: 100%;
}
#fv #mainCopy .copy.bigger {
  font-size: 128%;
}
#fv #mainCopy .sub {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  margin-top: 2em;
  color: var(--deepBlue);
}
#fv {
  /*mainCopy*/
} /*fv*/
#homeNewsSec .newsList .newsList .topic .inner::after {
  position: absolute;
  top: 50%;
  right: 1em;
}
#homeNewsSec .newsList .newsList .topic::after {
  width: 1.2em;
}
#homeNewsSec .newsList {
  /*newsList*/
}
#homeNewsSec {
  /*newsList*/
} /*homeNewsSec*/
#homeWorksSec .worksSlider {
  align-items: stretch;
}
#homeWorksSec .worksSlider .container {
  height: 100%;
}
#homeWorksSec .worksSlider .topic {
  padding-bottom: min(2em, 5vw);
  background: #fff;
  align-self: stretch;
}
#homeWorksSec .worksSlider .topic .pict {
  background-image: url(../images/nophoto.jpg);
  background-size: cover;
  background-position: center;
}
#homeWorksSec .worksSlider .topic .contBox .text {
  margin-bottom: 1em;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3; /* ここを2や3に変更することで、行数を指定 */
  max-height: 5.5em;
}
#homeWorksSec .worksSlider .topic .contBox .data {
  display: flex;
  justify-content: space-between;
}
#homeWorksSec .worksSlider .topic .contBox .data .cateList {
  display: flex;
}
#homeWorksSec .worksSlider .topic .contBox .data .cateList .cateBtn {
  background: var(--orange);
  color: #fff;
  line-height: 1;
  height: 1.8em;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.9em;
  padding: 0 0.75em 0.1em;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.85em;
}
#homeWorksSec .worksSlider .topic .contBox .data .cateList .cateBtn span {
  color: #fff;
}
#homeWorksSec .worksSlider .topic .contBox {
  /*data*/
}
#homeWorksSec .worksSlider .topic .moreLink {
  position: absolute;
  right: 1em;
  bottom: 1em;
  font-size: 16px;
  font-family: "Dela Gothic One", sans-serif;
  display: block;
  border-bottom: 1px solid var(--baseBlue);
  padding-right: 1.25em;
  margin-left: auto;
  width: -moz-fit-content;
  width: fit-content;
}
#homeWorksSec .worksSlider .topic .moreLink::after {
  content: "";
  display: inline-block;
  width: 0.75em;
  height: 0.75em;
  background-image: url(../images/icon-arrow-blue.svg);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
#homeWorksSec .worksSlider .topic {
  /*moreLink*/
}

/*homeWorksSec*/
.is_pc {
  /** HOME **************************************************************************************************/
}
.is_pc #fv {
  height: calc(100vh - 145px);
  background-color: #ffffff;
}
.is_pc #fv .pict {
  width: auto;
  max-width: 64vw;
  height: 100%;
  aspect-ratio: 30/23;
  top: 0;
  right: 0;
}
.is_pc #fv #mainCopy {
  padding-left: max(100px, 8vw);
  margin-top: -5vw;
}
.is_pc #fv #mainCopy .copy {
  font-size: min(80px, 6.8vw);
  line-height: 1.4;
}
.is_pc #fv #mainCopy .copy.bigger {
  font-size: min(104px, 9vw);
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.is_pc #fv #mainCopy .copy.bigger::before {
  content: "";
  display: block;
  width: 101%;
  height: 0.6em;
  background: rgba(255, 237, 95, 0.6);
  mix-blend-mode: multiply;
  position: absolute;
  left: -1%;
  bottom: 0;
  z-index: -1;
}
.is_pc #fv #mainCopy .sub {
  font-size: 24px;
}
.is_pc #fv {
  /*mainCopy*/
}
.is_pc .homeContSec .innerBlock {
  width: clamp(1100px, 100%, 1320px);
  padding: 0 20px;
  margin-left: auto;
  margin-right: auto;
}
.is_pc .homeContSec .secTitle {
  display: flex;
  align-items: flex-end;
  margin-bottom: 1.75em;
}
.is_pc .homeContSec .secTitle .main {
  font-size: 45px;
  font-weight: 800;
  line-height: 1;
}
.is_pc .homeContSec .secTitle .sub {
  font-size: 18px;
  font-family: "Dela Gothic One", sans-serif;
  color: var(--paleOrange);
  margin-left: 1em;
  letter-spacing: 0.1em;
}
.is_pc .homeContSec .kwskBtn {
  width: 200px;
  height: 53px;
  margin-top: 1em;
}
.is_pc .homeContSec .pictBlock .pict {
  width: 100%;
  aspect-ratio: 19/15;
  overflow: hidden;
  border-bottom-right-radius: max(35px, 4vw);
}
.is_pc .homeContSec .pictBlock .pict img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.is_pc .homeContSec .textScrolling {
  position: absolute;
  bottom: 10px;
  height: 3.2vw;
  width: 100%;
  display: flex;
  overflow: hidden;
}
.is_pc .homeContSec .textScrolling .pict {
  height: 100%;
  width: auto;
  animation: scroll-left 25s infinite linear 0.5s both;
}
.is_pc .homeContSec .textScrolling .pict img {
  height: 100%;
  width: auto;
}
.is_pc .homeContSec {
  /*textScrolling*/
}
.is_pc #homeNewsSec {
  padding: 35px 0 50px; /*height:390px;*/
}
.is_pc #homeNewsSec .innerBlock {
  display: grid;
  grid-template-columns: 360px 1fr;
  grid-template-rows: repeat(2, 1fr);
  height: 100%;
}
.is_pc #homeNewsSec .headerBlock {
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
}
.is_pc #homeNewsSec .headerBlock .secTitle {
  margin-bottom: 0;
}
.is_pc #homeNewsSec {
  /*headerBlock*/
}
.is_pc #homeNewsSec .kwskBlock {
  grid-column-start: 1;
  grid-row-start: 2;
  margin-top: auto;
}
.is_pc #homeNewsSec .contBlock {
  width: 100%;
  height: 100%;
  padding-left: 60px;
  grid-row: span 2/span 2;
  grid-column-start: 2;
  grid-row-start: 1;
}
.is_pc #homeNewsSec .contBlock .newsList .topic {
  border-bottom: 1px dashed #fff;
  position: relative;
  padding: 3px 0;
}
.is_pc #homeNewsSec .contBlock .newsList .topic::after {
  width: 1.2em;
  transform: translateY(-50%);
  position: absolute;
  top: 50%;
}
.is_pc #homeNewsSec .contBlock .newsList .topic .inner {
  display: flex;
  padding: 1em 3em 1em 1em;
  border-radius: 3px;
}
.is_pc #homeNewsSec .contBlock .newsList .topic .inner p {
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.is_pc #homeNewsSec .contBlock .newsList .topic .inner .date {
  width: 144px;
}
.is_pc #homeNewsSec .contBlock .newsList .topic .inner .title {
  width: calc(100% - 144px);
}
.is_pc #homeNewsSec {
  /*contBlock*/
}
.is_pc {
  /*homeNewsSec*/
}
.is_pc #homeAboutSec {
  padding: 144px 0;
}
.is_pc #homeAboutSec .innerBlock {
  display: flex;
}
.is_pc #homeAboutSec .contBlock {
  width: 50%;
}
.is_pc #homeAboutSec .pictBlock {
  width: 50%;
  padding-left: min(70px, 8vw);
}
.is_pc {
  /*homeAboutSec*/
}
.is_pc #homeServiceSec {
  padding: 144px 0;
}
.is_pc #homeServiceSec .innerBlock {
  display: flex;
}
.is_pc #homeServiceSec .contBlock {
  width: 50%;
  order: 1;
}
.is_pc #homeServiceSec .pictBlock {
  width: 50%;
  padding-right: min(70px, 8vw);
  order: 0;
}
.is_pc {
  /*homeServiceSec*/
}
.is_pc #homeWorksSec {
  padding: 105px 0 200px;
  border-top-left-radius: min(35px, 4vw);
  border-top-right-radius: min(35px, 4vw);
}
.is_pc #homeWorksSec .innerBlock {
  display: grid;
  grid-template-columns: 1fr 200px;
  grid-template-rows: 130px 1fr;
  position: relative;
}
.is_pc #homeWorksSec .headerBlock {
  width: 100%;
  display: flex;
  align-items: flex-start;
}
.is_pc #homeWorksSec {
  /*headerBlock*/
}
.is_pc #homeWorksSec .kwskBlock {
  grid-column-start: 2;
}
.is_pc #homeWorksSec .container {
  width: 100%;
  position: relative;
  grid-column-start: 1;
  grid-column-end: 3;
  grid-row-start: 2;
}
.is_pc #homeWorksSec .container .swiper-button-prev,
.is_pc #homeWorksSec .container .swiper-button-next {
  width: 36px;
  height: 36px;
  aspect-ratio: 1/1;
}
.is_pc #homeWorksSec .container .swiper-button-prev::after,
.is_pc #homeWorksSec .container .swiper-button-next::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}
.is_pc #homeWorksSec .container .swiper-button-prev {
  background-image: url(../images/icon-arrow-white-L.svg);
}
.is_pc #homeWorksSec .container .swiper-button-next {
  background-image: url(../images/icon-arrow-white.svg);
}
.is_pc #homeWorksSec .container .swiper-pagination {
  bottom: -100px;
}
.is_pc #homeWorksSec .container .swiper-pagination .swiper-pagination-bullet {
  background: #fff;
  opacity: 1;
  width: 38px;
  height: 4px;
  border-radius: 0;
}
.is_pc #homeWorksSec .container .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--orange);
}
.is_pc #homeWorksSec .container {
  /*swiper-pagination*/
}
.is_pc #homeWorksSec {
  /*container*/
}
.is_pc #homeWorksSec .contBlock .worksSlider .topic {
  background: #fff; /*padding:15px;*/
  max-height: 480px;
}
.is_pc #homeWorksSec .contBlock .worksSlider .topic .inner {
  display: block;
  padding: 20px;
  padding-bottom: 0;
}
.is_pc #homeWorksSec .contBlock .worksSlider .topic .pict {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  margin-bottom: 0.5em;
  border-bottom-right-radius: 1.25em;
}
.is_pc #homeWorksSec .contBlock .worksSlider .topic .pict img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.is_pc #homeWorksSec .contBlock .worksSlider .topic .contBox .text {
  margin-bottom: 0.5em;
}
.is_pc #homeWorksSec .contBlock .worksSlider .topic .contBox .data {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.4em;
}
.is_pc #homeWorksSec .contBlock .worksSlider .topic .contBox .data .cateList {
  display: flex;
}
.is_pc #homeWorksSec .contBlock .worksSlider .topic .contBox .data .cateList .cateBtn {
  background: var(--orange);
  color: #fff;
  line-height: 1;
  height: 1.8em;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.9em;
  padding: 0 0.75em 0.1em;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.is_pc #homeWorksSec .contBlock .worksSlider .topic .contBox .data .date {
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.is_pc #homeWorksSec {
  /*contBlock*/
}
.is_pc {
  /*homeWorksSec*/
} /*is_pc*/
.is_tab {
  /** HOME **************************************************************************************************/
}
.is_tab #fv #mainCopy {
  height: 36vh;
}
.is_tab #fv #mainCopy .copy.bigger {
  font-size: 14vw;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.is_tab #fv #mainCopy .copy.bigger::before {
  content: "";
  display: block;
  width: 101%;
  height: 0.6em;
  background: rgba(255, 237, 95, 0.6);
  mix-blend-mode: multiply;
  position: absolute;
  left: -1%;
  bottom: 0;
  z-index: -1;
}
.is_tab #fv #mainCopy .copy.smaller {
  font-size: 9vw;
}
.is_tab #fv #mainCopy .sub {
  font-size: 2.2vw;
  margin-top: 4vw;
}
.is_tab #fv {
  /*mainCopy*/
}
.is_tab #fv .pict {
  width: 100%;
  height: 65vh;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: flex-end;
}
.is_tab #fv .pict img {
  width: 100%;
  height: auto;
}
.is_tab {
  /*fv*/
}
.is_tab .homeContSec .innerBlock {
  width: 100%;
  padding: 0 3vw;
  margin: 0 auto;
}
.is_tab .homeContSec .secTitle {
  display: flex;
  align-items: flex-end;
  margin-bottom: 1.75em;
}
.is_tab .homeContSec .secTitle .main {
  font-size: 45px;
  font-weight: 800;
  line-height: 1;
}
.is_tab .homeContSec .secTitle .sub {
  font-size: 18px;
  font-family: "Dela Gothic One", sans-serif;
  color: var(--paleOrange);
  margin-left: 1em;
  letter-spacing: 0.1em;
}
.is_tab .homeContSec .kwskBtn {
  width: 200px;
  height: 53px;
  margin-top: 1em;
}
.is_tab .homeContSec .pictBlock .pict {
  width: 100%;
  aspect-ratio: 19/15;
  overflow: hidden;
  border-bottom-right-radius: max(35px, 4vw);
}
.is_tab .homeContSec .pictBlock .pict img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.is_tab .homeContSec .textScrolling {
  position: absolute;
  bottom: 10px;
  height: 7vw;
  width: 100%;
  display: flex;
  overflow: hidden;
}
.is_tab .homeContSec .textScrolling .pict {
  height: 100%;
  width: auto;
  animation: scroll-left 25s infinite linear 0.5s both;
}
.is_tab .homeContSec .textScrolling .pict img {
  height: 100%;
  width: auto;
}
.is_tab .homeContSec {
  /*textScrolling*/
}
.is_tab #homeNewsSec {
  padding: 78px 0; /*height:390px;*/
}
.is_tab #homeNewsSec .innerBlock {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.is_tab #homeNewsSec .headerBlock {
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
  width: -moz-fit-content;
  width: fit-content;
}
.is_tab #homeNewsSec {
  /*headerBlock*/
}
.is_tab #homeNewsSec .kwskBlock {
  width: -moz-fit-content;
  width: fit-content;
}
.is_tab #homeNewsSec .contBlock {
  width: 100%;
  height: 100%;
}
.is_tab #homeNewsSec .contBlock .newsList .topic {
  border-bottom: 1px dashed #fff;
  position: relative;
}
.is_tab #homeNewsSec .contBlock .newsList .topic::after {
  width: 1.2em;
}
.is_tab #homeNewsSec .contBlock .newsList .topic .inner {
  display: flex;
  padding: 1em 3em 1em 0;
}
.is_tab #homeNewsSec .contBlock .newsList .topic .inner p {
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.is_tab #homeNewsSec .contBlock .newsList .topic .inner .date {
  width: 144px;
}
.is_tab #homeNewsSec .contBlock .newsList .topic .inner .title {
  width: calc(100% - 144px);
}
.is_tab #homeNewsSec {
  /*contBlock*/
}
.is_tab {
  /*homeNewsSec*/
}
.is_tab #homeAboutSec {
  padding: 144px 0;
}
.is_tab #homeAboutSec .innerBlock {
  display: block;
}
.is_tab #homeAboutSec .contBlock {
  width: 100%;
}
.is_tab #homeAboutSec .pictBlock {
  width: 80%;
  margin: 10vw auto 0;
}
.is_tab {
  /*homeAboutSec*/
}
.is_tab #homeServiceSec {
  padding: 144px 0;
}
.is_tab #homeServiceSec .innerBlock {
  display: block;
}
.is_tab #homeServiceSec .contBlock {
  width: 100%;
}
.is_tab #homeServiceSec .pictBlock {
  width: 80%;
  margin: 10vw auto 0;
}
.is_tab {
  /*homeServiceSec*/
}
.is_tab #homeWorksSec {
  padding: 105px 0 200px;
  border-top-left-radius: min(35px, 4vw);
  border-top-right-radius: min(35px, 4vw);
}
.is_tab #homeWorksSec .innerBlock {
  display: grid;
  grid-template-columns: 1fr 200px;
  grid-template-rows: 130px 1fr;
  position: relative;
}
.is_tab #homeWorksSec .headerBlock {
  width: 100%;
  display: flex;
  align-items: flex-start;
}
.is_tab #homeWorksSec {
  /*headerBlock*/
}
.is_tab #homeWorksSec .kwskBlock {
  grid-column-start: 2;
}
.is_tab #homeWorksSec .container {
  width: 100%;
  position: relative;
  grid-column-start: 1;
  grid-column-end: 3;
  grid-row-start: 2;
}
.is_tab #homeWorksSec .container .swiper-button-prev,
.is_tab #homeWorksSec .container .swiper-button-next {
  width: 36px;
  height: 36px;
  aspect-ratio: 1/1;
}
.is_tab #homeWorksSec .container .swiper-button-prev::after,
.is_tab #homeWorksSec .container .swiper-button-next::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}
.is_tab #homeWorksSec .container .swiper-button-prev {
  background-image: url(../images/icon-arrow-white-L.svg);
}
.is_tab #homeWorksSec .container .swiper-button-next {
  background-image: url(../images/icon-arrow-white.svg);
}
.is_tab #homeWorksSec .container .swiper-pagination {
  bottom: -100px;
}
.is_tab #homeWorksSec .container .swiper-pagination .swiper-pagination-bullet {
  background: #fff;
  opacity: 1;
  width: 38px;
  height: 4px;
  border-radius: 0;
}
.is_tab #homeWorksSec .container .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--orange);
}
.is_tab #homeWorksSec .container {
  /*swiper-pagination*/
}
.is_tab #homeWorksSec {
  /*container*/
}
.is_tab #homeWorksSec .contBlock .worksSlider .topic {
  max-height: 53vw;
}
.is_tab #homeWorksSec .contBlock .worksSlider .topic .inner {
  display: block;
  padding: 20px;
}
.is_tab #homeWorksSec .contBlock .worksSlider .topic .pict {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  margin-bottom: 0.5em;
  border-bottom-right-radius: 1.25em;
}
.is_tab #homeWorksSec .contBlock .worksSlider .topic .pict img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.is_tab #homeWorksSec {
  /*contBlock*/
}
.is_tab {
  /*homeWorksSec*/
} /*is_tab*/
.is_sp #fv {
  height: calc(100vh - 21.3vw);
  padding: 0 5vw;
}
.is_sp #fv #mainCopy {
  height: 48vh;
}
.is_sp #fv #mainCopy .copy.bigger {
  font-size: 15.2vw;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.is_sp #fv #mainCopy .copy.bigger::before {
  content: "";
  display: block;
  width: 101%;
  height: 0.6em;
  background: rgba(255, 237, 95, 0.6);
  mix-blend-mode: multiply;
  position: absolute;
  left: -1%;
  bottom: 0;
  z-index: -1;
}
.is_sp #fv #mainCopy .copy.smaller {
  font-size: 10.5vw;
}
.is_sp #fv #mainCopy .sub {
  font-size: 4.58vw;
  margin-top: 1.5em;
}
.is_sp #fv {
  /*mainCopy*/
}
.is_sp #fv .pict#fvPict {
  width: 100%;
  height: 55vh;
  top: 42%;
  left: 0;
  display: flex;
  align-items: flex-start;
}
.is_sp #fv .pict#fvPict img {
  width: 100%;
  height: auto;
}
.is_sp {
  /*fv*/
}
.is_sp .homeContSec .innerBlock {
  width: 100%;
  padding: 0 5vw;
}
.is_sp .homeContSec .secTitle {
  display: flex;
  align-items: flex-end;
  margin-bottom: 1em;
  flex-wrap: wrap;
}
.is_sp .homeContSec .secTitle .main {
  font-size: 7.63vw;
  font-weight: 800;
  line-height: 1;
  margin-right: 4vw;
}
.is_sp .homeContSec .secTitle .sub {
  font-size: 4.07vw;
  font-family: "Dela Gothic One", sans-serif;
  color: var(--paleOrange);
  letter-spacing: 0.1em;
  margin-top: 5px;
}
.is_sp .homeContSec .kwskBtn {
  width: 50vw;
  height: 13.5vw;
  margin-top: 5vw;
  margin-left: auto;
  margin-right: auto;
}
.is_sp .homeContSec .kwskBtn .title {
  font-size: 4.83vw;
}
.is_sp .homeContSec .pictBlock .pict {
  width: 100%;
  aspect-ratio: 19/15;
  overflow: hidden;
  border-bottom-right-radius: max(35px, 4vw);
}
.is_sp .homeContSec .pictBlock .pict img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.is_sp .homeContSec .textScrolling {
  position: absolute;
  bottom: 12vw;
  height: 12vw;
  width: 100%;
  display: flex;
  overflow: hidden;
}
.is_sp .homeContSec .textScrolling .pict {
  height: 100%;
  width: auto;
  animation: scroll-left 25s infinite linear 0.5s both;
  /* transform:translateX(-100%); */
}
.is_sp .homeContSec .textScrolling .pict img {
  height: 100%;
  width: auto;
}
.is_sp .homeContSec {
  /*textScrolling*/
}
.is_sp {
  /*homeContSec*/
}
.is_sp #homeNewsSec {
  padding: 10.1vw 0;
}
.is_sp #homeNewsSec .innerBlock {
  display: flex;
  flex-direction: column;
}
.is_sp #homeNewsSec .headerBlock {
  order: 0;
}
.is_sp #homeNewsSec {
  /*headerBlock*/
}
.is_sp #homeNewsSec .kwskBlock {
  order: 2;
}
.is_sp #homeNewsSec .contBlock {
  width: 100%;
  order: 1;
  margin-bottom: 10vw;
}
.is_sp #homeNewsSec .contBlock .newsList .topic {
  border-bottom: 1px dashed #fff;
  position: relative;
}
.is_sp #homeNewsSec .contBlock .newsList .topic::after {
  width: 5vw;
  right: 1em;
}
.is_sp #homeNewsSec .contBlock .newsList .topic .inner {
  padding: 1em 3.5em 1em 0;
  display: block;
}
.is_sp #homeNewsSec .contBlock .newsList .topic .inner p {
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.is_sp #homeNewsSec .contBlock .newsList .topic .inner .date {
  width: 100%;
}
.is_sp #homeNewsSec .contBlock .newsList .topic .inner .title {
  width: 100%;
}
.is_sp #homeNewsSec {
  /*contBlock*/
}
.is_sp {
  /*homeNewsSec*/
}
.is_sp #homeAboutSec {
  padding: 15.25vw 0 30vw;
}
.is_sp #homeAboutSec .contBlock {
  width: 100%;
  margin-bottom: 12.72vw;
}
.is_sp #homeAboutSec .pictBlock {
  width: 100%;
}
.is_sp {
  /*homeAboutSec*/
}
.is_sp #homeServiceSec {
  padding: 15.25vw 0;
}
.is_sp #homeServiceSec .contBlock {
  width: 100%;
  margin-bottom: 12.72vw;
}
.is_sp #homeServiceSec .pictBlock {
  width: 100%;
}
.is_sp {
  /*homeServiceSec*/
}
.is_sp #homeWorksSec {
  padding: 15.25vw 0;
  border-top-left-radius: 8vw;
  border-top-right-radius: 8vw;
}
.is_sp #homeWorksSec .innerBlock {
  display: flex;
  flex-direction: column;
  padding: 0;
}
.is_sp #homeWorksSec .headerBlock {
  width: 100%;
  display: flex;
  justify-content: space-between;
  order: 0;
  padding: 0 4vw;
}
.is_sp #homeWorksSec {
  /*headerBlock*/
}
.is_sp #homeWorksSec .kwskBlock {
  order: 2;
}
.is_sp #homeWorksSec .contBlock {
  width: 100%;
  order: 1;
  padding-bottom: 22vw;
}
.is_sp #homeWorksSec .contBlock .worksSlider .topic {
  padding: 0 4vw 10vw;
  max-height: 120vw;
}
.is_sp #homeWorksSec .contBlock .worksSlider .topic .inner {
  display: block;
  padding: 4vw;
  background: #fff;
}
.is_sp #homeWorksSec .contBlock .worksSlider .topic .pict {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  margin-bottom: 0.5em;
}
.is_sp #homeWorksSec .contBlock .worksSlider .topic .pict img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.is_sp #homeWorksSec .contBlock .worksSlider .topic .contBox .text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  max-height: 4.5em;
}
.is_sp #homeWorksSec .contBlock .worksSlider .topic .moreLink {
  font-size: 4vw;
}
.is_sp #homeWorksSec .contBlock .worksSlider .topic {
  /*moreLink*/
}
.is_sp #homeWorksSec .contBlock .worksSlider {
  /*topic*/
}
.is_sp #homeWorksSec .contBlock {
  /*worksSlider*/
}
.is_sp #homeWorksSec {
  /*contBlock swiper*/
}
.is_sp #homeWorksSec .container {
  position: relative;
}
.is_sp #homeWorksSec .container .swiper-button-prev,
.is_sp #homeWorksSec .container .swiper-button-next {
  opacity: 0;
}
.is_sp #homeWorksSec .container .swiper-pagination {
  bottom: 10vw;
}
.is_sp #homeWorksSec .container .swiper-pagination .swiper-pagination-bullet {
  background: #fff;
  opacity: 1;
  width: 10vw;
  height: 5px;
  border-radius: 0;
}
.is_sp #homeWorksSec .container .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--orange);
}
.is_sp #homeWorksSec .container {
  /*swiper-pagination*/
}
.is_sp #homeWorksSec {
  /*container*/
}
.is_sp {
  /*homeWorksSec*/
} /*is_sp*/
#aboutPagegWrapper #firstBlock .pictBlock {
  aspect-ratio: 4/2.4;
  align-self: flex-start;
}
#aboutPagegWrapper #firstBlock .pictBlock .pict {
  width: 100%;
  height: 100%;
}
#aboutPagegWrapper {
  /*firstBlock*/
}
#aboutPagegWrapper .appealSec {
  border-top-left-radius: 35px;
  border-top-right-radius: 35px;
}
#aboutPagegWrapper .appealSec .appealTitle .icon {
  width: 60px;
  margin: 0 auto 10px;
}
#aboutPagegWrapper .appealSec .baseSet {
  display: flex;
  justify-content: space-between;
  margin-bottom: 100px;
}
#aboutPagegWrapper .appealSec .baseSet:last-of-type {
  margin-bottom: 0;
}
#aboutPagegWrapper .appealSec .baseSet .pict {
  width: 30%;
  height: auto;
  aspect-ratio: 25/17;
  overflow: hidden;
  border-bottom-right-radius: 35px;
  align-self: flex-start;
}
#aboutPagegWrapper .appealSec .baseSet .pict img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
#aboutPagegWrapper .appealSec .baseSet .contBox {
  width: calc(70% - min(50px, 10vw));
}
#aboutPagegWrapper .appealSec .baseSet .contBox .header {
  display: flex;
  align-items: center;
  margin-bottom: 0.75em;
  padding-bottom: 0.25em;
  position: relative;
}
#aboutPagegWrapper .appealSec .baseSet .contBox .header::after {
  content: "";
  background-image: linear-gradient(to right, var(--baseBlue) 1px, transparent 1px, transparent 5px);
  background-size: 5px 1px;
  background-position: left bottom;
  background-repeat: repeat-x;
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  height: 5px;
  width: 100%;
}
#aboutPagegWrapper .appealSec .baseSet .contBox .header .num {
  font-size: 55px;
  font-weight: 800;
  color: var(--orange);
  margin-right: 0.25em;
}
#aboutPagegWrapper .appealSec .baseSet .contBox .header .title {
  font-size: 29px;
  font-weight: 700;
  color: var(--deepBlue);
}
#aboutPagegWrapper .appealSec .baseSet {
  /*contBox*/
}
#aboutPagegWrapper .appealSec {
  /*baseSet*/
}
#aboutPagegWrapper .appealSec .cardList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#aboutPagegWrapper .appealSec .cardList .card {
  width: min(390px, 31% - 10px);
  padding: 25px 20px 40px;
  background: var(--yellow);
  border-bottom-right-radius: 35px;
  margin-bottom: min(55px, 5vw);
  align-self: flex-start;
}
#aboutPagegWrapper .appealSec .cardList .card:nth-last-of-type(3) {
  margin-bottom: 0;
}
#aboutPagegWrapper .appealSec .cardList .card .pict {
  aspect-ratio: 25/17;
  overflow: hidden;
}
#aboutPagegWrapper .appealSec .cardList .card .pict img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
#aboutPagegWrapper .appealSec .cardList .card .cont .name {
  border-bottom: 2px solid var(--deepBlue);
  font-weight: 500;
  margin-bottom: 0.5em;
  padding: 0.8em 0;
}
#aboutPagegWrapper .appealSec .cardList .card .cont .name .inner {
  color: var(--deepBlue);
}
#aboutPagegWrapper .appealSec .cardList .card .cont .name {
  display: flex;
  align-items: center;
}
#aboutPagegWrapper .appealSec .cardList .card .cont .name::before {
  content: "";
  display: block;
  width: 0.75em;
  height: 1.25em;
  margin-right: 0.3em;
  background: var(--baseBlue);
  border-top-right-radius: 0.55em;
  border-bottom-right-radius: 0.55em;
}
#aboutPagegWrapper .appealSec .cardList .card .cont .text:last-of-type {
  margin-bottom: 0;
}
#aboutPagegWrapper .appealSec .cardList .card {
  /*cont*/
}
#aboutPagegWrapper {
  /*appealSec*/
} /*aboutPagegWrapper*/
.is_tab #aboutPagegWrapper #firstBlock.pageLeadSec .pictBlock {
  padding-left: 0;
}
.is_tab #aboutPagegWrapper .appealSec .baseSet {
  display: block;
}
.is_tab #aboutPagegWrapper .appealSec .baseSet .pict {
  width: 70%;
  margin: 0 auto 7vw;
}
.is_tab #aboutPagegWrapper .appealSec .baseSet .contBox {
  width: 100%;
}
.is_tab #aboutPagegWrapper .appealSec .cardList .card {
  width: 47%;
}
.is_tab #aboutPagegWrapper {
  /*appealSec*/
}
.is_tab {
  /*aboutPagegWrapper*/
} /*is_tab*/
.is_sp #aboutPagegWrapper .appealSec .appealTitle .icon {
  width: 10.9vw;
  margin: 0 auto 8px;
}
.is_sp #aboutPagegWrapper .appealSec .baseSet {
  display: block;
  margin-bottom: 18.1vw;
}
.is_sp #aboutPagegWrapper .appealSec .baseSet .pict {
  width: 100%;
}
.is_sp #aboutPagegWrapper .appealSec .baseSet .contBox {
  width: 100%;
}
.is_sp #aboutPagegWrapper .appealSec .baseSet .contBox .header {
  justify-content: space-between;
  width: 100%;
  padding: 1em 0;
}
.is_sp #aboutPagegWrapper .appealSec .baseSet .contBox .header .num {
  font-size: 9.67vw;
  width: 15vw;
  margin: 0;
}
.is_sp #aboutPagegWrapper .appealSec .baseSet .contBox .header .title {
  font-size: 5.85vw;
  width: calc(100% - 17vw);
  line-height: 1.4;
}
.is_sp #aboutPagegWrapper .appealSec .baseSet {
  /*contBox*/
}
.is_sp #aboutPagegWrapper .appealSec {
  /*baseSet*/
}
.is_sp #aboutPagegWrapper .appealSec .cardList {
  display: block;
}
.is_sp #aboutPagegWrapper .appealSec .cardList .card {
  width: 100%;
  padding: 5.3vw;
  border-bottom-right-radius: 35px;
  margin-bottom: 7vw;
}
.is_sp #aboutPagegWrapper .appealSec .cardList .card .pict {
  aspect-ratio: 25/17;
  overflow: hidden;
}
.is_sp #aboutPagegWrapper .appealSec .cardList .card .pict img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.is_sp #aboutPagegWrapper .appealSec .cardList .card .cont .name {
  font-size: 5.85vw;
  border-bottom: 2px solid var(--deepBlue);
  margin-bottom: 0.5em;
  padding: 0.8em 0;
}
.is_sp #aboutPagegWrapper .appealSec .cardList .card .cont .name .inner {
  color: var(--deepBlue);
}
.is_sp #aboutPagegWrapper .appealSec .cardList .card .cont .name {
  display: flex;
  align-items: center;
}
.is_sp #aboutPagegWrapper .appealSec .cardList .card .cont .name::before {
  content: "";
  display: block;
  width: 0.75em;
  height: 1.25em;
  margin-right: 0.3em;
  background: var(--baseBlue);
  border-top-right-radius: 0.55em;
  border-bottom-right-radius: 0.55em;
}
.is_sp #aboutPagegWrapper .appealSec .cardList .card .cont .text:last-of-type {
  margin-bottom: 0;
}
.is_sp #aboutPagegWrapper .appealSec .cardList .card {
  /*cont*/
}
.is_sp #aboutPagegWrapper {
  /*appealSec*/
}
.is_sp {
  /*aboutPagegWrapper*/
}

#servicePagegWrapper #firstBlock .pictBlock {
  aspect-ratio: 4/2.4;
  align-self: flex-start;
}
#servicePagegWrapper #firstBlock .pictBlock .pict {
  width: 100%;
  height: 100%;
}
#servicePagegWrapper {
  /*firstBlock*/
}
#servicePagegWrapper .appealSec {
  border-top-left-radius: 35px;
  border-top-right-radius: 35px;
}
#servicePagegWrapper .appealSec .appealTitle .icon {
  width: 60px;
  margin: 0 auto 10px;
}
#servicePagegWrapper .appealSec .baseSet {
  display: flex;
  justify-content: space-between;
  margin-bottom: 100px;
}
#servicePagegWrapper .appealSec .baseSet:last-of-type {
  margin-bottom: 0;
}
#servicePagegWrapper .appealSec .baseSet .pict {
  width: 30%;
  height: auto;
  aspect-ratio: 25/17;
  overflow: hidden;
  border-bottom-right-radius: 35px;
  align-self: flex-start;
}
#servicePagegWrapper .appealSec .baseSet .pict img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
#servicePagegWrapper .appealSec .baseSet .contBox {
  width: calc(70% - min(50px, 10vw));
}
#servicePagegWrapper .appealSec .baseSet .contBox .header {
  display: flex;
  align-items: center;
  margin-bottom: 0.5em;
  position: relative;
  font-size: 29px;
}
#servicePagegWrapper .appealSec .baseSet .contBox .header .icon {
  width: 1.1em;
  height: 1.1em;
  margin-right: 0.5em;
  padding-top: 0.05em;
}
#servicePagegWrapper .appealSec .baseSet .contBox .header .icon img {
  display: block;
}
#servicePagegWrapper .appealSec .baseSet .contBox .header .title {
  font-weight: 700;
  color: var(--deepBlue);
}
#servicePagegWrapper .appealSec .baseSet .contBox .categoryList {
  display: flex;
  gap: 0.75em;
  flex-wrap: wrap;
  margin-top: 0.75em;
}
#servicePagegWrapper .appealSec .baseSet .contBox .categoryList .cate {
  width: -moz-fit-content;
  width: fit-content;
  height: 2em;
  padding: 0.2em 1.2em;
  border-radius: 1em;
  background: var(--baseBlue);
  list-style: none;
}
#servicePagegWrapper .appealSec .baseSet .contBox .categoryList .cate.orange {
  background: var(--orange);
}
#servicePagegWrapper .appealSec .baseSet .contBox .categoryList .cate .title {
  color: #fff;
}
#servicePagegWrapper .appealSec .baseSet {
  /*contBox*/
}
#servicePagegWrapper .appealSec .baseSet.grid {
  display: grid;
  grid-template-columns: 30% 45px 1fr;
  grid-template-rows: 36px 1fr auto;
  gap: 5px;
}
#servicePagegWrapper .appealSec .baseSet.grid .pict {
  grid-column-start: 1;
  grid-column-end: 2;
  grid-row-start: 1;
  grid-row-end: 6;
  width: 100%;
}
#servicePagegWrapper .appealSec .baseSet.grid .header {
  grid-column-start: 3;
  display: flex;
  align-items: center;
  margin-bottom: 0.5em;
  position: relative;
  font-size: 29px;
}
#servicePagegWrapper .appealSec .baseSet.grid .header .icon {
  width: 1.1em;
  height: 1.1em;
  margin-right: 0.5em;
  padding-top: 0.05em;
}
#servicePagegWrapper .appealSec .baseSet.grid .header .icon img {
  display: block;
}
#servicePagegWrapper .appealSec .baseSet.grid .header .title {
  font-weight: 700;
  color: var(--deepBlue);
}
#servicePagegWrapper .appealSec .baseSet.grid {
  /*header*/
}
#servicePagegWrapper .appealSec .baseSet.grid .cont {
  grid-column-start: 3;
}
#servicePagegWrapper .appealSec .baseSet.grid .categoryList {
  grid-column-start: 3;
  display: flex;
  gap: 0.75em;
  flex-wrap: wrap;
  margin-top: 0.75em;
}
#servicePagegWrapper .appealSec .baseSet.grid .categoryList .cate {
  width: -moz-fit-content;
  width: fit-content;
  height: 2em;
  padding: 0.2em 1.2em;
  border-radius: 1em;
  background: var(--baseBlue);
  list-style: none;
}
#servicePagegWrapper .appealSec .baseSet.grid .categoryList .cate.orange {
  background: var(--orange);
}
#servicePagegWrapper .appealSec .baseSet.grid .categoryList .cate .title {
  color: #fff;
}
#servicePagegWrapper .appealSec .baseSet.grid {
  /*categoryList*/
}
#servicePagegWrapper .appealSec .baseSet {
  /*grid*/
}
#servicePagegWrapper .appealSec {
  /*baseSet*/
}
#servicePagegWrapper .appealSec .cardList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#servicePagegWrapper .appealSec .cardList .card {
  width: min(390px, 31% - 10px);
  padding: 25px 20px 40px;
  background: var(--yellow);
  border-bottom-right-radius: 35px;
  margin-bottom: min(55px, 5vw);
  align-self: flex-start;
}
#servicePagegWrapper .appealSec .cardList .card:nth-last-of-type(3) {
  margin-bottom: 0;
}
#servicePagegWrapper .appealSec .cardList .card .pict {
  aspect-ratio: 25/17;
  overflow: hidden;
}
#servicePagegWrapper .appealSec .cardList .card .pict img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
#servicePagegWrapper .appealSec .cardList .card .cont .name {
  border-bottom: 2px solid var(--deepBlue);
  margin-bottom: 0.5em;
  padding: 0.8em 0;
}
#servicePagegWrapper .appealSec .cardList .card .cont .name .inner {
  color: var(--deepBlue);
}
#servicePagegWrapper .appealSec .cardList .card .cont .name {
  display: flex;
  align-items: center;
}
#servicePagegWrapper .appealSec .cardList .card .cont .name::before {
  content: "";
  display: block;
  width: 0.75em;
  height: 1.25em;
  margin-right: 0.3em;
  background: var(--baseBlue);
  border-top-right-radius: 0.55em;
  border-bottom-right-radius: 0.55em;
}
#servicePagegWrapper .appealSec .cardList .card .cont .text:last-of-type {
  margin-bottom: 0;
}
#servicePagegWrapper .appealSec .cardList .card {
  /*cont*/
}
#servicePagegWrapper {
  /*appealSec*/
} /*servicePagegWrapper*/
.is_tab #servicePagegWrapper #firstBlock.pageLeadSec .pictBlock {
  padding-left: 0;
}
.is_tab #servicePagegWrapper .appealSec .baseSet {
  display: flex;
  flex-direction: column;
}
.is_tab #servicePagegWrapper .appealSec .baseSet div {
  width: 100%;
}
.is_tab #servicePagegWrapper .appealSec .baseSet .pict {
  order: 1;
  width: 70%;
  margin: 0 auto 7vw;
}
.is_tab #servicePagegWrapper .appealSec .baseSet .header {
  order: 0;
}
.is_tab #servicePagegWrapper .appealSec .baseSet .cont {
  order: 2;
}
.is_tab #servicePagegWrapper .appealSec .baseSet .categoryList {
  order: 3;
}
.is_tab #servicePagegWrapper {
  /*appealSec*/
}
.is_tab {
  /*servicePagegWrapper*/
} /*is_tab*/
.is_sp #servicePagegWrapper .appealSec .appealTitle .icon {
  width: 10.9vw;
  margin: 0 auto 8px;
}
.is_sp #servicePagegWrapper .appealSec .baseSet {
  display: flex;
  flex-direction: column;
  margin-bottom: 18.1vw;
}
.is_sp #servicePagegWrapper .appealSec .baseSet div {
  width: 100%;
}
.is_sp #servicePagegWrapper .appealSec .baseSet .pict {
  order: 1;
  width: 100%;
  margin-bottom: 2.5vw;
}
.is_sp #servicePagegWrapper .appealSec .baseSet .header {
  order: 0;
  justify-content: space-between;
  width: 100%;
  padding: 1em 0 0.4em;
  margin-bottom: 0;
}
.is_sp #servicePagegWrapper .appealSec .baseSet .header .icon {
  width: 1.3em;
  height: 1.3em;
  margin: 0;
  margin-right: 1.5vw;
}
.is_sp #servicePagegWrapper .appealSec .baseSet .header .title {
  font-size: 7.5vw;
  width: calc(100% - 11vw);
  line-height: 1.4;
}
.is_sp #servicePagegWrapper .appealSec .baseSet .cont {
  order: 2;
}
.is_sp #servicePagegWrapper .appealSec .baseSet .categoryList {
  gap: 2.5vw;
  order: 3;
}
.is_sp #servicePagegWrapper .appealSec .baseSet .categoryList .cate {
  height: 7.4vw;
}
.is_sp #servicePagegWrapper .appealSec .baseSet .categoryList .cate .title {
  font-size: 3.6vw;
}
.is_sp #servicePagegWrapper .appealSec {
  /*baseSet*/
}
.is_sp #servicePagegWrapper .appealSec .cardList {
  display: block;
}
.is_sp #servicePagegWrapper .appealSec .cardList .card {
  width: 100%;
  padding: 5.3vw;
  border-bottom-right-radius: 35px;
  margin-bottom: 7vw;
}
.is_sp #servicePagegWrapper .appealSec .cardList .card .pict {
  aspect-ratio: 25/17;
  overflow: hidden;
}
.is_sp #servicePagegWrapper .appealSec .cardList .card .pict img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.is_sp #servicePagegWrapper .appealSec .cardList .card .cont .name {
  font-size: 5.85vw;
  border-bottom: 2px solid var(--deepBlue);
  margin-bottom: 0.5em;
  padding: 0.8em 0;
}
.is_sp #servicePagegWrapper .appealSec .cardList .card .cont .name .inner {
  color: var(--deepBlue);
}
.is_sp #servicePagegWrapper .appealSec .cardList .card .cont .name {
  display: flex;
  align-items: center;
}
.is_sp #servicePagegWrapper .appealSec .cardList .card .cont .name::before {
  content: "";
  display: block;
  width: 0.75em;
  height: 1.25em;
  margin-right: 0.3em;
  background: var(--baseBlue);
  border-top-right-radius: 0.55em;
  border-bottom-right-radius: 0.55em;
}
.is_sp #servicePagegWrapper .appealSec .cardList .card .cont .text:last-of-type {
  margin-bottom: 0;
}
.is_sp #servicePagegWrapper .appealSec .cardList .card {
  /*cont*/
}
.is_sp #servicePagegWrapper {
  /*appealSec*/
}
.is_sp {
  /*servicePagegWrapper*/
}

#companyPagegWrapper #dataSec .innerBlock {
  background: var(--paleGray);
  padding: min(80px, 7.2vw);
}
#companyPagegWrapper .dataList {
  width: min(845px, 87vw);
  margin: 0 auto;
}
#companyPagegWrapper .dataList .topic {
  display: flex;
  margin-bottom: 1.25em;
  padding-bottom: 1.25em;
  position: relative;
}
#companyPagegWrapper .dataList .topic::after {
  content: "";
  background-image: linear-gradient(to right, var(--baseBlue) 1px, transparent 1px, transparent 5px);
  background-size: 5px 1px;
  background-position: left bottom;
  background-repeat: repeat-x;
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  height: 5px;
  width: 100%;
}
#companyPagegWrapper .dataList .topic .head .title {
  font-size: 1em;
  color: var(--baseBlue);
}
#companyPagegWrapper .dataList .topic .title {
  font-size: 29px;
  font-weight: 700;
  color: var(--deepBlue);
}
#companyPagegWrapper {
  /*dataList*/
}
#companyPagegWrapper .discList .topicHeader {
  display: flex;
  align-items: center;
  margin-bottom: 0.2em;
  margin-top: 0.8em;
}
#companyPagegWrapper .discList .topicHeader::before {
  content: "";
  display: inline-block;
  width: 0.8em;
  height: 0.8em;
  border-radius: 50%;
  background: var(--baseBlue);
  margin-right: 8px;
}
#companyPagegWrapper .discList .topicHeader:first-of-type {
  margin-top: 0;
}
#companyPagegWrapper .discList {
  /*topicHeader*/
}
#companyPagegWrapper .discList .topicCont {
  padding-left: calc(0.8em + 8px);
  font-size: 17px;
  color: var(--baseBlue);
}
#companyPagegWrapper .discList .topicCont .list .listItem {
  color: var(--baseBlue);
  font-size: 17px;
  margin-bottom: 0.5em;
  display: flex;
}
#companyPagegWrapper .discList .topicCont .list .listItem::before {
  content: "・";
  width: 1em;
}
#companyPagegWrapper .discList .topicCont .list .listItem:last-of-type {
  margin-bottom: 0;
}
#companyPagegWrapper .discList {
  /*topicCont*/
}
#companyPagegWrapper {
  /*discList*/
}
#companyPagegWrapper #accessSec {
  padding: min(125px, 11.36vw) 0 0;
}
#companyPagegWrapper #accessSec .mapBlock {
  width: 100%;
  height: min(570px, 93.38vw);
}
#companyPagegWrapper #accessSec .mapBlock iframe {
  width: 100%;
  height: 100%;
}

/*companyPagegWrapper*/
.is_pc #companyPagegWrapper .dataList .topic .head {
  width: 30%;
}
.is_pc #companyPagegWrapper .dataList .topic .cont {
  width: 70%;
}

/*ispc*/
.is_tab #companyPagegWrapper .innerBlock {
  width: 92vw;
  margin: 0 auto;
}
.is_tab #companyPagegWrapper .dataList {
  width: 100%;
}
.is_tab #companyPagegWrapper .dataList .topic .head {
  width: 25%;
}
.is_tab #companyPagegWrapper .dataList .topic .cont {
  width: 75%;
}
.is_tab {
  /*companyPagegWrapper*/
} /*is_tab*/
.is_sp #companyPagegWrapper #dataSec .innerBlock {
  width: 92vw;
  margin: 0 auto;
  padding: 5vw 3.5vw 7vw;
}
.is_sp #companyPagegWrapper {
  /*dataSec*/
}
.is_sp #companyPagegWrapper .dataList {
  width: 100%;
}
.is_sp #companyPagegWrapper .dataList .topic {
  display: block;
  margin-bottom: 1.25em;
  padding-bottom: 1.25em;
  position: relative;
}
.is_sp #companyPagegWrapper .dataList .topic::after {
  content: "";
  background-image: linear-gradient(to right, var(--baseBlue) 1px, transparent 1px, transparent 5px);
  background-size: 5px 1px;
  background-position: left bottom;
  background-repeat: repeat-x;
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  height: 5px;
  width: 100%;
}
.is_sp #companyPagegWrapper .dataList .topic .head .title {
  font-size: 1em;
  color: var(--baseBlue);
}
.is_sp #companyPagegWrapper .dataList .topic .title {
  font-size: 29px;
  font-weight: 700;
  color: var(--deepBlue);
}
.is_sp #companyPagegWrapper .dataList .topic .cont .inner {
  font-size: 4vw;
}
.is_sp #companyPagegWrapper .dataList {
  /*topic*/
}
.is_sp #companyPagegWrapper {
  /*dataList*/
}
.is_sp #companyPagegWrapper .discList .topicHeader {
  display: flex;
  align-items: center;
  margin-bottom: 0.2em;
  margin-top: 4vw;
}
.is_sp #companyPagegWrapper .discList {
  /*topicHeader*/
}
.is_sp #companyPagegWrapper .discList .topicCont {
  padding-left: 1.25em;
  font-size: 4vw;
}
.is_sp #companyPagegWrapper .discList .topicCont .list .listItem {
  font-size: 4vw;
}
.is_sp #companyPagegWrapper .discList {
  /*topicCont*/
}
.is_sp #companyPagegWrapper {
  /*discList*/
}

#contactPagegWrapper .headSec {
  padding-bottom: 115px;
}
#contactPagegWrapper .headSec .preComment {
  text-align: center;
  margin: 80px 0 50px;
}
#contactPagegWrapper .headSec .phoneBlock {
  width: min(1038px, 92%);
  margin: 0 auto;
  background: var(--paleBlue);
  display: flex;
  padding: min(50px, 4vw);
  border-radius: 15px;
}
#contactPagegWrapper .headSec .phoneBlock .left {
  width: 58%;
  display: flex;
  align-items: center;
  padding: 1em 0;
}
#contactPagegWrapper .headSec .phoneBlock .left .comment {
  font-size: 1.75em;
  font-weight: 700;
  line-height: 1.4;
}
#contactPagegWrapper .headSec .phoneBlock .left .icon {
  width: min(65px, 5.9vw);
  margin-right: 0.5em;
}
#contactPagegWrapper .headSec .phoneBlock {
  /*left*/
}
#contactPagegWrapper .headSec .phoneBlock .right {
  width: 42%;
  position: relative;
  padding: 1em 0 1em 1.75em;
}
#contactPagegWrapper .headSec .phoneBlock .right::after {
  content: "";
  display: block;
  width: 6px;
  height: 100%;
  background: var(--orange);
  border-radius: 3px;
  position: absolute;
  top: 0;
  left: 0;
}
#contactPagegWrapper .headSec .phoneBlock .right .num {
  font-size: 50px;
  font-weight: 800;
  color: var(--deepBlue);
  line-height: 1;
  margin-bottom: 0.2em;
}
#contactPagegWrapper .headSec .phoneBlock .right .time .header {
  display: inline-block;
  background: var(--baseBlue);
  color: #fff;
  margin-right: 0.5em;
  padding: 0 0.5em;
  border-radius: 4px;
}
#contactPagegWrapper .headSec {
  /*phoneBlock*/
}
#contactPagegWrapper {
  /*headSec*/
}
#contactPagegWrapper #inputSec {
  background: var(--yellow);
}
#contactPagegWrapper #inputSec .innerBlock {
  width: min(1111px, 92%);
  margin: 0 auto;
}
#contactPagegWrapper #inputSec .appealTitle .title {
  color: var(--black);
}
#contactPagegWrapper #inputSec .appealTitle + .contBlock {
  padding-bottom: min(63px, 5.72vw);
}
#contactPagegWrapper #inputSec .inputBlock {
  background: #fff;
  padding: 0 min(120px, 6vw) 50px;
}
#contactPagegWrapper #inputSec .inputBlock .rowBlock {
  display: flex;
  padding: min(40px, 3.63vw) 0;
  position: relative;
}
#contactPagegWrapper #inputSec .inputBlock .rowBlock::after {
  content: "";
  background-image: linear-gradient(to right, var(--baseBlue) 1px, transparent 1px, transparent 5px);
  background-size: 5px 1px;
  background-position: left bottom;
  background-repeat: repeat-x;
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  height: 5px;
  width: 100%;
}
#contactPagegWrapper #inputSec .inputBlock .rowBlock.need .head .wrap {
  display: flex;
  align-items: center;
}
#contactPagegWrapper #inputSec .inputBlock .rowBlock.need .head .wrap::after {
  content: "必須";
  display: block;
  padding: 0 8px 2px;
  line-height: 1;
  color: #fff;
  background: var(--notice);
  font-size: 0.9em;
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  height: 1.4em;
  border-radius: 0.9em;
  margin-left: 0.5em;
}
#contactPagegWrapper #inputSec .inputBlock .rowBlock .head {
  width: 30%;
  padding-top: 0.85em;
}
#contactPagegWrapper #inputSec .inputBlock .rowBlock .cont {
  width: 70%;
}
#contactPagegWrapper #inputSec .inputBlock .rowBlock .cont input,
#contactPagegWrapper #inputSec .inputBlock .rowBlock .cont textarea {
  background: var(--paleBlue);
  padding: 1em;
  font-size: 1em;
}
#contactPagegWrapper #inputSec .inputBlock .rowBlock .cont input::-moz-placeholder, #contactPagegWrapper #inputSec .inputBlock .rowBlock .cont textarea::-moz-placeholder {
  color: #AAB1DB;
}
#contactPagegWrapper #inputSec .inputBlock .rowBlock .cont input::placeholder,
#contactPagegWrapper #inputSec .inputBlock .rowBlock .cont textarea::placeholder {
  color: #AAB1DB;
}
#contactPagegWrapper #inputSec .inputBlock .rowBlock .cont input[type=text] {
  width: min(422px, 100%);
}
#contactPagegWrapper #inputSec .inputBlock .rowBlock .cont textarea {
  width: 100%;
  height: 10em;
}
#contactPagegWrapper #inputSec .inputBlock .rowBlock#phoneRow .cont input {
  width: min(220px, 100%);
}
#contactPagegWrapper #inputSec .inputBlock .rowBlock {
  /*phoneRow*/
}
#contactPagegWrapper #inputSec .inputBlock .rowBlock#addressRow .cont .postalCase {
  margin-bottom: 0.75em;
}
#contactPagegWrapper #inputSec .inputBlock .rowBlock#addressRow .cont .postalCase input {
  width: 150px;
}
#contactPagegWrapper #inputSec .inputBlock .rowBlock#addressRow .cont .addCase input {
  width: 100%;
}
#contactPagegWrapper #inputSec .inputBlock .rowBlock {
  /*addressRow*/
}
#contactPagegWrapper {
  /*inputSec*/
}
#contactPagegWrapper #agreeBox {
  padding: 1em 0;
}
#contactPagegWrapper #agreeBox .cont {
  display: flex;
  justify-content: center;
  align-items: center;
}
#contactPagegWrapper #agreeBox label {
  margin-left: 0.25em;
}
#contactPagegWrapper .btnBox {
  display: flex;
  justify-content: center;
  gap: 20px;
}
#contactPagegWrapper.confirm .rowBlock .head {
  padding-top: 0;
}
#contactPagegWrapper.confirm .rowBlock .cont {
  display: flex;
  align-items: center;
}
#contactPagegWrapper.confirm .btnBox {
  padding: 30px;
  margin-top: min(30px, 8vw);
}
#contactPagegWrapper.confirm .btnBox .btn {
  margin: 0;
  position: relative;
}
#contactPagegWrapper.confirm .btnBox .btn input {
  font-size: 19px;
  color: #fff;
  background: transparent;
}
#contactPagegWrapper.confirm .btnBox .btn label {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
#contactPagegWrapper.confirm .btnBox .submitBtn {
  margin: 0;
  color: #fff;
}
#contactPagegWrapper.confirm .btnBox .submitBtn::after {
  font-size: 19px;
}
#contactPagegWrapper {
  /*confirm*/
}
#contactPagegWrapper.posted .btnBox {
  margin-top: 50px;
}
#contactPagegWrapper {
  /*posted*/
}
#contactPagegWrapper .cf-turnstile div {
  width: 100%;
  display: flex;
  justify-content: center;
}
#contactPagegWrapper .cf-turnstile iframe {
  margin: 0 auto;
}

/*contactPagegWrapper*/
.submitBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 1em;
  background: var(--orange);
  position: relative;
  border-radius: 2px;
  border-bottom-right-radius: 0.6em;
  width: min(243px, 30%);
  height: 53px;
  margin: 1em auto 0;
}
.submitBtn::after {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background-image: url(../images/icon-arrow-white.svg);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 0.35em;
  transform: translateY(-50%);
  transition: 0.2s;
}
.submitBtn.koniro {
  background: var(--deepBlue);
}
.submitBtn .title {
  color: #fff;
}
.submitBtn input[type=submit] {
  -moz-appearance: none;
       appearance: none; /* ブラウザ固有のデザインを解除 */
  -webkit-appearance: none; /* Safari/Chrome用 */
  background: none; /* 背景を透明/解除 */
  border: none; /* 枠線を解除 */
  padding: 0; /* 余白をリセット */
  margin: 0; /* 外側余白をリセット */
  font: inherit; /* フォントサイズなどを親要素に継承 */
  cursor: pointer;
}

/*submitBtn*/
.back.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 1em;
  background: #a6a6a6;
  color: #fff;
  position: relative;
  border-radius: 2px;
  border-bottom-left-radius: 0.6em;
  width: min(243px, 30%);
  height: 53px;
  margin: 1em auto 0;
}
.back.btn::after {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background-image: url(../images/icon-arrow-white.svg);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 0.35em;
  transform: translateY(-50%) rotate(180deg);
  transition: 0.2s;
}
.back.btn:hover {
  background: #666;
}
.back.btn:hover::after {
  left: 0.1em;
}
.back.btn input {
  font-size: 19px;
  color: #fff;
  background: transparent;
}

.error .innerBlock {
  width: min(1000px, 92vw);
  margin: 0 auto;
  padding: min(100px, 20vw) 0;
}

/*is_pc*/
.is_tab #contactPagegWrapper .headSec {
  padding-bottom: 115px;
}
.is_tab #contactPagegWrapper .headSec .phoneBlock {
  width: 100%;
  display: block;
}
.is_tab #contactPagegWrapper .headSec .phoneBlock .left {
  width: 100%;
  justify-content: center;
  padding-bottom: 4vw;
}
.is_tab #contactPagegWrapper .headSec .phoneBlock {
  /*left*/
}
.is_tab #contactPagegWrapper .headSec .phoneBlock .right {
  width: 100%;
  padding-top: 4vw;
}
.is_tab #contactPagegWrapper .headSec .phoneBlock .right::after {
  content: "";
  display: block;
  width: 30%;
  height: 6px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.is_tab #contactPagegWrapper .headSec .phoneBlock .right .num {
  font-size: 6.5vw;
  text-align: center;
}
.is_tab #contactPagegWrapper .headSec .phoneBlock .right .time {
  text-align: center;
}
.is_tab #contactPagegWrapper .headSec {
  /*phoneBlock*/
}
.is_tab #contactPagegWrapper {
  /*headSec*/
}
.is_tab #contactPagegWrapper #inputSec .inputBlock .rowBlock {
  display: block;
}
.is_tab #contactPagegWrapper #inputSec .inputBlock .rowBlock .head {
  width: 100%;
  padding-bottom: 0.75em;
  font-size: 2.25vw;
}
.is_tab #contactPagegWrapper #inputSec .inputBlock .rowBlock .cont {
  width: 100%;
}
.is_tab #contactPagegWrapper {
  /*inputSec*/
}
.is_tab {
  /*contactPagegWrapper*/
} /*is_tab*/
.is_sp #contactPagegWrapper .headSec {
  padding-bottom: 115px;
}
.is_sp #contactPagegWrapper .headSec .phoneBlock {
  width: 100%;
  display: block;
}
.is_sp #contactPagegWrapper .headSec .phoneBlock .left {
  width: 100%;
  justify-content: center;
  padding-bottom: 6vw;
  display: block;
  text-align: center;
}
.is_sp #contactPagegWrapper .headSec .phoneBlock .left .icon {
  width: 9.2vw;
  margin: 0 auto 1vw;
}
.is_sp #contactPagegWrapper .headSec .phoneBlock .left .comment {
  font-size: 6.1vw;
}
.is_sp #contactPagegWrapper .headSec .phoneBlock {
  /*left*/
}
.is_sp #contactPagegWrapper .headSec .phoneBlock .right {
  width: 100%;
  padding-top: 6vw;
  padding-left: 0;
}
.is_sp #contactPagegWrapper .headSec .phoneBlock .right::after {
  content: "";
  display: block;
  width: 30%;
  height: 6px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.is_sp #contactPagegWrapper .headSec .phoneBlock .right .num {
  font-size: 10.17vw;
  text-align: center;
}
.is_sp #contactPagegWrapper .headSec .phoneBlock .right .time {
  text-align: center;
}
.is_sp #contactPagegWrapper .headSec {
  /*phoneBlock*/
}
.is_sp #contactPagegWrapper {
  /*headSec*/
}
.is_sp #contactPagegWrapper #inputSec .inputBlock .rowBlock {
  display: block;
}
.is_sp #contactPagegWrapper #inputSec .inputBlock .rowBlock .head {
  width: 100%;
  padding-bottom: 0.75em;
  font-size: 4vw;
}
.is_sp #contactPagegWrapper #inputSec .inputBlock .rowBlock .cont {
  width: 100%;
}
.is_sp #contactPagegWrapper #inputSec .inputBlock .rowBlock#phoneRow .cont input {
  width: 100%;
}
.is_sp #contactPagegWrapper #inputSec .inputBlock .rowBlock {
  /*phoneRow*/
}
.is_sp #contactPagegWrapper #inputSec .inputBlock .rowBlock#addressRow .cont .postalCase input {
  width: 60%;
}
.is_sp #contactPagegWrapper #inputSec .inputBlock .rowBlock {
  /*addressRow*/
}
.is_sp #contactPagegWrapper #inputSec .inputBlock #agreeBox .cont {
  font-size: 4vw;
}
.is_sp #contactPagegWrapper #inputSec .inputBlock {
  /*agreeBox*/
}
.is_sp #contactPagegWrapper #inputSec .btn {
  width: 50%;
}
.is_sp #contactPagegWrapper {
  /*inputSec*/
}
.is_sp #contactPagegWrapper.confirm .btnBox {
  padding: 8vw 0 4vw;
  gap: 10px;
}
.is_sp #contactPagegWrapper.confirm .btnBox .submitBtn,
.is_sp #contactPagegWrapper.confirm .btnBox .back.btn {
  width: calc(50% - 10px);
}
.is_sp #contactPagegWrapper.confirm .btnBox .submitBtn input[type=submit],
.is_sp #contactPagegWrapper.confirm .btnBox .back.btn input[type=submit] {
  width: 100%;
  height: 100%;
}
.is_sp {
  /*contactPagegWrapper*/
} /*is_sp*/
@media (hover) {
  .submitBtn {
    transition: 0.2s;
  }
  .submitBtn:hover {
    background: var(--activeOrange);
  }
  .submitBtn:hover::after {
    right: 0;
  }
  /*submitBtn*/
}
#worksPagegWrapper .postTitle {
  padding-top: min(30px, 5vw);
}
#worksPagegWrapper .postTitle .title {
  line-height: 1.4;
}
#worksPagegWrapper .postTitle .date {
  font-size: min(19px, 4vw);
  font-weight: 400;
  margin-top: 0.25em;
  color: #909090;
}
#worksPagegWrapper .cateBtn {
  background: var(--orange);
  color: #fff;
  line-height: 1;
  min-height: 1.8em;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.9em;
  padding: 0 0.64em 0.1em;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
#worksPagegWrapper .tags,
#worksPagegWrapper .tagBtn {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
}
#worksPagegWrapper .tags > a,
#worksPagegWrapper .tagBtn > a {
  color: var(--baseBlue);
  padding: 0.1em 0.4em 0.2em;
  border: 1px solid var(--baseBlue);
  font-size: 0.8em;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  display: block;
}
#worksPagegWrapper #worksSec {
  padding: 100px;
}
#worksPagegWrapper #worksSec .workList {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
#worksPagegWrapper #worksSec .workList .topic {
  background: var(--paleBlue);
  position: relative;
}
#worksPagegWrapper #worksSec .workList .topic .inner {
  display: block;
  height: 100%;
  padding: min(19px, 3.4vw);
  padding-bottom: min(30px, 4.8vw);
}
#worksPagegWrapper #worksSec .workList .topic .pict {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  margin-bottom: 0.5em;
  border-bottom-right-radius: 1.25em;
  background-image: url(../images/nophoto.jpg);
  background-size: cover;
  background-position: center;
}
#worksPagegWrapper #worksSec .workList .topic .pict img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
#worksPagegWrapper #worksSec .workList .topic .contBox .text,
#worksPagegWrapper #worksSec .workList .topic .contBox .text p {
  margin-bottom: 0.5em;
  line-height: 1.6;
}
#worksPagegWrapper #worksSec .workList .topic .contBox .data {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 0.75em;
}
#worksPagegWrapper #worksSec .workList .topic .contBox .data .cateList {
  display: flex;
  gap: 6px;
}
#worksPagegWrapper #worksSec .workList .topic .contBox .data .cateList .cateBtn {
  font-size: 0.8em;
}
#worksPagegWrapper #worksSec .workList .topic .contBox .data .date {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.8em;
}
#worksPagegWrapper #worksSec .workList .topic .moreLink {
  font-size: 16px;
  font-family: "Dela Gothic One", sans-serif;
  display: block;
  border-bottom: 1px solid var(--baseBlue);
  padding-right: 1.25em;
  margin-left: auto;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  bottom: 0.4em;
  right: 0.4em;
}
#worksPagegWrapper #worksSec .workList .topic .moreLink::after {
  content: "";
  display: inline-block;
  width: 0.75em;
  height: 0.75em;
  background-image: url(../images/icon-arrow-blue.svg);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
#worksPagegWrapper #worksSec {
  /*workesList*/
}
#worksPagegWrapper #worksSec .sorting .listBox {
  margin-bottom: 1.5em;
}
#worksPagegWrapper #worksSec .sorting .listBox .boxHead {
  font-size: min(20px, 6vw);
  font-weight: 600;
  margin-bottom: 0.25em;
  color: var(--baseBlue);
}
#worksPagegWrapper #worksSec .sorting .categoryList .topic {
  margin-bottom: 0.25em;
}
#worksPagegWrapper #worksSec .sorting .categoryList .topic a {
  font-size: min(18px, 4.4vw);
  color: #fff;
}
#worksPagegWrapper #worksSec .sorting .tagList {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
#worksPagegWrapper #worksSec .sorting .tagList .tagBtn {
  flex-grow: 1;
}
#worksPagegWrapper #worksSec .sorting .tagList .tagBtn a {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
}
#worksPagegWrapper #worksSec .sorting .tagList .tagBtn.is-empty a {
  color: #aaa;
  border-color: #aaa;
  pointer-events: none;
}
#worksPagegWrapper #worksSec .sorting .tagList .tagBtn {
  /*is-empty*/
}
#worksPagegWrapper #worksSec .sorting {
  /*tagList*/
}
#worksPagegWrapper #worksSec {
  /*sorting*/
}
#worksPagegWrapper #worksSec.detailSec .pict.main {
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 3em;
  aspect-ratio: 4/3;
  background: #f0f0f0;
}
#worksPagegWrapper #worksSec.detailSec .pict.main .inner {
  width: 100%;
  height: 100%;
}
#worksPagegWrapper #worksSec.detailSec .pict.main img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}
#worksPagegWrapper #worksSec.detailSec .attribute {
  margin-bottom: min(20px, 5vw);
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
#worksPagegWrapper #worksSec.detailSec .attribute .cateBtn {
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 10px;
}
#worksPagegWrapper #worksSec.detailSec .attribute .tagList {
  display: flex;
  flex-wrap: wrap;
}
#worksPagegWrapper #worksSec.detailSec .attribute .tags {
  gap: initial;
}
#worksPagegWrapper #worksSec.detailSec .attribute .tags > a {
  margin-right: 0.5em;
  margin-bottom: 0.5em;
  white-space: nowrap;
}
#worksPagegWrapper #worksSec.detailSec {
  /*attribute*/
}
#worksPagegWrapper #worksSec.detailSec .textBox {
  border: 3px solid var(--paleBlue);
  padding: min(25px, 5vw);
  border-radius: 10px;
  width: 100%;
  align-self: flex-start;
  background: var(--paleBlue);
}
#worksPagegWrapper #worksSec.detailSec .pictList {
  display: flex;
  flex-wrap: wrap;
  margin-top: min(3em, 8vw);
  width: 100%;
}
#worksPagegWrapper #worksSec.detailSec .pictList .topic {
  width: min(290px, 30%);
}
#worksPagegWrapper #worksSec.detailSec .pictList .topic .pict {
  width: 100%;
  aspect-ratio: 4/3;
  background: #f6f6f6;
  margin-bottom: 5px;
}
#worksPagegWrapper #worksSec.detailSec .pictList .topic .pict img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}
#worksPagegWrapper #worksSec.detailSec .pictList .topic .cap {
  font-size: 0.8em;
}
#worksPagegWrapper #worksSec {
  /*detailSec*/
}
#worksPagegWrapper #worksSec:has(.article) {
  padding-top: min(25px, 4vw);
}
#worksPagegWrapper {
  /*worksSec*/
} /*worksPagegWrapper*/
.is_pc #worksPagegWrapper #worksSec .innerBlock {
  display: grid;
  grid-template-columns: 1fr 75px 200px;
}
.is_pc #worksPagegWrapper #worksSec .article {
  grid-column-start: 1;
  grid-column-end: 2;
}
.is_pc #worksPagegWrapper #worksSec .sorting {
  grid-column-start: 3;
}
.is_pc #worksPagegWrapper #worksSec .workList {
  gap: 30px;
}
.is_pc #worksPagegWrapper #worksSec .workList .topic {
  width: calc(33.3333333333% - 20px);
}
.is_pc #worksPagegWrapper #worksSec.detailSec .attribute {
  display: flex;
}
.is_pc #worksPagegWrapper #worksSec.detailSec .attribute .tagList .tags {
  padding-bottom: 0.1em;
}
.is_pc #worksPagegWrapper #worksSec.detailSec .attribute .tagList .tags a {
  margin-bottom: 0;
}
.is_pc #worksPagegWrapper #worksSec.detailSec .attribute .cateBtn {
  margin-right: 15px;
  margin-bottom: 0;
}
.is_pc #worksPagegWrapper #worksSec.detailSec {
  /*attribute*/
}
.is_pc #worksPagegWrapper #worksSec.detailSec .contBlock {
  gap: 35px;
  justify-content: space-between;
}
.is_pc #worksPagegWrapper #worksSec.detailSec .contBlock .pict.main {
  width: 100%;
}
.is_pc #worksPagegWrapper #worksSec.detailSec .contBlock .pictList {
  gap: 20px 50px;
}
.is_pc #worksPagegWrapper #worksSec.detailSec .contBlock .pictList .topic {
  width: calc(33.3333333333% - 36px);
}
.is_pc #worksPagegWrapper #worksSec.detailSec {
  /*contBlock*/
}
.is_pc #worksPagegWrapper #worksSec {
  /*detailSec*/
}
.is_pc {
  /*worksPagegWrapper*/
} /*is_pc*/
.is_tab #worksPagegWrapper #worksSec {
  padding: 5vw;
}
.is_tab #worksPagegWrapper #worksSec .listBlock {
  margin-bottom: 10vw;
}
.is_tab #worksPagegWrapper #worksSec .sorting .categoryList {
  display: flex;
  gap: 1.5vw;
}
.is_tab #worksPagegWrapper #worksSec .workList {
  justify-content: space-between;
}
.is_tab #worksPagegWrapper #worksSec .workList .topic {
  margin-bottom: 50px;
  width: 48%;
}
.is_tab #worksPagegWrapper #worksSec.detailSec .contBlock .pict.main {
  width: 92%;
  margin: 0 auto 5vw;
}
.is_tab #worksPagegWrapper #worksSec.detailSec .contBlock .pictList {
  gap: 2.5vw 4.5vw;
  margin-bottom: 10vw;
}
.is_tab #worksPagegWrapper #worksSec.detailSec .contBlock .pictList .topic {
  width: calc(33.3333333333% - 3vw);
}
.is_tab #worksPagegWrapper #worksSec.detailSec {
  /*contBlock*/
}
.is_tab #worksPagegWrapper {
  /*workSec*/
}

/*is_tab*/
.is_sp #worksPagegWrapper .postTitle {
  margin: 5vw 0 7vw;
}
.is_sp #worksPagegWrapper .postTitle .title {
  font-size: 6vw;
}
.is_sp #worksPagegWrapper .postTitle .date {
  font-size: 4.2vw;
}
.is_sp #worksPagegWrapper #worksSec {
  padding-left: 0;
  padding-right: 0;
}
.is_sp #worksPagegWrapper #worksSec .listBlock {
  margin-bottom: 12vw;
}
.is_sp #worksPagegWrapper #worksSec .sorting .categoryList .topic {
  width: -moz-fit-content;
  width: fit-content;
}
.is_sp #worksPagegWrapper #worksSec .sorting .tagList a {
  font-size: 3.6vw;
  padding: 1vw 2.5vw;
}
.is_sp #worksPagegWrapper #worksSec .workList .topic {
  margin-bottom: 12vw;
  width: 100%;
  padding-bottom: 5vw;
}
.is_sp #worksPagegWrapper #worksSec .workList .topic:last-of-type {
  margin-bottom: 0;
}
.is_sp #worksPagegWrapper #worksSec .workList .topic .moreLink {
  font-size: 4vw;
}
.is_sp #worksPagegWrapper #worksSec .workList .topic .cateList .cateBtn {
  font-size: 3.6vw;
}
.is_sp #worksPagegWrapper #worksSec.detailSec .contBlock .pict.main {
  width: 100%;
  margin-bottom: 5vw;
}
.is_sp #worksPagegWrapper #worksSec.detailSec .pictList {
  justify-content: space-between;
  gap: 4vw;
  margin-bottom: 10vw;
}
.is_sp #worksPagegWrapper #worksSec.detailSec .pictList .topic {
  width: 46%;
}
.is_sp #worksPagegWrapper #worksSec.detailSec .pictList .topic .cap {
  font-size: 0.75em;
}
.is_sp #worksPagegWrapper {
  /*worksSec*/
}

/*is_sp*/
@media (hover) {
  .cateBtn:hover {
    opacity: 0.6;
  }
  .topic .cateBtn:hover {
    opacity: 1;
  }
  .tagBtn:hover,
  .tags a:hover {
    opacity: 0.6;
  }
  /*tagBtn*/
  .sorting .tagBtn.is-empty:hover {
    opacity: 1;
  }
  .sorting .tagBtn {
    /*is-empty*/
  }
}
#newsPagegWrapper .titleSec .otherTitle .date {
  font-size: min(19px, 4vw);
  text-align: center;
  font-weight: 400;
  margin-top: 0.75em;
  color: #909090;
}
#newsPagegWrapper #newsSec .innerBlock .articleBlock {
  background: var(--paleBlue);
}
#newsPagegWrapper #newsSec .innerBlock .articleBlock.contBlock a {
  text-decoration: underline;
  color: var(--baseBlue);
}
#newsPagegWrapper #newsSec .innerBlock {
  /*articleBlock*/
}
#newsPagegWrapper #newsSec .innerBlock .sorting .listBox {
  margin-bottom: 1.5em;
}
#newsPagegWrapper #newsSec .innerBlock .sorting .listBox .boxHead {
  font-size: min(20px, 6vw);
  font-weight: 600;
  margin-bottom: 0.25em;
  color: var(--baseBlue);
}
#newsPagegWrapper #newsSec .innerBlock .sorting .archiveList li {
  border-bottom: 1px dashed var(--baseBlue);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#newsPagegWrapper #newsSec .innerBlock .sorting .archiveList li a {
  padding: 0.5em min(10px, 2vw);
  display: block;
  width: 100%;
  height: 100%;
}
#newsPagegWrapper #newsSec .innerBlock {
  /*sorting*/
}
#newsPagegWrapper {
  /*newsSec*/
}
#newsPagegWrapper .newsList {
  padding: min(40px, 4vw) min(25px, 4vw);
}
#newsPagegWrapper .newsList .topic {
  border-bottom: 1px dashed var(--baseBlue);
  position: relative;
  padding: 3px;
}
#newsPagegWrapper .newsList .topic:first-of-type {
  border-top: 1px dashed var(--baseBlue);
}
#newsPagegWrapper .newsList .topic::after {
  content: "";
  display: block;
  width: 1.2em;
  aspect-ratio: 1/1;
  background-image: url(../images/icon-arrow-blue.svg);
  background-size: cover;
  background-repeat: no-repeat;
  transform: translateY(-50%);
}
#newsPagegWrapper .newsList .topic .inner {
  padding: 1em 4em 1em 1em;
  display: flex;
  border-radius: 3px;
}
#newsPagegWrapper .newsList .topic .inner p {
  font-family: "Zen Kaku Gothic New", sans-serif;
}
#newsPagegWrapper .newsList .topic .inner .date {
  width: 144px;
}
#newsPagegWrapper .newsList .topic .inner .title {
  width: 100%;
}
#newsPagegWrapper {
  /*newsList*/
}
#newsPagegWrapper.detail #newsSec .innerBlock {
  background: transparent;
}
#newsPagegWrapper.detail #newsSec .articleBlock {
  border: 4px solid var(--paleBlue);
  border-radius: 20px;
  padding: min(50px, 5.5vw);
}
#newsPagegWrapper.detail #newsSec .articleBlock p {
  margin-bottom: 1.25em;
}
#newsPagegWrapper.detail #newsSec .articleBlock img {
  max-width: 100%;
}
#newsPagegWrapper.detail #newsSec {
  /*articleBlock*/
}

/*newsPagegWrapper*/
.is_pc #newsPagegWrapper #newsSec .innerBlock {
  display: grid;
  grid-template-columns: 1fr 75px 200px;
}
.is_pc #newsPagegWrapper #newsSec .articleBlock {
  grid-column-start: 1;
  grid-column-end: 2;
}
.is_pc #newsPagegWrapper #newsSec {
  /*articleBlock*/
}
.is_pc #newsPagegWrapper #newsSec .sorting {
  grid-column-start: 3;
}
.is_pc #newsPagegWrapper {
  /*newsSec*/
}
.is_pc {
  /*newsPagegWrapper*/
}

.is_tab #newsPagegWrapper .newsList {
  padding-left: 0;
  padding-right: 0;
}
.is_tab #newsPagegWrapper .newsList .topic .inner .date {
  width: 18vw;
}
.is_tab #newsPagegWrapper .newsList .topic .inner .title {
  width: calc(100% - 19vw);
}
.is_tab #newsPagegWrapper .newsList {
  /*topic*/
}
.is_tab #newsPagegWrapper .sorting {
  margin-top: 10vw;
}
.is_tab #newsPagegWrapper .sorting .listBox {
  width: 50vw;
  margin: 0 auto;
}
.is_tab #newsPagegWrapper {
  /*sorting*/
}

.is_sp #newsPagegWrapper .newsList .topic .inner {
  display: block;
  padding: 1em 3em 1em 0;
}
.is_sp #newsPagegWrapper .sorting {
  margin-top: 10vw;
}
.is_sp #newsPagegWrapper .sorting .listBox {
  width: 100%;
}
.is_sp #newsPagegWrapper {
  /*sorting*/
}

@media (hover) {
  .newsList .topic:hover::after {
    background-image: initial;
    background-image: url(../images/icon-arrow-orange.svg);
  }
  .newsList .topic:hover .inner p {
    color: #fff;
  }
}
#privacyPagegWrapper #privacySec .privacyRead {
  border: 1px solid var(--baseBlue);
  padding: min(25px, 4.2vw);
  width: min(1000px, 88vw);
  margin: 50px auto min(80px, 10vw);
}
#privacyPagegWrapper {
  /*privacySec*/
} /*privacyPagegWrapper*/
.is_pc #privacyPagegWrapper #worksSec .workList {
  gap: 60px;
}
.is_pc #privacyPagegWrapper #worksSec .workList .topic {
  width: calc(33.3333333333% - 40px);
}
.is_pc {
  /*privacyPagegWrapper*/
} /*is_pc*/
/*is_tab*/
/*is_sp*//*# sourceMappingURL=style.css.map */