@charset "UTF-8";
.btn {
  position: relative;
  display: inline-block;
  border: none;
  font-weight: 600;
  font-size: 18px;
  padding: 17px 30px;
  margin: 10 px auto;
  cursor: pointer;
  transition: all 0.3s;
  color: white;
  text-decoration: none !important;
  border-radius: 30px;
  background: linear-gradient(to right, #069940, #69c024);
  background: -webkit-linear-gradient(left, #069940, #69c024);
}
.btn.float:hover {
  background-color: black;
  color: white;
  box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.5);
}
.btn.filled {
  background-color: black;
  color: white;
  box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.5);
}
.btn.filled:hover {
  background-color: white;
  color: black;
  box-shadow: none;
}
.btn.letter-spacing:hover {
  background-color: black;
  letter-spacing: 3px;
  color: white;
}
.btn.shadow {
  box-shadow: none;
}
.btn.shadow:hover {
  transform: translate(-2.5px, -2.5px);
  box-shadow: 5px 5px 0 0 black;
}
.btn.solid {
  box-shadow: 2px 2px 0 0 black;
  border-radius: 7px;
}
.btn.solid:hover {
  transform: translate(2px, 2px);
  box-shadow: none;
}
.btn.slide-bg {
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.btn.slide-bg::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: black;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-100%);
  transition: transform 0.3s;
  z-index: -1;
}
.btn.slide-bg:hover {
  color: white;
}
.btn.slide-bg:hover::before {
  transform: none;
}
.btn.cover-3d {
  position: relative;
  z-index: 1;
  transform-style: preserve-3d;
  perspective: 300px;
}
.btn.cover-3d span {
  display: inline-block;
  transform: translateZ(20px);
}
.btn.cover-3d::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: black;
  position: absolute;
  top: 0;
  left: 0;
  transform: rotateX(90deg);
  transition: all 0.3s;
  transform-origin: top center;
  opacity: 0;
}
.btn.cover-3d:hover {
  color: white;
}
.btn.cover-3d:hover::before {
  transform: none;
  opacity: 1;
}

.btn-cubic {
  position: relative;
  display: inline-block;
  transform-style: preserve-3d;
  perspective: 300px;
  width: 150px;
  height: 50px;
  margin: 0 auto;
  cursor: pointer;
  font-weight: 600;
}
.btn-cubic span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid black;
  line-height: 48px;
  text-align: center;
  transition: all 0.3s;
  transform-origin: center center -25px;
}
.btn-cubic .hovering {
  background-color: black;
  color: white;
  transform: rotateX(90deg);
}
.btn-cubic .default {
  background-color: white;
  color: black;
  transform: rotateX(0);
}
.btn-cubic:hover .hovering {
  transform: rotateX(0);
}
.btn-cubic:hover .default {
  transform: rotateX(-90deg);
}

label {
  margin-bottom: none !important;
}

/*------------------------------

  ここから下がハンバーガーメニュー
  に関するCSS

------------------------------*/
/* チェックボックスは非表示に */
.drawer-hidden {
  display: none;
}

/* ハンバーガーアイコンの設置スペース */
.drawer-open {
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 100; /* 重なり順を一番上に */
  cursor: pointer;
}

/* ハンバーガーメニューのアイコン */
.drawer-open span,
.drawer-open span:before,
.drawer-open span:after {
  content: "";
  display: block;
  height: 3px;
  width: 35px;
  border-radius: 3px;
  background: #06993f;
  transition: 0.7s;
  position: absolute;
}

/* 三本線のうち一番上の棒の位置調整 */
.drawer-open span:before {
  bottom: 11px;
}

/* 三本線のうち一番下の棒の位置調整 */
.drawer-open span:after {
  top: 11px;
  width: 30px;
}

.drawer-open span {
  width: 20px;
}

/* アイコンがクリックされたら真ん中の線を透明にする */
#drawer-check:checked ~ .drawer-open span {
  background: rgba(255, 255, 255, 0);
  width: 35px;
}

/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#drawer-check:checked ~ .drawer-open span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#drawer-check:checked ~ .drawer-open span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* メニューのデザイン*/
.drawer-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 100px;
  left: 100%; /* メニューを画面の外に飛ばす */
  z-index: 99;
  background-color: rgba(255, 255, 255, 0.9);
  transition: 0.5s;
}

.drawer-item {
  list-style: none;
  padding: 0 40px;
}
.drawer-item:hover a {
  color: #06993f;
}
.drawer-item a {
  text-decoration: none !important;
  color: black;
  margin-top: 30px;
  display: block;
}

/* アイコンがクリックされたらメニューを表示 */
#drawer-check:checked ~ .drawer-content {
  left: 0; /* メニューを画面に入れる */
}

/******************************************************************

Stylesheet: ベーススタイル

******************************************************************/
body {
  font-family: "Noto Sans JP", sans-serif;
  /*background-color: #fcfbf8;*/
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

.font-sp, .key__day {
  font-size: 18px;
}

.font-sm, .sub-title {
  font-size: 14px;
}

.font-md {
  font-size: 17px;
}

.font-lr {
  font-size: 17px;
}

.font-lm, .appoint__item h3 {
  font-size: 20px;
}

.font-lg, .main-title {
  font-size: 24px;
}

.mb-sm, .appoint__title {
  margin-bottom: 16px !important;
}

.mb-lg, .high, .key {
  margin-bottom: 80px !important;
}

.pb-sm {
  padding-bottom: 16px !important;
}

.pb-lg {
  padding-bottom: 80px !important;
}

.content-width, .footer, .appoint__inner, .appoint__title, .trouble__inner, .news, .medium__container, .medium__title, .survice__title, .survice__container, .high, .key, .tonarisk__inner, .header__inner {
  width: 84%;
  margin: 0 auto;
  max-width: 1200px;
}

a.anchor {
  display: block;
  padding-top: 200px;
  margin-top: -200px;
}

.main-title {
  font-weight: 600;
  margin-bottom: 30;
  display: block;
}

.sub-title {
  color: #06993f;
}

.flex {
  display: flex;
  flex-direction: column;
}

.purple {
  color: #904669;
}

#main-content {
  position: relative;
  z-index: 0;
}

