@charset "UTF-8";
/* アニメーションベンダープレフィックス込み指定 */
/* アニメーションベンダープレフィックス込み指定 */
body {
  color: #222;
  background: #fdfdfd;
  font-family: "YakuHanJP", Lato, "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", 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.1rem;
}

a {
  color: rgb(1.6530612245, 111.5816326531, 119.8469387755);
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

#wrapper {
  overflow: hidden;
}

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

.bold {
  font-weight: 700;
}

h2,
h3 {
  line-height: 1.4;
}

.mincho {
  font-family: "YakuHanMP", "游明朝 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;
  }
}

.slide_list,
.slide_list2 {
  position: relative;
  display: none;
  margin: 60px auto 20px;
}
.slide_list li,
.slide_list2 li {
  margin-right: 1.5%;
}
.slide_list li img,
.slide_list2 li img {
  height: 70px;
  width: 200px;
  object-fit: contain;
  transition: filter 0.2s ease-in;
}
.slide_list li:hover img,
.slide_list2 li:hover img {
  filter: grayscale(0);
}
@media all and (max-width: 639px) {
  .slide_list li,
  .slide_list2 li {
    margin-right: 3%;
  }
  .slide_list li img,
  .slide_list2 li img {
    width: 180px;
  }
}
@media all and (max-width: 639px) {
  .slide_list,
  .slide_list2 {
    margin: 30px auto;
  }
}
.slide_list.type2 li img,
.slide_list2.type2 li img {
  height: 200px;
  width: 250px;
}

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

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

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

.loader {
  align-items: center;
  background: #fdfdfd;
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9999;
}
.loader::after {
  animation: loader 0.5s linear infinite;
  border: 1px solid #028791;
  border-radius: 50%;
  border-right: 1px solid rgba(2, 135, 145, 0.2);
  border-top: 1px solid rgba(2, 135, 145, 0.2);
  content: "";
  height: 70px;
  width: 70px;
}
.loader.off {
  display: none;
}

@keyframes loader {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* header
----------------------------------*/
@keyframes hd-scrolled {
  0% {
    opacity: 0;
    transform: translate(0, -100%);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
#l-header {
  width: 100%;
}
#l-header.is-fixed {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 30;
  background: #fefefe;
}
#l-header.is-hide {
  transform: translateY(-100%);
}
#l-header .inner {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 0;
  align-items: center;
  justify-content: space-between;
}
@media all and (max-width: 896px) {
  #l-header .inner {
    min-width: initial;
    padding: 15px 0;
  }
}
#l-header .inner #logo {
  width: 260px;
  transition: all 0.5s ease;
}
@media screen and (max-width: 1220px) {
  #l-header .inner #logo {
    width: 200px;
  }
}
@media all and (max-width: 1150px) {
  #l-header .inner #logo {
    width: 150px;
  }
}
#l-header .head-right {
  margin-left: auto;
  margin-right: 5px;
  display: flex;
  align-items: center;
}
@media all and (max-width: 896px) {
  #l-header .head-right {
    display: none;
  }
}
#l-header .head-right_contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  margin-left: auto;
}
#l-header .head-right_sns {
  text-align: center;
  display: flex;
  margin-left: 30px;
}
#l-header .head-right_sns p {
  margin: 0 6px;
}
#l-header .head-right_sns a {
  display: block;
  width: 44px;
  height: 44px;
  line-height: 44px;
  display: block;
  box-sizing: border-box;
  text-align: center;
  position: relative;
  border-radius: 50%;
  background: #028791;
  color: #fff;
}
#l-header .head-right_sns a:hover {
  opacity: 0.8;
}
#l-header .head-right_sns a.instagram {
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
}
#l-header .head-right_sns .ig {
  color: #fff;
}
#l-header .head-right_sns .ig span {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 10px;
}
#l-header .head-right_sns .ig i {
  font-size: 2rem;
}
@media all and (max-width: 1150px) {
  #l-header .head-right_sns {
    margin-left: 10px;
  }
}
#l-header .head-right_tel a,
#l-header .head-right_mail a {
  display: block;
  transition: all 0.2s ease-in;
  color: #fefefe;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  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:hover,
#l-header .head-right_mail a:hover {
  color: #3a200c;
}
#l-header .head-right_tel a {
  background: transparent;
  padding: 5px 20px 5px;
  color: #fefefe;
  font-size: 2.4rem;
  text-align: center;
  position: relative;
  background-image: linear-gradient(45deg, #028791, #1e68b6);
  transition: all 1s ease;
}
#l-header .head-right_tel a i {
  font-size: 0.8em;
  transform: scaleX(-1);
  display: inline-block;
}
#l-header .head-right_tel a span {
  font-weight: 400;
  font-family: "YakuHanJP", Lato, "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 12px;
  display: block;
  margin-top: -10px;
}
#l-header .head-right_tel a:hover {
  background-image: linear-gradient(45deg, #1e68b6, #1e68b6);
  color: #fefefe;
}
@media all and (max-width: 1150px) {
  #l-header .head-right_tel a {
    font-size: 1.8rem;
    padding: 5px 5px;
  }
}
#l-header .head-right_mail {
  margin-left: 10px;
}
#l-header .head-right_mail a {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  background: #f6bf09;
  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: #27acb6;
}

#header_nav {
  position: relative;
  width: 650px;
  z-index: 10;
}
#header_nav ul {
  text-align: center;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}
#header_nav ul li {
  position: relative;
  flex: 1 0 auto;
  text-align: center;
  border-left: 0.9px solid #ddd;
}
#header_nav ul li:first-child {
  border: 0;
}
#header_nav ul li a {
  display: block;
  letter-spacing: 0.1rem;
  position: relative;
  line-height: 1.5;
  font-size: 1.5rem;
  padding: 6px 0;
  color: #333;
  text-align: center;
  font-weight: 600;
}
#header_nav ul li a span {
  display: block;
  font-size: 1.2rem;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  color: #028791;
  position: relative;
  text-transform: uppercase;
}
#header_nav ul li a:after {
  position: absolute;
  content: "";
  width: 0;
  height: 2px;
  background: #ccc;
  left: 50%;
  bottom: 0px;
  transform: translateX(-50%);
  transition: 0.2s width ease-in;
}
#header_nav ul li a:hover:after, #header_nav ul li a.active:after {
  width: 15px;
}
#header_nav .dropdown {
  display: none;
  position: absolute;
  left: 50%;
  top: 35px;
  transform: translateX(-50%);
  z-index: 999;
  padding-top: 30px;
}
#header_nav .dropdown .dropdown-li {
  border-right: 0;
  margin: 0 0 2px;
  background: #fefefe;
}
#header_nav .dropdown .dropdown-li a {
  display: block;
  width: 180px;
  padding: 12px 8px;
  color: #222;
}
#header_nav .dropdown .dropdown-li a:hover {
  background: #028791;
}
#header_nav .dropdown .dropdown-li.foot_only {
  display: none;
}
@media all and (max-width: 1150px) {
  #header_nav {
    width: 530px;
  }
}

/* page-top
----------------------------------*/
#page-top {
  position: fixed;
  bottom: 10px;
  right: 7px;
  z-index: 200;
}
#page-top a {
  display: block;
  background: #555;
  box-shadow: rgba(0, 0, 0, 0.2) 2px 2px 2px;
  color: #fff;
  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: 896px) {
  #page-top {
    bottom: 70px;
  }
}

/* swiper
----------------------------------*/
@keyframes zoom-in {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.12);
  }
}
.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);
  background-position: 50% 100%;
}
.swiper-slide.slide3:before {
  background-image: url(../img/3.jpg);
}

.slide-img {
  overflow: hidden;
  width: 100%;
  height: 70vh;
}
.slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: "object-fit: cover;";
}
@media all and (max-width: 1150px) {
  .slide-img {
    height: 40vh;
  }
}
@media all and (max-width: 896px) {
  .slide-img {
    height: 35vh;
  }
}
@media all and (max-width: 639px) {
  .slide-img {
    height: 85vh;
  }
}

#slideshow {
  position: relative;
  background: #27acb6;
}
#slideshow::before, #slideshow::after {
  content: "";
  position: absolute;
  top: 0;
  width: 30%;
  height: 100%;
}
#slideshow::before {
  left: 0;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26660/fv01.png) no-repeat center/cover;
}
#slideshow::after {
  right: 0;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26660/fv02.png) no-repeat center/cover;
}
@media all and (max-width: 639px) {
  #slideshow::before, #slideshow::after {
    content: "";
    height: 25%;
    width: 100%;
  }
  #slideshow::before {
    background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26660/fv01.png) no-repeat bottom/cover;
  }
  #slideshow::after {
    top: auto;
    bottom: 0;
    background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26660/fv02.png) no-repeat bottom/cover;
  }
}

#catch {
  z-index: 20;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 1;
}
#catch img {
  width: auto;
  max-width: initial;
  height: 65vh;
}
@media all and (max-width: 1150px) {
  #catch img {
    height: 35vh;
  }
}
@media all and (max-width: 896px) {
  #catch img {
    height: 33vh;
  }
}
@media all and (max-width: 639px) {
  #catch {
    width: 70%;
  }
  #catch img {
    height: auto;
    width: 100%;
  }
}

#scrolldown {
  position: absolute;
  left: 15px;
  bottom: 10px;
  color: #fefefe;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  -webkit-text-orientation: mixed;
  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;
  transform: translateX(-50%);
}
#scrolldown:after {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 100%;
  top: 100px;
  margin-left: -4px;
  animation: scroll-point 2.3s ease-out infinite;
  animation-fill-mode: both;
}
@media all and (max-width: 639px) {
  #scrolldown {
    display: none;
  }
}

