@charset "UTF-8";
/* 共通 */
html {
  font-size: 100%;
}
body {
  position: relative;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  color: #594e48;
  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 120px;
  position: relative;
}
main section.bg_blue {
  padding: 100px 0;
}
main section:last-of-type {
  padding-bottom: 95px;
}
@media (max-width: 750px) {
  main section {
    padding: 50px 0 80px;
  }
  main section.bg_blue {
    padding: 30px 0 40px;
  }
  main section:last-of-type {
    padding-bottom: 50px;
  }
}
.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: 10px;
}
/*text*/
p {
  margin-bottom: 10px;
}
.marker {
  text-decoration: underline;
  text-decoration-thickness: 0.65em;
  text-decoration-color: #e4f3f7;
  text-underline-offset: -0.3em;
  text-decoration-skip-ink: none;
}
.marker.whitetext {
  text-decoration-color: #57a8eb;
}
.marker.blue {
  text-decoration-color: #d5eef5;
}
.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: 45px;
  display: block;
  text-align: center;
  line-height: 1.35;
  position: relative;
  font-size: clamp(2rem, 1.4rem + 2.1333vw, 3rem);
  font-weight: 700;
}
.maintitle .mf {
  text-align: center;
  margin-bottom: 10px;
  text-transform: uppercase;
  position: relative;
  color: #5aa2e6;
  letter-spacing: 0.2em;
  font-family: "Lato", sans-serif;
  font-weight: 700;
}
.maintitle.mtleft {
  text-align: left;
}
.txtmgb {
  margin-bottom: 30px !important;
}
.maintitle .mf {
  font-size: 37%;
}
@media (max-width: 550px) {
  .txtmgb {
    margin-bottom: 25px !important;
  }
  .maintitle {
    margin-bottom: 37px;
  }
}
/*02*/
.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: #5aa2e6;
  color: #fff;
  padding: 10px 25px 11px 12px;
  border-left: 6px solid rgba(255, 255, 255, 0.4);
}
.mtitle::after {
  content: '';
  width: 20px;
  height: 2px;
  border-radius: 3px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: #fff;
  opacity: 0.4;
  pointer-events: none;
}
.mtitle.whitetext {
  background: #fff;
  color: #5aa2e6 !important;
  border-left: 6px solid rgba(90, 162, 230, 0.4);
}
.mtitle.whitetext .ib {
  color: #5aa2e6 !important;
}
.mtitle.whitetext::after {
  background: #5aa2e6;
}
/*03*/
.stitle {
  font-weight: 700;
  position: relative;
  font-size: clamp(1.25rem, 1.04rem + 0.7467vw, 1.6rem);
  padding-left: 2px;
  line-height: 1.65;
  padding-bottom: 12px;
  margin-bottom: 15px;
  border-bottom: 3px solid rgba(0, 0, 0, 0.15);
}
.stitle:first-letter {
  color: #5aa2e6;
}
.stitle::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 95px;
  height: 3px;
  background: #5aa2e6;
}
/*04*/
.dtitle {
  font-size: clamp(1.3rem, 0.88rem + 1.4933vw, 2rem);
  text-align: center;
  line-height: 1.6;
  font-weight: 700;
  margin-bottom: 15px;
  color: #5aa2e6;
}
.dtitle::before {
  content: url(../img/deco.svg);
  display: block;
  margin: 0 auto 4px;
  width: 90px;
  height: 40px;
  filter: invert(62%) sepia(14%) saturate(1824%) hue-rotate(170deg) brightness(95%) contrast(90%);
}
.whitetext.dtitle::before {
  filter: brightness(0) invert(1);
}
@media (max-width: 550px) {
  .dtitle::before {
    width: 75px;
    height: 35px;
  }
}
/* ボタン */
.mainbtn a {
  position: relative;
  vertical-align: middle;
  margin: 0 auto;
  padding: 22px 7px;
  display: inline-block;
  width: fit-content;
  min-width: 300px;
  text-align: center;
  z-index: 1;
  color: #fff;
  background: #5aa2e6;
  border: 2px solid #fff;
  border-radius: 100px;
}
.mainbtn a:hover {
  border: 2px solid #5aa2e6;
  color: #5aa2e6;
  background: #fff;
}
section .mainbtn a::before {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%) scale(1.3, 1);
  font-family: "Font Awesome 6 Free";
  content: "\f0da";
  font-weight: bold;
  line-height: 1;
  font-size: 130%;
  transition: .4s all;
  z-index: 2;
}
section .mainbtn a:hover::before {
  right: 10px;
}
.mainbtn a::after {
  content: '';
  width: calc(100% - 5px);
  height: calc(100% - 5px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px dashed #f0f8fa;
  border-radius: 100px;
  transition: .4s all;
}
.mainbtn a:hover::after {
  border: 1px dashed #5aa2e6;
}
/**/
a.white {
  border: 2px solid #5aa2e6;
  color: #5aa2e6;
  background: #fff;
}
a.white:hover {
  border: 2px solid #fff;
  color: #fff;
  background: #5aa2e6;
}
a.white::after {
  border: 1px dashed #5aa2e6;
}
a.white:hover::after {
  border: 1px dashed #f0f8fa;
}
/**/
.tbtn {
  margin-top: 40px;
}
.btnflex {
  text-align: center;
}
.btnflex a {
  margin: 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: 50px;
  }
  .spmgb.rounded {
    margin-bottom: 25px;
  }
}
/* 幅 */
.inner {
  width: 88%;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 2000px) {
  .inner02 {
    max-width: 1500px;
    width: 92%;
    margin: 0 auto;
  }
  .rounded img {
    border-radius: 10px;
  }
}
@media (max-width: 1999px) {
  .inner02 {
    max-width: 100%;
    width: 100%;
  }
  .mauto {
    margin-left: auto;
    margin-right: auto;
  }
  .mauto.w48 {
    width: 42%;
  }
  .mauto.w43 {
    width: 37%;
  }
  .inner02 .flexbox .rounded img {
    border-radius: 10px 0 0 10px;
  }
  .inner02 .reverse .rounded img {
    border-radius: 0 10px 10px 0;
  }
}
@media (max-width: 750px) {
  .inner02 {
    width: 88%;
    margin: 0 auto;
  }
  .mauto {
    width: 100% !important;
  }
  .inner02 .rounded img {
    border-radius: 10px !important;
  }
}
.w60 {
  width: 60%;
}
.w52 {
  width: 52%;
}
.w49 {
  width: 49%;
}
.w48 {
  width: 48%;
}
.w43 {
  width: 43%;
}
.w35 {
  width: 35%;
}
/* 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: 1350px;
  background-repeat: repeat;
  pointer-events: none;
  opacity: 0.2;
  z-index: -98;
}
.bg_blue::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #000; /*#f0f8fa*/
  filter: invert(97%) sepia(21%) saturate(333%) hue-rotate(166deg) brightness(100%) contrast(97%);
  z-index: -100;
}
/*wave*/
.bg_wave::before {
  pointer-events: none;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: url(../img/bg_wave.svg) top center;
  filter: invert(97%) sepia(21%) saturate(333%) hue-rotate(166deg) brightness(100%) contrast(97%);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -100;
}
@media (max-width: 750px) {
  .bg_wave::before {
    background-size: 900px;
  }
}
/**/
.dark::after, .dark.bg_wave::before {
  filter: invert(62%) sepia(14%) saturate(1824%) hue-rotate(170deg) brightness(95%) contrast(90%);
}
.whitetext, .whitetext p, .whitetext span {
  color: #fff !important;
}
/*反転*/
.bgx::before, .bgx::after {
  pointer-events: none;
  transform: scaleX(-1);
}
.bgy::before, .bgy::after {
  pointer-events: none;
  transform: scaleY(-1) translateY(-0.5px);
}
.bgxy::before, .bgxy::after {
  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;
  width: 23% !important;
  max-width: 260px !important;
}
.tl img, .tr img, .bl img, .br img {
  width: 100% !important;
  border-radius: 0 !important;
  mask-image: none !important;
  -webkit-mask-image: none !important;
}
/*位置*/
.tl {
  top: -5% !important;
  left: 10px !important;
}
.tr {
  top: -5% !important;
  right: 10px !important;
}
.bl {
  bottom: -115px !important;
  left: 10px !important;
}
.br {
  bottom: -115px !important;
  right: 10px !important;
}
@media (max-width: 750px) {
  .tl, .tr, .bl, .br {
    width: 31% !important;
    max-width: 180px !important;
  }
  .tl, .tr {
    top: -9vw !important;
  }
  .bl, .br {
    bottom: -9vw !important;
  }
}
/**/
.psr {
  position: relative;
}
.psr .tl, .psr .tr, .psr .bl, .psr .br {
  width: 33% !important;
  max-width: 170px !important;
}
.psr .tl {
  top: -6% !important;
  left: -13px !important;
}
.psr .tr {
  top: -6% !important;
  right: -13px !important;
}
.psr .bl {
  bottom: -6% !important;
  left: -13px !important;
}
.psr .br {
  bottom: -6% !important;
  right: -13px !important;
}
/* アニメーション ============*/
/* flowup */
.flowup {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 1.3s, transform 1.3s;
  transition-delay: 0.35s;
}
.flowup.inview {
  opacity: 1;
  transform: translateY(0);
}
/*delay*/
.delay01 {
  transition-delay: 0.6s;
}
.delay02 {
  transition-delay: 0.85s;
}
@media (max-width: 750px) {
  .delay01, .delay02 {
    transition-delay: 0.3s !important;
  }
}
/*=== 共通部分ここまで ===*/
/* header ========================================================*/
.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 14px 0 16px;
}
.header::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  z-index: -2;
}
.header::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-image: url(../img/bg.jpg);
  background-size: 1350px;
  background-repeat: repeat;
  z-index: -1;
  opacity: 0.2;
}
.header_pc {
  width: 96%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* logo */
.header h1 {
  line-height: 1;
  width: 250px;
}
.header h1 a {
  display: flex;
}
/* menu */
/*btn*/
.header_menu .btnflex {
  text-align: right;
  margin-bottom: 15px;
}
.header_menu .mainbtn a {
  font-size: 0.92rem;
  min-width: auto;
  width: 190px;
  padding: 12px 0;
}
.header_menu .btnflex a {
  margin: 0 3px;
}
.lato {
  font-family: "Lato", sans-serif;
  font-weight: 700;
}
/*menu*/
.header_menu ul {
  display: flex;
}
.header_menu ul li {
  margin: 0 15px;
  text-align: center;
}
.header_menu ul li a {
  display: block;
  font-size: 1.23rem;
  line-height: 1.45;
  font-weight: 700;
  color: #594e48;
}
.header_menu ul li a:hover {
  opacity: 0.6;
}
.header_menu ul li a > span {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  display: block;
  font-size: 65%;
  color: #5aa2e6;
}
/* 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: #594e48;
  border-radius: 10px;
}
.hamburger__line:before {
  top: -10.5px;
}
.hamburger__line:after {
  top: 10.5px;
}
.hamopen .header {
  position: fixed;
}
/*
.hamburger__text {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  line-height: 1.4;
}
.hamburger__text::before {
  content: "menu";
  text-align: center;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-left: 3px;
  color: #fff;
}
.hamburger.-active .hamburger__text::before {
  content: 'close';
  position: relative;
  bottom: -9px;
  margin-left: 0;
}
*/
/**/
.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.73), rgba(255, 255, 255, 0.73)), url(../img/bg.jpg) repeat 50% 50% / 1350px;
}
.header__nav-area.-active {
  opacity: 1;
  visibility: visible;
}
/* menu */
.global-navigation {
  width: 89%;
  margin: auto;
  height: fit-content;
  position: relative;
  z-index: 1;
}
@media (max-height: 840px) {
  .header__nav-area {
    overflow-y: scroll;
  }
  .global-navigation {
    padding: 70px 0 110px;
  }
}
.global-navigation__list {
  margin-bottom: 30px;
  text-align: center;
}
.global-navigation__list li a {
  font-size: 1.27rem;
  line-height: 1.5;
  display: block;
  margin-bottom: 10px;
  font-weight: 700;
  padding: 13px 0;
  color: #594e48;
}
.global-navigation__list li a > span {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  color: #5aa2e6;
  text-transform: uppercase;
  display: block;
  font-size: 65%;
}
.global-navigation__list a:hover {
  opacity: 0.6;
}
/* btn */
.header__nav-area .mainbtn {
  margin-top: 10px;
}
@media (max-width:1050px) {
  .header h1 {
    width: 235px;
  }
  .header {
    padding: 16px 15px 22px;
  }
  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) {
  .header h1 {
    width: 177px;
  }
  .header {
    padding: 13px 11px 18px;
  }
  .global-navigation__list li a {
    font-size: 1.15rem;
    margin-bottom: 5px;
  }
  .global-navigation .mainbtn a {
    font-size: 0.93rem;
  }
}
/* footer ========================================================*/
.footerWrap {
  position: relative;
  color: #fff;
}
.footerWrap::after {
  top: auto;
  bottom: 0;
  height: calc(100% - 180px);
}
.footerWrap .tl {
  max-width: 220px !important;
  top: -11px !important;
}
.footerimg {
  overflow: hidden;
  position: relative;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  mask-image: url(../img/footermask.webp);
  -webkit-mask-image: url(../img/footermask.webp);
  mask-size: 100% 100%;
  -webkit-mask-size: 100% 100%;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
}
.footerimg img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}
.footerimg p {
  z-index: 1;
  position: absolute;
  top: 37%;
  left: 20%;
  transform: rotate(-10deg)translateY(-50%);
  font-family: "Homemade Apple", cursive;
  font-weight: 400;
  text-transform: capitalize;
  font-size: 3.2rem;
  color: #fff;
  line-height: 1.5;
  text-decoration-color: rgba(255, 255, 255, 0.4);
}
/**/
.footer {
  margin-top: -100px;
  padding-bottom: 100px;
}
.flogo {
  display: block;
  width: 305px;
  margin: 0 auto 10px;
}
.flogo img {
  filter: brightness(0) invert(1);
}
.footer .btnflex {
  margin-top: 20px;
}
a.fax {
  pointer-events: none;
  background: #918e8c;
  border: 2px solid #fff;
}
.copyright {
  text-align: center;
  margin-top: 30px;
  opacity: 0.8;
  font-size: clamp(0.93rem, 0.858rem + 0.256vw, 1.05rem);
}
@media (max-width: 1420px) {
  .footerWrap .tl {
    top: -82px !important;
    width: 25% !important;
  }
  .footerimg {
    width: 140%;
  }
  .footerimg img {
    height: 45vw;
  }
  .footer {
    margin-top: -5vw;
  }
}
@media (max-width: 1050px) {
  .footerimg p {
    top: 31%;
    left: 25.5%;
    font-size: 2.7rem;
  }
  .footerimg {
    width: 180%;
  }
  .footerimg img {
    width: 92%;
    height: 60vw;
  }
  .footer {
    margin-top: -10vw;
  }
}
@media (max-width: 750px) {
  .footerWrap::after {
    height: calc(100% - 10vw);
  }
  .footerimg img {
    height: 80vw;
  }
  .footerimg p {
    font-size: 6.3vw;
    top: 26%;
  }
  .footer {
    padding-bottom: 40px;
  }
  .flogo {
    width: 210px;
  }
  .footerWrap .tl {
    top: 40vw !important;
    width: 25% !important;
  }
  .footer {
    padding-bottom: 60px;
  }
  .footer .btnflex a {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 8px;
  }
}
@media (max-width: 550px) {
  .footerWrap .tl {
    width: 32% !important;
  }
}
/*ページ上に戻るボタン*/
.go_top {
  display: block;
  width: 80px;
  aspect-ratio: 1/1;
  background: #5aa2e6;
  border: 2px solid #fff;
  position: fixed;
  bottom: 20px;
  right: 25px;
  z-index: 79;
  border-radius: 50%;
  color: #fff;
}
.go_top::before {
  font-family: "Font Awesome 6 Free";
  content: "\f124";
  font-weight: bold;
  font-size: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.go_top::after {
  content: '';
  width: 89%;
  aspect-ratio: 1/1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px dashed #f0f8fa;
  pointer-events: none;
  border-radius: 50%;
}
.go_top:hover {
  opacity: 0.6;
}
.tfade {
  position: relative;
  z-index: 79;
}
@media(max-width:550px) {
  .go_top {
    width: 65px;
    right: 15px;
    bottom: 10px;
  }
}
/* スライド ======================================================*/
.topslide {
  overflow: hidden;
  position: relative;
}
.topslide::before, .topslide::after {
  pointer-events: none;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  background: url(../img/slide.webp) bottom center;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
}
.topslide::after {
  transform: scaleX(-1) scaleY(-1) translateY(0.5px);
}
@media (max-width: 750px) {
  .topslide::before, .topslide::after {
    background-size: 900px;
  }
}
/**/
.slide_items {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.slide_items img {
  object-fit: cover;
  width: 100%;
  height: calc(100vh - 135px);
  min-height: 630px;
}
/*スライド画像アニメーション*/
.slick-animation {
  animation: fadezoom 14s linear 0s normal both;
}
@keyframes fadezoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}
/* catchcopy */
.catchcopy {
  position: absolute;
  z-index: 2;
  top: 12%;
  left: 6%;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.7;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  white-space: nowrap;
}
.catchcopy p:first-of-type {
  text-shadow: 0 0 3px rgba(255, 255, 255, 1), 0 0 3px rgba(255, 255, 255, 1), 0 0 3px rgba(255, 255, 255, 1), 0 0 3px rgba(255, 255, 255, 1), 0 0 3px rgba(255, 255, 255, 1), 1px 1px 0 #fff, -1px -1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, 0px 1px 0 #fff, 0 -1px 0 #fff, -1px 0 0 #fff, 1px 0 0 #fff;
}
.catchcopy .en {
  line-height: 2;
  font-size: 50%;
  text-transform: uppercase;
  color: #5aa2e6;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  margin-right: 3%;
  margin-top: 1%;
  text-shadow: 0 0 3px rgba(255, 255, 255, 1), 1px 1px 0 #fff, -1px -1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, 0px 1px 0 #fff, 0 -1px 0 #fff, -1px 0 0 #fff, 1px 0 0 #fff;
}
@media (max-width: 1190px) {
  .slide_items img {
    min-height: 56vw;
    height: calc(100vh - 200px);
  }
}
@media (max-width: 1050px) {
  .slide_items img {
    min-height: 465px;
    height: calc(100vh - 165px);
  }
  .catchcopy {
    font-size: 1.95rem;
  }
}
@media (max-width: 750px) {
  .slide_items img {
    min-height: auto;
    height: 119vw;
  }
  .catchcopy {
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.15rem;
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
  }
}
@media (max-width: 550px) {
  .catchcopy {
    top: 47%;
    font-size: 6.5vw;
  }
}
/* 地域に根ざした塗装専門店・平田工業 ============================*/
.decotext {
  position: absolute;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: clamp(5.4rem, 3.24rem + 7.68vw, 9rem);
  color: #e4f3f7;
  opacity: 0.6;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
  z-index: -1;
}
.bg_blue .decotext {
  color: #fff;
  opacity: 0.4;
}
.dark.bg_blue .decotext {
  opacity: 0.1;
}
.aboutus .decotext {
  bottom: 16.5vw;
  left: 0;
}
.topright {
  top: 0;
  right: 0;
}
.topleft {
  top: 0;
  left: 0;
}
.bottomleft {
  bottom: 7%;
  left: 0;
}
.bottomright {
  bottom: 7%;
  right: 0;
}
main section:last-of-type .bottomleft, main section:last-of-type .bottomright {
  bottom: 0;
}
@media (max-width: 1845px) {
  .bottomleft, .bottomright {
    bottom: 50px;
  }
}
@media (max-width: 1285px) {
  .bottomleft, .bottomright {
    bottom: 30px;
  }
}
/**/
.aboutus {
  padding-bottom: 0;
}
.aboutus .inner {
  width: 93%;
  max-width: 1282px;
}
.auflex {
  display: flex;
}
.autext {
  width: 100%;
  max-width: 900px;
  margin: auto;
}
.auflex .maintitle {
  line-height: 1.5;
  text-align: left;
  white-space: nowrap;
  margin-right: 65px;
  font-size: 2.4rem;
  color: #5aa2e6;
}
.str {
  color: #5aa2e6;
  font-weight: 700;
}
/*img*/
.gp_imgs {
  margin-top: 65px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-end;
  position: relative;
}
.gp_imgs div:nth-child(1) {
  width: 24%;
}
.gp_imgs div:nth-child(2) {
  width: 17%;
}
.gp_imgs div:nth-child(3) {
  width: 26.5%;
}
.gp_imgs div:nth-child(4) {
  width: 18%;
}
.gp_imgs div:nth-child(2), .gp_imgs div:nth-child(4) {
  margin-bottom: 70px;
}
.gp_imgs div:nth-child(1) img {
  border-radius: 0 10px 10px 0;
}
.gp_imgs div:nth-child(4) img {
  border-radius: 10px 0 0 10px;
}
@media (max-width: 1280px) {
  .auflex .maintitle {
    font-size: 2.2rem;
  }
}
@media (max-width: 1190px) {
  .aboutus .inner {
    width: 88%;
  }
  .auflex {
    display: block;
  }
  .auflex .maintitle {
    font-size: 2.4rem;
    margin-right: 0;
    text-align: center;
    white-space: normal;
  }
}
@media (max-width: 1050px) {
  .autext {
    position: relative;
  }
  .aboutus .decotext {
    left: -10%;
    bottom: -20vw;
  }
  .gp_imgs {
    align-items: center;
  }
  .gp_imgs div:nth-child(1), .gp_imgs div:nth-child(3) {
    width: 54% !important;
  }
  .gp_imgs div:nth-child(2), .gp_imgs div:nth-child(4) {
    margin-bottom: 0;
    width: 35% !important;
    margin-top: 11%;
  }
  .gp_imgs div:nth-child(2) {
    order: -1;
  }
  .gp_imgs div:nth-child(3) {
    margin-top: 7%;
  }
  .gp_imgs div:nth-child(1) img, .gp_imgs div:nth-child(4) img {
    border-radius: 10px 0 0 10px;
  }
  .gp_imgs div:nth-child(3) img, .gp_imgs div:nth-child(2) img {
    border-radius: 0 10px 10px 0;
  }
}
@media (max-width: 550px) {
  .aboutus .decotext {
    bottom: -25vw;
  }
  .auflex .maintitle {
    font-size: 1.6rem;
  }
  .spblock {
    display: block;
  }
  .spnone {
    display: none;
  }
  .gp_imgs {
    margin-top: 40px;
  }
}
/* サービス紹介 ==================================================*/
.services .inner {
  max-width: 1700px;
  width: 96%;
}
.serintro {
  margin-top: 50px;
}
.serintro > div {
  width: 23.7%;
  border-radius: 10px;
  padding: 30px;
  background: #fff;
  margin-bottom: 25px;
}
.serintro > div h2 {
  font-size: clamp(1.4rem, 1.16rem + 0.8533vw, 1.8rem);
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 15px;
}
.serintro > div h2:first-letter {
  color: #5aa2e6;
}
.serintro .si_illust {
  position: relative;
  padding: 10px 10px 5px;
  margin-bottom: 12px;
}
.serintro .si_illust::after {
  pointer-events: none;
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url(../img/si_bg.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  filter: invert(97%) sepia(21%) saturate(333%) hue-rotate(166deg) brightness(100%) contrast(97%);
  opacity: 0.6;
  z-index: -1;
}
.serintro .si_illust img {
  object-fit: contain;
  width: 142px;
  height: 118px;
  margin: auto;
  display: block;
  filter: invert(62%) sepia(14%) saturate(1824%) hue-rotate(170deg) brightness(95%) contrast(90%);
}
@media (max-width: 1405px) {
  .services .inner {
    max-width: 1166px;
    width: 88%;
  }
  .serintro > div {
    width: 49%;
  }
}
@media (max-width: 750px) {
  .serintro > div {
    width: 100%;
  }
  .serintro > div:last-of-type {
    margin-bottom: 0 !important;
  }
}
@media (max-width: 550px) {
  .serintro {
    margin-top: 35px;
  }
  .serintro > div {
    padding: 20px 15px 15px;
  }
  .serintro .si_illust img {
    width: 116px;
    height: 99px;
  }
}
/* 施工実績 ======================================================*/
.works .fitc {
  margin-bottom: 55px;
}
.works .tbtn {
  margin-top: 60px;
}
@media (max-width: 550px) {
  .works .fitc {
    margin-bottom: 35px;
  }
  .works .tbtn {
    margin-top: 45px;
  }
}
.p_slider ul li {
  overflow: hidden;
  position: relative;
  border-radius: 10px;
  margin-left: 0.75% !important;
}
.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: all 0.8s ease;
}
.p_slider a:hover img {
  transform: scale(1.1);
}
@media (max-width: 750px) {
  .p_slider ul li {
    margin-left: 1.3% !important;
  }
  .p_slider ul li:nth-child(2n+1) {
    margin-top: 15px;
  }
}
/* 初めての方へ ==================================================*/
.guide .decotext {
  text-align: right;
  top: 0;
  right: -0.5%;
}
/* お見積り・お問い合わせ ========================================*/
.residence {
  width: 100%;
  max-width: 980px;
  margin: 30px auto 0;
  overflow: hidden;
}
.estimate .tbtn {
  margin-top: 27px;
}
.estimate .decotext {
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 750px) {
  .estimate .decotext {
    top: auto;
    bottom: 1%;
    left: -3%;
    transform: translate(0);
  }
}
@media (max-width: 550px) {
  .residence {
    width: 160vw;
  }
}
/* 下層ページトップ ===========================================================================================================*/
.fv {
  padding: 95px 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% 35%;
}
.fv .inner {
  width: 97%;
}
.fv::before {
  position: absolute;
  display: block;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #5aa2e6;
  opacity: 0.8;
  z-index: 1;
}
.fv::after {
  pointer-events: none;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  background: url(../img/slide.webp) bottom center;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
}
.fv h2 {
  text-align: center;
  margin-bottom: 10px !important;
  font-size: clamp(2rem, 1.4rem + 2.1333vw, 3rem);
  line-height: 1.5;
  z-index: 1;
  position: relative;
  color: #fff;
  font-weight: 700;
}
@media(max-width:1050px) {
  .fv {
    padding: 70px 0 90px;
  }
}
@media (max-width: 750px) {
  .fv::after {
    background-size: 900px;
  }
}
@media(max-width:550px) {
  .fv {
    padding: 40px 0 45px;
  }
}
/* breadcrumb */
.binner {
  font-weight: 700;
  line-height: 1.4;
  width: 97%;
  font-size: clamp(0.85rem, 0.73rem + 0.4267vw, 1.05rem);
  position: relative;
  color: #fff;
}
.breadcrumb {
  z-index: 1;
  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;
}
/**/
.foote_bg_blue {
  position: relative;
}
.foote_bg_blue::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #000;
  filter: invert(97%) sepia(21%) saturate(333%) hue-rotate(166deg) brightness(100%) contrast(97%);
  z-index: -101;
}
/* 平田工業についてページ =======================================================================================================*/
/* 代表者ごあいさつ */
.fstr {
  font-size: clamp(1.2rem, 1.14rem + 0.2133vw, 1.3rem);
  line-height: 1.65;
  margin-bottom: 20px;
}
.glast {
  text-align: right;
  margin-top: 23px;
}
/**/
.greeting .mauto {
  position: relative;
}
.greeting .mauto .decotext {
  bottom: -11%;
  left: -11%;
}
@media(max-width:750px) {
  .greeting .mauto .decotext {
    bottom: -50px;
    left: -30px;
  }
}
/* 平田工業の強み */
.features .inner {
  max-width: 1368px;
  width: 96%;
}
.features .serintro {
  margin-top: 0 !important;
  justify-content: center;
  counter-reset: number 0;
}
.features .serintro > div {
  width: 30%;
  margin: 0 1.6% 25px;
  padding: 25px 20px 20px;
}
.features .serintro > div h2::before {
  content: "0"counter(number);
  counter-increment: number 1;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 88%;
  color: #5aa2e6;
  display: block;
  text-align: center;
  line-height: 1;
  margin: 15px auto 7px;
}
.features .serintro > div h2 {
  font-size: clamp(1.3rem, 1.12rem + 0.64vw, 1.6rem);
  line-height: 1.5;
}
@media(max-width:1175px) {
  .features .inner {
    width: 88%;
  }
  .features .serintro > div {
    width: 46.8%;
    margin-bottom: 30px;
  }
}
@media(max-width:750px) {
  .features .serintro > div {
    width: 100%;
    margin: 0 0 20px;
  }
}
@media(max-width:550px) {
  .features .serintro > div {
    padding: 15px;
  }
}
/* 概要 */
/*table*/
.info_table {
  max-width: 1100px;
  width: 100%;
  margin: auto;
  table-layout: fixed;
  border-collapse: collapse;
}
.info_table tr {
  border: 2px solid #e8e8e8;
}
.info_table th, .info_table td {
  padding: 19px;
}
.info_table th {
  background: #5aa2e6;
  color: #fff;
  width: 30%;
  border-right: 2px solid #e8e8e8;
  font-weight: 500;
}
.info_table td {
  background: #fff;
  width: 65%;
  border-right: 2px solid #e8e8e8;
  border-left: 2px solid #e8e8e8;
}
.info_table i {
  color: #5aa2e6;
}
.map p {
  margin-bottom: 15px;
}
.map iframe {
  width: 100%;
  height: 300px;
  border-radius: 10px;
}
@media (max-width: 750px) {
  .info_table td, .info_table th {
    width: 100%;
    padding: 12px;
    display: block;
    border: none;
    text-align: left;
  }
  .info_table th {
    border-bottom: 2px solid #e8e8e8;
  }
  .info_table td {
    padding-bottom: 10px !important;
  }
}
/*list*/
.acheck li {
  padding-left: 21px;
  position: relative;
  border-bottom: 2px dotted #ddd;
  padding-bottom: 7px;
  margin-bottom: 7px;
}
.acheck li::before {
  font-family: "Font Awesome 6 Free";
  content: "\f14a";
  font-weight: bold;
  display: inline-block;
  color: #5aa2e6;
  font-size: .9em;
  position: absolute;
  top: 0.15em;
  left: 0;
}
.dots.acheck li {
  padding-left: 13px;
}
.dots.acheck li::before {
  content: "\f111";
  font-size: .3em;
  top: 2.25em;
}
.whitetext .acheck li::before, .whitetext.acheck li::before {
  color: #fff;
}
/* 対応エリア */
.area .inner {
  max-width: 1095px;
}
.areabox {
  margin-top: 27px;
  border-radius: 10px;
  padding: 20px 15px 15px;
  background: #fff;
}
@media(max-width:750px) {
  .areaimg {
    width: 80% !important;
    margin: auto;
  }
  .area .spmgb {
    margin-bottom: 30px;
  }
}
/* サービス紹介ページ ===========================================================================================================*/
.service .flexbox {
  margin-bottom: 80px;
}
.service .flexbox:last-of-type {
  margin-bottom: 0 !important;
}
.service .flexbox:nth-child(2n) {
  flex-direction: row-reverse;
}
.service .stitle {
  font-size: clamp(1.35rem, 1.08rem + 0.96vw, 1.8rem);
}
.service .flexbox div p:first-of-type {
  font-size: clamp(1.15rem, 1.09rem + 0.2133vw, 1.25rem);
}
/**/
.service .psr .tl, .service .psr .tr, .service .psr .bl, .service .psr .br {
  width: 33% !important;
  max-width: 160px !important;
}
@media(max-width:750px) {
  .service .decotext.topright {
    top: auto;
    bottom: 30px;
  }
  .service .flexbox {
    margin-bottom: 60px;
  }
  .service .flexbox .spmgb {
    margin-bottom: 12px;
  }
  .service .psr .tl, .service .psr .tr, .service .psr .bl, .service .psr .br {
    width: 39% !important;
    top: auto !important;
    left: auto !important;
    bottom: -6% !important;
    right: -13px !important;
  }
  .service .flexbox:last-of-type .psr .tl, .service .flexbox:last-of-type .psr .tr, .service .flexbox:last-of-type .psr .bl, .service .flexbox:last-of-type .psr .br {
    bottom: -3% !important;
  }
}
/* こんな方はぜひご相談ください */
.con_bottom {
  margin-top: 35px;
}
.con_bottom .mainbtn {
  margin-top: 23px;
}
@media(max-width:750px) {
  .con_bottom {
    margin-top: 30px;
  }
}
/* よくあるご質問 */
.faq {
  width: 49%;
  padding: 20px 15px;
  margin-bottom: 17px;
  border-radius: 10px;
  background: rgba(232, 246, 250, 0.5);
}
.faq h2 {
  font-weight: 700;
  font-size: clamp(1.1rem, 1.04rem + 0.2133vw, 1.2rem);
  margin-bottom: 7px;
  line-height: 1.6;
}
.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;
  color: #5aa2e6;
}
.answer::before {
  content: "A.";
  top: -0.2em;
  left: 0.5px;
  color: #f57f7f;
}
@media(max-width:750px) {
  .faq {
    width: 100%;
  }
  .faq:last-of-type {
    margin-bottom: 0 !important;
  }
}
/* 施工実績ページ ===============================================================================================================*/
@media(max-width:750px) {
  .results .topleft.decotext {
    left: 50%;
    transform: translateX(-50%);
  }
}
/* 初めての方へページ ===========================================================================================================*/
/* お住まいの塗装を検討中の方へ */
.conbox {
  border-radius: 10px;
  background: rgba(232, 246, 250, 0.5);
  padding: 30px;
  max-width: 1000px;
  margin: auto;
  margin-bottom: 45px;
}
.conbox .dtitle {
  font-size: clamp(1.35rem, 1.08rem + 0.96vw, 1.8rem);
}
.conbox p {
  text-align: center;
}
.conbox .con_illust {
  margin-bottom: 0 !important;
  margin-top: 30px;
}
@media(max-width:1345px) {
  .conbox {
    margin-bottom: 0;
  }
}
@media(max-width:750px) {
  .conbox p {
    text-align: left;
  }
  .conbox p br {
    display: none;
  }
}
@media(max-width:550px) {
  .conbox {
    padding: 15px;
  }
  .conbox .con_illust {
    margin-top: 23px;
  }
}
/* 平田工業のこだわり */
.feature .mauto {
  position: relative;
}
.feature .mauto .decotext {
  bottom: -37%;
  left: -11%;
}
@media(max-width:1615px) {
  .feature .mauto .decotext {
    bottom: -8vw;
  }
}
@media(max-width:750px) {
  .feature .mauto .decotext {
    bottom: -50px;
    left: -30px;
  }
}
/* お客様へのお約束 */
.promises .inner {
  max-width: 1026px;
}
.promises .serintro {
  margin-top: 0 !important;
  counter-reset: number 0;
}
.promises .serintro > div {
  background: rgba(232, 246, 250, 0.5);
  width: 48.7%;
}
.promises .serintro > div h2::before {
  content: "0"counter(number);
  counter-increment: number 1;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 88%;
  color: #5aa2e6;
  display: block;
  text-align: center;
  line-height: 1;
  margin: 15px auto 7px;
}
.promises .serintro > div h2 {
  font-size: clamp(1.3rem, 1.12rem + 0.64vw, 1.6rem);
  line-height: 1.5;
}
.promises .serintro .si_illust::after {
  filter: brightness(0) invert(1);
  opacity: 0.7;
}
@media(max-width:750px) {
  .promises .serintro > div {
    width: 100%;
  }
}
/* 業者選びのプチアドバイス */
.advice {
  padding: 70px 0 !important;
}
.advice .inner {
  max-width: 1170px;
}
@media(max-width:550px) {
  .advice {
    padding: 30px 0 40px !important;
  }
}
/**/
.s_list {
  margin: 30px auto 10px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.s_list li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 31.5%;
  margin: 0 0.9% 15px;
  padding: 17px 15px;
  border-radius: 10px;
  background: #fff;
}
.s_list li span {
  display: inline-block;
  position: relative;
  padding-left: 22px;
}
.s_list li span::before {
  font-family: "Font Awesome 6 Free";
  content: "\f14a";
  font-weight: bold;
  color: #5aa2e6;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 1255px) {
  .s_list {
    max-width: 989px;
  }
  .s_list li {
    width: 48.2%;
  }
}
@media (max-width: 985px) {
  .situation .inner {
    width: 88%;
  }
  .s_list li {
    padding: 13px;
  }
}
@media (max-width: 870px) {
  .s_list {
    display: block;
    margin-bottom: 30px;
  }
  .s_list li {
    justify-content: flex-start;
    margin: 0 0 12px;
    width: 100%;
  }
}
/* まずは現地調査からはじめてみませんか？ */
.investigation .inner {
  max-width: 1227px;
}
.investigation .flexbox:first-of-type {
  margin-top: 50px;
}
.investigation .mainbtn {
  margin-top: 23px;
}
@media (max-width: 950px) {
  .investigation .flexbox:first-of-type {
    margin-top: 0;
  }
}
/* お問い合わせページ ===========================================================================================================*/
.contact_sec {
  position: relative;
}
.contact_sec .inner {
  max-width: 970px;
}
/**/
.contop {
  margin-bottom: 45px;
}
.con_illust {
  width: 100%;
  max-width: 840px;
  margin: auto;
  margin-bottom: 55px;
}
@media (max-width: 550px) {
  .contop {
    margin-bottom: 30px;
  }
  .con_illust {
    margin-bottom: 35px;
  }
}
/* 電話・FAX */
/*box*/
.telbox {
  border-radius: 10px;
  background: rgba(232, 246, 250, 0.5);
  padding: 30px;
}
@media (max-width:750px) {
  .telbox {
    margin-bottom: 10px;
  }
  .telbox:last-child {
    margin-bottom: 0;
  }
}
@media (max-width:550px) {
  .telbox {
    padding: 17px;
  }
}
/* 番号 */
.telbox a {
  white-space: nowrap;
  font-size: clamp(1.5rem, 1.32rem + 0.64vw, 1.8rem);
  color: #594e48;
  font-family: "Lato", sans-serif;
  font-weight: 700;
}
.telbox a i, .telbox i {
  color: #5aa2e6;
}
.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: 4px;
}
.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: #5aa2e6;
  font-size: .9em;
  position: absolute;
  top: 0.15em;
  left: 0;
}
@media (max-width: 750px) {
  .telboxwrap .telbox {
    display: block;
  }
  .telboxwrap .telbox a {
    margin-right: 0;
  }
}
@media (max-width: 500px) {
  .telboxwrap .telbox {
    display: block;
    text-align: center;
  }
  .telboxwrap .telbox p {
    margin-bottom: 7px;
  }
  .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 #594e48;
}
.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: #5aa2e6;
  padding: 5px;
  margin-right: 3px;
  border-radius: 3px;
  font-size: 14px;
}
.mailform .row span.mailsp {
  color: #5aa2e6;
  background: #fff;
  border: 2px solid #5aa2e6;
}
.mailform .row small {
  display: block;
  margin-top: 3px;
}
.mailform label {
  color: #594e48;
}
.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: #5aa2e6;
  color: #fff;
  border: 2px solid #5aa2e6;
}
.mailform button::after {
  content: '';
  width: calc(100% - 5px);
  height: calc(100% - 5px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px dashed #f0f8fa;
  border-radius: 100px;
  transition: .4s all;
}
.mailform button:hover::after {
  border: 1px dashed #5aa2e6;
}
.mailform button::before {
  font-family: "Font Awesome 6 Free";
  content: "\f0e0";
  font-weight: bold;
  margin-right: 10px;
}
.mailform button:hover {
  color: #5aa2e6;
  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 #5aa2e6;
  border-bottom: 3px solid #5aa2e6;
  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: #5aa2e6;
}
.scrollBox {
  border-radius: 10px;
  background: rgba(232, 246, 250, 0.5);
  padding: 15px;
}
.scrollBox div {
  height: 210px;
  overflow-y: scroll;
  padding: 0 10px;
}
.scrollBox span {
  font-size: 107%;
}
.scrollBox span::before {
  content: "■";
  color: #5aa2e6;
  margin-right: 3px;
}
@media(max-width:450px) {
  .scrollBox {
    padding: 15px 10px;
  }
}