@charset "UTF-8";
/* 共通 */
html {
  font-size: 100%;
}
body {
  position: relative;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  color: #333;
  font-size: 16px;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.1em;
  line-height: 1.9;
  overflow: auto;
}
.hamopen {
  overflow: hidden;
  width: 100vw;
  height: 100vh;
}
a {
  text-decoration: none;
  transition: .4s;
}
a:focus-visible {
  outline: 3px solid blue !important;
  outline-offset: -1px;
  box-shadow: 0 0 0 3px white;
}
button:focus-visible {
  outline: 3px solid blue !important;
  outline-offset: -1px;
  box-shadow: 0 0 0 3px white;
}
ul, ol {
  list-style: none;
  padding: 0;
}
/*main section*/
main {
  display: block;
  position: relative;
  overflow: hidden;
}
main section {
  padding: 100px 0 115px;
  position: relative;
}
main section.bg_gray:not(:first-of-type) {
  padding: 55px 0 115px;
}
@media (max-width: 550px) {
  main section {
    padding: 60px 0 70px;
  }
  main section.bg_gray:not(:first-of-type) {
    padding: 35px 0 70px;
  }
}
.pdb {
  padding-bottom: 55px !important;
}
.pdb0 {
  padding-bottom: 1px !important;
}
@media (max-width: 550px) {
  .pdb {
    padding-bottom: 20px !important;
  }
}
/*img*/
img {
  line-height: 1;
  vertical-align: top;
  max-width: 100%;
  transition: .4s;
}
.rounded img {
  border-radius: 15px;
}
/*text*/
p {
  margin-bottom: 10px;
}
.marker {
  text-decoration: underline;
  text-decoration-thickness: 0.5em;
  text-decoration-color: #fff9a1;
  text-underline-offset: -0.3em;
  text-decoration-skip-ink: none;
}
.ib {
  display: inline-block;
}
/*中央寄せ*/
.center {
  text-align: center;
}
@media (max-width:750px) {
  .spcenter {
    text-align: center !important;
  }
}
.fitc {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
/* 見出し */
/*01*/
.maintitle {
  margin-bottom: 60px;
  display: block;
  text-align: center;
  line-height: 0.7;
  position: relative;
  font-size: clamp(1.7rem, 1.22rem + 1.7067vw, 2.5rem);
  font-family: "Shippori Mincho B1", serif;
  font-weight: 700;
  color: #021b4d;
}
.maintitle img {
  filter: invert(11%) sepia(56%) saturate(2287%) hue-rotate(201deg) brightness(95%) contrast(112%);
  width: 50px;
  height: auto;
  margin: 0 auto 7px;
  display: block;
  position: relative;
  z-index: 1;
}
section:first-of-type .maintitle img {
  margin-top: -50px;
}
.maintitle .sf {
  line-height: 1.5;
  display: inline-block;
}
.maintitle .mf {
  text-transform: capitalize;
  font-family: "Homemade Apple", cursive;
  font-weight: 400;
  font-size: 55%;
  color: #053BA6;
}
.maintitle.mtleft {
  text-align: left;
}
.txtmgb {
  margin-bottom: 30px !important;
}
@media (max-width: 550px) {
  .maintitle {
    margin-bottom: 37px;
  }
  .maintitle img {
    width: 40px;
  }
  section:first-of-type .maintitle img {
    margin-top: -25px;
  }
}
/*02*/
.stitle {
  font-weight: 700;
  position: relative;
  font-size: clamp(1.3rem, 1.06rem + 0.8533vw, 1.7rem);
  padding-left: 2px;
  line-height: 1.75;
  padding-bottom: 12px;
  margin-bottom: 15px;
  border-bottom: 3px solid rgba(0, 0, 0, 0.12);
}
.stitle::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 95px;
  height: 3px;
  background: #053BA6;
}
.stitle .en {
  text-transform: capitalize;
  font-family: "Homemade Apple", cursive;
  font-weight: 400;
  font-size: 55%;
  color: #053BA6;
  display: block;
}
/*03*/
.mtitle {
  font-weight: 700;
  position: relative;
  border-radius: 3px;
  margin-bottom: 15px;
  letter-spacing: 0.1em;
  font-size: clamp(1.2rem, 0.96rem + 0.8533vw, 1.6rem);
  line-height: 1.7;
  background: #021b4d;
  color: #fff;
  padding: 10px 25px 11px 12px;
  border-left: 7px solid #053BA6;
}
.mtitle::after {
  content: '';
  width: 20px;
  height: 3px;
  border-radius: 3px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: #053BA6;
  pointer-events: none;
}
/* ボタン */
.mainbtn a {
  position: relative;
  vertical-align: middle;
  margin: 0 auto;
  padding: 24px 7px;
  display: inline-block;
  width: fit-content;
  min-width: 290px;
  text-align: center;
  z-index: 1;
  color: #fff;
  background: #021b4d;
  border: 2px solid #fff;
  border-radius: 100px;
}
.mainbtn a:hover {
  background: #053BA6;
}
section .mainbtn a::before {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%) scale(1.3, 1);
  font-family: "Font Awesome 6 Free";
  content: "\f105";
  font-weight: bold;
  line-height: 1;
  font-size: 90%;
  transition: .4s all;
  z-index: 2;
}
section .mainbtn a:hover::before {
  right: 10px;
}
/**/
.tbtn {
  margin-top: 40px;
}
.btnflex {
  text-align: center;
}
.btnflex a {
  margin: 3.5px 5px;
  display: inline-block;
}
@media (max-width: 550px) {
  .mainbtn a {
    padding: 18px 5px;
    min-width: auto;
    max-width: 240px;
    width: 100%;
  }
  .tbtn {
    margin-top: 33px;
  }
}
/* flex要素 */
.flexbox {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.aic {
  align-items: center;
}
.reverse {
  flex-direction: row-reverse;
}
@media (max-width: 750px) {
  .flexbox {
    display: block;
  }
  .flexbox img {
    width: 100%;
  }
  .flexbox div {
    width: 100%;
  }
  .spmgb {
    margin-bottom: 40px;
  }
  .spmgb02 {
    margin-bottom: 14px;
  }
  .spmgb.rounded {
    margin-bottom: 17px;
  }
}
/* 幅 */
.inner {
  width: 88%;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 2000px) {
  .inner02 {
    max-width: 1580px;
    width: 92%;
    margin: 0 auto;
  }
  .rounded img {
    border-radius: 15px;
  }
}
@media (max-width: 1999px) {
  .inner02 {
    max-width: 100%;
    width: 100%;
  }
  .mauto {
    margin-left: auto;
    margin-right: auto;
  }
  .mauto.w52 {
    width: 48%;
  }
  .mauto.w48 {
    width: 42%;
  }
  .mauto.w43 {
    width: 37%;
  }
  .inner02 .flexbox .rounded img {
    border-radius: 15px 0 0 15px;
  }
  .inner02 .reverse .rounded img {
    border-radius: 0 15px 15px 0;
  }
}
@media (max-width: 750px) {
  .inner02 {
    width: 88%;
    margin: 0 auto;
  }
  .mauto {
    width: 100% !important;
  }
  .inner02 .rounded img {
    border-radius: 15px !important;
  }
}
.w65 {
  width: 64.5%;
}
.w52 {
  width: 52%;
}
.w48 {
  width: 48%;
}
.w43 {
  width: 43%;
}
.w32 {
  width: 31.5%;
}
/* background ========================*/
.bg {
  overflow: hidden;
  position: relative;
}
.bg::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-image: url(../img/bg.jpg);
  background-size: 550px;
  background-repeat: repeat;
  pointer-events: none;
  opacity: 0.2;
  z-index: -98;
}
.bg_gray::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #f5f5f5;
  z-index: -100;
}
.yane::after {
  content: '';
  width: 100%;
  height: 70px;
  position: absolute;
  bottom: -1px;
  left: 0;
  background: #f5f5f5;
  z-index: -100;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
@media (max-width: 750px) {
  .yane::after {
    height: 30px;
  }
}
/*illust*/
.bg01::before {
  background: url(../img/_bg/01.svg) no-repeat !important;
  background-size: 20% !important;
}
.bg02::before {
  background: url(../img/_bg/02.svg) no-repeat !important;
  background-size: 35% !important;
}
.bg03::before {
  background: url(../img/_bg/03.svg) no-repeat !important;
  background-size: 25% !important;
}
.bg04::before {
  background: url(../img/_bg/04.svg) no-repeat !important;
  background-size: 20% !important;
}
.psr.bg04::before {
  background-size: 190px !important;
}
.bg05::before {
  background: url(../img/_bg/05.svg) no-repeat !important;
  background-size: 17% !important;
}
.bg06::before {
  background: url(../img/_bg/06.svg) no-repeat !important;
  background-size: 17% !important;
}
.bg01::before, .bg02::before, .bg03::before, .bg04::before, .bg05::before, .bg06::before {
  pointer-events: none;
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  filter: invert(15%) sepia(32%) saturate(7479%) hue-rotate(220deg) brightness(101%) contrast(102%);
  z-index: -99;
  opacity: 0.2;
  background-position: top 5px right 5px !important;
}
.white::before {
  opacity: 1;
  filter: brightness(0) invert(1);
  z-index: -1;
  background-position: top 13px right 13px !important;
}
@media (max-width: 750px) {
  .bg01::before, .bg02::before, .bg03::before, .bg04::before, .bg05::before, .bg06::before {
    opacity: 0.15;
  }
  .bg01::before {
    background-size: 41% !important;
  }
  .bg02::before {
    background-size: 65% !important;
  }
  .bg03::before {
    background-size: 55% !important;
  }
  .bg04::before {
    background-size: 45% !important;
  }
  .psr.bg04::before {
    background-size: 130px !important;
  }
  .bg05::before {
    background-size: 40% !important;
  }
  .bg06::before {
    background-size: 40% !important;
  }
}
/*反転*/
.bgx::before {
  pointer-events: none;
  transform: scaleX(-1);
}
.bgy::before {
  pointer-events: none;
  transform: scaleY(-1);
}
.bgxy::before {
  pointer-events: none;
  transform: scaleX(-1) scaleY(-1);
}
/* illust ===========================*/
.tl, .tr, .bl, .br {
  position: absolute !important;
  z-index: 1 !important;
  pointer-events: none;
  width: fit-content !important;
}
.tl img, .tr img, .bl img, .br img {
  filter: invert(4%) sepia(99%) saturate(7500%) hue-rotate(211deg) brightness(92%) contrast(98%);
  object-fit: contain !important;
  width: 100% !important;
  height: 80px !important;
  border-radius: 0 !important;
  mask-image: none !important;
  -webkit-mask-image: none !important;
}
.tl img, .bl img {
  object-position: left;
}
.tr img, .br img {
  object-position: right;
}
/*位置*/
.tl, .tr {
  top: -40px !important;
}
.tl {
  left: 10px !important;
}
.tr {
  right: 10px !important;
}
.bl, .br {
  bottom: -50px !important;
}
.bl {
  left: 10px !important;
}
.br {
  right: 10px !important;
}
@media (max-width: 950px) {
  .tl, .tr {
    top: -4vw !important;
  }
  .tl img, .tr img, .bl img, .br img {
    height: 7vw !important;
  }
}
@media (max-width: 550px) {
  .tl img, .tr img, .bl img, .br img {
    height: 11vw !important;
  }
}
/**/
.psr {
  position: relative;
}
.psr .tl {
  top: -4% !important;
  left: -10px !important;
}
.psr .tr {
  top: -4% !important;
  right: -10px !important;
}
.psr .bl {
  bottom: -4% !important;
  left: -10px !important;
}
.psr .br {
  bottom: -4% !important;
  right: -10px !important;
}
/* アニメーション ===================*/
.flowup {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 1.3s, transform 1.3s;
  transition-delay: 0.35s;
}
.flowup.inview {
  opacity: 1;
  transform: translateY(0);
}
/*===== 共通部分ここまで =====*/
/* header ============================================================================*/
.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: .6s all;
  padding: 17px 0 19px;
  box-shadow: 0px 4px 4px -5px rgba(0, 0, 0, 0.13);
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.82)), url(../img/bg.jpg) repeat 50% 50% / 550px;
}
.header_pc {
  width: 98%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* logo */
h1.logo {
  width: 347px;
}
h1.logo a > span span {
  font-size: 0.67rem;
}
/* menu */
.header_menu {
  display: flex;
  align-items: center;
}
/*tel*/
.telephone {
  text-align: center;
  line-height: 1.6;
  white-space: nowrap;
}
.telephone p {
  margin-bottom: 0;
  font-size: 44%;
}
.telephone a {
  color: #021b4d;
}
.telephone a:hover {
  opacity: 0.6;
}
.header_menu .telephone {
  font-size: 1.6rem;
}
/*btn*/
.header_menu .mainbtn a {
  font-size: 0.82rem;
  min-width: auto;
  width: 215px;
  padding: 13px 0;
  white-space: nowrap;
}
.header_menu > div {
  margin-right: 12px;
}
.header_menu > div:last-of-type {
  margin-right: 0 !important;
}
/* menu */
.header_menu nav {
  align-self: flex-end;
}
.header_menu ul {
  display: flex;
  margin-right: 10px;
}
.header_menu ul li {
  margin: 0 13px;
  text-align: center;
}
.header_menu ul li a {
  display: block;
  font-size: 1.15rem;
  line-height: 1.7;
  color: #333;
  white-space: nowrap;
}
.header_menu ul li a:hover {
  opacity: 0.6;
}
.header_menu ul li a > span {
  text-transform: capitalize;
  font-family: "Homemade Apple", cursive;
  font-weight: 400;
  font-size: 65%;
  color: #053BA6;
  display: block;
}
@media (max-width: 1520px) {
  h1.logo {
    width: 22.5vw;
  }
  h1.logo a > span span {
    font-size: 0.65vw;
  }
  .header_menu .telephone {
    font-size: 1.65vw;
  }
  .header_menu .mainbtn a {
    font-size: 0.86vw;
    width: 14vw;
  }
  .header_menu ul li {
    margin: 0 0.8vw;
  }
  .header_menu ul li a {
    font-size: 1.27vw;
  }
}
/* hamburger ================================= */
.header__inner {
  position: relative;
  height: fit-content;
  display: none;
}
.hamburger {
  display: block;
  height: 31px;
  position: relative;
  z-index: 9997;
  width: 55px;
  border: none;
  background-color: transparent;
}
.hamburger.-active .hamburger__line {
  background-color: transparent;
}
.hamburger.-active .hamburger__line::before {
  top: 0;
  transform: rotate(45deg);
}
.hamburger.-active .hamburger__line::after {
  top: 0;
  transform: rotate(-45deg);
}
.hamburger__line {
  display: block;
  height: 2px;
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  transition: 0.4s;
}
.hamburger__line:before, .hamburger__line:after {
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  width: 100%;
  transition: inherit;
}
.hamburger__line, .hamburger__line:before, .hamburger__line:after {
  background-color: #021b4d;
  border-radius: 10px;
}
.hamburger__line:before {
  top: -10.5px;
}
.hamburger__line:after {
  top: 10.5px;
}
.hamopen .header {
  position: fixed;
}
/**/
.header__nav-area {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  height: 100vh; /* fallback */
  height: calc(var(--vh, 1vh) * 100);
  width: 100%;
  visibility: hidden;
  opacity: 0;
  transition: 0.4s;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.82)), url(../img/bg.jpg) repeat 50% 50% / 550px;
  overflow-y: scroll;
}
.header__nav-area.-active {
  opacity: 1;
  visibility: visible;
}
/* menu */
.global-navigation {
  width: 89%;
  margin: auto;
  height: fit-content;
  position: relative;
  z-index: 1;
  padding: 70px 0 110px;
}
.global-navigation__list {
  margin-bottom: 17px;
  text-align: center;
}
.global-navigation__list li {
  margin-bottom: 5px;
}
.global-navigation__list li a {
  font-size: 1.35rem;
  padding: 9px 0;
  line-height: 2;
  display: block;
  color: #333;
}
.global-navigation__list li a span {
  text-transform: capitalize;
  font-family: "Homemade Apple", cursive;
  font-weight: 400;
  font-size: 65%;
  color: #053BA6;
  display: block;
}
.global-navigation__list li a:hover {
  opacity: 0.6;
}
/**/
.header__nav-area .telephone {
  font-size: 1.75rem;
  margin-bottom: 17px;
}
.header__nav-area .mainbtn {
  margin-top: 7px;
}
@media (max-width:1150px) {
  h1.logo {
    width: 300px;
  }
  h1.logo a > span span {
    font-size: 0.57rem;
  }
  .header {
    padding: 15px 10px 20px;
  }
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header_pc {
    display: contents;
  }
  .header_menu {
    display: none;
  }
  .header__inner {
    display: block;
  }
}
@media (max-width: 550px) {
  h1.logo {
    width: 240px;
  }
  h1.logo a > span span {
    font-size: 0.45rem;
  }
  .header {
    padding: 15px 5px 20px;
  }
  .global-navigation__list li a {
    font-size: 1.21rem;
    padding: 6px 0;
  }
  .header__nav-area .telephone {
    font-size: 1.5rem;
  }
  .global-navigation .mainbtn a {
    font-size: 0.87rem;
    max-width: 240px;
  }
}
/* footer ============================================================================*/
.footer_contact {
  padding: 75px 0;
  position: relative;
  color: #fff;
  font-size: 1.15rem;
  clip-path: polygon(50% 0%, 100% 15%, 100% 100%, 0 100%, 0 15%);
}
.footer_contact::before {
  position: absolute;
  display: block;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  background: #021b4d;
  opacity: 0.65;
}
.footer_contact::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/footer.webp);
  background-size: cover;
  background-position: 50% 50%;
  z-index: -100;
}
/* logo */
.logo {
  display: block;
  line-height: 1;
}
.logo a > span span {
  white-space: nowrap;
  display: block;
  width: fit-content;
  margin: 3% auto 0;
  color: #111;
}
.logo a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo a > img {
  width: 38%;
}
.logo a > span {
  width: 60%;
}
/**/
h3.logo {
  filter: brightness(0) invert(1);
  margin: 0 auto 9px;
  width: 100%;
  max-width: 420px;
}
h3.logo a > span span {
  font-size: 0.8rem;
}
/* btn */
.fbtns {
  margin-top: 30px;
  text-align: center;
}
.fbtns a {
  display: inline-block;
  margin: 7px 5px;
  width: 285px;
  color: #fff;
  padding: 22px 5px;
  white-space: nowrap;
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 7px;
}
.fbtns a:last-of-type {
  font-size: 90%;
}
.fbtns a:hover {
  border: 2px solid #fff;
  background-color: rgba(255, 255, 255, 0.1);
}
.fax {
  pointer-events: none;
}
.copyright {
  text-align: center;
  margin-top: 30px;
  font-size: clamp(0.93rem, 0.858rem + 0.256vw, 1.05rem);
}
@media (max-width: 750px) {
  .footer_contact {
    padding: 58px 0 50px;
  }
  .footer_contact {
    clip-path: polygon(50% 0%, 100% 6%, 100% 100%, 0 100%, 0 6%);
  }
}
@media (max-width: 700px) {
  .footer_contact {
    font-size: 100%;
  }
  h3.logo {
    margin: 0 auto 8px;
    max-width: 325px;
  }
  h3.logo a > span span {
    font-size: 0.55rem;
  }
  .fbtns a {
    display: block;
    margin: 9px auto 0;
  }
}
/*ページ上に戻るボタン*/
.go_top {
  display: block;
  width: 70px;
  aspect-ratio: 1/1;
  background: #021b4d;
  border: 2px solid rgba(255, 255, 255, 0.35);
  position: fixed;
  bottom: 20px;
  right: 25px;
  z-index: 79;
  border-radius: 50px;
}
.go_top::before {
  font-family: "Font Awesome 6 Free";
  content: "\f124";
  font-weight: bold;
  color: #fff;
  font-size: 80%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.go_top:hover {
  opacity: 0.6;
}
.tfade {
  position: relative;
  z-index: 79;
}
@media(max-width:550px) {
  .go_top {
    width: 58px;
    right: 15px;
    bottom: 10px;
  }
}
/* スライド ==========================================================================*/
.topslide {
  overflow: hidden;
  position: relative;
}
.topslide::before, .topslide::after {
  content: "";
  position: absolute;
  bottom: -0.5px;
  left: 0;
  width: 100%;
  height: 70px;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
.topslide::after {
  background: #fff;
  z-index: 1;
}
.topslide::before {
  background-image: url(../img/bg.jpg);
  background-size: 550px;
  background-repeat: repeat;
  pointer-events: none;
  opacity: 0.2;
  z-index: 2;
}
@media (max-width: 750px) {
  .topslide::before, .topslide::after {
    height: 30px;
  }
}
/**/
.slide_items {
  position: relative;
  overflow: hidden;
}
.slide_items .slick-slide::after {
  position: absolute;
  display: block;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  background: #021b4d;
}
.slide_items .slick-slide:nth-child(1)::after {
  opacity: 0.25;
}
.slide_items .slick-slide:nth-child(2)::after {
  opacity: 0.45;
}
.slide_items img {
  object-fit: cover;
  width: 100%;
  height: calc(100vh - 135px);
  min-height: 620px;
}
.slick-animation {
  animation: fadezoom 14s linear 0s normal both;
}
@keyframes fadezoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}
/* catchcopy */
.catchcopy {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(1rem, 0.7rem + 1.0667vw, 1.5rem);
  line-height: 1.5;
  color: #fff;
  z-index: 3;
  width: 83%;
  text-shadow: 0px 2.5px 3px rgb(0 0 0 / 13%), 0px -2.5px 3px rgb(0 0 0 / 10%);
}
.catchcopy p {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.catchcopy span {
  width: fit-content;
  white-space: nowrap;
  text-align: center;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 700;
  display: block;
  font-size: 290%;
  position: relative;
  line-height: 0.65;
  margin: auto;
  margin-bottom: 7px;
}
.catchcopy span::after {
  content: url(../img/slide.svg);
  display: block;
  margin: auto;
  width: 100%;
  filter: brightness(0) invert(1);
}
@media (max-width: 1190px) {
  .slide_items img {
    min-height: 350px;
    height: calc(100vh - 200px);
  }
}
@media (max-width: 1150px) {
  .slide_items img {
    height: calc(100vh - 165px);
  }
}
@media (max-width: 550px) {
  .slide_items img {
    min-height: 300px;
    height: calc(100vh - 155px);
  }
  .catchcopy span {
    font-size: 192%;
  }
}
/* ”瓦心”は鹿児島に根ざした屋根ふき業者です ========================================*/
.welcome {
  padding: 55px 0 0;
}
.welcome .maintitle img {
  margin-top: 0 !important;
}
@media (max-width: 550px) {
  .welcome {
    padding: 40px 0 0;
  }
}
.welcome .inner {
  max-width: 843px;
}
.welimg {
  width: 100%;
  margin-top: -350px;
  position: relative;
  z-index: -100;
  mask-image: linear-gradient(to top, #000 20%, #000 40%, transparent 100%);
  -webkit-mask-image: linear-gradient(to top, #000 20%, #000 40%, transparent 100%);
}
.welimg img {
  width: 100%;
}
@media (max-width: 1885px) {
  .welcome::after {
    content: '';
    width: 100%;
    height: 97%;
    position: absolute;
    bottom: 0;
    left: 0;
    background: #77bfeb;
    z-index: -101;
    opacity: 0.6;
    mask-image: linear-gradient(to top, #000 10%, #000 20%, transparent 100%);
    -webkit-mask-image: linear-gradient(to top, #000 10%, #000 20%, transparent 100%);
  }
  .welimg {
    margin-top: -15vw;
  }
}
@media (max-width: 855px) {
  .welimg {
    margin-top: -55px;
  }
}
/* 安心してお任せいただける6つの理由 =================================================*/
.reasons .inner {
  max-width: 1600px;
  width: 93%;
}
.rea_items {
  margin-top: 90px;
  counter-reset: number 0;
}
.rea_items > div {
  width: 30.5%;
  margin-bottom: 45px;
}
.rea_items > div h2 {
  font-size: clamp(1.4rem, 1.28rem + 0.4267vw, 1.6rem);
  text-align: center;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 700;
  color: #021b4d;
  margin-bottom: 15px;
  line-height: 1.6;
}
.reaimg {
  position: relative;
  margin-bottom: 20px;
}
.reaimg::before {
  content: "0"counter(number);
  counter-increment: number 1;
  font-family: "Homemade Apple", cursive;
  font-weight: 400;
  font-size: clamp(2.5rem, 2.02rem + 1.7067vw, 3.3rem);
  color: #053BA6;
  position: absolute;
  top: 12.5%;
  right: 0;
  z-index: 1;
  line-height: 1;
}
.reaimg img {
  clip-path: polygon(50% 0%, 100% 25%, 100% 100%, 0 100%, 0 25%);
}
.reaimg p {
  margin-bottom: 0;
  position: absolute;
  bottom: 15px;
  left: -10px;
  padding: 1px 20px 3.5px;
  color: #fff;
  background: #053BA6;
  font-size: clamp(1.1rem, 0.98rem + 0.4267vw, 1.3rem);
  z-index: 1;
  border-radius: 5px 5px 5px 0;
}
.reaimg p::after {
  position: absolute;
  content: '';
  bottom: -10px;
  left: 0;
  border: none;
  border-bottom: solid 10px transparent;
  border-right: solid 10px #00040d;
}
@media (max-width: 1385px) {
  .reasons .inner {
    width: 88%;
  }
  .rea_items > div {
    width: 46.5%;
  }
}
@media (max-width: 955px) {
  .rea_items {
    display: block;
  }
  .rea_items > div {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 55px;
  }
  .rea_items > div:nth-child(2n+1) {
    flex-direction: row-reverse;
  }
  .rea_items > div:last-of-type {
    margin-bottom: 0 !important;
  }
  .rea_items > div div:last-of-type {
    width: 57%;
  }
  .reaimg {
    width: 37%;
  }
  .reaimg::before {
    top: 4%;
  }
}
@media (max-width: 750px) {
  .rea_items > div {
    display: block;
  }
  .rea_items > div div {
    width: 100% !important;
  }
  .reaimg::before {
    top: 17%;
  }
}
@media (max-width: 550px) {
  .rea_items {
    margin-top: 60px;
  }
  .reaimg::before {
    top: 4vw;
    font-size: 13.5vw;
  }
  .reaimg img {
    object-fit: cover;
    width: 100%;
    height: 65vw;
  }
}
/* サービス一覧 ======================================================================*/
.services .inner {
  max-width: 1260px;
}
.services .fitc {
  margin-bottom: 65px;
}
.services .tbtn {
  margin-top: 60px;
}
.services .flexbox {
  position: relative;
  margin-bottom: 60px;
}
.services .flexbox:nth-child(2n+1) {
  flex-direction: row-reverse;
}
.services .flexbox h2 {
  position: relative;
  font-size: clamp(1.6rem, 1.36rem + 0.8533vw, 2rem);
  font-family: "Shippori Mincho B1", serif;
  font-weight: 700;
  color: #021b4d;
  margin-bottom: 25px;
  line-height: 1.8;
}
.services .flexbox h2::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: -19%;
  transform: translateY(-50%);
  z-index: 1;
  width: 17%;
  border-bottom: 3px dotted #053BA6;
  filter: drop-shadow(1px 1px 0px #f5f5f5) drop-shadow(-1px -1px 0px #f5f5f5) drop-shadow(-1px 1px 0px #f5f5f5) drop-shadow(1px -1px 0px #f5f5f5);
}
.services .flexbox:nth-child(2n+1) h2 {
  text-align: right;
}
.services .flexbox:nth-child(2n+1) h2::after {
  left: auto;
  right: -19%;
}
.services .flexbox h2 span {
  display: block;
  text-transform: capitalize;
  font-family: "Homemade Apple", cursive;
  font-weight: 400;
  font-size: 55%;
  color: #053BA6;
}
.services .flexbox:last-of-type {
  margin-bottom: 0 !important;
}
@media (max-width: 750px) {
  .services .flexbox::before {
    filter: brightness(0) invert(1);
    opacity: 1;
    z-index: 1;
    background-position: top -15px right -15px !important;
  }
  .services .flexbox h2 {
    text-align: center !important;
  }
  .services .flexbox h2::after {
    width: 3px;
    height: 40px;
    border-bottom: none;
    border-right: 3px dotted #053BA6;
    top: -40px;
    left: 50% !important;
    transform: translateX(-50%);
    right: auto !important;
  }
}
@media (max-width: 550px) {
  .services .fitc {
    margin-bottom: 40px;
  }
  .services .tbtn {
    margin-top: 40px;
  }
}
/* 施工事例 ==========================================================================*/
.works .inner {
  width: 91%;
}
/*slider*/
.w_slider li {
  padding: 30px;
  background: #fff;
  border-radius: 15px;
  margin: 20px;
  box-shadow: rgba(149, 157, 165, 0.15) 0px 8px 14px;
}
.w_slider .flexbox {
  flex-direction: row-reverse;
}
.slick-prev, .slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #021b4d !important;
  z-index: 2;
  transition: .4s all;
}
.slick-prev::before, .slick-next::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: '';
  font-size: 16px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  opacity: 1;
}
.slick-prev:hover, .slick-next:hover {
  opacity: 0.6;
}
.slick-prev {
  left: -20px;
}
.slick-next {
  right: -20px;
}
.slick-prev::before {
  content: '\f060';
}
.slick-next::before {
  content: '\f061';
}
@media (max-width: 550px) {
  .works .tbtn {
    margin-top: 20px;
  }
  .w_slider li {
    margin: 5px 10px 20px;
    padding: 20px;
    box-shadow: rgba(149, 157, 165, 0.15) 0px 8px 10px;
  }
  .slick-prev, .slick-next {
    width: 29px;
    height: 29px;
  }
  .slick-prev::before, .slick-next::before {
    font-size: 14px;
  }
  .slick-prev {
    left: -10px;
  }
  .slick-next {
    right: -10px;
  }
}
/*table*/
.info_table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}
.info_table tr {
  border-bottom: 2px dotted rgba(0, 0, 0, 0.23);
}
.info_table th {
  background: transparent;
  width: 35%;
}
.info_table th, .info_table td {
  font-weight: 700;
  padding: 23px 0;
}
.info_table td {
  padding-left: 10px;
  padding-right: 10px;
  width: 65%;
  background: transparent;
}
.info_table tr:first-of-type td, .info_table tr:first-of-type th {
  padding-top: 10px !important;
}
.info_table a {
  color: #053BA6;
}
.info_table a:hover {
  opacity: 0.6;
}
@media(max-width: 550px) {
  .info_table tr {
    border-bottom: none;
  }
  .info_table td {
    border-bottom: 2px dotted rgba(0, 0, 0, 0.23);
    margin-bottom: 0;
  }
  .info_table tr:first-of-type td, .info_table tr:first-of-type th {
    padding-top: 0 !important;
  }
  .info_table td, .info_table th {
    width: 100%;
    padding: 8px 0 18px;
    display: block;
  }
  .info_table th {
    text-align: left;
    padding-bottom: 0;
    padding-top: 13px;
  }
}
/**/
.p_slider ul .slick-slide {
  margin-left: 0.3% !important;
  transition: .3s ease;
}
.p_slider ul li {
  overflow: hidden;
  position: relative;
  border-radius: 15px;
}
.p_slider ul li:nth-child(2n+1) {
  margin-top: 30px;
}
.p_slider ul li::before {
  content: '';
  display: block;
  padding-top: 80%; /*高さの比率*/
}
.p_slider ul li img {
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: .8s;
}
.p_slider a:hover img {
  transform: scale(1.1);
  transition: .8s;
}
.works .tbtn {
  margin-top: 30px;
}
@media (max-width: 750px) {
  .p_slider ul li:nth-child(2n+1) {
    margin-top: 15px;
  }
}
/* 下層ページトップ ===========================================================================================================*/
.fv {
  padding: 80px 0 120px;
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
  background: url(../img/fv.webp);
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: 50% 60%;
}
.fv .inner {
  width: 97%;
}
.fv .inner:not(.binner)::after {
  position: absolute;
  display: block;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 0.6;
  z-index: 1;
  background: #021b4d;
}
.fv::before, .fv::after {
  content: "";
  position: absolute;
  bottom: -0.5px;
  left: 0;
  width: 100%;
  height: 50px;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
.fv::after {
  background: #fff;
  z-index: 2;
}
.fv::before {
  background-image: url(../img/bg.jpg);
  background-size: 550px;
  background-repeat: repeat;
  pointer-events: none;
  opacity: 0.2;
  z-index: 3;
}
.fv h2 {
  position: relative;
  z-index: 4;
  text-align: center;
  margin-bottom: 13px !important;
  font-size: clamp(1.8rem, 1.26rem + 1.92vw, 2.7rem);
  line-height: 1.5;
  color: #fff;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 700;
}
@media(max-width:1150px) {
  .fv {
    padding: 70px 0 110px;
  }
}
@media(max-width:550px) {
  .fv {
    padding: 40px 0 45px;
  }
  .fv::before, .fv::after {
    height: 15px;
  }
}
/* breadcrumb */
.binner {
  line-height: 1.4;
  width: 97%;
  font-size: clamp(0.85rem, 0.79rem + 0.2133vw, 0.95rem);
  position: relative;
  z-index: 4;
  color: #fff;
}
.breadcrumb {
  background: transparent;
  position: relative;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
}
.breadcrumb li {
  display: inline;
  list-style: none;
}
.breadcrumb li:after {
  content: '>';
  position: relative;
  top: -0.1em;
}
.breadcrumb li:last-child:after {
  content: none;
}
.breadcrumb li a {
  text-decoration: none;
  color: #fff;
}
.breadcrumb li:first-child a::before {
  font-family: "Font Awesome 6 Free";
  content: '\f015';
  font-weight: bold;
  font-size: 90%;
  position: relative;
  top: -0.05em;
}
/**/
.f_bg_gray .fv::after {
  background: #f5f5f5;
}
.f_bg_gray {
  position: relative;
}
.f_bg_gray::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #f5f5f5;
  z-index: -100;
}
/* 瓦心についてページ ===========================================================================================================*/
/* ごあいさつ */
.greeting .inner {
  max-width: 1250px;
}
.greeting .maintitle img {
  width: 70px;
}
.greeting .protitle {
  margin-bottom: 55px;
  font-size: clamp(1.4rem, 0.98rem + 1.4933vw, 2.1rem);
}
.greeting .flexbox {
  margin-bottom: 65px;
}
.greeting .flexbox:last-of-type {
  margin-bottom: 0 !important;
}
.greeting .flexbox p {
  margin-bottom: 15px;
}
.greeting .flexbox p:last-of-type {
  margin-bottom: 0 !important;
}
.fleximg {
  display: flex;
}
.fleximg img {
  object-fit: cover;
  width: 100%;
  height: auto;
}
@media(max-width: 1120px) {
  .greeting .flexbox {
    align-items: stretch;
  }
}
@media(max-width: 550px) {
  .greeting .flexbox {
    margin-bottom: 45px;
  }
  .greeting .protitle {
    margin-bottom: 43px;
  }
  .greeting .maintitle img {
    width: 60px;
  }
}
/* 私たちが考える瓦のこと */
.kawara .inner {
  max-width: 992px;
}
.kawara_img img {
  clip-path: polygon(50% 0%, 100% 25%, 100% 100%, 0 100%, 0 25%);
  width: 100%;
  height: 470px;
  object-fit: cover;
}
.kawara_box {
  padding: 45px 60px;
  border-radius: 15px;
  background: #fff;
  margin: -160px auto 0;
  box-shadow: rgba(149, 157, 165, 0.04) 0px 8px 14px;
}
@media(max-width: 1610px) {
  .kawara_img img {
    height: 30vw;
  }
  .kawara_box {
    margin-top: -9vw;
  }
}
@media(max-width: 1250px) {
  .kawara_img img {
    height: 34vw;
  }
}
@media(max-width: 850px) {
  .kawara_img img {
    height: 45vw;
  }
}
@media(max-width: 750px) {
  .kawara_img img {
    height: 55vw;
  }
  .kawara_box .protitle {
    margin-bottom: 20px;
  }
  .kawara_box {
    padding: 35px;
  }
}
@media(max-width: 550px) {
  .kawara_box {
    padding: 23px 15px;
  }
}
/**/
.advantage .flexbox {
  margin-bottom: 65px;
}
.advantage .flexbox:nth-child(2n+1) {
  flex-direction: row-reverse;
}
.advantage .flexbox:last-of-type {
  margin-bottom: 0 !important;
}
.advantage .flexbox img {
  clip-path: polygon(50% 0%, 100% 25%, 100% 100%, 0 100%, 0 25%);
}
@media(max-width:550px) {
  .advantage .flexbox {
    margin-bottom: 55px;
  }
}
/* 会社概要 */
.map p {
  margin-bottom: 15px;
}
.map iframe {
  border: 2px solid rgba(0, 0, 0, 0.09) !important;
  width: 100%;
  height: 300px;
  border-radius: 15px;
}
@media(max-width:550px) {
  .map iframe {
    height: 250px;
  }
}
/* サービス紹介ページ ===========================================================================================================*/
.servicesPage section:not(.bg_gray) {
  padding-bottom: 180px;
}
.servicesPage section:last-of-type {
  padding-bottom: 115px;
}
@media(max-width:750px) {
  .servicesPage section:not(.bg_gray) {
    padding-bottom: 130px;
  }
}
@media(max-width:550px) {
  .servicesPage section:not(.bg_gray), .servicesPage section:last-of-type {
    padding-bottom: 70px;
  }
}
.protitle {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 700;
  margin-bottom: 23px;
  line-height: 1.6;
  color: #021b4d;
  font-size: clamp(1.35rem, 1.17rem + 0.64vw, 1.65rem);
}
.professional .protitle {
  margin-bottom: 30px;
  font-size: clamp(1.35rem, 1.08rem + 0.96vw, 1.8rem);
}
.protitle img {
  filter: invert(11%) sepia(56%) saturate(2287%) hue-rotate(201deg) brightness(95%) contrast(112%);
  width: 70px;
  height: auto;
  margin: -50px auto 10px;
  display: block;
  position: relative;
  z-index: 1;
}
.thrflex {
  display: flex;
  justify-content: space-between;
  margin-top: 47px;
}
.thrflex > div {
  width: 31%;
  position: relative;
}
.thrflex > div:nth-child(2) {
  top: 15px;
}
.thrflex > div:nth-child(3) {
  top: 30px;
}
@media(max-width: 750px) {
  .thrflex {
    flex-wrap: wrap;
  }
  .thrflex > div:nth-child(1) {
    width: 100%;
    order: -1;
    margin-top: 0;
  }
  .thrflex > div:nth-child(2), .thrflex > div:nth-child(3) {
    width: 47.5%;
  }
  .thrflex > div:nth-child(2) img, .thrflex > div:nth-child(3) img {
    border-radius: 10px;
  }
}
@media(max-width: 550px) {
  .professional .protitle {
    margin-bottom: 23px;
  }
  .protitle img {
    width: 60px;
    margin: -25px auto 13px;
  }
  .professional .protitle.center {
    text-align: left;
  }
  .professional .protitle.center br {
    display: none;
  }
  .thrflex {
    margin-top: 40px;
  }
}
.relation {
  margin-top: 30px;
}
.relbox {
  border-radius: 15px;
  background: #fff;
  padding: 25px 33px 35px;
  margin-top: 40px;
}
.flexbox .relation {
  margin-top: 23px;
}
.flexbox .relation .stitle {
  font-size: clamp(1.3rem, 1.15rem + 0.5333vw, 1.55rem);
}
.acheck.listflex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.acheck.listflex li {
  width: 49%;
}
@media(max-width:1095px) {
  .acheck.listflex {
    display: block;
  }
  .acheck.listflex li {
    width: 100%;
  }
}
@media(max-width:1070px) {
  .servicesPage .flexbox {
    display: block;
  }
  .servicesPage .flexbox div, .servicesPage .flexbox img {
    width: 100%;
  }
  .servicesPage .flexbox img {
    object-fit: cover;
    width: 100%;
    height: 37vw;
  }
  .servicesPage .flexbox .spmgb {
    margin-bottom: 35px;
  }
}
@media(max-width:750px) {
  .servicesPage .flexbox img {
    height: auto;
  }
  .servicesPage .flexbox .spmgb {
    margin-bottom: 30px;
  }
  .relbox {
    padding: 15px 15px 23px;
    margin-top: 37px;
  }
}
/* 初めての方へページ ===========================================================================================================*/
/* 屋根工事が初めてでも、ご安心ください。 */
.guide .maintitle {
  font-size: clamp(1.5rem, 0.96rem + 1.92vw, 2.4rem);
}
@media(max-width:750px) {
  .guide .psr.bg04::before {
    background-position: top left !important;
  }
}
/* 瓦心が選ばれる3つの理由 */
.three .inner {
  max-width: 1046px;
  counter-reset: number 0;
}
.three .flexbox {
  margin-bottom: 50px;
}
.three .flexbox:last-of-type {
  margin-bottom: 0 !important;
}
.three .flexbox img {
  clip-path: polygon(50% 0%, 100% 25%, 100% 100%, 0 100%, 0 25%);
}
.three .flexbox .stitle .en {
  position: relative;
}
.three .flexbox .stitle .en::before {
  content: "0"counter(number)".";
  counter-increment: number 1;
  font-family: "Homemade Apple", cursive;
  font-weight: 400;
  font-size: 150%;
  margin-right: 10px;
  position: relative;
  top: 0.07em;
}
/* 工事の流れも、丁寧にご説明します。 */
.flow .maintitle {
  font-size: clamp(1.65rem, 1.2rem + 1.6vw, 2.4rem);
}
.flow .inner {
  max-width: 1100px;
}
/*ご相談の流れ（一例）*/
.flow .fitc {
  margin-bottom: 55px;
}
@media(max-width: 1085px) {
  .flow .flexbox {
    align-items: flex-start;
  }
}
@media(max-width:550px) {
  .flow .fitc {
    margin-bottom: 37px;
  }
}
.sflow {
  position: relative;
  counter-reset: number 0;
}
.sitem {
  position: relative;
  margin-bottom: 25px;
}
.sitem:last-child {
  margin-bottom: 0 !important;
}
.sitem::after, .sitem::before {
  content: "";
  display: block;
  position: absolute;
}
.sitem::before {
  z-index: 1;
  width: 2.5em;
  height: 2.5em;
  background: #021b4d;
  border-radius: 50%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  box-shadow: rgb(0 0 0 / 2.5%) 0px 2px 8px 0px;
}
.sitem::after {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  z-index: 1;
  counter-increment: number 1;
  content: "0"counter(number);
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
}
.sitem p {
  background: #fff;
  padding: 13px 5px;
  padding-left: 25px;
  margin-bottom: 0;
  box-shadow: rgb(0 0 0 / 2.5%) 0px 2px 8px 0px;
  width: calc(100% - 25px);
  margin-left: auto;
  border-radius: 7px;
  position: relative;
}
.sitem p::after {
  font-family: "Font Awesome 6 Free";
  content: "\f0d7";
  font-weight: bold;
  color: #021b4d;
  line-height: 1;
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}
.sitem:last-child p::after {
  content: none;
}
/*img*/
.eff_imgs {
  position: relative;
  padding-bottom: 70px;
}
.eff_imgs div {
  width: 52% !important;
}
.eff_imgs div:nth-child(1) {
  margin-left: auto;
}
.eff_imgs div:nth-child(2) {
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (max-width: 750px) {
  .eff_imgs div img {
    border-radius: 10px;
  }
  .eff_imgs {
    padding-bottom: 11%;
  }
}
/* よくあるご質問 */
.faqs .inner {
  max-width: 1464px;
  width: 92%;
}
.faq {
  width: 49%;
  padding: 20px 15px;
  margin-bottom: 20px;
  border-radius: 15px;
  background: #fff;
}
.faq h2 {
  font-weight: 700;
  font-size: clamp(1.1rem, 1.04rem + 0.2133vw, 1.2rem);
  line-height: 1.6;
  color: #021b4d;
  border-bottom: 2px dotted rgba(0, 0, 0, 0.23);
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.faq h2, .answer {
  position: relative;
  padding-left: 32px;
}
.faq h2::before, .answer::before {
  position: absolute;
  font-size: clamp(1.1rem, 1.04rem + 0.2133vw, 1.2rem);
  font-weight: 700;
}
.faq h2::before {
  content: "Q.";
  top: -0.05em;
  left: 0;
}
.answer::before {
  content: "A.";
  top: -0.2em;
  left: 0.5px;
  color: #053BA6;
}
@media(max-width:1150px) {
  .faqs .inner {
    width: 88%;
  }
  .faqs .flexbox {
    display: block;
  }
  .faq {
    width: 100%;
  }
  .faq:last-of-type {
    margin-bottom: 0 !important;
  }
}
/* 小さな不安も、お気軽にご相談ください。 */
.mgb20 {
  margin-bottom: 20px;
}
/*list*/
.acheck li {
  padding-left: 21px;
  position: relative;
  border-bottom: 2px dotted rgba(0, 0, 0, 0.2);
  padding-bottom: 7px;
  margin-bottom: 7px;
}
table .acheck li {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 7px;
}
.acheck li::before {
  font-family: "Font Awesome 6 Free";
  content: "\f14a";
  font-weight: bold;
  display: inline-block;
  color: #053BA6;
  font-size: .9em;
  position: absolute;
  top: 0.17em;
  left: 0;
}
.dots.acheck li {
  padding-left: 13px;
}
.dots.acheck li::before {
  content: "\f111";
  font-size: .3em;
  top: 2.25em;
}
/* お問い合わせページ ===========================================================================================================*/
.contactPage, .contactPage .fv::after {
  background: #f5f5f5;
}
.contact_sec {
  position: relative;
}
.contact_sec .inner {
  max-width: 970px;
}
/**/
.contop {
  margin-bottom: 45px;
}
.contop img {
  filter: invert(11%) sepia(56%) saturate(2287%) hue-rotate(201deg) brightness(95%) contrast(112%);
  width: 50px;
  height: auto;
  margin: -30px auto 13px;
  display: block;
  position: relative;
  z-index: 1;
}
@media (max-width: 550px) {
  .contop {
    margin-bottom: 30px;
  }
  .contop img {
    width: 40px;
  }
}
/* 電話・FAX */
/*box*/
.telbox {
  border-radius: 15px;
  background: #fff;
  padding: 33px 30px;
}
@media (max-width:750px) {
  .telbox {
    margin-bottom: 10px;
  }
  .telbox:last-child {
    margin-bottom: 0;
  }
}
@media (max-width:550px) {
  .telbox {
    padding: 15px 0 22px;
  }
}
/* 番号 */
.telbox a {
  white-space: nowrap;
  font-size: clamp(1.65rem, 1.56rem + 0.32vw, 1.8rem);
  color: #333;
}
.telbox a i, .telbox i {
  color: #053BA6;
}
.telbox a:hover {
  opacity: 0.6;
}
.telwrap {
  margin-top: 0 !important;
}
.telwrap p {
  font-size: clamp(1rem, 0.94rem + 0.2133vw, 1.1rem);
  margin-bottom: 0;
}
/*fax*/
.fax {
  pointer-events: none;
}
.telboxwrap {
  margin-top: 50px;
}
.telboxwrap .telbox a {
  margin-right: 40px;
}
.telboxwrap .telbox p {
  margin-bottom: 0;
}
.telboxwrap .telbox {
  display: flex;
  align-items: center;
}
.fcheck {
  display: flex;
}
.fcheck li {
  padding-left: 18px;
  margin-right: 20px;
  position: relative;
}
.fcheck li:last-child {
  margin-right: 0;
}
.fcheck li::before {
  font-family: "Font Awesome 6 Free";
  content: "\f14a";
  font-weight: bold;
  display: inline-block;
  color: #053BA6;
  font-size: .9em;
  position: absolute;
  top: 0.15em;
  left: 0;
}
@media (max-width: 850px) {
  .telboxwrap .telbox {
    display: block;
  }
  .telboxwrap .telbox a {
    margin-right: 0;
  }
}
@media (max-width: 550px) {
  .telboxwrap .telbox {
    display: block;
    text-align: center;
  }
  .telboxwrap .telbox .ib {
    display: block;
  }
  .fcheck {
    display: block;
  }
  .fcheck li {
    margin-right: 0;
  }
}
/* メール */
#email {
  position: relative;
  top: -50px;
}
.mnote {
  max-width: 900px;
  margin: auto;
  margin-top: 55px;
}
.mpdb {
  padding-bottom: 55px !important;
  margin-bottom: 0 !important;
}
@media(max-width:550px) {
  .mnote {
    margin-top: 45px;
    font-size: 90%;
  }
  .mpdb {
    padding-bottom: 27px !important;
  }
}
.formsel p:last-child {
  margin-bottom: 0;
}
.mailform .row {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
}
.mailform .row:not(.last) {
  border-bottom: 0.9px dotted #333;
}
.mailform .row div {
  text-align: left;
}
.mailform .row div:nth-child(1) {
  width: 28%;
}
.mailform .row div:nth-child(2) {
  width: 70%;
  line-height: 1.5;
}
.mailform .row span {
  color: #fff;
  background: #021b4d;
  padding: 2px 5px;
  margin-right: 3px;
  border-radius: 3px;
  font-size: 80%;
}
.mailform .row span.mailsp {
  color: #021b4d;
  background: #fff;
  border: 2px solid #021b4d;
}
.mailform .row small {
  display: block;
  margin-top: 3px;
}
.mailform label {
  color: #333;
}
.mailform .box, .mailform textarea {
  border: 1px solid #ddd;
  padding: 5px;
  width: 100% !important;
  border-radius: 0;
  -webkit-appearance: none;
  margin-bottom: 5px;
  background: #fff;
}
.mailform button {
  border-radius: 50px;
  display: block;
  width: 270px;
  padding: 24px 0;
  text-align: center;
  margin: 0 auto;
  white-space: nowrap;
  transition: .4s;
  position: relative;
  overflow: hidden;
  background: #021b4d;
  color: #fff;
  border: 2px solid #021b4d;
}
.mailform button::before {
  font-family: "Font Awesome 6 Free";
  content: "\f0e0";
  font-weight: bold;
  margin-right: 10px;
}
.mailform button:hover {
  color: #021b4d;
  background: #fff;
}
/*チェックボックス*/
.mailform input[type=checkbox] {
  display: none;
}
.mailform input[type=checkbox] + label {
  display: inline-block;
  padding-left: 20px;
  position: relative;
  margin-right: 20px;
  margin-bottom: 10px;
  cursor: pointer;
}
.mailform input[type=checkbox] + label::before {
  background: #fff;
  border: 1px solid #b5b5b5;
  content: '';
  display: block;
  position: absolute;
  top: 0.35em;
  left: 0;
  width: 15px;
  height: 15px;
  border-radius: 3px;
}
.mailform input[type=checkbox] + label::after {
  border-right: 3px solid #021b4d;
  border-bottom: 3px solid #021b4d;
  content: '';
  display: block;
  height: 13px;
  width: 7px;
  opacity: 0;
  position: absolute;
  top: 0.35em;
  left: 4px;
  transform: rotate(45deg);
  transition: .1s;
}
.mailform input[type=checkbox]:checked + label::after {
  opacity: 1;
}
/**/
.mailform .box.mini {
  width: 110px !important;
}
.mailform .postal_btn {
  padding: 2px 10px;
  background: #f4f4f4;
  border-radius: 2px;
  margin-left: 5px;
  border: 1px solid #ccc;
}
.mailform .postal_btn:hover {
  opacity: 0.7;
}
/**/
.mails {
  padding-bottom: 65px;
}
@media (max-width: 550px) {
  .mailform button {
    width: 220px;
    padding: 19px 0;
  }
  .formsel label {
    font-size: 0.95rem;
  }
  .mailform input[type=checkbox] + label {
    display: block;
  }
}
@media (max-width: 800px) {
  .mailform .row:first-child {
    padding-top: 5px;
  }
  .mailform .row {
    padding: 20px 0;
    flex-direction: column;
  }
  .mailform .row div:nth-child(1) {
    width: 100%;
    margin-bottom: 20px;
  }
  .mailform .row div:nth-child(2) {
    width: 100%;
  }
}
/* プライバシーポリシー */
.privacy {
  padding-top: 0;
}
.privacy .stitle {
  font-size: clamp(1.15rem, 0.94rem + 0.7467vw, 1.5rem);
  padding-bottom: 0;
  border-bottom: none;
  margin-bottom: 12px;
}
.privacy .stitle::after {
  content: none;
}
.privacy .stitle i {
  color: #021b4d;
}
.scrollBox {
  border-radius: 15px;
  background: #fff;
  padding: 15px;
}
.scrollBox div {
  height: 210px;
  overflow-y: scroll;
  padding: 0 10px;
}
.scrollBox span {
  font-size: 107%;
}
.scrollBox span::before {
  content: "■";
  color: #021b4d;
  margin-right: 3px;
}
@media(max-width:450px) {
  .scrollBox {
    padding: 15px 10px;
  }
}