@keyframes scroll-point {
  0% {
    bottom: 0;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  50% {
    top: 180px;
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    top: 210px;
    opacity: 0;
  }
}
/* bg_contact
----------------------------------*/
.bg_contact {
  position: relative;
  overflow: hidden;
}

.contact_lead {
  font-size: 1.3em;
  color: #3a200c;
  text-align: center;
}
@media all and (max-width: 639px) {
  .contact_lead {
    font-size: 1em;
  }
}

.contact_bnr {
  margin: 15px auto 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
}
.contact_bnr > li {
  width: 48%;
}
@media all and (max-width: 896px) {
  .contact_bnr > li {
    width: 90%;
    margin: 0 auto 20px;
  }
}
.contact_bnr > li .bnr_tel {
  white-space: nowrap;
  position: relative;
  background: #fefefe;
}
.contact_bnr > li .bnr_tel:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  margin-right: 5px;
}
.contact_bnr > li .bnr_tel:hover {
  color: #c90d0d;
}
@media all and (max-width: 639px) {
  .contact_bnr > li .bnr_tel {
    font-size: 1.8rem;
  }
}
.contact_bnr > li .bnr_mobile {
  background: #fefefe;
  color: #1e68b6;
}
.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: #028791;
}
.contact_bnr > li .bnr_fax:before {
  font-family: "Font Awesome 5 Free";
  content: "\f1ac";
  font-weight: 900;
}
.contact_bnr > li .bnr_mail {
  background: #028791;
  color: #fefefe;
}
.contact_bnr > li .bnr_mail:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
}
.contact_bnr > li .bnr_mail:hover {
  background: rgb(2.693877551, 181.8367346939, 195.306122449);
}
.contact_bnr > li a,
.contact_bnr > li span {
  display: block;
  margin: 0 auto;
  color: #111;
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.2rem;
  padding: 15px 0;
  background: #fefefe;
}
.contact_bnr > li a:before,
.contact_bnr > li span:before {
  margin-right: 5px;
  font-size: 2rem;
  position: relative;
  display: inline-block;
}
@media all and (max-width: 639px) {
  .contact_bnr > li a,
  .contact_bnr > li span {
    font-size: 1.6rem;
    white-space: nowrap;
    padding: 10px 0;
  }
  .contact_bnr > li a:before,
  .contact_bnr > li span:before {
    font-size: 1.5rem;
    transform: translateY(-2px);
  }
}

/* footer
----------------------------------*/
#l-footer {
  font-size: 1.4rem;
  position: relative;
  padding-bottom: 20px;
  margin-top: 40px;
}
#l-footer:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 70%;
  bottom: 0;
  left: 0;
  background: rgba(2, 135, 145, 0.2);
  z-index: -1;
}
#l-footer .inner {
  margin: 0 auto 40px;
  height: 350px;
  position: relative;
  max-width: 80%;
  z-index: 3;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26660/bg-footer.png) no-repeat 90% 30%/cover;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#l-footer .inner p {
  max-width: 95%;
  margin: 0 auto;
}
@media all and (max-width: 896px) {
  #l-footer .inner {
    height: 300px;
    max-width: 90%;
  }
}
@media all and (max-width: 639px) {
  #l-footer {
    font-size: 1.2rem;
  }
  #l-footer .inner {
    height: 180px;
    border-radius: 10px;
    max-width: 95%;
  }
}

.address {
  text-align: center;
}

/* footer_navi
----------------------------------*/
.footer_navi {
  max-width: 900px;
  padding: 15px 0 30px;
  margin: 0 auto;
}
.footer_navi ul {
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.footer_navi ul li {
  flex: 1 0 auto;
  margin-bottom: 4px;
}
.footer_navi ul li a {
  color: #333;
  font-size: 1.3rem;
  position: relative;
  padding-left: 20px;
}
.footer_navi ul li a span {
  display: none;
}
.footer_navi ul li a:before {
  content: "";
  background-color: #aaa;
  width: 10px;
  height: 4px;
  position: absolute;
  top: 0.45em;
  left: 0;
}
.footer_navi ul li a:hover {
  color: #028791;
}
.footer_navi ul li .dropdown {
  display: none;
}
.footer_navi ul li .dropdown .dropdon-li a {
  font-size: 1.2rem;
}

.flogo {
  width: 200px;
  text-align: center;
  margin: 0 auto 20px;
  min-height: 0;
}
@media all and (max-width: 639px) {
  .flogo {
    margin: 0 auto;
    width: 45%;
  }
}

.address {
  text-align: center;
  font-size: 12px;
  padding: 20px 0;
}
@media all and (max-width: 639px) {
  .address {
    padding: 20px 0 50px;
  }
}

.copyright {
  padding: 20px 0;
  font-size: 1.2rem;
  position: relative;
  z-index: 2;
  background: #028791;
  color: #fefefe;
}
@media all and (max-width: 896px) {
  .copyright {
    font-size: 12px;
  }
}

/* fixed_btn
----------------------------------*/
.fixed_btn {
  display: flex;
  justify-content: center;
  gap: 10px;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  background: #028791;
  width: 100%;
  padding: 10px;
}
.fixed_btn .tel_btn a {
  font-family: "Barlow Condensed", sans-serif;
  color: #3a200c;
  font-weight: bold;
  border: 2px solid #fff;
}
.fixed_btn .mail_btn a {
  background: #002F5D;
  color: #fff;
  border: 2px solid #fff;
}
.fixed_btn .line_btn a {
  background: #42c132;
  color: #fff;
  border: 2px solid #fff;
}
.fixed_btn > p {
  width: 20%;
}
.fixed_btn > p a {
  display: block;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 10px;
  padding: 5px;
  text-align: center;
  font-weight: bold;
  font-size: 2.5rem;
  line-height: 1.5;
}
.fixed_btn > p a span {
  display: block;
  font-size: 1.2rem;
}
.fixed_btn > p a:hover {
  opacity: 0.6;
}
@media all and (max-width: 896px) {
  .fixed_btn {
    gap: 5px;
  }
  .fixed_btn > p {
    width: 33%;
  }
}
@media all and (max-width: 639px) {
  .fixed_btn {
    padding: 5px;
  }
  .fixed_btn > p a {
    font-size: 1rem;
    border-radius: 5px;
  }
  .fixed_btn > p a span {
    font-size: 0.8rem;
  }
}

/*----------------------------------
 top-contents
----------------------------------*/
.service_list {
  justify-content: center;
}
.service_list li a {
  color: #002F5D;
  display: block;
  box-shadow: 0 0 15px rgba(30, 104, 182, 0.1);
  background: #fff;
  border-radius: 15px;
  padding: 10px;
}
.service_list li a div {
  overflow: hidden;
  border-radius: 8px;
}
.service_list li a div img {
  transition: all 0.5s ease;
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.service_list li a p {
  border-radius: 100px;
}
.service_list li a:hover img {
  transform: scale(1.1);
}
@media all and (max-width: 896px) {
  .service_list li {
    width: 48% !important;
  }
}
@media all and (max-width: 639px) {
  .service_list li a p {
    border-radius: 0px;
    padding: 5px;
  }
  .service_list li a div img {
    height: 150px;
  }
}

.point_box {
  padding: 20px 50px;
  background: #fefefe;
  display: flex;
  flex-direction: center;
  flex-wrap: wrap;
  position: relative;
}
.point_box::after {
  content: "";
  position: absolute;
  top: 49%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background-color: #fff;
  z-index: 2;
  pointer-events: none;
}
.point_box > li {
  width: 50%;
  padding: 40px 30px;
  position: relative;
}
.point_box > li:first-child {
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.point_box > li:nth-child(4) {
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
}
.point_box > li .num {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
  background: #028791;
  text-align: center;
  border-radius: 50%;
  color: #fff;
  width: 2.8em;
  height: 2.8em;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 4rem;
  line-height: 1;
}
.point_box > li .num span {
  font-size: 1.5rem;
}
.point_box > li .ttl {
  text-align: center;
  color: #028791;
  font-weight: bold;
  font-size: 2rem;
  margin-bottom: 15px;
}
.point_box > li .icon {
  text-align: center;
  margin-bottom: 15px;
}
.point_box > li .icon img {
  width: 20%;
}
@media all and (max-width: 1150px) {
  .point_box {
    padding: 20px 30px;
  }
}
@media all and (max-width: 639px) {
  .point_box {
    padding: 20px;
  }
  .point_box::after {
    display: none;
  }
  .point_box > li {
    width: 100%;
    padding: 60px 20px 20px;
    border-bottom: 1px solid #ddd;
  }
  .point_box > li:first-child {
    border-right: 0px solid #ddd;
    border-bottom: 1px solid #ddd;
  }
  .point_box > li:nth-child(4) {
    border-top: 0px solid #ddd;
    border-left: 0px solid #ddd;
  }
  .point_box > li .num {
    font-size: 3rem;
    width: 2.5em;
    height: 2.5em;
    margin-bottom: 30px;
  }
  .point_box > li .ttl {
    font-size: 1.4rem;
  }
}

.onayami_box {
  position: relative;
  margin-top: 60px;
}
.onayami_box .deco {
  position: absolute;
  bottom: 0;
  right: -60px;
  z-index: 100;
}
.onayami_box .ttl {
  padding: 0.5em;
  border-radius: 40px;
  background-color: #028791;
  text-align: center;
  font-weight: bold;
  display: inline-block;
  color: #fff;
  font-size: 26px;
  position: absolute;
  top: -4rem;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  z-index: 10;
}
.onayami_box .ttl:before {
  position: absolute;
  bottom: -14px;
  width: 30px;
  height: 15px;
  left: 50%;
  background-color: #028791;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: "";
}
.onayami_box .txt {
  background: #fff;
  padding: 10rem 7rem 7rem;
}
.onayami_box .txt > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.onayami_box .txt > ul > li {
  width: 48%;
}
.onayami_box .txt > ul > li::before {
  font-size: 1em;
}
.onayami_box .txt > ul > li:last-child {
  border-bottom: 1px dashed #ccc;
}
.onayami_box .txt > ul > li:not(:last-of-type) {
  margin-bottom: 0;
}
@media all and (max-width: 896px) {
  .onayami_box .deco {
    bottom: -60px;
    right: 20px;
    top: auto;
  }
  .onayami_box .deco img {
    width: 150px;
  }
  .onayami_box .ttl {
    width: 90%;
    font-size: 1.8rem;
  }
  .onayami_box .txt {
    padding: 7rem 3rem 7rem;
  }
  .onayami_box .txt > ul > li {
    font-size: 1.3rem;
  }
}
@media all and (max-width: 639px) {
  .onayami_box .ttl {
    width: 95%;
    font-size: 1.5rem;
  }
  .onayami_box .txt {
    padding: 7rem 1rem 7rem;
  }
  .onayami_box .txt > ul > li {
    width: 100%;
  }
}

.area_box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 60px 0;
}
.area_box .img {
  width: 40%;
}
.area_box .txt {
  width: 55%;
  background: rgba(255, 255, 255, 0.8);
  padding: 40px;
}
@media all and (max-width: 896px) {
  .area_box {
    padding: 0;
  }
  .area_box .img,
  .area_box .txt {
    width: 100%;
  }
}
@media all and (max-width: 639px) {
  .area_box .txt {
    padding: 20px 10px;
  }
}

.top-lead {
  position: relative;
  margin: 40px 0;
}
.top-lead:after {
  position: absolute;
  content: "";
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 60px);
  height: 60%;
  bottom: 0;
  background-image: linear-gradient(to right, #028791, #27acb6);
  opacity: 0.3;
  z-index: -2;
}
@media all and (max-width: 639px) {
  .top-lead:after {
    width: 100%;
    height: 70%;
  }
}

.title01 {
  color: #028791;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  width: 90%;
  position: relative;
  z-index: 3;
  background: #fefefe;
  padding: 15px 5px;
  margin: -40px auto 0px;
}
@media all and (max-width: 639px) {
  .title01 {
    font-size: 1.3rem;
    width: 100%;
  }
}

.title02 {
  position: relative;
  margin-bottom: 50px;
}
.title02.white .eng:first-letter {
  color: #fff;
}
.title02 .eng {
  display: block;
  position: relative;
  font-size: 5rem;
  z-index: 2;
  color: #002F5D;
  font-family: "Barlow Condensed", sans-serif;
}
.title02 .eng:first-letter {
  color: #fff;
  font-size: 1.5em;
}
.title02 .ja {
  position: relative;
  padding-left: 10px;
  font-weight: 600;
  background: #028791;
  border-radius: 50px;
  padding: 2px 20px;
  color: #fff;
}
@media all and (max-width: 639px) {
  .title02 {
    margin-bottom: 25px;
  }
  .title02 .eng {
    font-size: 3rem;
  }
}

.sec2 {
  position: relative;
  margin-bottom: 60px;
}
@media all and (max-width: 639px) {
  .sec2 {
    margin-bottom: 30px;
  }
}
.sec2:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 70%;
  height: 100%;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26660/top_img.png) no-repeat center top/contain;
  border-radius: 0 15px 15px 0;
}
@media all and (max-width: 639px) {
  .sec2:before {
    display: none;
  }
}
.sec2 .half-box {
  width: 40%;
  margin-left: auto;
  margin-right: 5%;
  padding: 100px 0;
  position: relative;
  z-index: 2;
}
.sec2 .half-box .inner {
  padding: 80px 40px;
  background: #fefefe;
}
@media all and (max-width: 896px) {
  .sec2 .half-box {
    padding: 60px 0;
    width: 60%;
    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;
  }
  .sec2 .half-box .inner {
    padding: 30px 0;
  }
}
.sec2.type1 {
  margin-bottom: 0;
}
.sec2.type1:before {
  left: auto;
  right: 0;
}
.sec2.type1 .half-box {
  margin-left: 5%;
  margin-right: auto;
}
@media all and (max-width: 896px) {
  .sec2.type1 .half-box {
    margin-left: 15px;
  }
}
@media all and (max-width: 639px) {
  .sec2.type1 .half-box {
    margin-left: auto;
  }
}
.sec2.sec2-small .half-box {
  width: 50%;
  padding: 40px 0;
  margin-right: 2%;
}
@media all and (max-width: 896px) {
  .sec2.sec2-small .half-box {
    width: 60%;
    margin-right: 15px;
  }
  .sec2.sec2-small .half-box .inner {
    padding: 60px 25px;
  }
}
@media all and (max-width: 639px) {
  .sec2.sec2-small .half-box {
    width: 95%;
    margin-right: auto;
    padding: 0;
  }
  .sec2.sec2-small .half-box .inner {
    padding: 30px 15px;
  }
}
.sec2.bg-rental:before {
  background-image: url(../img/bg-rental.jpg);
}
.sec2.bg-used:before {
  background-image: url(../img/bg-used.jpg);
}
.sec2.bg-original:before {
  background-image: url(../img/bg-original.jpg);
}

