@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;500&display=swap");
/* アニメーションベンダープレフィックス込み指定 */
/* アニメーションベンダープレフィックス込み指定 */
body {
  color: #443a37;
  font-family: "YakuHanJP", "Zen Kaku Gothic New", "游ゴシック 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: 500;
  position: relative;
  letter-spacing: 0.1em;
}

a {
  color: #006494;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

#wrapper {
  overflow: hidden;
}
#wrapper.contents {
  overflow: initial;
}

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

.bold {
  font-weight: 600;
}

h2,
h3,
h4 {
  line-height: 1.4;
  font-weight: 500;
}

.mincho {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
}

.eng {
  font-family: "Quicksand", sans-serif;
}

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

.en-big {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
}

/* 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);
}

/* 4-6 じわっ（ぼかしから出現） */
.blur {
  animation-name: blurAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes blurAnime {
  from {
    filter: blur(10px);
    transform: scale(1.02);
    opacity: 0;
  }
  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.blurTrigger {
  opacity: 0;
}

.trbr {
  display: none;
}

@media all and (max-width: 896px) {
  .trbr {
    display: block;
  }
}
.flex_type {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

/*
ローディング
----------------------------------*/
.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 #afe1aa;
  border-radius: 50%;
  border-right: 1px solid rgba(175, 225, 170, 0.2);
  border-top: 1px solid rgba(175, 225, 170, 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);
  }
}
.gradient {
  background: linear-gradient(45deg, #ccc, #EB9575, #eee);
  background-size: 600% 600%;
  animation: anim-gradient 10s ease infinite;
}

@keyframes anim-gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
#l-header {
  width: 100%;
  position: absolute;
  z-index: 200;
  top: 0;
  left: 0;
}
#l-header.is-hide {
  transform: translateY(-100%);
}
#l-header .inner {
  position: relative;
  width: calc(100% - 100px);
  margin: 15px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 25px 40px;
  background-color: #fff;
  border-radius: 5px;
}
#l-header .inner #logo {
  width: 260px;
  z-index: 15;
}
#l-header .inner #logo .white {
  display: block;
}
#l-header .inner #logo .nomal {
  display: none;
}
@media all and (max-width: 1367px) {
  #l-header .inner #logo {
    width: 205px;
    z-index: 15;
    margin: 0 auto 20px;
  }
}
@media all and (max-width: 896px) {
  #l-header .inner #logo {
    margin-right: auto;
    margin-left: 0;
    margin-bottom: 0;
  }
}
@media all and (max-width: 639px) {
  #l-header .inner #logo {
    width: 150px;
  }
}
#l-header .inner .contact-btn a {
  padding: 7px 25px;
  background: #afe1aa;
  color: #485543;
  border-radius: 80px;
  border: 1px solid #afe1aa;
  letter-spacing: 0;
  font-weight: 500;
}
#l-header .inner .contact-btn a:hover {
  background: #fefefe;
  color: #afe1aa;
}
@media all and (max-width: 1100px) {
  #l-header .inner .contact-btn {
    display: none;
  }
  #l-header .inner .contact-btn a {
    padding: 5px 12px;
    font-size: 1.5rem;
  }
}
@media all and (max-width: 639px) {
  #l-header .inner .contact-btn {
    display: none;
  }
}
@media all and (max-width: 1100px) {
  #l-header .inner {
    padding: 25px 25px;
    width: 100%;
    margin: 0 auto;
  }
}
@media all and (max-width: 639px) {
  #l-header .inner {
    padding: 25px 15px;
  }
}
#l-header.is-fixed {
  position: fixed;
  background: #fff;
}
#l-header.is-fixed .inner #logo .white {
  display: none;
}
#l-header.is-fixed .inner #logo .nomal {
  display: block;
}
#l-header.is-fixed .inner .contact-btn a {
  padding: 7px 25px;
  background: transparent;
  color: #afe1aa;
  border-radius: 80px;
  border: 1px solid #afe1aa;
}
#l-header.is-fixed .inner .contact-btn a:hover {
  background: #afe1aa;
  color: #fefefe;
}
#l-header.is-fixed #nav-toggle span {
  background: #333;
}
#l-header.is-fixed #header_nav ul li a {
  color: #333;
}
#l-header.is-fixed #header_nav ul li a:hover, #l-header.is-fixed #header_nav ul li a.active {
  color: #006494;
}
#l-header.is-fixed #header_nav .dropdown .dropdown-li a {
  color: #fefefe;
}
#l-header .head-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  background: #fff;
}
@media all and (max-width: 1100px) {
  #l-header .head-right {
    margin: 0 auto;
  }
}
@media all and (max-width: 896px) {
  #l-header .head-right {
    display: none;
  }
}

#header_nav {
  position: relative;
  z-index: 20;
  margin-right: 15px;
  width: 615px;
}
#header_nav ul {
  display: flex;
  flex-wrap: wrap;
}
#header_nav ul li {
  position: relative;
  flex: 1 0 auto;
}
#header_nav ul li:last-child {
  display: none;
}
#header_nav ul li a {
  letter-spacing: 0.05em;
  display: block;
  position: relative;
  line-height: 1.5;
  color: #443a37;
  font-weight: 500;
  text-align: center;
}
#header_nav ul li a:after {
  position: absolute;
  transition: all 0.6s ease;
  content: "";
  width: 25px;
  height: 2px;
  background: #df8731;
  transform: translateX(-50%);
  bottom: -8px;
  left: 50%;
  opacity: 0;
}
@media all and (max-width: 1100px) {
  #header_nav ul li a {
    font-size: 1.4rem;
    padding: 0 10px 0;
  }
}
#header_nav ul li a span {
  display: none;
  font-size: 1.3rem;
}
#header_nav ul li a:hover, #header_nav ul li a.active {
  color: #485543;
}
#header_nav ul li a:hover:after, #header_nav ul li a.active:after {
  opacity: 1;
}
#header_nav .dropdown {
  display: none;
  position: absolute;
  left: 0;
  top: 30px;
  z-index: 999;
  padding-top: 30px;
}
#header_nav .dropdown .dropdown-li {
  border-right: 0;
  margin: 0 0 5px;
  background: #EB9575;
  text-align: center;
  z-index: 999;
}
#header_nav .dropdown .dropdown-li:last-child {
  display: block;
}
#header_nav .dropdown .dropdown-li a {
  display: block;
  width: 160px;
  padding: 10px 8px;
  color: #fefefe;
  font-size: 1.2rem;
}
#header_nav .dropdown .dropdown-li a:after {
  display: none;
}
#header_nav .dropdown .dropdown-li:hover {
  background: #afe1aa;
}
#header_nav .dropdown .dropdown-li.foot_only {
  display: none;
}
@media all and (max-width: 1100px) {
  #header_nav {
    width: auto;
  }
  #header_nav ul li:last-child {
    display: block;
  }
}

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

/* slideshow
----------------------------------*/
@media all and (max-width: 639px) {
  #slider_fnpngv_1746086185.slider_wrapper {
    --swiper-wrapper-height: 58vh!important;
  }
}

#slide-bg {
  position: relative;
  padding: 0;
  width: 100%;
  margin: 0 auto;
}
@media all and (max-width: 1100px) {
  #slide-bg {
    width: 100%;
    padding: 0;
  }
}

#slideshow {
  width: 100%;
  margin: 0 auto;
}
@media all and (max-width: 639px) {
  #slideshow {
    margin: 0 auto;
    width: 100%;
  }
}

#catch {
  z-index: 50;
  position: absolute;
  left: 4%;
  bottom: 20%;
  z-index: 10;
  transform: translateY(50%);
  width: 45%;
  opacity: 0;
  max-width: 750px;
}
#catch.on {
  transition: 1.4s ease-in opacity;
  opacity: 1;
}
#catch .catch-txt {
  color: #fefefe;
  font-size: 2.2rem;
  padding-left: 7vw;
  margin-top: 20px;
  font-weight: normal;
  white-space: nowrap;
}
#catch .catch-txt span {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  display: block;
  font-weight: normal;
  font-size: 1.3rem;
}
@media all and (max-width: 1100px) {
  #catch {
    width: 40%;
  }
}
@media all and (max-width: 896px) {
  #catch {
    width: 50%;
  }
  #catch .catch-txt {
    padding-left: 8vw;
  }
}
@media all and (max-width: 639px) {
  #catch {
    width: 75%;
  }
  #catch .catch-txt {
    font-size: 1.5rem;
    padding-left: 12vw;
  }
}

#scrolldown {
  position: absolute;
  right: 15px;
  bottom: 0px;
  color: #fefefe;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-feature-settings: "pkna";
  font-size: 1.4rem;
  z-index: 100;
  height: 200px;
}
#scrolldown:before, #scrolldown:after {
  position: absolute;
  content: "";
  z-index: 2;
  left: 50%;
}
#scrolldown:before {
  width: 1px;
  height: 100px;
  bottom: 0;
  background: #fefefe;
  transform: translateX(-50%);
}
#scrolldown:after {
  width: 8px;
  height: 8px;
  background: rgba(254, 254, 254, 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: 896px) {
  #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;
  }
}
/* footer
----------------------------------*/
#l-footer {
  font-size: 1.4rem;
  position: relative;
  padding: 60px 20px 50px;
  background-color: #E3EBA5;
  margin-top: 200px;
}
#l-footer:before {
  position: absolute;
  content: "";
  right: 0;
  top: -200px;
  width: 102%;
  height: 225px;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26086/footer.svg) repeat-x 50% bottom/contain;
}
#l-footer .inner {
  margin: 0 auto;
  max-width: 1200px;
  position: relative;
  z-index: 3;
}
#l-footer .inner .footer-column {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto 30px;
  z-index: 2;
}
#l-footer .inner .footer-column.type1 {
  margin: 0 auto;
}
#l-footer .inner .footer-column .footer-left {
  width: 34%;
}
#l-footer .inner .footer-column .footer-left .inbox {
  padding: 10px;
}
#l-footer .inner .footer-column .footer-right {
  width: 55%;
}
#l-footer .inner .footer-column .footer-right iframe {
  height: 300px;
}
@media all and (max-width: 1100px) {
  #l-footer .inner {
    width: 100%;
  }
}
@media all and (max-width: 896px) {
  #l-footer .inner .footer-column .footer-left {
    width: 100%;
    margin-bottom: 30px;
  }
  #l-footer .inner .footer-column .footer-right {
    width: 100%;
  }
  #l-footer .inner .footer-column .footer-right iframe {
    height: 200px;
  }
}
@media all and (max-width: 639px) {
  #l-footer {
    font-size: 1.2rem;
    background-size: contain;
    width: 100%;
    margin: 60px auto 0;
    padding: 50px 0 0;
  }
  #l-footer .inner {
    padding: 0;
  }
}

/* contact_bnr
----------------------------------*/
.contact_bnr {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.contact_bnr.full {
  margin-top: 20px;
  margin-bottom: 0;
}
.contact_bnr.full > li {
  width: 100%;
  margin: 0 auto 10px;
}
.contact_bnr.col3 {
  margin-top: 20px;
  margin-bottom: 0;
}
.contact_bnr.col3 > li {
  width: 32%;
  margin: 0 auto 10px;
}
@media all and (max-width: 896px) {
  .contact_bnr.col3 > li {
    margin: 0 auto;
    white-space: nowrap;
    padding: 10px 0;
    width: 100%;
    font-size: 1.5rem;
  }
  .contact_bnr.col3 > li .bnr_tel {
    font-size: 1.4rem;
  }
  .contact_bnr.col3 > li .bnr_tel:before {
    font-size: 1.3rem;
  }
}
.contact_bnr > li {
  width: 48%;
  margin: 0 auto 15px;
}
@media all and (max-width: 896px) {
  .contact_bnr > li {
    width: 100%;
  }
}
.contact_bnr > li .bnr_tel {
  white-space: nowrap;
  position: relative;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.5;
}
.contact_bnr > li .bnr_tel:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  margin-right: 5px;
  font-size: 1.6rem;
}
@media all and (max-width: 896px) {
  .contact_bnr > li .bnr_tel {
    font-size: 1.6rem;
  }
}
.contact_bnr > li .bnr_sns {
  white-space: nowrap;
  position: relative;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.5;
}
.contact_bnr > li .bnr_sns i {
  font-size: 2.5rem;
}
.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: #afe1aa;
}
.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 .bnr_line:before {
  display: inline-block;
  font-family: "Font Awesome 5 Brands" !important;
  font-family: "Font Awesome 5 Free";
  content: "\f3c0";
  font-weight: 900;
}
.contact_bnr > li a,
.contact_bnr > li span {
  display: block;
  background: #fff;
  border: 1px solid #489F7B;
  color: #489F7B;
  font-size: 1.7rem;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.2rem;
  padding: 8px 10px;
  border-radius: 50px;
}
.contact_bnr > li a:before,
.contact_bnr > li span:before {
  margin-right: 5px;
  position: relative;
  display: inline-block;
}
.contact_bnr > li a:hover,
.contact_bnr > li span:hover {
  color: #fefefe;
  background-color: #afe1aa;
}
@media all and (max-width: 896px) {
  .contact_bnr > li a,
  .contact_bnr > li span {
    margin: 0 auto;
    white-space: nowrap;
    padding: 10px 0;
    width: 100%;
    font-size: 1.5rem;
  }
  .contact_bnr > li a:before,
  .contact_bnr > li span:before {
    font-size: 1.3rem;
    transform: translateY(-2px);
  }
}
.contact_bnr.white li {
  width: 48%;
}
@media all and (max-width: 639px) {
  .contact_bnr.white li {
    width: 100%;
  }
}
.contact_bnr.white li a,
.contact_bnr.white li span {
  border: 1px solid #fefefe;
  color: #fefefe;
}
.contact_bnr.white li a:hover,
.contact_bnr.white li span:hover {
  color: #afe1aa;
  background: #fefefe;
}

.contact_bnr4 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 30px 10px;
  background: #fff;
  border-radius: 10px;
  max-width: 1000px;
  margin: 0 auto 20px;
}
@media all and (max-width: 896px) {
  .contact_bnr4 {
    max-width: 90%;
  }
}
@media all and (max-width: 639px) {
  .contact_bnr4 {
    padding: 15px 10px;
    margin-bottom: 0;
  }
}
.contact_bnr4 > li {
  width: 50%;
}
.contact_bnr4 > li:not(:last-child) {
  border-right: 1px dashed #EB9575;
}
@media all and (max-width: 639px) {
  .contact_bnr4 > li {
    width: 90%;
    margin: 0 auto 10px;
  }
  .contact_bnr4 > li:not(:last-child) {
    border-right: 0;
    border-bottom: 1px dashed #489F7B;
    margin-bottom: 20px;
    padding-bottom: 10px;
  }
}
.contact_bnr4 > li .tel_bnr {
  letter-spacing: 0.15em;
}
.contact_bnr4 > li .tel_bnr:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
}
.contact_bnr4 > li .mail_bnr:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
}
.contact_bnr4 > li .line_bnr:before {
  content: "";
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26086/line.png) no-repeat 50%/30px 30px;
}
.contact_bnr4 > li a,
.contact_bnr4 > li span {
  display: block;
  color: #489F7B;
  font-size: 2.2rem;
  font-weight: 600;
  text-align: center;
  padding-top: 50px;
  position: relative;
  margin-right: auto;
  margin-left: auto;
}
.contact_bnr4 > li a:hover,
.contact_bnr4 > li span:hover {
  color: #EB9575;
}
.contact_bnr4 > li a:before,
.contact_bnr4 > li span:before {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  font-size: 2.5rem;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  border: 0.9px solid #489F7B;
  border-radius: 50%;
  color: #489F7B;
}
@media all and (max-width: 896px) {
  .contact_bnr4 > li a,
  .contact_bnr4 > li span {
    font-size: 1.6rem;
  }
}
@media all and (max-width: 639px) {
  .contact_bnr4 > li a:before,
  .contact_bnr4 > li span:before {
    font-size: 2rem;
  }
}

/* footer_navi
----------------------------------*/
.footer_navi {
  margin: 30px auto 0;
}
@media all and (max-width: 896px) {
  .footer_navi {
    display: none;
  }
}
.footer_navi ul {
  margin: 0 auto;
  width: 98%;
  display: flex;
  flex-wrap: wrap;
}
.footer_navi ul li {
  width: 33%;
  margin: 0px 0 30px;
}
.footer_navi ul li a {
  display: block;
  position: relative;
  color: #443a37;
  font-weight: 600;
  font-size: 1.4rem;
  pointer-events: inherit !important;
}
.footer_navi ul li a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  font-weight: 900;
  margin-right: 5px;
}
.footer_navi ul li a span {
  display: none;
}
.footer_navi ul li a:hover {
  opacity: 0.8;
}
.footer_navi ul li .dropdown {
  display: block;
  padding-left: 0.5em;
}
.footer_navi ul li .dropdown li {
  width: 100%;
  margin: 0;
}
.footer_navi ul li .dropdown li:not(:last-child) {
  margin-bottom: 2px;
}
.footer_navi ul li .dropdown a {
  font-size: 1.2rem;
  font-weight: 500;
}
.footer_navi ul li .dropdown a:before {
  content: "-";
  margin-right: 3px;
  color: #EB9575;
}

