@charset "UTF-8";
/* アニメーションベンダープレフィックス込み指定 */
/* アニメーションベンダープレフィックス込み指定 */
body {
  color: #232323;
  background: #fefefe;
  font-family: "YakuHanJP", "Zen Maru Gothic", Lato, "筑紫A丸ゴシック", "TsukuARoundGothic-Regular", "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN W4", "HG丸ｺﾞｼｯｸM-PRO", sans-serif;
  font-size: 1.6rem;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  font-weight: 400;
  position: relative;
  letter-spacing: 0.1em;
}

a {
  color: rgb(0, 142.4892703863, 207.5);
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}

#wrapper {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

.lh_wide {
  line-height: 4.4rem;
}
@media all and (max-width: 639px) {
  .lh_wide {
    line-height: 3.2rem;
  }
}

.br20 {
  border-radius: 20px;
}

.en {
  font-family: "Quicksand", "Dosis", sans-serif;
  font-weight: 400;
  /*text-transform: uppercase;*/
}

.bold {
  font-weight: 600 !important;
}

h2,
h3 {
  line-height: 1.4;
  font-family: "YakuHanJP", "Zen Maru Gothic", Lato, "筑紫A丸ゴシック", "TsukuARoundGothic-Regular", "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN W4", "HG丸ｺﾞｼｯｸM-PRO", sans-serif;
  font-weight: 700;
}

.mincho {
  font-family: "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
}

.bigger {
  font-size: 1.8rem;
}
@media all and (max-width: 639px) {
  .bigger {
    font-size: 1.25rem;
  }
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/* animation
----------------------------------*/
@-webkit-keyframes view-zoomin {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes view-zoomin {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes view-slideup {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 35px);
            transform: translate(0, 35px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@keyframes view-slideup {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 35px);
            transform: translate(0, 35px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
.animation {
  opacity: 0;
}

.slideup.on {
  opacity: 1;
  -webkit-animation: view-slideup 0.65s cubic-bezier(0.2, 1, 0.2, 1);
          animation: view-slideup 0.65s cubic-bezier(0.2, 1, 0.2, 1);
}

.zoomin.on {
  opacity: 1;
  -webkit-animation: view-zoomin 0.65s cubic-bezier(0.2, 1, 0.2, 1);
          animation: view-zoomin 0.65s cubic-bezier(0.2, 1, 0.2, 1);
}

.loader {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fdfdfd;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9999;
}
.loader::after {
  -webkit-animation: loader 0.5s linear infinite;
          animation: loader 0.5s linear infinite;
  border: 1px solid #00A0E9;
  border-radius: 50%;
  border-right: 1px solid rgba(0, 160, 233, 0.2);
  border-top: 1px solid rgba(0, 160, 233, 0.2);
  content: "";
  height: 70px;
  width: 70px;
}
.loader.off {
  display: none;
}

@-webkit-keyframes loader {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes loader {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/* header
----------------------------------*/
@-webkit-keyframes hd-scrolled {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@keyframes hd-scrolled {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
#l-header {
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#l-header.is-fixed {
  position: fixed;
  background: rgba(255, 255, 255, 0.7);
  z-index: 200;
  top: 0;
  left: 0;
  width: 100%;
  backdrop-filter: blur(5px);
}
#l-header.is-fixed .inner #logo {
  width: 160px;
}
#l-header.is-fixed .inner .head-right_contact {
  opacity: 0;
  visibility: hidden;
}
#l-header.is-hide {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
#l-header .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 100%;
  min-width: 1000px;
  margin: 0 auto;
  padding: 15px 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media all and (max-width: 900px) {
  #l-header .inner {
    min-width: initial;
  }
}
#l-header .inner #logo {
  padding-left: 10px;
  width: 180px;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}
#l-header .head-right {
  margin-left: auto;
  margin-right: 5px;
}
@media all and (max-width: 1025px) {
  #l-header .head-right {
    display: none;
  }
}
#l-header .head-right_contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
  margin-bottom: 8px;
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
#l-header .head-right_txt {
  font-size: 12px;
  color: #777;
  max-width: 600px;
  padding-right: 20px;
  display: block;
  letter-spacing: 0;
  margin-bottom: 4px;
}
#l-header .head-right_tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#l-header .head-right_tel a,
#l-header .head-right_mail a {
  display: block;
  padding: 2px 12px;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  border-radius: 5px;
  background: #00A0E9;
  color: #fff;
  font-family: "Quicksand", "Dosis", sans-serif;
  font-weight: 400;
  /*text-transform: uppercase;*/
  font-size: 1.5rem;
  font-weight: 600;
}
#l-header .head-right_tel a:before,
#l-header .head-right_mail a:before {
  margin-right: 5px;
}
#l-header .head-right_tel a {
  background: transparent;
  padding: 0 15px;
  color: #f14453;
  background: #fefefe;
  font-size: 2.2rem;
  position: relative;
}
#l-header .head-right_tel a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f2a0";
  font-weight: 900;
  font-size: 90%;
}
#l-header .head-right_tel a:hover {
  color: #00A0E9;
}
#l-header .head-right_mail {
  margin-left: 10px;
}
#l-header .head-right_mail a {
  font-family: "YakuHanJP", "Zen Maru Gothic", Lato, "筑紫A丸ゴシック", "TsukuARoundGothic-Regular", "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN W4", "HG丸ｺﾞｼｯｸM-PRO", sans-serif;
  font-family: "YakuHanJP", "Zen Maru Gothic", Lato, "筑紫A丸ゴシック", "TsukuARoundGothic-Regular", "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN W4", "HG丸ｺﾞｼｯｸM-PRO", sans-serif;
  font-weight: 900;
  color: #fefefe;
}
#l-header .head-right_mail a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
}
#l-header .head-right_mail a:hover {
  background: #f14453;
}

#header_nav {
  width: 800px;
}
@media all and (max-width: 900px) {
  #header_nav {
    display: none;
  }
}
#header_nav {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
#header_nav ul {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  text-align: center;
}
#header_nav ul li {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}
#header_nav ul li:not(:last-child):after {
  position: absolute;
  content: "";
  width: 1px;
  height: 20px;
  top: 50%;
  right: 0;
  background: #00A0E9;
  -webkit-transform: rotate(10deg) translateY(-50%);
          transform: rotate(10deg) translateY(-50%);
}
#header_nav ul li a {
  font-family: "YakuHanJP", "Zen Maru Gothic", Lato, "筑紫A丸ゴシック", "TsukuARoundGothic-Regular", "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN W4", "HG丸ｺﾞｼｯｸM-PRO", sans-serif;
  font-weight: 900;
  display: block;
  position: relative;
  line-height: 1.5;
  font-size: 1.6rem;
  font-weight: 600;
  color: #413631;
  overflow: hidden;
}
#header_nav ul li a span {
  -webkit-transition: 0.2s all ease-in-out;
  transition: 0.2s all ease-in-out;
  font-family: "Quicksand", "Dosis", sans-serif;
  font-weight: 600;
  /*text-transform: uppercase;*/
  text-transform: uppercase;
  position: relative;
  display: block;
  font-size: 1.1rem;
}
#header_nav ul li a:hover span, #header_nav ul li a.active span {
  color: rgb(0, 107.4678111588, 156.5);
}
#header_nav .dropdown {
  display: none;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 15px;
  z-index: 999;
  padding-top: 30px;
}
#header_nav .dropdown .dropdown-li {
  border-right: 0;
  margin: 0 0 5px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  letter-spacing: 0.2em;
  background: #00A0E9;
}
#header_nav .dropdown .dropdown-li:hover {
  background: #f14453;
}
#header_nav .dropdown .dropdown-li:after {
  display: none;
}
#header_nav .dropdown .dropdown-li a {
  display: block;
  width: 200px;
  padding: 10px;
  color: #fefefe;
  font-size: 1.3rem;
}
#header_nav .dropdown .dropdown-li.foot_only {
  display: none;
}

/* page-top
----------------------------------*/
#page-top {
  position: fixed;
  bottom: 10px;
  right: 7px;
  z-index: 200;
}
#page-top a {
  display: block;
  background: #52b0ff;
  color: #fefefe;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  font-size: 1.2rem;
  text-align: center;
}
#page-top a:hover {
  opacity: 0.6;
}
@media all and (max-width: 639px) {
  #page-top {
    bototm: 20px;
  }
}

/* swiper
----------------------------------*/
@-webkit-keyframes zoom-in {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.12);
            transform: scale(1.12);
  }
}
@keyframes zoom-in {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.12);
            transform: scale(1.12);
  }
}
.swiper-slide-active .slide-img,
.swiper-slide-duplicate-active .slide-img,
.swiper-slide-prev .slide-img {
  -webkit-animation: zoom-in 11s linear 0s 1 normal both;
          animation: zoom-in 11s linear 0s 1 normal both;
}

.swiper-slide {
  position: relative;
}
.swiper-slide:before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  right: 0;
  top: 0;
  background-position: 50%;
  background-size: cover;
  z-index: -1;
}
.swiper-slide.slide1:before {
  background-image: url(../img/1.jpg);
}
.swiper-slide.slide2:before {
  background-image: url(../img/2.jpg);
}
.swiper-slide.slide3:before {
  background-image: url(../img/3.jpg);
}

.slide-img {
  overflow: hidden;
  width: 100%;
  height: 87vh;
}
.slide-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 35%;
     object-position: center 35%;
}
@media all and (max-width: 1025px) {
  .slide-img {
    height: 55vh;
  }
}
@media screen and (max-width: 890px) and (orientation: landscape) {
  .slide-img {
    height: 50vw;
  }
}
@media all and (max-width: 639px) {
  .slide-img {
    height: 45vh;
  }
}

#slideshow {
  position: relative;
}

#slide-wrap {
  position: relative;
}

#catch {
  z-index: 50;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  max-width: 900px;
  width: 90%;
  /*opacity: 0;*/
  margin: auto;
  background: rgba(255, 255, 255, 0.6);
  border: 3px solid rgba(255, 255, 255, 0.6);
  outline: 1px solid #fff;
  outline-offset: -8px;
  padding: 20px 10px;
  /*	&.on {
  		opacity: 1;
  		transition: 2s;
  	}*/
}
#catch h3 {
  letter-spacing: 0.2em;
  font-size: 3.2rem;
  text-align: center;
  line-height: 1.6;
  color: #000;
}
@media all and (max-width: 1025px) {
  #catch h3 {
    font-size: 1.8rem;
    line-height: 1.5;
  }
}
@media screen and (max-width: 890px) and (orientation: landscape) {
  #catch h3 {
    letter-spacing: 0.1em;
    font-size: 1.6rem;
  }
}
@media all and (max-width: 639px) {
  #catch {
    padding: 12px 6px;
  }
  #catch h3 {
    font-size: 1.3rem;
  }
}

#scrolldown {
  position: absolute;
  left: 15px;
  bottom: 60px;
  color: #fefefe;
  font-family: "Quicksand", "Dosis", sans-serif;
  font-weight: 400;
  /*text-transform: uppercase;*/
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  text-orientation: mixed;
  -webkit-font-feature-settings: "pkna";
  font-feature-settings: "pkna";
  font-size: 1.4rem;
  z-index: 100;
  height: 210px;
}
#scrolldown:before, #scrolldown:after {
  position: absolute;
  content: "";
  z-index: 2;
  left: 50%;
}
#scrolldown:before {
  width: 1px;
  height: 100px;
  bottom: 0;
  background: #f0f0f0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
#scrolldown:after {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 100%;
  top: 100px;
  margin-left: -4px;
  -webkit-animation: scroll-point 2.3s ease-out infinite;
          animation: scroll-point 2.3s ease-out infinite;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
@media all and (max-width: 900px) {
  #scrolldown {
    display: none;
  }
}

@-webkit-keyframes scroll-point {
  0% {
    bottom: 0;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  50% {
    top: 180px;
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    top: 210px;
    opacity: 0;
  }
}

@keyframes scroll-point {
  0% {
    bottom: 0;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  50% {
    top: 180px;
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    top: 210px;
    opacity: 0;
  }
}
/* contact_bnr
----------------------------------*/
.contact_bnr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  /*padding: 30px 10px;*/
  /*background: #fff;*/
  border-radius: 10px;
  max-width: 800px;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
}
@media all and (max-width: 900px) {
  .contact_bnr {
    max-width: 90%;
  }
}
@media all and (max-width: 639px) {
  .contact_bnr {
    padding: 25px 10px;
  }
}
.contact_bnr > li {
  background: #fff;
  padding: 15px 10px;
  border-radius: 50px;
  width: 49%;
  /*		&:not(:last-child) {
     border-right: 1px dashed $sub_color;
    }*/
}
@media all and (max-width: 639px) {
  .contact_bnr > li {
    width: 90%;
    margin: 0 auto 10px;
    padding: 8px;
    /*			&:not(:last-child) {
        border-right: 0;
        border-bottom: 1px dashed $sub_color;
        margin-bottom: 20px;
        padding-bottom: 10px;
       }*/
  }
}
.contact_bnr > li .bnr_free {
  letter-spacing: 0.15em;
}
.contact_bnr > li .bnr_free:before {
  content: "Free";
  font-size: 1.4rem;
  font-family: "Quicksand", "Dosis", sans-serif;
  font-weight: 400;
  /*text-transform: uppercase;*/
  letter-spacing: 0;
}
.contact_bnr > li .bnr_tel {
  letter-spacing: 0.15em;
}
.contact_bnr > li .bnr_tel:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
}
.contact_bnr > li .bnr_mobile {
  background: #fefefe;
  color: #52b0ff;
}
.contact_bnr > li .bnr_mobile:before {
  font-family: "Font Awesome 5 Free";
  content: "\f3cd";
  font-weight: 900;
}
.contact_bnr > li .bnr_fax {
  background: #fdfdfd;
  color: #00A0E9;
}
.contact_bnr > li .bnr_fax:before {
  font-family: "Font Awesome 5 Free";
  content: "\f1ac";
  font-weight: 900;
}
.contact_bnr > li .bnr_mail:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
}
.contact_bnr > li a,
.contact_bnr > li span {
  display: block;
  color: #f14453;
  font-size: 2.2rem;
  font-weight: 600;
  text-align: center;
  position: relative;
  margin-right: auto;
  margin-left: auto;
}
.contact_bnr > li a:hover,
.contact_bnr > li span:hover {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #00A0E9;
}
.contact_bnr > li a:before,
.contact_bnr > li span:before {
  margin-right: 10px;
  font-size: 90%;
}
@media all and (max-width: 900px) {
  .contact_bnr > li a,
  .contact_bnr > li span {
    font-size: 1.6rem;
  }
}

footer {
  padding-top: 5px;
  z-index: 2;
  position: relative;
}
footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: url("https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28207/bg-footer.webp");
  background-size: cover;
  background-position: center 0%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-color: rgba(255, 255, 255, 0.8);
  background-blend-mode: overlay;
}
@media all and (max-width: 900px) {
  footer::before {
    background-attachment: scroll;
  }
}

@media all and (max-width: 639px) {
  #l-footer {
    font-size: 1.2rem;
  }
}
#l-footer .inner {
  padding: 40px 0;
  margin: 0 auto;
  width: 100%;
}
#l-footer .footer-box {
  border-radius: 15px;
  max-width: 1400px;
  margin: 0 auto 40px;
  padding: 25px 15px;
  background: url(../img/bg-foot.jpg);
  position: relative;
  z-index: 5;
  overflow: hidden;
}
@media all and (max-width: 1200px) {
  #l-footer .footer-box {
    max-width: 900px;
  }
}
@media all and (max-width: 639px) {
  #l-footer .footer-box {
    padding: 30px 15px;
  }
}
#l-footer .footer-box:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: #555;
  width: 100%;
  height: 100%;
  opacity: 0.7;
}

.footer-txt-wrap {
  position: relative;
  z-index: 4;
  margin: 20px auto;
  font-weight: bold;
  color: #fefefe;
}

.footer-map {
  height: 250px;
  margin-bottom: 20px;
  -webkit-box-shadow: 0 0 15px rgba(85, 85, 85, 0.1);
          box-shadow: 0 0 15px rgba(85, 85, 85, 0.1);
  width: 100%;
}
@media all and (max-width: 639px) {
  .footer-map {
    height: 180px;
  }
}

.sns-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 10px;
}
.sns-list li:not(:last-child) {
  margin-right: 5px;
}
.sns-list li a {
  color: #fff;
  display: block;
  font-size: 1.5rem;
  text-align: center;
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  line-height: 40px;
}
.sns-list li a.fb {
  background-color: #1877f2;
}

.flogo {
  max-width: 300px;
  width: 95%;
  margin: 0 auto 10px;
}