main {
  position: relative;
  z-index: -1;
}

#container {
  transition: transform 0.5s, box-shadow 0.5s;
  background-color: white;
  position: relative;
  z-index: 10;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: transparent;
  display: flex;
  align-items: center;
  z-index: 100;
}
.header.triggered {
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 10px 0 25px -10px rgba(0, 0, 0, 0.5);
}
.header__nav {
  display: none;
}
.header__ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
  align-items: center;
}
.header__li {
  padding: 0;
  margin-left: 35px;
  font-size: 15px;
  font-weight: bold;
  position: relative;
}
.header__li:hover > a {
  color: #06993f;
}
.header__li > a {
  color: #333333;
  text-decoration: none !important;
  text-transform: uppercase;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header #uth {
  background: url(../images/ヘッダーアイコン.png) no-repeat 14px center;
  background-size: contain;
  padding-left: 40px;
  color: white;
}
.header #ques {
  background-color: #06993f;
  padding: 40px 15px;
  border-radius: 20px;
  background: linear-gradient(to right, #069940, #69c024);
  background: -webkit-linear-gradient(left, #069940, #69c024);
}
.header #ques > a:hover {
  color: black;
}

.tonarisk {
  margin-bottom: 20px;
  padding-top: 110px;
  padding-bottom: 24%;
  background-image: url("../images/ファーストビュー背景.png");
}
.tonarisk__img {
  display: none;
  margin-bottom: 25px;
  height: 410px;
}
.tonarisk__img > img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
  border-radius: 30px;
}
.tonarisk__title {
  padding-top: 60px;
  text-align: center;
  font-size: 38px;
  font-weight: bold;
}
.tonarisk__title span {
  color: #06993f;
}
.tonarisk__title h1 {
  font-size: 45px;
}

.key__item {
  position: relative;
  margin-bottom: 50px;
}
.key__content {
  position: relative;
}
.key__day {
  color: #333333;
  line-height: 1.8;
}
.key__day span {
  color: #06993f;
  font-weight: bold;
}
.key__text {
  margin-bottom: 30px;
  font-size: 16px;
  text-align: start;
}
.key__img {
  margin-bottom: 25px;
  border-radius: 30px;
}
.key__img > img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
  border-radius: 30px;
}
.key__title {
  padding-top: 60px;
  text-align: center;
}
.key__title .sub-title {
  margin-bottom: 55px;
}

.high__item {
  position: relative;
  margin-bottom: 50px;
}
.high__content {
  position: relative;
}
.high__house {
  position: absolute;
  top: -20%;
  right: -9%;
  z-index: -1;
}
.high__htitle {
  font-size: 20px;
  font-weight: bold;
  margin-top: 14px;
  margin-bottom: 30px;
  color: #333333;
}
.high__day {
  font-size: 14px;
  color: #06993f;
  font-weight: bold;
  padding: 5px;
  border: 1px solid #535353;
  border-radius: 10px;
  width: 155px;
  margin: 0 auto;
}
.high__text {
  margin-bottom: 30px;
  font-size: 22px;
  text-align: start;
}
.high__img {
  margin-bottom: 25px;
  height: 430px;
}
.high__img > img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 30px;
}
.high__title {
  padding-top: 60px;
  text-align: center;
  margin-bottom: 40px;
}
.high__title .sub-title {
  margin-bottom: 100px;
}
.high__btn {
  text-align: center;
}
.high #high__content750 {
  display: none;
}

.survice {
  margin-bottom: 80px;
}
.survice .pc {
  display: block !important;
}
.survice .sp {
  display: none !important;
}