.address {
  font-size: 1.4rem;
  text-align: center;
}

.flogo {
  width: 280px;
  margin: 0 auto 20px;
}
.flogo img {
  width: 100%;
}
@media all and (max-width: 896px) {
  .flogo {
    width: 200px;
  }
}
@media all and (max-width: 639px) {
  .flogo {
    width: 80%;
    margin: 0 auto 10px;
  }
}

.flogo-area {
  align-items: center;
  margin-bottom: 10px;
}
@media all and (max-width: 1100px) {
  .flogo-area {
    width: 360px;
    margin-bottom: 0;
  }
}
@media all and (max-width: 896px) {
  .flogo-area {
    width: 280px;
    margin-bottom: 0;
  }
}
@media all and (max-width: 639px) {
  .flogo-area {
    width: 80%;
    margin: 0 auto;
  }
  .flogo-area .sns-list {
    margin: 0 auto;
  }
}

.copyright {
  font-size: 1rem;
  z-index: 2;
  color: #485543;
  position: relative;
  font-weight: 500;
  padding: 15px 0;
  background-color: #afe1aa;
  text-align: center;
}
@media all and (max-width: 896px) {
  .copyright {
    font-size: 12px;
    padding: 15px 0 0;
  }
}
@media all and (max-width: 639px) {
  .copyright {
    text-align: center;
    padding-bottom: 75px;
  }
}

/* contents
----------------------------------*/
.single {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 0;
  position: relative;
}
@media all and (max-width: 1100px) {
  .single {
    width: 85%;
    padding: 80px 0;
  }
}

.single01 {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0 80px;
}
@media all and (max-width: 1100px) {
  .single01 {
    width: 95%;
    padding: 0 0 50px;
  }
}
.single01.type1 {
  padding: 80px 0 0;
}
@media all and (max-width: 1100px) {
  .single01.type1 {
    width: 95%;
    padding: 50px 0 0px;
  }
}

.single02 {
  margin: 0 auto;
  padding: 80px 0;
  position: relative;
}
@media all and (max-width: 1100px) {
  .single02 {
    padding: 80px 10px;
  }
}

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

.margin-top0 {
  margin-top: 80px;
}
@media all and (max-width: 896px) {
  .margin-top0 {
    margin-top: 40px;
  }
}

.margin-top {
  margin-top: -80px;
}
.margin-top2 {
  margin-top: -150px;
}
@media all and (max-width: 896px) {
  .margin-top2 {
    margin-top: -80px;
  }
}

.margin-bottom {
  margin-bottom: -80px;
}
@media all and (max-width: 896px) {
  .margin-bottom {
    margin-bottom: -40px;
  }
}

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

.lsingle {
  float: left;
}

.rsingle {
  float: right;
}

.img-100 {
  width: 100%;
  height: 330px;
  margin-bottom: 25px;
}
.img-100 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 51%;
     object-position: center 51%;
}

.mbox {
  background: #fefefe;
  padding: 35px 30px;
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}
.mbox.transparent {
  background: transparent;
}
@media all and (max-width: 639px) {
  .mbox {
    padding: 15px;
  }
}
.mbox.bd {
  position: relative;
  padding: 40px;
  border: 1px solid #afe1aa;
}
@media all and (max-width: 639px) {
  .mbox.bd {
    padding: 40px 15px;
  }
}
.mbox.p-non {
  padding: 0;
}
@media all and (max-width: 639px) {
  .mbox.sp-non {
    padding: 0;
  }
}
.mbox.sd {
  box-shadow: 0.5rem 0.5rem 10px rgba(51, 51, 51, 0.1), -0.5rem -0.5rem 8px rgba(218, 218, 218, 0.1);
  border-radius: 8px;
}
.mbox.radius {
  border-radius: 8px 100px 8px 100px;
}
@media all and (max-width: 639px) {
  .mbox.radius {
    border-radius: 8px 8px 8px 8px;
  }
}
.mbox.kk {
  background-color: #fff;
  padding: 40px;
}
.mbox.kk::after {
  border-top: 2px solid #EB9575;
  top: -10px;
  left: 0;
  position: absolute;
  content: "";
  width: 100%;
}
.mbox.kk.sbc:after {
  border-top: 2px solid #489F7B;
}
@media all and (max-width: 639px) {
  .mbox.kk {
    padding: 25px 10px;
    width: 100%;
  }
  .mbox.kk:before, .mbox.kk:after {
    display: none;
  }
}

.box1 {
  max-width: 770px;
  background: #fff;
  border-radius: 12px;
  padding: 60px;
  box-sizing: border-box;
  margin: -200px auto 0;
  position: relative;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 10px 15px;
}
@media all and (max-width: 639px) {
  .box1 {
    padding: 30px 20px;
    margin: -100px auto 0;
  }
}
.box1.contents {
  max-width: 100%;
  text-align: left;
}

.note {
  padding: 20px;
  background: rgba(72, 159, 123, 0.4);
}
@media all and (max-width: 639px) {
  .note {
    padding: 12px;
  }
}
.note.type1 {
  background: rgba(175, 225, 170, 0.1);
}

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

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

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

.tcenter_balance {
  text-align: center;
  word-break: auto-phrase;
  text-wrap: balance;
}

.trig {
  text-align: right;
}
@media all and (max-width: 896px) {
  .trig {
    text-align: left;
  }
}

.bg-dot {
  position: relative;
}
.bg-dot:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(175, 225, 170, 0.2) 7%, transparent 10%), radial-gradient(rgba(175, 225, 170, 0.2) 7%, transparent 10%);
  background-position: 0 0, 20px 20px;
  background-size: 40px 40px;
}

/*bg-svg
-----------------------------------*/
.bg-svg {
  position: relative;
  background-color: #f7f5f2;
}
.bg-svg:before {
  content: "";
  width: 100%;
  height: 188px;
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26086/top_3_yane.svg);
  background-repeat: no-repeat;
  background-position: bottom;
  position: absolute;
  top: -202px;
  z-index: -1;
}
.bg-svg:after {
  content: "";
  position: absolute;
  background-color: #f7f5f2;
  top: -166px;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -8;
}
@media all and (max-width: 1490px) {
  .bg-svg:before {
    height: 174px;
    top: -202px;
  }
}
@media all and (max-width: 1367px) {
  .bg-svg:before {
    height: 150px;
    top: -230px;
  }
}
@media all and (max-width: 896px) {
  .bg-svg:before {
    height: 100px;
    top: -200px;
  }
}
@media all and (max-width: 639px) {
  .bg-svg:before {
    height: 65px;
    top: -170px;
  }
  .bg-svg:after {
    top: -140px;
  }
}
@media all and (max-width: 320px) {
  .bg-svg:before {
    height: 45px;
  }
  .bg-svg:after {
    top: -145px;
  }
}

.bg-mizutama {
  position: relative;
}
.bg-mizutama:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26086/tama.jpg) no-repeat 50%/cover;
  transform: scaleY(-1);
  opacity: 0.2;
}

.bg-oreflo {
  position: relative;
}

.bg-oreflo::before, .bg-oreflo::after {
  position: absolute;
  content: "";
  right: 0;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26086/tama.jpg) repeat-y;
  width: 340px;
  height: 100%;
  /* z-index: 2; */
  z-index: -10;
  display: block;
  opacity: 0.4;
  top: 0;
}

.bg-oreflo::after {
  transform: scaleX(-1);
  left: 0;
  top: 0;
}

@media all and (max-width: 639px) {
  .bg-oreflo::before, .bg-oreflo::after {
    width: 80px;
  }
}
/**/
.bg-grid {
  background: rgba(255, 255, 255, 0.9);
  /* border-top: 1px solid #555;
     border-bottom: 1px solid #555;*/
  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: 896px) {
  #main .mbox {
    min-height: initial;
  }
}
#main .mbox a {
  font-weight: 600;
  text-decoration: underline;
}
#main .mbox a:hover {
  text-decoration: none;
}
@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;
  }
}

.s-contena {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 auto;
  padding: 80px 0;
  position: relative;
}
@media all and (max-width: 1100px) {
  .s-contena {
    max-width: 95%;
    padding: 40px 0;
  }
}

.s-main {
  width: 78%;
}
@media all and (max-width: 1100px) {
  .s-main {
    width: 75%;
  }
}
@media all and (max-width: 896px) {
  .s-main {
    width: 100%;
  }
}

.s-side {
  width: 18%;
  min-height: 400px;
  position: sticky;
  right: 0;
  top: 100px;
}
@media all and (max-width: 1100px) {
  .s-side {
    width: 20%;
  }
}
@media all and (max-width: 896px) {
  .s-side {
    width: 100%;
    height: auto;
    min-height: auto;
    position: relative;
    top: 0;
    margin-bottom: 10px;
  }
}

/* mtitle
----------------------------------*/
.mtitle {
  font-weight: 500;
  margin: 0 auto 40px;
  text-align: center;
}
.mtitle.b-min {
  margin-bottom: 20px;
}
.mtitle.t-mgn {
  margin-top: 40px;
}
.mtitle .logo {
  font-size: 1.5rem;
  color: #afe1aa;
  text-align: center;
  width: 75px;
  margin: 0 auto;
  display: block;
}
.mtitle .eng {
  font-size: 3.5rem;
  color: #afe1aa;
  position: relative;
  display: block;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
}
.mtitle .ja {
  font-size: 2.5rem;
  color: #443a37;
  font-weight: 600;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
}
.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.mtitle_left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}
.mtitle.mtitle_left span:after {
  left: 0;
  transform: none;
}
.mtitle.mtitle_right {
  text-align: right;
  margin-right: 0;
  margin-left: 0;
}
.mtitle.mtitle_right span:after {
  left: 0;
  transform: none;
}
@media all and (max-width: 639px) {
  .mtitle {
    text-align: center;
  }
  .mtitle .eng {
    font-size: 1.4rem;
  }
  .mtitle .ja {
    font-size: 1.8rem;
  }
}

.mtitle_1 {
  position: relative;
  display: block;
  font-weight: 600;
  margin-bottom: 20px;
  border-bottom: 2px dashed #443a37;
  padding-bottom: 5px;
  color: #443a37;
  font-size: 2.4rem;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
}
.mtitle_1 .eng {
  font-size: 1.6rem;
  color: #afe1aa;
  display: block;
  top: 0;
  right: 0;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
}
@media all and (max-width: 1100px) {
  .mtitle_1 {
    font-size: 2rem;
  }
}
@media all and (max-width: 639px) {
  .mtitle_1 {
    font-size: 1.6rem;
    letter-spacing: 0.08em;
  }
}

.mtitle1 {
  position: relative;
  margin-bottom: 40px;
}
.mtitle1 .num {
  color: #afe1aa;
  font-size: 2rem;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  text-align: center;
  display: block;
}
.mtitle1 .eng {
  font-size: 6rem;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  color: #afe1aa;
  margin-bottom: 40px;
}
@media all and (max-width: 896px) {
  .mtitle1 .eng {
    font-size: 4rem;
  }
}
@media all and (max-width: 639px) {
  .mtitle1 .eng {
    font-size: 3.2rem;
  }
}
.mtitle1 .ja {
  font-size: 2rem;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
  display: block;
}

.mtitle_ribon {
  position: relative;
  background: #e8845f;
  color: #fff;
  display: inline-block;
  padding: 15px 35px 15px 15px;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
  font-size: 2.3rem;
  -webkit-clip-path: polygon(0% 0%, 100% 0, 95% 50%, 100% 100%, 0% 100%);
          clip-path: polygon(0% 0%, 100% 0, 95% 50%, 100% 100%, 0% 100%);
  margin: 0 0 25px -30px;
}
.mtitle_ribon .eng {
  font-size: 1.2rem;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  margin-left: 10px;
}
.mtitle_ribon.type1 {
  position: absolute;
  background: #EB9575;
  top: -10px;
  left: 25px;
  display: inline-block;
  padding: 15px 15px 35px 15px;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
  font-size: 2.3rem;
  -webkit-clip-path: polygon(0 0, 0 100%, 50% 95%, 100% 100%, 100% 0);
          clip-path: polygon(0 0, 0 100%, 50% 95%, 100% 100%, 100% 0);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-feature-settings: "pkna";
  color: #fff;
  margin: 0 auto;
}
.mtitle_ribon.bc {
  background: #afe1aa;
}
.mtitle_ribon.sbc {
  background: #489F7B;
}
@media all and (max-width: 639px) {
  .mtitle_ribon {
    margin: 0 0 20px -10px;
    font-size: 1.5rem;
  }
  .mtitle_ribon .eng {
    font-size: 1rem;
  }
  .mtitle_ribon.type1 {
    font-size: 1.3rem;
    margin: 5px 0 0 -5px;
  }
}

.mtitle2 {
  font-size: 2rem;
  position: relative;
  font-weight: 600;
  position: relative;
  padding-left: 15px;
  margin-bottom: 20px;
  line-height: 1.2;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
}
.mtitle2 span {
  display: block;
  font-size: 1.2rem;
  color: #afe1aa;
  font-weight: 600;
}
.mtitle2:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(to top, #afe1aa, #EB9575);
}
@media all and (max-width: 639px) {
  .mtitle2 {
    font-size: 1.6rem;
  }
  .mtitle2 span {
    font-size: 1.2rem;
  }
  .mtitle2 .viewbtn {
    font-size: 13px;
  }
}

.mtitle3 {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-feature-settings: "pkna";
  position: absolute;
  min-height: 100px;
  top: 0px;
  left: 30px;
}
.mtitle3 .ja {
  display: block;
  font-size: 2.3rem;
  border-right: 2px solid #afe1aa;
  letter-spacing: 0.2em;
  padding-right: 5px;
  font-weight: 500;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
}
.mtitle3 .eng {
  display: block;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  color: #afe1aa;
  padding-left: 3px;
  font-weight: 400;
}
@media all and (max-width: 896px) {
  .mtitle3 {
    left: 0px;
    top: 0px;
    min-height: auto;
    margin-bottom: 20px;
    writing-mode: inherit;
    position: relative;
    border-bottom: 2px solid #afe1aa;
  }
  .mtitle3 .ja {
    border-right: none;
    padding-bottom: 15px;
  }
}
@media all and (max-width: 639px) {
  .mtitle3 .ja {
    font-size: 1.6rem;
  }
  .mtitle3 .eng {
    font-size: 1.3rem;
  }
}

.vertical-content {
  padding-left: 140px;
  position: relative;
}
.vertical-content.type1 {
  margin-left: 0;
  margin-right: 120px;
}
.vertical-content.type2 {
  margin-left: 60px;
}
@media all and (max-width: 639px) {
  .vertical-content.type2 {
    margin-left: 0;
  }
}
@media all and (max-width: 639px) {
  .vertical-content {
    margin-left: 0;
  }
  .vertical-content.type1 {
    margin-right: 0;
  }
}

.mtitle_line {
  font-size: 2.2rem;
  position: relative;
  font-weight: 400;
  margin-bottom: 30px;
  padding-top: 8px;
  padding-left: 8px;
  padding-bottom: 10px;
  color: #443a37;
  letter-spacing: 0.2rem;
}
.mtitle_line span {
  display: block;
  font-size: 1.4rem;
  color: #443a37;
}
.mtitle_line:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  content: "";
  opacity: 0.6;
  background-image: repeating-linear-gradient(-45deg, #443a37, #443a37 1px, transparent 1px, transparent 3px);
  background-size: 4px 4px;
  backface-visibility: hidden;
}
@media all and (max-width: 639px) {
  .mtitle_line {
    font-size: 1.4rem;
  }
  .mtitle_line span {
    font-size: 1.2rem;
  }
}

.mtitle4 {
  font-weight: normal;
  text-align: center;
  font-size: 2.6rem;
  line-height: 1.5;
  letter-spacing: 0.1rem;
  color: #afe1aa;
}
.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: 5rem;
  background-color: #afe1aa;
}
.mtitle4 span:before {
  left: -11px;
  transform: rotate(-20deg);
}
.mtitle4 span:after {
  right: -11px;
  transform: rotate(20deg);
}
.mtitle4.white span:before, .mtitle4.white span:after {
  background-color: #EB9575;
}
@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;
  }
}
.mtitle4.min {
  font-size: 2rem;
  font-weight: 600;
  color: #333;
}
.mtitle4.min span:before, .mtitle4.min span:after {
  width: 2px;
  height: 3rem;
}