.footer_navi {
  padding: 0;
  margin: 30px auto 0;
  max-width: 1200px;
  width: 100%;
}
.footer_navi ul {
  margin: 0 auto;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.footer_navi li {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  text-align: left;
  margin: 0 0 4px;
}
.footer_navi li a {
  color: #005ca7;
  font-size: 1.4rem;
  position: relative;
  font-weight: bold;
}
.footer_navi li a span {
  display: none;
}
.footer_navi li a:hover {
  color: #00437a;
}
.footer_navi li .dropdown {
  display: block;
}
.footer_navi li .dropdown li {
  margin: 0 0 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  text-align: left;
}
.footer_navi li .dropdown li:before {
  content: "・";
  color: #f14453;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.footer_navi li .dropdown li a {
  font-size: 1.2rem;
  color: #555;
  display: inline;
}
.footer_navi li .dropdown li a:hover {
  color: #00437a;
}
.footer_navi li .dropdown li mn {
  font-size: 1.1rem;
  font-family: "Libre Baskerville", "Varela Round", serif;
  font-weight: 400;
  font-style: normal;
  margin-right: 10px;
}
.footer_navi li .dropdown li:last-child {
  margin: 0;
}

.address {
  font-size: 1.4rem;
  text-align: center;
}
@media all and (max-width: 639px) {
  .address {
    font-size: 1.2rem;
  }
}

.copyright {
  font-size: 1.2rem;
  position: relative;
  z-index: 4;
  color: #fff;
  padding: 10px 0;
  background: #00A0E9;
}
@media all and (max-width: 1025px) {
  .copyright {
    font-size: 11px;
    padding: 10px 0 65px;
  }
}

/*----------------------------------
 top-contents
----------------------------------*/
.sec2 {
  position: relative;
}
.sec2 + .sec2 {
  margin-top: 80px;
}
.sec2:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 70%;
  height: 100%;
  background: url(../img/half01.jpg) no-repeat center/cover;
}
@media all and (max-width: 639px) {
  .sec2:before {
    width: 100%;
    height: 300px;
  }
}
.sec2 .half-box {
  width: 40%;
  min-width: 500px;
  min-height: 480px;
  margin-left: auto;
  margin-right: 5%;
  padding: 80px 0;
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.sec2 .half-box .inner {
  padding: 50px 40px;
  background: #fefefe;
}
@media all and (max-width: 900px) {
  .sec2 .half-box {
    padding: 60px 0;
    margin-right: 15px;
  }
  .sec2 .half-box .inner {
    padding: 60px 25px;
  }
}
@media all and (max-width: 639px) {
  .sec2 .half-box {
    width: 95%;
    margin-right: auto;
    padding: 0;
    padding-top: 250px;
    min-width: initial;
    min-height: initial;
  }
  .sec2 .half-box .inner {
    padding: 30px 15px;
  }
}
.sec2 .sec2-title {
  position: absolute;
  left: 40px;
  top: -20px;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  text-orientation: mixed;
  -webkit-font-feature-settings: "pkna";
  font-feature-settings: "pkna";
  z-index: 5;
  font-family: "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  background: #413631;
  color: #fff;
  font-size: 2.4rem;
  padding: 15px;
  letter-spacing: 0.15em;
}
@media all and (max-width: 639px) {
  .sec2 .sec2-title {
    -webkit-writing-mode: initial;
        -ms-writing-mode: initial;
            writing-mode: initial;
    left: 10px;
    font-size: 1.6rem;
    padding: 10px 12px;
  }
}
.sec2.type1 {
  margin-bottom: 0;
}
.sec2.type1:before {
  left: auto;
  right: 0;
  background: url(../img/half02.jpg) no-repeat center/cover;
}
.sec2.type1 .half-box {
  margin-left: 5%;
  margin-right: auto;
}
@media all and (max-width: 900px) {
  .sec2.type1 .half-box {
    margin-left: 15px;
  }
}
@media all and (max-width: 639px) {
  .sec2.type1 .half-box {
    margin-left: auto;
  }
}
.sec2.type1 .sec2-title {
  left: auto;
  right: 40px;
}
@media all and (max-width: 639px) {
  .sec2.type1 .sec2-title {
    right: 10px;
  }
}

.sec3-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.sec3-wrap .child {
  width: 47%;
}
.sec3-wrap .child:nth-child(2) {
  -webkit-transform: translateY(60px);
          transform: translateY(60px);
}
@media all and (max-width: 1025px) {
  .sec3-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .sec3-wrap .child {
    width: 100%;
    padding: 0 20px;
  }
  .sec3-wrap .child:first-child {
    margin-bottom: 30px;
  }
}
@media all and (max-width: 639px) {
  .sec3-wrap .child {
    padding: 0;
  }
}

.sec3-img {
  width: 95%;
  height: 450px;
  overflow: hidden;
  margin-left: auto;
}
.sec3-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
@media all and (max-width: 639px) {
  .sec3-img {
    height: 280px;
  }
}

.sec3-box {
  letter-spacing: 0.15em;
  max-width: 1200px;
}
@media all and (max-width: 1025px) {
  .sec3-box {
    max-width: 95%;
    margin-left: 0;
  }
}

.sec3-title {
  /*background: $base_color;*/
  background-image: linear-gradient(45deg, #00A0E9, rgb(54.5, 192.1824034335, 255));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 2;
  margin-top: -40px;
  margin-bottom: 35px;
  width: 95%;
}
.sec3-title.type1 {
  background: #cee2b3;
}
.sec3-title .num {
  width: 100px;
  font-family: "Homemade Apple", cursive;
  font-weight: 400;
  font-size: 5rem;
  top: 50%;
  line-height: 1;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  height: 100%;
  text-align: center;
  padding: 30px 10px;
  color: #faf9f5;
}
.sec3-title .txt {
  margin-left: 100px;
  border-left: 0.9px solid #faf9f5;
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  padding: 30px 20px;
}
.sec3-title .eng {
  font-family: "Quicksand", "Dosis", sans-serif;
  font-weight: 400;
  /*text-transform: uppercase;*/
  font-size: 1.3rem;
  display: block;
}
@media all and (max-width: 639px) {
  .sec3-title .num {
    font-size: 3rem;
    width: 60px;
  }
  .sec3-title .txt {
    font-size: 1.3rem;
    margin-left: 60px;
  }
  .sec3-title .eng {
    font-size: 1.1rem;
  }
}

.sec3-txt {
  line-height: 2.2;
  font-size: 1.6rem;
  padding: 0 50px;
  margin-bottom: 20px;
}
@media all and (max-width: 639px) {
  .sec3-txt {
    font-size: 1.2rem;
    padding: 0 20px;
    line-height: 2;
  }
}

.sec3-btn {
  margin-left: auto;
  margin-top: 30px;
  width: 250px;
}
.sec3-btn a {
  font-size: 1.6rem;
  color: #00A0E9;
  padding-right: 80px;
  display: block;
  position: relative;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  font-weight: 600;
}
.sec3-btn a span {
  border-bottom: 2px solid #00A0E9;
  padding: 8px;
}
.sec3-btn a:after {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f142";
  font-weight: 900;
  width: 65px;
  height: 65px;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  line-height: 65px;
  background: #fff;
  border-radius: 50%;
  color: #00A0E9;
  border: 1px solid #00A0E9;
  text-align: center;
  font-size: 2.5rem;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  -webkit-transform-origin: center;
          transform-origin: center;
}
.sec3-btn a:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.sec3-btn a:hover:after {
  background: #ffdf2c;
  color: #413631;
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}
@media all and (max-width: 639px) {
  .sec3-btn a {
    font-size: 1.5rem;
  }
  .sec3-btn a:after {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 2rem;
    right: 20px;
  }
}

.top-cont02 {
  margin: 0 auto;
  width: 100%;
  max-width: 1500px;
}
.top-cont02 .inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.top-cont02 .inner .top-cont01-img {
  margin-bottom: 20px;
  width: 90%;
}
.top-cont02 .inner .top-cont02-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
.top-cont02 .inner .top-cont02-img .img01,
.top-cont02 .inner .top-cont02-img .img02 {
  width: 48%;
}
.top-cont02 .inner .top-cont02-img .img01 img,
.top-cont02 .inner .top-cont02-img .img02 img {
  -webkit-filter: none;
          filter: none;
}
.top-cont02 .inner .top-cont02-txt {
  position: relative;
  width: 52%;
  padding: 0 40px;
}
.top-cont02 .inner .top-cont02-txt p + p {
  margin-top: 15px;
}
@media all and (max-width: 639px) {
  .top-cont02 .inner .top-cont02-txt .title-02 {
    position: unset;
    line-height: 3rem;
  }
  .top-cont02 .inner .top-cont02-txt .title-02 .eng {
    font-size: 4rem;
  }
  .top-cont02 .inner .top-cont02-txt .title-02 .mini-eng {
    font-size: 1.5rem;
  }
}
@media all and (max-width: 1145px) {
  .top-cont02 {
    width: 100%;
  }
  .top-cont02 .inner {
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
  }
  .top-cont02 .inner .top-cont02-img {
    width: 100%;
    margin-bottom: 40px;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .top-cont02 .inner .top-cont02-img .img02 {
    margin-top: -80px;
    max-width: 350px;
  }
  .top-cont02 .inner .top-cont02-txt {
    width: 100%;
    margin: auto;
    padding: 0 5px;
  }
  .top-cont02 .inner .top-cont02-txt p + p {
    margin-top: 10px;
  }
}
@media all and (max-width: 639px) {
  .top-cont02 .inner {
    max-width: 100%;
  }
  .top-cont02 .inner .top-cont02-img .img02 {
    margin-top: 20px;
  }
}

.top-img {
  position: relative;
  margin: auto;
  max-width: 550px;
  width: 49%;
}
@media all and (max-width: 900px) {
  .top-img {
    width: 70% !important;
  }
}
@media all and (max-width: 639px) {
  .top-img {
    width: 85% !important;
  }
}

.title-02 {
  line-height: 5rem;
}
.title-02 .ja {
  display: block;
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.title-02 .eng {
  display: block;
  font-size: 7rem;
  font-weight: 600;
}
.title-02 .mini-eng {
  font-size: 1.9rem;
}

.sub-tittle {
  font-size: 2.8rem;
  color: #00A0E9;
  margin-bottom: 25px;
}
@media all and (max-width: 639px) {
  .sub-tittle {
    font-size: 1.8rem !important;
  }
}

.top-btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.top-btn-box button,
.top-btn-box a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  display: block;
  border: 0.9px solid #f14453;
  width: 48%;
}
@media all and (max-width: 1025px) {
  .top-btn-box button,
  .top-btn-box a {
    width: 100%;
    margin-bottom: 20px;
  }
}
.top-btn-box button span,
.top-btn-box a span {
  display: block;
}
.top-btn-box button .num,
.top-btn-box a .num {
  width: 70px;
  font-family: "Homemade Apple", cursive;
  font-weight: 400;
  font-size: 3.5rem;
  top: 50%;
  line-height: 1;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  height: 100%;
  text-align: center;
  padding: 20px 0;
  color: #cee2b3;
  -webkit-transition: background-color 0.2s ease-in;
  transition: background-color 0.2s ease-in;
}
@media all and (max-width: 639px) {
  .top-btn-box button .num,
  .top-btn-box a .num {
    font-size: 2.5rem;
  }
}
.top-btn-box button .txt,
.top-btn-box a .txt {
  margin-left: 70px;
  width: calc(100% - 70px);
  border-left: 0.9px solid #f14453;
  font-size: 1.8rem;
  font-weight: 600;
  color: #00A0E9;
  padding: 20px;
  -webkit-transition: background-color 0.2s ease-in;
  transition: background-color 0.2s ease-in;
}
@media all and (max-width: 639px) {
  .top-btn-box button .txt,
  .top-btn-box a .txt {
    font-size: 1.5rem;
  }
}
.top-btn-box button .eng,
.top-btn-box a .eng {
  font-family: "Quicksand", "Dosis", sans-serif;
  font-weight: 400;
  /*text-transform: uppercase;*/
  font-size: 1.3rem;
  display: block;
}
.top-btn-box button:hover .txt,
.top-btn-box a:hover .txt {
  background: #eff7f5;
}

.top-bg {
  height: 400px;
  position: relative;
}
.top-bg:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  background: rgba(0, 0, 0, 0.2) url(../img/bg-01.jpg) no-repeat center/cover;
  background-attachment: fixed;
}
@media all and (max-width: 1025px) {
  .top-bg:before {
    background-attachment: scroll;
  }
}
@media all and (max-width: 639px) {
  .top-bg {
    height: 250px;
  }
}

/* --news--
----------------------------------*/
.news-box {
  padding: 70px 0px;
  position: relative;
  z-index: 10;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media all and (max-width: 639px) {
  .news-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 15px auto 40px;
    padding: 0;
    width: 85%;
  }
}

.news-title {
  position: relative;
  text-align: center;
  font-weight: 600;
  font-size: 3.5rem;
  padding: 5px 20px;
  color: #00A0E9;
}
.news-title span {
  display: block;
  font-size: 1.8rem;
  color: #333;
  margin-top: 5px;
}
@media all and (max-width: 639px) {
  .news-title {
    padding: 5px 10px;
    width: 100%;
    font-size: 2rem;
    margin-bottom: 30px;
  }
  .news-title span {
    font-size: 1.2rem;
    margin-top: 3px;
  }
}

.news-right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 10px;
}
@media all and (max-width: 639px) {
  .news-right {
    width: 100%;
    margin: 10px 0 0;
    padding: 5px;
  }
}

.top-blog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 20px;
}
.top-blog li {
  width: 32%;
  margin: 0 1.5% 10px;
  position: relative;
}
.top-blog li > a {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.top-blog li > a:hover ~ .top-blog_img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.top-blog li:nth-child(3n) {
  margin-right: 0;
}
.top-blog .top-blog_img {
  margin-bottom: 10px;
  overflow: hidden;
  height: 180px;
}
.top-blog .top-blog_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  -webkit-transition: -webkit-transform 0.2s ease-in;
  transition: -webkit-transform 0.2s ease-in;
  transition: transform 0.2s ease-in;
  transition: transform 0.2s ease-in, -webkit-transform 0.2s ease-in;
}
.top-blog .top-blog_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.top-blog .top-blog_time {
  background: #00A0E9;
  padding: 8px 5px;
  color: #fff;
  width: 25%;
  text-align: center;
  line-height: 1.2;
}
.top-blog .top-blog_time span {
  display: block;
  font-size: 1.3rem;
  letter-spacing: 0.1rem;
}
.top-blog .top-blog_time span.day {
  font-size: 2.5rem;
  font-weight: bold;
}
.top-blog .top-blog_detail {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 10px;
}
.top-blog .top-blog_ttl {
  font-size: 1.7rem;
  font-weight: bold;
}
@media all and (max-width: 900px) {
  .top-blog li {
    width: 49%;
    margin-right: 2%;
  }
  .top-blog li:nth-child(3n) {
    margin-right: 2%;
  }
  .top-blog li:nth-child(2n) {
    margin-right: 0;
  }
}
@media all and (max-width: 639px) {
  .top-blog li {
    width: 85%;
    margin: 0 auto 20px;
  }
  .top-blog li:nth-child(2n), .top-blog li:nth-child(3n) {
    margin-right: auto;
  }
  .top-blog .top-blog_time span {
    font-size: 1.1rem;
  }
  .top-blog .top-blog_time span.day {
    font-size: 1.8rem;
  }
  .top-blog .top-blog_ttl {
    font-size: 1.3rem;
  }
}

/* --top-bnr-list--
----------------------------------*/
.top-bnr-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1500px;
  margin: 0 auto;
}
.top-bnr-list > li {
  width: 31.5%;
  position: relative;
}
.top-bnr-list > li a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}
.top-bnr-list > li a:hover {
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.top-bnr-list > li a:hover .btn-arrow {
  background: #222;
}
.top-bnr-list > li a:hover .btn-arrow i {
  border-bottom-color: #fefefe;
}
.top-bnr-list > li a:hover .btn-arrow i:before {
  border-right-color: #fefefe;
}
.top-bnr-list > li a:hover .top-bnr-img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
@media all and (max-width: 1025px) {
  .top-bnr-list {
    width: 85%;
    margin: 0 auto;
  }
  .top-bnr-list > li {
    width: 48%;
    margin-bottom: 20px;
  }
}
@media all and (max-width: 639px) {
  .top-bnr-list {
    width: 95%;
  }
  .top-bnr-list > li {
    width: 100%;
  }
}
.top-bnr-list .top-bnr-img {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}
.top-bnr-list .top-bnr-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
@media all and (max-width: 639px) {
  .top-bnr-list .top-bnr-img {
    height: 200px;
  }
}
.top-bnr-list .btn-arrow {
  width: 60px;
  height: 60px;
  position: absolute;
  right: 20px;
  top: 210px;
  text-align: center;
  line-height: 60px;
  background: #fefefe;
  border: 2px solid #222;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
@media all and (max-width: 639px) {
  .top-bnr-list .btn-arrow {
    top: 170px;
  }
}
.top-bnr-list .btn-arrow i {
  display: block;
  position: absolute;
  width: 30px;
  border-bottom: 2px solid #222;
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: 5px;
}
.top-bnr-list .btn-arrow i:before {
  position: absolute;
  width: 10px;
  height: 8px;
  content: "";
  right: 3px;
  bottom: -2px;
  border-right: 3px solid #222;
  -webkit-transform: skew(45deg);
          transform: skew(45deg);
}
.top-bnr-list .top-bnr-title {
  font-weight: 500;
  padding: 15px;
  line-height: 1.4;
}
.top-bnr-list .top-bnr-title .eng {
  font-family: "Quicksand", "Dosis", sans-serif;
  font-weight: 400;
  /*text-transform: uppercase;*/
  font-size: 3rem;
  letter-spacing: 0.1em;
  color: #52b0ff;
  display: block;
}
.top-bnr-list .top-bnr-title .ja {
  font-size: 1.8rem;
  display: block;
  color: #222;
}
@media all and (max-width: 639px) {
  .top-bnr-list .top-bnr-title .eng {
    font-size: 2.4rem;
  }
  .top-bnr-list .top-bnr-title .ja {
    font-size: 1.4rem;
  }
}
.top-bnr-list .top-bnr-txt {
  color: #222;
  padding: 10px;
}

.cont-list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cont-list li {
  width: 48%;
  margin: 0.5%;
}
.cont-list li a {
  display: block;
  background: #fefefe;
  border: 1px solid #e6e6e6;
  text-align: center;
  padding: 70px 15px;
  color: #656565;
  line-height: 1.6;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media all and (max-width: 639px) {
  .cont-list li a {
    padding: 30px 0px;
  }
}
.cont-list li a i {
  display: block;
  margin: auto;
  font-size: 4rem;
  color: #00A0E9;
  margin-bottom: 10px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.cont-list li a p {
  font-weight: 600;
  font-size: 1.1em;
}
.cont-list li a span {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 1.4rem;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  color: #00A0E9;
}
.cont-list li a:hover {
  border: 1px solid #00A0E9;
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}
.cont-list li a:hover i {
  -webkit-animation: rotate 0.7s ease-in-out both;
          animation: rotate 0.7s ease-in-out both;
  color: #656565;
  opacity: 0.6;
}
@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(3deg);
            transform: rotate(3deg);
  }
  50% {
    -webkit-transform: rotate(-3deg);
            transform: rotate(-3deg);
  }
  75% {
    -webkit-transform: rotate(1deg);
            transform: rotate(1deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(3deg);
            transform: rotate(3deg);
  }
  50% {
    -webkit-transform: rotate(-3deg);
            transform: rotate(-3deg);
  }
  75% {
    -webkit-transform: rotate(1deg);
            transform: rotate(1deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@media all and (max-width: 900px) {
  .cont-list li {
    width: 48%;
    margin: 1%;
  }
}

.arrow {
  position: absolute;
  stroke-miterlimit: 5;
  stroke-width: 1;
  stroke: #fefefe;
  right: 20px;
  bottom: 30px;
  z-index: 4;
  width: 50px;
  height: 50px;
  text-align: center;
  padding-top: 13px;
}
.arrow:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: 2px solid #fefefe;
  border-radius: 100%;
}
@media all and (max-width: 639px) {
  .arrow {
    width: 35px;
    height: 35px;
    padding-top: 5px;
  }
  .arrow .arrow-svg {
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
  }
}

/* contents
----------------------------------*/
.single {
  max-width: 1200px;
  padding: 120px 0;
}
@media all and (max-width: 1025px) {
  .single {
    padding: 120px 15px;
  }
}

.single02 {
  padding: 120px 0;
}

.single03 {
  max-width: 1500px;
  padding: 120px 0;
  width: 98%;
}
@media all and (max-width: 1025px) {
  .single03 {
    padding: 120px 15px;
  }
}

.single04 {
  padding: 120px 0;
  max-width: calc(100% - 240px);
}
@media all and (max-width: 1025px) {
  .single04 {
    max-width: calc(100% - 120px);
  }
}
@media all and (max-width: 900px) {
  .single04 {
    max-width: calc(100% - 20px);
    padding: 60px 0;
  }
}

.single,
.single03 {
  position: relative;
  margin: 0 auto;
}
.single.inner,
.single03.inner {
  z-index: 2;
}
.single.phalf,
.single03.phalf {
  padding: 60px 0;
}
@media all and (max-width: 1025px) {
  .single.phalf,
  .single03.phalf {
    padding: 60px 15px;
  }
}
@media all and (max-width: 900px) {
  .single.phalf,
  .single03.phalf {
    padding: 30px 0;
  }
}
.single.type1,
.single03.type1 {
  padding: 120px 0 0;
}
@media all and (max-width: 1025px) {
  .single.type1,
  .single03.type1 {
    padding: 120px 15px 0;
  }
}
.single.type2,
.single03.type2 {
  padding: 0 0 120px;
}
@media all and (max-width: 1025px) {
  .single.type2,
  .single03.type2 {
    padding: 0 15px 120px;
  }
}

.single02,
.single04 {
  position: relative;
  margin: 0 auto;
}
.single02.inner,
.single04.inner {
  z-index: 2;
}
.single02.phalf,
.single04.phalf {
  padding: 60px 0;
}
@media all and (max-width: 1025px) {
  .single02.phalf,
  .single04.phalf {
    padding: 60px 0;
  }
}
@media all and (max-width: 900px) {
  .single02.phalf,
  .single04.phalf {
    padding: 30px 0;
  }
}
.single02.type1,
.single04.type1 {
  padding: 120px 0 0;
}
@media all and (max-width: 1025px) {
  .single02.type1,
  .single04.type1 {
    padding: 60px 0 0;
  }
}
.single02.type2,
.single04.type2 {
  padding: 0 0 120px;
}
@media all and (max-width: 1025px) {
  .single02.type2,
  .single04.type2 {
    padding: 0 0 120px;
  }
}
.single02.type3,
.single04.type3 {
  padding: 120px 0 80px;
}
@media all and (max-width: 1025px) {
  .single02.type3,
  .single04.type3 {
    padding: 120px 0 80px;
  }
}

.margin-top {
  margin-top: -120px;
}
@media all and (max-width: 639px) {
  .margin-top {
    margin-top: -60px;
  }
}

.lsingle,
.rsingle {
  width: 48.44%;
}

.lsingle {
  float: left;
}

.rsingle {
  float: right;
}

.mbox {
  background: #fefefe;
  padding: 35px 30px;
  position: relative;
  z-index: 3;
  margin-right: auto;
  margin-left: auto;
}
.mbox.wk {
  background: rgba(254, 254, 254, 0.9);
  border: 1px solid #f14453;
}
.mbox.wk2 {
  background: rgba(254, 254, 254, 0.9);
  border: 1px solid rgb(105.5, 208.160944206, 255);
}
.mbox.transparent {
  background: transparent;
}
.mbox.sd {
  -webkit-box-shadow: 0 4px 10px rgba(0, 160, 233, 0.1);
          box-shadow: 0 4px 10px rgba(0, 160, 233, 0.1);
}
@media all and (max-width: 639px) {
  .mbox {
    padding: 20px 10px;
  }
}

.mbox2 {
  background: #eff7f5;
  padding: 35px 30px;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}
@media all and (max-width: 639px) {
  .mbox2 {
    padding: 25px 15px;
  }
}

.small-box {
  max-width: 850px;
  margin-right: auto;
  margin-left: auto;
}

.small-box2 {
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
}
.small-box2.sp_small {
  width: 90%;
}

.box1 {
  padding-top: 120px;
}

.sentence p + p {
  margin-top: 20px;
}

.bg-side {
  position: relative;
  background: rgba(159, 214, 226, 0.1);
}
.bg-side .bg-side_left,
.bg-side .bg-side_right {
  position: absolute;
  width: 100px;
  height: auto;
  z-index: -1;
}
@media all and (max-width: 900px) {
  .bg-side .bg-side_left,
  .bg-side .bg-side_right {
    opacity: 0.2;
  }
}
.bg-side .bg-side_left img,
.bg-side .bg-side_right img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.bg-side .bg-side_left {
  left: -15px;
  top: 40px;
}
.bg-side .bg-side_right {
  right: -25px;
  bottom: 15px;
}
@media all and (max-width: 900px) {
  .bg-side .bg-side_right {
    top: 40px;
    bottom: auto;
  }
}

.bg-ink {
  position: relative;
  overflow: hidden;
}
.bg-ink #ink-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.bg-grid {
  background: rgba(255, 255, 255, 0.9);
  /* border-top: 1px solid #555;
   border-bottom: 1px solid #555;*/
  background-image: -webkit-gradient(linear, left top, right top, color-stop(95%, transparent), color-stop(50%, rgba(204, 204, 204, 0.2)), to(rgba(204, 204, 204, 0.2))), -webkit-gradient(linear, left bottom, left top, color-stop(95%, transparent), color-stop(50%, rgba(204, 204, 204, 0.2)), to(rgba(204, 204, 204, 0.2)));
  background-image: linear-gradient(90deg, transparent 95%, rgba(204, 204, 204, 0.2) 50%, rgba(204, 204, 204, 0.2)), linear-gradient(0deg, transparent 95%, rgba(204, 204, 204, 0.2) 50%, rgba(204, 204, 204, 0.2));
  background-size: 20px 20px;
  background-repeat: repeat;
}

#main {
  float: left;
  width: 76%;
}
#main .mbox {
  min-height: 300px;
}
@media all and (max-width: 900px) {
  #main .mbox {
    min-height: initial;
  }
}
@media all and (max-width: 900px) {
  #main {
    float: none;
    width: 100%;
  }
}

#side {
  float: right;
  position: sticky;
  right: 0;
  top: 0;
  width: 21%;
  padding-right: 10px;
}
@media all and (max-width: 900px) {
  #side {
    float: none;
    width: 100%;
    position: static;
    margin-top: 40px;
  }
}

/* mtitle
----------------------------------*/
.mtitle {
  font-weight: 500;
  margin: 0 auto 30px;
  text-align: center;
}
.mtitle.bsc .eng {
  color: #00A0E9;
}
.mtitle .eng {
  font-size: 3.4rem;
  color: #f14453;
  position: relative;
  display: block;
  letter-spacing: 0.15em;
  font-family: "Quicksand", "Dosis", sans-serif;
  font-weight: 400;
  /*text-transform: uppercase;*/
}
.mtitle .ja {
  font-size: 1.8rem;
  color: #413631;
  font-weight: 600;
  padding-bottom: 8px;
  letter-spacing: 0.3em;
}
.mtitle .ja2 {
  line-height: 2;
  font-size: 1.5rem;
  color: rgb(94.0789473684, 78.1578947368, 70.9210526316);
  font-weight: 600;
  letter-spacing: 0.2em;
}
.mtitle .ja2:before {
  content: "- ";
}
.mtitle .ja2:after {
  content: "- ";
}
.mtitle.white {
  color: #fff;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}
.mtitle.white span {
  color: #fff;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}
.mtitle.white span:after {
  background-color: #eee;
}
.mtitle.white span.ja {
  border-bottom-color: #fefefe;
}
.mtitle.black {
  color: #333;
}
.mtitle.black span {
  color: #555;
}
.mtitle.black span:after {
  background-color: #555;
}
.mtitle.mtitle_left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}
.mtitle.mtitle_left span:after {
  left: 0;
  -webkit-transform: none;
          transform: none;
}
@media all and (max-width: 639px) {
  .mtitle {
    text-align: center;
    margin: 0 auto 15px;
  }
  .mtitle .eng {
    font-size: 2.2rem;
    letter-spacing: 0.2em;
  }
  .mtitle .ja {
    font-size: 1.3rem;
  }
  .mtitle .ja2 {
    font-size: 1.2rem;
  }
}

.mtitle2 {
  font-size: 2rem;
  position: relative;
  color: #413631;
  font-weight: 600;
  position: relative;
  padding-left: 20px;
  margin-bottom: 30px;
  line-height: 1.4;
  letter-spacing: 0.2em;
}
.mtitle2 .eng {
  display: block;
  font-size: 1.6rem;
  font-family: "Quicksand", "Dosis", sans-serif;
  font-weight: 400;
  /*text-transform: uppercase;*/
  color: #00A0E9;
}
.mtitle2:before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  background: rgb(80, 200.1716738197, 255);
  border-radius: 4px;
}
.mtitle2.bnone:before {
  content: none;
}
@media all and (max-width: 639px) {
  .mtitle2 {
    font-size: 1.6rem;
  }
  .mtitle2 .eng {
    font-size: 1.2rem;
  }
  .mtitle2 .viewbtn {
    font-size: 13px;
  }
}