.survice__inner {
    position: relative;
}
.survice__inner::before {
    content: "";
    position: absolute;
    bottom: -10%;
    left: 0;
    width: 97%;
    height: 110%;
    background-color: #fcfbf8;
    z-index: -1;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
}
.survice__item {
    position: relative;
    margin-bottom: 90px;
}
.survice__htitle {
    position: absolute;
    top: 46%;
    left: 21%;
    z-index: 10;
    transform: translate(-50%, -50%);
    font-size: 17px;
    font-weight: bold;
    color: #333333;
}
.survice #htitle2 {
    left: 24%;
}
.survice__day {
    position: absolute;
    top: 24%;
    left: 24.5%;
    transform: translate(-50%, -50%);
    z-index: 10;
    font-size: 14px;
    color: #06993f;
    font-weight: bold;
    padding: 5px;
    border: 1px solid #535353;
    border-radius: 10px;
    width: 148px;
    margin: 0 auto;
    text-align: center;
}
.survice #dayy {
    width: 153px;
}
.survice__button {
    position: absolute;
    top: 72%;
    left: 25%;
    transform: translate(-50%, -50%);
    z-index: 10;
    display: inline-block;
}
.survice__text {
    margin-bottom: 30px;
    font-size: 16px;
}
.survice__img {
    position: relative;
    margin-bottom: 13px;
    z-index: -1;
}
.survice__img::after {
    content: "";
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    height: 100%;
    width: 50%;
    background-color: white;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
}
.survice__img > img {
    -o-object-fit: contain;
       object-fit: contain;
    width: 100%;
    height: 100%;
    border-radius: 30px;
}
.survice__title {
    padding-top: 60px;
    margin-bottom: 55px;
    text-align: center;
}
.survice button {
    font-size: 11px;
}
.medium {
    margin-bottom: 60px;
    /*background-image: url("../images/medium背景.png");*/
    padding-bottom: 50px;
}
.medium__htitle {
  font-size: 20px;
  margin-bottom: 13px;
}
.medium__day {
  margin-bottom: 12px;
  font-size: 16px;
  letter-spacing: 0.1em;
}
.medium__text {
margin-bottom: 50px;
font-size: 18px;
}
.medium__img {
margin-bottom: 13px;
height: 200px;
}
.medium__img > img {
-o-object-fit: cover;
   object-fit: cover;
width: 100%;
height: 100%;
border-radius: 30px;
}
/*
.medium__img {
margin-bottom: 25px;
}
.medium__img > img {
-o-object-fit: contain;
   object-fit: contain;
width: 100%;
height: 100%;

}*/
.medium__title {
padding-top: 60px;
margin-bottom: 55px;
text-align: center;
color: white;
}
.medium__title .sub-title {
color: white;
}
.medium__container {
margin-bottom: 40px;
color: white;
}
.medium__btn {
text-align: center;
}
.medium #white {
display: none;
color: #06993f;
background: linear-gradient(to right, white, white);
background: -webkit-linear-gradient(left, white, white);
}
.medium #whitesp {
color: #06993f;
background: linear-gradient(to right, white, white);
background: -webkit-linear-gradient(left, white, white);
padding: 17px 60px;
border-radius: 45px;
}
.medium #whitesp span {
display: inline-block;
}
.medium__bord {
position: absolute;
top: 50%;
left: 90%;
transform: translate(-50%, -50%);
}

.news {
margin-bottom: 40px;
}
.news__title {
margin-bottom: 65px;
text-align: center;
}
.news__table {
width: 100%;
margin-bottom: 50px;
}
.news__table #topnews {
background-color: #f9f7f0;
}
.news__table tr {
display: flex;
flex-direction: column;
background-color: white;
border-bottom: 1px solid #f1edde;
}
.news__table tr th {
padding-top: 40px;
margin-bottom: 20px;
font-size: 14px;
/*color: #06993f;*/
letter-spacing: 0.1em;
}
.news__table tr td {
padding-bottom: 40px;
font-size: 16px;
}
.news__table tr th, .news__table tr td {
padding-left: 40px;
padding-right: 40px;
}

.trouble {
padding-bottom: 80px;
background-color: #fcfbf8;
padding-top: 40px;
margin: 0 auto;
/*width: 84%;*/
max-width: 1200px;
}
.trouble__btn {
text-align: center;
}
.trouble__title {
margin-bottom: 65px;
text-align: center;
}
.trouble__table {
width: 100%;
margin-bottom: 50px;
}
.trouble__table #toptrouble {
background-color: #f9f7f0;
}
.trouble__table tr {
display: flex;
flex-direction: column;
background-color: white;
border-bottom: 1px solid #f1edde;
}
.trouble__table tr th {
padding-top: 40px;
margin-bottom: 20px;
font-size: 14px;
/*color: #06993f;*/
letter-spacing: 0.1em;
}
.trouble__table tr td {
padding-bottom: 40px;
font-size: 16px;
}
.trouble__table tr th, .trouble__table tr td {
padding-left: 40px;
padding-right: 40px;
}
.trouble #busp {
padding: 17px 80px;
border-radius: 45px;
}
.trouble #busp span {
display: inline-block;
}
.trouble__bord {
position: absolute;
top: 50%;
left: 90%;
transform: translate(-50%, -50%);
}

.trouble #bupc {
display: none;
}

.appoint {
color: white;
text-align: center;
background-image: url("../images/お問い合わせ背景.png");
padding-bottom: 100px;
margin-bottom: 40px;
}

.appoint__title {
padding-top: 80px;
text-align: center;
}
.appoint .sub-title {
margin-bottom: 40px;
color: white;
}
.appoint__text {
text-align: center;
margin-bottom: 40px;
font-size: 18px;
}
.appoint__nav {
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
text-align: center;
}
.appoint__item {
letter-spacing: 0.1em;
margin-bottom: 30px;
}
.appoint__item h2 {
margin-bottom: 0;
}
.appoint__item:nth-child(1) {
border-bottom: black dotted 1px;
}
.appoint__for {
font-size: 16px;
color: white;
text-decoration-line: underline;
letter-spacing: 0.1em;
}
.appoint__for:hover {
color: #06993f;
}
.appoint__res {
margin-bottom: 0;
padding-top: 10px;
}
.appoint #form {
font-size: 15px;
padding: 25px;
padding-right: 10px;
padding-left: 3px;
letter-spacing: 0.1em;
border-radius: 70px;
}

#appoint__none {
display: none;
background-color: white;
color: black;
border-radius: 30px;
letter-spacing: 0.1em;
padding: 10px 10%;
vertical-align: bottom;
}
#appoint__none h2 {
vertical-align: bottom;
font-size: 30px;
}
#appoint__none span {
font-size: 18px;
}