.mtitle5 {
  position: relative;
  margin: 0 auto 40px;
  text-align: center;
  line-height: 1.6;
}
.mtitle5 .eng {
  display: block;
  font-size: 1.4rem;
  color: #afe1aa;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  letter-spacing: 0.15em;
}
.mtitle5 .ja {
  font-size: 2.8rem;
  color: #443a37;
}
.mtitle5:after {
  position: absolute;
  content: "";
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  width: 60px;
  height: 3px;
  z-index: 1;
  background-image: linear-gradient(to right, #EB9575 0%, #EB9575 50%, #afe1aa 50%, #afe1aa 100%);
  border-radius: 10px;
}
.mtitle5.type1:after {
  background-image: linear-gradient(to right, #EB9575 0%, #EB9575 50%, #afe1aa 50%, base_color 100%);
}
.mtitle5.white span {
  color: #fff;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}
.mtitle5.white:after {
  color: #fff;
}
.mtitle5.mtitle_left {
  text-align: left;
}
.mtitle5.mtitle_left:after {
  left: 0;
  transform: translateX(0%);
}
@media all and (max-width: 896px) {
  .mtitle5 {
    margin: 0 auto 30px;
  }
  .mtitle5 .eng {
    font-size: 1.1rem;
  }
  .mtitle5 .ja {
    font-size: 1.8rem;
  }
}

.mtitle_sub {
  padding-left: 0.5em;
  font-weight: 600;
  position: relative;
  border-left: 6px solid #afe1aa;
  margin: 8px 0 15px;
  font-size: 1.1em;
  line-height: 1.4;
  text-align: left;
}
.mtitle_sub .hissu {
  color: #fff;
  background: #d2eed0;
  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: #EB9575;
}

.mtitle_box {
  background: #9dda97;
  color: #fefefe;
  font-size: 2rem;
  position: relative;
  padding: 5px 10px;
  margin-bottom: 20px;
  font-weight: 500;
}
.mtitle_box span {
  font-weight: normal;
  font-size: 14px;
  padding-left: 10px;
}
@media all and (max-width: 639px) {
  .mtitle_box {
    font-size: 1.5rem;
  }
}
.mtitle_box.type1 {
  background-color: #EB9575;
}

.mtext1 {
  font-size: 2.3rem;
  line-height: 1.6;
}
@media all and (max-width: 639px) {
  .mtext1 {
    font-size: 1.4rem;
  }
}

.mtext2 {
  font-size: 2rem;
  letter-spacing: 0.1rem;
  line-height: 2.4;
  margin-bottom: 20px;
}
.mtext2 span {
  font-style: italic;
  padding: 5px 15px;
  border-bottom: 2px solid #443a37;
  border-top: 2px solid #443a37;
  color: #443a37;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
}
@media all and (max-width: 639px) {
  .mtext2 {
    font-size: 1.8rem !important;
    padding: 4px 8px;
  }
}

.mtext3 {
  font-size: 1.8rem;
  letter-spacing: 0.15em;
}
@media all and (max-width: 639px) {
  .mtext3 {
    font-size: 1.4rem;
  }
}

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

/* btn
----------------------------------*/
.btn01 a {
  text-align: center;
  width: 300px;
  margin: 15px auto;
  color: #afe1aa;
  display: block;
  padding: 8px 5px;
  border: 1px solid #afe1aa;
  border-radius: 5px;
}
.btn01 a:hover {
  background: #afe1aa;
  color: #fefefe;
}
.btn01.type1 a {
  background-color: #afe1aa;
  color: #fff;
  border: 1px solid #afe1aa;
}
.btn01.type1 a:hover {
  background: #fff;
  color: #afe1aa;
}
.btn01.tel a {
  background: #fefefe;
}
.btn01.tel a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  margin-right: 5px;
}
.btn01.tel a:hover {
  background: #afe1aa;
  color: #fefefe;
}
.btn01.mail {
  flex-basis: 100%;
}
.btn01.mail a {
  background: #EB9575;
  margin: 15px auto 25px;
}
.btn01.mail a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
  margin-right: 5px;
}
.btn01.sub a {
  border: 2px solid #EB9575;
  color: #EB9575;
}
.btn01.sub a:hover {
  background: #EB9575;
  color: #fefefe;
}
@media all and (max-width: 639px) {
  .btn01 a {
    width: 95%;
  }
}

.btn02 {
  width: 300px;
  margin: 20px auto 20px;
}
.btn02.right {
  margin-right: 0;
}
.btn02.left {
  margin-left: 0;
}
.btn02 a {
  display: block;
  position: relative;
  padding: 15px 0;
  background-color: #afe1aa;
  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: 80%;
  }
  .btn02 a {
    font-size: 1.4rem;
  }
}

/* --news--
----------------------------------*/
.news-box {
  margin: 0 auto 0;
  max-width: 1000px;
  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;
    padding: 20px 10px;
    margin-bottom: 40px;
  }
}

.news-title {
  position: relative;
  text-align: center;
}
.news-title span {
  display: block;
  line-height: 1.5;
  color: #443a37;
}
.news-title .eng {
  position: relative;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  color: #afe1aa;
  text-transform: uppercase;
  font-size: 3rem;
}
.news-title .ja {
  position: relative;
  font-size: 1.8rem;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
}
@media all and (max-width: 639px) {
  .news-title {
    margin-bottom: 15px;
  }
  .news-title .eng {
    font-size: 2rem;
  }
  .news-title .ja {
    font-size: 1.4rem;
  }
}

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

/* news
----------------------------------*/
.news-bl {
  overflow: hidden;
}
.news-bl .news-bl-inner {
  padding: 18px 8px 18px;
  background-color: #fff;
}
.news-bl .news-bl-inner:not(:last-of-type) {
  border-top: 0.9px solid #ddd;
  border-bottom: 0.9px solid #ddd;
}
.news-bl dt {
  float: left;
  width: 7em;
  padding: 5px;
  line-height: 1.3;
  color: #489F7B;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
}
@media all and (max-width: 639px) {
  .news-bl dt {
    font-size: 1.2rem;
  }
}
.news-bl dd {
  padding: 0 0 5px 8em;
  line-height: 1.6;
  border-bottom: 1px dotted #dddddd;
  margin: 0 0 5px;
}
.news-bl dd a {
  color: #333;
  background-image: linear-gradient(to right, #afe1aa, #EB9575);
  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);
}
.news-bl dd a:hover {
  background-position: 0 100%;
  background-size: 100% 1px;
}
.news-bl dd:last-child {
  margin: 0;
  border-bottom: none;
}
.news-bl dd .cate {
  display: inline-block;
  padding: 3px 5px;
  font-size: 1rem;
  background: #afe1aa;
  color: #fefefe;
  margin-right: 10px;
}
@media all and (max-width: 639px) {
  .news-bl dt {
    float: none;
  }
  .news-bl dd {
    padding: 8px 5px;
  }
}

.normal-bl {
  overflow: hidden;
  line-height: 1.5;
}

.normal-bl dt {
  float: left;
  padding: 2px 15px;
  margin-right: 10px;
  background-color: #EB9575;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.normal-bl dt.type1 {
  color: #0e99c1;
  background-color: #fff;
}

.normal-bl dd {
  margin: 0 0 15px;
  color: #333;
}

.normal-bl dd:last-child {
  margin: 0;
}

@media all and (max-width: 639px) {
  .normal-bl dt {
    float: none;
    width: 140px;
    height: auto;
    font-size: 1.1rem;
  }
  .normal-bl dd {
    margin: 0 0 10px;
  }
}
.news-ul li {
  border-bottom: 1px solid rgba(175, 225, 170, 0.5);
}
.news-ul li:last-child {
  border-bottom: none;
}
.news-ul li a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 15px 40px 15px 0;
  flex-wrap: wrap;
  justify-content: space-between;
  color: #333;
}
.news-ul li a:after {
  position: absolute;
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  top: 50%;
  right: 20px;
  border-top: 1px solid #afe1aa;
  border-right: 1px solid #afe1aa;
  transform: rotate(45deg) translateY(-50%);
  transition: 0.3s ease-in-out;
}
.news-ul li a:hover:after {
  right: 10px;
}
@media all and (max-width: 1100px) {
  .news-ul li a {
    padding: 15px 40px 15px 0;
  }
}
.news-ul .day {
  font-size: 15px;
  width: 20%;
  color: #333;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-weight: 400;
}
.news-ul .title {
  width: 75%;
  font-weight: 600;
}
@media all and (max-width: 1100px) {
  .news-ul .day,
  .news-ul .title {
    width: 100%;
  }
}

.link-news {
  position: relative;
  display: flex;
  justify-content: flex-end;
  margin-top: 30px;
}
@media all and (max-width: 896px) {
  .link-news {
    margin-top: 20px;
  }
}
.link-news .link {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: #006494;
  padding-right: 30px;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
}
.link-news:before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  border: 1px solid #006494;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s ease-in-out;
}
.link-news:after {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  top: 50%;
  right: 10px;
  border-top: 1px solid #006494;
  border-right: 1px solid #006494;
  transform: rotate(45deg) translateY(-50%);
  transition: 0.3s ease-in-out;
}
.link-news:hover:before {
  background: #006494;
}
.link-news:hover:after {
  border-color: #fefefe !important;
}

/* page-title
----------------------------------*/
.page-title {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26086/page-title.jpg) no-repeat center/cover;
  width: 100%;
  margin: 0 auto;
}
.page-title.type1 {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26086/page-title02.jpg) no-repeat center/cover;
}
.page-title.type2 {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26086/page-title03.jpg) no-repeat center/cover;
}
.page-title.type3 {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26086/page-title04.jpg) no-repeat center/cover;
}
.page-title.type4 {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26086/page-title05.jpg) no-repeat center 20%/cover;
}
.page-title:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: #333;
  opacity: 0.5;
}
.page-title .inner {
  margin: 0 auto;
  padding: 300px 0 170px;
  max-width: 1200px;
  overflow: hidden;
}
.page-title .inner .page-lead {
  color: #fff;
  font-size: 2.2rem;
  position: relative;
  text-align: center;
}
.page-title .inner .page-lead .ja {
  font-weight: 600;
  font-size: 3.5rem;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
}
.page-title .inner .page-lead .eng {
  display: block;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  color: #fff;
}
@media all and (max-width: 639px) {
  .page-title .inner .page-lead .eng {
    font-size: 1rem;
  }
  .page-title .inner .page-lead .ja {
    font-size: 2rem;
  }
}
@media all and (max-width: 896px) {
  .page-title .inner {
    width: 95%;
    padding: 200px 0 80px;
  }
}
@media all and (max-width: 639px) {
  .page-title .inner {
    width: 95%;
    padding: 150px 0 80px;
  }
}

/* bg
---------------------------------*/
.bg-body {
  position: relative;
  background-color: #f7f5f2;
}

.bg-base {
  background: rgba(72, 159, 123, 0.1);
  position: relative;
}
.bg-base.type1 {
  background-image: linear-gradient(to bottom, #f2f4f7, rgba(72, 159, 123, 0.2));
}
.bg-base.type1:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26086/bg-fixed.webp) no-repeat bottom/cover;
  background-attachment: fixed;
  opacity: 0.8;
}
@media all and (max-width: 1100px) {
  .bg-base.type1:before {
    background-attachment: scroll;
  }
}
.bg-base.type1:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #EB9575 url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26086/raster2.png) repeat;
  opacity: 0.3;
  z-index: -1;
}
.bg-base.type2 {
  background: transparent;
}
.bg-base.type2:before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: -2;
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26086/deco1.png), url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26086/deco2.png);
  background-position: 0% 10%, 100% 90%;
  background-repeat: no-repeat, no-repeat;
  opacity: 0.8;
}
.bg-base.type3 {
  background: transparent;
}
.bg-base.type3:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background-image: linear-gradient(to bottom, transparent, rgba(175, 225, 170, 0.4));
  opacity: 0.3;
}
.bg-base.type4 {
  background: transparent;
}
.bg-base.type4:before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: -2;
  background-image: linear-gradient(to bottom left, #afe1aa, #489F7B);
  opacity: 0.15;
}

.bg-beige {
  position: relative;
}
.bg-beige:before {
  position: absolute;
  content: "";
  width: 80%;
  height: 60%;
  bottom: 0;
  left: 0;
  background: #faf7f0;
  opacity: 0.5;
  z-index: -2;
}

.bg-01 {
  position: relative;
  height: 40vh;
  display: flex;
  flex-wrap: wrap;
}
.bg-01 img {
  width: 33.3%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 70%;
     object-position: center 70%;
}
@media all and (max-width: 639px) {
  .bg-01 {
    height: 200px;
  }
  .bg-01 img {
    width: 50%;
  }
  .bg-01 .sp_none {
    display: none;
  }
}

.bg-haikei {
  position: relative;
}
.bg-haikei:before {
  position: absolute;
  content: "";
  width: 20%;
  height: 41%;
  right: -65px;
  bottom: 300px;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26086/haikei.png) no-repeat 50%/contain;
  z-index: -1;
  /* animation: rotate_anime 1.5s cubic-bezier(0.87, 0.01, 0, 0.99) infinite; */
}
.bg-haikei:after {
  position: absolute;
  content: "";
  width: 29%;
  height: 48%;
  left: 0;
  top: -30%;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26086/haikei2.png) no-repeat 50%/contain;
  z-index: -1;
  /* animation: rotate_anime 1.5s cubic-bezier(0.87, 0.01, 0, 0.99) infinite; */
}

.bg-haikei2 {
  position: relative;
}
.bg-haikei2:before {
  position: absolute;
  content: "";
  width: 20%;
  height: 41%;
  right: -65px;
  bottom: 300px;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26086/haikei.png) no-repeat 50%/contain;
  z-index: -1;
  /* animation: rotate_anime 1.5s cubic-bezier(0.87, 0.01, 0, 0.99) infinite; */
}
.bg-haikei2:after {
  position: absolute;
  content: "";
  width: 29%;
  height: 48%;
  left: 0;
  top: -30%;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26086/haikei3.png) no-repeat 50%/contain;
  z-index: -1;
  /* animation: rotate_anime 1.5s cubic-bezier(0.87, 0.01, 0, 0.99) infinite; */
}

.bg-asirai {
  position: relative;
}
.bg-asirai:before {
  content: "";
  position: absolute;
  width: 220px;
  height: 310px;
  right: 0%;
  top: 0%;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26086/right.svg) no-repeat 50%/contain;
  z-index: -1;
  filter: drop-shadow(2px 2px 0px white);
  z-index: 1;
}
.bg-asirai:after {
  content: "";
  position: absolute;
  width: 220px;
  height: 310px;
  left: 0%;
  top: 0%;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26086/left.svg) no-repeat 50%/contain;
  filter: drop-shadow(2px 2px 0px white);
  z-index: 1;
}
@media all and (max-width: 639px) {
  .bg-asirai::before, .bg-asirai::after {
    width: 67px;
    height: 49px;
    top: -2%;
  }
}

.asirai-box {
  position: relative;
}
.asirai-box:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 100px;
  right: 0%;
  top: 0%;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26086/fuusen.svg) no-repeat 50%/contain;
  z-index: -1;
  filter: drop-shadow(2px 2px 0px white);
  z-index: 1;
}
.asirai-box.point02:before {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26086/kikyuu.svg) no-repeat 50%/contain;
}
.asirai-box.point03:before {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26086/hikouki.svg) no-repeat 50%/contain;
}
.asirai-box.point04:before {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26086/right.svg) no-repeat 50%/contain;
}
@media all and (max-width: 639px) {
  .asirai-box:before {
    width: 69px;
    height: 74px;
  }
}