.mtitle3 {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  text-orientation: mixed;
  -webkit-font-feature-settings: "pkna";
  font-feature-settings: "pkna";
  position: absolute;
  min-height: 100px;
  top: 10px;
  left: 20px;
  padding-top: 40px;
}
.mtitle3:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 30px;
  top: 0;
  left: 50%;
  background: #00A0E9;
}
.mtitle3 .ja {
  display: block;
  font-size: 2.4rem;
  line-height: 1.3;
  padding-right: 5px;
  font-weight: 600;
  color: #00A0E9;
}
.mtitle3 .eng {
  display: block;
  font-family: "Quicksand", "Dosis", sans-serif;
  font-weight: 500;
  /*text-transform: uppercase;*/
  font-size: 2.2rem;
  color: #cee2b3;
}
@media all and (max-width: 639px) {
  .mtitle3 {
    position: relative;
    top: 0;
    left: 0;
    -webkit-writing-mode: inherit;
        -ms-writing-mode: inherit;
            writing-mode: inherit;
    padding: 0 0 0 25px;
    min-height: auto;
    min-height: inherit;
  }
  .mtitle3:before {
    width: 20px;
    height: 1px;
    top: 50%;
    left: 0;
  }
  .mtitle3 .ja {
    font-size: 1.4rem;
  }
  .mtitle3 .eng {
    font-size: 1.8rem;
  }
}

.mtitle_icon {
  margin-bottom: 30px;
  color: #413631;
  font-size: 2.8rem;
  color: #f14453;
}
.mtitle_icon.small {
  font-size: 1.8rem;
}
.mtitle_icon.white {
  color: #fff;
}
.mtitle_icon.base {
  color: #00A0E9;
}
.mtitle_icon:before {
  font-family: "Font Awesome 5 Free";
  content: "\f141";
  font-weight: 900;
  margin-right: 10px;
}
@media all and (max-width: 639px) {
  .mtitle_icon {
    font-size: 1.8rem;
  }
}

.mtitle_line {
  font-size: 1.8rem;
  padding-bottom: 15px;
  position: relative;
  font-weight: 600;
  margin-bottom: 25px;
  color: #413631;
}
.mtitle_line:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  content: "";
  background-image: repeating-linear-gradient(-45deg, #f14453, #f14453 1px, transparent 2px, transparent 5px);
  background-size: 7px 7px;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  opacity: 0.5;
}
@media all and (max-width: 639px) {
  .mtitle_line {
    font-size: 1.3rem;
  }
}

.mtitle4 {
  font-family: "YakuHanJP", "Zen Maru Gothic", Lato, "筑紫A丸ゴシック", "TsukuARoundGothic-Regular", "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN W4", "HG丸ｺﾞｼｯｸM-PRO", sans-serif;
  font-weight: 500;
  letter-spacing: 0.2em;
  font-size: 2.8rem;
}
@media all and (max-width: 900px) {
  .mtitle4 {
    font-size: 2.2rem;
  }
}
@media all and (max-width: 639px) {
  .mtitle4 {
    font-size: 1.8rem;
  }
}
.mtitle4 {
  line-height: 1.3;
  margin-bottom: 20px;
  color: #413631;
  text-align: center;
  letter-spacing: 0.3rem;
  font-weight: 800;
}
.mtitle4 .eng {
  font-family: "Quicksand", "Dosis", sans-serif;
  font-weight: 400;
  /*text-transform: uppercase;*/
  line-height: 1;
}
.mtitle4 span {
  position: relative;
  display: inline-block;
  min-width: 10%;
  padding: 0 15px;
}
.mtitle4 span:before, .mtitle4 span:after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: -2px;
  margin: auto;
  width: 2px;
  height: 85%;
  background-color: rgb(108.6184210526, 90.2368421053, 81.8815789474);
}
.mtitle4 span:before {
  left: -8px;
  -webkit-transform: rotate(-25deg);
  transform: rotate(-25deg);
}
.mtitle4 span:after {
  right: -8px;
  -webkit-transform: rotate(25deg);
  transform: rotate(25deg);
}
.mtitle4.white {
  color: #ffffff;
}
.mtitle4.white span:before, .mtitle4.white span:after {
  background-color: #ffffff;
}
@media all and (max-width: 900px) {
  .mtitle4 {
    margin-bottom: 15px;
  }
  .mtitle4 span {
    padding: 0 10px;
  }
}
@media all and (max-width: 639px) {
  .mtitle4 span:before, .mtitle4 span:after {
    bottom: -5px;
  }
}

.mtitle_sub {
  padding-left: 0.5em;
  font-weight: 600;
  position: relative;
  border-left: 6px solid #00A0E9;
  margin: 8px 0 15px;
  font-size: 1.1em;
  line-height: 1.4;
  text-align: left;
}
.mtitle_sub .hissu {
  color: #fff;
  background: rgb(29, 184.1931330472, 255);
  padding: 5px 8px;
  margin-right: 5px;
  font-size: 11px;
  border-radius: 20px;
}
.mtitle_sub:before {
  position: absolute;
  left: -6px;
  bottom: 0;
  content: "";
  width: 6px;
  height: 50%;
  background-color: #f14453;
}

.mtitle_box {
  background: #00A0E9;
  color: #fff;
  font-size: 1.8rem;
  position: relative;
  padding: 15px;
  margin-bottom: 25px;
  font-weight: 600;
}
.mtitle_box span {
  font-weight: normal;
  font-size: 14px;
  padding-left: 10px;
}
.mtitle_box:before {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f30a";
  font-weight: 900;
  display: block;
  right: -1px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #fff;
}
@media all and (max-width: 639px) {
  .mtitle_box {
    font-size: 1.5rem;
  }
}

.mtitle_box2 {
  background: #f14453;
  font-size: 1.8rem;
  color: #fff;
  position: relative;
  font-weight: 600;
  overflow: hidden;
  letter-spacing: 0.1rem;
  padding: 15px 10px 15px 20px;
  margin-bottom: 25px;
}
.mtitle_box2 .small-cap {
  font-weight: normal;
  font-size: 14px;
}
.mtitle_box2:before {
  background-color: #00A0E9;
  content: "";
  display: block;
  -webkit-transform: rotate(60deg);
          transform: rotate(60deg);
  position: absolute;
  bottom: -10px;
  right: -150px;
  width: 300px;
  height: 280px;
}
@media all and (max-width: 639px) {
  .mtitle_box2 {
    font-size: 1.4rem;
    line-height: 1.5;
    padding: 10px 10px 10px 15px;
    padding-right: 40px;
  }
  .mtitle_box2 span {
    font-size: 12px;
  }
  .mtitle_box2:before {
    width: 215px;
    right: -170px;
  }
}

.mtext0 {
  font-size: 1.8rem;
  line-height: 1.6;
  font-weight: 600;
  letter-spacing: 0.2em;
}
@media all and (max-width: 639px) {
  .mtext0 {
    font-size: 1.4rem;
  }
}

.mtext1 {
  font-size: 2.2rem;
  line-height: 1.6;
  font-weight: 600;
  letter-spacing: 0.2em;
}
.mtext1 .eng {
  display: block;
  font-family: "Quicksand", "Dosis", sans-serif;
  font-weight: 400;
  /*text-transform: uppercase;*/
  color: #413631;
  line-height: 1.4;
  font-size: 1.5rem;
}
@media all and (max-width: 639px) {
  .mtext1 {
    font-size: 1.6rem;
  }
}

.mtext2 {
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: 0.1rem;
  line-height: 1.6;
}
@media all and (max-width: 639px) {
  .mtext2 {
    font-size: 2rem;
  }
}

.mtitle_category {
  margin-bottom: 15px;
  font-size: 1.8rem;
  font-weight: normal;
}
.mtitle_category:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0ca";
  font-weight: 900;
  margin-right: 5px;
  color: #00A0E9;
}

/* btn
----------------------------------*/
.btn01 a {
  background: #fefefe;
  text-align: center;
  width: 300px;
  margin: 15px auto;
  color: #00A0E9;
  display: block;
  padding: 8px 5px;
  font-weight: 500;
  border: 2px solid #00A0E9;
  border-radius: 35px;
}
.btn01 a.mt {
  margin: 10px 0 0;
}
.btn01 a.center {
  margin: 0 auto;
}
.btn01 a:hover {
  background: #00A0E9;
  color: #fefefe;
}
.btn01.mail {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}
.btn01.mail a {
  background: #ffdf2c;
  margin: 15px auto 25px;
}
.btn01.mail a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
  margin-right: 5px;
}
@media all and (max-width: 639px) {
  .btn01 a {
    width: 95%;
  }
}

.btn02 {
  width: 300px;
  margin: 20px auto 20px;
}
.btn02 a {
  display: block;
  position: relative;
  padding: 15px 0;
  background-color: #f14453;
  line-height: 24px;
  letter-spacing: 0.1rem;
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
  color: #ffffff;
}
.btn02 a i {
  display: block;
  position: absolute;
  top: 50%;
  right: -10px;
  width: 50px;
  height: 1px;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn02 a:hover i {
  width: 34px;
}
@media all and (max-width: 639px) {
  .btn02 {
    width: 90%;
  }
  .btn02 a {
    font-size: 1.2rem;
  }
}

/* news
----------------------------------*/
.news {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  letter-spacing: 0;
  line-height: 1.7;
}
.news dt {
  width: 7em;
  padding: 3px 5px;
  background: #f0f0f0;
  text-align: center;
  color: #413631;
}
.news dd {
  padding: 5px;
  background: #fff;
  width: calc(100% - 8.5em);
  margin-left: 8px;
}
.news dt:not(:last-child),
.news dd:not(:last-child) {
  margin-bottom: 7px;
}

.news-bl {
  overflow: hidden;
}
.news-bl dt {
  float: left;
  width: 8em;
  padding: 5px;
  line-height: 1.3;
  color: #00A0E9;
  text-align: center;
  border: 1px solid #00A0E9;
  border-radius: 30px;
  background: rgba(159, 214, 226, 0.1);
  font-size: 1.3rem;
}
@media all and (max-width: 639px) {
  .news-bl dt {
    font-size: 13px;
  }
}
.news-bl dd {
  padding: 0 0 12px 9.2em;
  line-height: 1.6;
  border-bottom: 1px dotted #dddddd;
  margin: 0 0 10px;
}
.news-bl dd a {
  color: #52b0ff;
  background-image: -webkit-gradient(linear, left top, right top, from(#00A0E9), to(#52b0ff));
  background-image: linear-gradient(to right, #00A0E9, #52b0ff);
  padding-bottom: 0.25em;
  background-position: 100% 100%;
  background-size: 0% 1px;
  background-repeat: no-repeat;
  -webkit-transition: background-size 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: background-size 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  font-weight: 500;
}
.news-bl dd a:hover {
  background-position: 0 100%;
  background-size: 100% 1px;
}
.news-bl dd:last-child {
  margin: 0;
  border-bottom: none;
}
@media all and (max-width: 639px) {
  .news-bl dt {
    float: none;
  }
  .news-bl dd {
    padding: 8px 5px;
  }
}

.profile-dl {
  font-size: 1.4rem;
  text-align: left;
}
.profile-dl dt,
.profile-dl dd {
  padding: 4px 8px;
  letter-spacing: 0;
}
.profile-dl dt {
  background: #f2f4f4;
  color: #413631;
}
.profile-dl dd {
  margin: 4px 0 8px;
  padding: 5px;
}
@media all and (max-width: 639px) {
  .profile-dl {
    font-size: 13px;
  }
}

/* page-title
----------------------------------*/
.page-title {
  position: relative;
  z-index: 1;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28207/page-title.webp) no-repeat center 38%/cover;
  overflow: hidden;
}
.page-title:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: #00537a;
  opacity: 0.2;
}
.page-title .inner {
  margin: 0 auto;
  padding: 130px 0;
  max-width: 1200px;
  overflow: hidden;
}
.page-title .inner .page-lead {
  color: #fefefe;
  text-align: center;
  font-size: 2.2rem;
  position: relative;
  -webkit-transform: translateY(15px);
          transform: translateY(15px);
  letter-spacing: 0.2em;
  font-family: "YakuHanJP", "Zen Maru Gothic", Lato, "筑紫A丸ゴシック", "TsukuARoundGothic-Regular", "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN W4", "HG丸ｺﾞｼｯｸM-PRO", sans-serif;
  font-weight: 900;
}
.page-title .inner .page-lead .eng {
  display: block;
  font-family: "Quicksand", "Dosis", sans-serif;
  font-weight: 400;
  /*text-transform: uppercase;*/
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 5rem;
  color: #fff;
}
@media all and (max-width: 639px) {
  .page-title .inner .page-lead {
    font-size: 1.4rem;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  .page-title .inner .page-lead .eng {
    font-size: 2.5rem;
  }
}
@media all and (max-width: 900px) {
  .page-title .inner {
    width: 100%;
    padding: 60px 0;
  }
}

/* 波アニメーション用スタイル（追加・統合）
----------------------------------*/
.nami {
  position: absolute;
  left: 0;
  bottom: -1px; /* 下部に生まれる隙間を埋めるため少し調整 */
  width: 100%;
  height: 60px; /* Canvasの高さに合わせる */
  display: block;
  z-index: 2; /* 背景やタイトルの上、または背後に合わせて数値を調整してください */
  overflow: hidden;
}
.nami #canvas-container {
  width: 100%;
  height: 100%;
}
.nami canvas {
  display: block;
  width: 100%;
  height: 100%;
}
.nami.flipped {
  top: -10px;
  bottom: auto;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  z-index: -1;
}

@media all and (max-width: 639px) {
  .nami {
    width: 100%;
    bottom: -1px;
    height: 40px; /* スマホ用に少し低くする場合はここを調整 */
  }
}
.bg-01 {
  background: url(../img/bg-01.jpg) no-repeat bottom left/cover;
  padding: 40px 0;
}
.bg-01.swide {
  padding: 0;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 40px;
  width: calc(100% - 80px);
}
@media all and (max-width: 900px) {
  .bg-01.swide {
    width: calc(100% - 20px);
  }
}

.bg-02 {
  background: url(../img/bg-02.jpg) no-repeat center/cover;
}

.bg-03 {
  background: url(../img/bg-03.jpg) no-repeat center/cover;
  margin-bottom: 240px;
}

.bg-wood {
  position: relative;
}
.bg-wood:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../img/bg-wood.png);
  opacity: 0.6;
}

.bg-texture {
  position: relative;
}
.bg-texture:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../img/texture.png);
  opacity: 0.4;
}

.bg-gradient {
  position: relative;
  background: rgba(255, 223, 44, 0.3);
  overflow: hidden;
}
.bg-gradient:before {
  content: "";
  position: absolute;
  bottom: -160px;
  left: 0;
  width: 100%;
  height: 320px;
  background: #ffdf2c;
  -webkit-transform: skewY(4deg);
          transform: skewY(4deg);
  opacity: 0.6;
}
.bg-gradient:after {
  content: "";
  position: absolute;
  bottom: -160px;
  left: 0;
  width: 100%;
  height: 260px;
  background: #cee2b3;
  -webkit-transform: skewY(-3deg);
          transform: skewY(-3deg);
  opacity: 0.6;
}

.bg-base {
  position: relative;
}
.bg-base:before {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  width: calc(100% - 80px);
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #fefefe;
}
@media all and (max-width: 900px) {
  .bg-base:before {
    width: calc(100% - 20px);
  }
}
.bg-base .inner {
  position: relative;
  z-index: 3;
}
.bg-base.tm40 {
  margin: 40px auto 0;
}
.bg-base.type1 {
  background: transparent;
  position: relative;
}
.bg-base.type1:before {
  background: #00A0E9;
  opacity: 0.3;
}
.bg-base.type2 .inner {
  position: relative;
  z-index: 3;
}
.bg-base.type2:before {
  background: url(../img/bg-wood.png);
  opacity: 0.6;
}

.bg-green {
  background: rgba(206, 226, 179, 0.3);
}

.bg-gray {
  position: relative;
  background: rgba(242, 244, 244, 0.5);
  margin: auto;
}
@media all and (max-width: 900px) {
  .bg-gray {
    width: 100%;
  }
}
.bg-gray.bg-half {
  background: transparent;
  background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(50%, transparent), color-stop(50.1%, rgba(242, 244, 244, 0.5)), to(rgba(242, 244, 244, 0.5)));
  background-image: linear-gradient(to bottom, transparent 0%, transparent 50%, rgba(242, 244, 244, 0.5) 50.1%, rgba(242, 244, 244, 0.5) 100%);
}

.bg-gray2 {
  position: relative;
  margin-bottom: 60px;
}
.bg-gray2:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 90%;
  height: 90%;
  z-index: -1;
  background: #f14453;
  opacity: 0.2;
}
.bg-gray2.type1:before {
  height: 100%;
}

.bg-beige2 {
  position: relative;
  margin-bottom: 40px;
}
.bg-beige2:before {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  width: 60%;
  height: 100%;
  z-index: -1;
  /*background: $beige;*/
  background: #f5f7f9;
}
@media all and (max-width: 639px) {
  .bg-beige2:before {
    width: 70%;
  }
}

.bg-999 {
  background: #888;
}

.bg-blue {
  background: rgba(159, 214, 226, 0.1);
}
.bg-blue.bg-half {
  background: transparent;
  background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(50%, transparent), color-stop(50.1%, rgb(198.168, 230.728, 237.832)), to(rgb(198.168, 230.728, 237.832)));
  background-image: linear-gradient(to bottom, transparent 0%, transparent 50%, rgb(198.168, 230.728, 237.832) 50.1%, rgb(198.168, 230.728, 237.832) 100%);
}

.bg-beige {
  background: -webkit-gradient(linear, left top, right top, from(rgba(250, 249, 245, 0.7)), to(rgba(250, 249, 245, 0.4)));
  background: linear-gradient(to right, rgba(250, 249, 245, 0.7), rgba(250, 249, 245, 0.4));
}

.bg-base2 {
  background: repeating-linear-gradient(45deg, rgba(0, 160, 233, 0.1) 0, rgba(0, 160, 233, 0.1) 20px, #fefefe 20px, #fefefe 40px);
}

/* tbl
----------------------------------*/
.tbl {
  width: 100%;
}
.tbl th,
.tbl td {
  padding: 15px;
  vertical-align: middle;
  border: 1px solid #ddd;
}
.tbl th {
  color: #52b0ff;
  background: #f2f4f4;
  width: 25%;
}
.tbl th span {
  font-size: 1.4rem;
}
.tbl .cell01 {
  width: 25%;
}
.tbl.sbc th {
  color: #f14453;
}
@media all and (max-width: 639px) {
  .tbl th {
    width: 35%;
    text-align: left;
  }
  .tbl th,
  .tbl td {
    padding: 10px;
  }
}

.tbl_new {
  margin: 0 auto;
  width: 100%;
}
.tbl_new tr th,
.tbl_new tr td {
  vertical-align: middle;
  padding: 15px 10px;
  font-size: 1.4rem;
}
@media all and (max-width: 639px) {
  .tbl_new tr th,
  .tbl_new tr td {
    font-size: 13px;
  }
}
.tbl_new tr th {
  font-weight: 600;
  width: 30%;
  color: #413631;
  text-align: left;
  padding-left: 30px;
  letter-spacing: 0;
}
@media all and (max-width: 639px) {
  .tbl_new tr th {
    width: 25%;
    padding-left: 10px;
  }
}
.tbl_new tr:nth-child(odd) th, .tbl_new tr:nth-child(odd) td {
  background: rgba(241, 68, 83, 0.2);
}

.tbl-border {
  width: 100%;
}
.tbl-border th,
.tbl-border td {
  padding: 15px;
  border-bottom: 2px solid #ddd;
  vertical-align: middle;
  font-size: 1.5rem;
}
@media all and (max-width: 639px) {
  .tbl-border th,
  .tbl-border td {
    padding: 10px;
    font-size: 1.2rem;
  }
}
.tbl-border th {
  width: 25%;
  color: #413631;
  border-bottom-color: #00A0E9;
  font-weight: 600;
}
.tbl-border th.th-1 {
  width: 45%;
}
@media all and (max-width: 639px) {
  .tbl-border th {
    width: 30%;
  }
}

.price {
  font-family: "Lato", sans-serif;
  font-weight: 500;
  font-size: 2rem;
  color: #f09f2e;
}
@media all and (max-width: 639px) {
  .price {
    font-size: 1.4rem;
  }
}

.company {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 5px;
}
.company th,
.company td {
  padding: 10px 10px;
  vertical-align: middle;
}
.company th {
  width: 20%;
  position: relative;
  background: #f14453;
  color: #fff;
}
.company th::after {
  left: 100%;
  top: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: #f9f9f9;
  border-width: 10px;
  border-left-color: #f14453;
  margin-top: -10px;
}
.company td {
  background: #f9f9f9;
  padding-left: 20px;
}

.tbl0 {
  width: 100%;
}
.tbl0 th,
.tbl0 td {
  padding: 3px 5px;
  border: 0;
}
.tbl0 th {
  padding-left: 0;
  font-weight: normal;
  background: none;
  width: 25%;
  color: #111;
}
.tbl0 th:after, .tbl0 th:before {
  display: none;
}
@media all and (max-width: 639px) {
  .tbl0 th {
    width: 40%;
  }
}

/* ggmap
----------------------------------*/
.ggmap {
  position: relative;
  /*padding-bottom: 46.25%;*/
  padding-bottom: 30%;
  height: 0;
  overflow: hidden;
}
.ggmap iframe,
.ggmap object,
.ggmap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.ggmap.youtube {
  padding-bottom: 56.25%;
}
@media all and (max-width: 639px) {
  .ggmap {
    padding-bottom: 60%;
  }
}

/* list
----------------------------------*/
.list_common li {
  padding-bottom: 5px;
  padding-left: 1rem;
  margin-bottom: 5px;
  border-bottom: 1px dotted #cccccc;
}
.list_common li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.list_policy li {
  font-family: "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-size: 2.5rem;
  padding: 15px 5px 15px 40px;
  font-weight: 500;
  position: relative;
}
.list_policy li:not(:last-child) {
  margin-bottom: 5px;
  border-bottom: 1px solid #eee;
}
.list_policy li:before {
  position: absolute;
  content: "";
  width: 25px;
  height: 1px;
  top: 50%;
  left: 0;
  background: #cee2b3;
}
@media all and (max-width: 900px) {
  .list_policy li {
    font-size: 2rem;
  }
}
@media all and (max-width: 639px) {
  .list_policy {
    padding: 15px;
  }
  .list_policy li {
    font-size: 1.4rem;
  }
}

.list_check.type1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.list_check.type1 li {
  padding: 10px 10px 10px 40px;
  width: 48%;
}
.list_check.type1 li:nth-child(2n) {
  margin-left: 4%;
}
@media all and (max-width: 639px) {
  .list_check.type1 li {
    width: 95%;
    margin: 0 auto 5px;
  }
  .list_check.type1 li:nth-child(2n) {
    margin-left: auto;
  }
}
.list_check li {
  padding: 10px 10px 10px 40px;
  position: relative;
  margin-bottom: 10px;
  background: #fff;
  border-radius: 10px;
}
.list_check li span {
  font-weight: normal;
  font-size: 0.9em;
  display: block;
  color: #413631;
  margin-top: 10px;
}
.list_check li:before {
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
  top: 10px;
  left: 5px;
  background: #fff1ee;
  border-radius: 50%;
}
@media all and (max-width: 639px) {
  .list_check li {
    width: 98%;
    margin: 0 auto 10px;
    font-size: 1.3rem;
  }
}

.list_check2 li {
  padding: 4px 8px;
  font-weight: 500;
}
.list_check2 li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  font-weight: 900;
  margin-right: 8px;
  color: #f14453;
}
.list_check2 li:not(:last-child) {
  margin-bottom: 4px;
  border-bottom: 2px solid #fff;
}