.footer__inner {
justify-content: space-between;
align-items: center;
margin-bottom: 20px;
}
.footer__ul {
display: none;
padding: 0;
margin: 0;
list-style: none;
}
.footer__li {
margin-left: 18px;
font-size: 13px;
font-weight: bold;
}
.footer__li:hover > a {
color: #06993f;
}
.footer__li > a {
color: #333333;
text-decoration: none !important;
text-transform: uppercase;
}
.footer__ull {
display: flex;
padding: 0;
margin: 0;
list-style: none;
}
.footer__lii {
font-size: 14px;
margin-right: 20px;
padding-left: 3px;
margin-bottom: 22px;
letter-spacing: 1px;
font-weight: bold;
}
.footer__lii:last-child {
margin-bottom: 0;
}
.footer__lii:hover > a {
color: #06993f;
}
.footer__lii > a {
color: #333333;
text-decoration: none !important;
text-transform: uppercase;
}
.footer__img {
margin-bottom: 30px;
}

.footer__infor {
display: none;
font-size: 12px;
}
.footer__tona {

margin-bottom: 0px;
}
.footer__last {
font-size: 12px;
text-align: center;
color: #CCCCCC;
}
.footer__last span {
margin-left: 3px;
}

.logo {
font-size: 300px;
display: flex;
justify-content: start;
text-align: center;
}
.logo__img {
width: 0.75em;
}
.logo p {
font-size: 12px;
display: none;
} 
@media (min-width: 961px) {
  .medium {
    background-image: url("../images/medium背景.png");
  }
}

/* スマホ版の背景設定 */
@media (max-width: 960px) {
  .medium {
    background-image: url("../images/medium背景sp版.png");

    background-repeat: no-repeat;
  }
}