/* tbl
----------------------------------*/
.tbl {
  width: 100%;
}
.tbl th,
.tbl td {
  padding: 5px;
  vertical-align: middle;
  border: 1px solid #ccc;
  background-color: #fff;
  text-align: center;
}
.tbl th {
  background: #eee;
  width: 20%;
}
.tbl td .batu {
  background: linear-gradient(transparent 50%, #ff393f 70%, transparent 70%);
}
@media all and (max-width: 639px) {
  .tbl th,
  .tbl td {
    padding: 5px;
    font-size: 1.1rem;
  }
}

.tbl_new {
  margin: 0 auto;
  width: 100%;
}
.tbl_new tr th,
.tbl_new tr td {
  vertical-align: middle;
  padding: 15px 10px;
}
.tbl_new tr th {
  font-weight: 600;
  width: 30%;
  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: #eee;
}

.tbl-border {
  width: 100%;
}
.tbl-border th,
.tbl-border td {
  padding: 15px;
  border-bottom: 1px solid #489F7B;
  vertical-align: middle;
}
@media all and (max-width: 639px) {
  .tbl-border th,
  .tbl-border td {
    padding: 10px;
    font-size: 1.2rem;
  }
}
.tbl-border th {
  width: 25%;
  text-align: left;
  font-weight: 600;
  border-bottom-color: #489F7B;
}
.tbl-border th.th-1 {
  width: 45%;
}
@media all and (max-width: 639px) {
  .tbl-border th {
    width: 33%;
  }
}
.tbl-border td {
  word-break: break-all;
}
.tbl-border.type01 th,
.tbl-border.type01 td {
  font-size: 1.4rem;
}
.tbl-border.type01 th {
  width: 35%;
}
@media all and (max-width: 639px) {
  .tbl-border.type01 th {
    width: 30%;
  }
}

.price {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-weight: 600;
  font-size: 2rem;
  color: #afe1aa;
  text-align: right;
}
.price span {
  font-size: 1.5rem;
  font-family: "YakuHanJP", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
@media all and (max-width: 639px) {
  .price {
    font-size: 2rem;
  }
  .price span {
    font-size: 1.2rem;
  }
}

.p-tbl {
  width: 100%;
}
.p-tbl tr {
  border-bottom: 1px solid #b3b3b3;
}
.p-tbl tr:last-child {
  border-bottom: none;
}
.p-tbl th,
.p-tbl td {
  padding: 15px 10px;
  vertical-align: middle;
  text-align: center;
  border-right: 1px solid #b3b3b3;
}
.p-tbl th:last-child,
.p-tbl td:last-child {
  border-right: none;
}
.p-tbl td {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
}
.p-tbl td.txt {
  font-family: "YakuHanJP", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  text-align: left;
  font-size: 13px;
  width: 40%;
  padding: 15px;
}
@media all and (max-width: 639px) {
  .p-tbl td.txt {
    font-size: 1rem;
    padding: 10px;
  }
}
@media all and (max-width: 639px) {
  .p-tbl th,
  .p-tbl td {
    padding: 10px 5px;
    font-size: 1rem;
  }
}

.company {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 5px;
}
.company th,
.company td {
  padding: 15px 10px;
  vertical-align: middle;
}
.company th {
  width: 30%;
  position: relative;
  background: #afe1aa;
  color: #0d2f21;
  font-weight: 600;
}
@media all and (max-width: 639px) {
  .company th {
    font-size: 1.3rem;
  }
}
.company td {
  background: #fff;
  padding-left: 20px;
}

.tbl0 {
  width: 100%;
  margin-bottom: 30px;
}
.tbl0 th,
.tbl0 td {
  padding: 5px;
  border: 0;
  font-size: 1.4rem;
  border-bottom: 1px solid #edeeed;
  color: #443a37;
  vertical-align: middle;
}
@media all and (max-width: 639px) {
  .tbl0 th,
  .tbl0 td {
    font-size: 0.9em;
    display: block;
  }
  .tbl0 th a,
  .tbl0 td a {
    font-size: 0.9em;
  }
}
.tbl0 th {
  font-weight: normal;
  background: none;
  color: #333;
  width: 23%;
  font-weight: 600;
}
.tbl0 th:after, .tbl0 th:before {
  display: none;
}
.tbl0 th.nmb {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
}
@media all and (max-width: 639px) {
  .tbl0 th {
    width: 100%;
    text-align: left;
  }
}
@media all and (max-width: 639px) {
  .tbl0 td {
    border-bottom: 2px solid #edeeed;
  }
}
.tbl0.type1 th,
.tbl0.type1 td {
  font-size: 1.5rem;
  padding: 5px 10px;
  text-align: center;
  border: 1px solid #ccc;
}
@media all and (max-width: 639px) {
  .tbl0.type1 th,
  .tbl0.type1 td {
    padding: 3px 5px;
    font-size: 1.2rem;
  }
  .tbl0.type1 th:nth-child(1), .tbl0.type1 th:nth-child(2),
  .tbl0.type1 td:nth-child(1),
  .tbl0.type1 td:nth-child(2) {
    width: 10%;
  }
  .tbl0.type1 th:nth-child(3), .tbl0.type1 th:nth-child(4), .tbl0.type1 th:nth-child(5),
  .tbl0.type1 td:nth-child(3),
  .tbl0.type1 td:nth-child(4),
  .tbl0.type1 td:nth-child(5) {
    width: 20%;
  }
}
.tbl0.type1 th {
  background: rgba(175, 225, 170, 0.1);
}

.f-tbl {
  width: 100%;
}
.f-tbl th,
.f-tbl td {
  padding: 10px 15px;
  font-size: 1.3rem;
  border: 1px solid #e4e4e4;
}
@media all and (max-width: 896px) {
  .f-tbl th,
  .f-tbl td {
    padding: 5px 10px;
    font-size: 1.1rem;
  }
}
.f-tbl th {
  color: #fff;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  background-color: #EB9575;
  font-weight: 600;
}
.f-tbl.ja th {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
}

/* ggmap
----------------------------------*/
.ggmap {
  position: relative;
  padding-bottom: 26.25%;
  height: 0;
  overflow: hidden;
}
.ggmap iframe,
.ggmap object,
.ggmap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.ggmap.footer {
  padding-bottom: 0;
  height: 350px;
  background: #afe1aa;
}
.ggmap.footer iframe,
.ggmap.footer object,
.ggmap.footer embed {
  filter: hue-rotate(333deg);
  -webkit-filter: hue-rotate(333deg);
}

.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  margin-bottom: 10px;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

/* list
----------------------------------*/
.list_check li {
  padding: 8px;
  font-weight: 600;
}
.list_check li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  font-weight: 900;
  margin-right: 8px;
  color: #afe1aa;
}
.list_check li:not(:last-child) {
  margin-bottom: 4px;
  border-bottom: 1px solid #ccc;
}

.list-inline li {
  display: inline-block;
  padding: 3px;
  background-color: #e0e4e9;
}
@media all and (max-width: 639px) {
  .list-inline li {
    display: block;
    padding: 0;
  }
  .list-inline li:before {
    content: "-";
    color: #afe1aa;
  }
  .list-inline li:not(:last-of-type):after {
    display: none;
  }
}

.ol-list {
  counter-reset: number;
  list-style: none;
  padding: 5px;
}
.ol-list.sbc > li {
  font-size: 1.8rem;
}
@media all and (max-width: 639px) {
  .ol-list.sbc > li {
    font-size: 1.5rem;
  }
}
.ol-list.type1 {
  display: flex;
  flex-wrap: wrap;
}
.ol-list.type1 > li {
  width: 48%;
}
.ol-list.type1 > li:before {
  background: #fff;
  color: #443a37;
  border: #443a37 2px solid;
  line-height: 1.5;
}
.ol-list.type1 > li:nth-child(2n) {
  margin-left: 4%;
}
.ol-list > li {
  color: #443a37;
  margin-bottom: 10px;
  padding-bottom: 10px;
  position: relative;
  padding-left: 55px;
  font-size: 1.7rem;
  font-weight: 500;
}
.ol-list > li:before {
  counter-increment: number;
  content: counter(number);
  background: #afe1aa;
  display: inline-block;
  width: 1.8em;
  height: 1.8em;
  text-align: center;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.8;
  color: #fff;
  border-radius: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
@media all and (max-width: 639px) {
  .ol-list > li {
    font-size: 1.3rem;
    padding-left: 44px;
  }
  .ol-list > li span {
    font-size: 0.9em;
  }
  .ol-list > li:before {
    font-size: 1.8rem;
  }
}

.list_disc.dash li {
  letter-spacing: 0.07em;
}
.list_disc.dash li:not(:last-of-type) {
  margin-bottom: 5px;
  border-bottom: 1px dashed #ccc;
}
.list_disc.dash li:before {
  content: "・";
  margin-right: 5px;
  color: #489F7B;
}
.list_disc li {
  padding: 3px 0;
  font-size: 0.95em;
}
.list_disc li:before {
  content: "・";
  margin-right: 5px;
  color: #489F7B;
}
.list_disc.type1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 15px;
}
.list_disc.type1 li {
  width: 48%;
  font-size: 1.4rem;
  font-weight: 500;
  position: relative;
  padding: 0;
  padding-left: 1.4em;
}
.list_disc.type1 li b {
  color: #489F7B;
}
.list_disc.type1 li:not(:last-of-type) {
  margin-bottom: 5px;
  border-bottom: none;
}
.list_disc.type1 li:before {
  color: #489F7B;
  position: absolute;
  top: 0;
  left: 0;
}
@media all and (max-width: 639px) {
  .list_disc.type1 li {
    font-size: 1.2rem;
  }
}

.list-btn {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto 50px;
}
.list-btn.margin-bottom0 {
  margin-bottom: 0;
}
.list-btn li {
  width: 32%;
  margin: 0 1.7733333333% 10px 0;
}
.list-btn li a {
  display: block;
  color: #fff;
  font-weight: 600;
  padding: 10px 3px;
  text-align: center;
  width: 100%;
  border-radius: 5px;
  height: 100%;
  line-height: 1.5;
  font-size: 1.6rem;
  letter-spacing: 0;
  background-color: #EB9575;
  border: 1px solid #EB9575;
}
.list-btn li a:hover {
  background: #fff;
  color: #60524e;
}
.list-btn li:nth-child(3n) {
  margin-right: 0;
}
@media all and (max-width: 639px) {
  .list-btn li {
    width: 98%;
    margin: 0 auto 10px;
  }
  .list-btn li:nth-child(3n) {
    margin: 0 auto 10px;
  }
}
.list-btn.type1 {
  margin: 0 auto;
}
.list-btn.type1 li {
  width: 49%;
  margin: 0 1.995% 10px 0;
}
.list-btn.type1 li a {
  background: #EB9575;
  border: 1px solid #EB9575;
  color: #fefefe;
  border-radius: 5px;
  font-size: 1.6rem;
  font-weight: 500;
}
.list-btn.type1 li a:hover {
  background: #fff;
  color: #EB9575;
}
.list-btn.type1 li:nth-child(2n) {
  margin-right: 0;
}
@media all and (max-width: 639px) {
  .list-btn.type1 li a {
    font-size: 1.4rem;
  }
}

/*top-bnr
-----------------------------------*/
.top-bnr {
  position: relative;
  margin-bottom: 30px;
  width: 100%;
}
.top-bnr a {
  display: block;
  text-align: center;
  transition: all 0.4s ease;
}
.top-bnr a:before, .top-bnr a:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.top-bnr a:before {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26086/002.jpg) no-repeat 50% 50%/cover;
  z-index: -2;
  opacity: 0.8;
}
.top-bnr a:after {
  background: #20A639;
  opacity: 0;
  z-index: -1;
  opacity: 0.8;
  transition: all 0.6s ease;
}
.top-bnr a .inner {
  display: flex;
  flex-wrap: wrap;
  z-index: 1;
  align-items: center;
  transition: all 0.6s ease;
  padding: 20px 25px;
  justify-content: center;
}
.top-bnr a .inner img {
  width: 50%;
  max-width: 140px;
  filter: invert(1);
}
.top-bnr a .inner .line_right {
  line-height: 2;
  flex: 1;
}
.top-bnr a .inner .line_right h3 {
  font-size: 1.8rem;
  color: #fff;
  list-style: 2.1;
}
.top-bnr a .inner .line_right h3 span {
  font-size: 1.6rem;
  display: block;
}
.top-bnr a .inner .line_right .mini {
  color: #fff;
  margin-top: 30px;
}
.top-bnr a .inner .line_right .mini span {
  padding: 5px 10px;
  border: 1px solid #fff;
}
.top-bnr a:hover:after {
  opacity: 0.6;
}
.top-bnr a:hover .inner {
  filter: grayscale(50%);
  opacity: 0.5;
}
@media screen and (max-width: 896px) {
  .top-bnr {
    margin-bottom: 15px;
  }
  .top-bnr a .inner .line_right {
    flex: auto;
  }
  .top-bnr a .inner .line_right h3 {
    font-size: 1.6rem;
  }
  .top-bnr a .inner img {
    width: 100%;
    max-width: 50px;
  }
}

/*top-cms-area
----------------------------------*/
.top-cms-area {
  padding: 50px 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 25px 24px;
  background-color: #fff;
  border-radius: 25px;
}
@media all and (max-width: 1100px) {
  .top-cms-area {
    margin-top: 0;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 5px 10px;
  }
}
@media all and (max-width: 639px) {
  .top-cms-area {
    padding: 0;
    box-shadow: none;
  }
}
.top-cms-area::after {
  content: "";
  background: #F8F3F2;
  width: 2px;
  height: 80%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media all and (max-width: 639px) {
  .top-cms-area::after {
    width: 95%;
    height: 2px;
  }
}
.top-cms-area .child {
  width: 48%;
  padding: 0 20px;
}
.top-cms-area .child h3 {
  margin-bottom: 30px;
  text-align: center;
}
.top-cms-area .child h3 .eng {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 4rem;
  display: block;
  color: #ccc4b3;
}
.top-cms-area .child h3 .ja {
  font-size: 1.5rem;
}
@media all and (max-width: 896px) {
  .top-cms-area .child h3 .ja .eng {
    font-size: 2.5rem;
  }
}
@media all and (max-width: 639px) {
  .top-cms-area .child {
    width: 100%;
    padding: 0;
    padding: 50px 10px;
  }
}

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

#main .blog-wrap > li {
  width: 32%;
}
@media all and (max-width: 1100px) {
  #main .blog-wrap > li {
    width: 49%;
    margin: 0 0.5% 20px 0.5%;
  }
}
@media all and (max-width: 639px) {
  #main .blog-wrap > li {
    width: 90%;
    margin: 0 auto 10px;
  }
}

.blog-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.blog-wrap * {
  transition: 0.3s;
}
.blog-wrap > li {
  width: 24%;
  margin: 0 0.5% 20px 0.5%;
  padding: 15px;
  background: #fefefe;
  position: relative;
  border: 1px solid #ddd;
}
@media all and (max-width: 1100px) {
  .blog-wrap > li {
    width: 49%;
  }
}
.blog-wrap > li > a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
}
.blog-wrap > li > a:hover ~ .blog-img img {
  opacity: 1;
  transform: scale(1.2);
}
@media all and (max-width: 639px) {
  .blog-wrap > li {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    margin: 0 auto 10px;
    border: none;
    border-bottom: 1px solid #ddd;
  }
  .blog-wrap > li:last-child {
    border-bottom: none;
  }
}

.blog-wrap2 {
  display: flex;
  flex-wrap: wrap;
}
.blog-wrap2 * {
  transition: 0.3s;
}
.blog-wrap2 > li {
  width: 100%;
  margin: 0 0.5%;
  background: transparent;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  box-shadow: 0 0 5px #ddd;
  border: 1px solid rgba(221, 221, 221, 0.5);
  border-radius: 10px;
  align-items: center;
}
.blog-wrap2 > li:hover {
  box-shadow: 15px 15px 10px #ddd;
}
.blog-wrap2 > li > a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.blog-wrap2 > li > a:hover ~ .blog-img img {
  opacity: 1;
  transform: scale(1.2);
}
@media all and (max-width: 639px) {
  .blog-wrap2 > li {
    width: 100%;
    margin: 0 auto;
  }
}
.blog-wrap2 .blog-detail {
  width: 55%;
  margin-top: -5px;
  padding: 15px;
}
@media all and (max-width: 639px) {
  .blog-wrap2 .blog-detail {
    width: 60%;
    padding: 15px 10px;
  }
}
.blog-wrap2 .blog-date {
  border: none;
  width: 100px;
  padding: 5px;
  line-height: 1.3;
  text-align: center;
  color: #fefefe;
  background: #afe1aa;
  font-size: 10px;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-weight: 600;
  border-radius: 5px;
}
.blog-wrap2 .blog-title {
  font-weight: 600;
  line-height: 1.3;
  margin: 10px 0;
  font-size: 2rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  color: #443a37;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
}
@media all and (max-width: 896px) {
  .blog-wrap2 .blog-title {
    font-size: 1.6rem;
  }
}
.blog-wrap2 .blog-txt {
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  padding: 0;
}
@media all and (max-width: 896px) {
  .blog-wrap2 .blog-txt {
    font-size: 12px;
  }
}
.blog-wrap2 .blog-img {
  width: 45%;
  height: 250px;
  overflow: hidden;
  box-sizing: border-box;
  border-radius: 10px 0 0 10px;
}
.blog-wrap2 .blog-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.4s ease;
  font-family: "object-fit: cover;";
  /*IE対策*/
}
.blog-wrap2 .blog-img:hover img {
  opacity: 1 !important;
  transform: scale(1.2);
}
@media all and (max-width: 896px) {
  .blog-wrap2 .blog-img {
    height: 180px;
  }
}
@media all and (max-width: 639px) {
  .blog-wrap2 .blog-img {
    width: 40%;
  }
}

.blog-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  box-sizing: border-box;
}
.blog-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.4s ease;
  font-family: "object-fit: cover;";
  /*IE対策*/
}
.blog-img:hover img {
  opacity: 1 !important;
  transform: scale(1.2);
}
@media all and (max-width: 639px) {
  .blog-img {
    width: 30%;
    height: 130px;
  }
}

.blog-detail {
  margin-top: 10px;
}
@media all and (max-width: 639px) {
  .blog-detail {
    margin-top: 0;
    width: 65%;
  }
}

.blog-detail-upper {
  position: relative;
  z-index: 2;
  margin: -31px 0 0;
  color: #fff;
  font-size: 12px;
}

.blog-category {
  display: inline-block;
  display: none;
  padding: 5px;
  line-height: 1.3;
  text-align: center;
  background: #111;
}

.blog-page-detail {
  margin-bottom: 15px;
}

.blog-date {
  border: 1px solid #ccc;
  width: 100px;
  padding: 5px 0;
  line-height: 1.3;
  text-align: center;
  display: inline-block;
  color: #aaa;
  font-size: 12px;
}