.list-inline2 {
  text-align: center;
}
.list-inline2 li {
  display: inline-block;
  padding: 4px 15px;
  background: #fefefe;
  border: 1px solid #9fd6e2;
  font-weight: 500;
  border-radius: 30px;
}
.list-inline2 li:not(:last-child) {
  margin-right: 8px;
}

.list-inline li {
  display: inline-block;
  padding: 3px;
}
.list-inline li:not(:last-of-type):after {
  content: "/";
  margin: 0 5px;
  color: #00A0E9;
  font-weight: normal;
}
@media all and (max-width: 639px) {
  .list-inline li {
    display: block;
    padding: 0;
  }
  .list-inline li:before {
    content: "-";
    color: #00A0E9;
  }
  .list-inline li:not(:last-of-type):after {
    display: none;
  }
}

.ol-list {
  counter-reset: number;
  list-style: none;
  padding: 5px;
}
.ol-list.type1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.ol-list.type1 > li {
  width: 48%;
}
.ol-list.type1 > li:nth-child(2n) {
  margin-left: 4%;
}
.ol-list li {
  line-height: 2;
  color: #413631;
  margin-bottom: 10px;
  padding-bottom: 10px;
  font-weight: 500;
  font-size: 1.7rem;
}
.ol-list li span {
  font-weight: normal;
  display: block;
  padding: 10px;
  line-height: 1.6;
}
.ol-list li:before {
  counter-increment: number;
  content: counter(number);
  background: rgba(0, 160, 233, 0.6);
  display: inline-block;
  width: 2em;
  height: 2em;
  text-align: center;
  font-family: "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-size: 2rem;
  color: #222;
  margin-right: 10px;
  border-radius: 100%;
}
@media all and (max-width: 639px) {
  .ol-list li {
    font-size: 1.3rem;
  }
  .ol-list li span {
    font-size: 0.9em;
  }
  .ol-list li:before {
    font-size: 1.8rem;
  }
}

.list_disc li {
  padding: 3px 0 3px 20px;
  position: relative;
}
.list_disc li:not(:last-of-type) {
  margin-bottom: 3px;
}
.list_disc li:before {
  position: absolute;
  content: "●";
  font-size: 10px;
  color: #00A0E9;
  top: 9px;
  left: 0;
}
.list_disc.sbc li:before {
  color: #f14453;
}

.list-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.list-btn li {
  width: 32%;
  margin: 0 1.995% 10px 0;
}
.list-btn li a {
  display: block;
  background: #faf9f5;
  color: #413631;
  font-weight: 500;
  padding: 10px 3px;
  text-align: center;
  width: 100%;
  height: 100%;
  line-height: 1.5;
  font-size: 1.5rem;
  letter-spacing: 0;
}
.list-btn li:nth-child(3n) {
  margin-right: 0;
}
@media all and (max-width: 639px) {
  .list-btn li {
    width: 90%;
    margin: 0 auto 10px;
  }
  .list-btn li a {
    font-size: 1.2rem;
  }
  .list-btn li:nth-child(3n) {
    margin-right: auto;
  }
}
.list-btn.type1 {
  max-width: 1000px;
  margin: 0 auto 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.list-btn.type1 li a {
  background: #cee2b3;
  border: 1px solid rgb(0, 124.9785407725, 182);
}
.list-btn.type1 li a:hover {
  background: rgb(229.8, 240.0857142857, 215.9142857143);
}
.list-btn.type1 li a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f13a";
  font-weight: 900;
  margin-right: 5px;
}

/* ブログcms
----------------------------------*/
#top-blog .pages {
  display: none;
}

.blog-content * {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.blog-content > li {
  position: relative;
  padding: 10px 0;
  border-bottom: 0.9px solid #dee0e6;
}
.blog-content > li:not(:last-of-type) {
  margin-bottom: 10px;
}
.blog-content > li > a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 8px;
  top: 0;
  left: 0;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.blog-content > li > a:hover {
  -webkit-transform: translateY(-6px);
  transform: translateY(-6px);
  background-color: rgba(0, 144, 213, 0.06);
  border-radius: 10px;
}
.blog-content > li > a:hover .blog-img img {
  opacity: 1;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

@media all and (max-width: 639px) {
  .blog-content > li {
    width: 90%;
    margin: 0 auto 10px;
  }
}
.blog-img {
  width: 140px;
  height: 100px;
  overflow: hidden;
  border-radius: 10px;
}
.blog-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  font-family: "object-fit: cover;";
  /*IE対策*/
}
.blog-img:hover img {
  opacity: 1 !important;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.product-img {
  height: 177px;
  overflow: hidden;
  border-radius: 10px;
}
.product-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  font-family: "object-fit: cover;";
  /*IE対策*/
}
.product-img:hover img {
  opacity: 1 !important;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

@media all and (max-width: 639px) {
  .blog-img {
    width: 90px;
    height: 60px;
  }
  .product-img {
    height: 120px;
  }
}
.blog-detail {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-left: 25px;
}

@media all and (max-width: 639px) {
  .blog-detail {
    margin-left: 20px;
  }
}
.blog-category {
  display: inline-block;
  padding: 5px;
  line-height: 1.3;
  text-align: center;
  background: #111;
}

.blog-date time {
  width: 100px;
  padding: 5px;
  line-height: 1.3;
  text-align: center;
  display: inline-block;
  color: #3ebef0;
  font-size: 13px;
  border: 1px solid #3ebef0;
  border-radius: 30px;
}

.blog-date2 {
  color: #00A0E9;
  font-size: 0.9em;
  margin-bottom: 5px;
  margin-right: 5px;
}
.blog-date2:before {
  font-family: "Font Awesome 5 Free";
  content: "\f017";
  font-weight: 900;
  margin-right: 5px;
}

.blog-title {
  font-weight: 600;
  line-height: 1.3;
  margin: 10px 0;
  color: #4d2c2b;
}

.blog-txt {
  line-height: 1.5;
  color: #0C6733;
  padding: 10px;
}

@media all and (max-width: 639px) {
  .blog-txt {
    font-size: 12px;
  }
}
.pages {
  text-align: center;
  margin-top: 30px;
}
.pages .page_next, .pages .page_prev {
  display: inline-block;
  margin: 0 20px;
}
.pages .page_next a, .pages .page_prev a {
  color: #1f62ce;
  padding: 4px 5px;
  font-size: 14px;
}

.category_nav {
  border: 1px solid #dddddd;
}
.category_nav li a {
  display: block;
  padding: 15px;
  border-bottom: 1px dotted #dddddd;
  background-color: #ffffff;
}
.category_nav li a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0a9";
  font-weight: 900;
  margin-right: 5px;
}
.category_nav li a:hover {
  background: #f2f4f5;
}
.category_nav li:last-child a {
  border-bottom: none;
}

.blog-month {
  margin-bottom: 10px;
}
.blog-month ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.blog-month ul li {
  width: 49%;
  padding: 5px 0;
  margin-bottom: 5px;
  text-align: center;
  letter-spacing: 0;
  background: #3ebef0;
  border-radius: 10px;
}
.blog-month ul li:nth-child(2n) {
  margin-left: 2%;
}
.blog-month ul li a {
  color: #fff;
  font-size: 13px;
}

/* etc
----------------------------------*/
.fluid-img {
  padding-right: 20px;
  padding-bottom: 20px;
}
.fluid-img img {
  -webkit-animation: fluidrotate 15s ease 0s infinite;
          animation: fluidrotate 15s ease 0s infinite;
}
@media all and (max-width: 900px) {
  .fluid-img {
    padding-right: 10px;
    padding-bottom: 10px;
  }
  .fluid-img img {
    -webkit-animation: fluidrotate 15s ease 0s infinite;
            animation: fluidrotate 15s ease 0s infinite;
  }
}

@-webkit-keyframes fluidrotate {
  0%, 100% {
    border-radius: 50% 50% 45% 55%/55% 45% 55% 45%;
  }
  20% {
    border-radius: 60% 40% 60% 40%/45% 55% 45% 55%;
  }
  40% {
    border-radius: 45% 55% 40% 60%/60% 45% 55% 40%;
  }
  60% {
    border-radius: 55% 45% 65% 35%/40% 65% 35% 60%;
  }
  80% {
    border-radius: 40% 60% 55% 45%/55% 40% 60% 45%;
  }
}

@keyframes fluidrotate {
  0%, 100% {
    border-radius: 50% 50% 45% 55%/55% 45% 55% 45%;
  }
  20% {
    border-radius: 60% 40% 60% 40%/45% 55% 45% 55%;
  }
  40% {
    border-radius: 45% 55% 40% 60%/60% 45% 55% 40%;
  }
  60% {
    border-radius: 55% 45% 65% 35%/40% 65% 35% 60%;
  }
  80% {
    border-radius: 40% 60% 55% 45%/55% 40% 60% 45%;
  }
}
.server-reset .child.sentence {
  position: relative;
}
.server-reset .reset-lead {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 6px;
}
@media all and (max-width: 639px) {
  .server-reset .reset-lead {
    font-size: 17px;
    margin-top: -20px;
  }
}
.server-reset .reset-title {
  font-size: 30px;
  font-weight: bold;
  line-height: 1.35;
  margin-bottom: 8px;
}
.server-reset .reset-title .hl {
  color: #00A0E9;
}
.server-reset .reset-title2 {
  font-size: 30px;
  font-weight: bold;
  color: #00A0E9;
  line-height: 1.35;
  margin-bottom: 18px;
}
.server-reset .reset-badge {
  position: absolute;
  top: 66px;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 95px;
  height: 95px;
  padding: 8px;
  border-radius: 50%;
  background-color: #00A0E9;
  color: #fff;
  font-size: 10px;
  font-weight: bold;
  line-height: 1.35;
  text-align: center;
  -webkit-box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.12);
          box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.12);
}
.server-reset .reset-note {
  font-size: 11px;
  color: #555555;
  line-height: 1.6;
  margin-top: 16px;
}
@media all and (max-width: 900px) {
  .server-reset .reset-title,
  .server-reset .reset-title2 {
    font-size: 24px;
  }
  .server-reset .reset-badge {
    position: static;
    margin: 0 0 0 auto;
    width: 88px;
    height: 88px;
  }
}

.img-chosei {
  -o-object-fit: contain;
     object-fit: contain;
  height: 215px !important;
}

.img-chosei_c {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 215px !important;
  border-radius: 8px;
}

.img-chosei2 {
  -o-object-fit: contain;
     object-fit: contain;
  height: 400px !important;
}

.chosei {
  margin-bottom: 120px;
}
@media all and (max-width: 900px) {
  .chosei {
    margin-bottom: 60px;
  }
}

.chosei2 {
  margin-bottom: 60px;
}
@media all and (max-width: 900px) {
  .chosei2 {
    margin-bottom: 40px;
  }
}

.chosei3 {
  margin-bottom: 40px;
}
@media all and (max-width: 900px) {
  .chosei3 {
    margin-bottom: 30px;
  }
}

.chosei4 {
  margin-bottom: 25px;
}
@media all and (max-width: 900px) {
  .chosei4 {
    margin-bottom: 15px;
  }
}

.cut {
  overflow: hidden;
  zoom: 1;
}

.w300 {
  width: 300px;
}
@media all and (max-width: 639px) {
  .w300 {
    width: 100%;
  }
}

.column2.greeting.tp {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.column2.greeting .child.w300 {
  width: 300px;
  margin-right: 50px;
}
.column2.greeting .child.sentence {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: auto;
}
@media all and (max-width: 900px) {
  .column2.greeting .child.w300,
  .column2.greeting .child.sentence {
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
  .column2.greeting .child.w300 {
    margin-right: 0;
  }
}

.spbr {
  display: none;
}

.color1 {
  color: #00A0E9;
}

.color2 {
  color: #f14453;
}

.color3 {
  color: #52b0ff;
}

.color4 {
  color: rgb(123.1578947368, 102.3157894737, 92.8421052632);
}

.color5 {
  color: #9fd6e2;
}

.relative {
  position: relative;
}

.num {
  font-weight: 500;
}
.num a {
  color: #00A0E9;
  font-size: 2.8rem;
  text-align: center;
  margin-left: 5px;
}
@media all and (max-width: 639px) {
  .num a {
    font-size: 2rem;
  }
}
.num a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  margin-right: 5px;
}
.num a:hover {
  color: #f09f2e;
}

.telbox {
  max-width: 600px;
  margin: 0 auto 20px;
  padding: 20px;
  background: #333;
  text-align: center;
}
.telbox .inner {
  background: #fff;
  padding: 10px;
}

.txt-link {
  font-weight: 600;
  text-decoration: underline;
  color: rgb(0, 124.9785407725, 182);
}
.txt-link:hover {
  text-decoration: none;
}

/* breadcrumb
----------------------------------*/
.breadcrumb {
  max-width: 1200px;
  margin: 20px auto 20px;
  font-size: 1.2rem;
  /*text-align: center;*/
}
.breadcrumb li {
  display: inline;
  color: #aaa;
}
.breadcrumb li a {
  color: #00A0E9;
}
.breadcrumb li + li:before {
  margin: 0 10px;
  content: "/";
}
@media all and (max-width: 639px) {
  .breadcrumb {
    font-size: 12px;
  }
}

/* form
----------------------------------*/
.form {
  margin: 0 auto;
  /*width: 90%;*/
}
.form dl dt {
  float: left;
  width: 280px;
  padding-top: 20px;
  font-weight: 600;
}
.form dl dt span {
  color: #fff;
  background: #00A0E9;
  padding: 5px 8px;
  margin-right: 5px;
  font-size: 11px;
  border-radius: 20px;
  position: relative;
  top: -2px;
}
.form dl dt span.nini {
  background: #ffdf2c;
  color: #413631;
}
.form dl dd {
  padding-left: 280px;
  padding-bottom: 20px;
  padding-top: 23px;
  line-height: 1.5;
  border-bottom: 1px dotted #cccccc;
}
.form dl dd:last-child {
  border-bottom: none;
}
.form .textarea,
.form textarea {
  border: 0;
  padding: 15px;
  width: 100%;
  border-radius: 0;
  -webkit-appearance: none;
  background: #f0f0f0;
}
.form .textarea02 {
  width: 48.5%;
  margin-right: 3%;
}
.form .textarea02:last-child {
  margin-right: 0;
}
.form .textarea03 {
  width: 20%;
  margin-right: 1%;
}
.form button {
  cursor: pointer;
  display: block;
  color: #f14453;
  text-align: center;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  border: 1px solid #f14453;
  font-weight: 500;
  padding: 12px 5px;
  margin: 0 auto;
  width: 250px;
  background: rgba(0, 160, 233, 0.1);
  border-radius: 25px;
  font-family: "YakuHanJP", "Zen Maru Gothic", Lato, "筑紫A丸ゴシック", "TsukuARoundGothic-Regular", "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN W4", "HG丸ｺﾞｼｯｸM-PRO", sans-serif;
}
.form button:hover {
  background: #f14453;
  color: #fff;
}
.form button:before {
  font-weight: normal;
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
  margin-right: 10px;
}
.form .select-wrap {
  position: relative;
  overflow: hidden;
  display: inline-block;
  min-width: 192px;
  min-width: 12em;
  background-color: #f0f0f0;
  border: 0;
  color: #333;
}
.form .select-wrap select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  z-index: 2;
  display: block;
  width: 200%;
  width: -webkit-calc(100% + 5em);
  margin: 0;
  padding: 15px 35px 15px 15px;
  background: transparent;
  border: 0;
  outline: none;
  line-height: 1.5;
}
.form .entypo-down-open-mini:before {
  font-family: "Font Awesome 5 Free";
  content: "\f078";
  font-weight: 900;
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 12px;
  right: 0.75rem;
  margin-top: -8px;
  margin-top: -0.5rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1;
  color: #00A0E9;
  font-weight: 700;
}
.form label.radio_text {
  cursor: pointer;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
  padding-left: 20px;
  display: inline-block;
}
.form label.radio_text:before {
  position: absolute;
  width: 15px;
  height: 15px;
  border: 1px solid #ccc;
  border-radius: 50%;
  left: 0px;
  top: 2px;
  content: "";
  z-index: 3;
}
.form label.radio_text:after {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 100%;
  left: 2px;
  top: 4px;
  background-color: #00A0E9;
  z-index: 1;
}
.form label.radio_text input[type=radio] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  z-index: 2;
  width: 20px;
  height: 20px;
  left: -23px;
  top: 0px;
  margin: 0px;
  -webkit-box-shadow: 20px -1px #fff;
          box-shadow: 20px -1px #fff;
}
.form label.radio_text input[type=radio]:checked {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.form label.radio_text input[type=radio]:focus {
  opacity: 0.2;
  -webkit-box-shadow: 20px -1px #eeebda;
          box-shadow: 20px -1px #eeebda;
}
.form label.checkbox_text {
  cursor: pointer;
  position: relative;
  padding-left: 25px;
  margin: 0 20px 5px 0;
  overflow: hidden;
  display: inline-block;
}
.form label.checkbox_text:before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 0px;
  top: 0;
  border: 1px solid #ccc;
  z-index: 3;
  padding: 1px;
}
.form label.checkbox_text:after {
  content: "";
  position: absolute;
  top: 40%;
  left: 5px;
  display: block;
  margin-top: -9px;
  width: 8px;
  height: 12px;
  border-right: 3px solid #00A0E9;
  border-bottom: 3px solid #00A0E9;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  z-index: 1;
}
@media all and (max-width: 639px) {
  .form label.checkbox_text:after {
    margin-top: -18px;
  }
}
.form label.checkbox_text input[type=checkbox] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  left: -40px;
  width: 20px;
  height: 20px;
  display: block;
  -webkit-box-shadow: 41px 0px #fff;
          box-shadow: 41px 0px #fff;
  z-index: 2;
  margin: 0px;
  padding: 0px;
}
.form label.checkbox_text input[type=checkbox]:checked {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.form label.checkbox_text input[type=checkbox]:checked:focus {
  -webkit-box-shadow: 40px 0px #666;
          box-shadow: 40px 0px #666;
  opacity: 0.1;
}
.form label.checkbox_text input[type=checkbox]:focus {
  -webkit-box-shadow: 41px 0px #eee;
          box-shadow: 41px 0px #eee;
}
.form input[type=text],
.form textarea {
  font-size: 16px;
}
@media all and (max-width: 639px) {
  .form input[type=text],
  .form textarea {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    margin-left: -5px;
  }
}

.fm-txt {
  font-size: 1.4rem;
  background: rgba(255, 255, 255, 0.5);
  padding: 5px;
}

.thanks {
  padding: 40px;
  border: 3px solid #fefefe;
  -webkit-box-shadow: 0 0 0 6px rgba(0, 160, 233, 0.2);
          box-shadow: 0 0 0 6px rgba(0, 160, 233, 0.2);
  max-width: 700px;
  margin: 0 auto;
  background: #fcfcfc;
  border-radius: 5px;
}
@media all and (max-width: 639px) {
  .thanks {
    max-width: 90%;
    padding: 30px 20px;
  }
}

.shadow {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

.policy {
  padding: 30px;
  background: #fff;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.policy .policy-box {
  letter-spacing: 0;
}
@media all and (max-width: 639px) {
  .policy {
    padding: 20px;
  }
}

.mtitle_small {
  position: relative;
  background: #ffffff;
  border: 1px solid #eee;
  text-align: left;
  padding: 15px 15px 15px 30px;
  margin-bottom: 25px;
  font-family: "YakuHanJP", "Zen Maru Gothic", Lato, "筑紫A丸ゴシック", "TsukuARoundGothic-Regular", "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN W4", "HG丸ｺﾞｼｯｸM-PRO", sans-serif;
  font-weight: 500;
  letter-spacing: 0.2em;
  font-size: 2rem;
}
@media all and (max-width: 900px) {
  .mtitle_small {
    font-size: 1.6rem;
  }
}
@media all and (max-width: 639px) {
  .mtitle_small {
    font-size: 1.45rem;
  }
}
.mtitle_small {
  color: #413631;
  border-radius: 10px;
}
.mtitle_small:before {
  position: absolute;
  top: 15%;
  left: 10px;
  width: 5px;
  height: 70%;
  content: "";
  background: rgba(0, 160, 233, 0.8);
  border-radius: 50px;
}
.mtitle_small.type1:before {
  background: rgba(241, 68, 83, 0.8);
}
@media all and (max-width: 639px) {
  .mtitle_small {
    padding: 10px 5px 10px 20px;
    margin-bottom: 20px;
  }
  .mtitle_small:before {
    left: 5px;
  }
}

.mtitle_small2 {
  position: relative;
  margin-bottom: 10px;
  padding-left: 20px;
  font-size: 110%;
  letter-spacing: 0.1em;
}
.mtitle_small2:before {
  content: "";
  background-color: #00A0E9;
  width: 10px;
  height: 4px;
  position: absolute;
  top: 0.6em;
  left: 0;
}

.mtitle_small3 {
  padding: 10px 0;
  border-top: 1px solid #00A0E9;
  border-bottom: 1px solid #00A0E9;
  font-family: "YakuHanJP", "Zen Maru Gothic", Lato, "筑紫A丸ゴシック", "TsukuARoundGothic-Regular", "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN W4", "HG丸ｺﾞｼｯｸM-PRO", sans-serif;
  font-weight: 500;
  letter-spacing: 0.2em;
  font-size: 1.8rem;
}
@media all and (max-width: 900px) {
  .mtitle_small3 {
    font-size: 1.5rem;
  }
}
@media all and (max-width: 639px) {
  .mtitle_small3 {
    font-size: 1.35rem;
    letter-spacing: 0.15em;
  }
}
.mtitle_small3 {
  margin-bottom: 20px;
  color: #413631;
}
.mtitle_small3:before {
  content: "―";
  margin-right: 8px;
  color: #00A0E9;
}
.mtitle_small3.type1 {
  border-top: 1px solid #f14453;
  border-bottom: 1px solid #f14453;
}
.mtitle_small3.type1:before {
  color: #f14453;
}
@media all and (max-width: 639px) {
  .mtitle_small3 {
    margin-bottom: 15px;
    padding: 8px 0;
  }
}

/* gallery(photobox)
----------------------------------*/
.gallery_ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -2%;
}
@media all and (max-width: 639px) {
  .gallery_ul {
    margin-left: auto;
    margin-right: auto;
  }
}
.gallery_ul > li {
  width: 31.33%;
  margin-left: 2%;
  margin-bottom: 4%;
}
.gallery_ul > li .photobox-wrap {
  width: 100%;
  height: 240px;
  text-align: center;
  overflow: hidden;
  background: rgba(241, 68, 83, 0.1);
  margin-bottom: 10px;
}
.gallery_ul > li .photobox-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit:cover;";
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
@media all and (max-width: 900px) {
  .gallery_ul > li {
    width: 48%;
  }
}
@media all and (max-width: 639px) {
  .gallery_ul > li {
    width: 85%;
    margin: 0 auto 30px;
  }
  .gallery_ul > li .photobox-wrap {
    height: 180px;
  }
}

.comment {
  font-size: 1.4rem;
  letter-spacing: 0;
  padding: 0 5px;
  color: #413631;
}
@media all and (max-width: 639px) {
  .comment {
    font-size: 12px;
  }
}

/*photoギャラリー*/
.gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.gallery li {
  width: 32%;
  margin: 0 2% 15px 0;
}
.gallery li:nth-child(3n) {
  margin-right: 0;
}
.gallery li a {
  background: rgba(250, 249, 245, 0.2);
  display: block;
  text-align: center;
  padding: 0px;
  height: 240px;
}
.gallery li a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  /*IE対策*/
}
.gallery li p {
  text-align: center;
  font-size: 90%;
  margin: 3px 0 0;
}