@media (min-width: 600px) {
  /******************************************************************

  Stylesheet: 600px以上のタブレットやモニタで適用

  ******************************************************************/
  .font-lg, .main-title {
    font-size: 32px;
  }
  .flex {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .tonarisk__title h1 {
    font-size: 1.5em;
  }
  .survice__htitle {
    top: 40%;
    left: 21%;
    font-size: 23px;
    margin-top: 19px;
    margin-bottom: 13px;
  }
  .survice #htitle2 {
    left: 24%;
  }
  .survice__day {
    top: 24%;
    left: 24.5%;
    font-size: 18px;
    width: 190px;
  }
  .survice #dayy {
    width: 200px;
  }
  .survice__button {
    top: 70%;
  }
  .survice button {
    font-size: 18px;
  }
  .high .sub-title {
    margin-bottom: 55px;
  }
  .appoint__item:nth-child(1) {
    border-bottom: none;
  }
  .header .logo {
    justify-content: flex-start;
  }
}
@media (min-width: 750px) {
  /******************************************************************

  Stylesheet: 960px以上のモニタで適用

  ******************************************************************/
  .font-sp, .key__day {
    font-size: 22px;
  }
  .btn {
    font-size: 22px;
  }
  .survice {
    margin-bottom: 180px;
  }
  .high .sub-title {
    margin-bottom: 68px;
  }
  .medium__htitle {
    font-size: 26px;
  }
  .medium__day {
    font-size: 16px;
  }
  .medium__text {
    font-size: 22px;
  }
  .news__table tr th {
    padding-top: 35px;
    font-size: 18px;
    margin-bottom: 0;
  }
  .news__table tr td {
    padding-top: 20px;
    padding-bottom: 35px;
    font-size: 22px;
  }
  .trouble__table tr th {
    padding-top: 35px;
    font-size: 18px;
    margin-bottom: 0;
  }
  .trouble__table tr td {
    padding-top: 20px;
    padding-bottom: 35px;
    font-size: 22px;
  }
  .trouble #busp {
    padding: 17px 60px;
  }
  .appoint__text {
    font-size: 22px;
  }
  .appoint__for {
    font-size: 22px;
  }
  .appoint #form {
    font-size: 22px;
    padding: 40px;
    padding-right: 50px;
    padding-left: 92px;
  }
  .footer__lii {
    font-size: 19px;
    margin-right: 100px;
  }
  .mobile-menu__btn {
    display: none;
  }
  .swiper-slide {
    box-shadow: 0 8px 40px -10px rgba(0, 0, 0, 0.8);
  }
}
/*@media only screen and /max-width: 960px/総数3：結合済み*/
@media only screen and (max-width: 960px) {
  .survice .pc {
    display: none !important;
  }
  .survice .sp {
    display: block !important;
  }
  /*結合1つ目*/

  /*結合2つ目*/
  
  *.medium {
    background-image: url("../images/medium背景sp版.png");
  }*/
  /*結合3つ目*/

  .appoint {
    background-image: url("../images/appoint背景sp.png");
  }


  

}
@media (min-width: 960px) {
  /******************************************************************

  Stylesheet: 960px以上のモニタで適用

  ******************************************************************/
  .font-sp, .key__day {
    font-size: 18px;
  }
  .font-sm, .sub-title {
    font-size: 16px;
  }
  .font-md {
    font-size: 19px;
  }
  .font-lr {
    font-size: 23px;
  }
  .font-lm, .appoint__item h3 {
    font-size: 28px;
  }
  .font-lg, .main-title {
    font-size: 36px;
  }
  .mb-lg, .key, .high {
    margin-bottom: 150px !important;
  }
  .pb-lg {
    padding-bottom: 150px !important;
  }
  a.anchor {
    display: block;
    padding-top: 150px;
    margin-top: -150px;
  }
  .btn {
    font-size: 18px;
  }
  .header__li {
    font-size: 19px;
    margin-left: 50px;
  }
  .header #ques {
    padding: 36px 15px;
  }
  .header__nav {
    display: block;
  }
  .drawer {
    display: none;
  }
  .tonarisk {
    margin-bottom: 45px;
    padding-bottom: 0;
  }
  .tonarisk__title {
    font-size: 48px;
  }
  .tonarisk__img {
    height: 550px;
  }
  .tonarisk__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  .tonarisk__title {
    flex-basis: 45%;
  }
  .tonarisk__img {
    flex-basis: 45%;
    display: block;
  }
  .key__item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .key__img {
    flex-basis: 45%;
  }
  .key__content {
    flex-basis: 45%;
  }
  .key__day {
    line-height: 2.2;
    font-size: 22px;
  }
  .key .trouble__btn {
    text-align: start;
  }
  .survice {
    margin-bottom: 150px;
  }
  .survice__inner::before {
    content: "";
    width: 95%;
    bottom: 0;
    height: 100%;
  }
  .survice__container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .survice__item {
    flex-basis: 45%;
  }
  .survice__htitle {
    position: absolute;
    top: 40%;
    left: 21%;
    transform: translate(-50%, -50%);
    font-size: 18px;
  }
  .survice #htitle2 {
    left: 24%;
  }
  .survice__day {
    position: absolute;
    top: 24%;
    left: 24.5%;
    transform: translate(-50%, -50%);
    z-index: 10;
    font-size: 14px;
    padding: 5px;
    width: 155px;
  }
  .survice #dayy {
    width: 163px;
  }
  .survice button {
    font-size: 13px;
  }
  .high__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
  .high__content {
    display: none;
  }
  .high__title {
    flex-basis: 45%;
    text-align: start;
  }
  .high #high__content750 {
    display: block;
    flex-basis: 45%;
  }
  .high__btn {
    text-align: start;
  }
  .medium__container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 20px;
  }
  .medium__item {
    flex-basis: 30%;
  }
  .medium__htitle {
    font-size: 20px;
  }
  .medium__day {
    font-size: 16px;
  }
  .medium__text {
    font-size: 18px;
  }
  .medium #white {
    display: inline-block;
  }
  .medium #whitesp {
    display: none;
  }
  .news {
    margin-bottom: 60px;
  }
  .news__table tr {
    flex-direction: row;
  }
  .news__table tr th {
    padding-top: 35px;
    font-size: 14px;
  }
  .news__table tr td {
    padding-top: 32px;
    padding-bottom: 20px;
    font-size: 16px;
  }
  .trouble {
    padding-top: 90px;
    padding-bottom: 150px;
  }
  .trouble__table tr {
    flex-direction: row;
  }
  .trouble__table tr th {
    padding-top: 35px;
    font-size: 14px;
  }
  .trouble__table tr td {
    padding-top: 32px;
    padding-bottom: 20px;
    font-size: 16px;
  }
  .trouble #bupc {
    display: inline-block;
  }
  .trouble #busp {
    display: none;
  }
  .appoint__nav {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .appoint__for {
    display: none;
  }
  .appoint #appoint__none {
    display: block;
    flex-basis: 48%;
    letter-spacing: 0.1em;
    padding: 10px 7%;
  }
  .appoint #appoint__none h2 {
    font-size: 20px;
  }
  .appoint__text {
    font-size: 16px;
    text-align: center;
  }
  .appoint__res {
    font-size: 12px;
  }
  .appoint__time {
    font-size: 9px;
  }
  .appoint__item {
    flex-basis: 48%;
  }
  .appoint #form {
    font-size: 16px;
    padding: 44px 6%;
    padding-right: 7%;
  }
}
@media (min-width: 1200px) {
  .survice__htitle {
    position: absolute;
    top: 40%;
    left: 21%;
    transform: translate(-50%, -50%);
    font-size: 23px;
  }
  .survice #htitle2 {
    left: 24%;
  }
  .survice__day {
    position: absolute;
    top: 24%;
    left: 24.5%;
    transform: translate(-50%, -50%);
    z-index: 10;
    font-size: 18px;
    padding: 5px;
    width: 190px;
  }
  .survice #dayy {
    width: 200px;
  }
  .survice button {
    font-size: 18px;
  }
  .appoint #form {
    font-size: 19px;
    padding: 56px 14%;
    padding-right: 8%;
  }
  .appoint #appoint__none {
    display: block;
    flex-basis: 48%;
    letter-spacing: 0.1em;
    padding: 7px 7%;
  }
  .appoint #appoint__none h2 {
    font-size: 30px;
  }
  .appoint__res {
    font-size: 17px;
  }
  .appoint__time {
    font-size: 12px;
  }
  .footer__li {
    font-size: 16px;
    margin-left: 30px;
  }
}
@media (min-width: 1400px) {
  .appoint #form {
    font-size: 22px;
    padding: 52px 14%;
    padding-right: 8%;
  }
  .appoint #appoint__none h2 span {
    margin-right: 5px;
  }
  .footer {
    margin-bottom: 20px;
  }
  .footer__inner {
    display: flex;
  }
  .footer__ul {
    display: flex;
  }
  .footer__li {
    display: flex;
    margin-left: 30px;
  }
  .footer__infor {
    display: block;
  }
  .footer__container {
    display: flex;
    justify-content: space-between;
  }
  .footer__img {
    margin-bottom: 0;
    width: none;
  }
  .footer__ull {
    display: none;
  }
}
@media only screen and (min-width: 1400px) and (min-width: 2000px) {
  .footer__li {
    font-size: 17px;
  }
}