.blog-date2 {
  color: #7acd71;
  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.5;
  margin: 6px 0;
}
@media all and (max-width: 639px) {
  .blog-title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin-bottom: 8px;
  }
}

.blog-txt {
  line-height: 1.5;
  padding: 8px;
}
@media all and (max-width: 639px) {
  .blog-txt {
    font-size: 12px;
    padding: 8px 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    padding: 0;
  }
}

.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: #443a37;
  font-weight: 600;
  padding: 4px 5px;
  background: #fff;
  font-size: 12px;
}

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

/* blog_topics
----------------------------------*/
/* news_top */
.news_top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.news_top div .mtitle_news {
  margin-bottom: 0;
}
.news_top div .jp {
  font-size: 18px;
}

.blog_topics {
  width: 100%;
}
.blog_topics li:first-child a {
  border-top: 1px solid #ddd;
}
.blog_topics li a {
  display: block;
  color: #443a37;
  padding: 15px;
  transition: all 0.3s ease;
  border-bottom: 1px solid #ddd;
}
.blog_topics li a:hover {
  background: #F6F6F6;
}
.blog_topics li a .topics_detail {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  align-items: center;
}
.blog_topics li a .topics_detail .imgbox {
  overflow: hidden;
  width: 20%;
  height: 100px;
}
.blog_topics li a .topics_detail .imgbox img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.2s ease-in all;
}
.blog_topics li a .topics_detail .textbox {
  width: 79%;
  padding-left: 10px;
}
.blog_topics li a .time_date {
  width: 120px;
  font-size: 13px;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
}
@media all and (max-width: 639px) {
  .blog_topics li a {
    padding: 8px;
  }
  .blog_topics li a .topics_detail .imgbox {
    width: 20%;
    height: 60px;
  }
  .blog_topics li a .topics_detail .textbox {
    width: 80%;
    font-size: 90%;
    line-height: 1.5;
  }
  .blog_topics li a .time_date {
    width: 120px;
    font-size: 10px;
  }
}

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

.w300 {
  width: 300px;
}

.spbr {
  display: none;
}

.color1 {
  color: #afe1aa;
}

.color2 {
  color: #EB9575;
}

.color3 {
  color: #489F7B;
}

.relative {
  position: relative;
}

.num {
  font-weight: 600;
}
.num a {
  color: #afe1aa;
  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: #EB9575;
}

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

.telbnr {
  max-width: 500px;
  margin: 30px auto 30px;
}
.telbnr li {
  border: 3px solid #ccc;
  padding: 10px 10px;
  text-align: center;
  border-radius: 50px;
}
.telbnr li a {
  display: block;
  font-size: 2.4rem;
  font-weight: 600;
  color: #afe1aa;
}
.telbnr li a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  margin-right: 5px;
}
.telbnr li a:hover {
  color: #afe1aa;
}
@media all and (max-width: 639px) {
  .telbnr {
    max-width: 90%;
  }
  .telbnr li {
    width: 100%;
    margin: 0 auto 30px;
  }
  .telbnr li:last-of-type {
    margin-left: auto;
  }
  .telbnr li a {
    font-size: 2rem;
  }
}

.telbnr-ttl {
  font-weight: 600;
  font-size: 1.6rem;
  color: #333;
  margin-top: -30px;
}
.telbnr-ttl span {
  background: #c4c4c4;
  padding: 0 20px;
}
@media all and (max-width: 639px) {
  .telbnr-ttl {
    font-size: 1.3rem;
  }
}