@media all and (max-width: 900px) {
  .gallery li {
    width: 48%;
    margin: 0 2% 15px 0;
  }
  .gallery li:nth-child(3n) {
    margin-right: auto;
  }
  .gallery li:nth-child(2n) {
    margin-right: 0;
  }
  .gallery li a {
    height: 120px;
  }
}
@media all and (max-width: 639px) {
  .gallery li {
    width: 90%;
    margin: 0 auto 15px;
  }
  .gallery li:nth-child(2n) {
    margin-right: auto;
  }
  .gallery li a {
    height: 180px;
  }
  .gallery li:last-child {
    margin-bottom: 0;
  }
}
.list2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: -50px;
}
@media all and (max-width: 639px) {
  .list2 {
    margin-top: -25px;
  }
}
.list2.type1 > li,
.list2.type1 .child {
  background: #fefefe;
  padding: 25px;
}
@media all and (max-width: 639px) {
  .list2.type1 > li,
  .list2.type1 .child {
    padding: 15px;
  }
}
.list2 > li,
.list2 .child {
  width: 48%;
  margin-top: 50px;
}
.list2 > li:nth-child(2n),
.list2 .child:nth-child(2n) {
  margin-left: 4%;
}
@media all and (max-width: 639px) {
  .list2 > li:nth-child(2n),
  .list2 .child:nth-child(2n) {
    margin-left: auto;
  }
}
@media all and (max-width: 639px) {
  .list2 > li,
  .list2 .child {
    width: 100%;
    margin: 25px auto 0;
  }
}

.list3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.list3 li {
  width: 32.5%;
  position: relative;
  margin: 0 1.25% 15px 0;
}
.list3 li:nth-child(3n) {
  margin-right: 0;
}
@media all and (max-width: 639px) {
  .list3 li {
    width: 95%;
    margin: 0 auto 15px;
  }
  .list3 li:nth-child(3n) {
    margin-right: auto;
  }
}

.list4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.list4 li {
  width: 24%;
  margin: 0 1.3333333333% 25px 0;
}
.list4 li:nth-child(4n) {
  margin-right: 0;
}

.prv dt {
  color: #00A0E9;
  border-bottom: 1px solid #ccc;
  margin: 10px 0;
}

#works:before {
  content: "";
  height: 80px;
  margin-top: -80px;
  display: block;
  visibility: hidden;
}

.note {
  padding: 15px;
  margin-top: 10px;
  background: #fff1ee;
}

.note2 {
  padding: 10px;
  background: rgba(206, 226, 179, 0.4);
  color: #413631;
  border-radius: 30px;
}

.flow-dl.type1 dt {
  color: #52b0ff;
}
.flow-dl.type1 dt span {
  color: #9fd6e2;
}
.flow-dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.flow-dl .inner {
  /*width: 48%;*/
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px;
  background: #fefefe;
  border-radius: 15px;
  -webkit-box-shadow: 0 0 15px rgba(65, 54, 49, 0.05);
          box-shadow: 0 0 15px rgba(65, 54, 49, 0.05);
  margin-bottom: 30px;
}
.flow-dl .inner.last-inner {
  margin-bottom: 0;
}
.flow-dl dt {
  width: 10%;
  color: rgb(0, 107.4678111588, 156.5);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  font-family: "Quicksand", "Dosis", sans-serif;
  font-weight: 400;
  /*text-transform: uppercase;*/
  text-align: center;
}
.flow-dl dt span {
  letter-spacing: 0.2rem;
  color: #00A0E9;
  display: block;
  line-height: 1;
  font-family: "Homemade Apple", cursive;
  font-weight: 400;
  font-size: 4rem;
}
.flow-dl dd {
  width: 85%;
}
@media all and (max-width: 639px) {
  .flow-dl .inner {
    width: 100%;
  }
  .flow-dl dt {
    font-size: 1.2rem;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 15px;
  }
  .flow-dl dt span {
    font-size: 3rem;
    display: inline-block;
    padding-left: 8px;
  }
  .flow-dl dt {
    width: 100%;
  }
  .flow-dl dt p {
    text-align: center;
    margin-top: 10px;
  }
  .flow-dl dd {
    width: 100%;
  }
}

.feature-dl.type1 dt {
  color: #52b0ff;
}
.feature-dl.type1 dt span {
  color: #9fd6e2;
}
.feature-dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.feature-dl .inner {
  width: 31%;
  padding: 20px;
  background: #fefefe;
  border-radius: 15px;
  -webkit-box-shadow: 0 0 15px rgba(85, 85, 85, 0.1);
          box-shadow: 0 0 15px rgba(85, 85, 85, 0.1);
  margin-bottom: 25px;
}
.feature-dl dt {
  color: rgb(0, 107.4678111588, 156.5);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  font-family: "Quicksand", "Dosis", sans-serif;
  font-weight: 400;
  /*text-transform: uppercase;*/
  text-align: center;
}
.feature-dl dt span {
  color: #00A0E9;
  letter-spacing: 0.2rem;
  font-family: "Homemade Apple", cursive;
  font-weight: 400;
  font-size: 3.5rem;
}
.feature-dl dd {
  padding-top: 10px;
  border-top: 0.9px solid #00A0E9;
}
@media all and (max-width: 639px) {
  .feature-dl .inner {
    width: 100%;
    margin: 0 auto 25px;
  }
  .feature-dl dt {
    font-size: 1.2rem;
  }
  .feature-dl dt span {
    font-size: 1.8rem;
  }
  .feature-dl dt {
    width: 100%;
  }
  .feature-dl dt p {
    text-align: center;
    margin-top: 10px;
  }
}

.more-contents {
  display: none;
  padding: 15px;
  background: #faf9f5;
  margin-top: 20px;
}

.txt1 {
  padding-left: 10px;
}

.fee-box {
  margin: 10px 0 20px;
  font-weight: 500;
  background: lemonchiffon;
  padding: 5px;
}
.fee-box span {
  display: block;
  font-weight: normal;
}

#a01, #a02, #a03, #a04, #a05, #a06, #a07, #a08, #a09, #contact {
  /* 固定ヘッダーの高さ分（例: 80px）を指定 */
  scroll-margin-top: 200px;
}

.list-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.list-center li {
  width: 50%;
}
@media all and (max-width: 639px) {
  .list-center {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .list-center li {
    width: 100%;
  }
}

.faq-dl .faq-inner {
  padding: 10px;
  margin-bottom: 20px;
}
.faq-dl .faq-inner:not(:last-of-type) {
  margin-bottom: 35px;
  padding-bottom: 20px;
  border-bottom: 3px solid #eee;
}
.faq-dl .faq-inner dt,
.faq-dl .faq-inner dd {
  position: relative;
  padding: 10px 10px 10px 55px;
}
.faq-dl .faq-inner dt:before,
.faq-dl .faq-inner dd:before {
  position: absolute;
  content: "";
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  left: 0;
  top: 0;
  font-family: "Quicksand", "Dosis", sans-serif;
  font-weight: 400;
  /*text-transform: uppercase;*/
}
.faq-dl .faq-inner dt {
  margin-bottom: 10px;
  font-weight: 500;
  font-weight: 600;
  color: rgb(0, 124.9785407725, 182);
}
.faq-dl .faq-inner dt:before {
  content: "Q";
  color: #00A0E9;
  font-size: 3rem;
  background: rgba(0, 160, 233, 0.2);
}
.faq-dl .faq-inner dd:before {
  content: "A";
  color: #f09f2e;
  font-size: 3rem;
  background: rgba(255, 223, 44, 0.2);
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: 30px !important;
  right: auto;
  background: rgba(0, 160, 233, 0.7);
}
@media all and (max-width: 639px) {
  .swiper-button-prev,
  .swiper-container-rtl .swiper-button-next {
    left: 10px !important;
  }
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: 30px !important;
  left: auto;
  background: rgba(0, 160, 233, 0.7);
}
@media all and (max-width: 639px) {
  .swiper-button-next,
  .swiper-container-rtl .swiper-button-prev {
    right: 10px !important;
  }
}

@media all and (max-width: 639px) {
  .swiper-button-next,
  .swiper-button-prev {
    width: 17px !important;
    height: 28px !important;
    background-size: 17px 28px !important;
  }
}

.point-num {
  position: relative;
  z-index: 2;
  margin: -30px auto 5px;
  line-height: 1;
  color: #111;
  font-family: "Homemade Apple", cursive;
  font-weight: 400;
  font-size: 5rem;
  border-radius: 100%;
  text-align: center;
}
@media all and (max-width: 639px) {
  .point-num {
    font-size: 3rem;
  }
}

.bnr-list {
  text-align: center;
}
@media all and (max-width: 900px) {
  .bnr-list li {
    width: 48%;
    margin-right: 4%;
  }
  .bnr-list li:nth-child(2n) {
    margin-right: 0;
  }
}
.bnr-list a {
  display: block;
  text-align: center;
  background: #fefefe;
  padding: 8px 5px;
  font-size: 1.3rem;
  height: 100%;
}
.bnr-list a img {
  width: auto;
  max-width: 100%;
  margin: 0 auto;
  height: 45px;
}
@media all and (max-width: 639px) {
  .bnr-list a {
    font-size: 12px;
    line-height: 1.5;
  }
  .bnr-list a img {
    height: 30px;
  }
}
.bnr-list li.bnr-txt {
  font-size: 2rem;
  font-weight: 500;
  line-height: 60px;
  background: #fefefe;
}
@media all and (max-width: 639px) {
  .bnr-list li.bnr-txt {
    font-size: 1.5rem;
  }
}

.sns-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.sns-list.center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 15px 0;
}
.sns-list li a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 15px;
  color: #00A0E9;
  display: block;
  background: #fefefe;
  border-radius: 100%;
  text-align: center;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  position: relative;
}
.sns-list li a:hover {
  opacity: 0.7;
}
.sns-list li a.btn-facebook {
  background: #1877f2;
}
.sns-list li a.btn-twitter {
  background: #1da1f2;
}
.sns-list li a.btn-instagram {
  overflow: hidden;
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
}
.sns-list li a.btn-instagram i {
  position: relative;
  z-index: 2;
}
.sns-list li a.btn-instagram:before {
  content: "";
  position: absolute;
  /*絶対配置*/
  top: 18px;
  /*ずらす*/
  left: -10px;
  /*ずらす*/
  width: 50px;
  /*グラデーションカバーの幅*/
  height: 50px;
  /*グラデーションカバーの高さ*/
  background: radial-gradient(#ffdb2c 10%, rgba(255, 105, 34, 0.65) 55%, rgba(255, 88, 96, 0) 70%);
  /*グラデーション②*/
}
.sns-list li:not(:last-child) {
  margin-right: 10px;
}
@media all and (max-width: 900px) {
  .sns-list li:not(:last-child) {
    margin-right: 8px;
    margin-bottom: 0;
  }
}

.title50.heading,
.title40.heading,
.title38.heading,
.title36.heading,
.title34.heading,
.title32.heading,
.title28.heading,
.title24.heading,
.title22.heading,
.title20.heading,
.title18.heading,
.title16.heading,
.title14.heading,
.title12.heading {
  margin-bottom: 30px;
  line-height: 1.6;
}
@media all and (max-width: 900px) {
  .title50.heading,
  .title40.heading,
  .title38.heading,
  .title36.heading,
  .title34.heading,
  .title32.heading,
  .title28.heading,
  .title24.heading,
  .title22.heading,
  .title20.heading,
  .title18.heading,
  .title16.heading,
  .title14.heading,
  .title12.heading {
    margin-bottom: 25px;
    letter-spacing: 0.15em;
  }
}

.title50 {
  font-family: "YakuHanJP", "Zen Maru Gothic", Lato, "筑紫A丸ゴシック", "TsukuARoundGothic-Regular", "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN W4", "HG丸ｺﾞｼｯｸM-PRO", sans-serif;
  font-weight: 500;
  letter-spacing: 0.2em;
  font-size: 5rem;
}
@media all and (max-width: 900px) {
  .title50 {
    font-size: 4rem;
  }
}
@media all and (max-width: 639px) {
  .title50 {
    font-size: 3.2rem;
  }
}

.title40 {
  font-family: "YakuHanJP", "Zen Maru Gothic", Lato, "筑紫A丸ゴシック", "TsukuARoundGothic-Regular", "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN W4", "HG丸ｺﾞｼｯｸM-PRO", sans-serif;
  font-weight: 500;
  letter-spacing: 0.2em;
  font-size: 4rem;
}
@media all and (max-width: 900px) {
  .title40 {
    font-size: 3.2rem;
  }
}
@media all and (max-width: 639px) {
  .title40 {
    font-size: 2.4rem;
  }
}

.title38 {
  font-family: "YakuHanJP", "Zen Maru Gothic", Lato, "筑紫A丸ゴシック", "TsukuARoundGothic-Regular", "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN W4", "HG丸ｺﾞｼｯｸM-PRO", sans-serif;
  font-weight: 500;
  letter-spacing: 0.2em;
  font-size: 3.8rem;
}
@media all and (max-width: 900px) {
  .title38 {
    font-size: 3rem;
  }
}
@media all and (max-width: 639px) {
  .title38 {
    font-size: 2.4rem;
  }
}

.title36 {
  font-family: "YakuHanJP", "Zen Maru Gothic", Lato, "筑紫A丸ゴシック", "TsukuARoundGothic-Regular", "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN W4", "HG丸ｺﾞｼｯｸM-PRO", sans-serif;
  font-weight: 500;
  letter-spacing: 0.2em;
  font-size: 3.6rem;
}
@media all and (max-width: 900px) {
  .title36 {
    font-size: 2.8rem;
  }
}
@media all and (max-width: 639px) {
  .title36 {
    font-size: 2.2rem;
  }
}

.title34 {
  font-family: "YakuHanJP", "Zen Maru Gothic", Lato, "筑紫A丸ゴシック", "TsukuARoundGothic-Regular", "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN W4", "HG丸ｺﾞｼｯｸM-PRO", sans-serif;
  font-weight: 500;
  letter-spacing: 0.2em;
  font-size: 3.4rem;
}
@media all and (max-width: 900px) {
  .title34 {
    font-size: 2.7rem;
  }
}
@media all and (max-width: 639px) {
  .title34 {
    font-size: 2.1rem;
  }
}

.title32 {
  font-family: "YakuHanJP", "Zen Maru Gothic", Lato, "筑紫A丸ゴシック", "TsukuARoundGothic-Regular", "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN W4", "HG丸ｺﾞｼｯｸM-PRO", sans-serif;
  font-weight: 500;
  letter-spacing: 0.2em;
  font-size: 3.4rem;
}
@media all and (max-width: 900px) {
  .title32 {
    font-size: 2.7rem;
  }
}
@media all and (max-width: 639px) {
  .title32 {
    font-size: 2.1rem;
  }
}

.title28 {
  font-family: "YakuHanJP", "Zen Maru Gothic", Lato, "筑紫A丸ゴシック", "TsukuARoundGothic-Regular", "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN W4", "HG丸ｺﾞｼｯｸM-PRO", sans-serif;
  font-weight: 500;
  letter-spacing: 0.2em;
  font-size: 2.8rem;
}
@media all and (max-width: 900px) {
  .title28 {
    font-size: 2.2rem;
  }
}
@media all and (max-width: 639px) {
  .title28 {
    font-size: 1.8rem;
  }
}

.title24 {
  font-family: "YakuHanJP", "Zen Maru Gothic", Lato, "筑紫A丸ゴシック", "TsukuARoundGothic-Regular", "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN W4", "HG丸ｺﾞｼｯｸM-PRO", sans-serif;
  font-weight: 500;
  letter-spacing: 0.2em;
  font-size: 2.4rem;
}
@media all and (max-width: 900px) {
  .title24 {
    font-size: 2rem;
  }
}
@media all and (max-width: 639px) {
  .title24 {
    font-size: 1.7rem;
  }
}

.title22 {
  font-family: "YakuHanJP", "Zen Maru Gothic", Lato, "筑紫A丸ゴシック", "TsukuARoundGothic-Regular", "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN W4", "HG丸ｺﾞｼｯｸM-PRO", sans-serif;
  font-weight: 500;
  letter-spacing: 0.2em;
  font-size: 2.2rem;
}
@media all and (max-width: 900px) {
  .title22 {
    font-size: 1.85rem;
  }
}
@media all and (max-width: 639px) {
  .title22 {
    font-size: 1.6rem;
  }
}

.title20 {
  font-family: "YakuHanJP", "Zen Maru Gothic", Lato, "筑紫A丸ゴシック", "TsukuARoundGothic-Regular", "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN W4", "HG丸ｺﾞｼｯｸM-PRO", sans-serif;
  font-weight: 500;
  letter-spacing: 0.2em;
  font-size: 2rem;
}
@media all and (max-width: 900px) {
  .title20 {
    font-size: 1.6rem;
  }
}
@media all and (max-width: 639px) {
  .title20 {
    font-size: 1.45rem;
  }
}

.title18 {
  font-family: "YakuHanJP", "Zen Maru Gothic", Lato, "筑紫A丸ゴシック", "TsukuARoundGothic-Regular", "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN W4", "HG丸ｺﾞｼｯｸM-PRO", sans-serif;
  font-weight: 500;
  letter-spacing: 0.2em;
  font-size: 1.8rem;
}
@media all and (max-width: 900px) {
  .title18 {
    font-size: 1.5rem;
  }
}
@media all and (max-width: 639px) {
  .title18 {
    font-size: 1.35rem;
    letter-spacing: 0.15em;
  }
}

.title16 {
  font-family: "YakuHanJP", "Zen Maru Gothic", Lato, "筑紫A丸ゴシック", "TsukuARoundGothic-Regular", "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN W4", "HG丸ｺﾞｼｯｸM-PRO", sans-serif;
  font-weight: 500;
  letter-spacing: 0.2em;
  font-size: 1.6rem;
}
@media all and (max-width: 900px) {
  .title16 {
    font-size: 1.4rem;
  }
}
@media all and (max-width: 639px) {
  .title16 {
    font-size: 1.25rem;
    letter-spacing: 0.15em;
  }
}

.title14 {
  font-family: "YakuHanJP", "Zen Maru Gothic", Lato, "筑紫A丸ゴシック", "TsukuARoundGothic-Regular", "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN W4", "HG丸ｺﾞｼｯｸM-PRO", sans-serif;
  font-weight: 500;
  letter-spacing: 0.2em;
  font-size: 1.4rem;
}
@media all and (max-width: 900px) {
  .title14 {
    font-size: 1.3rem;
  }
}
@media all and (max-width: 639px) {
  .title14 {
    font-size: 1.2rem;
    letter-spacing: 0.1em;
  }
}

.title12 {
  font-family: "YakuHanJP", "Zen Maru Gothic", Lato, "筑紫A丸ゴシック", "TsukuARoundGothic-Regular", "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN W4", "HG丸ｺﾞｼｯｸM-PRO", sans-serif;
  font-weight: 500;
  letter-spacing: 0.2em;
  font-size: 1.2rem;
}
@media all and (max-width: 900px) {
  .title12 {
    font-size: 1.1rem;
  }
}
@media all and (max-width: 639px) {
  .title12 {
    font-size: 1rem;
    letter-spacing: 0.1em;
  }
}

.voice-title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
  margin-bottom: 30px;
}
.voice-title-wrap .voice-icon.water-drop {
  font-size: 3.8rem;
  display: inline-block;
  color: #00A0E9;
  line-height: 1;
  -webkit-transform-origin: top center;
          transform-origin: top center;
  -webkit-animation: water-drip 2.5s ease-in-out infinite;
          animation: water-drip 2.5s ease-in-out infinite;
}
@media all and (max-width: 639px) {
  .voice-title-wrap .voice-icon.water-drop {
    font-size: 2.8rem;
  }
}

@-webkit-keyframes water-drip {
  0% {
    -webkit-transform: scale(1, 1) translateY(0);
            transform: scale(1, 1) translateY(0);
  }
  15% {
    -webkit-transform: scale(0.9, 1.1) translateY(-4px);
            transform: scale(0.9, 1.1) translateY(-4px);
  }
  30% {
    -webkit-transform: scale(1.05, 0.95) translateY(2px);
            transform: scale(1.05, 0.95) translateY(2px);
  }
  45% {
    -webkit-transform: scale(0.98, 1.02) translateY(-1px);
            transform: scale(0.98, 1.02) translateY(-1px);
  }
  60% {
    -webkit-transform: scale(1, 1) translateY(0);
            transform: scale(1, 1) translateY(0);
  }
  100% {
    -webkit-transform: scale(1, 1) translateY(0);
            transform: scale(1, 1) translateY(0);
  }
}