.greet_box {
  display: flex;
  align-items: flex-end;
}
.greet_box .txt {
  width: 65%;
  padding: 4em 6em;
}
.greet_box .img {
  width: 35%;
}
@media all and (max-width: 896px) {
  .greet_box {
    flex-direction: column-reverse;
  }
  .greet_box .txt,
  .greet_box .img {
    width: 100%;
  }
  .greet_box .txt {
    padding: 2em;
  }
  .greet_box .img {
    text-align: center;
  }
  .greet_box .img img {
    width: 80%;
  }
}

/* --news--
----------------------------------*/
.news-box {
  margin: 0 auto 0;
  max-width: 1200px;
  position: relative;
  z-index: 10;
  display: flex;
}
@media all and (max-width: 896px) {
  .news-box {
    margin-top: 0;
  }
}
@media all and (max-width: 639px) {
  .news-box {
    flex-direction: column;
  }
}

.news-title {
  font-weight: 700;
  text-align: left;
  position: relative;
  min-width: 140px;
  display: flex;
  gap: 5px;
}
.news-title span {
  display: block;
}
.news-title .eng {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  color: #028791;
  position: relative;
  font-size: 2rem;
  writing-mode: vertical-rl;
}
.news-title .ja {
  font-size: 2rem;
  position: relative;
  margin-bottom: 10px;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  -webkit-text-orientation: mixed;
  text-orientation: mixed;
  -webkit-font-feature-settings: "pkna";
  font-feature-settings: "pkna";
  font-weight: 700;
}
@media all and (max-width: 639px) {
  .news-title {
    margin-bottom: 30px;
    transform: none;
    padding: 4px 8px;
    display: flex;
    flex-direction: column;
  }
  .news-title .eng {
    font-size: 2rem;
  }
  .news-title .ja {
    font-size: 1.3rem;
    writing-mode: inherit;
    margin-bottom: 0;
    order: 2;
  }
}

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

.map-link {
  font-weight: 600;
  color: #028791;
  border-bottom: 1px solid #028791;
}
.map-link:before {
  font-family: "Font Awesome 5 Free";
  content: "\f3c5";
  font-weight: 900;
  margin-right: 5px;
}

.topic-dl .topic-inner {
  display: flex;
  border-bottom: 1px dotted #ccc;
  position: relative;
  padding: 10px 0;
}
.topic-dl .topic-inner:before {
  width: 40px;
  border-bottom: 1px solid #028791;
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
}
.topic-dl .topic-inner dt {
  width: 7em;
  font-size: 1.4rem;
  font-weight: 700;
  color: #028791;
}
@media all and (max-width: 639px) {
  .topic-dl .topic-inner dt {
    font-size: 12px;
  }
}
.topic-dl .topic-inner dd {
  padding-left: 20px;
}
.topic-dl .topic-inner dd a {
  font-weight: 600;
}
.topic-dl .topic-inner dd a:hover {
  color: #1e68b6;
}

/* --top-bnr-list--
----------------------------------*/
.top-bnr-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1500px;
  margin: 0 auto;
}
.top-bnr-list > li {
  width: 24%;
  position: relative;
  background: #fefefe;
}
.top-bnr-list > li a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}
.top-bnr-list > li a:hover {
  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 {
  transform: scale(1.05);
}
@media all and (max-width: 1150px) {
  .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;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}
.top-bnr-list .top-bnr-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: "object-fit: cover;";
  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%;
  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%;
  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;
  transform: skew(45deg);
}
.top-bnr-list .top-bnr-title {
  font-weight: 700;
  padding: 15px;
  line-height: 1.4;
  background: #111;
}
.top-bnr-list .top-bnr-title .eng {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 2.5rem;
  letter-spacing: 0.2em;
  color: #028791;
  display: block;
}
.top-bnr-list .top-bnr-title .ja {
  font-size: 2rem;
  display: block;
  color: #fff;
}
@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;
}

