@charset "UTF-8";
/* ----------------------- */

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  min-width: 0;
  min-height: 0;
}

html {
  font-size: 62.5%;
  line-height: 1.6;
  height: 100%;
}

@font-face {
  font-family: 'nsjp';
  src: url('../font/NotoSansJP-Regular.otf') format('opentype'),
  url('../font/NotoSansJP-Medium.otf') format('opentype'),
  url('../font/NotoSansJP-bold.otf') format('opentype');
}

@font-face {
  font-family: 'kazesawa';
  src: url('../font/Kazesawa-Regular.ttf') format('truetype'),
  url('../font/Kazesawa-Semibold.ttf') format('truetype'),
  url('../font/Kazesawa-Bold.ttf') format('truetype');
}

body {
  background-color: #fff;
  color: #595757;
  font-size: 1.6rem;
  font-family: 'nsjp';
  font-weight: 400;
  font-style: normal;
  width: 100%;
  letter-spacing: 0.1em;
}

@media(min-width: 961px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

p {
  font-size: 17px;
}

/* -------------------------- */

/* #navmenu */


/*============================
header style
============================*/


#top-head {
  width: 100%;
  height: 80px;
  background-color:#fff;
  display: flex;
  position: fixed;
  z-index: 998;
  transition: .2s;
}

/* ヘッダーカラー変更 */
/* #top-head.change-color {
  background: url(../image/change_header_bg.jpg)no-repeat;
  background-size: cover;
  background-position: top;
  border-bottom: #c10d23 solid 5px;
  transition: .2s;
} */





#top-head .inner {
  float: left;
  width: 95%;
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}



/*logo style*/


.inner .header-logo a img{
  height: 60px;
  vertical-align: middle;
}

/*#navmenu style*/
#top-head #navmenu ul {
  display: flex;
  list-style-type: none;
  align-items: center;
}

/*#navmenu link style*/
/*nav link style*/
#top-head #navmenu ul li a {
  padding:5px 15px;
  color: #595957;
  position: relative;
  display: inline-block;
  font-size: 1.6rem;
  white-space: nowrap;
}

#top-head #navmenu ul li a img {
  width: 40px;
  height: auto;
}


#top-head #navmenu ul li a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #298ec6;
  opacity: 0;
  visibility: hidden;
  transition: .4s;
}

#top-head #navmenu ul li a:hover::after {
  bottom: 2px;
  opacity: 1;
  visibility: visible;
}




#nav_toggle {
  display: none;
}

.header-logo {
  text-align: center;
}


.header-logo a {
  display: block;
}


#top-head #navmenu ul .mailbutton {
  background-color: #298ec6;
  border-radius: 10px;
}

#top-head #navmenu ul .mailbutton a {
  color: #fff;
  transition: .2s all;
}

#top-head #navmenu ul .mailbutton a:hover{
  background: #aad4ea;
  border-radius: 10px;
}

#top-head #navmenu ul .mailbutton a:hover::after {
  visibility: hidden;
}




/*============================
mobile style
============================*/
@media screen and (max-width:1000px) {


  #top-head {
    height: 80px;
  }

  /*hamburger menu style*/
  #top-head .inner {
    clear: both;
  }


  /* #top-head.open {
    background: url(../image/change_header_bg.jpg)no-repeat;
    background-size: cover;
    background-position: top;
    border-bottom: #c10d23 solid 5px;
    transition: .2s;
  } */

  #nav_toggle {
    display: block;
    width: 30px;
    height: 30px;
    position: relative;
    top: 4px;
    z-index: 100;
  }

  #nav_toggle div {
    position: relative;
  }

  /*hamburger menu close style*/
  #nav_toggle .hamburger {
    display: block;
    height: 2px;
    background: #298ec6;
    position: absolute;
    width: 100%;
    left: -5px;
    -webkit-transition: 0.2s ease-in-out;
    -moz-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
  }
          
  #nav_toggle .hamburger:nth-child(1) {
    top: -5px;
  }
  
  #nav_toggle .hamburger:nth-child(2) {
    top: 5px;
  }
  
  #nav_toggle .hamburger:nth-child(3) {
    top: 15px;
  }

  #menu-txt::after {
    position: absolute;
    content: "MENU";
    top: 20px;
    left: 50%;
    transform: translateX(-60%);
    font-size: 1.3rem;
    letter-spacing: 0.05em;
    opacity: 1;
    transition: .2s;
    color: #298ec6;
  }
  


  /*hamburger menu open style*/
  .open #nav_toggle span:nth-child(1) {
    top: 0px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    transform: rotate(135deg);
  }

  .open #nav_toggle span:nth-child(2) {
    width: 0;
    left: 50%;
  }

  .open #nav_toggle span:nth-child(3) {
    top: 0px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }

  .open #nav_toggle #menu-txt::after {
    content: "CLOSE";
  }

  /*nav style*/
  #top-head #navmenu {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    height: 300px;
    background: #fff;
    border-bottom: #dbeaef solid 2px;
    z-index: 990;
  }

  #top-head #navmenu ul {
    display: block;
    width: 80%;
    margin: 0 auto;
  }

  #top-head #navmenu ul li {
    text-align: center;
    margin: 15px 0;
  }

  #top-head #navmenu ul li:last-child {
    border: none;
  }

  /*#navmenu link style*/
  #top-head #navmenu ul li a {
    display: block;
  }

  #top-head #navmenu ul .mailbutton  {
    max-width: 280px;
    margin: 15px auto;
  }
}
/* nav end */