@keyframes water-drip {
  0% {
    -webkit-transform: scale(1, 1) translateY(0);
            transform: scale(1, 1) translateY(0);
  }
  15% {
    -webkit-transform: scale(0.9, 1.1) translateY(-4px);
            transform: scale(0.9, 1.1) translateY(-4px);
  }
  30% {
    -webkit-transform: scale(1.05, 0.95) translateY(2px);
            transform: scale(1.05, 0.95) translateY(2px);
  }
  45% {
    -webkit-transform: scale(0.98, 1.02) translateY(-1px);
            transform: scale(0.98, 1.02) translateY(-1px);
  }
  60% {
    -webkit-transform: scale(1, 1) translateY(0);
            transform: scale(1, 1) translateY(0);
  }
  100% {
    -webkit-transform: scale(1, 1) translateY(0);
            transform: scale(1, 1) translateY(0);
  }
}
.title01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  color: #413631;
  margin-bottom: 50px;
}
.title01.center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.title01 .ja {
  font-family: "YakuHanJP", "Zen Maru Gothic", Lato, "筑紫A丸ゴシック", "TsukuARoundGothic-Regular", "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN W4", "HG丸ｺﾞｼｯｸM-PRO", sans-serif;
  font-weight: 500;
  letter-spacing: 0.2em;
  font-size: 3.4rem;
}
@media all and (max-width: 900px) {
  .title01 .ja {
    font-size: 2.7rem;
  }
}
@media all and (max-width: 639px) {
  .title01 .ja {
    font-size: 2.1rem;
  }
}
.title01 .ja {
  color: #00A0E9;
}
.title01 .eng {
  font-size: 1.3rem;
  letter-spacing: 0.08em;
}
@media all and (max-width: 900px) {
  .title01 .eng {
    font-size: 1.1rem;
  }
}
@media all and (max-width: 639px) {
  .title01 .eng {
    font-size: 1.05rem;
  }
}
.title01 .eng {
  font-family: "Quicksand", "Dosis", sans-serif;
  font-weight: 400;
  /*text-transform: uppercase;*/
  font-weight: 700;
  text-transform: uppercase;
}
.title01 .eng:before {
  content: "/";
  font-family: "YakuHanJP", "Zen Maru Gothic", Lato, "筑紫A丸ゴシック", "TsukuARoundGothic-Regular", "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN W4", "HG丸ｺﾞｼｯｸM-PRO", sans-serif;
  font-weight: 500;
  letter-spacing: 0.2em;
  font-size: 2.4rem;
}
@media all and (max-width: 900px) {
  .title01 .eng:before {
    font-size: 2rem;
  }
}
@media all and (max-width: 639px) {
  .title01 .eng:before {
    font-size: 1.7rem;
  }
}
.title01 .eng:before {
  margin: 0 0.8em;
  color: rgb(150.5526315789, 127.1052631579, 116.4473684211);
}
.title01 {
  line-height: 1.2;
}
.title01.center {
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media all and (max-width: 900px) {
  .title01 {
    margin-bottom: 40px;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .title01 .ja {
    letter-spacing: 0.15em;
  }
  .title01 .eng:before {
    margin: 0 0.5em;
  }
}
@media all and (max-width: 639px) {
  .title01 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 30px;
  }
  .title01 .eng {
    margin-top: 10px;
  }
  .title01 .eng:before {
    display: none;
  }
}

.staff-list {
  text-align: center;
  font-size: 1.4rem;
}
@media all and (max-width: 639px) {
  .staff-list {
    font-size: 13px;
  }
}

.title02 {
  font-weight: 600;
  font-size: 2.5rem;
  margin: 0;
  letter-spacing: 0.1rem;
  padding-bottom: 3rem;
  color: #00A0E9;
}
.title02.sbc {
  color: #f14453;
}
@media all and (max-width: 639px) {
  .title02 {
    font-size: 1.7rem;
    padding-bottom: 1rem;
  }
}

.title03 {
  margin: 15px 0 20px;
}
.title03 span {
  background: #cee2b3;
  color: #fff;
  padding: 8px 15px;
  font-weight: 600;
  letter-spacing: 0.15em;
}
.work-category-list li a {
  display: block;
  padding: 10px 25px 10px 10px;
  font-weight: 700;
  position: relative;
  background: #fefefe;
  color: #00A0E9;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.work-category-list li a:after {
  font-family: "Font Awesome 5 Free";
  content: "\f078";
  font-weight: 900;
  position: absolute;
  right: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.work-category-list li a:hover {
  background: #00A0E9;
  color: #fefefe;
}
.work-category-list li {
  margin-bottom: 8px;
}

.txt01 {
  font-size: 1.4rem;
  letter-spacing: 0;
}
@media all and (max-width: 639px) {
  .txt01 {
    font-size: 13px;
  }
}

.txt02 {
  padding: 25px;
  background: #fefefe;
  border-radius: 20px;
  color: #413631;
  font-weight: 600;
}

.flow-txt {
  font-size: 2.2rem;
  text-align: center;
  color: #00A0E9;
  font-family: "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  margin: 30px auto;
  font-weight: 700;
  letter-spacing: 0.2rem;
}
.flow-txt span {
  font-size: 1.4rem;
  color: #413631;
}

.blogchild {
  display: block;
  width: 100%;
  height: 100%;
  color: #413631;
  background: #fff;
  border-radius: 20px;
  margin: 0 8px;
  overflow: hidden;
  -webkit-transition: -webkit-box-shadow 0.2s ease-in;
  transition: -webkit-box-shadow 0.2s ease-in;
  transition: box-shadow 0.2s ease-in;
  transition: box-shadow 0.2s ease-in, -webkit-box-shadow 0.2s ease-in;
  position: relative;
  padding-bottom: 40px;
}
.blogchild figure {
  width: 100%;
  height: 220px;
  overflow: hidden;
}
.blogchild figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  -webkit-transition: -webkit-transform 0.2s ease-in;
  transition: -webkit-transform 0.2s ease-in;
  transition: transform 0.2s ease-in;
  transition: transform 0.2s ease-in, -webkit-transform 0.2s ease-in;
}
.blogchild .inner {
  padding: 20px;
  font-size: 1.4rem;
}
@media all and (max-width: 639px) {
  .blogchild .inner {
    font-size: 13px;
  }
}
.blogchild .blogtitle {
  color: #00A0E9;
  margin-bottom: 5px;
  font-weight: 600;
}
.blogchild .blogtime {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  border-top: 1px solid #eee;
  padding: 8px;
  text-align: right;
  display: block;
  font-family: "Quicksand", "Dosis", sans-serif;
  font-weight: 400;
  /*text-transform: uppercase;*/
  font-size: 1.4rem;
  color: #f14453;
}
@media all and (max-width: 639px) {
  .blogchild .blogtime {
    font-size: 12px;
  }
}
.blogchild:hover {
  -webkit-box-shadow: 0 0 15px rgba(65, 54, 49, 0.05);
          box-shadow: 0 0 15px rgba(65, 54, 49, 0.05);
}
.blogchild:hover figure img {
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
}

.blogwrap2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.blogwrap2 .child {
  width: 48%;
  padding: 0 20px;
}
.blogwrap2 .child:first-of-type {
  border-right: 1px solid #f14453;
}
@media all and (max-width: 1025px) {
  .blogwrap2 {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .blogwrap2 .child {
    width: 90%;
    padding: 20px 10px;
  }
  .blogwrap2 .child:first-of-type {
    border-right: 0;
    border-bottom: 1px solid #f14453;
    margin-bottom: 30px;
  }
}

.top-gallery {
  margin: 30px auto;
  width: 100%;
  position: relative;
}
.top-gallery .slick-list {
  padding: 30px 0;
  margin: -30px 0;
}
.top-gallery .slick-track {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.top-gallery .slick-slide {
  margin: 0 8px;
  height: auto;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.top-gallery .slick-slide > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  height: 100%;
}
.top-gallery li {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  height: 100%;
}

.v-card {
  background: #ffffff;
  border: 1.5px solid #eef2f3;
  border-radius: 20px;
  padding: 28px 24px;
  -webkit-box-shadow: 0 8px 24px rgba(0, 160, 233, 0.2);
          box-shadow: 0 8px 24px rgba(0, 160, 233, 0.2);
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 100%;
}
.v-card::before {
  content: "“";
  font-family: Georgia, serif;
  font-size: 72px;
  line-height: 1;
  color: rgba(241, 68, 83, 0.05);
  position: absolute;
  top: 6px;
  left: 16px;
  pointer-events: none;
}
@media all and (max-width: 639px) {
  .v-card {
    padding: 24px 20px;
  }
}

.v-auth {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  border-bottom: 1px solid #ddd;
  padding-top: 16px;
  padding-bottom: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.v-text {
  font-size: 1.5rem;
  line-height: 1.6;
  color: #413631;
  margin-bottom: 0;
  padding-top: 14px;
  position: relative;
  z-index: 2;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media all and (max-width: 639px) {
  .v-text {
    font-size: 14px;
  }
}

.v-stars {
  color: #FFB700;
  font-size: 12px;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.v-av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: #00A0E9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
}

.v-cat {
  display: inline-block;
  background: rgba(241, 68, 83, 0.05);
  color: #f14453;
  font-size: 10px;
  font-weight: 700;
  border-radius: 4px;
  padding: 2px 7px;
  margin-bottom: 3px;
}

.v-name {
  font-weight: 700;
  color: #413631;
}

.slick-prev,
.slick-next {
  position: absolute !important;
  top: -60px !important;
  background: rgba(255, 255, 255, 0.95) !important;
  width: 40px !important;
  height: 40px !important;
  z-index: 20 !important;
  border-radius: 50% !important;
  border: 1px solid #00A0E9 !important;
  -webkit-transform: none !important;
          transform: none !important;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  cursor: pointer;
  outline: none;
  display: block !important;
}
@media all and (max-width: 639px) {
  .slick-prev,
  .slick-next {
    top: -30px !important;
  }
}
.slick-prev:before,
.slick-next:before {
  content: "" !important;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 1px solid #00A0E9;
  border-left: 1px solid #00A0E9;
}
.slick-prev:hover,
.slick-next:hover {
  background: #f2f4f4 !important;
}

.slick-prev {
  right: 62px !important;
  left: auto !important;
}
.slick-prev:before {
  -webkit-transform: translate(-30%, -50%) rotate(-45deg) !important;
          transform: translate(-30%, -50%) rotate(-45deg) !important;
}

.slick-next {
  right: 12px !important;
  left: auto !important;
}
.slick-next:before {
  -webkit-transform: translate(-70%, -50%) rotate(135deg) !important;
          transform: translate(-70%, -50%) rotate(135deg) !important;
}

.title-big {
  margin-bottom: 40px;
}
.title-big span {
  display: block;
  letter-spacing: 0.3em;
  line-height: 1.2;
}
.title-big .eng {
  font-family: "Quicksand", "Dosis", sans-serif;
  font-weight: 400;
  /*text-transform: uppercase;*/
  font-size: 5rem;
  color: rgba(0, 160, 233, 0.7);
}
.title-big .ja {
  font-size: 2.2rem;
  font-weight: 600;
  color: #413631;
}
@media all and (max-width: 639px) {
  .title-big {
    margin-bottom: 25px;
  }
  .title-big span {
    letter-spacing: 0.2em;
  }
  .title-big .eng {
    font-size: 2.6rem;
  }
  .title-big .ja {
    font-size: 2rem;
  }
}

.vertical-box {
  position: relative;
}
.vertical-box .vertical-content {
  margin-left: 150px;
}
@media all and (max-width: 639px) {
  .vertical-box .vertical-content {
    margin: 20px 0 0;
  }
}

.column2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.column2.center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.column2.tp {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.column2 .child {
  width: 48%;
}
.column2 .child01 {
  width: 40%;
}
.column2 .child02 {
  width: 56%;
}
.column2 .child2 {
  width: 55%;
}
.column2 .child3 {
  width: 42%;
}
.column2 .child4 {
  width: 44%;
}
.column2 .child5 {
  width: 30%;
}
.column2 .child6 {
  width: 65%;
}
@media all and (max-width: 900px) {
  .column2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .column2.reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .column2 .child,
  .column2 .child01,
  .column2 .child02,
  .column2 .child2,
  .column2 .child3,
  .column2 .child4,
  .column2 .child5,
  .column2 .child6 {
    width: 100%;
  }
  .column2 .child.column2-img,
  .column2 .child01.column2-img,
  .column2 .child02.column2-img,
  .column2 .child2.column2-img,
  .column2 .child3.column2-img,
  .column2 .child4.column2-img,
  .column2 .child5.column2-img,
  .column2 .child6.column2-img {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin-bottom: 30px;
  }
  .column2 .child.bm20,
  .column2 .child01.bm20,
  .column2 .child02.bm20,
  .column2 .child2.bm20,
  .column2 .child3.bm20,
  .column2 .child4.bm20,
  .column2 .child5.bm20,
  .column2 .child6.bm20 {
    margin-bottom: 20px;
  }
  .column2 .child.bm10,
  .column2 .child01.bm10,
  .column2 .child02.bm10,
  .column2 .child2.bm10,
  .column2 .child3.bm10,
  .column2 .child4.bm10,
  .column2 .child5.bm10,
  .column2 .child6.bm10 {
    margin-bottom: 10px;
  }
  .column2 .child.column2-img2,
  .column2 .child01.column2-img2,
  .column2 .child02.column2-img2,
  .column2 .child2.column2-img2,
  .column2 .child3.column2-img2,
  .column2 .child4.column2-img2,
  .column2 .child5.column2-img2,
  .column2 .child6.column2-img2 {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin-bottom: 20px;
  }
}

.top-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 80px;
}
.top-list > li {
  width: 23.5%;
  position: relative;
}
.top-list > li:nth-child(even) {
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
}
@media all and (max-width: 900px) {
  .top-list > li {
    width: 48%;
    margin-bottom: 30px;
  }
}
.top-list .top-list-title {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
}
.top-list .top-list-title span {
  border-radius: 5px 0 0 0;
  background: #fff;
  color: #413631;
  font-weight: 600;
  padding: 3px 8px;
}
@media all and (max-width: 639px) {
  .top-list .top-list-title span {
    display: block;
  }
}

.name {
  text-align: center;
  width: 130px;
  position: absolute;
  left: 50%;
  top: -80px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media all and (max-width: 639px) {
  .name {
    width: 60%;
    max-width: 100px;
  }
}

.triangle {
  position: relative;
  background: rgba(242, 244, 244, 0.7);
}
.triangle:before {
  content: "";
  position: absolute;
  top: -150px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 400px 150px 400px;
  border-color: transparent transparent rgba(242, 244, 244, 0.7) transparent;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -2;
}

.tri-top {
  margin-bottom: 140px;
}

.feature-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 40px;
  margin-bottom: -40px;
}
.feature-list > li {
  width: 31.333%;
  margin: 0 1% 40px;
  position: relative;
}
.feature-list > li:nth-child(even) {
  margin-top: -20px;
}
@media all and (max-width: 1367px) {
  .feature-list > li:nth-child(even) {
    margin-top: 0;
  }
}
.feature-list > li .feature-img {
  overflow: hidden;
  width: 100%;
  position: relative;
  text-align: center;
  border-radius: 20px 0 20px 0;
}
.feature-list > li .feature-img:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}
.feature-list > li .feature-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
.feature-list > li .feature-txt {
  position: relative;
  padding-top: 25px;
  letter-spacing: 0.2em;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: rgb(108.6184210526, 90.2368421053, 81.8815789474);
}
.feature-list > li .feature-txt .feature-num {
  font-family: "Quicksand", "Dosis", sans-serif;
  font-weight: 400;
  /*text-transform: uppercase;*/
  display: block;
  position: absolute;
  font-size: 4rem;
  line-height: 1;
  color: #fff;
  left: 50%;
  top: -36px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 3;
}
@media all and (max-width: 639px) {
  .feature-list > li .feature-txt {
    font-size: 1.4rem;
  }
}
.feature-list > li .p_txt {
  letter-spacing: 0.2em;
}
@media all and (max-width: 1367px) {
  .feature-list {
    padding: 0 30px;
  }
  .feature-list > li {
    width: 31%;
  }
}
@media all and (max-width: 639px) {
  .feature-list {
    width: 85%;
    margin: 0 auto;
    padding: 0;
  }
  .feature-list > li {
    width: 100%;
    margin: 0 auto 30px;
  }
  .feature-list > li img {
    width: 80%;
    margin: 0 auto;
  }
}

.tcenter_pc {
  text-align: center;
}
@media all and (max-width: 639px) {
  .tcenter_pc {
    text-align: left;
  }
}

.mascot {
  width: 280px;
}
@media all and (max-width: 639px) {
  .mascot {
    max-width: 200px;
    width: 40%;
  }
}

.ls2 {
  letter-spacing: 0.2em;
}

/* フレックスコンテナ
-------------------------------------------------- */
.k-flex * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.k-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}
.k-flex img {
  vertical-align: middle;
  max-width: 100%;
}
.k-flex.jc-left {
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}
.k-flex.jc-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.k-flex.jc-right {
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
}
.k-flex.col-1 > .k-fitem {
  width: 100%;
}
.k-flex.col-2 > .k-fitem {
  width: 50%;
}
.k-flex.col-3 > .k-fitem {
  width: 33.3333333%;
}
.k-flex.col-4 > .k-fitem {
  width: 25%;
}
.k-flex.col-5 > .k-fitem {
  width: 20%;
}
.k-flex > .k-fitem.k-w5 {
  width: 5%;
}
.k-flex > .k-fitem.k-w10 {
  width: 10%;
}
.k-flex > .k-fitem.k-w15 {
  width: 15%;
}
.k-flex > .k-fitem.k-w20 {
  width: 20%;
}
.k-flex > .k-fitem.k-w25 {
  width: 25%;
}
.k-flex > .k-fitem.k-w30 {
  width: 30%;
}
.k-flex > .k-fitem.k-w33 {
  width: 33.3333333%;
}
.k-flex > .k-fitem.k-w35 {
  width: 35%;
}
.k-flex > .k-fitem.k-w40 {
  width: 40%;
}
.k-flex > .k-fitem.k-w45 {
  width: 45%;
}
.k-flex > .k-fitem.k-w50 {
  width: 50%;
}
.k-flex > .k-fitem.k-w55 {
  width: 55%;
}
.k-flex > .k-fitem.k-w60 {
  width: 60%;
}
.k-flex > .k-fitem.k-w65 {
  width: 65%;
}
.k-flex > .k-fitem.k-w70 {
  width: 70%;
}
.k-flex > .k-fitem.k-w75 {
  width: 75%;
}
.k-flex > .k-fitem.k-w80 {
  width: 80%;
}
.k-flex > .k-fitem.k-w85 {
  width: 85%;
}
.k-flex > .k-fitem.k-w90 {
  width: 90%;
}
.k-flex > .k-fitem.k-w95 {
  width: 95%;
}
.k-flex > .k-fitem.k-w100 {
  width: 100%;
}
.k-flex > .k-fitem.order1 {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.k-flex > .k-fitem.order2 {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.k-flex > .k-fitem.order3 {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
.k-flex > .k-fitem.order4 {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
}

@media all and (max-width: 639px) {
  .k-flex > .k-fitem {
    width: 100% !important;
  }
  .k-flex > .k-fitem.order1, .k-flex > .k-fitem.order2, .k-flex > .k-fitem.order3, .k-flex > .k-fitem.order4 {
    -webkit-box-ordinal-group: 1 !important;
        -ms-flex-order: 0 !important;
            order: 0 !important;
  }
  .k-flex.col-4 > .k-fitem {
    width: 50% !important;
  }
  .k-flex {
    /*モバイルで100%にしたくない時の指定*/
  }
  .k-flex.fix.col-1 > .k-fitem {
    width: 100% !important;
  }
  .k-flex.fix.col-2 > .k-fitem {
    width: 50% !important;
  }
  .k-flex.fix.col-3 > .k-fitem {
    width: 33.3333333% !important;
  }
  .k-flex.fix.col-4 > .k-fitem {
    width: 25% !important;
  }
  .k-flex.fix.col-5 > .k-fitem {
    width: 20% !important;
  }
  .k-flex.fix > .k-fitem.k-w5 {
    width: 5% !important;
  }
  .k-flex.fix > .k-fitem.k-w10 {
    width: 10% !important;
  }
  .k-flex.fix > .k-fitem.k-w15 {
    width: 15% !important;
  }
  .k-flex.fix > .k-fitem.k-w20 {
    width: 20% !important;
  }
  .k-flex.fix > .k-fitem.k-w25 {
    width: 25% !important;
  }
  .k-flex.fix > .k-fitem.k-w30 {
    width: 30% !important;
  }
  .k-flex.fix > .k-fitem.k-w33 {
    width: 33.3333333% !important;
  }
  .k-flex.fix > .k-fitem.k-w35 {
    width: 35% !important;
  }
  .k-flex.fix > .k-fitem.k-w40 {
    width: 40% !important;
  }
  .k-flex.fix > .k-fitem.k-w45 {
    width: 45% !important;
  }
  .k-flex.fix > .k-fitem.k-w50 {
    width: 50% !important;
  }
  .k-flex.fix > .k-fitem.k-w55 {
    width: 55% !important;
  }
  .k-flex.fix > .k-fitem.k-w60 {
    width: 60% !important;
  }
  .k-flex.fix > .k-fitem.k-w65 {
    width: 65% !important;
  }
  .k-flex.fix > .k-fitem.k-w70 {
    width: 70% !important;
  }
  .k-flex.fix > .k-fitem.k-w75 {
    width: 75% !important;
  }
  .k-flex.fix > .k-fitem.k-w80 {
    width: 80% !important;
  }
  .k-flex.fix > .k-fitem.k-w85 {
    width: 85% !important;
  }
  .k-flex.fix > .k-fitem.k-w90 {
    width: 90% !important;
  }
  .k-flex.fix > .k-fitem.k-w95 {
    width: 95% !important;
  }
  .k-flex.fix > .k-fitem.k-w100 {
    width: 100% !important;
  }
  .k-flex.fix > .k-fitem.order1 {
    -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
  }
  .k-flex.fix > .k-fitem.order2 {
    -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
            order: 2 !important;
  }
  .k-flex.fix > .k-fitem.order3 {
    -webkit-box-ordinal-group: 4 !important;
        -ms-flex-order: 3 !important;
            order: 3 !important;
  }
  .k-flex.fix > .k-fitem.order4 {
    -webkit-box-ordinal-group: 5 !important;
        -ms-flex-order: 4 !important;
            order: 4 !important;
  }
}
/* ビフォーアフター1
================================================== */
.k-beforeAfter1 * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.k-beforeAfter1 {
  position: relative;
}
.k-beforeAfter1 .before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40%;
  z-index: 2;
}
.k-beforeAfter1 .after {
  padding: 10px 10px 30px 30px;
}
.k-beforeAfter1 .before .inner img {
  height: 100px;
}
.k-beforeAfter1 .inner {
  position: relative;
  background-color: #fff;
}
.k-beforeAfter1 .inner img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border: solid 5px #fff;
  -webkit-box-shadow: 2px 2px 10px -3px rgba(0, 0, 0, 0.3);
          box-shadow: 2px 2px 10px -3px rgba(0, 0, 0, 0.3);
}
.k-beforeAfter1 .inner p {
  position: absolute;
  font-weight: 600;
  top: 10px;
  right: 10px;
  letter-spacing: 0.15em;
  background: rgba(0, 160, 233, 0.8);
  border-radius: 5px;
  padding: 1px 8px 0px;
  text-align: right;
  z-index: 3;
  color: #fff;
  font-family: "Quicksand", "Dosis", sans-serif;
  font-weight: 400;
  /*text-transform: uppercase;*/
  font-size: 12px;
}
.k-beforeAfter1 .inner p.af {
  background: rgba(241, 68, 83, 0.8);
}
.k-beforeAfter1 .inner a {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.k-beforeAfter1 .inner a:hover {
  opacity: 0.6;
}

@media all and (max-width: 639px) {
  .k-beforeAfter1 .before {
    width: 50%;
  }
  .k-beforeAfter1 .inner img {
    height: 170px;
  }
}
.price_txt {
  font-weight: 600;
  margin-top: 10px;
  color: #413631;
}
.price_txt span {
  font-size: 1.3rem;
}
.price_txt {
  font-size: 1.6rem;
}
@media all and (max-width: 639px) {
  .price_txt span {
    font-size: 1.2rem;
  }
  .price_txt {
    font-size: 1.5rem;
  }
}

.mini {
  font-size: 85%;
}

.gray {
  color: #72727b;
}

.js-span-text.on {
  opacity: 1;
}
.js-span-text.on span {
  display: inline-block;
  opacity: 0;
}
.js-span-text.on span:nth-child(1) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.1s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.1s forwards;
}
.js-span-text.on span:nth-child(2) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.2s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.2s forwards;
}
.js-span-text.on span:nth-child(3) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.3s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.3s forwards;
}
.js-span-text.on span:nth-child(4) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.4s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.4s forwards;
}
.js-span-text.on span:nth-child(5) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.5s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.5s forwards;
}
.js-span-text.on span:nth-child(6) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.6s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.6s forwards;
}
.js-span-text.on span:nth-child(7) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.7s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.7s forwards;
}
.js-span-text.on span:nth-child(8) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.8s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.8s forwards;
}
.js-span-text.on span:nth-child(9) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.9s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.9s forwards;
}
.js-span-text.on span:nth-child(10) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1s forwards;
}
.js-span-text.on span:nth-child(11) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.1s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.1s forwards;
}
.js-span-text.on span:nth-child(12) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.2s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.2s forwards;
}
.js-span-text.on span:nth-child(13) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.3s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.3s forwards;
}
.js-span-text.on span:nth-child(14) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.4s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.4s forwards;
}
.js-span-text.on span:nth-child(15) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.5s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.5s forwards;
}
.js-span-text.on span:nth-child(16) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.6s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.6s forwards;
}
.js-span-text.on span:nth-child(17) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.7s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.7s forwards;
}
.js-span-text.on span:nth-child(18) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.8s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.8s forwards;
}
.js-span-text.on span:nth-child(19) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.9s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.9s forwards;
}
.js-span-text.on span:nth-child(20) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2s forwards;
}
.js-span-text.on span:nth-child(21) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.1s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.1s forwards;
}
.js-span-text.on span:nth-child(22) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.2s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.2s forwards;
}
.js-span-text.on span:nth-child(23) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.3s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.3s forwards;
}
.js-span-text.on span:nth-child(24) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.4s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.4s forwards;
}
.js-span-text.on span:nth-child(25) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.5s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.5s forwards;
}
.js-span-text.on span:nth-child(26) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.6s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.6s forwards;
}
.js-span-text.on span:nth-child(27) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.7s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.7s forwards;
}
.js-span-text.on span:nth-child(28) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.8s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.8s forwards;
}
.js-span-text.on span:nth-child(29) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.9s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.9s forwards;
}
.js-span-text.on span:nth-child(30) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3s forwards;
}
.js-span-text.on span:nth-child(31) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.1s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.1s forwards;
}
.js-span-text.on span:nth-child(32) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.2s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.2s forwards;
}
.js-span-text.on span:nth-child(33) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.3s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.3s forwards;
}
.js-span-text.on span:nth-child(34) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.4s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.4s forwards;
}
.js-span-text.on span:nth-child(35) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.5s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.5s forwards;
}
.js-span-text.on span:nth-child(36) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.6s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.6s forwards;
}
.js-span-text.on span:nth-child(37) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.7s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.7s forwards;
}
.js-span-text.on span:nth-child(38) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.8s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.8s forwards;
}
.js-span-text.on span:nth-child(39) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.9s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.9s forwards;
}
.js-span-text.on span:nth-child(40) {
  -webkit-animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 4s forwards;
          animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 4s forwards;
}