.split-box {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 0 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.split-box .child {
  width: 48%;
  padding: 45px 30px;
  background: rgba(34, 34, 34, 0.5);
  backdrop-filter: blur(4px);
  color: #fefefe;
  border: 1px solid #fefefe;
  position: relative;
}
@media all and (max-width: 639px) {
  .split-box {
    padding: 60px 0 20px;
  }
  .split-box .child {
    width: 95%;
    padding: 25px 15px;
  }
}

.map-link {
  font-weight: 700;
  color: #1e68b6;
  border-bottom: 1px solid #1e68b6;
}
.map-link:before {
  font-family: "Font Awesome 5 Free";
  content: "\f3c5";
  font-weight: 900;
  margin-right: 5px;
}

/* contents
----------------------------------*/
.single {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 0;
  position: relative;
}

.single02 {
  width: calc(100% - 80px);
  margin: 0 auto;
  padding: 80px 0;
}

.single03 {
  max-width: 1500px;
  margin: 0 auto;
  padding: 80px 0;
  position: relative;
}

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

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

.lsingle {
  float: left;
}

.rsingle {
  float: right;
}

.mbox {
  background: #fefefe;
  padding: 30px;
  position: relative;
  z-index: 3;
  width: 1200px;
  max-width: 95%;
  margin-right: auto;
  margin-left: auto;
}
.mbox.transparent {
  background: transparent;
}
@media all and (max-width: 896px) {
  .mbox {
    width: 100%;
    max-width: 100%;
  }
}
@media all and (max-width: 639px) {
  .mbox {
    padding: 15px 10px;
  }
}

.mbox2 {
  border: 3px solid #ccc;
  background: #fefefe;
  padding: 30px;
}
@media all and (max-width: 639px) {
  .mbox2 {
    padding: 15px;
  }
}

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

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

.bg-grid {
  background: #fff;
  /* border-top: 1px solid #555;
   border-bottom: 1px solid #555;*/
  background-image: linear-gradient(90deg, transparent 95%, rgba(2, 135, 145, 0.2) 50%, rgba(2, 135, 145, 0.2)), linear-gradient(0deg, transparent 95%, rgba(2, 135, 145, 0.2) 50%, rgba(2, 135, 145, 0.2));
  background-size: 20px 20px;
  background-repeat: repeat;
}

.bg-map {
  background: url(../img/map.png) no-repeat right bottom;
}
@media all and (max-width: 639px) {
  .bg-map {
    -webkit-background-size: auto 200px;
    background-size: auto 200px;
    background-position: right top;
  }
}

.bg-wall {
  background: url(../img/bg-wall.jpg);
}

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

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

/* mtitle
----------------------------------*/
.mtitle {
  font-weight: 700;
  max-width: 600px;
  margin: 0 auto 60px;
  text-align: center;
}
.mtitle .eng {
  font-size: 5rem;
  color: #028791;
  position: relative;
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: -5px;
}
.mtitle .ja {
  font-size: 1.6rem;
  color: #111;
  padding-bottom: 5px;
}
.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;
}
.mtitle.mtitle_left span:after {
  left: 0;
  transform: none;
}
@media all and (max-width: 639px) {
  .mtitle {
    text-align: center;
  }
  .mtitle .eng {
    font-size: 2.7rem;
  }
  .mtitle .ja {
    font-size: 1.4rem;
  }
}

.mtitle2 {
  font-size: 2.2rem;
  margin-bottom: 30px;
  position: relative;
}
.mtitle2 span {
  font-size: 1.8rem;
  margin-right: 10px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  color: #028791;
  display: block;
}
.mtitle2 span.ja {
  font-size: 2rem;
  font-family: "YakuHanJP", Lato, "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
@media all and (max-width: 639px) {
  .mtitle2 {
    font-size: 1.2rem;
  }
  .mtitle2 span {
    font-size: 2rem;
  }
  .mtitle2 span .ja {
    font-size: 1.6rem;
  }
}

.mtitle3 {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  -webkit-text-orientation: mixed;
  text-orientation: mixed;
  -webkit-font-feature-settings: "pkna";
  font-feature-settings: "pkna";
  position: absolute;
  min-height: 100px;
  top: 40px;
  left: 30px;
}
.mtitle3 .ja {
  display: block;
  font-size: 2.6rem;
  border-right: 2px solid #028791;
  letter-spacing: 0.2em;
  padding-right: 5px;
  font-weight: 400;
}
.mtitle3 .eng {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1.8rem;
  color: #1e68b6;
  padding-left: 3px;
}
@media all and (max-width: 639px) {
  .mtitle3 {
    left: 10px;
    top: 15px;
  }
  .mtitle3 .ja {
    font-size: 1.6rem;
  }
  .mtitle3 .eng {
    font-size: 1.3rem;
  }
}

.mtitle_line {
  font-size: 2rem;
  padding-bottom: 15px;
  background: url(../img/bg_mtitle_line.gif) repeat-x left bottom;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.2rem;
  color: #3a200c;
}
@media all and (max-width: 639px) {
  .mtitle_line {
    font-size: 1.4rem;
  }
}

.mtitle_big {
  position: relative;
  margin: 80px 0;
  line-height: 1.4;
  font-size: 1.8em;
  text-align: center;
}
.mtitle_big span {
  text-transform: uppercase;
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  font-size: 12rem;
  line-height: 1;
  color: rgba(2, 135, 145, 0.5);
  font-family: "Barlow Condensed", sans-serif;
  opacity: 0.5;
  z-index: 1;
  letter-spacing: 0.05em;
}
.mtitle_big.type1 span {
  color: #028791;
  -webkit-text-stroke: 0px #028791;
}
@media all and (max-width: 639px) {
  .mtitle_big {
    font-size: 1.5em;
  }
  .mtitle_big span {
    font-size: 6rem;
    top: -30px;
  }
}

.mtitle_balloon {
  font-size: 2.4rem;
  margin-bottom: 15px;
  font-weight: 700;
}
.mtitle_balloon span {
  position: relative;
  display: inline-block;
  padding-bottom: 18px;
  line-height: 1.3em;
  overflow: hidden;
}
.mtitle_balloon span.eng {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 5rem;
}
.mtitle_balloon span:before, .mtitle_balloon span:after {
  content: "";
  display: block;
  border-bottom: 3px solid #333;
  position: absolute;
  width: 50%;
  bottom: 6px;
}
.mtitle_balloon span:before {
  left: -5px;
}
.mtitle_balloon span:after {
  right: -5px;
}
.mtitle_balloon span i {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 3px solid #333;
  border-right: 3px solid #333;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  position: absolute;
  left: 50%;
  margin-left: -5px;
  bottom: 2px;
}
.mtitle_balloon.center {
  text-align: center;
}
.mtitle_balloon.white span:before, .mtitle_balloon.white span:after {
  border-bottom-color: #fefefe;
}
.mtitle_balloon.white span i {
  border-color: #fefefe;
}
@media all and (max-width: 639px) {
  .mtitle_balloon {
    font-size: 1.7rem;
  }
  .mtitle_balloon span.eng {
    font-size: 2.4rem;
  }
}

.mtitle-bll {
  font-size: 1.7rem;
  font-weight: 700;
  border-bottom: 2px solid #eeeeee;
  position: relative;
  margin-bottom: 10px;
  line-height: 1.5;
}
.mtitle-bll:before {
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  font-weight: 900;
  margin-right: 5px;
  color: #028791;
}
.mtitle-bll:after {
  position: absolute;
  content: "";
  display: block;
  bottom: -2px;
  width: 100px;
  height: 2px;
  background: #028791;
}
@media all and (max-width: 639px) {
  .mtitle-bll {
    font-size: 1.6rem;
  }
}

.mtitle4 {
  font-weight: normal;
  text-align: center;
  font-size: 2.6rem;
  line-height: 1.5;
  letter-spacing: 0.1rem;
}
.mtitle4 span {
  position: relative;
  display: inline-block;
  min-width: 10%;
}
.mtitle4 span:before, .mtitle4 span:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 1px;
  height: 2rem;
  background-color: #028791;
}
.mtitle4 span:before {
  left: -11px;
  -webkit-transform: rotate(-20deg);
  transform: rotate(-20deg);
}
.mtitle4 span:after {
  right: -11px;
  -webkit-transform: rotate(20deg);
  transform: rotate(20deg);
}
.mtitle4.white span:before, .mtitle4.white span:after {
  background-color: #ffea2b;
}
@media all and (max-width: 639px) {
  .mtitle4 {
    font-size: 2rem;
  }
}
@media all and (max-width: 320px) {
  .mtitle4 span:before {
    left: -3px;
  }
  .mtitle4 span:after {
    right: -3px;
  }
}

.mtitle5 {
  position: relative;
  border-bottom: 1px solid #028791;
  padding: 10px 0;
  margin-bottom: 30px;
}
.mtitle5 .eng {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  display: block;
  color: #fff;
  background-color: #028791;
  border-radius: 30px;
  display: inline-block;
  padding: 0px 15px;
  margin-bottom: 5px;
}
.mtitle5 .ja {
  font-size: 3.3rem;
  font-weight: 900;
  color: #028791;
  display: block;
}
@media all and (max-width: 639px) {
  .mtitle5 .eng {
    font-size: 1em;
  }
  .mtitle5 .ja {
    font-size: 1.8rem;
  }
}

.mtitle_sub {
  padding-left: 0.5em;
  font-weight: 700;
  position: relative;
  border-left: 6px solid #028791;
  margin: 8px 0 15px;
  font-size: 1.1em;
  line-height: 1.4;
  text-align: left;
}
.mtitle_sub .hissu {
  color: #fff;
  background: rgb(2.693877551, 181.8367346939, 195.306122449);
  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: #002F5D;
}

.mtitle_box {
  background: rgb(1.6530612245, 111.5816326531, 119.8469387755);
  color: #fff;
  font-size: 2rem;
  position: relative;
  padding: 10px;
  margin-bottom: 25px;
  font-weight: 700;
}
.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%;
  transform: translateY(-50%);
  color: #fff;
}
@media all and (max-width: 639px) {
  .mtitle_box {
    font-size: 1.5rem;
  }
}

.mtitle_box2 {
  background: #028791;
  font-size: 2.2rem;
  color: #fff;
  position: relative;
  font-weight: 700;
  overflow: hidden;
  letter-spacing: 0.1rem;
  box-shadow: 0 8px 8px rgba(2, 135, 145, 0.2);
  padding: 15px 10px 15px 20px;
  margin-bottom: 25px;
}
.mtitle_box2 .small-cap {
  font-weight: normal;
  font-size: 14px;
}
.mtitle_box2:before {
  background-color: #fff;
  content: "";
  display: block;
  transform: rotate(60deg);
  position: absolute;
  bottom: -10px;
  right: -150px;
  width: 300px;
  height: 280px;
}
@media all and (max-width: 639px) {
  .mtitle_box2 {
    font-size: 15px;
    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;
  }
}

.mtext1 {
  font-size: 2.2rem;
  line-height: 1.4;
  font-weight: 700;
}
@media all and (max-width: 639px) {
  .mtext1 {
    font-size: 1.5rem;
  }
}

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

.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: #028791;
}