/*@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) ：総数37件：結合済み*/
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  /******************************************************************

  Stylesheet: ベーススタイル

  ******************************************************************/
  body {
    font-family: "Noto Sans JP", sans-serif;
    /*background-color: #fcfbf8;*/
  }
  img {
    max-width: 100%;
    vertical-align: bottom;
  }
  .font-sp, .key__day {
    font-size: 18px;
  }
  .font-sm, .sub-title {
    font-size: 14px;
  }
  .font-md {
    font-size: 17px;
  }
  .font-lr {
    font-size: 17px;
  }
  .font-lm, .appoint__item h3 {
    font-size: 20px;
  }
  .font-lg, .main-title {
    font-size: 24px;
  }
  .mb-sm, .appoint__title {
    margin-bottom: 16px !important;
  }
  .mb-lg, .key, .high {
    margin-bottom: 80px !important;
  }
  .pb-sm {
    padding-bottom: 16px !important;
  }
  .pb-lg {
    padding-bottom: 80px !important;
  }
  .content-width, .header__inner, .tonarisk__inner, .key, .high, .survice__container, .survice__title, .medium__title, .medium__container, .news, .trouble__inner, .appoint__title, .appoint__inner, .footer {
    width: 84%;
    margin: 0 auto;
    max-width: 1200px;
  }
  a.anchor {
    display: block;
    padding-top: 200px;
    margin-top: -200px;
  }
  .main-title {
    font-weight: 600;
    margin-bottom: 30;
    display: block;
  }
  .sub-title {
    color: #06993f;
  }
  .flex {
    display: flex;
    flex-direction: column;
  }
  .purple {
    color: #904669;
  }
  #main-content {
    position: relative;
    z-index: 0;
  }
  main {
    position: relative;
    z-index: -1;
  }
  #container {
    transition: transform 0.5s, box-shadow 0.5s;
    background-color: white;
    position: relative;
    z-index: 10;
  }
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: transparent;
    display: flex;
    align-items: center;
    z-index: 100;
  }
  /*  .header.triggered {
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 10px 0 25px -10px rgba(0, 0, 0, 0.5);
  }*/
  .header__nav {
    display: none;
  }
  .header__ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
    align-items: center;
  }
  .header__li {
    padding: 0;
    margin-left: 35px;
    font-size: 15px;
    font-weight: bold;
    position: relative;
  }
  .header__li:hover > a {
    color: #06993f;
  }
  .header__li > a {
    color: #333333;
    text-decoration: none !important;
    text-transform: uppercase;
  }
  .header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header #uth {
    background: url(../images/ヘッダーアイコン.png) no-repeat 14px center;
    background-size: contain;
    padding-left: 40px;
    color: white;
  }
  .header #ques {
    background-color: #06993f;
    padding: 40px 15px;
    border-radius: 20px;
    background: linear-gradient(to right, #069940, #69c024);
    background: -webkit-linear-gradient(left, #069940, #69c024);
  }
  .header #ques > a:hover {
    color: black;
  }
  .tonarisk {
    margin-bottom: 20px;
    padding-top: 110px;
    padding-bottom: 24%;
    background-image: url("../images/ファーストビュー背景.png");
  }
  .tonarisk__img {
    display: none;
    margin-bottom: 25px;
    height: 410px;
  }
  .tonarisk__img > img {
    -o-object-fit: contain;
       object-fit: contain;
    width: 100%;
    height: 100%;
    border-radius: 30px;
  }
  .tonarisk__title {
    padding-top: 60px;
    text-align: center;
    font-size: 38px;
    font-weight: bold;
  }
  .tonarisk__title span {
    color: #06993f;
  }
  .tonarisk__title h1 {
    font-size: 45px;
  }
  .key__item {
    position: relative;
    margin-bottom: 50px;
  }
  .key__content {
    position: relative;
  }
  .key__day {
    color: #333333;
    line-height: 1.8;
  }
  .key__day span {
    color: #06993f;
    font-weight: bold;
  }
  .key__text {
    margin-bottom: 30px;
    font-size: 16px;
    text-align: start;
  }
  .key__img {
    margin-bottom: 25px;
    border-radius: 30px;
  }
  .key__img > img {
    -o-object-fit: contain;
       object-fit: contain;
    width: 100%;
    height: 100%;
    border-radius: 30px;
  }
  .key__title {
    padding-top: 60px;
    text-align: center;
  }
  .key__title .sub-title {
    margin-bottom: 55px;
  }
  .high__item {
    position: relative;
    margin-bottom: 50px;
  }
  .high__content {
    position: relative;
  }
  .high__house {
    position: absolute;
    top: -20%;
    right: -9%;
    z-index: -1;
  }
  .high__htitle {
    font-size: 20px;
    font-weight: bold;
    margin-top: 14px;
    margin-bottom: 30px;
    color: #333333;
  }
  .high__day {
    font-size: 14px;
    color: #06993f;
    font-weight: bold;
    padding: 5px;
    border: 1px solid #535353;
    border-radius: 10px;
    width: 155px;
    margin: 0 auto;
  }
  .high__text {
    margin-bottom: 30px;
    font-size: 22px;
    text-align: start;
  }
  .high__img {
    margin-bottom: 25px;
    height: 430px;
  }
  .high__img > img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 30px;
  }
  .high__title {
    padding-top: 60px;
    text-align: center;
    margin-bottom: 40px;
  }
  .high__title .sub-title {
    margin-bottom: 100px;
  }
  .high__btn {
    text-align: center;
  }
  .high #high__content750 {
    display: none;
  }
  .survice {
    margin-bottom: 80px;
  }
  .survice .pc {
    display: block !important;
  }
  .survice .sp {
    display: none !important;
  }