/* breadcrumb
----------------------------------*/
.breadcrumb {
  max-width: 1200px;
  margin: 20px auto 20px;
  font-size: 1.2rem;
}
.breadcrumb li {
  display: inline;
  color: #999;
}
.breadcrumb li a {
  color: #afe1aa;
}
.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: #afe1aa;
  padding: 5px 8px;
  margin-right: 5px;
  font-size: 11px;
  border-radius: 20px;
  position: relative;
  top: -2px;
}
.form dl dt span.nini {
  background: rgb(167, 167, 167);
}
.form dl dd {
  padding-left: 280px;
  padding-bottom: 20px;
  padding-top: 23px;
  line-height: 1.5;
  border-bottom: 1px dotted #cccccc;
  font-family: "YakuHanJP", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.6rem;
}
.form dl dd:last-child {
  border-bottom: none;
}
.form dl dd input {
  margin-top: -0.5rem;
}
@media all and (max-width: 639px) {
  .form dl dd {
    font-size: 1.3rem;
  }
}
.form .textarea,
.form textarea {
  border: 0;
  padding: 15px;
  width: 100%;
  border-radius: 0;
  background: #f0f0f0;
  font-family: "YakuHanJP", "Zen Kaku Gothic New", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.form .textarea02 {
  width: 48.5%;
  margin-right: 3%;
}
.form .textarea02:last-child {
  margin-right: 0;
}
.form .textarea03 {
  width: 20%;
  margin-right: 1%;
  padding: 10px;
}
.form button {
  cursor: pointer;
  display: block;
  color: #fff;
  text-align: center;
  transition: all 0.2s ease-in-out 0s;
  border: 1px solid #afe1aa;
  font-weight: 600;
  padding: 12px 5px;
  margin: 0 auto;
  width: 250px;
  background: #afe1aa;
  border-radius: 25px;
}
.form button:hover {
  background: #fff;
  color: #afe1aa;
}
.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: #ffffff;
  border: 1px solid #dddddd;
  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: 11px 35px 11px 11px;
  padding: 0.6875rem 2.1875rem 0.6875rem 0.6875rem;
  background: transparent;
  border: 0;
  outline: none;
  line-height: 1.5;
}
.form .entypo-down-open-mini:before {
  font-family: "FontAwesome";
  content: "\f0ab";
  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: #afe1aa;
}
.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: #afe1aa;
  z-index: 1;
}
.form label.radio_text input[type=radio] {
  position: absolute;
  z-index: 2;
  width: 20px;
  height: 20px;
  left: -23px;
  top: 0px;
  margin: 0px;
  box-shadow: 20px -1px #fff;
}
.form label.radio_text input[type=radio]:checked {
  box-shadow: none;
}
.form label.radio_text input[type=radio]:focus {
  opacity: 0.2;
  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 #afe1aa;
  border-bottom: 3px solid #afe1aa;
  transform: rotate(45deg);
  z-index: 1;
}
.form label.checkbox_text input[type=checkbox] {
  position: absolute;
  left: -40px;
  width: 20px;
  height: 20px;
  display: block;
  box-shadow: 41px 0px #fff;
  z-index: 2;
  margin: 0px;
  padding: 0px;
}
.form label.checkbox_text input[type=checkbox]:checked {
  box-shadow: none;
}
.form label.checkbox_text input[type=checkbox]:checked:focus {
  box-shadow: 40px 0px #666;
  opacity: 0.1;
}
.form label.checkbox_text input[type=checkbox]:focus {
  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 {
    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 #EB9575;
  background: #fefefe;
  max-width: 700px;
  margin: 0 auto;
  border-radius: 20px;
}
@media all and (max-width: 639px) {
  .thanks {
    max-width: 90%;
    padding: 30px 20px;
  }
}

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

.policy {
  padding: 30px;
  background: rgba(255, 255, 255, 0.8);
}

.mtitle_small {
  position: relative;
  font-size: 1.7rem;
  margin-bottom: 15px;
  color: #489F7B;
  font-weight: 600;
  padding: 0 0 5px 0;
  border-bottom: 1px solid #ccc;
}
.mtitle_small:before {
  content: "";
  width: 50px;
  height: 1px;
  background-color: #afe1aa;
  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;
  font-weight: 600;
}
.mtitle_small2:before {
  content: "";
  background-color: #afe1aa;
  width: 10px;
  height: 4px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.mtitle_small3 {
  position: relative;
  background-color: #fff;
  border: 1px solid #ddd;
  font-size: 1.3em;
  padding: 15px 30px;
  color: #485543;
  margin-bottom: 32px;
}
.mtitle_small3:before {
  position: absolute;
  top: 15%;
  left: 8px;
  width: 6px;
  height: 70%;
  content: "";
  background: #489F7B;
}

.title-big {
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
}
.title-big .eng {
  position: relative;
  font-size: 6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #fefefe;
  text-shadow: 1px 1px 0px #afe1aa, -1px 1px 0px #afe1aa, 1px -1px 0px #afe1aa, -1px -1px 0px #afe1aa, 1px 0px 0px #afe1aa, 0px 1px 0px #afe1aa, -1px 0px 0px #afe1aa, 0px -1px 0px #afe1aa;
  line-height: 1;
}
.title-big .eng:before {
  position: absolute;
  top: 3%;
  left: -3%;
  width: 4rem;
  height: 4rem;
  content: "";
  background: #afe1aa;
  border-radius: 100%;
  z-index: -1;
}
.title-big.type1 .eng {
  color: #fefefe;
  text-shadow: 1px 1px 0px #EB9575, -1px 1px 0px #EB9575, 1px -1px 0px #EB9575, -1px -1px 0px #EB9575, 1px 0px 0px #EB9575, 0px 1px 0px #EB9575, -1px 0px 0px #EB9575, 0px -1px 0px #EB9575;
  line-height: 1;
}
.title-big.type1 .eng:before {
  background: #EB9575;
}
.title-big .ja {
  margin-left: 15px;
  letter-spacing: 0.15em;
  font-size: 1.8rem;
  color: #333;
}
@media all and (max-width: 1100px) {
  .title-big {
    margin-bottom: 35px;
  }
  .title-big .eng {
    font-size: 4rem;
  }
  .title-big .eng:before {
    width: 3rem;
    height: 3rem;
  }
  .title-big .ja {
    display: block;
    margin-left: 0;
    padding-top: 5px;
  }
}
@media all and (max-width: 896px) {
  .title-big {
    margin-bottom: 30px;
    text-align: center;
  }
  .title-big .ja {
    font-size: 1.6rem;
  }
}
@media all and (max-width: 639px) {
  .title-big {
    margin-bottom: 25px;
  }
}

.title02 {
  margin-bottom: 10px;
}
.title02 span {
  padding: 5px 10px;
  border: 1px solid #489F7B;
  color: #489F7B;
}
.title02.type1 span {
  background-color: #afe1aa;
  color: #fff;
}

/*photoギャラリー
----------------------------*/
.gallery {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.gallery li {
  width: 18.5%;
  margin: 0 1.3333333333% 25px 0;
}
.gallery li:nth-child(5n) {
  margin-right: 0;
}
.gallery li a {
  background: rgba(196, 196, 196, 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 {
  font-size: 14px;
  line-height: 1.2;
  margin-top: 5px;
  letter-spacing: 0;
}
@media all and (max-width: 639px) {
  .gallery li {
    width: 31%;
    margin: 0 1% 20px;
  }
  .gallery li:nth-child(5n) {
    margin: 0 1% 20px;
  }
  .gallery li:nth-child(3n) {
    margin-right: 0;
  }
  .gallery li a {
    height: 100px;
  }
  .gallery li p {
    font-size: 12px;
  }
}
.gallery.col3 li {
  width: 31%;
  margin: 0 1% 60px;
}
.gallery.col3 li:nth-child(3n) {
  margin-right: 0;
}
.gallery.col3 li a {
  height: 240px;
  background: #fefefe;
}
.gallery.col3 li a img {
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
.gallery.col3 li p {
  font-size: 14px;
  line-height: 1.2;
}
@media all and (max-width: 639px) {
  .gallery.col3 li {
    width: 98%;
    margin: 0 auto 30px;
  }
  .gallery.col3 li a {
    height: 160px;
  }
}
.gallery.col4 li {
  width: 23%;
  margin: 0 1% 20px;
}
.gallery.col4 li:nth-child(4n) {
  margin-right: 0;
}
.gallery.col4 li a {
  height: 250px;
  background: #fefefe;
}
.gallery.col4 li a img {
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
.gallery.col4 li p {
  text-align: left;
}
@media all and (max-width: 896px) {
  .gallery.col4 li a {
    height: 150px;
  }
}
@media all and (max-width: 639px) {
  .gallery.col4 li {
    width: 48%;
    margin: 0 1% 10px;
  }
  .gallery.col4 li:nth-child(4n) {
    margin: 0 1% 10px;
  }
  .gallery.col4 li:nth-child(2n) {
    margin-right: 0;
  }
  .gallery.col4 li a {
    height: 150px;
  }
}

.list2 {
  display: flex;
  flex-wrap: wrap;
  max-width: 1500px;
  margin-top: -50px;
  margin-left: auto;
  margin-right: auto;
}
@media all and (max-width: 639px) {
  .list2 {
    margin-top: -25px;
  }
}
.list2.type1 > li,
.list2.type1 .child {
  background: #fefefe;
  padding: 15px;
  border-radius: 8px;
  border: 2px dashed #aaa;
}
.list2.type2 > li,
.list2.type2 .child {
  width: 48%;
  margin-top: 50px;
}
.list2.type2 > li:nth-child(2n),
.list2.type2 .child:nth-child(2n) {
  margin-left: 4%;
}
.list2.ai-c {
  align-items: center;
}
.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;
  }
}
.list2 > li figure,
.list2 .child figure {
  height: 350px;
  overflow: hidden;
}
.list2 > li figure img,
.list2 .child figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media all and (max-width: 639px) {
  .list2 > li figure,
  .list2 .child figure {
    height: 210px;
  }
}
@media all and (max-width: 639px) {
  .list2 > li.list2-img,
  .list2 .child.list2-img {
    order: -1;
  }
}
@media all and (max-width: 639px) {
  .list2 > li,
  .list2 .child {
    width: 100%;
    margin: 25px auto 0;
  }
}
.list2 .child1 {
  width: 40%;
  margin-top: 50px;
  margin-right: 4%;
}
.list2 .child1 figure {
  border-radius: 0 80px;
  overflow: hidden;
}
.list2 .child2 {
  width: 55%;
  margin-top: 50px;
}
@media all and (max-width: 639px) {
  .list2 .child1, .list2 .child2 {
    width: 100%;
    margin-top: 20px;
  }
  .list2 .child1 {
    border-radius: 20px;
    margin-right: auto;
  }
  .list2 .child1 figure {
    border-radius: 8px;
  }
}

.list3 {
  display: flex;
  flex-wrap: wrap;
}
.list3.jc-c {
  justify-content: center;
}
.list3.ai-c {
  align-items: center;
}
.list3.type1 .child {
  background-color: #fff;
  padding: 15px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 25px 24px;
  border-radius: 15px;
}
.list3 > li, .list3 .child {
  width: 31%;
  position: relative;
  margin: 0 3.495% 20px 0;
}
.list3 > li:nth-child(3n), .list3 .child:nth-child(3n) {
  margin-right: 0;
}
@media all and (max-width: 896px) {
  .list3 > li, .list3 .child {
    width: 48%;
  }
  .list3 > li:nth-child(2n), .list3 .child:nth-child(2n) {
    margin-right: 0;
  }
  .list3 > li:nth-child(3n), .list3 .child:nth-child(3n) {
    margin-right: 3.495%;
  }
}
@media all and (max-width: 639px) {
  .list3 > li, .list3 .child {
    width: 95%;
    margin: 0 auto 20px;
  }
  .list3 > li:nth-child(3n), .list3 .child:nth-child(3n) {
    margin-right: auto;
  }
  .list3 > li:nth-child(2n), .list3 .child:nth-child(2n) {
    margin-right: auto;
  }
}

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

/*vision-list
---------------------------------*/
.vision-box {
  position: relative;
}
.vision-box .vision-ttl {
  display: block;
  width: auto;
  height: 100px;
  margin: auto;
  position: absolute;
  z-index: 1;
  top: 20px;
  left: 0;
  right: 0;
  opacity: 0.8;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: -1;
}
@media all and (max-width: 639px) {
  .vision-box .vision-ttl {
    height: 60px;
  }
}

.vision-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 160px;
  justify-content: center;
}
.vision-list .vision-item {
  height: 242px;
  width: 242px;
  margin-right: 2%;
  padding: 70px 20px 30px;
  box-sizing: border-box;
  background: #ffeebd;
  border-radius: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vision-list .vision-item:last-child {
  margin-right: 0;
}
.vision-list .vision-item img {
  display: block;
  width: 196px;
  margin: auto;
  position: absolute;
  top: -80px;
  left: 0;
  right: 0;
  animation: rotate_anime 1.5s cubic-bezier(0.87, 0.01, 0, 0.99) infinite;
}
.vision-list .vision-item .vision-item_read {
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: #443a37;
}
@media all and (max-width: 639px) {
  .vision-list {
    margin-top: 90px;
  }
  .vision-list .vision-item {
    width: 220px;
    height: 220px;
    margin: 0 auto 40px;
  }
  .vision-list .vision-item img {
    width: 140px;
    top: -40px;
  }
  .vision-list .vision-item:last-child {
    margin-right: auto;
  }
  .vision-list .vision-item .vision-item_read {
    font-size: 1.6rem;
  }
}

/*-------------------------------*/
.prv dt {
  color: #afe1aa;
  border-bottom: 1px solid #ccc;
  margin: 10px 0;
}

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

.flow-dl .flow-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px;
}
.flow-dl .flow-inner:not(:last-of-type) {
  margin-bottom: 10px;
  border-bottom: solid 1px #489F7B;
}
.flow-dl .flow-inner dt {
  width: 10%;
  text-align: center;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 3rem;
  color: #489F7B;
  line-height: 1.3;
}
.flow-dl .flow-inner dt .eng {
  font-size: 1.1rem;
  color: #489F7B;
  display: block;
}
.flow-dl .flow-inner dt .eng::after {
  content: ".";
}
.flow-dl .flow-inner dd {
  width: 87%;
  border-left: 1px solid #489F7B;
  padding-left: 20px;
}
@media all and (max-width: 639px) {
  .flow-dl .flow-inner {
    padding: 6px;
  }
  .flow-dl .flow-inner dt {
    width: 20%;
    font-size: 1.7rem;
  }
  .flow-dl .flow-inner dt .eng {
    font-size: 1.25rem;
  }
  .flow-dl .flow-inner dd {
    width: 77%;
  }
}

.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: #afe1aa;
}
.blog-month ul li:nth-child(2n) {
  margin-left: 2%;
}
.blog-month ul li a {
  color: #fff;
  font-size: 12px;
}
.blog-month ul li:hover {
  background: #c4c4c4;
  transition: all 0.4s ease;
}

.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;
}
.faq-dl .faq-inner:not(:last-of-type) {
  border-bottom: 2px dashed #e7e7e7;
}
.faq-dl .faq-inner::before {
  content: "";
  position: absolute;
  top: calc(1.8rem + 20px);
  left: 0;
  width: 0;
  height: 10px;
  background-image: linear-gradient(to right, #afe1aa, #489F7B);
  opacity: 0.5;
}
.faq-dl .faq-inner dt,
.faq-dl .faq-inner dd {
  position: relative;
  font-size: 1em;
}
@media all and (max-width: 639px) {
  .faq-dl .faq-inner dt,
  .faq-dl .faq-inner dd {
    font-size: 1.3rem;
  }
}
.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.5rem;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
}
.faq-dl .faq-inner dt {
  font-weight: 600;
  padding: 10px 10px;
  padding-left: 55px;
  margin: 5px auto;
  cursor: pointer;
}
@media all and (max-width: 639px) {
  .faq-dl .faq-inner dt {
    padding-left: 45px;
  }
}
.faq-dl .faq-inner dt:before {
  content: "Q.";
  color: #443a37;
  font-size: 3rem;
}
@media all and (max-width: 639px) {
  .faq-dl .faq-inner dt:before {
    font-size: 2rem;
  }
}
.faq-dl .faq-inner dd {
  margin-top: 10px;
  padding: 10px 10px 40px;
  padding-left: 55px;
  font-size: 0.9em;
}
.faq-dl .faq-inner dd:before {
  content: "A.";
  color: #afe1aa;
  font-size: 3rem;
}
@media all and (max-width: 639px) {
  .faq-dl .faq-inner dd:before {
    font-size: 2rem;
  }
}

.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.vertical {
  display: block;
}
.sns-list.vertical li {
  margin-bottom: 20px;
  display: flex;
}
.sns-list.vertical li a {
  margin-right: 10px;
  max-width: 100%;
  min-width: 250px;
  height: auto;
  line-height: auto;
  border-radius: 0;
  padding: 5px 20px;
}
.sns-list.vertical li a i {
  margin-right: 4px;
}
.sns-list.center {
  justify-content: center;
  margin: 15px 0;
}
.sns-list.big li a {
  width: 50px;
  height: 50px;
  font-size: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sns-list li a {
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 17px;
  color: #fefefe;
  display: block;
  background: #afe1aa;
  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-line {
  background: #00b900;
}
.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;
  }
}

/* slide_list
----------------------------------*/
.top-gallery {
  position: relative;
}

.flashimg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: block;
  z-index: 1000;
  max-width: 400px;
  padding: 40px;
  background-color: rgba(245, 245, 245, 0.5);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  z-index: 0;
}

.slide_list, .slide_list2 {
  position: relative;
  display: none;
}
.slide_list li, .slide_list2 li {
  margin-right: 1%;
  width: 350px;
}
.slide_list li img, .slide_list2 li img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
.slide_list li table,
.slide_list li p, .slide_list2 li table,
.slide_list2 li p {
  display: none;
}
@media all and (max-width: 639px) {
  .slide_list li img, .slide_list2 li img {
    height: 180px;
  }
}

.bnr-img img:hover {
  opacity: 0.5;
  transform: scale(0.98);
  transition: all 0.3s ease;
}

/* accordion
----------------------------------*/
.accordion dt,
.accordion dd {
  position: relative;
  padding: 1em;
  z-index: 20;
}
.accordion dt {
  background: #fff;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: 600;
  border-top: 1px dotted #111;
  border-bottom: 1px dotted #111;
  color: #111;
}
.accordion dt:after {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f067";
  font-weight: 900;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.7rem;
}
.accordion dt:hover {
  background: rgba(175, 225, 170, 0.2);
}
.accordion dt.on:after {
  font-family: "Font Awesome 5 Free";
  content: "\f068";
  font-weight: 900;
}
.accordion dd {
  display: none;
  padding: 20px;
  background: #fff;
  color: #333;
  border-bottom: 1px dotted #111;
}

.h-img {
  width: 250px;
  height: 300px;
  overflow: hidden;
}
.h-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
@media all and (max-width: 896px) {
  .h-img {
    width: 100%;
    height: 300px;
  }
}
.h-img.h-500 {
  height: 500px;
}
@media all and (max-width: 639px) {
  .h-img.h-500 {
    width: 100%;
    height: 200px;
  }
}
.h-img.h-600 {
  height: 600px;
  width: 100%;
}
@media all and (max-width: 1100px) {
  .h-img.h-600 {
    height: 400px;
  }
}
@media all and (max-width: 896px) {
  .h-img.h-600 {
    height: 330px;
  }
}
@media all and (max-width: 639px) {
  .h-img.h-600 {
    height: 200px;
  }
}
.h-img.rd {
  border-radius: 20px;
}
.h-img.long {
  height: 400px;
}
@media all and (max-width: 896px) {
  .h-img.long {
    width: 100%;
    height: 200px;
  }
}

.btn_wk2 a {
  text-align: center;
  position: relative;
  color: #fff;
  background: transparent;
  border: 1px solid #fff;
  padding: 10px;
  max-width: 200px;
  width: 80%;
  font-size: 90%;
  margin-top: 30px;
  margin-bottom: 6px;
  margin-left: auto;
  margin-right: auto;
  display: table;
  transition: all 0.3s ease-in-out;
  line-height: 1.4;
}
.btn_wk2 a span {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  letter-spacing: 0.4em;
}
.btn_wk2 a:before, .btn_wk2 a:after {
  content: "";
  position: absolute;
  border: solid #fff;
  width: 10px;
  height: 10px;
  transition: all 0.3s ease-in-out;
}
.btn_wk2 a:before {
  top: -6px;
  left: -6px;
  border-width: 1px 0 0 1px;
}
.btn_wk2 a:after {
  bottom: -6px;
  right: -6px;
  border-width: 0 1px 1px 0;
}
.btn_wk2 a:hover {
  color: #afe1aa;
  background: #fff;
  border-color: transparent;
}
.btn_wk2 a:hover:before, .btn_wk2 a:hover:after {
  width: calc(100% + 11px);
  height: calc(100% + 11px);
  border-color: #fff;
}
.btn_wk2.btn-r a {
  margin-right: 5px;
}
.btn_wk2.base a {
  color: #afe1aa;
  border: 1px solid #afe1aa;
}
.btn_wk2.base a:before, .btn_wk2.base a:after {
  border: solid #afe1aa;
}
.btn_wk2.base a:before {
  top: -6px;
  left: -6px;
  border-width: 1px 0 0 1px;
}
.btn_wk2.base a:after {
  bottom: -6px;
  right: -6px;
  border-width: 0 1px 1px 0;
}
.btn_wk2.base a:hover {
  color: #fff;
  background: #afe1aa;
  border-color: transparent;
}
.btn_wk2.base a:hover:before, .btn_wk2.base a:hover:after {
  border-color: #afe1aa;
}
.btn_wk2.right a {
  margin-right: 0;
}
.btn_wk2.left a {
  margin-left: 0;
}

.s-product {
  position: relative;
  margin: 40px auto 0;
}
@media all and (max-width: 639px) {
  .s-product {
    padding-bottom: 6rem;
  }
}
.s-product > .swiper-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media all and (max-width: 639px) {
  .s-product > .swiper-wrapper {
    flex-wrap: nowrap;
    justify-content: initial;
  }
}
.s-product > .swiper-wrapper > .swiper-slide {
  width: 31.3333333333%;
  margin: 0 2% 40px 0;
  padding: 20px 2%;
  background: transparent;
  position: relative;
}
.s-product > .swiper-wrapper > .swiper-slide:nth-child(3n) {
  margin-right: 0;
}
@media all and (max-width: 639px) {
  .s-product > .swiper-wrapper > .swiper-slide {
    width: 100%;
    margin: 0 auto;
    padding: 0 10px;
  }
  .s-product > .swiper-wrapper > .swiper-slide:nth-child(3n), .s-product > .swiper-wrapper > .swiper-slide:nth-child(2n) {
    margin-right: auto;
  }
}
.s-product > .swiper-wrapper > .swiper-slide .img-area {
  position: relative;
  width: 100%;
  height: 180px;
  margin: 0 auto 20px;
  overflow: hidden;
}
.s-product > .swiper-wrapper > .swiper-slide .img-area img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
@media all and (max-width: 639px) {
  .s-product > .swiper-wrapper > .swiper-slide .img-area {
    height: 200px;
  }
}
.s-product > .swiper-wrapper > .swiper-slide .cate {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
.s-product > .swiper-wrapper > .swiper-slide .cate .nmb {
  width: 20%;
  display: block;
  color: #afe1aa;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-weight: 200;
  font-size: 5rem;
  text-align: center;
  margin-bottom: 15px;
}
.s-product > .swiper-wrapper > .swiper-slide .cate .nmb span {
  font-size: 1.3rem;
  display: block;
  margin-bottom: -1rem;
}
@media all and (max-width: 896px) {
  .s-product > .swiper-wrapper > .swiper-slide .cate .nmb {
    font-size: 3rem;
  }
  .s-product > .swiper-wrapper > .swiper-slide .cate .nmb span {
    font-size: 1rem;
  }
}
@media all and (max-width: 639px) {
  .s-product > .swiper-wrapper > .swiper-slide .cate .nmb {
    font-size: 4rem;
  }
  .s-product > .swiper-wrapper > .swiper-slide .cate .nmb span {
    font-size: 1.2rem;
  }
}
.s-product > .swiper-wrapper > .swiper-slide .cate .ttl {
  width: 75%;
  font-size: 2rem;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
  color: #afe1aa;
}
@media all and (max-width: 1100px) {
  .s-product > .swiper-wrapper > .swiper-slide .cate .ttl {
    letter-spacing: 0;
    font-size: 1.8rem;
  }
}
@media all and (max-width: 896px) {
  .s-product > .swiper-wrapper > .swiper-slide .cate .ttl {
    font-size: 1.3rem;
  }
}
@media all and (max-width: 639px) {
  .s-product > .swiper-wrapper > .swiper-slide .cate .ttl {
    font-size: 1.5rem;
  }
}
.s-product > .swiper-wrapper > .swiper-slide .txt {
  color: #333;
}
.s-product > .swiper-wrapper > .swiper-slide .btn {
  font-size: 1.2rem;
  margin-top: 10px;
  position: relative;
  text-align: right;
}
.s-product > .swiper-wrapper > .swiper-slide .btn::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  background: #489F7B;
  opacity: 0.5;
  z-index: -2;
  border-radius: 30px;
}
.s-product > .swiper-wrapper > .swiper-slide:hover {
  transition: all 0.3s ease;
}
.s-product > .swiper-wrapper > .swiper-slide:hover .img-area img {
  transition: all 0.3s ease;
}
.s-product > .swiper-wrapper > .swiper-slide:hover .btn::after {
  transition: all 0.3s ease;
  width: 30px;
  height: 30px;
}
.s-product .swiper-controller {
  display: none;
}
@media all and (max-width: 639px) {
  .s-product .swiper-controller {
    display: flex;
    gap: 2.6rem;
    align-items: center;
    justify-content: flex-end;
    margin-top: 3.2rem;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
.s-product .swiper-button-prev,
.s-product .swiper-button-next {
  position: relative;
  margin: 0;
  display: grid;
  place-content: center;
  width: 6.4rem;
  height: 6.4rem;
  cursor: pointer;
  transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
  background-image: none;
  border-radius: 50%;
  background: #afe1aa;
}
@media all and (max-width: 896px) {
  .s-product .swiper-button-prev,
  .s-product .swiper-button-next {
    width: 4rem;
    height: 4rem;
  }
}
.s-product .swiper-button-prev::before,
.s-product .swiper-button-next::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  border-radius: 50%;
}
.s-product .swiper-button-prev::after,
.s-product .swiper-button-next::after {
  width: 1.2rem;
  height: 1.2rem;
  content: "";
  border: solid #fefefe;
  border-width: 2px 2px 0 0;
}
.s-product .swiper-button-prev:hover::before,
.s-product .swiper-button-next:hover::before {
  transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
  transform: scale(1.2);
}
.s-product .swiper-button-prev::after {
  margin-left: 0.4rem;
  transform: rotate(-135deg);
}
.s-product .swiper-button-next::after {
  margin-right: 0.4rem;
  transform: rotate(45deg);
}
.s-product .swiper-button-disabled {
  pointer-events: none;
  opacity: 0;
}

.menu-list {
  width: 100%;
  margin: auto;
}
.menu-list > li {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 5px 0;
}
.menu-list > li:not(:last-child) {
  margin-bottom: 15px;
}
.menu-list > li p {
  display: inline-block;
  line-height: 1.5;
}
.menu-list > li:before {
  background: radial-gradient(#443a37 20%, transparent 0) center center/8px 8px;
  content: "";
  display: inline-block;
  flex: 1;
  height: 4px;
  margin: 0 1.2em;
}
@media all and (max-width: 639px) {
  .menu-list > li:not(:last-child) {
    margin-bottom: 15px;
  }
  .menu-list > li:before {
    margin: 0 5px;
  }
}
.menu-list > li .info {
  flex-basis: 100%;
  font-size: 95%;
  color: #b01010;
  margin-top: 5px;
  padding: 5px 10px;
}
.menu-list > li .info.capt {
  margin-top: 10px;
  background: #fefefe;
}
.menu-list > li .left {
  order: -1;
  max-width: 65%;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: #443a37;
  font-size: 1.5rem;
  position: relative;
}
.menu-list > li .left .small {
  display: block;
  font-size: 1.2rem;
}
.menu-list > li .left .small::before {
  content: "[";
  padding-right: 3px;
}
.menu-list > li .left .small::after {
  content: "]";
  padding-left: 3px;
}
.menu-list > li .left:after {
  content: ".";
  display: inline-block;
  width: 0;
  color: transparent;
  pointer-events: none;
}
@media all and (max-width: 639px) {
  .menu-list > li .left {
    max-width: 50%;
    font-size: 1.3rem;
  }
  .menu-list > li .left .small {
    font-size: 1rem;
  }
}
.menu-list > li .right {
  max-width: 35%;
  text-align: right;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
}

.tab_area {
  width: 98%;
  margin: 0 auto;
  flex-wrap: wrap;
  display: flex;
  justify-content: space-between;
}
.tab_area > .content_class {
  padding: 40px 0;
  border-top: 2px solid #afe1aa;
}
@media all and (max-width: 639px) {
  .tab_area > .content_class {
    padding: 25px 0;
  }
}

.tab_class {
  width: calc(50% - 20px);
  height: 50px;
  background-color: #fefefe;
  border: 2px solid #afe1aa;
  color: #afe1aa;
  font-weight: 600;
  border-bottom: none;
  line-height: 50px;
  margin: 0 10px;
  font-size: 15px;
  border-radius: 10px 10px 0 0;
  text-align: center;
  display: block;
  float: left;
  order: -1;
}

input[name=tab_name] {
  display: none;
}

input:checked + .tab_class {
  background-color: #afe1aa;
  color: #fefefe;
}

.content_class {
  display: none;
  width: 100%;
}

input:checked + .tab_class + .content_class {
  display: block;
}

.bnr-top-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.bnr-top-list.type1 li:first-child {
  width: 100%;
}
.bnr-top-list.type1 li:first-child .bnr-img-area {
  height: 310px;
}
.bnr-top-list li {
  width: 32%;
  margin-bottom: 20px;
  position: relative;
}
@media all and (max-width: 639px) {
  .bnr-top-list li {
    width: 100%;
    margin-bottom: 15px;
  }
  .bnr-top-list li:last-child {
    margin-bottom: 0;
  }
}
.bnr-top-list li .bnr-img-area {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  display: block;
  border-radius: 5px;
  background: #afe1aa;
}
.bnr-top-list li .bnr-img-area img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  opacity: 0.65;
  -o-object-position: center 20%;
     object-position: center 20%;
}
@media all and (max-width: 896px) {
  .bnr-top-list li .bnr-img-area {
    height: 180px;
  }
}
.bnr-top-list li:hover .bnr-img-area img {
  transition: ease 0.5s all;
  opacity: 0.15;
  filter: blur(5px);
  transform: scale(1.1);
}
.bnr-top-list li .text-area {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  display: block;
}
.bnr-top-list li .text-area h3 {
  font-weight: 400;
  margin-bottom: 40px;
  line-height: 1.2;
  color: #fefefe;
  display: block;
}
.bnr-top-list li .text-area h3 span {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 2.5rem;
  display: block;
  opacity: 0.8;
}
@media all and (max-width: 896px) {
  .bnr-top-list li .text-area h3 {
    margin-bottom: 20px;
  }
}
.bnr-top-list li .text-area .btn {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.11em;
  line-height: 15px;
  text-align: left;
  color: #fff;
  margin-top: 15px;
  margin-left: 3px;
  text-transform: uppercase;
  margin-bottom: 0;
  display: flex;
  align-items: center;
}
.bnr-top-list li .text-area .btn::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  margin-left: 5px;
}

.feaure-bnr {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
@media all and (max-width: 896px) {
  .feaure-bnr {
    max-width: 80%;
    margin-bottom: -40px;
  }
}
@media all and (max-width: 639px) {
  .feaure-bnr {
    max-width: 95%;
  }
}
.feaure-bnr > ul > li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 100%;
  padding: 0 10px 100px;
}
.feaure-bnr > ul > li:last-child {
  padding-bottom: 50px;
}
@media all and (max-width: 639px) {
  .feaure-bnr > ul > li {
    width: 100%;
    padding: 55px 10px;
  }
}
.feaure-bnr > ul > li .img-area {
  width: 60%;
  height: 400px;
  overflow: hidden;
  background: #c4c4c4;
  border-radius: 10px;
}
.feaure-bnr > ul > li .img-area img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
@media all and (max-width: 1100px) {
  .feaure-bnr > ul > li .img-area {
    width: 55%;
  }
}
@media all and (max-width: 896px) {
  .feaure-bnr > ul > li .img-area {
    width: 100%;
    height: 250px;
  }
}
.feaure-bnr > ul > li .text {
  width: 35%;
}
.feaure-bnr > ul > li .text h4 {
  font-size: 2rem;
  margin-bottom: 35px;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
  color: #afe1aa;
}
@media all and (max-width: 896px) {
  .feaure-bnr > ul > li .text h4 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
}
@media all and (max-width: 1100px) {
  .feaure-bnr > ul > li .text {
    width: 40%;
  }
}
@media all and (max-width: 896px) {
  .feaure-bnr > ul > li .text {
    width: 100%;
    margin-top: 40px;
    padding: 0 10px;
  }
}
.feaure-bnr > ul > li .btn a {
  position: relative;
  display: flex;
  justify-content: end;
  margin: 0 auto;
  margin-top: 65px;
  width: 114px;
}
@media all and (max-width: 896px) {
  .feaure-bnr > ul > li .btn a {
    margin-top: 50px;
    margin-bottom: 30px;
  }
}
.feaure-bnr > ul > li .btn a .link {
  display: flex;
  align-items: center;
  font-size: 2rem;
  line-height: 1;
  color: #afe1aa;
  padding-right: 60px;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
}
@media all and (max-width: 896px) {
  .feaure-bnr > ul > li .btn a .link {
    padding-right: 50px;
  }
}
.feaure-bnr > ul > li .btn a:before {
  position: absolute;
  content: "";
  width: 45px;
  height: 45px;
  border: 1px solid #afe1aa;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s ease-in-out;
}
@media all and (max-width: 896px) {
  .feaure-bnr > ul > li .btn a:before {
    width: 40px;
    height: 40px;
  }
}
.feaure-bnr > ul > li .btn a:after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  top: 50%;
  right: 25px;
  border-top: 1px solid #afe1aa;
  border-right: 1px solid #afe1aa;
  transform: rotate(45deg) translateY(-50%);
  transition: 0.3s ease-in-out;
}
@media all and (max-width: 896px) {
  .feaure-bnr > ul > li .btn a:after {
    right: 20px;
  }
}
.feaure-bnr > ul > li .btn a:hover {
  transition: all 0.3s ease;
}
.feaure-bnr > ul > li .btn a:hover:before {
  background: #afe1aa;
}
.feaure-bnr > ul > li .btn a:hover:after {
  border-color: #fefefe !important;
}
.feaure-bnr > ul > li:nth-child(2n) .img-area {
  order: 2;
}
@media all and (max-width: 896px) {
  .feaure-bnr > ul > li:nth-child(2n) .img-area {
    order: 1;
  }
}
.feaure-bnr > ul > li:nth-child(2n) .text {
  order: -1;
}
@media all and (max-width: 896px) {
  .feaure-bnr > ul > li:nth-child(2n) .text {
    order: 2;
  }
}