/* btn
----------------------------------*/
.btn01 a {
  background: #fefefe;
  text-align: center;
  width: 300px;
  margin: 15px auto;
  color: #028791;
  display: block;
  padding: 8px 5px;
  font-weight: 700;
  border: 2px solid #028791;
  border-radius: 35px;
}
.btn01 a:hover {
  background: #028791;
  color: #fefefe;
}
.btn01.mail {
  flex-basis: 100%;
}
.btn01.mail a {
  background: #ffea2b;
  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: #222;
  line-height: 24px;
  letter-spacing: 0.1rem;
  font-size: 1.6rem;
  text-align: center;
  color: #ffffff;
}
.btn02 a i {
  display: block;
  position: absolute;
  top: 50%;
  right: -10px;
  width: 50px;
  height: 1px;
  background-color: #ffffff;
  transition: all 0.3s ease;
}
.btn02 a:hover i {
  width: 34px;
}
@media all and (max-width: 639px) {
  .btn02 {
    width: 260px;
  }
  .btn02 a {
    font-size: 1.4rem;
  }
}

/* news
----------------------------------*/
.news {
  display: flex;
  margin-top: 10px;
  flex-wrap: wrap;
  align-items: flex-start;
  letter-spacing: 0;
  line-height: 1.7;
}
.news dt {
  width: 7em;
  padding: 3px 5px;
  background: #f0f0f0;
  text-align: center;
  color: #3a200c;
}
.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: #028791;
  text-align: center;
  border: 1px solid #028791;
  border-radius: 30px;
  font-size: 1.3rem;
}
@media all and (max-width: 639px) {
  .news-bl dt {
    font-size: 1.2rem;
  }
}
.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: #3a200c;
  background-image: linear-gradient(to right, #028791, #1e68b6);
  padding-bottom: 0.25em;
  background-position: 100% 100%;
  background-size: 0% 1px;
  background-repeat: no-repeat;
  transition: background-size 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  font-weight: 700;
}
.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;
  }
}

/* page-title
----------------------------------*/
.page-title {
  margin: 0 auto 0;
  position: relative;
  z-index: 1;
  background: #028791;
}
.page-title .inner {
  margin: 0 auto;
  padding: 60px 0 40px;
  max-width: 1200px;
}
.page-title .inner > .mtitle {
  text-align: center;
  color: #fff;
  font-size: 2.2rem;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.page-title .inner > .mtitle span {
  display: inline-block;
  font-size: 5rem;
  padding-right: 30px;
  color: #fff;
}
.page-title .inner > .mtitle span:first-letter {
  color: #fff;
}
@media all and (max-width: 639px) {
  .page-title .inner > .mtitle {
    font-size: 1.5rem;
    margin-bottom: 0;
  }
  .page-title .inner > .mtitle span {
    font-size: 2.5rem;
    padding-right: 0;
    display: block;
  }
}
@media all and (max-width: 896px) {
  .page-title .inner {
    padding: 40px 0;
  }
}

.bg-01 {
  position: relative;
}
.bg-01::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26660/bg-01.png) no-repeat bottom/cover;
  z-index: -1;
  opacity: 0.6;
}

.bg-02 {
  position: relative;
}
.bg-02::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26660/bg-01.jpg) no-repeat center bottom/cover;
  z-index: -1;
  opacity: 0.8;
}

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

.bg-pattern {
  background: url(../img/back01.gif);
  background-size: 400px;
}

.bg-base {
  background: rgba(2, 135, 145, 0.5);
}
.bg-base.bg-half {
  background: transparent;
  background-image: linear-gradient(to bottom, transparent 0%, transparent 50%, rgba(2, 135, 145, 0.1) 50.1%, rgba(2, 135, 145, 0) 100%);
}
.bg-base.type1 {
  background: rgba(39, 172, 182, 0.1);
}

.bg-green {
  background: #e2efda;
}

.bg-gray {
  position: relative;
  background: #eef1f6;
}
.bg-gray.bg-half {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.bg-gray2 {
  position: relative;
  margin: 60px 0;
}
.bg-gray2:before {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  width: 75%;
  height: 100%;
  z-index: -1;
  background: #eee;
  opacity: 0.7;
}

.bg-999 {
  background: #888;
}

.bg-beige {
  background: rgba(246, 244, 235, 0.9);
}

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

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

.tbl_new {
  width: 100%;
}
.tbl_new tr th,
.tbl_new tr td {
  vertical-align: middle;
  padding: 15px 10px;
}
.tbl_new tr th {
  font-weight: 700;
  width: 35%;
  color: #3a200c;
  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: #fdfdfd;
}

.tbl-border {
  width: 100%;
  font-family: "YakuHanJP", Lato, "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.tbl-border th,
.tbl-border td {
  padding: 15px;
  border-bottom: 1px solid #002F5D;
  vertical-align: middle;
}
@media all and (max-width: 639px) {
  .tbl-border th,
  .tbl-border td {
    padding: 10px;
    font-size: 1.1rem;
  }
}
.tbl-border th {
  width: 20%;
  text-align: left;
  font-weight: 600;
  color: #028791;
  border-bottom-color: #002F5D;
  white-space: nowrap;
}
.tbl-border th.th-1 {
  width: 28%;
}
@media all and (max-width: 639px) {
  .tbl-border th.th-1 {
    width: 30%;
  }
}
@media all and (max-width: 639px) {
  .tbl-border th {
    width: 30%;
  }
}

.price {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 2rem;
  color: #028791;
}
@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 {
  text-align: left;
  width: 25%;
  position: relative;
  background: #e2efda;
  color: #fff;
  font-weight: 700;
}
.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: #e2efda;
  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: 36.25%;
  height: 0;
  overflow: hidden;
}
.ggmap iframe,
.ggmap object,
.ggmap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* 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 {
  background: rgba(255, 255, 255, 0.7);
  padding: 25px;
  margin-bottom: 40px;
}
.list-policy li {
  font-family: "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-size: 2rem;
  padding-bottom: 5px;
  margin-bottom: 6px;
  font-weight: 700;
}
.list-policy li:before {
  content: "一、";
  margin-right: 7px;
  color: #1e68b6;
}
@media all and (max-width: 639px) {
  .list-policy {
    padding: 15px;
  }
  .list-policy li {
    font-size: 1.4rem;
  }
}

.list_check.type1 li {
  background: #777;
  padding: 12px 8px;
}
.list_check li {
  padding: 8px;
  font-weight: 700;
  margin-bottom: 5px;
}
.list_check li span {
  font-weight: normal;
  font-size: 0.9em;
  display: block;
  padding: 10px;
  background: rgba(246, 244, 235, 0.2);
  margin-top: 10px;
}
.list_check li a {
  color: #028791;
  border-bottom: 1px dotted #028791;
}
.list_check li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f054";
  font-weight: 900;
  margin-right: 10px;
  color: #028791;
}
@media all and (max-width: 639px) {
  .list_check li {
    width: 98%;
    margin: 0 auto 10px;
    font-size: 1.3rem;
  }
}

.list_check2 li {
  padding: 10px;
  background: #f6f4eb;
  border-radius: 5px;
  font-weight: 700;
}
.list_check2 li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  font-weight: 900;
  margin-right: 5px;
  color: #028791;
}
.list_check2 li:not(:last-child) {
  margin-bottom: 7px;
}

.list-inline2 {
  text-align: center;
}
.list-inline2 li {
  display: inline-block;
  padding: 4px 15px;
  background: #fefefe;
  border: 1px solid #27acb6;
  font-weight: 700;
  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: #028791;
  font-weight: normal;
}
@media all and (max-width: 639px) {
  .list-inline li {
    display: block;
    padding: 0;
  }
  .list-inline li:before {
    content: "-";
    color: #028791;
  }
  .list-inline li:not(:last-of-type):after {
    display: none;
  }
}

.ol-list {
  counter-reset: number;
  list-style: none;
  padding: 5px;
}
.ol-list.type1 {
  display: flex;
  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: #3a200c;
  margin-bottom: 10px;
  padding-bottom: 10px;
  font-weight: 700;
  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(2, 135, 145, 0.6);
  display: inline-block;
  width: 2em;
  height: 2em;
  text-align: center;
  font-family: "YakuHanMP", "游明朝 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: 5px 0;
}
.list_disc li:not(:last-of-type) {
  margin-bottom: 5px;
  border-bottom: 1px dashed #ccc;
}
.list_disc li:before {
  content: "●";
  margin-right: 8px;
  color: #002F5D;
  font-size: 0.6em;
}

.list-btn {
  display: flex;
  flex-wrap: wrap;
}
.list-btn li {
  width: 32%;
  margin: 0 1.995% 10px 0;
}
.list-btn li a {
  display: block;
  background: #f6f4eb;
  color: #3a200c;
  font-weight: 700;
  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;
  justify-content: center;
}
.list-btn.type1 li a {
  background: #e2efda;
  border: 1px solid rgb(1.306122449, 88.1632653061, 94.693877551);
}
.list-btn.type1 li a:hover {
  background: rgb(253.9056603774, 254.3962264151, 253.6037735849);
}
.list-btn.type1 li a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f13a";
  font-weight: 900;
  margin-right: 5px;
}

/* blog
----------------------------------*/
#top-blog .pages {
  display: none;
}

#main .blog-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px 4%;
}
@media all and (max-width: 639px) {
  #main .blog-wrap {
    grid-template-columns: 1fr;
  }
}