/* tel-button */
#tel-button {
  text-align: right;
  display: block;
  z-index: 980;
  position: fixed;
  top: 100px;
  right: 20px;
  border-radius: 10px;
  background-color: yellowgreen ;
  font-size: 2rem;
  padding: 3px 6px 3px 10px;
  font-family: 'nsjp';
  height: 60px;
}

#tel-button a {
  color: #fff;
  font-size: 1.2rem;
  letter-spacing: 0.5em;
  display: block;
}

#tel-button a:before {
  background: url(../img/freedial.png) no-repeat;
  content: "";
  background-size: contain;
  background-position: center;
  width: 70px;
  height: 35px;
  vertical-align: middle;
  display: inline-block;
  margin-top: 8px;
}

#tel-button .number {
  font-family: 'kazesawa';
  font-weight: bold;
  font-size: 2.3rem;
  letter-spacing: 0.135em;
}

.taiou {
  display: block;
  margin-top:-12px;
}

@media screen and (601px < width <=1001px) {
  #tel-button {
    top: 10px;
    z-index: 999;
    right: 100px;
  }
}


#footer-tel-button {
  display: none;
}

/* tel-button end */

@media screen and (max-width:600px) {

  /* fotter-tel-button */
  #tel-button {
    display: none;
  }

  .is-hidden {
    visibility: hidden;
    transition: .2s;
    opacity: 0;
  }

  #footer-tel-button {
    display: block;
    transition: .2s;
    z-index: 999;
    position: fixed;
    bottom: -100px;
    width: 100%;
    background-color: yellowgreen;
    font-size: 2rem;
    padding: 10px 5px 3px 5px;
    text-align: center;
    line-height: 1.3;
  }

  #footer-tel-button .footer-number:before {
    background: url(../img/freedial.png) no-repeat;
    content: "";
    background-size: contain;
    background-position: center;
    width: 46px;
    height: 23px;
    vertical-align: middle;
    display: inline-block;
    margin-top: -4px;
  }

  #footer-tel-button span {
    font-family: 'kazesawa';
    font-size: 3rem;
    font-weight: bold;
    letter-spacing: 0.1em;
  }

  #footer-tel-button .footer-teltxt {
    font-size: 2.4rem;
    background-color: #fff;
    color: yellowgreen;
    padding: 3px 5px;
    border-radius: 10px;
    letter-spacing: .16em;
  }

  #footer-tel-button a {
    font-family: 'nsjp';
    color: #fff;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    display: block;
    font-weight: 500;
  }


}

/* footer-tel-button end */

/* pc footer */
.pc-footer {
  background-color: #298ec6;
  height: 400px;
  color: #fff;
  font-weight: 600;
  vertical-align: middle;
  padding: 40px 0 0;
  position: relative;
}
.footer-flex  {
  display: flex;
  justify-content:space-around;
  align-items: center;
  gap: 10px;
  width: 90%;
  max-width: 1240px;
  margin: 0 auto;
}
@media screen and (max-width:768px) {
  .footer-flex {
    flex-direction:column-reverse;
  }
  .pc-footer {
    background-color: #298ec6;
    height: 550px;
    color: #fff;
    font-weight: 600;
    vertical-align: middle;
    padding: 40px 0 0;
    position: relative;
  }
}

.pc-footer .map ,
.pc-footer .map iframe {
width: 100%;
max-width: 500px;
  aspect-ratio: 16/9;
  border: none;
}

.pc-footer span {
  color: #fff;
}

.pc-footer .wrapper {
  width: 100%;
  max-width: 500px;
}
.pc-footer hr {
  width: 100%;
  margin: 30px 0;
}

.pc-footer small {
  text-align: center;
  display: block;
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
}

.footer-flex img {
  height: 40px;
}
/* pc footer */

/* main */
/* index.html */
.main-v {
  position: relative;
  background: url(../img/top_mv.jpg)no-repeat;
  height: 100vh;
  background-size: cover;
  background-position: center;
}
/* 
.main-v img {
  width: 100%;
  height: auto;
} */

.main-v-title-box {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color:rgba(255, 255, 255, .8);
  width: 500px;
  height: 400px;
  box-shadow: 0px 0px 15px -10px #595957;
border-radius: 0px;
}