/* slide_list
----------------------------------*/
.slide_left,
.slide_right {
  position: relative;
  padding-bottom: 100px;
  display: none;
}
.slide_left li,
.slide_right li {
  position: relative;
  margin-right: 2%;
  width: 250px;
  height: 250px;
}
.slide_left li img,
.slide_right li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
.slide_left li::after,
.slide_right li::after {
  content: "";
  background-image: linear-gradient(to right top, #afe1aa, #EB9575, #489F7B);
  opacity: 0.2;
  z-index: -2;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: -5px;
  right: -5px;
}
.slide_left li p,
.slide_right li p {
  display: none;
}
@media all and (max-width: 896px) {
  .slide_left li,
  .slide_right li {
    width: 200px;
    height: 200px;
  }
}

.clipboard {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  border: 2px solid #f7f3e8;
  border-radius: 20px;
  background: #faf7f0;
  padding: 30px;
}
.clipboard::after {
  content: "";
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26086/clip.png) no-repeat center/contain;
  width: 220px;
  height: 80px;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
}
.clipboard .inner {
  background: #fefefe;
  padding: 40px;
}
@media all and (max-width: 639px) {
  .clipboard .inner {
    padding: 40px 5px;
  }
}

.ringbinder {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  border: 2px solid #f7f3e8;
  border-radius: 20px;
  background: #faf7f0;
  padding: 30px;
}
.ringbinder .inner {
  background: #fefefe;
  padding: 40px;
  position: relative;
}
.ringbinder .inner::after {
  content: "";
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26086/ring.png) repeat-y 50% 17px/contain;
  width: 22px;
  height: calc(100% - 17px);
  position: absolute;
  top: 50%;
  left: -5px;
  transform: translateY(-50%);
}
@media all and (max-width: 639px) {
  .ringbinder .inner {
    padding: 40px 5px;
  }
}

.top-cont02 {
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
}
.top-cont02 .inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.top-cont02 .inner .top-cont02-img {
  width: 48%;
}
.top-cont02 .inner .top-cont02-img .img01 {
  z-index: 0;
  width: 80%;
}
.top-cont02 .inner .top-cont02-img .img02 {
  width: 45%;
  z-index: 1;
  margin-top: -60px;
  margin-left: auto;
}
.top-cont02 .inner .top-cont02-txt {
  width: 48%;
}
.top-cont02 .inner .top-cont02-txt.type1 {
  padding: 20px 0;
}
@media all and (max-width: 896px) {
  .top-cont02 .inner .top-cont02-txt.type1 {
    padding: 0;
  }
}
.top-cont02 .inner .top-cont02-txt.type1:before {
  content: "";
  display: block;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  z-index: -3;
  max-width: 500px;
  width: 100%;
  height: 100%;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26086/catch2.png) no-repeat center/contain;
  z-index: -1;
}
.top-cont02 .inner .top-cont02-txt p + p {
  margin-top: 15px;
}
.top-cont02.type1 {
  width: 100%;
  max-width: 1500px;
}
.top-cont02.type1 .inner .top-cont02-img {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 42%;
}
.top-cont02.type1 .inner .top-cont02-img .img01,
.top-cont02.type1 .inner .top-cont02-img .img02 {
  width: 49%;
}
.top-cont02.type1 .inner .top-cont02-img .img01 img,
.top-cont02.type1 .inner .top-cont02-img .img02 img {
  border-radius: 50px 5px 20px 10px;
}
@media all and (max-width: 896px) {
  .top-cont02.type1 .inner .top-cont02-img .img01 img,
  .top-cont02.type1 .inner .top-cont02-img .img02 img {
    border-radius: 25px 2px 15px 8px;
  }
}
.top-cont02.type1 .inner .top-cont02-img .img02 {
  margin-top: 40px;
}
.top-cont02.type1 .inner .top-cont02-img .img02 img {
  border-radius: 5px 10px 50px 20px;
}
@media all and (max-width: 896px) {
  .top-cont02.type1 .inner .top-cont02-img .img02 img {
    border-radius: 2px 8px 25px 10px;
  }
}
.top-cont02.type1 .inner .top-cont02-txt {
  width: 56%;
  padding: 0 20px;
}
@media all and (max-width: 896px) {
  .top-cont02 .inner {
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
  }
  .top-cont02 .inner .top-cont02-img {
    width: 100%;
    margin-bottom: 40px;
    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;
  }
  .top-cont02 .inner .top-cont02-txt p + p {
    margin-top: 10px;
  }
  .top-cont02.type1 {
    width: 100%;
  }
  .top-cont02.type1 .inner .top-cont02-img {
    width: 100%;
  }
  .top-cont02.type1 .inner .top-cont02-txt {
    width: 100%;
    padding: 0 5px;
  }
}
@media all and (max-width: 639px) {
  .top-cont02 .inner {
    max-width: 100%;
  }
  .top-cont02 .inner .top-cont02-img .img02 {
    margin-top: -40px;
    max-width: 300px;
  }
  .top-cont02.type1 .inner .top-cont02-img .img02 {
    margin-top: 20px;
  }
}

/*top-greet
-------------------------------------*/
.greet-img {
  text-align: center;
  margin: 0 auto 20px;
  max-width: 645px;
}

.top-greet {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.top-greet::before {
  content: "";
  width: 800px;
  height: 800px;
  background: #afe1aa;
  position: absolute;
  z-index: -1;
  opacity: 0.2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}
.top-greet::after {
  content: "Let's challenge!";
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  color: #489F7B;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2em;
}
@media all and (max-width: 639px) {
  .top-greet:before {
    width: 450px;
    height: 450px;
  }
  .top-greet:after {
    font-size: 1.8rem;
    top: 10px;
  }
}
.top-greet .inner {
  position: relative;
  padding: 5em 0 50px;
  margin: 0 auto;
  max-width: 510px;
  text-align: center;
  line-height: 2;
  word-break: auto-phrase;
  line-height: 2;
  text-wrap: balance;
}
.top-greet .inner p + p {
  margin-top: 20px;
}
@media all and (max-width: 896px) {
  .top-greet .inner {
    max-width: 50%;
  }
}
@media all and (max-width: 639px) {
  .top-greet .inner {
    max-width: 90%;
    padding: 50px 0;
    text-align: left;
  }
}
.top-greet .img-area01, .top-greet .img-area02 {
  width: 300px;
  height: 400px;
  overflow: hidden;
  border-radius: 15px;
}
@media all and (max-width: 1100px) {
  .top-greet .img-area01, .top-greet .img-area02 {
    width: 200px;
  }
}
@media all and (max-width: 896px) {
  .top-greet .img-area01, .top-greet .img-area02 {
    width: 25%;
    height: 250px;
  }
}
@media all and (max-width: 639px) {
  .top-greet .img-area01, .top-greet .img-area02 {
    width: 90%;
    height: 160px;
  }
}
.top-greet .img-area01 img, .top-greet .img-area02 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.top-greet .img-area01.img-area01, .top-greet .img-area02.img-area01 {
  margin: auto auto -25px -50px;
}
@media all and (max-width: 639px) {
  .top-greet .img-area01.img-area01, .top-greet .img-area02.img-area01 {
    margin: 60px auto 0;
  }
}
.top-greet .img-area01.img-area02, .top-greet .img-area02.img-area02 {
  margin: -5px -50px auto auto;
}
@media all and (max-width: 639px) {
  .top-greet .img-area01.img-area02, .top-greet .img-area02.img-area02 {
    margin: 0 auto 50px;
  }
}
@media all and (max-width: 639px) {
  .top-greet .img-area02 {
    display: none;
  }
}

/*-----------------------------------*/
.greet_news {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
.greet_news .greet {
  width: 56%;
  padding: 50px 35px;
  position: relative;
}
.greet_news .greet p {
  line-height: 2.5;
}
.greet_news .greet::before {
  content: "";
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/26086/greeting.jpg) no-repeat 70% 50%/cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0.2;
}
@media all and (max-width: 896px) {
  .greet_news .greet {
    width: 50%;
  }
}
@media all and (max-width: 639px) {
  .greet_news .greet {
    width: 100%;
    padding: 40px 15px;
    margin-bottom: 50px;
  }
  .greet_news .greet p {
    line-height: 1.8;
  }
  .greet_news .greet p + p {
    margin-top: 15px;
  }
}
.greet_news .news {
  width: 44%;
  padding: 50px 20px;
  background: #afe1aa;
}
@media all and (max-width: 896px) {
  .greet_news .news {
    width: 50%;
  }
}
@media all and (max-width: 639px) {
  .greet_news .news {
    width: 100%;
    padding: 40px 20px;
  }
}

.staff > li,
.staff .child {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 100px;
}
@media all and (max-width: 639px) {
  .staff > li,
  .staff .child {
    margin-bottom: 80px;
  }
}
.staff > li:last-child,
.staff .child:last-child {
  margin-bottom: 0;
}
@media all and (max-width: 639px) {
  .staff > li:nth-child(2n) .img-box,
  .staff .child:nth-child(2n) .img-box {
    order: 1;
  }
}
.staff > li:nth-child(2n) .info,
.staff .child:nth-child(2n) .info {
  order: -1;
}
@media all and (max-width: 639px) {
  .staff > li:nth-child(2n) .info,
  .staff .child:nth-child(2n) .info {
    order: 2;
  }
}
.staff > li .img-box,
.staff .child .img-box {
  width: 20%;
  height: 200px;
  display: block;
  position: relative;
}
.staff > li .img-box img,
.staff .child .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  -webkit-clip-path: polygon(84% 0%, 100% 15%, 100% 100%, 15% 100%, 0% 86%, 0 0);
          clip-path: polygon(84% 0%, 100% 15%, 100% 100%, 15% 100%, 0% 86%, 0 0);
}
@media all and (max-width: 639px) {
  .staff > li .img-box,
  .staff .child .img-box {
    width: 65%;
    height: 250px;
    margin: 0 auto 30px;
  }
}
.staff > li .img-box::before, .staff > li .img-box::after,
.staff .child .img-box::before,
.staff .child .img-box::after {
  content: "";
  background: #afe1aa;
  width: 50px;
  height: 1px;
  position: absolute;
  transform: rotate(55grad);
}
@media all and (max-width: 896px) {
  .staff > li .img-box::before, .staff > li .img-box::after,
  .staff .child .img-box::before,
  .staff .child .img-box::after {
    transform: rotate(60grad);
  }
}
@media all and (max-width: 639px) {
  .staff > li .img-box::before, .staff > li .img-box::after,
  .staff .child .img-box::before,
  .staff .child .img-box::after {
    transform: rotate(53grad);
  }
}
.staff > li .img-box::before,
.staff .child .img-box::before {
  top: 10px;
  right: -15px;
}
@media all and (max-width: 639px) {
  .staff > li .img-box::before,
  .staff .child .img-box::before {
    top: 15px;
    right: -13px;
  }
}
.staff > li .img-box::after,
.staff .child .img-box::after {
  bottom: 10px;
  left: -15px;
}
@media all and (max-width: 639px) {
  .staff > li .img-box::after,
  .staff .child .img-box::after {
    bottom: 11px;
    left: -12px;
  }
}
.staff > li .info,
.staff .child .info {
  width: 75%;
  position: relative;
  display: block;
}
@media all and (max-width: 639px) {
  .staff > li .info,
  .staff .child .info {
    width: 100%;
  }
}
.staff > li .info .name,
.staff .child .info .name {
  position: relative;
  display: block;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
  font-weight: 600;
  margin-bottom: 20px;
  border-bottom: 1px solid #489F7B;
  padding-bottom: 5px;
  font-size: 1.8rem;
}
.staff > li .info .name span,
.staff .child .info .name span {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  color: #489F7B;
  position: absolute;
  display: block;
  top: 0;
  right: 0;
}
@media all and (max-width: 639px) {
  .staff > li .info .name span,
  .staff .child .info .name span {
    font-size: 1.3rem;
    top: 15px;
    letter-spacing: 0;
  }
}