.blog-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px 2.5%;
  margin-bottom: 40px;
}
@media all and (max-width: 896px) {
  .blog-wrap {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media all and (max-width: 639px) {
  .blog-wrap {
    grid-template-columns: 1fr;
    padding: 0 25px;
  }
}
.blog-wrap li {
  position: relative;
}
.blog-wrap li a {
  display: block;
  position: relative;
  background: #fff;
  width: 100%;
  height: 100%;
  z-index: 3;
  padding: 10px;
  overflow: hidden;
  box-shadow: 0 0.8rem 3rem rgba(0, 0, 0, 0.14);
}
.blog-wrap li a:hover .morebtn {
  border-bottom-color: #002F5D;
  color: #002F5D;
}
.blog-wrap li a:hover .blog-img img {
  transform: scale(1.2);
}
.blog-wrap li .blog-date {
  display: inline-block;
  color: #1e68b6;
  font-size: 1.2rem;
  font-family: "Barlow Condensed", sans-serif;
}
.blog-wrap li .blog-date:before {
  font-family: "Font Awesome 5 Free";
  content: "\f017";
  font-weight: 900;
  margin-right: 5px;
}
@media all and (max-width: 639px) {
  .blog-wrap li .blog-date {
    font-size: 12px;
  }
}
.blog-wrap li .blog-img {
  overflow: hidden;
  position: relative;
  height: 180px;
}
.blog-wrap li .blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.2s ease-in all;
  object-position: center top;
}
.blog-wrap li .blog-img figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  background: #028791;
  color: #fff;
  font-size: 12px;
  padding: 2px 8px;
  font-weight: 600;
  letter-spacing: 0;
}
.blog-wrap li .blog-detail {
  padding: 15px;
}
@media all and (max-width: 639px) {
  .blog-wrap li .blog-detail {
    padding: 10px;
  }
}
.blog-wrap li .blog-title {
  overflow: hidden;
  line-height: 1.5;
  font-size: 1.5rem;
  letter-spacing: 0.1rem;
  color: #111;
  margin-top: 5px;
}
@media all and (max-width: 639px) {
  .blog-wrap li .blog-title {
    font-size: 1.2rem;
  }
}
.blog-wrap li .blog-txt {
  font-size: 1.3rem;
  margin-top: 8px;
  letter-spacing: 0;
  margin-bottom: 15px;
  color: #222;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  /*IE対策*/
  line-height: 1.8em;
  max-height: 3.6em;
}
@media all and (max-width: 639px) {
  .blog-wrap li .blog-txt {
    font-size: 12px;
    margin-bottom: 25px;
  }
}
.blog-wrap li .morebtn {
  position: absolute;
  right: 10px;
  bottom: 0;
  color: #028791;
  border-bottom: 1px solid #028791;
  font-size: 12px;
  font-weight: 700;
  padding: 0 10px;
  transition: 0.2s ease-in all;
  letter-spacing: 0;
}
@media all and (max-width: 639px) {
  .blog-wrap li .morebtn {
    font-size: 11px;
  }
}
.blog-wrap.type1 {
  display: block;
}
.blog-wrap.type1 > li {
  width: 100%;
}
.blog-wrap.type1 > li:not(:last-of-type) {
  margin-bottom: 20px;
}
.blog-wrap.type1 > li a {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.blog-wrap.type1 > li a .blog-img {
  width: 180px;
}
@media all and (max-width: 639px) {
  .blog-wrap.type1 > li a .blog-img {
    width: 80px;
  }
}
.blog-wrap.type1 > li a .blog-detail {
  width: calc(100% - 200px);
  padding: 15px;
}
@media all and (max-width: 639px) {
  .blog-wrap.type1 > li a .blog-detail {
    width: calc(100% - 80px);
    padding: 15px 15px 30px;
  }
}
.blog-wrap.type2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 40px;
}
@media all and (max-width: 639px) {
  .blog-wrap.type2 {
    grid-template-columns: repeat(2, 1fr);
    grid-row-gap: 30px;
  }
}

.pages {
  display: flex;
  justify-content: center;
  margin-top: 35px;
}
.pages > div {
  font-size: 13px;
  line-height: 1.4;
  padding: 10px;
}
.pages > div:last-of-type {
  margin-left: 20px;
  padding-left: 20px;
  border-left: 1px solid #ccc;
}
.pages > div a {
  display: block;
  font-weight: 600;
}

.blog-page-detail {
  display: flex;
  align-items: center;
  font-size: 12px;
  margin-bottom: 10px;
}
.blog-page-detail .blog-date2 {
  display: inline-block;
  color: #028791;
  margin-right: 10px;
}
.blog-page-detail .blog-date2:before {
  font-family: "Font Awesome 5 Free";
  content: "\f017";
  font-weight: 900;
  margin-right: 5px;
}
.blog-page-detail .blog-category {
  background: #eef1f6;
  margin-right: 5px;
}

.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: #eef1f6;
}
.category_nav li:last-child a {
  border-bottom: none;
}

/* etc
----------------------------------*/
.cut {
  overflow: hidden;
  zoom: 1;
}

.name {
  font-family: "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: bold;
  padding-top: 20px;
}

.w300 {
  width: 300px;
}

.spbr {
  display: none;
}

.color1 {
  color: #028791;
}

.color2 {
  color: #002F5D;
}

.color3 {
  color: #27acb6;
}

.relative {
  position: relative;
}

.ttl_img {
  margin: 0 auto 50px;
}
@media all and (max-width: 639px) {
  .ttl_img {
    margin: 0 auto 20px;
  }
}

.num {
  font-weight: 700;
}
.num a {
  color: #028791;
  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: #f6bf09;
}

.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: 700;
  text-decoration: underline;
}
.txt-link:hover {
  text-decoration: none;
}

.telbnr {
  max-width: 800px;
  margin: 60px auto 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.telbnr li {
  width: 100%;
  padding: 40px 10px;
  text-align: center;
  background: #eef1f6;
}
.telbnr li a {
  display: block;
  font-size: 4rem;
  font-weight: 700;
  color: #1e68b6;
  padding-top: 20px;
}
.telbnr li a .txt {
  display: block;
  color: #222;
  font-size: 1.3rem;
}
.telbnr li a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  margin-right: 5px;
}
.telbnr li a:hover {
  color: #028791;
}
@media all and (max-width: 639px) {
  .telbnr {
    max-width: 100%;
    margin: 40px auto 0;
  }
  .telbnr li {
    width: 100%;
    margin: 0 auto;
  }
  .telbnr li:last-of-type {
    margin-left: auto;
  }
  .telbnr li a {
    font-size: 2rem;
  }
}

.telbnr-ttl {
  font-weight: 700;
  font-size: 1.8rem;
  color: #3a200c;
}
.telbnr-ttl span {
  background: #fefefe;
  padding: 0 20px;
}
@media all and (max-width: 639px) {
  .telbnr-ttl {
    font-size: 1.5rem;
  }
}

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

.policy {
  padding: 30px;
  background: rgba(39, 172, 182, 0.1);
}

.mtitle_small {
  position: relative;
  font-size: 2rem;
  margin-bottom: 20px;
  color: #028791;
  font-weight: 700;
  padding: 10px;
  border-bottom: 1px solid #ccc;
}
.mtitle_small:before {
  content: "";
  width: 50px;
  height: 1px;
  background-color: #1e68b6;
  position: absolute;
  left: 0;
  bottom: -1px;
}
@media all and (max-width: 639px) {
  .mtitle_small {
    font-size: 1.4rem;
    line-height: 1.5;
  }
}

.mtitle_small2 {
  position: relative;
  margin-bottom: 10px;
  padding-left: 20px;
}
.mtitle_small2:before {
  content: "";
  background-color: #028791;
  width: 10px;
  height: 4px;
  position: absolute;
  top: 0.6em;
  left: 0;
}

/* slick
----------------------------------*/
.thumb-item li {
  width: 100%;
}
.thumb-item-nav li {
  overflow: hidden;
  height: 100px;
}
.thumb-item-nav li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: "object-fit: cover;";
}
@media all and (max-width: 639px) {
  .thumb-item-nav li {
    height: 80px;
  }
}

/*photoギャラリー*/
.gallery {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.gallery li {
  width: 24%;
  margin: 0 1.3333333333% 25px 0;
}
.gallery li:nth-child(4n) {
  margin-right: 0;
}
.gallery li a {
  background: rgba(246, 244, 235, 0.2);
  display: block;
  text-align: center;
  padding: 0px;
  height: 200px;
}
.gallery li a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: "object-fit: cover;";
  /*IE対策*/
}
.gallery li p {
  font-size: 14px;
  margin: 3px 0 10px;
}

@media all and (max-width: 896px) {
  .gallery li {
    width: 48%;
    margin: 0 1% 20px;
  }
  .gallery li:nth-child(2n) {
    margin-right: 0;
  }
  .gallery li a {
    height: 120px;
  }
  .gallery li p {
    font-size: 12px;
  }
}
.list2 {
  display: flex;
  flex-wrap: wrap;
  max-width: 1500px;
  margin: 0 auto -20px;
}
@media all and (max-width: 639px) {
  .list2 {
    margin-bottom: -5px;
  }
}
.list2.type1 > li,
.list2.type1 .child {
  background: #fefefe;
  padding: 15px;
}
.list2 > li,
.list2 .child {
  width: 48%;
  margin-bottom: 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: 0 auto 20px;
  }
}

.list3 {
  display: flex;
  flex-wrap: wrap;
}
.list3.center {
  justify-content: center;
}
.list3 > li {
  width: 31%;
  position: relative;
  margin: 0 3.495% 20px 0;
}
.list3 > li:nth-child(3n) {
  margin-right: 0;
}
@media all and (max-width: 896px) {
  .list3 > li {
    width: 48%;
    margin: 1%;
  }
}
@media all and (max-width: 639px) {
  .list3 > li {
    width: 95%;
    margin: 0 auto 20px;
  }
  .list3 > li:nth-child(3n) {
    margin-right: auto;
  }
}

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

.prv dt {
  color: #028791;
  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: rgba(39, 172, 182, 0.1);
}
.note.type1 {
  background-color: #fff;
  box-shadow: 0 0.8rem 3rem rgba(0, 0, 0, 0.14);
}

