@keyframes bottom_to_top {
  0% {
    transform: translate3d(0, 3vw, 0);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.bottom_to_top {
  opacity: 0;
  transform: translate3d(0, 50px, 0) scaleY(1);
  transform-origin: top;
}

.bottom_to_top.active {
  animation: bottom_to_top 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) 0.1s forwards;
}

@keyframes bottom_to_top {
  0% {
    opacity: 0;
    transform: translate3d(0, 50px, 0) scaleY(1);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scaleY(1);
  }
}
.bottom_to_tops > * {
  opacity: 0;
}

.bottom_to_tops.active > * {
  animation: bottom_to_top 0.6s cubic-bezier(0.4, 0.26, 0.15, 0.99) forwards;
}
.bottom_to_tops.active > *:nth-child(2) {
  animation-delay: 0.2s;
}
.bottom_to_tops.active > *:nth-child(3) {
  animation-delay: 0.4s;
}
.bottom_to_tops.active > *:nth-child(4) {
  animation-delay: 0.6s;
}
.bottom_to_tops.active > *:nth-child(5) {
  animation-delay: 0.7s;
}
.bottom_to_tops.active > *:nth-child(6) {
  animation-delay: 0.8s;
}
.bottom_to_tops.active > *:nth-child(7) {
  animation-delay: 0.9s;
}
.bottom_to_tops.active > *:nth-child(8) {
  animation-delay: 1s;
}
.bottom_to_tops.active > *:nth-child(9) {
  animation-delay: 1.1s;
}
.bottom_to_tops.active > *:nth-child(10) {
  animation-delay: 1.2s;
}

@keyframes left_to_right {
  0% {
    transform: translate3d(-3vw, 0, 0);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.left_to_right {
  opacity: 0;
}

.left_to_right.active {
  animation: left_to_right 0.6s cubic-bezier(0.4, 0.26, 0.15, 0.99) forwards;
}

@keyframes right_to_left {
  0% {
    transform: translate3d(3vw, 0, 0);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.right_to_left {
  opacity: 0;
}

.right_to_left.active {
  animation: right_to_left 0.6s cubic-bezier(0.4, 0.26, 0.15, 0.99) forwards;
}

@keyframes top_to_bottom {
  0% {
    transform: translate3d(0, -3vw, 0);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.top_to_bottom {
  opacity: 0;
}

.top_to_bottom.active {
  animation: top_to_bottom 0.6s cubic-bezier(0.4, 0.26, 0.15, 0.99) forwards;
}

.bg_black_amin {
  overflow: hidden;
  position: relative;
}

.bg_black_amin:before {
  background: #019798;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  transform: translateX(-100%);
  transition: all 0.8s 0s ease;
  width: 100%;
  z-index: 1;
}

.bg_black_amin img {
  opacity: 0;
  transition: all 0.8s 0s ease;
}

.bg_black_amin.active img {
  opacity: 1;
  transition: all 0.5s 0.3s ease;
}

.bg_black_amin.active:before {
  transform: translateX(100%);
}

.show_text {
  position: relative;
  transition: -webkit-clip-path 2s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  transition: clip-path 2s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  transition: clip-path 2s cubic-bezier(0.19, 1, 0.22, 1) 0s, -webkit-clip-path 2s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  -webkit-clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
          clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}

.show_text.active {
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  transition-delay: 0.3s;
}

.role_to {
  opacity: 0;
  transform: rotate(10deg);
  transition: all 0.8s 0s ease;
}

.role_to.active {
  opacity: 1;
  transform: rotate(0deg);
}

.big_to {
  opacity: 0;
  transform: scale(1.1);
  transition: all 0.8s 0s ease;
}
.big_to.active {
  opacity: 1;
  transform: scale(1);
}

.fadeIn {
  opacity: 0;
  transition: all 0.8s 0s ease;
  transition-delay: 0.3s;
}
.fadeIn.active {
  opacity: 1;
}

html {
  scroll-behavior: smooth;
}

html, body {
  font-family: "Noto Sans JP", sans-serif;
  margin: 0;
  padding: 0;
  font-feature-settings: "palt" 1;
  font-size: 20px;
  line-height: 1.7;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 1000px) {
  html, body {
    font-size: 1.5vw;
  }
}
@media screen and (max-width: 880px) {
  html, body {
    font-size: 3.4vw;
  }
}
img {
  vertical-align: bottom;
  width: 100%;
}

main {
  position: relative;
  width: 100%;
  overflow: hidden;
}

figure {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
  color: #000;
}

p {
  margin: 0;
}

h1, h2, h3 {
  margin: 0;
}

.rwd_show {
  display: none;
}

@media screen and (max-width: 600px) {
  .rwd_hide {
    display: none;
  }
  .rwd_show {
    display: inline;
  }
}
.wrap {
  width: 1080px;
  padding: 0 5vw;
  margin: 0 auto;
}

@media screen and (max-width: 1000px) {
  .wrap {
    width: auto;
  }
}
.swiper-slide img {
  height: auto;
  width: 100%;
}

.sb {
  padding: 4.5rem 0;
}
.sb .wrap {
  position: relative;
}
.sb .sbh h2 {
  text-align: center;
  font-size: 1.5rem;
  position: relative;
  padding: 1rem 0;
  line-height: 1.5;
  border-top: 1px solid #f99a00;
  border-bottom: 1px solid #f99a00;
  margin-bottom: 3rem;
}
.sb .sbh h2:before {
  content: "";
  background-image: url(../img/sb1.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: auto calc(100% - 0.25rem);
  display: block;
  border-bottom: 0.25rem solid #f99a00;
  width: 12.5rem;
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  height: 1.3rem;
  margin: auto;
}
.sb .sbh h2 > span:before {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  position: absolute;
  left: 0;
  top: -0.525rem;
  background-color: #f99a00;
  border-radius: 100%;
}
.sb .sbh h2 > span:after {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  position: absolute;
  right: 0;
  top: -0.525rem;
  background-color: #f99a00;
  border-radius: 100%;
}
.sb .sbh h2 > span > span:before {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  position: absolute;
  left: 0;
  bottom: -0.525rem;
  background-color: #f99a00;
  border-radius: 100%;
}
.sb .sbh h2 > span > span:after {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  position: absolute;
  right: 0;
  bottom: -0.525rem;
  background-color: #f99a00;
  border-radius: 100%;
}
.sb .sbh p {
  font-size: 1rem;
  text-align: center;
  margin-bottom: 4rem;
  font-weight: 600;
}
.sb .sb_ul2 {
  display: flex;
  gap: 1rem;
  row-gap: 0.5rem;
  flex-wrap: wrap;
}
.sb .sb_ul2 li {
  flex: 0 1 calc((100% - 1rem) / 2);
  border-radius: 100px;
  background-color: #f99a00;
  color: #fff;
  padding: 0.5rem 0;
  text-align: center;
  font-weight: 600;
}
.sb .sb_col2 {
  display: flex;
}
.sb .sb_col2 > * {
  flex: 1;
}
.sb .sb_col2G {
  gap: 1rem;
}

@media screen and (max-width: 880px) {
  .sb .sb_ul2 {
    flex-direction: column;
  }
  .sb .sbh h2:before {
    height: 2rem;
  }
}
.sb.sbTokucho .sbh h2 {
  border-color: #016e49;
}
.sb.sbTokucho .sbh h2:before {
  background-image: url(../img/sb2.png);
  border-color: #016e49;
}
.sb.sbTokucho .sbh h2 > span:before, .sb.sbTokucho .sbh h2 > span:after {
  background-color: #016e49;
}
.sb.sbTokucho .sbh h2 > span > span:before, .sb.sbTokucho .sbh h2 > span > span:after {
  background-color: #016e49;
}

@media screen and (max-width: 880px) {
  .sbTokucho.sb .sb_ul2 li {
    flex-direction: column;
  }
}
.sb.sbCost .sbh h2 {
  border-color: #01a2e9;
}
.sb.sbCost .sbh h2:before {
  background-image: url(../img/sb3.png);
  border-color: #01a2e9;
}
.sb.sbCost .sbh h2 > span:before, .sb.sbCost .sbh h2 > span:after {
  background-color: #01a2e9;
}
.sb.sbCost .sbh h2 > span > span:before, .sb.sbCost .sbh h2 > span > span:after {
  background-color: #01a2e9;
}

.sb.sbPlan {
  padding-bottom: 0;
}
.sb.sbPlan .sbh h2 {
  border-color: #6dad19;
}
.sb.sbPlan .sbh h2:before {
  background-image: url(../img/sb4.png);
  border-color: #6dad19;
}
.sb.sbPlan .sbh h2 > span:before, .sb.sbPlan .sbh h2 > span:after {
  background-color: #6dad19;
}
.sb.sbPlan .sbh h2 > span > span:before, .sb.sbPlan .sbh h2 > span > span:after {
  background-color: #6dad19;
}

.sb.sbRseason .sbh h2 {
  border-color: #003288;
}
.sb.sbRseason .sbh h2:before {
  background-image: url(../img/sb5.png);
  border-color: #003288;
}
.sb.sbRseason .sbh h2 > span:before, .sb.sbRseason .sbh h2 > span:after {
  background-color: #003288;
}
.sb.sbRseason .sbh h2 > span > span:before, .sb.sbRseason .sbh h2 > span > span:after {
  background-color: #003288;
}

@media screen and (max-width: 880px) {
  .sbRseason .sbc ul {
    flex-wrap: wrap;
    flex-direction: column;
  }
}
.sb.sbQA .sbh h2 {
  border-color: #01a2e9;
}
.sb.sbQA .sbh h2:before {
  background-image: url(../img/sb6.png);
  border-color: #01a2e9;
}
.sb.sbQA .sbh h2 > span:before, .sb.sbQA .sbh h2 > span:after {
  background-color: #01a2e9;
}
.sb.sbQA .sbh h2 > span > span:before, .sb.sbQA .sbh h2 > span > span:after {
  background-color: #01a2e9;
}

@media screen and (max-width: 880px) {
  .sbQA .sbc ul {
    flex-direction: column;
  }
}
.sb.sbInfo .sbh h2 {
  border-color: #003288;
}
.sb.sbInfo .sbh h2:before {
  background-image: url(../img/sb8.png);
  border-color: #003288;
}
.sb.sbInfo .sbh h2 > span:before, .sb.sbInfo .sbh h2 > span:after {
  background-color: #003288;
}
.sb.sbInfo .sbh h2 > span > span:before, .sb.sbInfo .sbh h2 > span > span:after {
  background-color: #003288;
}

.sb.sbForm .sbh h2 {
  border-color: #019798;
}
.sb.sbForm .sbh h2:before {
  background-image: url(../img/sb9.png);
  border-color: #019798;
}
.sb.sbForm .sbh h2 > span:before, .sb.sbForm .sbh h2 > span:after {
  background-color: #019798;
}
.sb.sbForm .sbh h2 > span > span:before, .sb.sbForm .sbh h2 > span > span:after {
  background-color: #019798;
}

.site_header {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.site_header h1 {
  flex: 0 1 17.44rem;
  padding: 0.5rem 2rem;
  padding-left: 1rem;
}
.site_header h1 a {
  align-items: center;
  display: flex;
}
.site_header .site_nav {
  flex: 0 1 100%;
}
.site_header .site_nav ul {
  justify-content: center;
  display: flex;
  gap: 2em;
}
.site_header .site_nav ul li a {
  display: block;
  padding: 0.5rem 0;
  transition: all ease 0.3s;
}
.site_header .site_nav ul li a:hover {
  opacity: 0.7;
}
.site_header .contact_nav {
  position: absolute;
  right: 0;
  top: 0;
}
.site_header .contact_nav ul {
  display: flex;
  gap: 0.5rem;
}
.site_header .contact_nav ul li a {
  display: block;
  height: 100%;
  font-size: 1rem;
  box-sizing: border-box;
  color: #fff;
  font-weight: 600;
  padding: 0.5rem 1.15rem;
  display: flex;
  align-items: center;
}
.site_header .contact_nav ul li a.icon_insta {
  padding: 0 0.5rem;
  transition: all ease 0.3s;
}
.site_header .contact_nav ul li a.icon_insta img {
  width: 2.5rem;
}
.site_header .contact_nav ul li a.icon_insta:hover {
  transform: scale(1.1);
}
.site_header .contact_nav ul li a.icon_tel {
  background-color: #309f2d;
  transition: all ease 0.3s;
}
.site_header .contact_nav ul li a.icon_tel img {
  width: 2rem;
}
.site_header .contact_nav ul li a.icon_tel:hover {
  opacity: 0.7;
}
.site_header .contact_nav ul li a.icon_line {
  background-color: #3ad100;
  transition: all ease 0.3s;
}
.site_header .contact_nav ul li a.icon_line img {
  width: 2.5rem;
}
.site_header .contact_nav ul li a.icon_line:hover {
  opacity: 0.7;
}
.site_header .sp_nav {
  display: none;
}

@media screen and (max-width: 880px) {
  .site_header .site_nav {
    display: none;
  }
  .site_header h1 {
    flex: 0 1 11.44rem;
  }
  .site_header .contact_nav ul {
    gap: 0;
  }
  .site_header .contact_nav ul li a {
    padding: 0.5rem 0.5rem;
  }
  .site_header .sp_nav {
    display: block;
    z-index: 100;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    top: auto;
  }
  .site_header .sp_nav ul {
    display: flex;
  }
  .site_header .sp_nav ul li {
    flex: 1;
  }
  .site_header .sp_nav ul li a {
    height: 100%;
    box-sizing: border-box;
    padding: 0.3rem 0;
    color: #fff;
    display: none;
    display: block;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 2.3rem;
    position: relative;
    font-weight: 600;
  }
  .site_header .sp_nav ul li a img {
    position: absolute;
    top: 1rem;
    left: 0;
    right: 0;
    margin: auto;
  }
  .site_header .sp_nav ul li .icon_line {
    background-color: #39d100;
  }
  .site_header .sp_nav ul li .icon_line img {
    top: 0.6rem;
    width: 2.5rem;
  }
  .site_header .sp_nav ul li .icon_tel {
    background-color: #6dad19;
  }
  .site_header .sp_nav ul li .icon_tel img {
    top: 0.5rem;
    width: 1.7rem;
  }
  .site_header .sp_nav ul li .icon_mail {
    background-color: #016e48;
  }
  .site_header .sp_nav ul li .icon_mail img {
    top: 0.8rem;
    width: 1.7rem;
  }
}
.sbKomari {
  background-color: #fffef0;
}

.sbTokucho .beforeafter {
  margin-bottom: 4.35rem;
}
.sbTokucho .tokucho_top {
  text-align: center;
  font-weight: 600;
  margin-bottom: 1.85rem;
}
.sbTokucho .tokucho_top .sb_col2 {
  gap: 1rem;
  margin-bottom: 1.85rem;
}
.sbTokucho .tokucho_bottom ol {
  display: flex;
  gap: 0.9rem;
  row-gap: 3.25rem;
  flex-wrap: wrap;
}
.sbTokucho .tokucho_bottom ol li {
  border: 0.15rem solid #016e49;
  border-top: 0;
  flex: 0 1 calc((100% - 1.8rem) / 3);
  box-sizing: border-box;
}
.sbTokucho .tokucho_bottom ol li > div {
  position: relative;
}
.sbTokucho .tokucho_bottom ol li > div > span {
  display: block;
  width: 3.85rem;
  height: 3.85rem;
  border-radius: 100%;
  border: solid 0.15rem #016e49;
  color: #016e49;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  position: absolute;
  top: -1.925rem;
  left: 0;
  right: 0;
  margin: auto;
  line-height: 1;
  font-size: 1.5rem;
  background-color: #fff;
  z-index: 2;
}
.sbTokucho .tokucho_bottom ol li > div p {
  text-align: center;
  font-weight: 600;
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  right: 0;
}
.sbTokucho .tokucho_bottom ol li > div h3 {
  font-size: 1.25rem;
  color: #fff;
  background-color: #016e49;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 600;
  padding-top: 2rem;
  padding-bottom: 0.3rem;
}
.sbTokucho .tokucho_bottom ol li > div figure {
  width: 5.8rem;
  padding: 1rem;
  margin: 0 auto;
}
.sbTokucho .tokucho_bottom ol li:last-child > div p {
  line-height: 1;
}
.sbTokucho .tokucho_bottom ol li:last-child > div figure {
  margin-top: -0.5rem;
  width: 4.85rem;
}

@media screen and (max-width: 880px) {
  .sbTokucho .tokucho_top .sb_col2 {
    flex-direction: column;
  }
  .sbTokucho .tokucho_mid {
    flex-direction: column;
  }
  .sbTokucho .tokucho_bottom ol li {
    flex: 0 1 calc((100% - 0.9rem) / 2);
  }
  .sbTokucho .tokucho_bottom ol li > div h3 {
    line-height: 1.5;
    padding-bottom: 0.5rem;
    padding-top: 2.3rem;
  }
  .sbTokucho .tokucho_bottom ol li > div figure {
    width: 7.8rem;
  }
  .sbTokucho .tokucho_bottom ol li:last-child > div p {
    bottom: -1.7rem;
  }
  .sbTokucho .tokucho_bottom ol li:last-child > div figure {
    margin-top: 0rem;
    width: 5rem;
  }
}
.sbCost {
  background-color: #fffef0;
}
.sbCost .sb_ul2 {
  margin-bottom: 2.5rem;
}
.sbCost .sb_ul2 li {
  background-color: #fff;
  border: 0.15rem solid #01a2e9;
  border-radius: 0;
  color: #000;
  box-sizing: border-box;
}
.sbCost .sbCost_in {
  background-color: #fff;
  border: 0.15rem solid #01a2e9;
  padding: 1.85rem 1.4rem;
}
.sbCost .sbCost_in h3 {
  text-align: center;
  font-size: 1.25rem;
  margin-bottom: 2rem;
}
.sbCost .sbCost_in h3 span {
  color: #01a2e9;
  display: block;
}
.sbCost .sbCost_in > p {
  text-align: center;
  font-weight: 600;
  color: #f99900;
  font-weight: 600;
}
.sbCost .sbCost_in ul {
  margin-bottom: 1.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.sbCost .sbCost_in ul li {
  flex: 0 1 calc((100% - 3rem) / 4);
}
.sbCost .sbCost_in ul li h4 {
  color: #fff;
  font-weight: 600;
  text-align: center;
  background-color: #f99900;
  margin: 0;
  padding: 0.25rem 0;
}
.sbCost .sbCost_in ul li > div {
  position: relative;
}
.sbCost .sbCost_in ul li > div p {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 100%;
  height: 3.6rem;
  line-height: 1.5;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-weight: 600;
  text-align: center;
  bottom: 0;
  left: 0;
}

@media screen and (max-width: 880px) {
  .sbCost .sbCost_in ul li {
    flex: 0 1 calc((100% - 1rem) / 2);
  }
}
.sbPlan .sbPlan_item {
  background-color: rgba(109, 173, 25, 0.1019607843);
  padding: 3.9rem 0;
  padding-bottom: 1.5rem;
  margin-bottom: 1rem;
}
.sbPlan .sbPlan_item:last-child {
  margin-bottom: 0;
}
.sbPlan .sbPlan_item .plice {
  font-weight: 600;
  background-color: #578915;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  padding: 0.5rem;
  margin-bottom: 0.8rem;
}
.sbPlan .sbPlan_item .plice b {
  font-size: 1.25rem;
}
.sbPlan .sbPlan_item small {
  font-size: 0.9rem;
  font-weight: normal;
}
.sbPlan .sbPlan_item .sb_col2 {
  margin-bottom: 0.85rem;
  gap: 1.5rem;
}
.sbPlan .sbPlan_item .sb_col2 > * {
  padding: 1.75rem 1.4rem;
  box-sizing: border-box;
  background-color: #fff;
  border: solid 0.15rem #578916;
}
.sbPlan .sbPlan_item .sb_col2 > *:nth-child(1) {
  font-size: 1.25rem;
  color: #37590e;
  font-weight: 600;
}
.sbPlan .sbPlan_item .sb_col2 > *:nth-child(1) b {
  display: block;
  color: #000;
  margin-bottom: 1rem;
}
.sbPlan .sbPlan_item .sb_col2 > *:nth-child(2) {
  position: relative;
}
.sbPlan .sbPlan_item .sb_col2 > *:nth-child(2) ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  row-gap: 2rem;
}
.sbPlan .sbPlan_item .sb_col2 > *:nth-child(2) ul li {
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
}
.sbPlan .sbPlan_item .sb_col2 > *:nth-child(2) ul li figure {
  height: 3rem;
}
.sbPlan .sbPlan_item .sb_col2 > *:nth-child(2) ul li figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.sbPlan .sbPlan_item .sb_col2 > *:nth-child(2) ul li:last-child {
  text-align: left;
}
.sbPlan .sbPlan_item .sb_col2 > *:nth-child(2) > figure {
  position: absolute;
  bottom: 1.4rem;
  right: 1.5rem;
}
.sbPlan .sbPlan_item:nth-child(1) .sb_col2 > * {
  padding-bottom: 1rem;
}
.sbPlan .sbPlan_item:nth-child(1) .sb_col2 > * > figure {
  width: 8.95rem;
}
.sbPlan .sbPlan_item:nth-child(2) .sb_col2 > * {
  padding-bottom: 3rem;
}
.sbPlan .sbPlan_item:nth-child(2) .sb_col2 > * > figure {
  width: 11.7rem;
  bottom: 1.1rem;
  right: 1.05rem;
}
.sbPlan .sbPlan_item:nth-child(3) .sb_col2 > * {
  padding-bottom: 5rem;
}
.sbPlan .sbPlan_item:nth-child(3) .sb_col2 > * ul {
  justify-content: flex-start;
}
.sbPlan .sbPlan_item:nth-child(3) .sb_col2 > * ul li figure {
  height: 6rem;
}
.sbPlan .sbPlan_item:nth-child(3) .sb_col2 > * ul li:last-child figure {
  height: 3rem;
  margin-left: 0;
  margin-right: auto;
}
.sbPlan .sbPlan_item:nth-child(3) .sb_col2 > * > figure {
  width: 11.7rem;
  bottom: 1.1rem;
  right: 1.05rem;
}
.sbPlan h3 {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
}
.sbPlan h3 span {
  display: block;
  font-size: 1.25rem;
}

@media screen and (max-width: 880px) {
  .sbPlan .sbPlan_item .sb_col2 {
    flex-direction: column;
  }
  .sbPlan .sbPlan_item .sb_col2 > *:nth-child(2) ul li figure {
    height: 4.5rem;
  }
  .sbPlan .sbPlan_item:nth-child(1) .sb_col2 > * {
    padding-bottom: 2rem;
  }
  .sbPlan .sbPlan_item:nth-child(2) .sb_col2 > *:nth-child(1) {
    padding-bottom: 2rem;
  }
  .sbPlan .sbPlan_item:nth-child(2) .sb_col2 > *:nth-child(2) {
    padding-bottom: 11rem;
  }
  .sbPlan .sbPlan_item:nth-child(1) .sb_col2 > *:nth-child(2) {
    padding-bottom: 5rem;
  }
  .sbPlan .sbPlan_item:nth-child(1) .sb_col2 > * > figure {
    width: 9.95rem;
  }
  .sbPlan .sbPlan_item:nth-child(3) .sb_col2 > *:nth-child(1) {
    padding-bottom: 2rem;
  }
  .sbPlan .sbPlan_item:nth-child(3) .sb_col2 > *:nth-child(2) {
    padding-bottom: 6rem;
  }
  .sbPlan .sbPlan_item:nth-child(3) .sb_col2 > * ul li:last-child figure {
    height: auto;
  }
  .sbPlan .sbPlan_item .sb_col2 > *:nth-child(2) ul li figure {
    height: 6.5rem;
  }
  .sbPlan .sbPlan_item .sb_col2 > *:nth-child(2) ul li {
    flex: 0 1 calc((100% - 2.4rem) / 3);
  }
  .sbPlan .sbPlan_item .plice {
    flex-direction: column;
    gap: 0;
  }
  .sbPlan .sbPlan_item:nth-child(1) .sb_col2 > *:nth-child(2) ul li:last-child {
    flex: 0 1 calc((100% - 1.2rem) / 1.7);
  }
  .sbPlan .sbPlan_item:nth-child(3) .sb_col2 > *:nth-child(2) ul li:last-child {
    flex: 0 1 calc((100% - 1.2rem) / 1.7);
  }
}
.sbRseason .sbc ul {
  display: flex;
  gap: 0.925rem;
}
.sbRseason .sbc ul li {
  border: 0.15rem solid #003288;
}
.sbRseason .sbc ul li figure figcaption {
  text-align: center;
  font-weight: 600;
  display: block;
  padding: 0.75rem 0;
}

.sbQA .sbc ul {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  row-gap: 2.85rem;
}
.sbQA .sbc ul li {
  flex: 0 1 calc((100% - 4rem) / 2);
}
.sbQA .sbc ul li h3 {
  color: #01a2e9;
  border-bottom: 1px solid #01a2e9;
}
.sbVoice {
  background-color: #fffef0;
}
.sbVoice .sbc ul {
  display: flex;
  flex-wrap: wrap;
  row-gap: 2.7rem;
}
.sbVoice .sbc ul li {
  flex: 0 1 50%;
}
.sbVoice .sbc ul li > div {
  align-items: center;
  display: flex;
  gap: 1rem;
}
.sbVoice .sbc ul li > div figure {
  flex: 0 1 3.85rem;
}
.sbVoice .sbc ul li > div > p {
  flex: 1;
  font-weight: 600;
}

@media screen and (max-width: 880px) {
  .sbVoice .sbc ul {
    flex-direction: column;
  }
}
.sbInfo .sbc ul li {
  padding: 1.5rem 0;
  border-bottom: 1px solid #bfbfbf;
}
.sbInfo .sbc ul li > div {
  display: flex;
  gap: 2.5rem;
}
.sbInfo .sbc ul li > div figure {
  flex: 0 1 15rem;
  padding: 0.7rem 0;
  text-align: center;
  background-color: #01a7b0;
}
.sbInfo .sbc ul li > div figure img {
  margin: 0 auto;
  width: 9.5rem;
}
.sbInfo .sbc ul li > div > div {
  flex: 1;
}
.sbInfo .sbc ul li > div > div h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

@media screen and (max-width: 880px) {
  .sbInfo .sbc ul li > div {
    flex-direction: column;
  }
}
.sbForm {
  background-color: #fffef0;
}
.sbForm .wrap {
  width: 40.35rem;
}
.sbForm .wrap input[type=text], .sbForm .wrap textarea {
  font-size: 100%;
  padding: 0.3em;
  width: 100%;
  box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
}
.sbForm .wrap textarea {
  height: 15rem;
}
.sbForm .wrap .cline {
  display: flex;
  margin-bottom: 1.3rem;
}
.sbForm .wrap .cline > p {
  flex: 0 1 10em;
  font-weight: bold;
}
.sbForm .wrap .cline > div {
  flex: 1;
}
.sbForm .wrap .texts {
  background-color: #fff;
  padding: 0.5rem;
  height: 3.35rem;
  box-sizing: border-box;
  overflow-y: scroll;
  border-width: 1px;
  border-style: solid;
  border-color: light-dark(rgb(118, 118, 118), rgb(133, 133, 133));
  -o-border-image: initial;
     border-image: initial;
  font-size: 0.9rem;
}
.sbForm .wrap .checks {
  display: flex;
  gap: 1.4rem;
  row-gap: 0.3rem;
  flex-wrap: wrap;
}
.sbForm .wrap .checks label {
  cursor: pointer;
  display: flex;
}
.sbForm .wrap .checks label input {
  width: 1.45rem;
  height: 1.45rem;
  margin-right: 0.5rem;
}
.sbForm .wrap .confirms label {
  display: flex;
  cursor: pointer;
}
.sbForm .wrap .confirms label input {
  width: 1.45rem;
  height: 1.45rem;
  margin-right: 0.5rem;
}
.sbForm .buttons {
  display: flex;
  gap: 2rem;
}
.sbForm .buttons input, .sbForm .buttons button {
  border: 0;
  background-color: #019798;
  color: #fff;
  font-weight: 600;
  font-size: 1.25rem;
  padding: 0.5rem;
  border-radius: 100px;
  font-family: "Noto Sans JP", sans-serif;
  min-width: 10rem;
  transition: all ease 0.3s;
}
.sbForm .buttons input:hover, .sbForm .buttons button:hover {
  opacity: 0.8;
}
.sbForm .buttons .submit {
  min-width: 17.5rem;
  cursor: pointer;
}
.sbForm .buttons .back {
  min-width: 12.5rem;
  background-color: #307879;
  display: none;
  cursor: pointer;
}
.sbForm .buttons .send {
  min-width: 12.5rem;
  display: none;
  cursor: pointer;
}
.sbForm .buttons.active .submit {
  display: none;
}
.sbForm .buttons.active .back {
  display: block;
}
.sbForm .buttons.active .send {
  display: block;
}
.sbForm .sbForm_buttons ul {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 5.9rem;
}
.sbForm .sbForm_buttons ul li {
  flex: 1;
}
.sbForm .sbForm_buttons ul li a {
  display: block;
  text-align: center;
  color: #fff;
  border-radius: 100px;
  font-weight: 600;
  font-size: 1.25rem;
  box-shadow: 0.1rem 0.1rem 0.2rem rgba(0, 0, 0, 0.2);
  transition: all ease 0.3s;
}
.sbForm .sbForm_buttons ul li a:hover {
  opacity: 0.8;
  transform: translate3d(0.1rem, 0.1rem, 0);
  box-shadow: 0rem 0rem 0.1rem rgba(0, 0, 0, 0.1);
}
.sbForm .sbForm_buttons ul li.line a {
  background-color: #3ad100;
}
.sbForm .sbForm_buttons ul li.tel a {
  background-color: #6dad19;
}
.sbForm .sbForm_buttons ul li.form a {
  background-color: #016e49;
}
.sbForm .error {
  color: red;
  display: none;
  background-color: pink;
  font-size: 0.8rem;
  padding: 0.2rem 0.5rem;
  margin-top: 0.5rem;
  width: 100%;
  box-sizing: border-box;
}
.sbForm .error.active {
  display: block;
}
.sbForm .checks .error {
  margin-top: 0;
}
.sbForm .sended_message {
  visibility: hidden;
  opacity: 0;
  transition: all ease 0.3s;
  padding-bottom: 1.5rem;
}
.sbForm .sended_message.active {
  visibility: visible;
  opacity: 1;
  display: block;
  text-align: center;
}

@media screen and (max-width: 880px) {
  .sbForm .wrap {
    width: auto;
  }
  .sbForm .wrap .cline {
    flex-direction: column;
  }
  .sbForm .wrap .cline > p {
    flex: auto;
  }
  .sbForm .sbForm_buttons ul {
    flex-direction: column;
  }
  .sbForm .sbForm_buttons ul li a {
    padding: 0.5rem 0;
  }
}
.site_footer .footer_nav {
  background-color: #019798;
  color: #fff;
  padding: 3rem 0;
  padding-bottom: 5rem;
}
.site_footer .footer_nav h2 {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 1.4rem;
}
.site_footer .footer_nav .wrap {
  width: 40.35rem;
}
.site_footer .footer_nav .wrap > figure {
  width: 6.25rem;
  margin: 0 auto;
  margin-bottom: 1.4rem;
}
.site_footer .footer_nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 3.8rem;
  row-gap: 0.5rem;
}
.site_footer .footer_nav ul li {
  font-size: 0.8rem;
  flex: 0 1 calc((100% - 3.8rem) / 2);
  display: flex;
  border-bottom: 1px solid #fff;
}
.site_footer .footer_nav ul li > p:first-child {
  padding-left: 0.5rem;
  width: 9rem;
}
.site_footer .footer_nav ul li:last-child {
  flex: 1;
  flex: 0 1 100%;
}
.site_footer .copy {
  font-size: 0.9rem;
  padding: 0.5rem 0;
}

@media screen and (max-width: 880px) {
  .site_footer .footer_nav .wrap {
    width: auto;
  }
  .site_footer .footer_nav ul {
    flex-direction: column;
  }
  .site_footer .footer_nav ul li > p:last-child {
    flex: 1;
  }
  .sbForm .buttons {
    flex-direction: column;
  }
  .sbForm .buttons .submit {
    width: 100%;
  }
}
.sbContact {
  background-color: #019798;
  color: #fff;
  position: relative;
  padding-bottom: 2.25rem;
  padding-top: 2.25rem;
}
.sbContact:before {
  content: "";
  position: absolute;
  z-index: 1;
  background-color: rgba(255, 235, 0, 0.5019607843);
  top: 5.5rem;
  left: 0;
  width: 100%;
  height: 1.9rem;
}
.sbContact .wrap {
  position: relative;
  z-index: 2;
}
.sbContact .images {
  position: relative;
  margin-bottom: 0.5rem;
}
.sbContact .images .images_sub1 {
  width: 8rem;
  position: absolute;
  left: 5rem;
  top: 0;
}
.sbContact .images .images_sub2 {
  width: 8rem;
  position: absolute;
  right: 5rem;
  top: 0;
}
.sbContact .images .images_logo {
  width: 22.65rem;
  margin: 0 auto;
}
.sbContact .texts {
  text-align: center;
  font-weight: 600;
}
.sbContact .texts p:first-child {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}
.sbContact .texts p:nth-child(2) {
  font-size: 1.25rem;
  background-color: rgba(0, 50, 136, 0.5019607843);
  border-radius: 100px;
  width: 21rem;
  margin: 0 auto;
  margin-bottom: 0.5rem;
}
.sbContact ul {
  padding-top: 0.5rem;
  display: flex;
  gap: 0.5rem;
}
.sbContact ul li {
  flex: 1;
}
.sbContact ul li a {
  display: block;
  text-align: center;
  color: #fff;
  border-radius: 100px;
  font-weight: 600;
  font-size: 1.25rem;
  box-shadow: 0.1rem 0.1rem 0.2rem rgba(0, 0, 0, 0.2);
  transition: all ease 0.3s;
}
.sbContact ul li a:hover {
  opacity: 0.8;
  transform: translate3d(0.1rem, 0.1rem, 0);
  box-shadow: 0rem 0rem 0.1rem rgba(0, 0, 0, 0.1);
}
.sbContact ul li.line a {
  background-color: #3ad100;
}
.sbContact ul li.tel a {
  background-color: #6dad19;
}
.sbContact ul li.form a {
  background-color: #016e49;
}

@media screen and (max-width: 880px) {
  .sbContact .images {
    padding-top: 8.5rem;
  }
  .sbContact .images .images_sub1 {
    width: 7rem;
  }
  .sbContact .images .images_sub2 {
    width: 7rem;
  }
  .sbContact .images {
    margin-bottom: 1rem;
  }
  .sbContact .texts p:first-child {
    margin-bottom: 0.5rem;
  }
  .sbContact ul li a {
    padding: 0.5rem;
  }
  .sbContact nav ul {
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
  }
}/*# sourceMappingURL=style.css.map */