.main-v-title {
  position: absolute;
  width: 100%;
  top:40%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #298ec6;
  font-family: 'kazesawa';
  font-weight: bold;
  font-size: 4.8rem;
  text-shadow: #dbeaef 1px 3px;
  text-align: center;
  line-height: 1.15;
}

.main-v-catch {
  position: absolute;
  width: 100%;
  top: 80%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #595957;
  font-family: 'nsjp';
  font-weight:600;
  font-size: 2.2rem;
  text-align: center;
}

.blue {
  color: #298ec6;
}
/* 割引 */

.btn{
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: absolute;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
  bottom: 50px;
  right: 20px;
  z-index: 99;
  box-shadow: 0px 0px 15px -10px #fff;
}


.btn-campaign {
  line-height: 1.2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 300px;
  height: 170px;
  padding: 0;
}

.btn-campaign .left {
  width: 80%;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  -webkit-transform-origin: top left;
  transform-origin: top left;
  border: 2px solid #298ec6;
  border-right: 0;
  background: #fff;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

/* .btn-campaign .left span.txt1 {
  font-size: 1.5rem;
  color: #298ec6;
  border-bottom: #298ec6 solid 2px;
  display: block;
  
} */

.btn-campaign .left p {
  font-size: 1.4rem;
  font-weight: 500;
  color: #fff;
  text-align: left;
  padding: 3px 3px 3px 8px;
  background-color:#298ec6 ;
}

.btn-campaign .left .campaign-naiyou {
  font-size: 1.4rem;
  font-style: normal;
  list-style-type: disc;
  margin: 3px auto 3px 25px;
  color: #595957;
  text-align: left;
}

.btn-campaign .right {
  position: relative;
  width: 20%;
  height: 100%;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  -webkit-transform-origin: top left;
  transform-origin: top left;
  color: #fff;
  border-left: 2px dotted #fff;
  background: #298ec6;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.btn-campaign .right span {
  font-size: 1.7rem;
  line-height: 1;
position:absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
  display: inline-block;
  writing-mode: rl;
  line-height: 1.1;
  -webkit-transform-origin: bottom left;
  transform-origin: bottom left;
}

.btn-campaign .left  .kome{
  font-size: .8em;
  list-style-type: none;
  margin-left: 25px;
  padding-left: 2em;
  text-indent: -1em;
  margin-left: 0;
}
.btn-campaign .left .kome:before{
content: "※";
}

.sokyu {
  position:absolute;
  bottom: 240px;
  right: 20px;
  border: 2px solid #298ec6;
  background-color:#fff;
  width: 300px;
  height: 82px;
  padding: 5px 10px;
  box-shadow: 0px 0px 15px -10px #595957;
border-radius: 0px;
}

.sokyu span {
  font-size: 1.4rem;
  line-height: 1.2;
  display: block;
  font-weight: 700;
}

/* a.btn-campaign:hover .left {
  -webkit-transform: rotateX(-20deg);
  transform: rotateX(-20deg);
}

a.btn-campaign:hover .right {
  -webkit-transform: rotateX(-20deg) rotateY(75deg);
  transform: rotateX(-20deg) rotateY(75deg);
} */
@media screen and (max-width:1150px) {
  .main-v-title-box {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .btn{
    bottom: 20px;
    right: 20px;
  }

  .btn-campaign {
    width: 300px;
    height: 150px;
    padding: 0;
  }

  .btn-campaign .left p {
    font-size: 1.2rem;
    font-weight: 400;
    color: #fff;
    text-align: left;
    padding: 1px 1px 1px 4px;
    background-color:#298ec6 ;
  }
  
.btn-campaign .left .campaign-naiyou {
  font-size: 1.2rem;
  margin: 5px auto 0 23px;
}

.btn-campaign .right span {
  font-size: 1.4rem;
  line-height: 1;
position:absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
  display: inline-block;
  writing-mode: rl;
  -webkit-transform-origin: bottom left;
  transform-origin: bottom left;
}

.sokyu {
  position:absolute;
  bottom: 170px;
  height: 72px;
  padding: 3px 10px;
}

.sokyu span {
  font-size: 1.2rem;
}
}

@media screen and (max-width:599px) {
  .btn {
    position:absolute;
    bottom: 30px;
  }
    
  .sokyu {
    position:absolute;
    bottom: 185px;
  }
}

@media screen and (max-width:428px) {
  .btn,
  .sokyu {
    left: 50%;
    transform: translateX(-50%);
  }
}


/* 割引 end */
@media screen and (max-width:768px) {
  .main-v-title-box {
    width: 80%;
  }

  .main-v-title {
    font-size: 3.8rem;
  }
  
  .main-v-catch {
    position: absolute;
    width: 80%;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.4rem;
    text-align: center;
  }
}

@media screen and (max-width:599px) {
  .main-v-title-box {
    top: 41%;
    width: 80%;
    height: 320px;
  }

  .main-v-title {
    font-size: 3.4rem;
    top:30%;
  }
  
  .main-v-catch {
    position: absolute;
    width: 80%;
    top: 69%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.7rem;
    text-align: center;
  }
}

/* 下層ページメイン画像 */
.sub-v {
  position: relative;
  clip-path: polygon(0% 0%, 100% 0%, 100% 95%, 53% 95%, 50% 100%, 47% 95%, 0% 95%);
  height: 600px;
}

@media screen and (max-width:768px) {
  .sub-v {
    clip-path: polygon(0% 0%, 100% 0%, 100% 93%, 55% 93%, 50% 100%, 45% 93%, 0% 93%);
    height: 400px;
  }
}

@media screen and (max-width:599px) {
  .sub-v {
    clip-path: polygon(0% 0%, 100% 0%, 100% 93%, 57% 93%, 50% 100%, 43% 93%, 0% 93%);
  }
}
.sub-v-title {
  position: absolute;
  width: 100%;
  top:50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'kazesawa';
  font-weight: bold;
  font-size: 3.3rem;
  text-shadow: #dbeaef 1px 3px;
  text-align: center;
  line-height: 1.15;
}

.sub-v img {
  width: 100%;
  height: auto;
}
.sub-v-title-box {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color:rgba(255, 255, 255, .8);
  width: 500px;
  height: 200px;
  box-shadow: 0px 0px 15px -10px #595957;
border-radius: 0px;
}


@media screen and (max-width:768px) {
  .sub-v-title-box {
    width: 80%;
  }
}

@media screen and (max-width:480px) {
  .sub-v-title-box {
    width: 80%;
  }
  .sub-v-title {
    font-size: 2.6rem;
    }
}

/* .big-catch {
  font-size: 5.2vw;
} */

.slide-in {
  overflow: hidden;
  display: inline-block;
  text-align: left;
}

.slide-in_inner {
  display: inline-block;
  text-align: left;
}

/*左右のアニメーション*/
.leftAnime {
  opacity: 0;
  /*事前に透過0にして消しておく*/
}

.slideAnimeLeftRight {
  animation-name: slideTextX100;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes slideTextX100 {
  from {
    transform: translateX(-100%);
    /*要素を左の枠外に移動*/
    opacity: 0;
  }

  to {
    transform: translateX(0);
    /*要素を元の位置に移動*/
    opacity: 1;
  }
}

.slideAnimeRightLeft {
  animation-name: slideTextX-100;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}


@keyframes slideTextX-100 {
  from {
    transform: translateX(100%);
    /*要素を右の枠外に移動*/
    opacity: 0;
  }

  to {
    transform: translateX(0);
    /*要素を元の位置に移動*/
    opacity: 1;
  }
}

/* fadeUp */


.fadeUpTrigger {
  opacity: 0;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(80px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.delay2 {
  animation-delay: .2s;
}



/* pc,sp切り替え */


@media screen and (max-width:768px) {
  .sp {
    display:block;
  }

  .pc {
    display:none;
  }
}

@media screen and (min-width:769px) {
  .sp {
    display:none;
  }

  .pc {
    display:block;
  }
}

/* 共通 */
.a-container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}
.b-container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}
.c-container {
  width: 100%;
  margin: 0 auto;
  max-width: 900px;
}

.flex-box {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  gap: 30px;
}

.flex-box .txt-box,
.flex-box .v-box,
.flex-box .v-box img,
.flex-ch-wrap {
  width: 100%;
  max-width: 550px;
}

@media screen and (max-width:768px) {
  .flex-box {
    flex-direction: column;
  }

  .order1 {
    order: 1;
  }
  
  .order2 {
    order: 2;
  }
  
}

.grid-box-4 {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  grid-template-rows: repeat(2,1fr);
  gap: 30px;
}

.grid-ch {
  width: 100%;
  margin: 0 auto;
}

.flex-grid {
  display: flex;
  justify-content: space-around;
  align-items: top;
  gap: 10px;
}
@media screen and (max-width:960px) {
  .flex-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-template-rows: repeat(2,1fr);
    gap: 20px;
  }
}
@media screen and (max-width:599px) {
  .flex-grid {
    display: block;
}
}
/* 
.grid-box-5 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 30px;
}
.grid-box-5 .grid-ch:first-child { 
  grid-area: 1 / 1 / 2 / 3; 
}
.grid-box-5 .grid-ch:nth-child(2) { 
  grid-area: 1 / 3 / 2 / 5;
}
.grid-box-5 .grid-ch:nth-child(3) { 
  grid-area: 1 / 5 / 2 / 7;
}
.grid-box-5 .grid-ch:nth-child(4) { 
  grid-area: 2 / 2 / 3 / 4;
}
.grid-box-5 .grid-ch:last-child{ 
  grid-area: 2 / 4 / 3 / 6;
}
 */


@media screen and (max-width:768px) {
  .grid-box-4,
  .grid-box-5 {
    display:block;
  }

  .grid-ch {
    width: 100%;
    margin: 20px auto;
  }
}

.balloon-title {
  text-align: center;
  margin: -2px auto 20px ;
  font-size: 3rem;
  background-color: #aad4ea;
  padding-top: 10px;
  height: 100px;
  width: 100%;
  clip-path: polygon(0% 0%, 100% 0%, 100% 70%, 53% 70%, 50% 100%, 47% 70%, 0% 70%);
  font-family: 'kazesawa';
  font-weight: 900;
  z-index: 10;
}


.slash-title {
  position: relative;
  display: inline-block;
  padding: 0 100px;
  font-size: 3.5rem;
  color: #fff;
  text-shadow: 1px 1px 0 #595957,-1px 1px 0 #595957,1px -1px 0 #595957,-1px -1px 0 #595957;
  margin: 20px auto;
}
.slash-title:before,
.slash-title:after {
  content: '';
  position: absolute;
  top: 55%;
  display: inline-block;
  width: 90px;
  height: 2px;
  background-color: #595957;
}
.slash-title:before {
  left:0;
  -webkit-transform: rotate(60deg);
  transform: rotate(60deg);
}
.slash-title:after {
  right: 0;
  -webkit-transform: rotate(-60deg);
  transform: rotate(-60deg);
}

.kakko-title {
  position: relative;
  line-height: 1.4;
  padding:0.25em 1em;
  display: inline-block;
  top:0;
  font-size: 3.5rem;
  font-weight: 900;
  font-family: 'kazesawa';
}

.kakko-title:before, .kakko-title:after { 
  position: absolute;
  top: 0;
  content:'';
  width: 8px;
  height: 100%;
  display: inline-block;
}
.kakko-title:before {
  border-left: solid 2px #298ec6;
  border-top: solid 2px #298ec6;
  border-bottom: solid 2px #298ec6;
  left: 0;
}
.kakko-title:after {
  content: '';
  border-top: solid 2px #298ec6;
  border-right: solid 2px #298ec6;
  border-bottom: solid 2px #298ec6;
  right: 0;
}


@media screen and (max-width:768px) {
  .balloon-title {
    font-size: 4vw;
    clip-path: polygon(0% 0%, 100% 0%, 100% 70%, 55% 70%, 50% 100%, 45% 70%, 0% 70%);
  }
}

@media screen and (max-width:599px) {
  .balloon-title {
    font-size: 4.5vw;
    height: 80px;
    clip-path: polygon(0% 0%, 100% 0%, 100% 70%, 57% 70%, 50% 100%, 43% 70%, 0% 70%);
  }
  .slash-title {
    padding: 0 55px;
    font-size: 2.7rem;
  }
  .slash-title:before,
.slash-title:after {
  width: 70px;
}
.kakko-title {
  font-size: 2.7rem;
}
}

@media screen and (max-width:428px) {
  .balloon-title {
    font-size: 5vw;
    padding-top: 15px;
  }

  .slash-title {
    padding: 0 38px;
    font-size: 2.3rem;
  }
  .slash-title:before,
.slash-title:after {
  width: 60px;
}
.kakko-title {
  font-size: 2.3rem;
}
}


.marker {
  display: inline;
  position: relative;
  background: linear-gradient(transparent 50%, yellow 50%);
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 0 50%;
  transition-property: all;
  transition-duration: 1s;
  transition-delay: 0s;
  transition-timing-function: ease-in-out;
}

.marker.ugokumarker {
  background-size: 100% 50%;
}


.centering {
  text-align: center;
}

.chushaku {
  font-size: .9em;
}
/* 共通end */

/* index.html .worries */

/* intro */
.intro {
  background-color: #fff;
}

.worries {
  padding: 0 0 50px;
}

/* section.worries */
.worries .balloon-title {
background-color: #298ec6;
color: #fff;
}

.worries-box {
  margin-top: -35px;
  padding: 50px 20px;
  background-color: #dbeaef;
  border-radius: 10px;
  z-index: -1;
  box-shadow: 0px 0px 15px -10px #595957;
}

.worries-list {
  background-color: #fff;
  border-radius: 10px;
padding: 20px 10px;
}

.worries-list li {
  width: 100%;
  max-width: 550px;
margin: 5px 0;
font-size: 1.7rem;
text-indent: -0.5em;
  padding-left: 40px;
}

.check-box {
  padding-right: 6px;
  color: #595957;
}

.red {
  color: red;
  font-size: 1.3em;
  font-weight: bold;
  }


@media screen and (max-width:768px){
        .worries .flex-box {
    display: flex;
flex-direction: column;
  }

  .worries-box {
    margin-top: -35px;
    padding: 50px 20px 0 20px;
  }
  
          .worries .v-box img   {
width: 80%;
margin-top: -43px;
margin-left: auto;
margin-right: 0;
display: block;
  }

  .worries-list li {
    text-indent: -1em;
    font-size: 1.6rem;
    }
}

/* section .problem */
.problem {
  padding: 50px 0;
}

.problem-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 600;
  margin: 30px auto;
  width: 90%;
}

@media screen and (max-width:599px) {
  .problem-title {
font-size:1.7rem;
  }
  
}

.problem-title span {
  font-size: 1.3em;
  display: inline-block;
}

.problem-box {
  border-radius: 10px;
  padding: 10px;
  height: 400px;
  box-shadow: 0px 0px 15px -10px #595957;
}

@media screen and (max-width:520px) {
  .problem-box:nth-child(2) {
height: 450px;
  }
}
@media screen and (max-width:428px) {
  .problem-box:nth-child(2) {
height: 500px;
  }
}
@media screen and (max-width:380px) {
  .problem-box:nth-child(2) {
height: 550px;
  }
}


.problem-box:first-child {
background: url(../img/problem_01.png) no-repeat;
background-size:300px;
background-position:  10px 10px;
}
.problem-box:nth-child(2) {
background: url(../img/problem_02.png) no-repeat;
background-size:300px;
background-position:  10px 10px;
}
.problem-box:nth-child(3) {
background: url(../img/problem_03.png) no-repeat;
background-size:300px;
background-position:  10px 10px;
}
.problem-box:last-child {
background: url(../img/problem_04.png) no-repeat;
background-size:300px;
background-position:  10px 10px;
}

.problem-box .txt-box{
width: 80%;
margin-right: 0;
margin-left: auto;
}

.problem-hl {
  font-size: 2.2rem;
  border-bottom: yellowgreen dotted 3px;
  
  text-shadow: #fff 2px 2px 2px;
}
.problem-hl:first-letter {
  font-size: 1.5em;
  font-weight: 900;
  color: #298ec6;
}

.problem-box p {
  padding-top: 6px;
}

/* index.html support */
.support {
  background-color: #aad4ea;
  position: relative;

}
.support .balloon-title {
  background-color: #fff;
  position: absolute;
  top: -2px;
}

/* plan */
.plan {
  padding: 120px 0 ;
}

.plan-box {
  margin: 0 auto;
  background-color: #fff;
  width: 100%;
  height: auto;
  box-shadow: 0px 0px 15px -10px #595957;
  border-radius: 10px;
}

.plan-box dd {
  padding: 10px;
  text-align: left;
  line-height: 1.5;
  font-size: 1.6rem;
}

.plan-box dd li{
  padding-left: 2em;
  text-indent: -1em;
}

.plan-box dd .chushaku {
  padding-left: 2em;
  text-indent: -1em;
  font-size: .9em;
}

.plan-box .check-box {
  color: #298ec6;
}
dl.plan-box:nth-child(2n) .check-box {
  color: yellowgreen;
}

dl.plan-box:nth-child(2n)  dt h3 {
  background-color: yellowgreen;
}
@media (min-width: 600px) and (max-width: 959px) {
  dl.plan-box:nth-child(3)  dt h3 {
    background-color: yellowgreen;
  }
  dl.plan-box:nth-child(3) .check-box {
    color: yellowgreen;
  }
  dl.plan-box:last-child dt h3 {
    background-color: #298ec6;
  }
  dl.plan-box:last-child .check-box {
    color: #298ec6;
  }
}

.plan-box dt {
  position: relative;
}

.plan-box dt img {
  margin-top: 0;
  width: 100%;
}

.plan-box dt h3 {
  background-color: #298ec6;
  font-size: 2.2rem;
  color: #fff;
  text-align: center;
  line-height: 1.2;
  padding: 10px;
  border-radius: 10px 10px 0 0;
}

.font-s {
  font-size: .7em;
}


.naiyou {
  font-size: 1.9rem;
  font-weight: 600;
  margin: 5px 0;
}

/* 月々吹き出し */
.hukidasi {
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-152%);
}

