@charset "UTF-8";
/* ************************************** _
タイトル：common.css
概要：サイト共通のスタイルシート
更新：2024.10.30
_ ************************************** */
/* Imported Styles
---------------------------------------------------------------------------- */
/* =========================================================================
   CSS変数の定義  _custom-property

   - サイトの基本的な色指定は、CSS変数の値として設定。
   - 横幅の基準値を設定。
============================================================================ */
:root {
  --color__White: #fff;
  --color__WhiteAlpha: 255,255,255;
  --color__Black: #333;
  --color__BlackAlpha: 51,51,51;
  --color__lightBlack: #636363;
  --color__lightBlackAlpha: 99,99,99;
  --color__Shadow: #999;
  --color__ShadowAlpha: 153,153,153;
  --color__Primary: #00a993;
  --color__PrimaryAlpha: 0,169,147;
  --color__PrimaryL: #c7ede7;
  --color__PrimaryLAlpha: 199,237,231;
  --color__Secondary: #ffab1a;
  --color__SecondaryAlpha: 255,171,26;
  --color__SecondaryL: #fff8ed;
  --color__SecondaryLAlpha: 255,248,237;
  --color__Link: #034899;
  --color__LinkHover: lighten(#034899, 0.7);
  --color__Bg: #ebebeb ;
  --color__BgL: #f7f7f7 ;
  --color__Line: #666;
}

:root {
  --width__Full: 100vw;
  --width__Over: 1360px;
  --width__OverP: 1400px;
  --width__Main: 1160px;
  --width__MainP: 1200px;
  --width__texts: 930px;
}

/*!
    A (more) Modern CSS Reset
    https://piccalil.li/blog/a-more-modern-css-reset/
*/
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
  text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
  -webkit-margin-after: 0;
  margin-block-end: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
}