.flow-dl {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  padding: 10px 0;
}
.flow-dl dt {
  background: #028791;
  font-size: 3rem;
  color: #fff;
  width: 50px;
  text-align: center;
  margin-right: 20px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
}
.flow-dl dt span {
  font-size: 1.5rem;
  display: block;
  margin-bottom: -10px;
}
.flow-dl dd {
  width: calc(100% - 80px);
}
.flow-dl dt:not(:last-child),
.flow-dl dd:not(:last-child) {
  margin-bottom: 20px;
}
@media all and (max-width: 639px) {
  .flow-dl dt {
    font-size: 2rem;
  }
  .flow-dl dt span {
    font-size: 1.3rem;
  }
}

.txt1 {
  padding-left: 10px;
}

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

.blog-month {
  margin-bottom: 10px;
}
.blog-month ul {
  display: flex;
  flex-wrap: wrap;
}
.blog-month ul li {
  width: 49%;
  padding: 5px 0;
  margin-bottom: 5px;
  text-align: center;
  letter-spacing: 0;
  background: #333;
}
.blog-month ul li:nth-child(2n) {
  margin-left: 2%;
}
.blog-month ul li a {
  color: #fff;
  font-size: 12px;
}

#a01,
#a02,
#a03,
#a04,
#a05,
#a06,
#a07,
#a08 {
  display: block;
  padding-top: 100px;
  margin-top: -100px;
}

.list-center {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.list-center li {
  width: 50%;
}
@media all and (max-width: 639px) {
  .list-center {
    flex-direction: column;
  }
  .list-center li {
    width: 100%;
  }
}

.faq-dl .faq-inner {
  position: relative;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  box-shadow: rgba(17, 12, 46, 0.05) 0px 48px 100px 0px;
  padding-left: 30px;
}
.faq-dl .faq-inner:not(:last-of-type) {
  margin-bottom: 20px;
}
.faq-dl .faq-inner dt,
.faq-dl .faq-inner dd {
  position: relative;
  font-size: 1.6rem;
}
@media all and (max-width: 639px) {
  .faq-dl .faq-inner dt,
  .faq-dl .faq-inner dd {
    font-size: 1.1rem;
  }
}
.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: 50%;
  transform: translateY(-50%);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
}
.faq-dl .faq-inner.active dt:after {
  content: "－";
}
.faq-dl .faq-inner dt {
  font-weight: 600;
  padding: 20px 10px;
  padding-left: 55px;
  cursor: pointer;
  z-index: 2;
}
@media all and (max-width: 639px) {
  .faq-dl .faq-inner dt {
    padding: 20px 25px;
    padding-left: 40px;
  }
}
.faq-dl .faq-inner dt:before {
  content: "Q.";
  color: #028791;
  font-size: 3rem;
}
@media all and (max-width: 639px) {
  .faq-dl .faq-inner dt:before {
    font-size: 1.8rem;
  }
}
.faq-dl .faq-inner dt:after {
  content: "＋";
  position: absolute;
  top: 50%;
  right: 2%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: #002F5D;
  text-align: center;
}
.faq-dl .faq-inner dt span {
  position: relative;
}
.faq-dl .faq-inner dt span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 10px;
  background-image: linear-gradient(to right, #028791, #002F5D);
  opacity: 0.5;
  z-index: -1;
}
@media all and (max-width: 639px) {
  .faq-dl .faq-inner dt span::after {
    display: none;
  }
}
@media all and (max-width: 639px) {
  .faq-dl .faq-inner dt:hover span {
    color: #028791;
  }
}
.faq-dl .faq-inner dd {
  display: none;
  padding: 20px;
  padding-left: 55px;
}
.faq-dl .faq-inner dd:before {
  content: "A.";
  color: #002F5D;
  font-size: 3rem;
}
@media all and (max-width: 639px) {
  .faq-dl .faq-inner dd:before {
    font-size: 2rem;
  }
}
@media all and (max-width: 639px) {
  .faq-dl .faq-inner {
    padding-left: 5px;
  }
}

.point-title {
  position: relative;
  font-size: 2.5rem;
  letter-spacing: 0.2rem;
  border-bottom: 1px solid #f6bf09;
  line-height: 1.3;
  margin-bottom: 15px;
}
.point-title span {
  color: #f6bf09;
  font-size: 4rem;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
}
@media all and (max-width: 639px) {
  .point-title {
    font-size: 1.6rem;
  }
  .point-title span {
    font-size: 2.2rem;
  }
}