.balloon3-right-btm {
  position: relative;
  display: inline-block;
  margin: 1.5em 15px 1.5em 0;
  padding: 0 5px;
  width: 70px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  color: #595957;
  font-size: 1.4rem;
  letter-spacing: .025em;
  font-weight: bold;
  background: #fff;
  border-radius: 50%;
  box-sizing: border-box;
  z-index: 2;
}

.balloon3-right-btm:before {
  content: "";
  position: absolute;
  bottom: -10px;
  right: -12px;
  margin-top: -15px;
  border: 15px solid transparent;
  border-left:25px solid #fff;
  z-index: 0;
  -webkit-transform: rotate(35deg);
  transform: rotate(35deg);
  z-index: -1;
}


@media screen and (max-width:768px) {
  .plan-box {
    margin:20px auto;

  }
}


/* .area */
.area .balloon-title {
  background-color: #aad4ea;
  position: absolute;
  top: -2px;
}
.area {
  padding: 120px 0;
  background-color: #fff;
  position: relative;
}
.area h3 {
  font-size: 2.5rem;
}

.area h3::first-letter{
  font-size: 1.5em;
  font-weight: 900;
  color: #298ec6;
  font-family: 'kazesawa';
}

.areamap-img,
.areamap-img img {
  width: 90%;
  max-width: 550px;
}