/* Set shorter line heights on headings and interactive elements */
h1, h2, h3, h4,
button, input, label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
h1, h2,
h3, h4 {
  text-wrap: balance;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
  color: currentColor;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input, button,
textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

/* =========================================================================
   _setting
============================================================================ */
/* kill 'Browser standard style'
---------------------------------------------------------------------------- */
body, h1, h2, h3, h4, h5, h6, div, p, span, ul, ol, li, dl, dt, dd, table, tr, th, td, form, select, option, address, pre, strong, em, figure {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 100%;
  font-style: normal;
  margin: 0;
  padding: 0;
  text-decoration: none;
}

/* Re style
---------------------------------------------------------------------------- */
html {
  font-size: 62.5%;
}

a {
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  color: var(--color__Link);
  text-decoration: none;
}
a:hover, a:active, a:focus {
  color: var(--color__LinkHover);
  text-decoration: underline;
}
a img,
a picture {
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
a:hover img,
a:hover picture, a:active img,
a:active picture, a:focus img,
a:focus picture {
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  opacity: 0.7;
}

@media screen and (max-width: 768px) {
  a [href^="tel:"] {
    pointer-events: none;
  }
}
em {
  font-style: normal;
}

picture {
  display: inline-block;
}

img,
picture {
  border: 0;
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
  width: auto;
}

li {
  list-style: none;
}

p {
  margin: 0;
}
p + p {
  margin-top: 1.166em;
}

strong {
  font-weight: bold;
}

table {
  border-collapse: collapse;
}

/* html5
---------------------------------------------------------------------------- */
article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
  display: block;
}

/* body
---------------------------------------------------------------------------- */
body {
  background-color: var(--color__White);
  background-size: auto;
  color: var(--color__Black);
  font-size: 1.8rem;
  font-family: "Noto Sans JP", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", sans-serif, Arial, Helvetica;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.5;
  overflow-x: hidden;
  padding: 0;
}

@media screen and (max-width: 960px) {
  body {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 600px) {
  body {
    font-size: 1.6rem;
  }
}
@media print {
  body {
    font-size: 1.6rem;
    max-width: 700px;
  }
}
@media print {
  *[data-aos=fade-up] {
    opacity: 1 !important;
    -webkit-transform: inherit !important;
    transform: inherit !important;
  }
}
/* =========================================================================
    _layout-setting
============================================================================ */
/* 初期化
---------------------------------------------------------------------------- */
html,
body {
  overflow: initial;
}

/* contents
---------------------------------------------------------------------------- */
.layout--contents {
  margin: 0 auto 0;
}

/* header
---------------------------------------------------------------------------- */
.layout--header {
  margin: 0 auto;
  max-width: 100vw;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 20;
}
.layout--header .facade {
  background: rgba(var(--color__WhiteAlpha), 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 195px;
  margin: 0 auto;
  position: relative;
  padding: 15px 30px 25px 30px;
  max-width: 1800px;
  width: 100%;
}
.layout--header .brandName {
  margin: 0;
  width: 230px;
}
.layout--header .brandName a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 80px;
  margin: 0 22px 0 0;
  max-width: 208px;
  padding: 0;
  width: 100%;
}
.layout--header .brandName a:hover, .layout--header .brandName a:active, .layout--header .brandName a:focus {
  text-decoration: none;
}
.layout--header .brandName a:hover .logo, .layout--header .brandName a:active .logo, .layout--header .brandName a:focus .logo {
  opacity: 0.7;
}
.layout--header .brandName a .logo {
  max-height: 45px;
  max-width: 208px;
  -webkit-transition: 0.4s opacity;
  transition: 0.4s opacity;
  width: 100%;
}
.layout--header .globalInquiry {
  background-color: var(--color__SecondaryL);
  border: 1px solid var(--color__Secondary);
  border-radius: 8px;
  height: 80px;
  max-width: 350px;
  padding: 5px 20px;
  position: relative;
  text-align: center;
  width: 350px;
}
.layout--header .globalInquiry .inquiryHeading {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  line-height: 1;
  margin-bottom: 4px;
}
.layout--header .globalInquiry .inquiryTel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.layout--header .globalInquiry .inquiryTel .inquiryIcon.type--tel {
  background-color: var(--color__Secondary);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 50px;
  width: 50px;
}
.layout--header .globalInquiry .inquiryTel .inquiryIcon.type--tel > img {
  height: 28px;
  width: 28px;
}
@media screen and (max-width: 600px) {
  .layout--header .globalInquiry .inquiryTel .inquiryIcon.type--tel {
    height: 45px;
    width: 45px;
  }
  .layout--header .globalInquiry .inquiryTel .inquiryIcon.type--tel > img {
    height: 25.2px;
    width: 25.2px;
  }
}
.layout--header .globalInquiry .inquiryTel .inquiryText {
  margin-left: 10px;
  margin-top: 2px;
  text-align: right;
}
.layout--header .globalInquiry .inquiryTel .inquiryNumber {
  color: var(--color__Secondary);
  display: block;
  font-family: "Hind", sans-serif;
  font-size: 3.8rem;
  font-weight: 700;
  font-display: swap;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: -4px;
}
.layout--header .globalInquiry .inquiryTel .inquiryTime {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
}
.layout--header .globalNav {
  background-color: var(--color__PrimaryL);
  border-radius: 30px;
  -webkit-box-shadow: 0 4px 7px 3px rgba(230, 230, 230, 0.75);
  box-shadow: 0 4px 7px 3px rgba(230, 230, 230, 0.75);
  height: 60px;
  margin: 15px auto 0;
  max-width: 960px;
  width: 100%;
}

@media screen and (max-width: 960px) {
  .layout--header .facade {
    height: 110px;
    padding: 15px 70px 15px 20px;
  }
  .layout--header .brandName {
    width: 190px;
  }
  .layout--header .globalInquiry {
    height: 76px;
    max-width: 280px;
    padding: 5px 10px;
    width: 280px;
  }
  .layout--header .globalInquiry .inquiryHeading {
    font-size: 1.2rem;
  }
  .layout--header .globalInquiry .inquiryTel .inquiryIcon.type--tel {
    height: 45px;
    width: 45px;
  }
  .layout--header .globalInquiry .inquiryTel .inquiryIcon.type--tel > img {
    height: 25.2px;
    width: 25.2px;
  }
  .layout--header .globalInquiry .inquiryTel .inquiryNumber {
    font-size: 3rem;
  }
  .layout--header .globalInquiry .inquiryTel .inquiryTime {
    font-size: 1.2rem;
  }
  .layout--header .globalNav {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  .layout--header .facade {
    height: 80px;
    padding: 10px 70px 10px 20px;
  }
  .layout--header .brandName a {
    height: 60px;
  }
  .layout--header .globalInquiry.type--pc {
    display: none;
  }
}
/* float
---------------------------------------------------------------------------- */
.floatingNav {
  bottom: 30px;
  margin: 0 0 10px auto;
  position: -webkit-sticky;
  position: sticky;
  right: 10px;
  width: 200px;
  z-index: 10;
}
.floatingNav a:hover img,
.floatingNav a a:active img,
.floatingNav a a:focus img {
  opacity: 1;
}

@media screen and (max-width: 960px) {
  .floatingNav {
    display: none;
  }
}
.floatSpInquiry {
  display: none;
}

@media screen and (max-width: 600px) {
  .floatSpInquiry {
    background-color: var(--color__SecondaryL);
    bottom: 0;
    display: block;
    height: 70px;
    margin: 0 auto;
    position: -webkit-sticky;
    position: sticky;
    width: 100%;
    z-index: 10;
  }
  .floatSpInquiry a {
    text-decoration: none;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
  }
  .floatSpInquiry a:hover, .floatSpInquiry a:active, .floatSpInquiry a:focus {
    opacity: 0.7;
  }
  .floatSpInquiry .globalInquiry.type--sp {
    display: block;
    height: 70px;
    margin: 0 auto;
    padding: 5px 10px;
    text-align: center;
    max-width: 300px;
    width: 100%;
  }
  .floatSpInquiry .globalInquiry.type--sp .inquiryHeading {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    line-height: 1;
    margin-bottom: 4px;
  }
  .floatSpInquiry .globalInquiry.type--sp .inquiryTel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .floatSpInquiry .globalInquiry.type--sp .inquiryTel .inquiryIcon.type--tel {
    background-color: var(--color__Secondary);
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 50px;
    width: 50px;
    height: 40px !important;
    width: 40px !important;
  }
  .floatSpInquiry .globalInquiry.type--sp .inquiryTel .inquiryIcon.type--tel > img {
    height: 28px;
    width: 28px;
  }
}
@media screen and (max-width: 600px) and (max-width: 600px) {
  .floatSpInquiry .globalInquiry.type--sp .inquiryTel .inquiryIcon.type--tel {
    height: 45px;
    width: 45px;
  }
  .floatSpInquiry .globalInquiry.type--sp .inquiryTel .inquiryIcon.type--tel > img {
    height: 25.2px;
    width: 25.2px;
  }
}
@media screen and (max-width: 600px) {
  .floatSpInquiry .globalInquiry.type--sp .inquiryTel .inquiryIcon.type--tel > img {
    height: 22px;
    width: 22px;
  }
}
@media screen and (max-width: 600px) {
  .floatSpInquiry .globalInquiry.type--sp .inquiryTel .inquiryText {
    margin-left: 10px;
    margin-top: 2px;
    text-align: right;
  }
}
@media screen and (max-width: 600px) {
  .floatSpInquiry .globalInquiry.type--sp .inquiryTel .inquiryNumber {
    color: var(--color__Secondary);
    display: block;
    font-family: "Hind", sans-serif;
    font-size: 3rem;
    font-weight: 700;
    font-display: swap;
    letter-spacing: 0.05em;
    line-height: 1;
    margin-bottom: -4px;
  }
}
@media screen and (max-width: 600px) {
  .floatSpInquiry .globalInquiry.type--sp .inquiryTel .inquiryTime {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;
  }
}
/* footer
---------------------------------------------------------------------------- */
.layout--footer {
  background-color: var(--color__Bg);
  color: var(--color__lightBlack);
  margin: -303px auto 0;
  max-width: 1800px;
  overflow-x: hidden;
  padding: 0;
  position: relative;
  width: 100%;
  z-index: 5;
}

@media screen and (max-width: 960px) {
  .layout--footer {
    margin-top: 0;
  }
}
/* 段落レイアウト
---------------------------------------------------------------------------- */
.section--outer {
  margin: 0 auto;
  position: relative;
  max-width: 100vw;
  overflow-x: clip;
  padding: 0 30px;
  width: 100%;
}
.section--outer.space--t {
  padding-top: 120px;
}
.section--outer.space--b {
  padding-bottom: 120px;
}
.section--outer.space--w {
  padding-bottom: 120px;
  padding-top: 120px;
}
.section--outer.space--none {
  padding: 0;
}

.section--inner {
  margin: 0 auto;
  max-width: 1000px;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
}

@media screen and (min-width: 1800px) {
  .section--outer {
    max-width: 1800px;
  }
}
@media screen and (max-width: 960px) {
  .section--outer {
    padding: 0 20px;
  }
  .section--outer.space--t {
    padding-top: 100px;
  }
  .section--outer.space--b {
    padding-bottom: 100px;
  }
  .section--outer.space--w {
    padding-bottom: 100px;
    padding-top: 100px;
  }
  .section--outer.space--none {
    padding: 0;
  }
}
@media screen and (max-width: 600px) {
  .section--outer {
    padding-left: 15px;
    padding-right: 15px;
  }
  .section--outer.space--t {
    padding-top: 70px;
  }
  .section--outer.space--b {
    padding-bottom: 70px;
  }
  .section--outer.space--w {
    padding-bottom: 70px;
    padding-top: 70px;
  }
  .section--outer.space--none {
    padding: 0;
  }
  .section--inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (max-width: 414px) {
  .section--outer.space--t {
    padding-top: 60px;
  }
  .section--outer.space--b {
    padding-bottom: 60px;
  }
  .section--outer.space--w {
    padding-bottom: 60px;
    padding-top: 60px;
  }
}
/* =========================================================================
  _nav-global
============================================================================ */
/* global Nav
---------------------------------------------------------------------------- */
.globalNav .globalMenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.globalNav .globalMenu > .item {
  border-color: transparent;
  border-style: solid;
  border-width: 3px 0 3px 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  font-display: swap;
  line-height: 1.25;
}
.globalNav .globalMenu > .item .menu {
  color: var(--color__Black);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 54px;
  letter-spacing: 0.15em;
  padding-left: 1em;
  padding-right: 1em;
  position: relative;
  text-align: center;
  text-decoration: none;
}
.globalNav .globalMenu > .item.is--estimate {
  background-color: var(--color__Primary);
}
.globalNav .globalMenu > .item.is--estimate .menu {
  color: var(--color__White);
}
.globalNav .globalMenu > .item.is--active {
  border-bottom-color: var(--color__Primary);
}
.globalNav .globalMenu > .item:hover, .globalNav .globalMenu > .item:active, .globalNav .globalMenu > .item:focus {
  background-color: var(--color__Primary);
}
.globalNav .globalMenu > .item:hover .menu, .globalNav .globalMenu > .item:active .menu, .globalNav .globalMenu > .item:focus .menu {
  color: var(--color__White);
  opacity: 1;
}
.globalNav .globalMenu > .item:hover.is--estimate, .globalNav .globalMenu > .item:active.is--estimate, .globalNav .globalMenu > .item:focus.is--estimate {
  opacity: 0.7;
}

@media screen and (max-width: 960px) {
  .globalNav .globalMenu {
    display: none;
  }
}
/* メニュー
---------------------------------------------------------------------------- */
.hamburger-menu {
  display: none;
}

@media screen and (max-width: 960px) {
  .hamburger-menu {
    background-color: transparent;
    border: 0;
    cursor: pointer;
    display: block;
    height: 30px;
    margin: auto 0;
    padding: 0;
    position: absolute;
    right: 20px;
    top: 40px;
    width: 30px;
  }
  .hamburger-menu:focus {
    outline-style: none;
  }
}
@media screen and (max-width: 600px) {
  .hamburger-menu {
    top: 30px;
  }
}
/* mmenu 調整 */
.mm-blocker {
  z-index: 100;
}

.mm-listitem {
  text-align: left;
}

#globalnavi--sp .with--icon .mm-listitem__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#globalnavi--sp .with--icon img.mmenuicon--pc, #globalnavi--sp .with--icon img.mmenuicon--mail, #globalnavi--sp .with--icon img.mmenuicon--tel, #globalnavi--sp .with--icon img.mmenuicon--fax {
  display: inline;
  height: 20px;
  margin-right: 7px;
  width: 20px;
}

/* =========================================================================
    _nav-footer
============================================================================ */
/* footer Inner
---------------------------------------------------------------------------- */
.footerInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1;
  margin: 0 auto;
  padding: 60px 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  font-display: swap;
  max-width: 1000px;
}

@media screen and (max-width: 960px) {
  .footerInner {
    max-width: 100%;
    padding: 40px 20px;
  }
}
@media screen and (max-width: 600px) {
  .footerInner {
    padding: 20px 15px 40px;
  }
}
/* footer sitemap
---------------------------------------------------------------------------- */
.footerSitemap {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  font-display: swap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 auto 60px;
  max-width: 960px;
  width: 100%;
}
.footerSitemap .item {
  margin: 0 1.5em;
}
.footerSitemap .item a {
  color: var(--color__lightBlack);
}
.footerSitemap .item a:hover, .footerSitemap .item a:active, .footerSitemap .item a:before {
  opacity: 0.7;
}

@media screen and (max-width: 960px) {
  .footerSitemap {
    font-size: 1.4rem;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .footerSitemap .item {
    margin: 0 1.5em;
    padding: 0.5em 0 0.5em 0;
  }
}
@media screen and (max-width: 600px) {
  .footerSitemap {
    display: none;
  }
}
/* footer inquiry
---------------------------------------------------------------------------- */
.footerInquiry {
  border: 2px solid var(--color__Primary);
  border-radius: 8px;
  margin: 0 4.2% 0 0;
  max-width: 360px;
  padding: 18px;
  text-align: center;
  width: 360px;
}
.footerInquiry > .text {
  margin-bottom: 18px;
}
.footerInquiry .inquiryTel,
.footerInquiry .inquiryFax {
  color: var(--color__lightBlack);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 10px auto 0;
  max-width: 280px;
}
.footerInquiry .inquiryTel .inquiryIcon.type--tel--green,
.footerInquiry .inquiryFax .inquiryIcon.type--tel--green {
  background-color: var(--color__Primary);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 50px;
  width: 50px;
}
.footerInquiry .inquiryTel .inquiryIcon.type--tel--green > img,
.footerInquiry .inquiryFax .inquiryIcon.type--tel--green > img {
  height: 28px;
  width: 28px;
}
@media screen and (max-width: 600px) {
  .footerInquiry .inquiryTel .inquiryIcon.type--tel--green,
.footerInquiry .inquiryFax .inquiryIcon.type--tel--green {
    height: 45px;
    width: 45px;
  }
  .footerInquiry .inquiryTel .inquiryIcon.type--tel--green > img,
.footerInquiry .inquiryFax .inquiryIcon.type--tel--green > img {
    height: 25.2px;
    width: 25.2px;
  }
}
.footerInquiry .inquiryTel .inquiryIcon.type--fax--green,
.footerInquiry .inquiryFax .inquiryIcon.type--fax--green {
  background-color: var(--color__Primary);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 50px;
  width: 50px;
}
.footerInquiry .inquiryTel .inquiryIcon.type--fax--green > img,
.footerInquiry .inquiryFax .inquiryIcon.type--fax--green > img {
  height: 28px;
  width: 25px;
}
@media screen and (max-width: 600px) {
  .footerInquiry .inquiryTel .inquiryIcon.type--fax--green,
.footerInquiry .inquiryFax .inquiryIcon.type--fax--green {
    height: 45px;
    width: 45px;
  }
  .footerInquiry .inquiryTel .inquiryIcon.type--fax--green > img,
.footerInquiry .inquiryFax .inquiryIcon.type--fax--green > img {
    height: 25.2px;
    width: 22.5px;
  }
}
.footerInquiry .inquiryTel .inquiryText,
.footerInquiry .inquiryFax .inquiryText {
  font-size: 1.6rem;
  font-weight: 700;
  margin-left: 10px;
  margin-top: 2px;
  text-align: left;
}
.footerInquiry .inquiryTel .inquiryText > span,
.footerInquiry .inquiryFax .inquiryText > span {
  line-height: 1;
  display: block;
}
.footerInquiry .inquiryTel .inquiryText > span + span,
.footerInquiry .inquiryFax .inquiryText > span + span {
  margin-top: 5px;
}
.footerInquiry .inquiryTel .inquiryNumber,
.footerInquiry .inquiryFax .inquiryNumber {
  font-family: "Hind", sans-serif;
  font-size: 2.7rem;
  font-weight: 700;
  font-display: swap;
  letter-spacing: 0.05em;
}
.footerInquiry .inquiryTel .inquiryTime,
.footerInquiry .inquiryFax .inquiryTime {
  font-size: 1.5rem;
}
.footerInquiry .inquiryTel .inquiryTime > span,
.footerInquiry .inquiryFax .inquiryTime > span {
  font-size: 1.3rem;
}
.footerInquiry .inquiryFax:hover, .footerInquiry .inquiryFax:active, .footerInquiry .inquiryFax:focus {
  opacity: 0.7;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.footerInquiry .inquiryFax:hover .inquiryIcon img, .footerInquiry .inquiryFax:active .inquiryIcon img, .footerInquiry .inquiryFax:focus .inquiryIcon img {
  opacity: 1;
}

@media screen and (max-width: 960px) {
  .footerInquiry {
    margin: 0 4vw;
    padding: 15px;
  }
}
@media screen and (max-width: 600px) {
  .footerInquiry {
    margin: 0 2vw;
    padding: 15px;
  }
  .footerInquiry .inquiryTel .inquiryText,
.footerInquiry .inquiryFax .inquiryText {
    font-size: 1.5rem;
  }
  .footerInquiry .inquiryTel .inquiryNumber,
.footerInquiry .inquiryFax .inquiryNumber {
    font-size: 2.4rem;
  }
  .footerInquiry .inquiryTel .inquiryTime,
.footerInquiry .inquiryFax .inquiryTime {
    font-size: 1.4rem;
  }
  .footerInquiry .inquiryTel .inquiryTime > span,
.footerInquiry .inquiryFax .inquiryTime > span {
    display: inline-block;
    font-size: 1.2rem;
  }
}
/* footer Info
---------------------------------------------------------------------------- */
.footerInfo {
  margin: 0 0 0 4.2%;
  padding: 30px;
  max-width: 380px;
  width: 380px;
}
.footerInfo .logoWrapper {
  display: block;
  margin: 30px auto 30px 0;
}
.footerInfo .address {
  line-height: 1.75;
}

@media screen and (max-width: 960px) {
  .footerInfo {
    margin: 0 4vw;
    padding: 25px;
    text-align: center;
  }
  .footerInfo .logoWrapper img {
    margin: 0 auto;
  }
}
@media screen and (max-width: 600px) {
  .footerInfo {
    margin: 0 2vw;
    padding: 15px;
  }
}

/* 20250930 SP版のリンク設定 */
.sp-footerSitemap {
  display: none;
}
@media screen and (max-width: 600px) {
  .sp-footerSitemap {
    display: block;
    margin-top: 30px;
  }
  .sp-footerSitemap li {
    margin-bottom: 10px;
  }
}

/* footer end
---------------------------------------------------------------------------- */
.footerEnd {
  background-color: var(--color__Primary);
  color: var(--color__White);
  margin: 0 auto;
  padding: 15px 30px 12px;
  text-align: center;
  width: 100%;
}
.footerEnd .copy {
  font-family: "Hind", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  font-display: swap;
  line-height: 1;
  margin: 0 auto;
}

/* =========================================================================
  _nav-category-header
============================================================================ */
/* カテゴリのヘッダー contentsHeader
---------------------------------------------------------------------------- */
.pageHeader {
  background-color: var(--color__Bg);
  background-size: cover;
  height: 400px;
  margin: 0 auto 160px auto;
  max-width: 1800px;
  position: relative;
  width: 100%;
}
.pageHeader::after {
  background: url("../images/cmn_img/category_header/bg_category_header_service.jpg") no-repeat center center;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 200px 0 0 200px;
  bottom: 0;
  content: "";
  display: block;
  height: 400px;
  margin: auto 0 auto auto;
  max-height: 400px;
  max-width: 700px;
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
}
.pageHeader.page--service::after {
  background-image: url("../images/cmn_img/category_header/bg_category_header_service.jpg");
}
.pageHeader.page--management::after {
  background-image: url("../images/cmn_img/category_header/bg_category_header_management.jpg");
}
.pageHeader.page--maintenance::after {
  background-image: url("../images/cmn_img/category_header/bg_category_header_maintenance.jpg");
}
.pageHeader.page--emergency::after {
  background-image: url("../images/cmn_img/category_header/bg_category_header_emergency.jpg");
}
.pageHeader.page--insurance::after {
  background-image: url("../images/cmn_img/category_header/bg_category_header_insurance.jpg");
}
.pageHeader.page--renovation::after {
  background-image: url("../images/cmn_img/category_header/bg_category_header_renovation.jpg");
}
.pageHeader.page--planning::after {
  background-image: url("../images/cmn_img/category_header/bg_category_header_planning.jpg");
}
.pageHeader.page--reform::after {
  background-image: url("../images/cmn_img/category_header/bg_category_header_reform.jpg");
}
.pageHeader.page--company::after {
  background-image: url("../images/cmn_img/category_header/bg_category_header_company.jpg");
}
.pageHeader.page--partner::after {
  background-image: url("../images/cmn_img/category_header/bg_category_header_partner.jpg");
}
.pageHeader.page--support::after {
  background-image: url("../images/cmn_img/category_header/bg_category_header_support.jpg");
}
.pageHeader.page--consider::after {
  background-image: url("../images/cmn_img/category_header/bg_category_header_consider.jpg");
}
.pageHeader.page--knowledge::after {
  background-image: url("../images/cmn_img/category_header/bg_category_header_knowledge.jpg");
}
.pageHeader.page--other::after {
  background-image: url("../images/cmn_img/category_header/bg_category_header_other.jpg");
}

@media screen and (max-width: 960px) {
  .pageHeader {
    height: 340px;
    margin: 0 auto 130px auto;
    max-width: 100%;
  }
  .pageHeader::after {
    border-radius: 170px 0 0 170px;
    height: 340px;
    max-height: 340px;
    max-width: 50%;
  }
  .pageHeader.page--consider::after {
    background-position-x: right;
  }
}
@media screen and (max-width: 600px) {
  .pageHeader {
    height: 240px;
    margin: 0 auto 100px auto;
  }
  .pageHeader::after {
    border-radius: 120px 0 0 120px;
    height: 240px;
    max-height: 240px;
    max-width: 75%;
    opacity: 0.75;
    width: 75%;
  }
}
@media screen and (max-width: 414px) {
  .pageHeader::after {
    border-radius: 0;
    opacity: 0.5;
    max-width: 100%;
    width: 100%;
  }
}
.pageHeaderInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 370px;
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 20px;
  position: relative;
  width: 100%;
  z-index: 10;
}

@media screen and (max-width: 960px) {
  .pageHeaderInner {
    height: 310px;
    max-width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .pageHeaderInner {
    height: 220px;
  }
}
.heading--page {
  display: block;
  line-height: 1;
  letter-spacing: 0.025em;
  max-width: 700px;
  padding-bottom: 0;
  padding-top: 100px;
  position: relative;
  width: 70%;
}
.heading--page::before {
  background-color: var(--color__Navy);
  bottom: -15px;
  content: "";
  display: block;
  height: 1px;
  left: 0;
  margin: auto auto auto 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.heading--page .door {
  display: block;
  font-size: 4.2rem;
  font-weight: 700;
  padding-left: 20px;
  position: relative;
}
.heading--page .door::before {
  top: -57px;
  content: attr(data-title);
  font-family: "Hind", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  font-display: swap;
  display: block;
  left: 20px;
  margin: 0 auto;
  position: absolute;
  right: 0;
}
.heading--page .door.long {
  font-size: 4rem;
}
.heading--page .pages {
  display: block;
  font-size: 4.2rem;
  font-weight: 700;
  padding-left: 20px;
  position: relative;
}
.heading--page .pages::before {
  top: -96px;
  content: attr(data-title);
  font-family: "Hind", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  font-display: swap;
  display: block;
  left: 20px;
  margin: 0 auto;
  position: absolute;
}
.heading--page .pages::after {
  top: -65px;
  content: attr(data-category);
  font-size: 2.4rem;
  display: block;
  left: 20px;
  margin: 0 auto;
  position: absolute;
}
.heading--page .pages.long {
  font-size: 4rem;
}

@media screen and (max-width: 960px) {
  .heading--page {
    padding-top: 86px;
    width: 75%;
  }
  .heading--page .door {
    font-size: calc(9 * (100vw - 600px) / 360 + 3.3rem);
  }
  .heading--page .door::before {
    top: -48px;
    font-size: 1.5rem;
  }
  .heading--page .door.long {
    font-size: calc(13 * (100vw - 600px) / 360 + 2.7rem);
  }
  .heading--page .pages {
    font-size: calc(9 * (100vw - 600px) / 360 + 3.3rem);
  }
  .heading--page .pages::before {
    top: -87px;
    font-size: 1.5rem;
  }
  .heading--page .pages::after {
    top: -56px;
    font-size: calc(3 * (100vw - 600px) / 360 + 2.1rem);
  }
  .heading--page .pages.long {
    font-size: calc(13 * (100vw - 600px) / 360 + 2.7rem);
  }
}
@media screen and (max-width: 600px) {
  .heading--page {
    background-color: rgba(var(--color__WhiteAlpha), 0.85);
    border: 20px solid rgba(var(--color__WhiteAlpha), 0.01);
    padding-top: 78px;
    width: 100%;
  }
  .heading--page .door {
    font-size: calc(8 * (100vw - 320px) / 280 + 2.5rem);
    padding-left: 10px;
  }
  .heading--page .door::before {
    top: -40px;
    font-size: 1.4rem;
    left: 10px;
  }
  .heading--page .door.long {
    font-size: calc(8 * (100vw - 320px) / 280 + 2.3rem);
  }
  .heading--page .pages {
    font-size: calc(8 * (100vw - 320px) / 280 + 2.5rem);
    padding-left: 10px;
  }
  .heading--page .pages::before {
    top: -79px;
    font-size: 1.4rem;
    left: 10px;
  }
  .heading--page .pages::after {
    top: -48px;
    font-size: calc(3 * (100vw - 320px) / 280 + 1.8rem);
    left: 10px;
  }
  .heading--page .pages.long {
    font-size: calc(8 * (100vw - 320px) / 280 + 2.3rem);
  }
}
.pageHeader.page--management .heading--page::before {
  background-color: var(--color__Blue);
}
.pageHeader.page--maintenance .heading--page::before {
  background-color: var(--color__Blue);
}
.pageHeader.page--insurance .heading--page::before {
  background-color: var(--color__Blue);
}
.pageHeader.page--emergency .heading--page::before {
  background-color: var(--color__Blue);
}
.pageHeader.page--support .heading--page::before {
  background-color: var(--color__Blue);
}
.pageHeader.page--renovation .heading--page::before {
  background-color: var(--color__Yellow);
}
.pageHeader.page--planning .heading--page::before {
  background-color: var(--color__Yellow);
}
.pageHeader.page--reform .heading--page::before {
  background-color: var(--color__Yellow);
}
.pageHeader.page--knowledge .heading--page::before {
  background-color: var(--color__Yellow);
}
.pageHeader.page--consider .heading--page::before {
  background-color: var(--color__Green);
}
.pageHeader.page--results .heading--page::before {
  background-color: var(--color__Green);
}
.pageHeader.page--partner .heading--page::before {
  background-color: var(--color__Green);
}

/* パンくずリスト breadcrumbs
---------------------------------------------------------------------------- */
.breadcrumbs {
  height: 30px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  width: 100%;
}
.breadcrumbs::before {
  background-color: var(--color__Navy);
  bottom: 0;
  content: "";
  display: block;
  height: 30px;
  left: 0;
  margin: 0 auto 0 0;
  position: absolute;
  width: 71.4285714286%;
  z-index: 1;
}
.breadcrumbs::after {
  background-color: var(--color__Navy);
  bottom: -10px;
  content: "";
  display: block;
  height: 10px;
  margin: 0 0 0 auto;
  position: absolute;
  right: 0;
  width: 71.4285714286%;
  z-index: 1;
}

@media screen and (max-width: 600px) {
  .breadcrumbs {
    height: 20px;
  }
  .breadcrumbs::before {
    height: 20px;
  }
  .breadcrumbs::after {
    bottom: -7px;
    height: 7px;
  }
}
.pageHeader.page--management .breadcrumbs::after {
  background-color: var(--color__Blue);
}
.pageHeader.page--maintenance .breadcrumbs::after {
  background-color: var(--color__Blue);
}
.pageHeader.page--insurance .breadcrumbs::after {
  background-color: var(--color__Blue);
}
.pageHeader.page--emergency .breadcrumbs::after {
  background-color: var(--color__Blue);
}
.pageHeader.page--support .breadcrumbs::after {
  background-color: var(--color__Blue);
}
.pageHeader.page--renovation .breadcrumbs::after {
  background-color: var(--color__Yellow);
}
.pageHeader.page--planning .breadcrumbs::after {
  background-color: var(--color__Yellow);
}
.pageHeader.page--reform .breadcrumbs::after {
  background-color: var(--color__Yellow);
}
.pageHeader.page--knowledge .breadcrumbs::after {
  background-color: var(--color__Yellow);
}
.pageHeader.page--consider .breadcrumbs::after {
  background-color: var(--color__Green);
}
.pageHeader.page--results .breadcrumbs::after {
  background-color: var(--color__Green);
}
.pageHeader.page--partner .breadcrumbs::after {
  background-color: var(--color__Green);
}

.breadcrumbsList {
  font-size: 0;
  line-height: 1;
  margin: 0 auto;
  max-width: 1200px;
  padding: 5px 20px;
  position: relative;
  text-align: left;
  width: 100%;
  z-index: 2;
}
.breadcrumbsList .item {
  display: inline-block;
  color: var(--color__White);
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0.05em;
  padding-top: 4px;
  white-space: nowrap;
}
.breadcrumbsList .item:first-child {
  padding-left: 26px;
  position: relative;
}
.breadcrumbsList .item:first-child::before {
  background: url("../images/cmn_img/icon_home.png") no-repeat center center;
  bottom: 0;
  content: "";
  display: inline-block;
  height: 14px;
  left: 0;
  margin: auto 0;
  position: absolute;
  top: 2px;
  width: 16px;
}
.breadcrumbsList .item:not(:nth-child(1))::before {
  content: "／";
  margin: 0 8px 0 12px;
}
.breadcrumbsList .item a {
  color: var(--color__White);
}
.breadcrumbsList .item a:hover, .breadcrumbsList .item a:active, .breadcrumbsList .item a:focus {
  color: var(--color__white);
  text-decoration: underline;
}

@media screen and (max-width: 600px) {
  .breadcrumbs .breadcrumbsList {
    display: none;
  }
}
/* =========================================================================
   _modules-heading
============================================================================ */
/* 見出し
---------------------------------------------------------------------------- */
.heading--hidden {
  font-size: 0;
  height: 0;
  margin: 0;
  position: absolute;
  opacity: 0;
  width: 0;
}

.heading--horizontal.cut--t,
.heading--vertical.cut--t,
.heading--nomark.cut--t,
.heading--ellipse.cut--t,
.heading--rectangle.cut--t,
.heading--boldline.cut--t {
  margin-top: 0;
}
.heading--horizontal.cut--b,
.heading--vertical.cut--b,
.heading--nomark.cut--b,
.heading--ellipse.cut--b,
.heading--rectangle.cut--b,
.heading--boldline.cut--b {
  margin-bottom: 0;
}

.heading--line {
  margin: 0 0 2.5em 0;
  position: relative;
}
.heading--line > span {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  font-display: swap;
  display: inline-block;
  line-height: 1.125;
  padding: 0 20px 5px 20px;
  position: relative;
  z-index: 2;
}
.heading--line > span:before {
  background-color: var(--color__PrimaryL);
  bottom: -8px;
  content: "";
  display: block;
  left: 0;
  height: 28px;
  position: absolute;
  width: 100%;
  z-index: -1;
}
.heading--line > span:after {
  background-color: var(--color__Primary);
  bottom: 0;
  content: "";
  display: block;
  height: 2px;
  left: 20px;
  position: absolute;
  width: 100%;
  z-index: 2;
}
.heading--line.color--yellow > span:before {
  background-color: var(--color__Bg);
}
.heading--line.color--yellow > span:after {
  background-color: var(--color__Secondary);
}

@media screen and (max-width: 960px) {
  .heading--line > span {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 600px) {
  .heading--line > span {
    font-size: 2.2rem;
    padding: 0 15px 5px 15px;
  }
  .heading--line > span:before {
    bottom: -8px;
    height: 22px;
  }
  .heading--line > span:after {
    left: 15px;
  }
}
@media screen and (max-width: 414px) {
  .heading--line > span {
    font-size: 2rem;
    padding: 0 10px 5px 10px;
  }
  .heading--line > span:before {
    bottom: -5px;
    height: 20px;
  }
  .heading--line > span:after {
    left: 10px;
  }
}
.heading--text {
  color: var(--color__Black);
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  font-display: swap;
  line-height: 1.5;
  margin: 1.5em auto;
  text-align: center;
  width: 100%;
}
.heading--text span {
  display: inline-block;
}

@media screen and (max-width: 960px) {
  .heading--text {
    font-size: 2.3rem;
  }
}
@media screen and (max-width: 600px) {
  .heading--text {
    font-size: 2rem;
  }
}
@media screen and (max-width: 414px) {
  .heading--text {
    font-size: 1.8rem;
  }
}
.heading--square {
  color: var(--color__Black);
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  font-display: swap;
  line-height: 1;
  margin: 2.5em auto 1.25em 0;
  padding-left: 1.5em;
  position: relative;
  text-align: left;
  width: 100%;
}
.heading--square::before {
  background-color: var(--color__Primary);
  border-radius: 2px;
  bottom: 0;
  content: "";
  height: 24px;
  left: 0;
  margin: auto 0;
  position: absolute;
  top: 2px;
  width: 24px;
}

@media screen and (max-width: 960px) {
  .heading--square {
    font-size: 2.2rem;
  }
  .heading--square::before {
    height: 22px;
    width: 22px;
  }
}
@media screen and (max-width: 600px) {
  .heading--square {
    font-size: 2rem;
  }
  .heading--square::before {
    height: 20px;
    width: 20px;
  }
}
@media screen and (max-width: 414px) {
  .heading--square {
    font-size: 1.8rem;
  }
  .heading--square::before {
    height: 18px;
    width: 18px;
  }
}
.heading--squareS {
  color: var(--color__Black);
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  font-display: swap;
  line-height: 1;
  margin: 1.25em auto 0.75em 0;
  padding-left: 1.4em;
  position: relative;
  text-align: left;
  width: 100%;
}
.heading--squareS::before {
  background-color: var(--color__Black);
  border-radius: 2px;
  bottom: 0;
  content: "";
  height: 20px;
  left: 0;
  margin: auto 0;
  position: absolute;
  top: 2px;
  width: 20px;
}

@media screen and (max-width: 960px) {
  .heading--squareS {
    font-size: 1.8rem;
  }
  .heading--squareS::before {
    height: 18px;
    width: 18px;
  }
}
@media screen and (max-width: 600px) {
  .heading--squareS {
    font-size: 1.7rem;
  }
  .heading--squareS::before {
    height: 17px;
    width: 17px;
  }
}
@media screen and (max-width: 414px) {
  .heading--squareS {
    font-size: 1.6rem;
  }
  .heading--squareS::before {
    height: 16px;
    width: 16px;
  }
}
/* =========================================================================
  _modules-button
============================================================================ */
/* ボタン
---------------------------------------------------------------------------- */
/* ボタン */
.btn {
  background-color: var(--color__Secondary);
  border-radius: 25px;
  font-weight: bold;
  line-height: 1;
  margin: 10px auto 0 auto;
  max-width: 280px;
  position: relative;
  text-align: left;
  text-decoration: none;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  width: 100%;
}
.btn:hover, .btn:active, .btn:focus {
  opacity: 0.7;
}
.btn a,
.btn .btnInner {
  color: var(--color__White);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  font-display: swap;
  height: 50px;
  letter-spacing: 0.05em;
  padding-left: 3.75em;
  padding-right: 2em;
  position: relative;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  width: 100%;
  z-index: 5;
}
/* 20250205 リンクボタンの調整 start */
.btn_retouch a {
  padding-right: 1em;
}
/* 20250205 追加 end */
.btn a::before,
.btn .btnInner::before {
  content: "";
  background: url("/crowblocker/images/cmn_img/icon_arrow_m.png") no-repeat center center;
  bottom: 0;
  height: 36px;
  left: 15px;
  margin: auto 0;
  position: absolute;
  top: 0;
  width: 36px;
}
.btn a:hover, .btn a:active, .btn a:focus,
.btn .btnInner:hover,
.btn .btnInner:active,
.btn .btnInner:focus {
  opacity: 1;
  text-decoration: none;
}
.btn.type--pc a::before,
.btn.type--pc .btnInner::before {
  background-image: url("/crowblocker/images/cmn_img/icon_pc.svg");
  height: 28px;
  left: 18px;
  width: 32px;
}
.btn.type--mail a::before,
.btn.type--mail .btnInner::before {
  background-image: url("/crowblocker/images/cmn_img/icon_mail.svg");
  height: 28px;
  left: 18px;
  width: 32px;
}
.btn.type--green {
  background-color: var(--color__Primary);
}

/* =========================================================================
  _layout-lists
============================================================================ */
.defaultList {
  margin-bottom: 1em;
  padding-left: 1.4em;
  width: 100%;
}
.defaultList li {
  list-style: disc;
  line-height: 1.25;
  margin-top: 0.4em;
}
.defaultList li:first-of-type {
  margin-top: 0;
}
.defaultList.type--none {
  padding-left: 0;
}
.defaultList.type--none li {
  list-style-type: none;
}
.defaultList.type--decimal li {
  list-style-type: decimal;
}

/* Data リスト（dl デフォルト）*/
.dataList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.dataList dt {
  margin-top: 10px;
  padding-left: 0;
  padding-top: 0;
  width: 12em;
}
.dataList dt:first-of-type {
  margin-top: 0;
}
.dataList dd {
  margin-top: 10px;
  padding-left: 2em;
  padding-right: 0;
  padding-top: 0;
  width: calc(100% - 12em);
}
.dataList dd:first-of-type {
  margin-top: 0;
}

@media screen and (max-width: 600px) {
  .dataList {
    margin-bottom: 15px;
  }
  .dataList dt {
    margin-top: 15px;
    padding-top: 15px;
    width: 8em;
  }
  .dataList dd {
    margin-top: 15px;
    padding-left: 1.5em;
    padding-top: 15px;
    width: calc(100% - 8em);
  }
}
/* ------------------------------------------------------------------------------------------
  _modules-table
--------------------------------------------------------------------------------------------- */
.plainTable {
  border-bottom: 1px dotted var(--color__Line);
  border-top: 1px dotted var(--color__Line);
  width: 100%;
}
.plainTable.sandwichLine tr {
  border-top: 1px dotted var(--color__Line);
}
.plainTable.sandwichLine tr:first-of-type {
  border-top-width: 1px;
}
.plainTable.sandwichLine tr:last-of-type {
  border-bottom: 1px dotted var(--color__Line);
}
.plainTable tr {
  border-top: 1px dotted var(--color__Line);
}
.plainTable tr:first-of-type {
  border-top-width: 0;
}
.plainTable th,
.plainTable td {
  line-height: 1.35;
  padding: 0.9em 0.25em;
  text-align: left;
  vertical-align: top;
}
.plainTable th {
  font-weight: 500;
}
.plainTable td {
  font-weight: 500;
}
.plainTable dl {
  line-height: 1.125;
}
.plainTable dt {
  margin-top: 1em;
}
.plainTable dt:first-of-type {
  margin-top: 0;
}
.plainTable dd {
  font-size: 1.6rem;
}

/* =========================================================================
   _modules-parts
============================================================================ */
/* web font
---------------------------------------------------------------------------- */
.font--eng,
.font--num {
  font-family: "Hind", sans-serif;
  font-weight: 400;
}

/* underline
---------------------------------------------------------------------------- */
.txt--underline {
  display: inline-block;
  position: relative;
}
.txt--underline::before {
  content: "";
  background-color: #ffee4c;
  border-radius: 2px;
  bottom: -5px;
  display: inline-block;
  height: 4px;
  position: absolute;
  width: 100%;
}

@media screen and (max-width: 600px) {
  .txt--underline::before {
    border-radius: 1.5px;
    bottom: 1px;
    height: 3px;
  }
}
/* background color
---------------------------------------------------------------------------- */
.bg--aqua {
  background-color: var(--color__Bg);
}

/* align
---------------------------------------------------------------------------- */
.txt--left {
  text-align: left !important;
}

.txt--center {
  text-align: center !important;
}

.txt--right {
  text-align: right !important;
}

/* images
---------------------------------------------------------------------------- */
.image {
  margin-bottom: 30px;
}

@media screen and (max-width: 600px) {
  .image {
    margin-bottom: 20px;
  }
}
.imageWrapper {
  margin-bottom: 30px;
  margin-top: 30px;
}
.imageWrapper .image {
  margin-bottom: 15px;
}
.imageWrapper .annotation {
  font-size: 0.89em;
  color: var(--color__lightBlack);
}

a .image {
  margin-bottom: initial;
}

.with--line {
  border: 1px solid var(--color__LineL);
}

.with--radius {
  border-radius: 10px;
  overflow: hidden;
}

/* font
---------------------------------------------------------------------------- */
.attention,
.required {
  color: #db007d !important;
  font-weight: inherit;
}

.annotation {
  font-size: 0.89em;
  color: var(--color__lightBlack);
}

.with--photo .annotation {
  margin-bottom: 15px;
  margin-top: 15px;
}

.txt--small {
  font-size: 1.6rem;
  font-weight: inherit;
}

@media screen and (max-width: 1100px) {
  .txt--small {
    font-size: 0.9em;
  }
}
@media screen and (max-width: 768px) {
  .txt--small {
    font-size: 1.3rem;
  }
}
.txt--link {
  color: var(--color__Black);
  display: inline-block;
  padding-right: 1.5em;
  text-decoration: none;
  position: relative;
}
.txt--link::after {
  content: "";
  background: url("/crowblocker/images/cmn_img/icon_arrow_s.png") no-repeat center center;
  bottom: 0;
  display: inline-block;
  height: 16px;
  right: 5px;
  margin: auto 0 auto 3px;
  position: absolute;
  top: 2px;
  width: 16px;
}
.txt--link:hover, .txt--link:active, .txt--link:focus {
  color: var(--color__LinkHover) !important;
  text-decoration: underline;
}

@media screen and (max-width: 960px) {
  .txt--link {
    padding-right: 20px;
  }
  .txt--link::after {
    right: 0;
    top: 0;
  }
}
.bold--eng {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
}

.bold,
.bold--jp {
  font-weight: 500;
}

/* 汎用
---------------------------------------------------------------------------- */
.newline {
  display: inline-block;
  font-weight: inherit;
}

.txt--narrow1 {
  font-weight: inherit;
  letter-spacing: -1px;
}

.txt--narrow2 {
  letter-spacing: -2px;
}

.txt--narrow3 {
  font-weight: inherit;
  letter-spacing: -3px;
}

.mgn.space--t {
  margin-top: 30px;
}
.mgn.space--b {
  margin-bottom: 30px;
}

.noBtm {
  margin-bottom: 0;
}

.noWrap {
  white-space: nowrap;
}

.only--pc {
  display: block;
}

.only--sp {
  display: none;
}

@media screen and (max-width: 600px) {
  .only--pc {
    display: none;
  }
  .only--sp {
    display: block;
  }
}
a.disabled {
  color: #777;
  pointer-events: none;
}

.movieWrapper {
  padding-top: 56.25%;
  position: relative;
  width: 100%;
}
.movieWrapper .movie {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

/* =========================================================================
   _modules-input
============================================================================ */
/* kill 'Browser standard style'
---------------------------------------------------------------------------- */
/* Re style
---------------------------------------------------------------------------- */
input,
textarea,
select {
  background: var(--color__White);
  border-color: var(--color__Blue);
  border-style: solid;
  border-width: 1px;
  cursor: pointer;
  outline-color: var(--color__Blue);
}

input {
  height: 35px;
  line-height: 1;
  padding: 0 10px;
}

select {
  border-radius: 2px;
  height: 35px;
  line-height: 35px;
  padding: 0 10px;
}
/*# sourceMappingURL=_maps/common.css.map */