/*結合1つ目*/
  .survice__inner {
    position: relative;
}
.survice__inner::before {
  content: "";
  position: absolute;
  bottom: -10%;
  left: 0;
  width: 97%;
  height: 110%;
  background-color: #fcfbf8;
  z-index: -1;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
}

/*結合2つ目*/
  .survice__item {
    position: relative;
    margin-bottom: 90px;
  }
.survice__htitle {
  position: absolute;
  top: 46%;
  left: 21%;
  z-index: 10;
  transform: translate(-50%, -50%);
  font-size: 17px;
  font-weight: bold;
  color: #333333;
}

/*結合3つ目*/
  .survice #htitle2 {
    left: 24%;
}

/*結合4つ目*/
  .survice #htitle2 {
    left: 24%;
}

/*結合5つ目*/
  .survice__day {
    position: absolute;
    top: 24%;
    left: 24.5%;
    transform: translate(-50%, -50%);
    z-index: 10;
    font-size: 14px;
    color: #06993f;
    font-weight: bold;
    padding: 5px;
    border: 1px solid #535353;
    border-radius: 10px;
    width: 148px;
    margin: 0 auto;
    text-align: center;
  }

/*結合6つ目*/
  .survice #dayy {
    width: 153px;
  }

/*結合7つ目*/
  .survice__button {
    position: absolute;
    top: 72%;
    left: 25%;
    transform: translate(-50%, -50%);
    z-index: 10;
    display: inline-block;
  }

/*結合8つ目*/
  .survice__text {
    margin-bottom: 30px;
    font-size: 16px;
  }

/*結合9つ目*/
  .survice__img {
    position: relative;
    margin-bottom: 13px;
    z-index: -1;
  }
  .survice__img::after {
    content: "";
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    height: 100%;
    width: 50%;
    background-color: white;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
  }
  .survice__img > img {
    -o-object-fit: contain;
       object-fit: contain;
    width: 100%;
    height: 100%;
    border-radius: 30px;
  }

/*結合10つ目*/
  .survice__title {
    padding-top: 60px;
    margin-bottom: 55px;
    text-align: center;
  }

/*結合11つ目*/
  .survice button {
    font-size: 11px;
  }

/*結合12つ目*/
  /*.medium {
    margin-bottom: 60px;
    background-image: url("../images/medium背景.png");
    padding-bottom: 50px;
    
  }

/*結合13つ目*/
  .medium__htitle {
    font-size: 20px;
    margin-bottom: 13px;
  }

/*結合14つ目*/
  .medium__day {
    margin-bottom: 12px;
    font-size: 16px;
    letter-spacing: 0.1em;
  }

/*結合15つ目*/
  .medium__text {
    margin-bottom: 50px;
    font-size: 18px;
  }

/*結合16つ目*/
  .medium__img {
    margin-bottom: 25px;
  }
  .medium__img > img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 30px;
  }

/*結合17つ目*/
  .medium__title {
    padding-top: 60px;
    margin-bottom: 55px;
    text-align: center;
    color: white;
  }
  .medium__title .sub-title {
    color: white;
  }

/*結合18つ目*/
  .medium__container {
    margin-bottom: 40px;
    color: white;
  }

/*結合19つ目*/
  .medium__btn {
    text-align: center;
  }

/*結合20つ目*/
  .medium #white {
    display: none;
    color: #06993f;
    background: linear-gradient(to right, white, white);
    background: -webkit-linear-gradient(left, white, white);
  }

/*結合21つ目*/
  .medium #whitesp {
    color: #06993f;
    background: linear-gradient(to right, white, white);
    background: -webkit-linear-gradient(left, white, white);
    padding: 17px 60px;
    border-radius: 45px;
  }
  .medium #whitesp span {
    display: inline-block;
  }

/*結合22つ目*/
  .medium__bord {
    position: absolute;
    top: 50%;
    left: 90%;
    transform: translate(-50%, -50%);
  }

/*結合23つ目*/
  .news {
    margin-bottom: 40px;
  }
  .news__title {
    margin-bottom: 65px;
    text-align: center;
  }
  .news__table {
    width: 100%;
    margin-bottom: 50px;
  }
  .news__table #topnews {
    background-color: #f9f7f0;
  }
  .news__table tr {
    display: flex;
    flex-direction: column;
    background-color: white;
    border-bottom: 1px solid #f1edde;
  }
  .news__table tr th {
    padding-top: 40px;
    margin-bottom: 20px;
    font-size: 14px;
   /* color: #06993f;*/
    letter-spacing: 0.1em;
  }
  .news__table tr td {
    padding-bottom: 40px;
    font-size: 16px;
  }
  .news__table tr th, .news__table tr td {
    padding-left: 40px;
    padding-right: 40px;
  }