.area-name {
  background-color: #efefef;
  padding: 15px;
  border-radius: 10px;
}

.area-name ul {
  display: flex;
  flex-wrap: wrap;
}

.area-name ul li {
  margin: 5px 10px;
}

/* contact button */
/* 各種問い合わせボタン */

.to-contact {
  background: url(../img/contact_bg1.jpg) no-repeat;
  background-size: cover;
  background-position: center;
padding: 50px 0;
}


.contact-title {
color: #fff;
text-align: center;
font-size: 3rem;
}
.to-contact .flex-box {
  display: flex;justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}


.contact-button,
.contact-button img {
  display: block;
  width: 330px;
  box-shadow: 0px 5px 4px 0px #666;
border-radius: 15px;
transition: .2s ;
}

.contact-button:hover,
.contact-button img:hover {
box-shadow: none;
opacity: .95;
transform: translateY(5px);
transition: .2s ;
}


/* demolish.html */
.demolish-mv {
  background: url(../img/demolish_mv.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}

.demolish-intro {
  background-color: #fff;
}

.demolish {
  padding-bottom: 50px;
}

.menu-box-p {
  box-shadow: 0px 0px 15px -10px #595957;
  border-radius: 10px;
  padding: 10px 20px;
  margin-top: -10px;
}

.menu-box {
  position: relative;
  margin-top: 54px;
  margin-bottom: 24px;
  padding-bottom: 10px;
  border-bottom: 4px solid #e8e8e8;
  font-weight: normal;
  text-align: left;
  display: flex;
  justify-content: space-between;
}

.menu-box::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  z-index: 2;
  content: '';
  width: 20%;
  height: 4px;
  background-color: yellowgreen;
}