@-webkit-keyframes text {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px) translateY(-10px) scale(1.3);
            transform: translateX(-20px) translateY(-10px) scale(1.3);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes text {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px) translateY(-10px) scale(1.3);
            transform: translateX(-20px) translateY(-10px) scale(1.3);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
spc {
  padding: 5px;
}

.business-img {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
@media all and (max-width: 639px) {
  .business-img {
    height: 300px;
  }
}

.business-box {
  background: #fff;
  border: 1px solid rgba(0, 160, 233, 0.2);
  color: #413631;
  width: 70%;
  margin-left: auto;
  margin-right: 30px;
  padding: 30px;
  -webkit-box-shadow: 12px 12px rgba(0, 160, 233, 0.2);
          box-shadow: 12px 12px rgba(0, 160, 233, 0.2);
  margin-top: -30px;
}
@media all and (max-width: 639px) {
  .business-box {
    width: 98%;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
    padding: 10px;
    -webkit-box-shadow: 6px 6px rgba(0, 160, 233, 0.2);
            box-shadow: 6px 6px rgba(0, 160, 233, 0.2);
  }
}

.title04 {
  font-weight: 600;
  text-align: center;
  font-size: 2rem;
  margin: -100px auto 30px;
  letter-spacing: 0.2em;
  line-height: 1.6;
  color: #413631;
}
.title04 img {
  display: block;
  max-width: 150px;
  width: 40%;
  margin: 0 auto 20px;
}
.title04 span {
  display: block;
  font-family: "Quicksand", "Dosis", sans-serif;
  font-weight: 400;
  /*text-transform: uppercase;*/
  font-size: 4.5rem;
}
.title04 span mn {
  font-size: 3.6rem;
}
.title04 span {
  color: #f14453;
  text-shadow: 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 2px 2px 5px rgba(65, 54, 49, 0.5);
}
@media all and (max-width: 639px) {
  .title04 {
    font-size: 1.5rem;
    margin: -40px auto 20px;
    letter-spacing: 0.1em;
  }
  .title04 span {
    font-size: 3.2rem;
  }
  .title04 span mn {
    font-size: 2.4rem;
  }
}

@media all and (max-width: 639px) {
  .sec3 {
    margin-top: 30px;
  }
}
.sec3 {
  margin-top: 75px;
  position: relative;
  background: rgba(159, 214, 226, 0.3);
  padding-bottom: 60px;
}
.sec3:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 115px;
  top: -114px;
  left: 0;
  background: url(../img/sec3_btm.png) no-repeat center bottom/100% auto;
}
.sec3 .inner {
  position: relative;
  z-index: 3;
}

.sec4 {
  position: relative;
  background: #fefefe;
}
.sec4:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 115px;
  top: -114px;
  left: 0;
  background: url(../img/sec4_btm.png) no-repeat center bottom/100% auto;
}
.sec4 .inner {
  position: relative;
  z-index: 3;
}

.bg-half2 {
  position: relative;
}
.bg-half2:after {
  position: absolute;
  content: "";
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: calc(100% - 80px);
  height: 55%;
  bottom: 0;
  background: repeating-linear-gradient(45deg, #f2f4f4 0, #f2f4f4 10px, #fefefe 10px, #fefefe 20px);
  opacity: 0.6;
  z-index: -2;
}
@media all and (max-width: 639px) {
  .bg-half2:after {
    height: 90%;
    width: 60%;
  }
}

.sec2-box {
  position: relative;
}
.sec2-box .sec2-img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0px;
}
.sec2-box .sec2-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
.sec2-box .sec2-txt {
  width: 50%;
  margin-left: auto;
  padding: 100px 35px 80px;
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(6px);
}
@media all and (max-width: 900px) {
  .sec2-box .sec2-img {
    height: 300px;
    top: -200px;
  }
  .sec2-box .sec2-txt {
    width: 90%;
    margin: 200px auto 0;
    padding: 85px 20px 35px;
  }
}
@media all and (max-width: 639px) {
  .sec2-box .sec2-img {
    height: 220px;
    top: -150px;
  }
  .sec2-box .sec2-txt {
    width: 95%;
    padding: 70px 15px 25px;
    margin-top: 150px;
    background: #fff;
  }
}

.title-big2 {
  position: absolute;
  left: 20px;
  top: -30px;
}
.title-big2.type1 {
  left: auto;
  right: 20px;
}
@media all and (max-width: 900px) {
  .title-big2.type1 {
    right: auto;
    left: 20px;
  }
}
.title-big2 .eng {
  display: block;
  font-family: "Quicksand", "Dosis", sans-serif;
  font-weight: 400;
  /*text-transform: uppercase;*/
  font-size: 5rem;
  color: #00A0E9;
  line-height: 1.2;
  opacity: 0.1;
}
.title-big2 .ja {
  display: block;
  color: #00A0E9;
  font-size: 2rem;
  font-weight: 600;
}
@media all and (max-width: 639px) {
  .title-big2 {
    top: -15px;
  }
  .title-big2 .eng {
    font-size: 3rem;
  }
  .title-big2 .ja {
    font-size: 1.5rem;
  }
}

.numpop_list {
  position: relative;
  margin: 70px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.numpop_list.type1 li {
  width: 31%;
}
.numpop_list li {
  width: 48%;
  margin: 0 1% 60px;
  padding: 20px;
  border: 2px solid #333;
  border-radius: 10px;
  position: relative;
  -webkit-filter: drop-shadow(6px 6px 0px rgba(37, 53, 43, 0.2));
          filter: drop-shadow(6px 6px 0px rgba(37, 53, 43, 0.2));
  background-color: #fff;
}
.numpop_list .list_num {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: -44px;
  text-align: center;
}
.numpop_list .list_num span {
  background-color: #f14453;
  color: #fff;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  line-height: 2.2;
  display: inline-block;
  border: 10px solid #fff;
  font-family: "Quicksand", "Dosis", sans-serif;
  font-weight: 400;
  /*text-transform: uppercase;*/
  font-size: 3rem;
}
.numpop_list .list_icon {
  margin: 20px auto 10px;
  max-width: 250px;
  text-align: center;
}
.numpop_list .list_icon img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 300px;
}
.numpop_list .list_title {
  font-size: 1.7rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: #00A0E9;
}
.numpop_list .list_txt {
  margin: 10px auto 10px;
}
.numpop_list {
  /* ▼スマホは1カラム */
}
@media all and (max-width: 639px) {
  .numpop_list {
    margin: 50px auto 0;
  }
  .numpop_list.type1 li {
    width: 100%;
  }
  .numpop_list li {
    width: 100%;
    padding: 20px 10px 20px;
    -webkit-filter: drop-shadow(2px 2px 0px rgba(37, 53, 43, 0.2));
            filter: drop-shadow(2px 2px 0px rgba(37, 53, 43, 0.2));
  }
  .numpop_list .list_num span {
    width: 70px;
    height: 70px;
    line-height: 2.6;
    font-size: 1.6rem;
  }
  .numpop_list .list_icon {
    margin: 10px auto 10px;
    max-width: 170px;
  }
  .numpop_list .list_title {
    font-size: 1.5rem;
  }
  .numpop_list .list_txt {
    margin: 10px auto 10px;
    font-size: 1rem;
  }
}

.top-bnr.contact-bnr {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
}
.top-bnr.contact-bnr a {
  display: block;
  padding: 60px 30px;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), -webkit-box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), -webkit-box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), -webkit-box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.top-bnr.contact-bnr a:before, .top-bnr.contact-bnr a:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.top-bnr.contact-bnr a:before {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28207/top_contact.webp) no-repeat center/cover;
  -webkit-filter: grayscale(100%) brightness(1.3) opacity(0.15);
          filter: grayscale(100%) brightness(1.3) opacity(0.15);
  z-index: -2;
}
.top-bnr.contact-bnr a:after {
  background: linear-gradient(135deg, rgba(0, 160, 233, 0.75) 0%, rgba(175, 225, 250, 0.85) 100%);
  z-index: -1;
  -webkit-transition: background 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  transition: background 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.top-bnr.contact-bnr a .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1;
}
.top-bnr.contact-bnr a .inner .child-txt {
  width: 100%;
  color: #ffffff;
  text-align: center;
}
.top-bnr.contact-bnr a .inner .child-txt .bnr-title {
  margin-bottom: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.top-bnr.contact-bnr a .inner .child-txt .bnr-title .contact-icon {
  display: block;
  font-size: 5.5rem;
  color: #ffffff;
  margin-bottom: 15px;
  -webkit-filter: drop-shadow(0 4px 10px rgba(255, 255, 255, 0.4));
          filter: drop-shadow(0 4px 10px rgba(255, 255, 255, 0.4));
  -webkit-animation: floatingHyoi 2.5s infinite;
          animation: floatingHyoi 2.5s infinite;
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), -webkit-filter 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  transition: -webkit-transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), -webkit-filter 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), filter 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), filter 0.8s cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), -webkit-filter 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.top-bnr.contact-bnr a .inner .child-txt .bnr-title .eng {
  display: block;
  font-size: 1.8rem;
  font-family: "Quicksand", "Arial", sans-serif;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.12em;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.top-bnr.contact-bnr a .inner .child-txt .bnr-title .ja {
  display: block;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-shadow: 0 2px 8px rgba(241, 68, 83, 0.3);
}
.top-bnr.contact-bnr a .inner .child-txt p.bnr-txt {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #ffffff;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.top-bnr.contact-bnr a:hover:after {
  background: linear-gradient(135deg, rgba(0, 140, 210, 0.85) 0%, rgba(0, 80, 150, 0.9) 100%);
}
.top-bnr.contact-bnr a:hover .contact-icon {
  -webkit-animation: none;
          animation: none;
  -webkit-transform: translateY(-4px) scale(1.02);
          transform: translateY(-4px) scale(1.02);
  -webkit-filter: drop-shadow(0 10px 25px rgba(0, 90, 160, 0.4));
          filter: drop-shadow(0 10px 25px rgba(0, 90, 160, 0.4));
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), -webkit-filter 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  transition: -webkit-transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), -webkit-filter 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), filter 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), filter 0.8s cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), -webkit-filter 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
@media all and (max-width: 900px) {
  .top-bnr.contact-bnr a {
    padding: 45px 15px;
  }
  .top-bnr.contact-bnr a .inner .child-txt .bnr-title .contact-icon {
    font-size: 4.5rem;
  }
  .top-bnr.contact-bnr a .inner .child-txt .bnr-title .eng {
    font-size: 1.5rem;
  }
  .top-bnr.contact-bnr a .inner .child-txt .bnr-title .ja {
    font-size: 2.2rem;
  }
  .top-bnr.contact-bnr a .inner .child-txt p.bnr-txt {
    font-size: 1.4rem;
  }
}
@media all and (max-width: 639px) {
  .top-bnr.contact-bnr a {
    padding: 35px 15px;
  }
  .top-bnr.contact-bnr a .inner .child-txt .bnr-title {
    margin-bottom: 15px;
  }
  .top-bnr.contact-bnr a .inner .child-txt .bnr-title .contact-icon {
    font-size: 3.8rem;
    margin-bottom: 10px;
  }
  .top-bnr.contact-bnr a .inner .child-txt .bnr-title .eng {
    font-size: 1.3rem;
  }
  .top-bnr.contact-bnr a .inner .child-txt .bnr-title .ja {
    font-size: 1.8rem;
  }
  .top-bnr.contact-bnr a .inner .child-txt p.bnr-txt {
    font-size: 1.3rem;
    line-height: 1.6;
  }
  .top-bnr.contact-bnr a .inner .child-txt p.bnr-txt br {
    display: none;
  }
}

@-webkit-keyframes floatingHyoi {
  0%, 100% {
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
    -webkit-filter: drop-shadow(0 4px 10px rgba(255, 255, 255, 0.4));
            filter: drop-shadow(0 4px 10px rgba(255, 255, 255, 0.4));
  }
  40% {
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
    -webkit-filter: drop-shadow(0 4px 10px rgba(255, 255, 255, 0.4));
            filter: drop-shadow(0 4px 10px rgba(255, 255, 255, 0.4));
  }
  55% {
    -webkit-transform: translateY(-10px) scale(1.03);
            transform: translateY(-10px) scale(1.03);
    -webkit-filter: drop-shadow(0 6px 18px rgba(255, 255, 255, 0.7));
            filter: drop-shadow(0 6px 18px rgba(255, 255, 255, 0.7));
  }
  70% {
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
    -webkit-filter: drop-shadow(0 4px 10px rgba(255, 255, 255, 0.4));
            filter: drop-shadow(0 4px 10px rgba(255, 255, 255, 0.4));
  }
}

@keyframes floatingHyoi {
  0%, 100% {
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
    -webkit-filter: drop-shadow(0 4px 10px rgba(255, 255, 255, 0.4));
            filter: drop-shadow(0 4px 10px rgba(255, 255, 255, 0.4));
  }
  40% {
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
    -webkit-filter: drop-shadow(0 4px 10px rgba(255, 255, 255, 0.4));
            filter: drop-shadow(0 4px 10px rgba(255, 255, 255, 0.4));
  }
  55% {
    -webkit-transform: translateY(-10px) scale(1.03);
            transform: translateY(-10px) scale(1.03);
    -webkit-filter: drop-shadow(0 6px 18px rgba(255, 255, 255, 0.7));
            filter: drop-shadow(0 6px 18px rgba(255, 255, 255, 0.7));
  }
  70% {
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
    -webkit-filter: drop-shadow(0 4px 10px rgba(255, 255, 255, 0.4));
            filter: drop-shadow(0 4px 10px rgba(255, 255, 255, 0.4));
  }
}
/*feature-content*/
.sub-mtitle {
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 1.9rem;
  font-weight: bold;
}
.sub-mtitle.base-color {
  color: #00A0E9;
}

.feature-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  min-height: 60vh;
  padding: 20px;
  position: relative;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  z-index: 1;
}
.feature-content.type1 {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.feature-content.type1 .image {
  left: 0;
  right: auto;
}
.feature-content .image {
  background-color: #aaa;
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  z-index: -1;
  background-attachment: fixed;
}
.feature-content .image.b01 {
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28207/pc_about01.webp);
  background-position: center 60%;
}
.feature-content .image.b02 {
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28207/pc_about02.webp);
  background-position: center center;
}
.feature-content .image.b03 {
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28207/pc_about03.webp);
  background-position: center 60%;
}
.feature-content.show .image {
  opacity: 1;
}
.feature-content .content-txt {
  width: 50%;
  padding: 50px;
  position: relative;
  line-height: 2.5;
}
.feature-content .content-txt .maintenance-rate {
  display: block;
  margin-top: 10px;
  font-size: 0.85em;
  color: #666;
}
.feature-content .content-txt .big-ttl {
  mix-blend-mode: overlay;
  position: relative;
  top: -50%;
  margin-bottom: 60px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 10.5rem;
  margin-top: -30px;
  color: #00A0E9;
  font-family: "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  line-height: 1.1;
  opacity: 0.89;
}
.feature-content .content-txt .big-ttl.type1 {
  right: -2%;
  left: auto;
}
.feature-content .content-txt .big-ttl.type2 {
  font-size: 9rem;
  width: 100%;
  top: -25%;
}
.feature-content .content-txt .big-sub-ttl {
  position: absolute;
  bottom: -50%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 10rem;
  display: block;
  opacity: 0.1;
  font-family: "Quicksand", "Dosis", sans-serif;
  line-height: 1;
  color: #555;
}
@media all and (max-width: 1025px) {
  .feature-content .content-txt {
    padding: 30px;
  }
  .feature-content .content-txt .big-ttl {
    font-size: 9rem;
    top: -45%;
  }
  .feature-content .content-txt .big-ttl.type2 {
    font-size: 7rem;
    top: -20%;
  }
}
@media all and (max-width: 900px) {
  .feature-content {
    min-height: auto;
    padding: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .feature-content.type1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .feature-content .image {
    position: relative;
    height: 250px;
    width: 100%;
    margin-bottom: 40px;
    background-attachment: scroll;
  }
  .feature-content .image.b01 {
    opacity: 1 !important;
  }
  .feature-content .image.b02 {
    opacity: 1 !important;
  }
  .feature-content .image.b03 {
    opacity: 1 !important;
  }
  .feature-content .content-txt {
    width: 83%;
    padding: 10px;
  }
  .feature-content .content-txt .big-ttl {
    font-size: 6rem;
    position: relative;
    line-height: 1;
    opacity: 0.2;
  }
  .feature-content .content-txt .big-ttl span {
    padding-left: 0;
    font-size: 2rem;
  }
  .feature-content .content-txt .big-ttl.type2 {
    font-size: 6rem;
  }
}
@media all and (max-width: 639px) {
  .feature-content {
    margin-bottom: 30px;
  }
  .feature-content .content-txt {
    margin-top: 15px;
    width: 100%;
    padding: 0;
  }
  .feature-content .content-txt .big-ttl {
    font-size: 3rem;
    margin-bottom: 0;
    opacity: 1;
  }
  .feature-content .content-txt .big-ttl.type2 {
    font-size: 3rem;
  }
}

.water-prices {
  background-color: #ffffff;
  padding: 40px 20px;
  margin-bottom: 40px;
  border-left: 8px solid #00A0E9;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.water-prices p.mtitle-bll {
  font-size: 26px;
  font-weight: 700;
  color: #00A0E9;
  border-bottom: 2px solid #00A0E9;
  display: inline-block;
  padding-bottom: 5px;
  margin-bottom: 30px;
}
.water-prices p.mtitle-bll .sub {
  font-size: 16px;
  margin-left: 15px;
  color: #fefefe;
  background: #00A0E9;
  padding: 2px 12px;
  border-radius: 20px;
  font-weight: 500;
  display: inline-block;
  vertical-align: middle;
}
.water-prices .price-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media all and (max-width: 900px) {
  .water-prices .price-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.price-category {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 12px rgba(33, 150, 243, 0.05);
          box-shadow: 0 4px 12px rgba(33, 150, 243, 0.05);
  border: 1px solid rgba(0, 160, 233, 0.1);
  -webkit-transition: border-color 0.3s ease, -webkit-transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), -webkit-box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: border-color 0.3s ease, -webkit-transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), -webkit-box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.3s ease;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.3s ease, -webkit-transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), -webkit-box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