/*結合24つ目*/
  .trouble {
    padding-bottom: 80px;
    background-color: #fcfbf8;
    padding-top: 40px;
  }
  .trouble__btn {
    text-align: center;
  }
  .trouble__title {
    margin-bottom: 65px;
    text-align: center;
  }
  .trouble__table {
    width: 100%;
    margin-bottom: 50px;
  }
  .trouble__table #toptrouble {
    background-color: #f9f7f0;
  }
  .trouble__table tr {
    display: flex;
    flex-direction: column;
    background-color: white;
    border-bottom: 1px solid #f1edde;
  }
  .trouble__table tr th {
    padding-top: 40px;
    margin-bottom: 20px;
    font-size: 14px;
    /*color: #06993f;*/
    letter-spacing: 0.1em;
  }
  .trouble__table tr td {
    padding-bottom: 40px;
    font-size: 16px;
  }
  .trouble__table tr th, .trouble__table tr td {
    padding-left: 40px;
  
    padding-right: 40px;
  }
  .trouble #busp {
    padding: 17px 80px;
    border-radius: 45px;
    font-size: 12px;
  }
  .trouble #busp span {
    display: inline-block;
  }
  .trouble__bord {
    position: absolute;
    top: 50%;
    left: 90%;
    transform: translate(-50%, -50%);
  }
  .trouble #bupc {
    display: none;
  }

/*結合25つ目*/
  .appoint {
    color: white;
    text-align: center;
    background-image: url("../images/お問い合わせ背景.png");
    padding-bottom: 100px;
    margin-bottom: 40px;
  }

/*結合26つ目*/
  .appoint__title {
    padding-top: 80px;
    text-align: center;
  }

/*結合27つ目*/
  .appoint .sub-title {
    margin-bottom: 40px;
    color: white;
  }

/*結合28つ目*/
  .appoint__text {
    text-align: center;
    margin-bottom: 40px;
    font-size: 18px;
  }

/*結合29つ目*/
  .appoint__nav {
    display: flex;
   /* flex-direction: column;*/
    justify-content: space-between;
    align-items: center;
    text-align: center;
  }

/*結合30つ目*/
  .appoint__item {
    letter-spacing: 0.1em;
    margin-bottom: 30px;
  }
  .appoint__item h2 {
    margin-bottom: 0;
  }
  .appoint__item:nth-child(1) {
    border-bottom: black dotted 1px;
  }

/*結合31つ目*/
  .appoint__for {
    font-size: 16px;
    color: white;
    text-decoration-line: underline;
    letter-spacing: 0.1em;
  }
  .appoint__for:hover {
    color: #06993f;
  }

/*結合32つ目*/
  .appoint__res {
    margin-bottom: 0;
    padding-top: 10px;
  }

/*結合33つ目*/
  .appoint #form {
    font-size: 15px;
    padding: 25px;
    padding-right: 10px;
    padding-left: 3px;
    letter-spacing: 0.1em;
    border-radius: 70px;
  }

/*結合34つ目*/
  #appoint__none {
    display: none;
    background-color: white;
    color: black;
    border-radius: 30px;
    letter-spacing: 0.1em;
    padding: 10px 10%;
    vertical-align: bottom;
  }
  #appoint__none h2 {
    vertical-align: bottom;
    font-size: 30px;
  }
  #appoint__none span {
    font-size: 18px;
  }

/*結合35つ目*/
  .footer__inner {
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }
  .footer__ul {
    display: none;
    padding: 0;
    margin: 0;
    list-style: none;
  }
  .footer__li {
    margin-left: 18px;
    font-size: 13px;
    font-weight: bold;
  }
  .footer__li:hover > a {
    color: #06993f;
  }
  .footer__li > a {
    color: #333333;
    text-decoration: none !important;
    text-transform: uppercase;
  }
  .footer__ull {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
  }
  .footer__lii {
    font-size: 14px;
    margin-right: 20px;
    padding-left: 3px;
    margin-bottom: 22px;
    letter-spacing: 1px;
    font-weight: bold;
  }
  .footer__lii:last-child {
    margin-bottom: 0;
  }
  .footer__lii:hover > a {
    color: #06993f;
  }
  .footer__lii > a {
    color: #333333;
    text-decoration: none !important;
    text-transform: uppercase;
  }
  .footer__img {
    margin-bottom: 30px;
  }
  .footer__infor {
    display: none;
    font-size: 12px;
  }
  .footer__tona {
    margin-bottom: 0;
  }
  .footer__last {
    font-size: 12px;
    text-align: center;
    color: #CCCCCC;
  }
  .footer__last span {
    margin-left: 3px;
  }

/*結合36つ目：結合完了*/
  .logo {
    font-size: 300px;
    display: flex;
    justify-content: start;
    text-align: center;
  }
  .logo__img {
    width: 0.75em;
  }
  .logo p {
    font-size: 12px;
    display: none;
  }
}
/*# sourceMappingURL=style.css.map */


/*@media only screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 960px), only screen and (min-resolution: 192dpi) and (max-width: 960px)：総数3件：結合済み*/
@media only screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 960px), only screen and (min-resolution: 192dpi) and (max-width: 960px) {
  .survice .pc {
    display: none !important;
  }
  .survice .sp {
    display: block !important;
  }
}

/*結合1つ目*/
 /*  .medium {
   background-image: url("../images/medium背景sp版.png");
  }*/

/*結合2つ目：結合完了*/
/*
  .appoint {
    background-image: url("../images/appoint背景sp.png");
  }
  */