.menu-box .sub-text {
  font-size: 1.6rem;
  font-weight: normal;
  letter-spacing: 0.075em;
}

.sub-text ul li {
  list-style-type: disc;
  margin-left: 25px;
}

.menu-v {
  width: 100%;
  max-width: 500px;
  box-shadow: 0px 0px 15px -10px #595957;
  height: 375px;
}

.demolish-v01 {
  background: url(../img/demolish_v01.jpg)no-repeat;
  background-size: cover;
}
.demolish-v02 {
  background: url(../img/demolish_v02.jpg)no-repeat;
  background-size: cover;
}

.menu-v img {
  width: 100%;
}

.txt-wrapper {
  width: 100%;
  max-width: 500px;
}

.headline {
  font-size: 3rem;
}

.headline:first-letter {
  font-size: 1.5em;
  font-weight: 900;
  color: yellowgreen;
}

.sub-text-large {
  font-size: 1.2em;
}

.sub-text .kome{
  font-size: .9em;
  list-style-type: none;
  margin-left: 25px;
  padding-left: 2em;
  text-indent: -1em;
  margin-left: 0;
}
.sub-text .kome:before{
content: "※";
}



@media screen and (max-width:768px) {
  .headline {
    font-size: 2.2rem;
  }

.menu-box {
  display: block;
}

.menu-v,
.txt-wrapper{
  width: 100%;
  margin: 0 auto;
}



  .menu-box .sub-text {
    font-size: 1.6rem;
  }
}
/* demolish.html end */