.form-pattern-2 dl dt:not(.pattern-exclusion) span.required::before {
  content: "必須";
  color: #fff;
  background: #afe1aa !important;
}

.form-pattern-2 .submit-btn {
  color: #fff;
  background: #afe1aa !important;
  border: 1px solid #afe1aa !important;
  -o-border-image: initial;
     border-image: initial;
  padding: 12px 5px;
  margin: 0 auto;
  width: 250px;
  border-radius: 25px;
}
.form-pattern-2 .submit-btn:hover {
  background-color: #fff !important;
  color: #afe1aa !important;
}
.form-pattern-2 .submit-btn:hover:before {
  background-color: #afe1aa !important;
}

@media all and (max-width: 639px) {
  .form-contents {
    padding: 20px 15px !important;
  }
}

.form-contents form dl dd label {
  display: block !important;
}

.trbr {
  display: none;
}
@media all and (max-width: 896px) {
  .trbr {
    display: block;
  }
}

/* fixed-btn
----------------------------------*/
.fixed-btn {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 50;
  transform: translateY(-30%);
  display: none;
}
.fixed-btn ul li {
  margin-bottom: 10px;
}
.fixed-btn ul li:nth-child(2n) a {
  background: #EB9575;
}
.fixed-btn ul li a {
  background: #489F7B;
  color: #fefefe;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 70px;
  text-align: center;
  border-radius: 100px 0 0 100px;
}
.fixed-btn ul li a:hover {
  transition: all 0.3s ease;
  transform: translateX(5px);
  background: #e16232;
}
.fixed-btn ul li .cont {
  font-size: 1.3rem;
  text-align: center;
  padding-left: 15px;
}
.fixed-btn ul li .cont i {
  display: block;
  font-size: 2rem;
}
.fixed-btn ul li:nth-child(3) {
  display: none;
}
@media all and (max-width: 639px) {
  .fixed-btn {
    display: block;
    top: auto;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: calc(100% - 35px);
    width: 100%;
  }
  .fixed-btn ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .fixed-btn ul li {
    width: 50%;
    margin-bottom: 0;
  }
  .fixed-btn ul li a {
    width: 100%;
    height: 60px;
    writing-mode: initial;
    border-radius: 0;
  }
  .fixed-btn ul li a:hover {
    transition: all 0.3s ease;
    transform: translateX(0);
  }
  .fixed-btn ul li .cont {
    font-size: 1rem;
    padding: 0;
  }
  .fixed-btn ul li .cont img {
    margin: 0 auto;
    display: block;
  }
  .fixed-btn ul li:nth-child(3) {
    display: block;
  }
}

.new_open_salon {
  position: relative;
  margin-bottom: 30px;
}
.new_open_salon .img-area {
  position: relative;
  width: 60%;
  z-index: 0;
}
.new_open_salon .img-area img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 1;
}
@media all and (max-width: 1100px) {
  .new_open_salon .img-area {
    width: 70%;
    height: 300px;
  }
}
@media all and (max-width: 896px) {
  .new_open_salon .img-area {
    width: 80%;
    height: 250px;
  }
}
@media all and (max-width: 639px) {
  .new_open_salon .img-area {
    width: 90%;
    height: 150px;
  }
  .new_open_salon .img-area img {
    opacity: 0.8s;
  }
}
.new_open_salon .txt-area {
  width: 46%;
  margin: -15% 0 0 auto;
  padding: 25px;
  background-color: #fff;
  box-shadow: 0 0 6px rgba(75, 42, 17, 0.05);
  position: relative;
}
@media all and (max-width: 1100px) {
  .new_open_salon .txt-area {
    width: 70%;
  }
}
@media all and (max-width: 896px) {
  .new_open_salon .txt-area {
    width: 80%;
  }
}
@media all and (max-width: 639px) {
  .new_open_salon .txt-area {
    width: 90%;
    margin: -2% 0 0 auto;
  }
}
.new_open_salon .txt-area h3 {
  margin-bottom: 30px;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
  font-size: 3.5rem;
}
@media all and (max-width: 896px) {
  .new_open_salon .txt-area h3 {
    margin-bottom: 20px;
    font-size: 3rem;
  }
}
@media all and (max-width: 639px) {
  .new_open_salon .txt-area h3 {
    font-size: 2.5rem;
  }
}
.new_open_salon .txt-area h4 {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  color: #489F7B;
  font-size: 2rem;
}
@media all and (max-width: 896px) {
  .new_open_salon .txt-area h4 {
    font-size: 1.5rem;
  }
}
@media all and (max-width: 639px) {
  .new_open_salon .txt-area h4 {
    font-size: 1.2rem;
  }
}
.new_open_salon .txt-area p + p {
  margin-top: 15px;
}
.new_open_salon .txt-area p {
  letter-spacing: 0.1rem;
}
@media all and (max-width: 1100px) {
  .new_open_salon .txt-area p {
    line-height: 1.8;
  }
}
@media all and (max-width: 639px) {
  .new_open_salon .txt-area p {
    font-size: 1.1rem;
  }
}

.map-img {
  position: absolute;
  width: 120px;
  right: -20px;
  top: -30px;
  animation: rotate_anime 1.5s cubic-bezier(0.87, 0.01, 0, 0.99) infinite;
}
@media all and (max-width: 639px) {
  .map-img {
    width: 60px;
  }
}

.map-img2 {
  position: absolute;
  width: 340px;
  left: 0px;
  top: -70px;
}
@media all and (max-width: 639px) {
  .map-img2 {
    width: 200px;
    top: -30px;
  }
}

@keyframes rotate_anime {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(0deg);
  }
  30% {
    transform: rotate(5deg);
  }
  85% {
    transform: rotate(5deg);
  }
  90% {
    transform: rotate(0deg);
  }
}
.sbsc-list li {
  -o-object-fit: cover;
  object-fit: cover;
  margin-bottom: 15px;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(68, 58, 55, 0.05);
  font-weight: 600;
  height: 330px;
}
@media all and (max-width: 639px) {
  .sbsc-list li {
    width: 100%;
    margin: 0 auto 30px;
  }
  .sbsc-list li:nth-child(2n) {
    margin-right: auto;
  }
}
@media all and (max-width: 639px) {
  .sbsc-list li {
    flex-direction: column;
  }
}

/*calendar-wrap-----------------------------------*/
.calendar-wrap {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
.calendar-wrap .calendar-inner {
  width: 23%;
  margin: 0 2.6666666667% 30px 0;
  box-shadow: 0 0 6px rgba(75, 42, 17, 0.05);
  background: #fff;
  position: relative;
}
.calendar-wrap .calendar-inner:nth-child(4n) {
  margin-right: 0;
}
.calendar-wrap .calendar-inner .month {
  position: absolute;
  left: -5px;
  top: -10px;
  background: #F4C075;
  color: #4b2a11;
  padding: 15px;
  border-radius: 10px;
  font-weight: 600;
}
.calendar-wrap .calendar-inner .calendar-txt {
  padding: 10px 15px;
  margin-top: 20px;
  line-height: 1.6;
  font-size: 1.4rem;
}
@media all and (max-width: 639px) {
  .calendar-wrap .calendar-inner {
    width: 48%;
    margin: 0 4% 25px 0;
  }
  .calendar-wrap .calendar-inner:nth-child(2n) {
    margin-right: 0;
  }
}

.month-box {
  position: relative;
  margin-top: 1em;
  padding: 1.8em 1.5em 1em 1.5em;
  border-radius: 15px;
  border: 2px solid #d9a5b7;
  background-color: #fff;
}
.month-box .balloon {
  position: absolute;
  top: -1.15em;
  left: -0.5em;
  padding: 0.4em 1.4em;
  border-radius: 25px;
  background-color: #d9a5b7;
  color: #fff;
  font-size: 2.2rem;
}
.month-box .balloon:before {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 8px;
  background-color: #d9a5b7;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: "";
}

/*what-inner
----------------------------------*/
.what-inner {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  border-radius: 20px;
}
.what-inner.sbetween {
  justify-content: space-between;
}
.what-inner.alc {
  align-items: center;
}
.what-inner.m-b0 {
  margin-bottom: 0;
}
.what-inner.p30 {
  padding: 30px;
}
@media all and (max-width: 896px) {
  .what-inner.p30 {
    padding: 0;
  }
}
.what-inner .in-left {
  width: 30%;
  padding: 0 15px;
}
.what-inner .in-left .area {
  height: 130px;
  width: 130px;
  margin-right: 2%;
  padding: 15px;
  box-sizing: border-box;
  background: #EB9575;
  color: #fff;
  border-radius: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.what-inner .in-left .area.type1 {
  background-color: #93d68c;
}
.what-inner .in-right {
  width: 68%;
  padding: 10px;
  margin-left: auto;
  position: relative;
}
.what-inner .in-right .read {
  font-size: 2.6rem;
  color: #afe1aa;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
  background-color: #fff;
  padding: 5px;
  text-align: center;
}
.what-inner .in-right.m-l0 {
  margin-left: 0;
}
@media all and (max-width: 639px) {
  .what-inner .in-left {
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
  }
  .what-inner .in-left .area {
    width: 100%;
    height: auto;
    border-radius: 5px;
  }
  .what-inner .in-left .ttl {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  .what-inner .in-left .ttl span {
    font-size: 14px;
    display: inherit;
  }
  .what-inner .in-left .read {
    font-size: 2rem;
  }
  .what-inner .in-right {
    width: 100%;
    padding: 0px;
  }
}

.what-inner2 {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
  border-radius: 20px;
}
.what-inner2 .in-left .area {
  height: 130px;
  width: 130px;
  margin-right: 50px;
  padding: 15px;
  box-sizing: border-box;
  background: #EB9575;
  color: #fff;
  border-radius: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.what-inner2 .in-left .area.type1 {
  background-color: #93d68c;
}
.what-inner2 .in-right {
  flex: 1 0 auto;
  padding: 10px;
  margin-left: auto;
  position: relative;
}
.what-inner2 .in-right .read {
  font-size: 2.6rem;
  color: #afe1aa;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
  background-color: #fff;
  padding: 5px;
  text-align: center;
}
.what-inner2 .in-right.m-l0 {
  margin-left: 0;
}
@media all and (max-width: 639px) {
  .what-inner2 .in-left {
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
  }
  .what-inner2 .in-left .area {
    width: 100%;
    height: auto;
    border-radius: 5px;
  }
  .what-inner2 .in-left .ttl {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  .what-inner2 .in-left .ttl span {
    font-size: 14px;
    display: inherit;
  }
  .what-inner2 .in-left .read {
    font-size: 2rem;
  }
  .what-inner2 .in-right {
    width: 100%;
    padding: 0px;
  }
}

/*reason-wrap
----------------------------------*/
.reason-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.reason-wrap .heading {
  width: 34%;
}
.reason-wrap .heading .inner {
  position: sticky;
  top: 80px;
}
.reason-wrap .detail {
  width: 62%;
}

@media all and (max-width: 639px) {
  .reason-wrap .heading {
    margin-bottom: 40px;
    width: 100%;
  }
  .reason-wrap .detail {
    width: 100%;
  }
}
.reason-child {
  margin-bottom: 40px;
  position: relative;
}
.reason-child .number-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 66px;
  height: 66px;
}
.reason-child .number-box .number-inner {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  width: 100%;
  height: 100%;
  max-width: 96px;
  max-height: 96px;
  border-radius: 50%;
  border: 1px solid #EB9575;
}
.reason-child .number-box .number-inner span {
  font-size: 2rem;
  font-weight: 500;
  color: #EB9575;
}
.reason-child .reason-right {
  position: relative;
  padding-left: calc(0% + 96px);
}
.reason-child .reason-right .r-ttl {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  padding: 16px 0 10px;
  max-height: 96px;
  border-top: 1px solid #EB9575;
  font-size: 2rem;
}
@media all and (max-width: 639px) {
  .reason-child .number-box {
    width: 50px;
    height: 50px;
  }
  .reason-child .reason-right {
    padding-left: calc(0% + 70px);
  }
  .reason-child .reason-right .r-ttl {
    font-size: 1.6rem;
  }
}

.reason-image {
  position: relative;
  height: 320px;
  margin-bottom: 30px;
}
.reason-image img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  vertical-align: middle;
}

@media all and (max-width: 639px) {
  .reason-image {
    height: 220px;
  }
}
/*course-bnr*/
.course-bnr {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  position: relative;
  z-index: 2;
}
.course-bnr li {
  background-color: #fff;
  border-radius: 10px;
  filter: drop-shadow(0 0 5px rgba(59, 50, 40, 0.1));
}
.course-bnr li .photo-area {
  position: relative;
  z-index: -1;
}
.course-bnr li .photo-area figure {
  width: 100%;
  height: 240px;
  overflow: hidden;
  box-sizing: border-box;
  border-radius: 10px 10px 0 0;
}
.course-bnr li .photo-area figure img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.4s ease;
  font-family: "object-fit: cover;";
}
.course-bnr li .photo-area .bnr-img2 {
  position: relative;
  width: 80px;
  height: 80px;
  background: #afe1aa;
  border-radius: 100%;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: -60px;
}
.course-bnr li .photo-area .bnr-img2.type1 {
  background-color: #EB9575;
}
.course-bnr li .photo-area .bnr-img2.type2 {
  background-color: #387c60;
}
.course-bnr li .photo-area .bnr-img2.type3 {
  background-color: #b2a5d5;
}
.course-bnr li .photo-area .bnr-img2.type4 {
  background-color: #d9a5b7;
}
.course-bnr li .photo-area .bnr-img2.type5 {
  background-color: #ab987a;
}
.course-bnr li .photo-area .bnr-img2 .num {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  color: #fff;
  transform: translate(-50%, -50%);
}
.course-bnr li .photo-area .bnr-img2 .num img {
  filter: invert(1);
}
.course-bnr li .txt-area {
  padding: 20px 15px;
  color: #333;
  color: #111;
  font-size: 1.4rem;
}
.course-bnr li .txt-area h3 {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 20px;
}
@media all and (max-width: 1100px) {
  .course-bnr {
    grid-template-columns: repeat(2, 1fr);
  }
  .course-bnr li a .photo-area figure {
    height: 240px;
  }
  .course-bnr li a .txt-area h3 {
    font-size: 1.8rem;
  }
  .course-bnr li a .txt-area h3 span {
    font-size: 1.45rem;
  }
  .course-bnr li a .txt-area p {
    font-size: 1.3rem;
  }
}
@media all and (max-width: 639px) {
  .course-bnr {
    grid-template-columns: 1fr;
  }
  .course-bnr li .icon {
    margin-top: 30px;
  }
  .course-bnr li .photo-area figure {
    height: 160px;
  }
  .course-bnr li .photo-area .bnr-img {
    width: 70px;
    height: 70px;
    top: -35px;
    margin-bottom: -35px;
  }
  .course-bnr li .photo-area .bnr-img img {
    width: 45px;
  }
  .course-bnr li .txt-area {
    padding: 15px 10px;
  }
  .course-bnr li .txt-area h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
  }
  .course-bnr li .txt-area h3 span {
    font-size: 1.2rem;
  }
  .course-bnr li .txt-area p {
    font-size: 1.1rem;
  }
}

.chosei {
  margin-bottom: 80px;
}
@media all and (max-width: 639px) {
  .chosei {
    margin-bottom: 40px;
  }
}

.interview_box.box_last {
  margin: 60px 0 0;
}
.interview_box .ttl {
  margin-left: 20px;
}
@media all and (max-width: 896px) {
  .interview_box .ttl img {
    width: 250px;
  }
}
.interview_box .inner {
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media all and (max-width: 639px) {
  .interview_box .inner {
    padding: 0px;
  }
}
.interview_box .inner .txt {
  padding: 0 20px;
  flex: 1;
}
@media all and (max-width: 639px) {
  .interview_box .inner .txt {
    padding: 0;
    flex: none;
    width: 100%;
  }
  .interview_box .inner .txt.order {
    order: 1;
  }
}
.interview_box .inner .txt .inner_ttl {
  font-weight: bold;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #eb612a;
}
@media all and (max-width: 639px) {
  .interview_box .inner .txt .inner_ttl {
    font-size: 1.8rem;
    text-align: center;
  }
}
.interview_box .inner .txt .inner_name {
  margin-bottom: 20px;
}
.interview_box .inner .txt .inner_name .bg {
  background: rgba(255, 255, 255, 0.6);
  display: block;
  padding: 3px 15px;
  border-radius: 3px;
  color: #604c3f;
  font-weight: bold;
}
.interview_box .inner .txt .inner_name .small {
  display: block;
  text-align: right;
}
.interview_box .inner .img {
  position: relative;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 20px;
}
@media all and (max-width: 896px) {
  .interview_box .inner .img {
    width: 200px;
    height: 200px;
  }
}
@media all and (max-width: 639px) {
  .interview_box .inner .img {
    width: 150px;
    height: 150px;
  }
}
.interview_box .inner .img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
.interview_box .inner .name {
  text-align: center;
}