.works-list > li {
  padding: 15px 20px;
  border-top: 2px solid #333;
  font-weight: 700;
}
.works-list > li:before {
  content: "●";
  margin-right: 5px;
  color: #002F5D;
}
.works-list > li:last-child {
  border-bottom: 2px solid #222;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: 30px !important;
  right: auto;
  background: rgba(2, 135, 145, 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(2, 135, 145, 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;
  width: 60px;
  height: 60px;
  background: #002F5D;
  color: #222;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 3.5rem;
  border-radius: 100%;
  text-align: center;
  margin: 0 0 -50px;
  line-height: 60px;
  box-shadow: 0 0 0 4px rgba(254, 254, 254, 0.6);
}

.bnr-list {
  text-align: center;
}
@media all and (max-width: 896px) {
  .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: 600;
  line-height: 60px;
  background: #fefefe;
}
@media all and (max-width: 639px) {
  .bnr-list li.bnr-txt {
    font-size: 1.5rem;
  }
}

.sns-list {
  display: flex;
}
.sns-list.center {
  justify-content: center;
  margin: 15px 0;
}
.sns-list li a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 15px;
  color: #fefefe;
  display: block;
  background: #333;
  border-radius: 100%;
  text-align: center;
  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: 896px) {
  .sns-list li:not(:last-child) {
    margin-right: 5px;
    margin-bottom: 0;
  }
}

/*----------------------------------
contact-form
----------------------------------*/
.form-contents {
  width: 100% !important;
  height: auto !important;
  padding: 35px 30px !important;
  border-radius: 15px 15px 0 0 !important;
  background: rgba(255, 255, 255, 0.8) !important;
}
@media all and (max-width: 1150px) {
  .form-contents {
    padding: 15px !important;
  }
}
.form-contents form dl dt .nini {
  background: #002F5D !important;
  margin-right: 5px !important;
  font-size: 11px !important;
  border-radius: 20px !important;
  color: #fff !important;
  padding: 5px 10px !important;
}
.form-contents button {
  border: 1px solid #002F5D !important;
}
.form-contents .required::before {
  background: #028791 !important;
  padding: 2px 8px !important;
  font-size: 1.2rem !important;
}
.form-contents .textarea {
  background-color: transparent !important;
  border: none !important;
  padding: 20px 15px !important;
  border: 1px solid #ddd !important;
  border-radius: 10px !important;
}
.form-contents input[type=radio] {
  margin: 0 5px 3px;
}
.form-contents input[type=text],
.form-contents textarea {
  font-size: 16px;
}
.form-contents input[type=text] {
  height: 50px !important;
}
.form-contents .submit-btn {
  background: #002F5D !important;
  border: none !important;
  color: #fefefe !important;
}
.form-contents .submit-btn::before {
  background: #fff !important;
}
.form-contents .submit-btn:hover {
  opacity: 0.6;
}
.form-contents .custom-area p {
  padding: 10px 0;
}

@media all and (max-width: 639px) {
  .form-contents {
    padding: 0 10px 10px !important;
  }
  .form-contents dl {
    margin: 10px 0 !important;
  }
  .form-contents dl dt {
    float: none !important;
    padding-top: 15px !important;
  }
  .form-contents dl dd {
    padding-left: 0 !important;
    padding-bottom: 15px !important;
    padding-top: 10px !important;
    line-height: 20px !important;
  }
  .form-contents .submit-btn {
    width: 250px !important;
  }
}
/* accordion
----------------------------------*/
.accordion dt,
.accordion dd {
  position: relative;
  padding: 1em;
}
.accordion dt {
  background: #fefefe;
  border: 1px solid #ddd;
  cursor: pointer;
  font-size: 1.7rem;
  color: #222;
  border-radius: 5px;
}
.accordion dt:after {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f067";
  font-weight: 900;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 1.7rem;
}
.accordion dt.on:after {
  font-family: "Font Awesome 5 Free";
  content: "\f068";
  font-weight: 900;
}
.accordion dd {
  display: none;
  padding: 25px;
  background: #fefefe;
}
@media all and (max-width: 639px) {
  .accordion dt {
    font-size: 1.3rem;
  }
  .accordion dd {
    padding: 15px;
  }
}

.top_area {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: flex-start;
  padding: 6em 4em;
  margin: 0 auto;
  gap: 40px;
  position: relative;
}
.top_area ._txt {
  width: 56%;
}
.top_area ._txt h3 {
  margin-bottom: 3rem;
  font-size: 3rem;
  font-weight: 900;
  color: #222;
  letter-spacing: 0.3rem;
}
.top_area ._txt h3 span {
  font-size: 4.5rem;
  color: #028791;
}
.top_area ._txt .sub_ttl {
  font-size: 1.8rem;
  padding: 3px 20px;
  font-weight: 600;
  display: inline-block;
  color: #fff;
  background: #028791;
  margin-bottom: 10px;
  border-radius: 50px;
}
.top_area ._txt .sub_ttl span {
  font-size: 1.2em;
}
@media all and (max-width: 639px) {
  .top_area ._txt .sub_ttl {
    display: block;
    width: 200px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-bottom: 20px;
  }
  .top_area ._txt .sub_ttl span {
    font-size: 1.5rem;
  }
}
.top_area .area_img {
  width: 40%;
  text-align: right;
}
.top_area .area_img .eng {
  font-size: 6rem;
  line-height: 1;
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  font-style: italic;
  color: #0b87e6;
}
.top_area .area_img .ja {
  margin-top: 1.5rem;
  font-size: 2rem;
  color: #44433d;
  font-weight: 600;
}
@media all and (max-width: 896px) {
  .top_area {
    display: block;
  }
  .top_area .top_list {
    justify-content: center;
  }
  .top_area ._txt {
    width: 100%;
    padding: 0;
  }
  .top_area ._txt p {
    font-size: 1.8rem;
  }
  .top_area ._txt h3 {
    margin-bottom: 3rem;
    font-size: 3.8rem;
    font-weight: 900;
  }
  .top_area ._txt h3 span {
    font-size: 5.5rem;
  }
  .top_area .area_img {
    width: 100%;
    margin-bottom: 30px;
  }
}
@media all and (max-width: 639px) {
  .top_area {
    padding: 0;
  }
  .top_area ._txt p {
    font-size: 1.2rem;
  }
  .top_area ._txt h3 {
    margin-bottom: 3rem;
    font-size: 1.8rem;
    font-weight: 900;
    text-align: center;
  }
  .top_area ._txt h3 span {
    font-size: 2.3rem;
  }
  .top_area .area_img {
    width: 100%;
    margin-top: 30px;
  }
}

.btn-wrap {
  margin: 30px 0;
}

a.btn-c {
  font-size: 3.5rem;
  position: relative;
  padding: 3rem 4rem 1.5rem 4rem;
  color: #fff;
  background: #028791;
  box-shadow: 0 5px 0 #002F5D;
}
a.btn-c span {
  font-size: 1.6rem;
  position: absolute;
  top: -1.25rem;
  left: calc(50% - 150px);
  display: block;
  width: 300px;
  padding: 0.5rem 0;
  color: #028791;
  border: 2px solid #028791;
  border-radius: 100vh;
  background: #fff;
  letter-spacing: 0.08em;
  text-align: center;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
}
a.btn-c span::before, a.btn-c span::after {
  position: absolute;
  left: calc(50% - 10px);
  content: "";
}
a.btn-c span::before {
  bottom: -10px;
  border-width: 10px 10px 0 10px;
  border-style: solid;
  border-color: #028791 transparent transparent transparent;
}
a.btn-c span::after {
  bottom: -7px;
  border-width: 10px 10px 0 10px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}
a.btn-c i {
  margin-right: 1rem;
}
a.btn-c:hover {
  transform: translate(0, 3px);
  color: #fff;
  background: #002F5D;
}
@media all and (max-width: 896px) {
  a.btn-c {
    font-size: 2rem;
    padding: 1.5rem 2.5rem 2.5rem 2.5rem;
    padding-top: 50px;
  }
}
@media all and (max-width: 639px) {
  a.btn-c {
    width: 100%;
    font-size: 1.5rem;
    padding: 0.5rem 2rem 1.5rem 2rem;
    padding-top: 30px;
  }
  a.btn-c span {
    font-size: 1.3rem;
  }
}

.btn_col2 {
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn_col2 div {
  margin: 20px;
}
.btn_col2.fv {
  position: absolute;
  bottom: 5%;
  left: 2%;
  z-index: 10;
}
.btn_col2.fv .btn_waku {
  font-size: 2rem;
}
@media all and (max-width: 639px) {
  .btn_col2 {
    display: block;
  }
}

.column2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.column2.tp {
  align-items: flex-start;
}
.column2.reverse {
  flex-direction: row-reverse;
}
.column2 .child {
  width: 48%;
}
.column2 .child01 {
  width: 40%;
}
.column2 .child02 {
  width: 56%;
}
.column2 .child03 {
  width: 35%;
}
.column2 .child04 {
  width: 60%;
}
.column2 .child05 {
  width: 30%;
}
.column2 .child06 {
  width: 70%;
}
.column2 .child-txt {
  position: absolute;
  width: 55%;
  right: 0;
  padding: 35px 30px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(5px);
  border-radius: 10px;
}
.column2 .child-txt.type1 {
  right: auto;
  left: 0;
}
.column2 .child-img {
  width: 50%;
  border-radius: 10px;
  overflow: hidden;
}
.column2 .child-img.type1 {
  margin-left: auto;
}
@media all and (max-width: 896px) {
  .column2 {
    flex-direction: column;
  }
  .column2 .child,
  .column2 .child01,
  .column2 .child02,
  .column2 .child03,
  .column2 .child04,
  .column2 .child-img {
    width: 100%;
  }
  .column2 .child.bm10,
  .column2 .child01.bm10,
  .column2 .child02.bm10,
  .column2 .child03.bm10,
  .column2 .child04.bm10,
  .column2 .child-img.bm10 {
    margin-bottom: 10px;
  }
  .column2 .child.bm20,
  .column2 .child01.bm20,
  .column2 .child02.bm20,
  .column2 .child03.bm20,
  .column2 .child04.bm20,
  .column2 .child-img.bm20 {
    margin-bottom: 20px;
  }
  .column2 .child.column2-img,
  .column2 .child01.column2-img,
  .column2 .child02.column2-img,
  .column2 .child03.column2-img,
  .column2 .child04.column2-img,
  .column2 .child-img.column2-img {
    order: -1;
    margin-bottom: 30px;
  }
  .column2 .child-txt {
    position: relative;
    width: 100%;
    margin: 0 auto !important;
    padding: 20px 15px !important;
    border-radius: 0 0 10px 10px;
  }
  .column2 .child-img {
    order: -1;
    margin: auto !important;
    border-radius: 10px 10px 0 0;
  }
}

.column3 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.column3 .child {
  width: 31%;
}
.column3 .child .img {
  text-align: center;
  filter: drop-shadow(0px 0px 8px rgba(0, 0, 0, 0.1));
}
@media all and (max-width: 896px) {
  .column3 .child {
    width: 48%;
  }
}
@media all and (max-width: 639px) {
  .column3 {
    flex-direction: column;
  }
  .column3 .child,
  .column3 .child-img {
    width: 100%;
  }
  .column3 .child.bm10,
  .column3 .child-img.bm10 {
    margin-bottom: 10px;
  }
  .column3 .child.bm20,
  .column3 .child-img.bm20 {
    margin-bottom: 20px;
  }
  .column3 .child.column2-img,
  .column3 .child-img.column2-img {
    order: -1;
    margin-bottom: 30px;
  }
  .column3 .child-txt {
    position: relative;
    width: 100%;
    margin: 0 auto !important;
    padding: 20px 15px !important;
    border-radius: 0 0 10px 10px;
  }
  .column3 .child-img {
    order: -1;
    margin: auto !important;
    border-radius: 10px 10px 0 0;
  }
}

.business_box .item {
  position: relative;
  margin-bottom: 20px;
}
.business_box .item .num {
  position: absolute;
  z-index: 10;
  font-size: 3rem;
  bottom: 10px;
  right: 10px;
  color: #fff;
  line-height: 1;
  font-weight: 900;
  font-family: "Afacad", sans-serif;
  filter: drop-shadow(0px 0px 8px rgba(0, 0, 0, 0.5));
}
.business_box .img {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}
.business_box .img img {
  display: block;
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.business_box .img:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: -20px;
  width: 32%;
  height: 40%;
  background: #002F5D;
  opacity: 0.7;
  clip-path: polygon(90% 0%, 100% 0%, 100% 100%, 0% 100%);
}
@media all and (max-width: 896px) {
  .business_box .img:before {
    right: -13px;
    width: 40%;
    height: 45%;
  }
}

.type_btn {
  display: flex;
  flex-wrap: wrap;
}
.type_btn .item {
  width: 31%;
  margin: 1%;
}
.type_btn .item a {
  transition: all 0.5s ease;
}
.type_btn .item a .in {
  background-color: #028791;
  border: 1px solid #028791;
  border-radius: 10px;
  display: flex;
}
.type_btn .item a .in .in_left {
  width: 45%;
  overflow: hidden;
  border-radius: 10px 0 0 10px;
}
.type_btn .item a .in .in_left img {
  display: block;
  width: 100%;
  height: 120px;
  object-fit: cover;
}
.type_btn .item a .in .in_right {
  width: 55%;
  display: flex;
  text-align: center;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 9px;
}
.type_btn .item a .in .in_right .txt {
  width: 80%;
  color: #222;
  font-weight: 600;
  color: #fff;
  font-size: 1.7rem;
}
.type_btn .item a:hover .in .in_left img {
  transition: transform 0.4s ease-out;
  transform: scale(1.1);
}
@media all and (max-width: 896px) {
  .type_btn .item {
    width: 49%;
  }
  .type_btn .item a .in .in_right {
    padding: 10px 5px;
  }
}
@media all and (max-width: 639px) {
  .type_btn .item {
    width: 100%;
  }
  .type_btn .item a .in .in_right .txt {
    font-size: 1.5rem;
  }
}

.btn_waku {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  user-select: none;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}

a.btn-join {
  font-size: 2.2rem;
  position: relative;
  padding: 1.5rem 3rem 1.5rem 3rem;
  color: #fff;
  width: 300px;
  background: #fa8e12;
  box-shadow: 0 5px 0 #e7810c;
}
a.btn-join span {
  font-size: 1.4rem;
  display: inline-block;
  width: 100%;
  margin-bottom: 0.5em;
  padding: 0.2rem 0.5rem;
  color: #e7810c;
  border-radius: 4px;
  background: #fff;
}
a.btn-join:hover {
  transform: translate(0, 3px);
  color: #fff;
  background: #fa8e12;
  box-shadow: 0 2px 0 #e7810c;
}
a.btn-join:hover::before {
  left: 2rem;
}
@media all and (max-width: 639px) {
  a.btn-join {
    font-size: 1.5rem;
    padding: 1.5rem 3rem 1rem 3rem;
    width: 100%;
  }
  a.btn-join span {
    font-size: 1.3rem;
  }
}

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

.round_list {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.round_list li {
  font-size: 2.8rem;
}
.round_list li span {
  border-radius: 50%;
  padding: 10px;
  width: 200px;
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  color: #fff;
  text-align: center;
  background: #028791;
  font-size: 2rem;
  margin: 10px;
}
@media all and (max-width: 639px) {
  .round_list li span {
    width: 115px;
    height: 115px;
    margin: 5px;
    font-size: 1.2rem;
  }
}