/* vacanthouse.html */
.vacanthouse-mv {
  background: url(../img/vacanthouse_mv.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}

.vacanthouse-intro {
  background-color: #fff;
}

.vacanthouse {
  padding-bottom: 50px;
}

.vacanthouse-v01 {
  background: url(../img/vacanthouse_v01.jpg)no-repeat;
  background-size: cover;
}
.vacanthouse-v02 {
  background: url(../img/vacanthouse_v02.jpg)no-repeat;
  background-size: cover;
}

.vacanthouse .headline:first-letter {
  font-size: 1.5em;
  font-weight: 900;
  color: #298ec6;
}

.vacanthouse .menu-box::after {
  background-color: #298ec6;
}

/* company.html */
.company-mv {
  background: url(../img/company_mv.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}

.company-intro {
  background-color: #fff;
}

.company {
  padding-bottom: 50px;
}

.company-profile {
  margin-top: -10px;
  width: 100%;
    border-collapse: collapse;
  box-shadow: 0px 0px 15px -10px #595957;
  }
  
  .company-profile th,
  .company-profile td {
  border: 1px solid #ccc;
  padding: 20px;
  }
  
  .company-profile th {
  font-weight: bold;
  background-color: #dbeaef; 
  }
  
  @media screen and (max-width: 768px) {
  .company-profile,
  .company-profile tr,
  .company-profile td,
  .company-profile th {
  display:inline-block;
  width:100%;
  }
  }

  /* mailform.html */

  .mailform-mv {
    background: url(../img/mailform_mv.jpg) no-repeat;
    background-size: cover;
    background-position: center;
  }

  .mailform {
    width: 90%;
    max-width: 1000px;
    margin: -40px auto 20px;
    padding: 20px 10px;
    box-shadow: 0px 0px 15px -10px #595957;
  }
  .contact-form-parts {
    margin-top: 30px;
    padding: 0;
    text-align: center;
  }
  
  #formWrap {
    width: 100%;
    margin: 0 auto;
    color: #595957;
    line-height: 120%;
    font-size: 90%;
    text-align: left;
  }
  
  table.formTable {
    width: 100%;
    margin: 0 auto 20px;
    border-collapse: collapse;
    border-spacing: 15px 20px;
  }
  
  
  table.formTable th {
    /* border:1px solid #ccc; */
    padding: 5px;
  }
  
  table.formTable td {
    padding: 10px;
  }
  
  table.formTable th {
    width: 40%;
    font-weight: 700;
    /* background:#4ba8de; */
    color: #595957;
    vertical-align: middle;
    text-align: left;
    background: #f1f1f1;
    padding-left: 15px;
    border: #fff solid 2px;
  }
  
  .formTable .caution-text {
    color: red;
    font-size: 1.3rem;
  }
  table.formTable textarea {
    width: 100%;
    border: none;
    box-shadow: 0 0 0 1px #ccc inset;
    background-color: #fff;
  }
  
  
  .send-button {
    display: inline-block;
    border-radius: 5%;
    /* 角丸    */
    font-weight: 700;
    font-size: 16px;
    /* 文字サイズ */
    text-align: center;
    /* 文字位置   */
    cursor: pointer;
    /* カーソル   */
    padding: 12px 12px;
    /* 余白       */
  background-color: #298ec6;/* 背景色     */
    color: #ffffff;
    /* 文字色     */
    line-height: 1em;
    /* 1行の高さ  */
    transition: .3s;
    /* なめらか変化 */
    box-shadow: 2px 2px 0px #dcdddd;
    /* 影の設定 */
    /* 枠の指定 */
    width: 100%;
    max-width: 150px;
    border: #298ec6 solid 2px;
  }
  
  .send-button:hover {
    box-shadow: none;
    /* カーソル時の影消去 */
    color: #298ec6 ;
    /* 背景色     */
    background: #ffffff;
    border:#298ec6 solid 2px;
    /* 文字色     */
  }
  
  .reset-button {
    background: #fff;
    /* 背景色     */
    color: #298ec6;
    /* 文字色     */
  }
  
  .reset-button:hover {
    box-shadow: none;
    /* カーソル時の影消去 */
    color: #fff;
    /* 背景色     */
    background: #298ec6;
    /* 文字色     */
  }
  
  
  .button-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .button-wrapper input {
    margin-bottom: 20px;
  }
  
  
  .m-form-text {
    height: 2.4em;
    width: 100%;
    padding: 0 16px;
    border: none;
    box-shadow: 0 0 0 1px #ccc;
    background-color: #fff;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
  }
  
  .m-form-text:focus {
    outline: 0;
    box-shadow: 0 0 0 2px rgb(33, 150, 243) inset;
  }
  
  
  
  .button {
    display: inline-block;
    border-radius: 5%;
    /* 角丸       */
    font-size: 12pt;
    /* 文字サイズ */
    text-align: center;
    /* 文字位置   */
    cursor: pointer;
    /* カーソル   */
    padding: 10px 25px;
    /* 余白       */
    background: #333333;
    /* 背景色     */
    color: #ffffff;
    /* 文字色     */
    line-height: 1em;
    /* 1行の高さ  */
    transition: .3s;
    /* なめらか変化 */
    box-shadow: 1px 1px #666666;
    /* 影の設定 */
    border: 1px solid #333333;
    /* 枠の指定 */
  }
  
  .button:hover {
    box-shadow: none;
    /* カーソル時の影消去 */
    color: #333333;
    /* 背景色     */
    background: #ffffff;
    /* 文字色     */
  }
  
  @media screen and (max-width:599px) {
    #formWrap {
      width: 100%;
      margin: 0 auto;
    }
  
    table.formTable th, table.formTable td {
      width: auto;
      display: block;
      padding-bottom: 0;
    }
  
    table.formTable th {
      margin-top: 5px;
      border-bottom: 0;
      padding: 5px;
      
    }
  
    input[type="text"], textarea {
      width: 100%;
      padding: 5px;
      font-size: 110%;
      display: block;
    }
  
    input[type="submit"], input[type="reset"], input[type="button"] {
      /* display:block; */
      height: 40px;
    }
  
  }