@media (hover: hover) {
  .price-category:hover {
    -webkit-transform: translateY(-4px);
            transform: translateY(-4px);
    border-color: rgba(0, 160, 233, 0.3);
    -webkit-box-shadow: 0 12px 24px rgba(33, 150, 243, 0.12);
            box-shadow: 0 12px 24px rgba(33, 150, 243, 0.12);
  }
}
.price-category h3 {
  font-size: 20px;
  margin-bottom: 5px;
  color: #00A0E9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
}
.price-category h3::before {
  content: "";
  width: 4px;
  height: 20px;
  background: #00A0E9;
  margin-right: 10px;
  display: inline-block;
  border-radius: 2px;
}
.price-category .plan-features {
  font-size: 14px;
  color: #666666;
  padding-left: 14px;
}
.price-category ul {
  list-style: none;
  padding-left: 14px;
  margin: 0;
}
.price-category li {
  line-height: 1.6;
  color: #333333;
}
.price-category li::before {
  display: none;
}
.price-category .price-main {
  font-size: 32px;
  font-weight: 700;
  color: #00A0E9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}
.price-category .price-main .unit {
  font-size: 16px;
  color: #333333;
  font-weight: 500;
}
.price-category .price-main .badge {
  font-size: 12px;
  background-color: #FF5252;
  color: #fff;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 700;
  -ms-flex-item-align: center;
      align-self: center;
}
.price-category .price-sub {
  font-size: 18px;
  font-weight: 700;
  color: #333333;
}
@media all and (max-width: 639px) {
  .price-category .price-sub {
    font-size: 11px;
  }
}
.price-category .note-item {
  font-size: 13px;
  color: #666666;
  margin-top: 4px;
}

.price-notes {
  margin-top: auto;
  padding: 14px 16px;
  background: rgba(241, 68, 83, 0.06);
  border-left: 3px solid #f14453;
  border-radius: 6px;
}
.price-notes p {
  font-size: 13px;
  line-height: 1.7;
  color: #f14453;
  margin: 0;
}
.price-notes p + p {
  margin-top: 6px;
}
.price-notes p:first-child {
  font-weight: 700;
}
.price-notes p.sub {
  font-size: 12px;
  font-weight: 400;
  color: rgba(241, 68, 83, 0.85);
  padding-left: 1em;
  text-indent: -1em;
}

@media all and (max-width: 639px) {
  .water-prices {
    padding: 30px 15px;
  }
  .water-prices p.mtitle-bll {
    font-size: 22px;
    display: block;
    border-bottom: none;
  }
  .water-prices p.mtitle-bll .sub {
    margin-left: 0;
    margin-bottom: 5px;
    font-size: 14px;
  }
  .price-category {
    padding: 20px 15px;
  }
  .price-category .price-main {
    font-size: 40px;
    margin-bottom: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
.telbnr {
  margin-left: auto;
  margin-right: auto;
  padding-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.telbnr li {
  text-align: center;
  line-height: 1.4;
  width: 45%; /* 2個並び用に調整 */
  position: relative;
  margin: 0;
  max-width: 600px;
}
.telbnr li .telbnr_top {
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, rgb(3.5, 176.2038626609, 255) 0%, #00A0E9 100%);
  padding: 8px 20px;
  border-radius: 30px;
  display: block;
  font-size: 1.3rem;
  max-width: 70%;
  margin: 0 auto -18px;
  -webkit-box-shadow: 0 4px 12px rgba(0, 160, 233, 0.2);
          box-shadow: 0 4px 12px rgba(0, 160, 233, 0.2);
  letter-spacing: 0.05em;
  position: relative;
  z-index: 2;
  pointer-events: none;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.telbnr li {
  /* FAX側のラベルはサブカラーのグラデーションに */
}
.telbnr li.fax-li .telbnr_top {
  background: linear-gradient(135deg, rgb(242.776119403, 91.723880597, 104.8208955224) 0%, #f14453 100%);
  -webkit-box-shadow: 0 4px 12px rgba(241, 68, 83, 0.2);
          box-shadow: 0 4px 12px rgba(241, 68, 83, 0.2);
}
.telbnr li {
  /* 共通ベーススタイル */
}
.telbnr li a, .telbnr li .fax {
  display: block;
  font-family: "Homemade Apple", cursive;
  font-weight: 400;
  border: 2px solid #00A0E9;
  color: #00A0E9;
  border-radius: 90px;
  background: #fff;
  padding: 35px 20px 25px;
  white-space: nowrap;
  position: relative;
  text-decoration: none;
  -webkit-box-shadow: 0 8px 24px rgba(0, 160, 233, 0.12);
          box-shadow: 0 8px 24px rgba(0, 160, 233, 0.12);
  -webkit-transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  overflow: hidden;
  z-index: 1;
}
.telbnr li a::before, .telbnr li .fax::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140%;
  height: 0;
  padding-bottom: 140%;
  border-radius: 50%;
  background: linear-gradient(135deg, #00A0E9 0%, rgb(0, 124.9785407725, 182) 100%);
  -webkit-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: -1;
}
.telbnr li a .telbnr_main, .telbnr li .fax .telbnr_main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.telbnr li a .telbnr_main .tel-icon, .telbnr li .fax .telbnr_main .tel-icon {
  display: inline-block;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.telbnr li a .sub_txt, .telbnr li .fax .sub_txt {
  display: block;
  font-size: 1.4rem;
  color: #413631; /* $txt から $brown に修正 */
  margin-top: 10px;
  -webkit-transition: color 0.4s ease;
  transition: color 0.4s ease;
}
.telbnr li {
  /* FAX専用スタイル ($sub_color と $brown を適用) */
}
.telbnr li .fax {
  pointer-events: none;
  cursor: default;
  border-color: #f14453;
  color: #413631; /* FAX番号の文字色は $brown に */
  -webkit-box-shadow: 0 8px 24px rgba(241, 68, 83, 0.1);
          box-shadow: 0 8px 24px rgba(241, 68, 83, 0.1);
}
.telbnr li .fax .telbnr_main {
  color: #f14453; /* アイコンやメイン部分を紫系に */
}
.telbnr li .fax .telbnr_main .tel-num {
  color: #413631; /* 番号自体は読みやすいように $brown (#333333) に設定 */
}
.telbnr li .fax::before {
  display: none;
}
.telbnr li {
  /* ホバーエフェクト（aタグのみに有効化） */
}
@media (hover: hover) and (pointer: fine) {
  .telbnr li:hover {
    /* FAXではない通常のliの時だけtopの背景を変える */
  }
  .telbnr li:hover:not(.fax-li) .telbnr_top {
    background: #fff;
    color: #00A0E9;
    -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  .telbnr li:hover a {
    color: #fff;
    border-color: transparent;
    -webkit-transform: translateY(-4px);
            transform: translateY(-4px);
    -webkit-box-shadow: 0 12px 30px rgba(0, 160, 233, 0.3);
            box-shadow: 0 12px 30px rgba(0, 160, 233, 0.3);
  }
  .telbnr li:hover a::before {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
  .telbnr li:hover a .sub_txt {
    color: rgba(255, 255, 255, 0.8);
  }
  .telbnr li:hover a .tel-icon {
    -webkit-animation: telShake 0.6s ease infinite alternate;
            animation: telShake 0.6s ease infinite alternate;
  }
}
@media all and (max-width: 1025px) {
  .telbnr li a .telbnr_main, .telbnr li .fax .telbnr_main {
    font-size: 2.8rem;
  }
}
@media all and (max-width: 900px) {
  .telbnr {
    gap: 20px;
  }
  .telbnr li {
    width: 100%;
    margin: 0 auto;
  }
  .telbnr li .telbnr_top {
    max-width: 60%;
  }
}
@media all and (max-width: 639px) {
  .telbnr {
    max-width: 100%;
    gap: 15px;
  }
  .telbnr li {
    width: 100%;
  }
  .telbnr li:last-of-type {
    margin-left: auto;
  }
  .telbnr li .telbnr_top {
    font-size: 1.1rem;
    max-width: 75%;
    margin: 0 auto -12px;
  }
  .telbnr li a, .telbnr li .fax {
    margin-top: 0;
    border-radius: 20px;
    padding: 25px 15px 15px;
    -webkit-box-shadow: 0 6px 16px rgba(0, 160, 233, 0.15);
            box-shadow: 0 6px 16px rgba(0, 160, 233, 0.15);
  }
  .telbnr li a .telbnr_main, .telbnr li .fax .telbnr_main {
    font-size: 2.2rem;
    gap: 10px;
  }
  .telbnr li {
    /* スマホ時のFAXシャドウ調整 */
  }
  .telbnr li .fax {
    -webkit-box-shadow: 0 6px 16px rgba(241, 68, 83, 0.1);
            box-shadow: 0 6px 16px rgba(241, 68, 83, 0.1);
  }
}

@-webkit-keyframes telShake {
  0% {
    -webkit-transform: rotate(-10deg) scale(1.1);
            transform: rotate(-10deg) scale(1.1);
  }
  100% {
    -webkit-transform: rotate(10deg) scale(1.1);
            transform: rotate(10deg) scale(1.1);
  }
}

@keyframes telShake {
  0% {
    -webkit-transform: rotate(-10deg) scale(1.1);
            transform: rotate(-10deg) scale(1.1);
  }
  100% {
    -webkit-transform: rotate(10deg) scale(1.1);
            transform: rotate(10deg) scale(1.1);
  }
}
#side-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
  margin: 0 auto;
}
@media all and (max-width: 1025px) {
  #side-box {
    padding: 0 40px;
  }
}
@media all and (max-width: 900px) {
  #side-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 0;
    padding: 0;
  }
}
#side-box #side-menu {
  width: 200px;
  position: sticky;
  left: 0;
  top: 40px;
  margin-bottom: 120px;
}
@media all and (max-width: 900px) {
  #side-box #side-menu {
    position: static;
    top: 0;
    left: auto;
    width: 98%;
    max-width: calc(100% - 20px);
    margin: 0 auto;
  }
}
#side-box #side-main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 30px;
}
@media all and (max-width: 1025px) {
  #side-box #side-main {
    margin-left: 10px;
  }
}
@media all and (max-width: 900px) {
  #side-box #side-main {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
    margin: 0;
    width: 100%;
  }
}

.sidenavi_wrap {
  margin-top: 72px;
  background: #ffffff;
  padding: 0 10px;
  border-radius: 5px;
  overflow: hidden;
  -webkit-box-shadow: 0 0 15px -5px rgba(65, 54, 49, 0.1);
          box-shadow: 0 0 15px -5px rgba(65, 54, 49, 0.1);
}
.sidenavi_wrap.is-fixed {
  margin-top: 40px;
}
@media all and (max-width: 900px) {
  .sidenavi_wrap {
    margin-top: 0;
  }
}
.sidenavi_wrap .title-mini {
  font-size: 1.3rem;
  font-family: "YakuHanJP", "Zen Maru Gothic", Lato, "筑紫A丸ゴシック", "TsukuARoundGothic-Regular", "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN W4", "HG丸ｺﾞｼｯｸM-PRO", sans-serif;
  font-weight: 500;
  letter-spacing: 0.2em;
  letter-spacing: 0.15em;
  background: #00A0E9;
  color: #ffffff;
  padding: 8px;
  margin: 0 -10px;
  text-align: center;
}
.sidenavi_wrap .title-mini.type1 {
  background: #f14453;
}
@media all and (max-width: 900px) {
  .sidenavi_wrap .title-mini {
    font-size: 1.2rem;
  }
}
@media all and (max-width: 639px) {
  .sidenavi_wrap .title-mini {
    font-size: 1.15rem;
  }
}
.sidenavi_wrap .side-navi {
  font-size: 1.3rem;
  letter-spacing: 0.08em;
}
@media all and (max-width: 900px) {
  .sidenavi_wrap .side-navi {
    font-size: 1.1rem;
  }
}
@media all and (max-width: 639px) {
  .sidenavi_wrap .side-navi {
    font-size: 1.05rem;
  }
}
.sidenavi_wrap .side-navi {
  line-height: 1.6;
  padding: 10px 0;
}
.sidenavi_wrap .side-navi > li a {
  display: block;
  color: #413631;
  position: relative;
  padding: 5px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.sidenavi_wrap .side-navi > li a i {
  color: #00A0E9;
  margin-left: 5px;
}
.sidenavi_wrap .side-navi > li a:before {
  margin-right: 5px;
  color: #00A0E9;
  font-family: "Font Awesome 5 Free";
  content: "\f0da";
  font-weight: 900;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.sidenavi_wrap .side-navi > li a:hover {
  background: rgb(251.7, 251.04, 248.4);
}
.sidenavi_wrap .side-navi > li a:hover:before {
  opacity: 1;
}
.sidenavi_wrap .side-navi > li:not(:last-of-type) {
  border-bottom: 1px dashed #eee;
}

.panel2 {
  display: none;
}
.panel2:first-of-type {
  display: block;
}

.category_tab2 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  margin-bottom: 40px;
}
.category_tab2 li {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-family: "YakuHanJP", "Zen Maru Gothic", Lato, "筑紫A丸ゴシック", "TsukuARoundGothic-Regular", "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN W4", "HG丸ｺﾞｼｯｸM-PRO", sans-serif;
  font-weight: 500;
  letter-spacing: 0.2em;
  font-size: 1.6rem;
}
@media all and (max-width: 900px) {
  .category_tab2 li {
    font-size: 1.4rem;
  }
}
@media all and (max-width: 639px) {
  .category_tab2 li {
    font-size: 1.25rem;
    letter-spacing: 0.15em;
  }
}
.category_tab2 li {
  line-height: 1.4;
  border-width: 2px;
  border-style: solid;
  border-color: #00A0E9;
  background: transparent;
  color: #413631;
  padding: 25px 15px;
  margin-right: 1%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  border-radius: 5px;
}
.category_tab2 li i {
  font-size: 130%;
  margin-right: 10px;
  color: #00A0E9;
}
.category_tab2 li:last-child {
  margin-right: 0;
}
.category_tab2 li:hover {
  background: #00A0E9;
  color: #fff;
}
.category_tab2 li:hover i {
  color: #fff;
}
.category_tab2 li.active {
  background: #00A0E9;
  color: #fff;
}
.category_tab2 li.active i {
  color: #fff;
}
.category_tab2 li.active::after {
  position: absolute;
  content: "";
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 50%;
  bottom: -10px;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-top: 10px solid #00A0E9;
  border-bottom: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.category_tab2 li:nth-child(even) {
  border-color: #f14453;
}
.category_tab2 li:nth-child(even) i {
  color: #f14453;
}
.category_tab2 li:nth-child(even):hover {
  background: #f14453;
  color: #fff;
}
.category_tab2 li:nth-child(even):hover i {
  color: #fff;
}
.category_tab2 li:nth-child(even).active {
  background: #f14453;
  color: #fff;
}
.category_tab2 li:nth-child(even).active i {
  color: #fff;
}
.category_tab2 li:nth-child(even).active::after {
  border-top: 10px solid #f14453;
}
@media all and (max-width: 1025px) {
  .category_tab2 {
    margin-bottom: 20px;
  }
}
@media all and (max-width: 900px) {
  .category_tab2 {
    margin-bottom: 20px;
  }
  .category_tab2 li {
    padding: 20px 10px;
    font-size: 1.3rem;
  }
  .category_tab2 li i {
    margin-right: 0;
    margin-bottom: 5px;
    display: block;
  }
}
@media all and (max-width: 639px) {
  .category_tab2 li {
    padding: 15px 5px;
    font-size: 1rem;
  }
}

.about-mbox .inner {
  position: relative;
  z-index: 2;
  background: #fefefe;
  padding: 40px 30px;
  border-top: 5px solid #00A0E9;
  border-radius: 0 0 10px 10px;
  -webkit-box-shadow: 0 4px 10px rgba(0, 160, 233, 0.1);
          box-shadow: 0 4px 10px rgba(0, 160, 233, 0.1);
}
@media all and (max-width: 639px) {
  .about-mbox .inner {
    padding: 10px;
  }
}
.about-mbox.sbc .inner {
  border-top: 5px solid #f14453;
}

.business-list.client-fit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 20px;
  margin-top: 50px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
@media all and (max-width: 900px) {
  .business-list.client-fit-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.business-list.client-fit-grid .business-item {
  padding: 0 20px;
  text-align: center;
  position: relative;
}
.business-list.client-fit-grid .business-item:not(:last-child)::after {
  display: none;
}
@media all and (max-width: 900px) {
  .business-list.client-fit-grid .business-item {
    width: 100%;
    padding-bottom: 30px;
    margin-bottom: 0;
  }
  .business-list.client-fit-grid .business-item:not(:last-child) {
    border-bottom: 1px dotted #eee;
  }
}
.business-list.client-fit-grid .business-item .num-badge {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 36px;
  height: 36px;
  background-color: #00A0E9;
  color: #fefefe;
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: bold;
  margin: 0 auto 15px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.business-list.client-fit-grid .business-item .num-badge.type1 {
  background-color: #f14453;
}
.business-list.client-fit-grid .business-item .item-title {
  display: inline-block;
  font-weight: bold;
  color: #413631;
  margin-left: 10px;
  vertical-align: middle;
  line-height: 36px;
  font-family: "YakuHanJP", "Zen Maru Gothic", Lato, "筑紫A丸ゴシック", "TsukuARoundGothic-Regular", "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN W4", "HG丸ｺﾞｼｯｸM-PRO", sans-serif;
  font-weight: 500;
  letter-spacing: 0.2em;
  font-size: 2rem;
}
@media all and (max-width: 900px) {
  .business-list.client-fit-grid .business-item .item-title {
    font-size: 1.6rem;
  }
}
@media all and (max-width: 639px) {
  .business-list.client-fit-grid .business-item .item-title {
    font-size: 1.45rem;
  }
}
.business-list.client-fit-grid .business-item .arrow-down {
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 8px solid #00A0E9;
  margin: 15px auto;
}
.business-list.client-fit-grid .business-item .arrow-down.type1 {
  border-top: 8px solid #f14453;
}
.business-list.client-fit-grid .business-item .item-visual {
  width: 100%;
  max-width: 320px;
  margin: 0 auto 20px;
}
.business-list.client-fit-grid .business-item .item-visual.mn315 {
  min-height: 315px;
}
@media all and (max-width: 900px) {
  .business-list.client-fit-grid .business-item .item-visual.mn315 {
    min-height: auto;
  }
}
.business-list.client-fit-grid .business-item .item-visual img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
.business-list.client-fit-grid .business-item .item-text {
  line-height: 1.7;
  color: #413631;
  text-align: left;
  padding: 0 10px;
}
@media all and (max-width: 900px) {
  .business-list.client-fit-grid .business-item .item-text {
    margin: 0 auto;
  }
}

.bg_img {
  position: relative;
  width: 100%;
  overflow: hidden;
  z-index: 0;
}
.bg_img.bg_gray {
  background-color: inherit !important;
}
.bg_img.bg_gray:before {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}
.bg_img.bg_blur {
  overflow: hidden;
}
.bg_img.bg_blur:before {
  -webkit-filter: blur(4px);
          filter: blur(4px);
}
.bg_img.bg_black_grd:after {
  content: "";
  position: absolute;
  width: 100%;
  background: rgb(0, 0, 0);
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(0, 0, 0)), color-stop(95%, rgba(0, 0, 0, 0.2)));
  background: linear-gradient(180deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 95%);
  background-position: center center;
  background-size: cover;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}
.bg_img.bg_black_grd_bottom:after {
  content: "";
  position: absolute;
  width: 100%;
  background: rgb(0, 0, 0);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(90%, rgba(0, 0, 0, 0.4)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 90%);
  background-position: center center;
  background-size: cover;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}
.bg_img.bg_white_grd:after {
  content: "";
  position: absolute;
  background: rgb(255, 255, 255);
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(255, 255, 255)), color-stop(90%, rgba(255, 255, 255, 0.5)));
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.5) 90%);
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  z-index: 0;
}
.bg_img.bg_white_grd_s:after {
  content: "";
  position: absolute;
  background: rgb(255, 255, 255);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(25%, rgb(255, 255, 255)), color-stop(50%, rgba(255, 255, 255, 0.1)));
  background: linear-gradient(180deg, rgb(255, 255, 255) 25%, rgba(255, 255, 255, 0.1) 50%);
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  z-index: 0;
}
.bg_img.bg_white_grd_bottom:after {
  content: "";
  position: absolute;
  background: rgb(255, 255, 255);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(90%, rgb(255, 255, 255)));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 90%);
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  z-index: 0;
}
.bg_img.bg_base_grd:after {
  background: linear-gradient(151deg, rgb(152, 154, 153) 0%, rgb(224, 224, 224) 47%, rgb(152, 154, 153) 100%);
  content: "";
  position: absolute;
  width: 100%;
  background-position: center center;
  background-size: cover;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.8;
}
.bg_img.bg_sharp:after {
  clip-path: polygon(0 0, 100% 4rem, 100% 100%, 0 calc(100% - 4rem));
  -webkit-clip-path: polygon(0 0, 100% 4rem, 100% 100%, 0 calc(100% - 4rem));
}
.bg_img.bg_base {
  background-color: inherit !important;
}
.bg_img.bg_base:before {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  -webkit-filter: blur(4px);
          filter: blur(4px);
}
.bg_img.bg_base:after {
  content: "";
  position: absolute;
  width: 100%;
  background-color: rgba(0, 160, 233, 0.55);
  background-position: center center;
  background-size: cover;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.bg_img.bg_white {
  background-color: rgba(255, 255, 255, 0) !important;
}
.bg_img.bg_white:after {
  content: "";
  position: absolute;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  background-position: center center;
  background-size: cover;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.bg_img.bg_glass {
  background-color: rgba(255, 255, 255, 0) !important;
}
.bg_img.bg_glass:after {
  content: "";
  position: absolute;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  background-position: center center;
  background-size: cover;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.bg_img.bg_black {
  background-color: rgba(17, 17, 17, 0) !important;
}
.bg_img.bg_black:after {
  content: "";
  position: absolute;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  background-position: center center;
  background-size: cover;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.bg_img.bg_dark {
  background-color: rgba(51, 51, 51, 0) !important;
}
.bg_img.bg_dark:after {
  content: "";
  position: absolute;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  background-position: center center;
  background-size: cover;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.bg_img.curve {
  clip-path: ellipse(100% 100% at top);
  overflow: hidden;
}
.bg_img__target {
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 140%;
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28207/bg_img.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: -2;
}
.bg_img.bg_grd {
  background: none;
}
.bg_img.bg_grd:after {
  content: "";
  position: absolute;
  width: 100%;
  background: linear-gradient(151deg, rgb(152, 154, 153) 0%, rgb(224, 224, 224) 47%, rgb(152, 154, 153) 100%);
  background-position: center center;
  background-size: cover;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.8;
}
.bg_img.top__target, .bg_img.top:after {
  height: 50%;
  top: 0;
  bottom: inherit;
}
.bg_img.left__target, .bg_img.left:after {
  width: 50%;
  left: 0;
  right: inherit;
}
.bg_img.right__target, .bg_img.right:after {
  width: 50%;
  left: inherit;
  right: 0;
}
.bg_img.bottom__target, .bg_img.bottom:after {
  height: 50%;
  top: inherit;
  bottom: 0;
}
.bg_img.repeat__target {
  background-repeat: repeat-x;
  background-size: contain;
  background-position: center bottom;
}
.bg_img.fixed__target {
  background-attachment: fixed;
}
@media all and (max-width: 639px) {
  .bg_img.fixed__target {
    background-attachment: inherit;
  }
}
.bg_img.monochrome__target {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}
.bg_img.sepia__target {
  -webkit-filter: sepia(100%);
          filter: sepia(100%);
}

.plan-header {
  text-align: center;
  margin-bottom: 30px;
}
.plan-header .plan-headline {
  color: #00A0E9;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
}
.plan-header .plan-sub-headline {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}
.plan-header .plan-disclaimer-top {
  font-size: 12px;
  color: #666666;
  margin-bottom: 25px;
}

/* 3カラムレイアウト（Flexbox） */
.plan-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 30px;
}
.plan-grid .plan-card {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: #fefefe;
  border: 1px solid #e2f2fa;
  border-radius: 8px;
  padding: 25px 20px;
  text-align: center;
  -webkit-box-shadow: 0 4px 15px rgba(0, 153, 222, 0.04);
          box-shadow: 0 4px 15px rgba(0, 153, 222, 0.04);
}
.plan-grid .operator-node {
  font-size: 36px;
  font-weight: bold;
  color: #00A0E9;
  padding: 0 15px;
}

/* パーツデザイン */
.badge-tag {
  background-color: #00A0E9;
  color: #fefefe;
  font-weight: bold;
  font-size: 16px;
  padding: 12px 10px;
  border-radius: 4px;
  margin-bottom: 25px;
  display: block;
  line-height: 1.4;
}

.image-box {
  height: 215px;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.image-box .plan-img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.plan-price {
  color: #f14453;
  font-weight: bold;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.plan-price .num-large {
  font-size: 48px;
  line-height: 1;
}
.plan-price .num-medium {
  font-size: 38px;
  line-height: 1;
}
.plan-price .prefix {
  font-size: 18px;
  margin-right: 4px;
  padding-bottom: 6px;
}
.plan-price .suffix, .plan-price .tax-unit {
  font-size: 16px;
  padding-bottom: 6px;
  margin-left: 2px;
}

.note-marker {
  font-size: 11px;
  vertical-align: super;
}

.plan-disclaimer-bottom {
  font-size: 11px;
  color: #555555;
  text-align: left;
  line-height: 1.5;
}
.plan-disclaimer-bottom.text-center {
  text-align: center;
}

/* ミックスインを使用したレスポンシブ対応 */
@media all and (max-width: 639px) {
  .plan-grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .plan-grid .operator-node {
    padding: 15px 0;
  }
  .plan-grid .plan-card {
    width: 100%;
  }
}
.form-pattern-1 dl dt:not(.pattern-exclusion) span.required::before {
  background-color: #00A0E9 !important;
  border-radius: 10px;
  padding: 8px;
  font-weight: 800;
}