@charset "UTF-8";
/* アニメーションベンダープレフィックス込み指定 */
/* アニメーションベンダープレフィックス込み指定 */
body {
  color: #323232;
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.7rem;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  overflow-x: hidden;
  font-weight: 600;
  position: relative;
  letter-spacing: 0.1rem;
  background: #fefefe;
}

#nav-toggle,
#sp-nav {
  display: none;
}

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

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

.regular {
  font-weight: 500;
}

.bold {
  font-weight: 600;
}

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

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

#wrapper {
  overflow: hidden;
}

/* animation
----------------------------------*/
.blurTrigger {
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s; /* 予備の滑らかさ */
}

.blur {
  -webkit-animation-name: blurAnime;
          animation-name: blurAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards; /* アニメーション終了時の状態(opacity:1)を維持 */
}

@-webkit-keyframes blurAnime {
  from {
    -webkit-filter: blur(10px);
            filter: blur(10px);
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
    opacity: 0;
  }
  to {
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

@keyframes blurAnime {
  from {
    -webkit-filter: blur(10px);
            filter: blur(10px);
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
    opacity: 0;
  }
  to {
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
.js-marker span {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 95, 95, 0.5)), to(rgba(255, 95, 95, 0.5)));
  background-image: linear-gradient(90deg, rgba(255, 95, 95, 0.5), rgba(255, 95, 95, 0.5));
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 0 35%;
  -webkit-transition: background-size 2s ease-in-out;
  transition: background-size 2s ease-in-out;
  display: inline;
}
.js-marker.sbc span {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(102, 153, 51, 0.4)), to(rgba(102, 153, 51, 0.4)));
  background-image: linear-gradient(90deg, rgba(102, 153, 51, 0.4), rgba(102, 153, 51, 0.4));
}
.js-marker.on span {
  background-size: 100% 35%;
}

.glowAnime span {
  opacity: 0;
}

.glowAnime.glow span {
  -webkit-animation: glow_anime_on 1s ease-out forwards;
          animation: glow_anime_on 1s ease-out forwards;
}

@-webkit-keyframes glow_anime_on {
  0% {
    opacity: 0;
    text-shadow: 0 0 0 #fff, 0 0 0 #fff;
  }
  50% {
    opacity: 1;
    text-shadow: 0 0 10px #fff, 0 0 15px #fff;
  }
  99% {
    opacity: 1;
    text-shadow: 0 0 0 #fff, 0 0 0 #fff;
  }
  100% {
    opacity: 1;
    text-shadow: none;
  }
}

@keyframes glow_anime_on {
  0% {
    opacity: 0;
    text-shadow: 0 0 0 #fff, 0 0 0 #fff;
  }
  50% {
    opacity: 1;
    text-shadow: 0 0 10px #fff, 0 0 15px #fff;
  }
  99% {
    opacity: 1;
    text-shadow: 0 0 0 #fff, 0 0 0 #fff;
  }
  100% {
    opacity: 1;
    text-shadow: none;
  }
}
.bg-on-left:before {
  -webkit-animation: bg-on-left-anime 1s ease-out 0s forwards;
          animation: bg-on-left-anime 1s ease-out 0s forwards;
}
.bg-on-left.time2:before {
  -webkit-animation: bg-on-left-anime2 0.8s ease-out 0.8s forwards;
          animation: bg-on-left-anime2 0.8s ease-out 0.8s forwards;
}

@-webkit-keyframes bg-on-left-anime {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes bg-on-left-anime {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes bg-on-left-anime2 {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}
@keyframes bg-on-left-anime2 {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}
@-webkit-keyframes view-zoomin {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes view-zoomin {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes view-slideup {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 35px);
            transform: translate(0, 35px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@keyframes view-slideup {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 35px);
            transform: translate(0, 35px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
.animation {
  opacity: 0;
}

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

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

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

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

@keyframes loader {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/* header
----------------------------------*/
@-webkit-keyframes hd-scrolled {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@keyframes hd-scrolled {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
#l-main {
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: #fefefe;
}

#l-header {
  position: fixed;
  width: calc(100% - 40px);
  z-index: 200;
  top: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  -webkit-filter: drop-shadow(2px 0px 6px rgba(92, 67, 50, 0.1));
          filter: drop-shadow(2px 0px 6px rgba(92, 67, 50, 0.1));
}
@media all and (max-width: 1200px) {
  #l-header {
    width: calc(100% - 20px);
    top: 0px;
  }
}
#l-header.is-fixed {
  background: #fefefe;
}
#l-header.is-fixed .inner #logo {
  -webkit-filter: none;
          filter: none;
}
#l-header.is-fixed #header_nav > ul > li a {
  color: #5c4332;
}
#l-header.is-fixed #header_nav > ul > li a span {
  color: rgb(179.2957746479, 141.4436619718, 115.7042253521);
  -webkit-transition: color 0.5s ease;
  transition: color 0.5s ease;
}
#l-header.is-fixed #header_nav > ul > li a:hover span {
  color: #ff5f5f;
}
#l-header .inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#l-header .inner #logo {
  width: 230px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px 0;
}
@media all and (max-width: 1200px) {
  #l-header .inner {
    padding-left: 20px;
  }
}
#l-header .head-right {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media all and (max-width: 1200px) {
  #l-header .head-right {
    display: none;
  }
}
#l-header .head-right_contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
#l-header .head-right_shop,
#l-header .head-right_blog,
#l-header .head-right_insta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
#l-header .head-right_shop a,
#l-header .head-right_blog a,
#l-header .head-right_insta a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 20px;
  color: #ffffff;
  font-size: 1.9rem;
  position: relative;
  -webkit-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
#l-header .head-right_shop a:before,
#l-header .head-right_blog a:before,
#l-header .head-right_insta a:before {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 8px;
}
#l-header .head-right_shop a:hover,
#l-header .head-right_blog a:hover,
#l-header .head-right_insta a:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
#l-header .head-right_shop a {
  background: #ff5f5f;
}
#l-header .head-right_shop a:before {
  content: "\f07a";
}
#l-header .head-right_shop a:hover {
  background: rgb(255, 69.5, 69.5) !important;
}
#l-header .head-right_insta a {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
#l-header .head-right_insta a:before {
  font-family: "Font Awesome 5 Brands";
  content: "\f16d";
}
#l-header .head-right_insta a:hover {
  -webkit-filter: brightness(1.1);
          filter: brightness(1.1);
}
#l-header .head-right_blog a {
  background: #669933;
}
#l-header .head-right_blog a:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f303";
}
#l-header .head-right_blog a:hover {
  background: rgb(89.25, 133.875, 44.625) !important;
}

#header_nav {
  position: relative;
  width: 850px;
  margin-right: 20px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#header_nav > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  gap: 15px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  list-style: none;
}
#header_nav > ul > li {
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#header_nav > ul > li:hover > .dropdown {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(-50%) translateY(0);
          transform: translateX(-50%) translateY(0);
}
#header_nav > ul > li:hover > a span {
  color: #ff5f5f;
}
#header_nav > ul > li a {
  display: block;
  text-align: center;
  color: #fefefe;
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 1.55rem;
  letter-spacing: 0.1em;
  line-height: 1.2;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#header_nav > ul > li a span {
  display: block;
  font-size: 0.8rem;
  margin-top: 4px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: white;
  -webkit-transition: color 0.5s ease;
  transition: color 0.5s ease;
}
#header_nav .dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 220px;
  z-index: 1000;
  background: #fff;
  padding: 0;
  margin: 0;
  list-style: none;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateX(-50%) translateY(0);
          transform: translateX(-50%) translateY(0);
  -webkit-transition: opacity 0.5s ease, visibility 0.5s ease;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 4px 4px;
  overflow: hidden;
}
#header_nav .dropdown li {
  border-bottom: 1px solid rgba(229, 230, 224, 0.3);
}
#header_nav .dropdown li:last-child {
  border-bottom: none;
}
#header_nav .dropdown li a {
  display: block;
  padding: 15px 20px;
  background: #fff;
  color: #5c4332;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
}
@media all and (max-width: 896px) {
  #header_nav .dropdown li a {
    font-size: 1.1rem;
  }
}
@media all and (max-width: 639px) {
  #header_nav .dropdown li a {
    font-size: 1.05rem;
  }
}
#header_nav .dropdown li a {
  text-align: left;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#header_nav .dropdown li a:hover {
  background: #ff5f5f;
  color: #fff !important;
}

/* page-top
----------------------------------*/
#page-top {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 99;
}
#page-top a {
  display: block;
  background: #ff5f5f;
  color: #fefefe;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  font-size: 1.8rem;
  text-align: center;
}
#page-top a:hover {
  opacity: 0.6;
}
@media all and (max-width: 1100px) {
  #page-top {
    bottom: 68px;
  }
}

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

.swiper-slide {
  position: relative;
}
.swiper-slide:before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  left: 0;
  top: 0;
  background-position: center;
  background-size: cover;
  z-index: -1;
}
.swiper-slide.slide2:before {
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28144/slide2.webp);
}
.swiper-slide.slide3:before {
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28144/slide3.webp);
}
.swiper-slide.slide4:before {
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28144/slide4.webp);
}
.swiper-slide.slide5:before {
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28144/slide5.webp);
  background-position: center 80%;
}

.slide-img {
  overflow: hidden;
  margin: 0 auto;
  width: 100%;
  height: 130vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.slide-img img {
  width: 600px;
}
@media all and (max-width: 1200px) {
  .slide-img {
    height: 65vw;
  }
}
@media all and (max-width: 896px) {
  .slide-img img {
    width: 60%;
  }
}
@media all and (max-width: 639px) {
  .slide-img {
    height: 40vh;
  }
  .slide-img img {
    width: 80%;
  }
}

#slide-bg {
  position: relative;
}

#slideshow {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}
@media all and (max-width: 1200px) {
  #slideshow {
    min-width: initial;
  }
}
@media all and (max-width: 639px) {
  #slideshow {
    margin-bottom: 20px;
    width: 100%;
  }
}

#mainview-name {
  z-index: 20;
  position: absolute;
  left: 5%;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-90deg);
          transform: translateY(-50%) rotate(-90deg);
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  letter-spacing: 0.2em;
}
@media all and (max-width: 896px) {
  #mainview-name {
    left: 1%;
  }
}
@media all and (max-width: 639px) {
  #mainview-name {
    left: -7%;
  }
}

#catch {
  position: absolute;
  top: 43%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: opacity 2s cubic-bezier(0.18, 0.06, 0.23, 1);
  transition: opacity 2s cubic-bezier(0.18, 0.06, 0.23, 1);
  width: 70%;
  max-width: 1000px;
  z-index: 10;
  -webkit-filter: drop-shadow(0 0 3px rgba(100, 50, 0, 0.5));
          filter: drop-shadow(0 0 3px rgba(100, 50, 0, 0.5));
  opacity: 0;
}
#catch.on {
  opacity: 1;
  -webkit-transition: all 2s ease-in;
  transition: all 2s ease-in;
}
@media all and (max-width: 1200px) {
  #catch {
    top: 50%;
  }
}
@media all and (max-width: 896px) {
  #catch {
    width: 85%;
  }
}

#catch-logo {
  position: absolute;
  bottom: 25%;
  left: 20px;
  width: 70%;
  max-width: 230px;
  z-index: 10;
  -webkit-filter: drop-shadow(0 0 3px rgba(100, 50, 0, 0.5));
          filter: drop-shadow(0 0 3px rgba(100, 50, 0, 0.5));
  opacity: 0;
}
#catch-logo.on {
  opacity: 1;
  -webkit-transition: all 2s ease-in;
  transition: all 2s ease-in;
}
@media all and (max-width: 1200px) {
  #catch-logo {
    bottom: 3%;
  }
}
@media all and (max-width: 896px) {
  #catch-logo {
    width: 20%;
  }
}

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

.contact_wrap {
  max-width: 1200px;
  border-top: 3px solid white;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contact_wrap .contact_left,
.contact_wrap .contact_right {
  width: 49%;
  padding: 20px;
}
.contact_wrap .contact_right {
  text-align: right;
}
.contact_wrap .contact_left {
  margin-right: 2%;
  border-right: 3px solid white;
}
@media all and (max-width: 639px) {
  .contact_wrap {
    margin-top: 30px;
    width: 94%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contact_wrap .contact_left,
  .contact_wrap .contact_right {
    width: 100%;
    padding: 10px;
    font-size: 0.9em;
    letter-spacing: 0;
    font-weight: normal;
  }
  .contact_wrap .contact_right {
    text-align: left;
  }
  .contact_wrap .contact_left {
    margin-right: auto;
    border-right: 0;
    border-bottom: 3px solid #fff;
  }
}

.contact_bnr {
  margin: 20px 0 40px;
}
.contact_bnr > li {
  list-style: none;
}
.contact_bnr > li .bnr_tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  white-space: nowrap;
  color: #ff5f5f;
  line-height: 1.3;
  font-size: 3.3rem;
  padding: 12px 10px;
  background: rgba(255, 255, 255, 0.9);
  border: 3px solid rgba(255, 95, 95, 0.2);
  border-radius: 50px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.contact_bnr > li .bnr_tel:before {
  font-family: "Font Awesome 5 Free";
  content: "\f095";
  font-weight: bold;
  color: #669933;
  font-size: 2.8rem;
  margin-right: 15px;
}
.contact_bnr > li .bnr_tel:hover {
  background: #fff;
  border-color: #ff5f5f;
  -webkit-box-shadow: 0 5px 15px rgba(255, 95, 95, 0.2);
          box-shadow: 0 5px 15px rgba(255, 95, 95, 0.2);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
@media all and (max-width: 639px) {
  .contact_bnr > li .bnr_tel {
    font-size: 2rem;
    width: 100%;
  }
  .contact_bnr > li .bnr_tel:before {
    font-size: 1.6rem;
  }
}
.contact_bnr > li a {
  display: block;
  padding: 5px 15px;
  margin: 0 auto;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
}
@media all and (max-width: 639px) {
  .contact_bnr > li a {
    width: 300px;
  }
}
@media all and (max-width: 320px) {
  .contact_bnr > li a {
    width: 250px;
  }
}

/* footer
----------------------------------*/
#l-footer {
  position: relative;
}
#l-footer .inner {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 10px;
}
#l-footer .inner.type2 {
  background: #ff5f5f;
}
@media all and (max-width: 639px) {
  #l-footer .inner {
    padding: 40px 15px;
  }
}

.footer-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 20px;
}
@media all and (max-width: 896px) {
  .footer-list {
    width: 300px;
    margin: 0 auto 20px;
  }
  .footer-list li {
    width: 50%;
    margin-bottom: 10px;
    padding: 0 5px;
  }
  .footer-list li a {
    background: #fefefe;
  }
}
@media all and (max-width: 639px) {
  .footer-list {
    width: 90%;
  }
}
.footer-list li:not(:last-child) {
  border-right: 1px dashed rgb(94.7719298246, 127.2280701754, 101.2631578947);
}
@media all and (max-width: 896px) {
  .footer-list li:not(:last-child) {
    border-right: 0;
  }
}
.footer-list li a {
  text-align: center;
  display: block;
  color: rgb(94.7719298246, 127.2280701754, 101.2631578947);
  padding: 4px 15px;
}
.footer-list li a i {
  font-size: 2.5rem;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.footer-list li a span {
  display: block;
  font-size: 1.2rem;
  color: #254900;
}
.footer-list li a span.ja {
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.footer-list li a:hover i {
  color: #ff5f5f;
}
@media all and (max-width: 639px) {
  .footer-list li a {
    padding: 8px;
  }
  .footer-list li a i {
    font-size: 1.8rem;
  }
  .footer-list li a span {
    font-size: 12px;
  }
}

.address {
  text-align: center;
}

/* footer_navi
----------------------------------*/
.footer_navi {
  margin: 30px auto 20px;
}
.footer_navi ul {
  margin: 0 auto;
  max-width: 700px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.footer_navi li {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  text-align: center;
  margin: 0 0 4px;
  border-right: 0.9px solid #aaa;
}
.footer_navi li:last-child {
  border-right: 0;
}
.footer_navi li a {
  color: #333;
  font-size: 1.3rem;
  position: relative;
  font-weight: 600;
}
.footer_navi li a span {
  display: none;
}
.footer_navi li a:hover {
  color: #669933;
}
.footer_navi li .dropdown {
  display: none;
}

.column2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
}
.column2 .child {
  width: 45%;
}
.column2 .child2 {
  width: 53%;
}
@media all and (max-width: 639px) {
  .column2 .child,
  .column2 .child2 {
    width: 100%;
    border: 0;
  }
  .column2 .child:first-child,
  .column2 .child2:first-child {
    margin-bottom: 20px;
  }
}

.footer-line {
  position: absolute;
  left: 50%;
  top: -20px;
  width: 1px;
  height: 70px;
  background: #ff5f5f;
}
@media all and (max-width: 639px) {
  .footer-line {
    height: 60px;
  }
}

.flogo {
  width: 200px;
  margin-bottom: 25px;
  margin: 0 auto 20px;
  text-align: center;
}
.flogo a {
  display: block;
}
@media all and (max-width: 639px) {
  .flogo {
    width: 150px;
    margin: 0 auto 25px;
  }
}

.copyright {
  padding: 25px 0;
  background: #254900;
  color: #fefefe;
  font-size: 1.2rem;
}
@media all and (max-width: 896px) {
  .copyright {
    padding-bottom: 65px;
  }
}
@media all and (max-width: 639px) {
  .copyright {
    font-size: 12px;
  }
}

/*----------------------------------
 --top-contents--
----------------------------------*/
.board-box {
  background: #ccc;
  padding: 20px;
}

@media all and (max-width: 639px) {
  .item-list {
    padding: 0 14px;
  }
}

/* --top-intro--
----------------------------------*/
.bg-pink2 {
  position: relative;
}
.bg-pink2:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #ffefef;
  opacity: 0.7;
  z-index: -2;
}
.bg-pink2.half:before {
  width: 77%;
  height: 75%;
  bottom: 0;
  top: auto;
}

@media all and (max-width: 639px) {
  .bg-pink .half:before {
    height: 90%;
    width: 100%;
  }
}
@media all and (max-width: 639px) {
  .bg-pink .half2:before {
    width: 100%;
  }
}
.top-business-box {
  width: 100%;
}
.top-business-box .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.top-business-box .inner .img {
  width: 49%;
  height: 650px;
  margin-left: -77px;
}
.top-business-box .inner .img img {
  width: 100%;
  height: 100%;
  -o-object-position: center 70%;
     object-position: center 70%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0 20px 20px 0;
}
.top-business-box .inner .txt {
  width: 40%;
  margin: 80px auto 0;
}
.top-business-box .inner .txt .ttl .ja {
  font-size: 3.4rem;
}
@media all and (max-width: 639px) {
  .top-business-box .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .top-business-box .inner .img {
    width: 100%;
    height: 350px;
    margin-bottom: 20px;
  }
  .top-business-box .inner .img img {
    border-radius: 20px;
  }
  .top-business-box .inner .txt {
    width: 90%;
    margin: 0 auto;
  }
  .top-business-box .inner .txt .ttl {
    padding: 0 !important;
  }
  .top-business-box .inner .txt .ttl .ja {
    font-size: 1.8rem;
  }
  .top-business-box .inner .txt p {
    font-size: 14px;
    text-align: left;
  }
  .top-business-box .inner .txt .btn_wk {
    text-align: center;
    margin-top: 20px;
  }
}
@media all and (max-width: 1200px) {
  .top-business-box .inner .txt .ttl .ja {
    font-size: 3rem;
  }
}

.greet-area {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  z-index: 1;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 160px;
  width: 100%;
}
.greet-area[data-aos] {
  will-change: transform, opacity;
}
.greet-area:before {
  position: absolute;
  content: "";
  width: 55%;
  height: 100%;
  top: 80px;
  right: 0;
  z-index: -1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.greet-area.img01:before {
  background-image: url("https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28144/peach.webp");
}
.greet-area.reverse {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.greet-area.reverse:before {
  right: auto;
  left: 0;
}
.greet-area.reverse .greet-area-box {
  margin-left: auto;
  margin-right: 0;
}
.greet-area.reverse .greet-area-box::before {
  right: auto;
  left: 0;
  border-right: 0;
  border-left: 1px solid #e5e6e0;
}
.greet-area.reverse .greet-area-box::after {
  left: auto;
  right: 0;
  border-left: 0;
  border-right: 1px solid #e5e6e0;
}
.greet-area .greet-area-box {
  position: relative;
  top: 0;
  width: 55%;
  padding: 50px 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fefefe;
  color: #5c4332;
  z-index: 10;
}
.greet-area .greet-area-box .inner {
  position: relative;
  max-width: 700px;
  margin: auto;
  z-index: 1;
}
@media all and (max-width: 896px) {
  .greet-area {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
    margin-bottom: 80px;
  }
  .greet-area:before {
    width: 100%;
    height: auto;
    top: 0;
    padding-bottom: 56.25%;
  }
  .greet-area .greet-area-box {
    width: 100%;
    margin: 56.25% auto 0 !important;
    padding: 30px 15px;
  }
  .greet-area .greet-area-box::before, .greet-area .greet-area-box::after {
    display: none;
  }
}

.greet-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  z-index: 2;
  padding-top: 50px;
  margin-bottom: 60px;
}
.greet-img li {
  width: 25%;
  height: 400px;
  padding: 0 10px;
}
.greet-img li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media all and (max-width: 639px) {
  .greet-img {
    padding-top: 20px;
  }
  .greet-img li {
    width: 50%;
    height: 150px;
    padding: 0;
  }
}

.top-lead {
  position: relative;
}
.top-lead:before {
  position: absolute;
  content: "";
  left: 50%;
  top: 69%;
  width: 250px;
  height: 220px;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28144/top-lead.webp) no-repeat center/contain;
  opacity: 0.2;
}
.top-lead-box {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.8rem;
  color: #49624e;
  text-align: center;
  line-height: 2;
  font-weight: 600;
  letter-spacing: 0.1em;
}
@media all and (max-width: 639px) {
  .top-lead-box {
    font-size: 1.3rem;
    text-align: left;
  }
}

.products_erea {
  margin-top: 80px;
}
@media all and (max-width: 896px) {
  .products_erea {
    margin-top: 40px;
  }
}
.products_erea ul li a img {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.products_erea ul li a:hover img {
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
}

.list4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px 0.5%;
}
@media all and (max-width: 896px) {
  .list4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media all and (max-width: 639px) {
  .list4 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.list4.type1 li {
  position: relative;
  padding: 20px;
  background: #fff;
}
.list4.type1 li:after {
  position: absolute;
  content: "";
  right: 11%;
  bottom: -50%;
  width: 100%;
  height: 50%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ccc), color-stop(25%, #eee), color-stop(40%, transparent));
  background-image: linear-gradient(to bottom, #ccc 0%, #eee 25%, transparent 40%);
  -webkit-transform: skew(-25deg);
          transform: skew(-25deg);
  z-index: -1;
  opacity: 0.7;
}

.list3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 2.5%;
  list-style: none;
}
@media all and (max-width: 896px) {
  .list3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media all and (max-width: 639px) {
  .list3 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.list3.type1 li {
  position: relative;
  padding: 20px;
  background: #fff;
}
.list3.type1 li:after {
  position: absolute;
  content: "";
  right: 11%;
  bottom: -50%;
  width: 100%;
  height: 50%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ccc), color-stop(25%, #eee), color-stop(40%, transparent));
  background-image: linear-gradient(to bottom, #ccc 0%, #eee 25%, transparent 40%);
  -webkit-transform: skew(-25deg);
          transform: skew(-25deg);
  z-index: -1;
  opacity: 0.7;
}
.list3.type2 li:nth-child(2) {
  margin-top: 50px;
}
@media all and (max-width: 639px) {
  .list3.type2 li:nth-child(2) {
    margin-top: 0;
  }
}
.list3.type2 li:nth-child(3) {
  margin-top: 100px;
}
@media all and (max-width: 639px) {
  .list3.type2 li:nth-child(3) {
    margin-top: 0;
  }
}
@media all and (max-width: 896px) {
  .list3.type2 li {
    width: 80%;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
  .list3.type2 li:nth-child(2) {
    margin-top: 50px;
  }
  .list3.type2 li:nth-child(3) {
    margin-top: 50px;
    margin-right: auto;
  }
}
@media all and (max-width: 639px) {
  .list3.type2 li {
    width: 100%;
    padding: 0 15px;
  }
}

.products_erea {
  margin-top: 80px;
}
@media all and (max-width: 896px) {
  .products_erea {
    margin-top: 40px;
  }
}
.products_erea ul li a img {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.products_erea ul li a:hover img {
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
}

.point_figure {
  position: relative;
  padding-right: 80px;
  margin-bottom: 30px;
  padding-bottom: 16px;
}
.point_figure figure {
  position: relative;
  margin-bottom: 20px;
  padding: 15px;
  background: #fff;
  border: 3px solid #ffedeb;
  border-radius: 40px 15px 40px 15px;
  -webkit-box-shadow: 0 8px 20px rgba(255, 183, 178, 0.2);
          box-shadow: 0 8px 20px rgba(255, 183, 178, 0.2);
  overflow: visible;
}
.point_figure figure::after {
  content: "🍃";
  position: absolute;
  top: -15px;
  left: 20px;
  font-size: 24px;
  -webkit-transform: rotate(-15deg);
          transform: rotate(-15deg);
}
.point_figure figure::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, #fff5f3 0%, #ffffff 100%);
  z-index: -1;
}
.point_figure figure img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 30px 10px 30px 10px;
  -webkit-filter: sepia(10%) contrast(105%);
          filter: sepia(10%) contrast(105%);
}
@media all and (max-width: 896px) {
  .point_figure {
    padding-right: 0;
    margin-bottom: 15px;
    padding-bottom: 30px;
  }
  .point_figure figure {
    padding: 10px;
  }
  .point_figure figure img {
    height: 300px;
  }
}
@media all and (max-width: 639px) {
  .point_figure {
    margin-bottom: 5px;
  }
  .point_figure figure img {
    height: 250px;
  }
}

.point_txt {
  color: #5c4332;
}

.point_title {
  position: absolute;
  top: 0;
  right: 0;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  font-size: 2.6rem;
  font-weight: 600;
  text-align: left;
  line-height: 1.3;
}
.point_title span {
  display: block;
  color: #fff;
  font-size: 2rem;
  letter-spacing: 0.3rem;
}
.point_title.type01 {
  color: #ff5f5f;
  top: -20px;
}
.point_title.type01 span {
  text-shadow: 1px 1px 0px #ff5f5f, -1px 1px 0px #ff5f5f, 1px -1px 0px #ff5f5f, -1px -1px 0px #ff5f5f, 1px 0px 0px #ff5f5f, 0px 1px 0px #ff5f5f, -1px 0px 0px #ff5f5f, 0px -1px 0px #ff5f5f;
}
.point_title.type02 {
  color: #669933;
}
.point_title.type02 span {
  text-shadow: 1px 1px 0px #669933, -1px 1px 0px #669933, 1px -1px 0px #669933, -1px -1px 0px #669933, 1px 0px 0px #669933, 0px 1px 0px #669933, -1px 0px 0px #669933, 0px -1px 0px #669933;
}
.point_title.type03 {
  color: rgb(255, 171.5, 171.5);
}
.point_title.type03 span {
  text-shadow: 1px 1px 0px rgb(255, 171.5, 171.5), -1px 1px 0px rgb(255, 171.5, 171.5), 1px -1px 0px rgb(255, 171.5, 171.5), -1px -1px 0px rgb(255, 171.5, 171.5), 1px 0px 0px rgb(255, 171.5, 171.5), 0px 1px 0px rgb(255, 171.5, 171.5), -1px 0px 0px rgb(255, 171.5, 171.5), 0px -1px 0px rgb(255, 171.5, 171.5);
}
@media all and (max-width: 1210px) {
  .point_title {
    font-size: 2.4rem;
  }
  .point_title span {
    font-size: 1.8rem;
  }
}
@media all and (max-width: 1200px) {
  .point_title {
    font-size: 2rem;
  }
  .point_title span {
    font-size: 1.6rem;
  }
}
@media all and (max-width: 896px) {
  .point_title {
    -webkit-writing-mode: unset;
        -ms-writing-mode: unset;
            writing-mode: unset;
    bottom: 0;
    top: auto;
    left: 0;
  }
  .point_title.type01 {
    top: auto;
  }
  .point_title.type01, .point_title.type02, .point_title.type03 {
    margin-bottom: 5px;
  }
}
@media all and (max-width: 639px) {
  .point_title {
    font-size: 2rem;
    line-height: 1.5;
  }
  .point_title span {
    font-size: 1.2rem;
  }
}

/* --top-bnr-list--
----------------------------------*/
.top-bnr-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1500px;
  margin: 0 auto;
}
.top-bnr-list > li {
  width: 23.5%;
}
.top-bnr-list > li a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.top-bnr-list > li a:hover {
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.top-bnr-list > li a:hover .btn-arrow {
  background: #9d0736;
}
.top-bnr-list > li a:hover .btn-arrow i {
  border-bottom-color: #fefefe;
}
.top-bnr-list > li a:hover .btn-arrow i:before {
  border-right-color: #fefefe;
}
.top-bnr-list > li a:hover .top-bnr-img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
@media all and (max-width: 1200px) {
  .top-bnr-list {
    width: 85%;
    margin: 0 auto;
  }
  .top-bnr-list > li {
    width: 48%;
    margin-bottom: 20px;
  }
}
@media all and (max-width: 639px) {
  .top-bnr-list {
    width: 95%;
  }
  .top-bnr-list > li {
    width: 100%;
  }
}
.top-bnr-list .top-bnr-img {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 20px;
}
.top-bnr-list .top-bnr-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
@media all and (max-width: 639px) {
  .top-bnr-list .top-bnr-img {
    height: 180px;
  }
}
.top-bnr-list .btn-arrow {
  width: 60px;
  height: 60px;
  position: absolute;
  right: 20px;
  bottom: 30px;
  text-align: center;
  line-height: 60px;
  background: #fefefe;
  border: 2px solid #9d0736;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
@media all and (max-width: 639px) {
  .top-bnr-list .btn-arrow {
    bottom: 25px;
  }
}
.top-bnr-list .btn-arrow i {
  display: block;
  position: absolute;
  width: 30px;
  border-bottom: 2px solid #9d0736;
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: 5px;
}
.top-bnr-list .btn-arrow i:before {
  position: absolute;
  width: 10px;
  height: 8px;
  content: "";
  right: 3px;
  bottom: -2px;
  border-right: 3px solid #9d0736;
  -webkit-transform: skew(45deg);
          transform: skew(45deg);
}
.top-bnr-list .top-bnr-title {
  font-weight: 600;
  padding: 15px;
  line-height: 1.4;
}
.top-bnr-list .top-bnr-title .eng {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: 2rem;
  color: #9d0736;
  display: block;
}
.top-bnr-list .top-bnr-title .ja {
  font-size: 1.7rem;
  display: block;
  color: #333;
}
@media all and (max-width: 639px) {
  .top-bnr-list .top-bnr-title {
    padding: 10px 5px;
  }
  .top-bnr-list .top-bnr-title .eng {
    font-size: 1.5rem;
  }
  .top-bnr-list .top-bnr-title .ja {
    font-size: 1.3rem;
  }
}

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

.news-title {
  text-align: center;
  font-weight: 500;
  border-right: 3px solid #f0f0f0;
  padding: 5px 20px;
  color: #111;
}
.news-title span {
  font-size: 2.2rem;
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #ff5f5f;
}
@media all and (max-width: 639px) {
  .news-title {
    padding: 5px 10px;
    text-align: left;
    font-size: 1.2rem;
    border-right: 0;
    border-left: 3px solid #f0f0f0;
  }
  .news-title span {
    font-size: 2rem;
  }
}

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

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

/*----------------------------------
 --others--
----------------------------------*/
.img-gray {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-transition: -webkit-filter 0.2s ease-in;
  transition: -webkit-filter 0.2s ease-in;
  transition: filter 0.2s ease-in;
  transition: filter 0.2s ease-in, -webkit-filter 0.2s ease-in;
}
.img-gray:hover {
  -webkit-filter: grayscale(0);
  -moz-filter: grayscale(0);
  -ms-filter: grayscale(0);
  -o-filter: grayscale(0);
  filter: grayscale(0);
}

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

.single02 {
  margin: 0 auto;
  padding: 100px 0;
}

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

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

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

.lsingle {
  float: left;
}

.rsingle {
  float: right;
}

.mbox {
  background: #fefefe;
  padding: 40px 30px;
  max-width: 1500px;
  border-radius: 20px;
  margin-left: auto;
  margin-right: auto;
}
.mbox.transparent {
  background: none;
}
.mbox {
  margin-right: auto;
}
@media all and (max-width: 639px) {
  .mbox {
    padding: 20px 15px;
  }
}

.mbox2 {
  background: rgba(255, 95, 95, 0.2);
  margin-right: auto;
  margin-left: auto;
  padding: 30px;
}
@media all and (max-width: 639px) {
  .mbox2 {
    padding: 15px;
  }
}

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

.bg-white {
  background: #fff;
}
.bg-white.type1 {
  background: transparent;
  position: relative;
}
.bg-white.type1:after {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  width: calc(100% - 80px);
  height: calc(100% - 80px);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #fefefe;
}
@media all and (max-width: 896px) {
  .bg-white.type1:after {
    width: calc(100% - 20px);
    height: calc(100% - 40px);
  }
}
.bg-white.type1 .inner {
  position: relative;
  z-index: 3;
}

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

.bg-fixed {
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  height: 480px;
}
@media all and (max-width: 896px) {
  .bg-fixed {
    background-attachment: scroll;
    height: 270px;
  }
}
.bg-fixed.fixed01 {
  background-image: url(../img/fixed01.jpg);
  background-position: center;
}

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

#main {
  float: left;
  width: 76%;
}
@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;
  }
}

/* 2column */
#col2-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}
#col2-wrap #col2-main {
  width: 78%;
}
@media all and (max-width: 896px) {
  #col2-wrap #col2-main {
    width: 100%;
    margin: 0 auto;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
#col2-wrap #col2-side {
  width: 20%;
  padding: 60px 0 0;
}
@media all and (max-width: 896px) {
  #col2-wrap #col2-side {
    width: 95%;
    margin: 0 auto 20px;
    padding-top: 30px;
  }
}

/* mtitle
----------------------------------*/
.mtitle {
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 50px;
  font-size: 1.5rem;
  position: relative;
  text-align: center;
  letter-spacing: 0.2rem;
}
.mtitle span {
  display: block;
  font-size: 4rem;
  margin-bottom: -5px;
  color: #ff9292;
  line-height: 1.5;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1rem;
}
.mtitle.white {
  color: #fff;
}
.mtitle.white span {
  color: #fefefe;
}
.mtitle.center {
  text-align: center;
}
.mtitle.mtitle_left {
  text-align: left;
}
@media all and (max-width: 639px) {
  .mtitle {
    font-size: 1.3rem;
    text-align: center;
  }
  .mtitle span {
    font-size: 2.6rem;
    line-height: 1.4;
    margin-bottom: 0px;
  }
}

.mtitle2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #ff5f5f;
  line-height: 1.3;
  font-weight: 600;
  padding-bottom: 5px;
}
.mtitle2 .en {
  font-size: 1.4rem;
  letter-spacing: 0.1rem;
  color: #ff9292;
  font-family: "Montserrat", sans-serif;
  font-weight: normal;
  display: block;
}
.mtitle2 .small {
  font-size: 0.9em;
  color: #669933;
  padding-left: 10px;
}
@media all and (max-width: 639px) {
  .mtitle2 {
    font-size: 1.5rem;
    padding-bottom: 5px;
  }
  .mtitle2 .en {
    font-size: 1.3rem;
    display: block;
  }
}
.mtitle2.white {
  color: #fefefe;
}
.mtitle2.white span {
  color: #ffc5c5;
}

.mtitle3 {
  font-size: 1.8rem;
  font-weight: bold;
  color: #254900;
}
.mtitle3 span {
  display: block;
  color: #5c4332;
  font-size: 1.4rem;
  margin-top: 4px;
}
.mtitle3 {
  margin-bottom: 15px;
}
@media all and (max-width: 896px) {
  .mtitle3 {
    font-size: 1.4rem;
  }
  .mtitle3 span {
    font-size: 13px;
  }
}

.mtitle-bll {
  font-size: 1.6rem;
  font-weight: bold;
  border-bottom: 2px solid #f0efec;
  position: relative;
  padding-bottom: 5px;
  margin-bottom: 10px;
  line-height: 1.5;
  color: #ff5f5f;
}
.mtitle-bll:after {
  position: absolute;
  content: "";
  display: block;
  bottom: -2px;
  width: 100px;
  height: 2px;
  left: 0;
  background: #ff5f5f;
}
@media all and (max-width: 639px) {
  .mtitle-bll {
    font-size: 1.4rem;
  }
}

.mtitle4 {
  text-align: center;
  font-size: 1.7rem;
  line-height: 1.5;
  letter-spacing: 0.1rem;
  font-weight: 600;
}
.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: 3rem;
  background-color: #ff5f5f;
}
.mtitle4 span:before {
  left: -11px;
  -webkit-transform: rotate(-20deg);
  transform: rotate(-20deg);
}
.mtitle4 span:after {
  right: -11px;
  -webkit-transform: rotate(20deg);
  transform: rotate(20deg);
}
.mtitle4.white span:before, .mtitle4.white span:after {
  background-color: #ffe53b;
}
@media all and (max-width: 639px) {
  .mtitle4 {
    font-size: 1.4rem;
  }
}
@media all and (max-width: 320px) {
  .mtitle4 span:before {
    left: -3px;
  }
  .mtitle4 span:after {
    right: -3px;
  }
}

.mtitle5 {
  margin: -74px -30px 40px;
  text-align: center;
  position: relative;
}
.mtitle5:before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  width: 100%;
  height: 3px;
  z-index: 1;
  background: #269892;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.mtitle5 span {
  display: inline-block;
  padding: 8px 15px;
  background: #269892;
  font-size: 3.5rem;
  color: #fff;
  position: relative;
  z-index: 2;
}
@media all and (max-width: 639px) {
  .mtitle5 {
    margin: -42px -15px 30px;
  }
  .mtitle5 span {
    font-size: 1.7rem;
    line-height: 1.4;
  }
}

.mtitle_sub {
  padding-left: 0.5em;
  font-weight: 700;
  line-height: 1.3;
  position: relative;
  border-left: 6px solid #b9d6c3;
  margin-bottom: 15px;
  font-size: 1.8rem;
  color: #254900;
}
.mtitle_sub:before {
  position: absolute;
  left: -6px;
  bottom: 0;
  content: "";
  width: 6px;
  height: 50%;
  background-color: #49624e;
}
@media all and (max-width: 639px) {
  .mtitle_sub {
    font-size: 1.4rem;
  }
}

.mtitle_box {
  background-image: -webkit-gradient(linear, right top, left top, from(#ff5f5f), to(#669933));
  background-image: linear-gradient(to left, #ff5f5f, #669933);
  color: #fff;
  font-size: 1.7rem;
  position: relative;
  padding: 10px;
  margin-bottom: 20px;
  font-weight: bold;
}
.mtitle_box span {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  padding-right: 10px;
  color: #555;
}
.mtitle_box:before {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f30a";
  font-weight: bold;
  display: block;
  right: -1px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #fff;
}
@media all and (max-width: 639px) {
  .mtitle_box {
    font-size: 1.4rem;
  }
  .mtitle_box span {
    font-size: 1.6rem;
  }
}

.mtitle_box2 {
  background: #63b6af;
  font-size: 2.2rem;
  color: #fff;
  position: relative;
  font-weight: bold;
  letter-spacing: 0.1rem;
}
.mtitle_box2 span {
  position: absolute;
  font-size: 5rem;
  opacity: 0.5;
  left: 0;
  top: -75px;
  color: #555;
  letter-spacing: 0.2rem;
}
.mtitle_box2 {
  padding: 15px 10px 15px 20px;
  margin-bottom: 25px;
}
.mtitle_box2 .small-cap {
  font-weight: normal;
  font-size: 14px;
}
@media all and (max-width: 639px) {
  .mtitle_box2 {
    font-size: 15px;
    line-height: 1.5;
    padding: 10px 10px 10px 15px;
    padding-right: 40px;
  }
  .mtitle_box2 span {
    font-size: 3rem;
    top: -40px;
    opacity: 0.3;
  }
}

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

.mtext2 {
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 0.1rem;
  line-height: 1.4;
}
@media all and (max-width: 639px) {
  .mtext2 {
    font-size: 1.8rem;
  }
  .mtext2 sapn {
    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: bold;
  margin-right: 5px;
  color: #ff5f5f;
}

/* btn
----------------------------------*/
.top-btnwrap {
  padding: 0 15px;
}

.button-41 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  max-width: 350px;
  margin: 0 auto;
  padding: 0.7em 2em;
  border: none;
  border-radius: 50px;
  background: #ff5f5f;
  color: #fff;
  font-size: 1em;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  -webkit-box-shadow: 0 4px 0 #ff5f5f, 0 7px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 0 #ff5f5f, 0 7px 10px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media all and (max-width: 639px) {
  .button-41 {
    font-size: 0.8em;
  }
}
.button-41:hover {
  -webkit-box-shadow: 0 0 0 #ff5f5f, 0 0 0 rgba(0, 0, 0, 0);
          box-shadow: 0 0 0 #ff5f5f, 0 0 0 rgba(0, 0, 0, 0);
  -webkit-transform: translateY(4px);
          transform: translateY(4px);
}
.button-41:active {
  -webkit-filter: brightness(0.95);
          filter: brightness(0.95);
}
.button-41.sbc {
  background-color: #669933;
  -webkit-box-shadow: 0 4px 0 #669933, 0 7px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 0 #669933, 0 7px 10px rgba(0, 0, 0, 0.1);
}
.button-41.sbc:hover {
  -webkit-box-shadow: 0 0 0 #669933, 0 0 0 rgba(0, 0, 0, 0);
          box-shadow: 0 0 0 #669933, 0 0 0 rgba(0, 0, 0, 0);
}

.btn01 a {
  border: 2px solid #254900;
  text-align: center;
  width: 300px;
  margin: 20px auto;
  color: #254900;
  display: block;
  padding: 10px 5px;
  font-weight: bold;
  border-radius: 35px;
}
.btn01 a.white {
  color: #fff;
  border: 2px solid #fff;
}
.btn01 a:hover {
  background: #ff5f5f;
  color: #fff;
  border-color: #9d0736;
}
@media all and (max-width: 639px) {
  .btn01 a {
    width: 95%;
  }
}
.btn01.type1 a {
  margin: 20px 0;
}

.btn02 {
  width: 350px;
  margin: 20px auto 20px;
}
.btn02 a {
  display: block;
  position: relative;
  padding: 15px 0;
  background-color: #ff5f5f;
  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;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn02 a:hover i {
  width: 34px;
}
@media all and (max-width: 639px) {
  .btn02 {
    width: 280px;
  }
  .btn02 a {
    font-size: 1.2rem;
  }
}

.btn-img01 {
  margin: 15px auto;
  text-align: center;
}

/* news
----------------------------------*/
.news {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.news dt {
  width: 7em;
  padding: 5px;
  text-align: center;
  color: #fff;
  font-weight: 600;
}
.news dd {
  padding: 5px;
  background: #fff;
  width: calc(100% - 8em);
  margin-left: 10px;
  line-height: 1.6;
}
.news dd a {
  color: #333;
}
.news dt:not(:last-of-type),
.news dd:not(:last-of-type) {
  margin-bottom: 5px;
}

.news-bl dt {
  float: left;
  width: 8em;
  padding: 5px 5px;
  line-height: 1.3;
  letter-spacing: 0;
  text-align: center;
  font-size: 0.9em;
  background: #254900;
  color: #fefefe;
  border-radius: 20px;
}
.news-bl dd {
  padding: 3px 0 10px 9.5em;
  line-height: 1.6;
  border-bottom: 1px dotted #dddddd;
  margin: 0 0 10px;
}
.news-bl dd a {
  color: #ff2c2c;
  font-weight: 700;
}
.news-bl dd:last-child {
  margin: 0;
  border-bottom: none;
}
@media all and (max-width: 639px) {
  .news-bl dt {
    float: none;
  }
  .news-bl dd {
    padding: 5px;
  }
}

/* page-title
----------------------------------*/
.page-title {
  position: relative;
  z-index: 1;
}
.page-title:before {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(135deg, rgba(219, 112, 147, 0.3) 0%, rgba(199, 21, 133, 0.5) 100%);
}
.page-title.page1:before {
  background-image: linear-gradient(135deg, rgba(219, 112, 147, 0.3) 0%, rgba(199, 21, 133, 0.5) 100%), url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28144/page1.webp);
  background-repeat: no-repeat;
  background-position: center 20%;
  background-size: cover;
}
.page-title.page2:before {
  background-image: linear-gradient(135deg, rgba(219, 112, 147, 0.3) 0%, rgba(199, 21, 133, 0.5) 100%), url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28144/page2.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.page-title.page3:before {
  background-image: linear-gradient(135deg, rgba(219, 112, 147, 0.3) 0%, rgba(199, 21, 133, 0.5) 100%), url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28144/page3.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.page-title.page4:before {
  background-image: linear-gradient(135deg, rgba(219, 112, 147, 0.3) 0%, rgba(199, 21, 133, 0.5) 100%), url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28144/page4.webp);
  background-repeat: no-repeat;
  background-position: center 65%;
  background-size: cover;
}
.page-title.page5:before {
  background-image: linear-gradient(135deg, rgba(219, 112, 147, 0.7) 0%, rgba(199, 21, 133, 0.5) 100%), url(../img/page5.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.page-title .inner {
  margin: 0 auto;
  padding: 240px 0 30px;
  max-width: 1200px;
}
.page-title .page-lead {
  margin: 0 auto;
  padding: 20px 0;
  position: relative;
}
.page-title .page-lead .mtitle {
  margin-bottom: 0;
  color: #fff;
}
.page-title .page-lead .mtitle span {
  font-size: 7rem;
  line-height: 1.4;
  color: #fff;
}
@media all and (max-width: 896px) {
  .page-title {
    background-attachment: scroll;
  }
  .page-title .inner {
    width: 99%;
    height: auto;
    padding: 90px 0 30px;
    margin-bottom: 20px;
  }
  .page-title .page-lead {
    width: 90%;
    padding: 0;
  }
}
@media all and (max-width: 639px) {
  .page-title .page-lead {
    padding: 20px 0 0;
  }
  .page-title .page-lead .mtitle {
    font-size: 1.3rem;
  }
  .page-title .page-lead .mtitle span {
    font-size: 2.6rem;
    letter-spacing: 0;
  }
}

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

.bg-02 {
  background: url(../img/grid2.png);
}

.bg-gradient {
  background-image: -webkit-gradient(linear, left top, right top, from(rgb(239.1714285714, 231.2571428571, 215.4285714286)), to(#fcfcfc));
  background-image: linear-gradient(to right, rgb(239.1714285714, 231.2571428571, 215.4285714286) 0%, #fcfcfc 100%);
}

.bg-contents {
  position: relative;
}
.bg-contents:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 300px;
  z-index: -1;
  background: #669933;
  opacity: 0.8;
}
@media all and (max-width: 896px) {
  .bg-contents:before {
    height: 78%;
    opacity: 0.5;
    bottom: 2%;
  }
}

.bg-maru1 {
  background: #ff5f5f;
  max-width: calc(100% - 50px);
  margin-left: auto;
  margin-right: auto;
}
@media all and (max-width: 896px) {
  .bg-maru1 {
    max-width: calc(100% - 15px);
  }
}
.bg-maru1 {
  margin: 50px auto;
  border-radius: 20px;
}
@media all and (max-width: 639px) {
  .bg-maru1 {
    border-radius: 10px;
  }
}

.bg-maru2 {
  position: relative;
  margin: 50px auto;
}
.bg-maru2:before {
  position: absolute;
  content: "";
  left: 50%;
  top: 0;
  width: calc(100% - 60px);
  height: 100%;
  z-index: -1;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #f0efec;
  opacity: 0.7;
}
@media all and (max-width: 639px) {
  .bg-maru2:before {
    width: 100%;
  }
}

.bg-base {
  position: relative;
}
.bg-base:before {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  z-index: -1;
  background: #fff6f6;
  width: calc(100% - 80px);
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media all and (max-width: 896px) {
  .bg-base:before {
    width: calc(100% - 20px);
    height: 100%;
  }
}
.bg-base.w100:before {
  width: 100%;
}
.bg-base.type-beige:before {
  background: #f5f0e6;
  opacity: 1;
}
.bg-base.type-gray:before {
  background: #f7f8f8;
}

.bg-sub {
  position: relative;
}
.bg-sub:before {
  position: absolute;
  content: "";
  z-index: -1;
  /* 画面いっぱいに広げる設定 */
  top: 0;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  height: 100%;
  background: #669933;
}
.bg-sub {
  /* クラス名も念のため sub 用に整理 */
}
.bg-sub.type-light:before {
  background: #99cc66;
}

.bg-blue {
  background: #63b6af;
}

.bg-gray {
  position: relative;
  background: rgba(240, 239, 236, 0.7);
}
.bg-gray.bg-half {
  position: relative;
  margin-bottom: 40px;
  background: transparent;
}
.bg-gray.bg-half:after {
  position: absolute;
  content: "";
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: calc(100% - 60px);
  height: 60%;
  bottom: 0;
  background: #edf1ef;
  opacity: 0.7;
  z-index: -2;
}
@media all and (max-width: 639px) {
  .bg-gray.bg-half:after {
    height: 80%;
    width: calc(100% - 30px);
  }
}

.bg-beige {
  background: rgba(245, 240, 230, 0.8);
}

.bg-beige2 {
  background: rgba(245, 240, 230, 0.8);
  max-width: calc(100% - 50px);
  margin-left: auto;
  margin-right: auto;
}
@media all and (max-width: 896px) {
  .bg-beige2 {
    max-width: calc(100% - 15px);
  }
}
.bg-beige2 {
  border-radius: 20px;
  margin-bottom: 50px;
}
@media all and (max-width: 639px) {
  .bg-beige2 {
    border-radius: 10px;
  }
}

/* tbl
----------------------------------*/
.tbl {
  width: 100%;
}
.tbl th,
.tbl td {
  padding: 15px;
  vertical-align: middle;
  border: 1px solid #669933;
}
.tbl th {
  background: rgba(255, 95, 95, 0.5);
  text-align: left;
}
.tbl th span {
  font-size: 1.4rem;
}
.tbl th.th-1 {
  width: 25%;
}
.tbl th.cell02 {
  width: 20%;
}
.tbl th.cell03 {
  width: 22.5%;
}
@media all and (max-width: 639px) {
  .tbl {
    font-size: 1.1rem;
  }
  .tbl th,
  .tbl td {
    padding: 10px;
  }
}
.tbl .cell01 {
  width: 45%;
}
.tbl .cell02 {
  width: 25%;
}

.tbl_new {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 2px solid #ff5f5f;
  border-radius: 12px;
  overflow: hidden;
}
.tbl_new thead tr th {
  background: #ff5f5f;
  color: #fff;
  font-weight: 700 !important;
  text-align: center;
  padding: 18px 10px;
  border-bottom: 2px solid #ff5f5f;
}
.tbl_new thead tr th small {
  display: block;
  font-weight: 400;
  opacity: 0.9;
  margin-top: 4px;
}
.tbl_new tbody tr th, .tbl_new tbody tr td {
  vertical-align: middle;
  padding: 15px 10px;
  font-weight: 500 !important;
  color: #444;
}
.tbl_new tbody tr th span, .tbl_new tbody tr td span {
  font-size: 1.2rem;
  letter-spacing: 0.08em;
}
@media all and (max-width: 896px) {
  .tbl_new tbody tr th span, .tbl_new tbody tr td span {
    font-size: 1.05rem;
  }
}
@media all and (max-width: 639px) {
  .tbl_new tbody tr th span, .tbl_new tbody tr td span {
    font-size: 1rem;
  }
}
.tbl_new tbody tr th small, .tbl_new tbody tr td small {
  color: #666;
}
.tbl_new tbody tr th {
  background: #f7f9f5;
  padding-left: 25px;
  font-weight: 700 !important;
  border-right: 1px solid rgba(255, 95, 95, 0.2);
  color: rgb(76.5, 114.75, 38.25);
}
.tbl_new tbody tr td {
  text-align: center;
}
.tbl_new tbody tr td:first-of-type {
  border-right: 1px solid rgba(255, 95, 95, 0.1);
}
.tbl_new tbody tr:nth-child(even) td {
  background: #fff5f5;
}
@media all and (max-width: 639px) {
  .tbl_new {
    border: none;
    border-radius: 0;
    overflow: visible;
  }
  .tbl_new thead {
    display: none;
  }
  .tbl_new tbody {
    display: block;
  }
  .tbl_new tbody tr {
    display: block;
    background: #fff;
    border: 2px solid #ff5f5f;
    border-radius: 12px;
    margin-bottom: 18px;
    overflow: hidden;
    -webkit-box-shadow: 0 4px 10px rgba(255, 95, 95, 0.08);
            box-shadow: 0 4px 10px rgba(255, 95, 95, 0.08);
  }
  .tbl_new tbody tr th, .tbl_new tbody tr td {
    display: block;
    width: 100%;
    padding: 12px 10px;
    line-height: 1.8;
    letter-spacing: 0.1em;
    text-align: center;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border: none !important;
  }
  .tbl_new tbody tr th small, .tbl_new tbody tr td small {
    color: #fff;
  }
  .tbl_new tbody tr th {
    background: #ff5f5f !important;
    color: #fff !important;
    padding: 10px 0;
  }
  .tbl_new tbody tr td:nth-of-type(1) {
    background: #fff !important;
    border-bottom: 1px dashed rgba(255, 95, 95, 0.3) !important;
  }
  .tbl_new tbody tr td:nth-of-type(1)::before {
    content: "【 80サイズ（約2kg箱） 】 ";
    display: block;
    color: #ff5f5f;
    font-weight: 700;
    margin-bottom: 3px;
  }
  .tbl_new tbody tr td:nth-of-type(2) {
    background: #fff5f5 !important;
  }
  .tbl_new tbody tr td:nth-of-type(2)::before {
    content: "【 100サイズ（約4kg箱） 】 ";
    display: block;
    color: #ff5f5f;
    font-weight: 700;
    margin-bottom: 3px;
  }
}

.tbl-border {
  width: 100%;
}
.tbl-border th,
.tbl-border td {
  padding: 15px;
  vertical-align: middle;
  border-bottom: 2px solid #f2f2f2;
}
.tbl-border th {
  width: 20%;
  text-align: left;
  color: #ff5f5f;
  border-bottom-color: #ff9292;
}
@media all and (max-width: 639px) {
  .tbl-border th {
    width: 30%;
  }
}

.history {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 15px;
}
.history th,
.history td {
  vertical-align: middle;
  border-radius: 12px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.history th {
  white-space: nowrap;
  background: white;
  color: #ff5f5f;
  font-weight: 700;
  text-align: center;
  border: 2px solid #ff5f5f;
  padding: 15px 20px;
}
.history td {
  background: #fff;
  color: #5c4332;
  border-bottom: 3px dotted rgb(255, 222.5, 222.5);
  line-height: 1.6;
  font-weight: 700;
  padding: 15px 20px;
}
@media all and (max-width: 639px) {
  .history {
    display: block;
  }
  .history tbody, .history tr, .history th, .history td {
    display: block;
    width: auto !important;
  }
  .history tr {
    margin-bottom: 30px;
  }
  .history th {
    background: #fff;
    padding: 12px;
    margin-bottom: 8px;
    position: relative;
  }
  .history th::after {
    content: "▼";
    position: absolute;
    bottom: -22px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    color: #ffc5c5;
    font-size: 0.7rem;
  }
  .history td {
    border-bottom: none;
    text-align: center;
    padding: 15px 10px;
  }
}

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

.tbl0 {
  width: 100%;
}
.tbl0 th,
.tbl0 td {
  padding: 3px 5px;
  border: 0;
  border-bottom: 1px dashed #ddd;
}
.tbl0 th {
  padding-left: 0;
  background: none;
  text-align: left;
  width: 35%;
  color: #111;
}
.tbl0 th:after, .tbl0 th:before {
  display: none;
}
@media all and (max-width: 639px) {
  .tbl0 th {
    width: 60%;
  }
}

/* map / video
----------------------------------*/
.ggmap {
  position: relative;
  padding-bottom: 46.25%;
  height: 0;
  overflow: hidden;
}
.ggmap iframe,
.ggmap object,
.ggmap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.ggmap.footer-map {
  padding-bottom: 55.25%;
}

.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_common li {
  padding-bottom: 5px;
  padding-left: 1rem;
  margin-bottom: 8px;
  border-bottom: 1px dotted #cccccc;
}
.list_common li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
.list_common li .check_num {
  width: 30px;
  height: 30px;
  background: #ff5f5f;
  color: #fff;
  border-radius: 100px;
  line-height: 30px;
  text-align: center;
  font-weight: bold;
  display: inline-block;
  margin-right: 10px;
}

.list_disc {
  padding: 15px 0;
  border-top: 3px solid #f5f0e6;
  border-bottom: 3px solid #f5f0e6;
}
.list_disc li {
  padding: 4px 8px 4px 20px;
  position: relative;
  color: #5c4332;
}
.list_disc li:before {
  position: absolute;
  content: "";
  left: 8px;
  top: 50%;
  width: 4px;
  height: 4px;
  margin-top: -2px;
  background: #ff5f5f;
  border-radius: 4px;
}

.list_check li {
  padding-bottom: 8px;
  font-weight: bold;
}
.list_check li span {
  font-weight: normal;
  font-size: 0.9em;
  display: block;
  padding: 10px;
  background: rgba(245, 240, 230, 0.2);
  margin-top: 10px;
}
.list_check li:not(:last-child) {
  margin-bottom: 8px;
  border-bottom: 2px dashed #f5f0e6;
}
.list_check li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f054";
  font-weight: bold;
  margin-right: 8px;
  color: rgb(215.8571428571, 196.2857142857, 157.1428571429);
}
@media all and (max-width: 639px) {
  .list_check li {
    width: 98%;
    margin: 0 auto 10px;
    font-size: 1.3rem;
  }
}

.list_check2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 10px;
  background: #fefefe;
}
.list_check2 li {
  width: 48%;
  padding: 5px;
  margin-bottom: 5px;
  margin-right: 4%;
}
.list_check2 li:nth-child(2n) {
  margin-right: 0;
}
@media all and (max-width: 639px) {
  .list_check2 li:nth-child(2n) {
    margin-right: auto;
  }
}
.list_check2 li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f054";
  font-weight: bold;
  margin-right: 10px;
  color: #9d0736;
}
@media all and (max-width: 639px) {
  .list_check2 li {
    width: 100%;
    margin: 0 auto 5px;
  }
}

.ol-list {
  counter-reset: number;
  /* 名前を付けたカウンターをリセット */
  list-style: none;
  /* olが数字を付けることをキャンセル */
  padding: 10px;
}
.ol-list > li {
  line-height: 2;
  border-bottom: 1px dashed #eee;
  margin-bottom: 10px;
  padding: 5px 0 8px;
  padding-left: 50px;
  font-weight: bold;
  position: relative;
  line-height: 1.6;
  font-weight: bold;
  font-size: 1.8rem;
}
.ol-list > li .small {
  font-weight: normal;
  display: block;
  padding: 10px;
  line-height: 1.6;
  font-size: initial;
}
.ol-list > li:before {
  counter-increment: number;
  content: counter(number);
  background: #ff5f5f;
  position: absolute;
  width: 2em;
  height: 2em;
  text-align: center;
  font-family: "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-size: 2rem;
  line-height: 2em;
  color: #fefefe;
  left: 0;
  top: 0px;
  border-radius: 100%;
}
@media all and (max-width: 639px) {
  .ol-list > li {
    font-size: 1.3rem;
  }
  .ol-list > li span {
    font-size: 0.9em;
  }
  .ol-list > li:before {
    font-size: 1.8rem;
  }
}

.list-type1 li {
  display: inline-block;
  padding: 2px 8px;
  margin-right: 10px;
  font-weight: 600;
  letter-spacing: 0.2rem;
  margin-bottom: 10px;
}
.list-type1 li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  font-weight: bold;
  margin-right: 5px;
  color: #63b6af;
}

/* blog
----------------------------------*/
.blog-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 auto;
}
.blog-wrap * {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.blog-wrap > li {
  width: 31%;
  margin: 0 1% 3%;
  padding: 20px;
  position: relative;
  background: #fefefe;
  border-radius: 10px;
}
@media all and (max-width: 896px) {
  .blog-wrap > li {
    width: 48%;
    margin: 0 1% 3%;
  }
}
.blog-wrap > li > a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 3;
}
.blog-wrap > li > a:hover ~ .blog-img img {
  opacity: 1;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
@media all and (max-width: 639px) {
  .blog-wrap > li {
    width: 80%;
    margin: 0 auto 3%;
    padding: 15px;
  }
}

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

.blog-date {
  color: #254900;
  display: block;
  font-size: 13px;
}
.blog-date:before {
  font-family: "Font Awesome 5 Free";
  content: "\f017";
  font-weight: bold;
  margin-right: 5px;
}

.blog-date2 {
  color: rgb(255, 18.5, 18.5);
  font-size: 0.9em;
  margin-bottom: 5px;
  margin-right: 5px;
}
.blog-date2:before {
  font-family: "Font Awesome 5 Free";
  content: "\f017";
  margin-right: 5px;
}

.blog-detail {
  padding: 10px;
}
@media all and (max-width: 639px) {
  .blog-detail {
    padding: 10px;
  }
}

.blog-title {
  font-weight: bold;
  margin-bottom: 10px;
  color: #111;
  line-height: 1.5;
}

.blog-txt {
  font-size: 14px;
  line-height: 1.5;
  color: #555;
}
@media all and (max-width: 639px) {
  .blog-txt {
    font-size: 12px;
  }
}

.pages {
  text-align: center;
  margin-top: 30px;
}
.pages .page_next,
.pages .page_prev {
  display: inline;
  margin: 0 20px;
}
.pages .page_next a,
.pages .page_prev a {
  color: #f80000;
  padding: 3px 5px;
  background: #fff;
}

.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: "FontAwesome";
  content: "\f0a9";
  margin-right: 5px;
}
.category_nav li a:hover {
  background: #f0efec;
}
.category_nav li:last-child a {
  border-bottom: none;
}

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

.w300 {
  width: 300px;
}

.spbr {
  display: none;
}

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

.round-box {
  border-radius: 20px;
  overflow: hidden;
}

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

.color1 {
  color: #ff5f5f;
}

.color2 {
  color: #254900;
}

.color3 {
  color: #5c4332;
}

.smaller {
  font-size: 0.95em;
  letter-spacing: 0;
  color: #666666;
}

.num {
  text-align: center;
}
.num a {
  color: #63b6af;
  font-weight: bold;
  font-size: 3.5rem;
}
.num a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f095";
  font-weight: bold;
  margin-right: 5px;
}
.num a:hover {
  color: #669933;
}
@media all and (max-width: 639px) {
  .num a {
    font-size: 2.4rem;
  }
}

.telbox {
  max-width: 700px;
  margin: 0 auto 20px;
  padding: 20px;
  background: #eee;
}
.telbox .inner {
  background: #fff;
  padding: 10px;
}

.telbnr {
  max-width: 700px;
  margin: 30px auto 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.telbnr li {
  width: 48%;
  border: 3px solid #ff5f5f;
  padding: 10px 10px;
  text-align: center;
  border-radius: 30px;
}
.telbnr li a {
  display: block;
  font-size: 2.4rem;
  font-weight: 700;
  color: #ff9d1d;
}
.telbnr li a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: bold;
  margin-right: 5px;
}
.telbnr li a:hover {
  color: #63b6af;
}
.telbnr li:last-of-type {
  margin-left: 4%;
}
@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: 700;
  font-size: 1.8rem;
  color: #5c4332;
  margin-top: -30px;
}
.telbnr-ttl span {
  background: #f9f9f9;
  padding: 0 20px;
}
@media all and (max-width: 639px) {
  .telbnr-ttl {
    font-size: 1.5rem;
  }
}

/* breadcrumb
----------------------------------*/
.breadcrumb {
  max-width: 1200px;
  margin: 20px auto 30px;
  font-size: 12px;
  font-weight: 400;
  position: relative;
  z-index: 5;
}
.breadcrumb li {
  display: inline;
  color: #5c4332;
}
.breadcrumb li a {
  color: #ff5f5f;
}
.breadcrumb li + li:before {
  margin: 0 10px;
  content: ">";
}

/* form
----------------------------------*/
.form {
  margin: 0 auto;
  width: 90%;
}
.form dl dt {
  float: left;
  width: 280px;
  padding-top: 20px;
  font-weight: bold;
  color: #5c4332;
}
.form dl dt span {
  color: #fff;
  background: #ff5f5f;
  padding: 5px;
  margin-right: 5px;
  font-size: 11px;
  border-radius: 2px;
  position: relative;
  top: -2px;
}
.form dl dd {
  padding-left: 280px;
  padding-bottom: 20px;
  padding-top: 23px;
  line-height: 1.5;
  border-bottom: 1px dotted #cccccc;
}
.form dl dd:last-child {
  border-bottom: none;
}
.form .textarea,
.form textarea {
  border: 0;
  padding: 15px;
  background: #f3f3f3;
  width: 100%;
  border-radius: 0;
  -webkit-appearance: none;
}
.form .textarea02 {
  width: 48.5%;
  margin-right: 3%;
}
.form .textarea02:last-child {
  margin-right: 0;
}
.form .textarea03 {
  width: 20%;
  margin-right: 1%;
}
.form button {
  cursor: pointer;
  display: block;
  color: #111;
  text-align: center;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  font-family: "-apple-system", BlinkMacSystemFont, "Helvetica Neue", Roboto, "Droid Sans", Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, Meiryo, sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  padding: 8px 5px;
  margin: 0 auto;
  width: 250px;
  background: #ff5f5f;
  border: 1px solid #ff5f5f;
  border-radius: 25px;
  color: #fff;
}
.form button:hover {
  background: #fff;
  color: #ff5f5f;
}
.form button:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: bold;
  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: #ff5f5f;
}
.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: 3px;
  top: 5px;
  background-color: #ff5f5f;
  z-index: 1;
}
.form label.radio_text input[type=radio] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  z-index: 2;
  width: 20px;
  height: 20px;
  left: -23px;
  top: 0px;
  margin: 0px;
  -webkit-box-shadow: 20px -1px #fff;
          box-shadow: 20px -1px #fff;
}
.form label.radio_text input[type=radio]:checked {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.form label.radio_text input[type=radio]:focus {
  opacity: 0.2;
  -webkit-box-shadow: 20px -1px #eeebda;
          box-shadow: 20px -1px #eeebda;
}
.form label.checkbox_text {
  cursor: pointer;
  position: relative;
  padding-left: 25px;
  margin: 0 20px 5px 0;
  overflow: hidden;
  display: inline-block;
}
.form label.checkbox_text:before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 0px;
  top: 0;
  border: 1px solid #ccc;
  z-index: 3;
  padding: 1px;
}
.form label.checkbox_text:after {
  content: "";
  position: absolute;
  top: 40%;
  left: 5px;
  display: block;
  margin-top: -9px;
  width: 8px;
  height: 12px;
  border-right: 3px solid #ff5f5f;
  border-bottom: 3px solid #ff5f5f;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  z-index: 1;
}
.form label.checkbox_text input[type=checkbox] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  left: -40px;
  width: 20px;
  height: 20px;
  display: block;
  -webkit-box-shadow: 41px 0px #fff;
          box-shadow: 41px 0px #fff;
  z-index: 2;
  margin: 0px;
  padding: 0px;
}
.form label.checkbox_text input[type=checkbox]:checked {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.form label.checkbox_text input[type=checkbox]:checked:focus {
  -webkit-box-shadow: 40px 0px #666;
          box-shadow: 40px 0px #666;
  opacity: 0.1;
}
.form label.checkbox_text input[type=checkbox]:focus {
  -webkit-box-shadow: 41px 0px #eee;
          box-shadow: 41px 0px #eee;
}
.form input[type=text],
.form textarea {
  font-size: 16px;
}
@media all and (max-width: 639px) {
  .form input[type=text],
  .form textarea {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    margin-left: -5px;
  }
}

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

.select-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.select-content .select-txt {
  padding: 0 5px;
}
@media all and (max-width: 639px) {
  .select-content {
    display: block;
    /*.select-wrap, .select-txt{
     display: inline-block;
    }*/
  }
}

.form-txt {
  font-size: 0.9em;
  margin-bottom: 5px;
}

.memo {
  border: 2px solid rgba(245, 240, 230, 0.5);
  background: url(../img/bg01.jpg);
  padding: 15px;
}

.thanks {
  padding: 40px;
  max-width: 700px;
  margin: 0 auto;
  background: #f5f0e6;
  border: 4px double rgb(230.4285714286, 218.1428571429, 193.5714285714);
}
@media all and (max-width: 639px) {
  .thanks {
    max-width: 90%;
    padding: 30px 20px;
  }
}

.shadow {
  -webkit-box-shadow: 0 0 8px rgba(92, 67, 50, 0.15);
          box-shadow: 0 0 8px rgba(92, 67, 50, 0.15);
}

.policy {
  padding: 20px;
  background: #f0f0f0;
  margin-top: 40px;
}

.mtitle_small {
  position: relative;
  font-size: 1.7rem;
  color: #ff5f5f;
  margin-bottom: 20px;
}
.mtitle_small:before {
  content: "";
  width: 30px;
  height: 1px;
  background-color: #ff5f5f;
  position: absolute;
  left: 0;
  bottom: -15px;
}

.mtitle_small2 {
  position: relative;
  margin-bottom: 10px;
  padding-left: 20px;
  font-weight: bold;
  color: #ff5f5f;
}
.mtitle_small2:not(:first-of-type) {
  margin-top: 20px;
}
.mtitle_small2:before {
  content: "";
  background-color: #254900;
  width: 10px;
  height: 4px;
  position: absolute;
  top: 0.6em;
  left: 0;
}

.mtitle_small3 {
  padding: 10px 0;
  border-top: 1px solid #ff5f5f;
  border-bottom: 1px solid #ff5f5f;
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 1.8rem;
}
@media all and (max-width: 896px) {
  .mtitle_small3 {
    font-size: 1.5rem;
  }
}
@media all and (max-width: 639px) {
  .mtitle_small3 {
    font-size: 1.35rem;
    letter-spacing: 0.15em;
  }
}
.mtitle_small3 {
  margin-bottom: 20px;
  color: #5c4332;
}
.mtitle_small3 span {
  font-size: 1.4rem;
}
.mtitle_small3:before {
  content: "―";
  margin-right: 8px;
  color: #ff5f5f;
}
.mtitle_small3.type1 {
  border-top: 1px solid #669933;
  border-bottom: 1px solid #669933;
}
.mtitle_small3.type1:before {
  color: #669933;
}
.mtitle_small3.type2 {
  border-top: 1px solid #254900;
  border-bottom: 1px solid #254900;
}
.mtitle_small3.type2:before {
  color: #254900;
}
@media all and (max-width: 639px) {
  .mtitle_small3 {
    margin-bottom: 15px;
    padding: 8px 0;
    font-size: 1.3rem;
  }
  .mtitle_small3 span {
    font-size: 1.1rem;
  }
}

.mtitle_small4 {
  position: relative;
  background: #ffffff;
  border: 1px solid #e5e6e0;
  text-align: left;
  padding: 15px 15px 15px 30px;
  margin-bottom: 25px;
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 2rem;
}
@media all and (max-width: 896px) {
  .mtitle_small4 {
    font-size: 1.6rem;
  }
}
@media all and (max-width: 639px) {
  .mtitle_small4 {
    font-size: 1.45rem;
  }
}
.mtitle_small4 {
  color: #5c4332;
  border-radius: 10px;
}
.mtitle_small4:before {
  position: absolute;
  top: 15%;
  left: 10px;
  width: 5px;
  height: 70%;
  content: "";
  background: rgba(255, 95, 95, 0.8);
  border-radius: 50px;
}
.mtitle_small4.type1:before {
  background: rgba(102, 153, 51, 0.8);
}
@media all and (max-width: 639px) {
  .mtitle_small4 {
    padding: 10px 5px 10px 20px;
    margin-bottom: 20px;
  }
  .mtitle_small4:before {
    left: 5px;
  }
}

/* gallery(photobox)
----------------------------------*/
.gallery_ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 30px;
}
.gallery_ul li {
  margin: 0 2% 2.5% 0;
  width: 32%;
}
.gallery_ul li:nth-child(3n) {
  margin: 0 0 2.5% 0;
}
.gallery_ul li .photobox-wrap {
  width: 100%;
  height: 350px;
  text-align: center;
  overflow: hidden;
  background: rgba(102, 153, 51, 0.1);
  margin-bottom: 8px;
}
.gallery_ul li .photobox-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  font-family: "object-fit: contain;";
  /*IE対策*/
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
@media all and (max-width: 639px) {
  .gallery_ul li .photobox-wrap {
    height: 280px;
  }
}

/* gallery(lightbox)
----------------------------------*/
.gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.gallery li {
  width: 31%;
  margin: 0 3.495% 25px 0;
}
.gallery li:nth-child(3n) {
  margin-right: 0;
}
.gallery li a {
  background: rgba(0, 0, 0, 0.3);
  display: block;
  text-align: center;
  padding: 0px;
  height: 270px;
}
.gallery li a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  /*IE対策*/
}
.gallery li p {
  line-height: 1.4;
  margin-top: 5px;
}

@media all and (max-width: 896px) {
  .gallery li {
    width: 48%;
    margin: 0 4% 20px 0;
  }
  .gallery li:nth-child(3n) {
    margin: 0 4% 20px 0;
  }
  .gallery li:nth-child(2n) {
    margin-right: 0;
  }
  .gallery li a {
    height: 120px;
  }
  .gallery li p {
    font-size: 1.1rem;
  }
}
.list2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: -30px;
}
.list2 > li,
.list2 .child {
  width: 48%;
  margin: 30px 4% 0 0;
}
.list2 > li:nth-child(2n),
.list2 .child:nth-child(2n) {
  margin-right: 0;
}
@media all and (max-width: 639px) {
  .list2 > li:nth-child(2n),
  .list2 .child:nth-child(2n) {
    margin-right: auto;
  }
}
@media all and (max-width: 639px) {
  .list2 > li,
  .list2 .child {
    width: 100%;
    margin: 30px auto 0;
  }
}
.list2 > li.order,
.list2 .child.order {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media all and (max-width: 639px) {
  .list2 > li.order,
  .list2 .child.order {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}
.list2.type1 .child {
  overflow: hidden;
  background: #f0f0f0;
  border-radius: 20px;
}
.list2.type1 .child .inner {
  padding: 15px;
}

.icon {
  width: 80px;
  text-align: center;
  margin: 0 auto 5px;
  pointer-events: none;
}
.icon.type1 {
  -webkit-animation: bounce-anm 2s ease infinite;
          animation: bounce-anm 2s ease infinite;
}
.icon.w100 {
  width: 100px;
}
@media all and (max-width: 896px) {
  .icon {
    width: 60px;
  }
  .icon.w100 {
    width: 75px;
  }
}
@media all and (max-width: 639px) {
  .icon {
    width: 50px;
  }
  .icon.w100 {
    width: 65px;
  }
}

.title-bg {
  background: rgb(76.5, 114.75, 38.25);
  color: #fefefe;
  text-align: center;
  padding: 8px 5px;
  font-weight: 600;
  font-size: 1.7rem;
}

.list3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.list3 > li {
  width: 31%;
  margin: 0 3% 25px 0;
}
.list3 > li:nth-child(3n) {
  margin-right: 0;
}

.note {
  padding: 15px;
  margin-top: 10px;
  font-size: 12px;
  background: rgba(245, 240, 230, 0.6);
}

.flow-dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 10px 0;
}
.flow-dl dt {
  background: #ff9d1d;
  font-size: 3rem;
  color: #fff;
  width: 80px;
  text-align: center;
  margin-right: 20px;
  height: 80px;
  padding-top: 10px;
  border-radius: 100%;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}
.flow-dl dt span {
  font-size: 1.5rem;
  display: block;
  margin-bottom: -16px;
}
@media all and (max-width: 639px) {
  .flow-dl dt {
    width: 60px;
    height: 60px;
    font-size: 2.2rem;
    padding-top: 6px;
  }
  .flow-dl dt span {
    font-size: 1.3rem;
  }
}
.flow-dl dd {
  width: calc(100% - 110px);
  margin-top: 10px;
}
.flow-dl dd:not(:last-child) {
  padding-bottom: 15px;
  border-bottom: 3px solid #f0efec;
}
@media all and (max-width: 639px) {
  .flow-dl dd {
    width: calc(100% - 95px);
  }
}
.flow-dl dt:not(:last-of-type),
.flow-dl dd:not(:last-of-type) {
  margin-bottom: 30px;
}

.txt1 {
  padding-left: 10px;
}

.blog-month {
  margin-bottom: 10px;
}
.blog-month ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.blog-month ul li {
  background: #f0f0f0;
  width: 45%;
  padding: 4px 0;
  margin-bottom: 5px;
  font-size: 12px;
  letter-spacing: 0;
  text-align: center;
  margin-bottom: 5px;
}
.blog-month ul li:nth-child(even) {
  margin-left: 1%;
}
.blog-month ul li a {
  color: #ff5f5f;
}
@media all and (max-width: 639px) {
  .blog-month ul li {
    width: 44%;
  }
}

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

.menu-list {
  margin-bottom: 30px;
}
.menu-list > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8px 4px;
}
.menu-list > li p {
  display: inline-block;
  line-height: 1.5;
}
.menu-list > li:before {
  background: radial-gradient(#aaa 20%, transparent 0) center center/8px 8px;
  content: "";
  display: inline-block;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 4px;
  margin: 0 1.2em;
}
@media all and (max-width: 639px) {
  .menu-list > li:before {
    margin: 0 5px;
  }
}
.menu-list > li .left {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  max-width: 60%;
}
.menu-list > li .left .small {
  color: #669933;
  padding-left: 5px;
  display: block;
}
.menu-list > li .left .small:before {
  content: "[";
}
.menu-list > li .left .small:after {
  content: "]";
}
@media all and (max-width: 639px) {
  .menu-list > li .left {
    max-width: 65%;
  }
}
.menu-list > li .right {
  max-width: 35%;
  text-align: right;
}

.price {
  font-weight: 600;
  color: #9d0736;
  font-size: 1.1em;
  padding: 0px 4px;
}

.price2 {
  text-align: center;
  margin: 8px 0;
}
.price2 span {
  font-weight: 600;
  color: #669933;
  font-size: 1.1em;
}

.list-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.list-center li {
  max-width: 250px;
}
.list-center li:not(:last-child) {
  margin: 0 5px 5px;
}
@media all and (max-width: 639px) {
  .list-center li {
    width: 220px;
  }
  .list-center li:not(:last-child) {
    margin: 0 0 5px;
  }
}

.faq-dl .faq-inner:not(:last-of-type) {
  margin-bottom: 20px;
}
.faq-dl dt,
.faq-dl dd {
  padding: 15px 15px 15px 60px;
  position: relative;
  width: 98%;
}
.faq-dl dt:before,
.faq-dl dd:before {
  position: absolute;
  font-size: 3rem;
  font-weight: 700;
  left: 15px;
  top: 0;
}
@media all and (max-width: 639px) {
  .faq-dl dt,
  .faq-dl dd {
    padding: 10px 10px 10px 50px;
  }
  .faq-dl dt:before,
  .faq-dl dd:before {
    font-size: 2rem;
  }
}
.faq-dl dt {
  background: #669933;
  margin-bottom: 10px;
  line-height: 1.5;
  font-weight: 600;
  color: #fefefe;
}
.faq-dl dt:before {
  content: "Q.";
  color: #254900;
}
.faq-dl dd {
  margin-left: auto;
  border-radius: 5px 0 5px 0;
}
.faq-dl dd:before {
  content: "A.";
  color: #ff9d1d;
}
.faq-dl dd:not(:last-child) {
  margin-bottom: 50px;
}

.fukidashi {
  margin: 0.5em auto 1em;
  padding: 5px;
  text-align: center;
  max-width: 50%;
  border-radius: 10px;
  font-size: 2.2rem;
  background: #fefefe;
  border-radius: 5px;
  position: relative;
}
.fukidashi a {
  color: #a71017;
}
.fukidashi a:hover {
  color: #9d0736;
}
.fukidashi:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #fefefe;
  z-index: 2;
}

.iframe {
  -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.3);
  border-radius: 4px;
}

.frames {
  display: inline-block;
  position: relative;
  overflow: hidden;
  padding: 6px;
}
.frames.type1 {
  margin: 0 auto 20px;
  text-align: center;
  max-width: 600px;
  display: block;
}
.frames:before, .frames:after {
  content: "";
  position: absolute;
  z-index: 1;
  width: 85px;
  height: 50px;
  background: #fff;
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
}
@media all and (max-width: 639px) {
  .frames:before, .frames:after {
    display: none;
  }
}
.frames:before {
  -webkit-box-shadow: 0 10px 8px -12px rgba(92, 67, 50, 0.6);
          box-shadow: 0 10px 8px -12px rgba(92, 67, 50, 0.6);
  top: -24px;
  bottom: auto;
  right: auto;
  left: -26px;
}
.frames:after {
  -webkit-box-shadow: 0 -10px 10px -10px rgba(92, 67, 50, 0.4);
          box-shadow: 0 -10px 10px -10px rgba(92, 67, 50, 0.4);
  top: auto;
  bottom: -22px;
  right: -25px;
  left: auto;
}

/* vertical contents
----------------------------------*/
.mtitle-vertical {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  text-orientation: mixed;
  -webkit-font-feature-settings: "pkna";
  font-feature-settings: "pkna";
  position: absolute;
  left: 0;
  top: 0;
  min-height: 100px;
}
.mtitle-vertical span {
  display: block;
  font-size: 1.6rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: rgba(73, 98, 78, 0.4);
}
.mtitle-vertical {
  font-size: 2.4rem;
  font-weight: 600;
  color: #ff5f5f;
}
@media all and (max-width: 639px) {
  .mtitle-vertical {
    position: static;
    min-height: initial;
    -webkit-writing-mode: inherit;
        -ms-writing-mode: inherit;
            writing-mode: inherit;
    font-size: 1.8rem;
    line-height: 1.4;
    margin-bottom: 25px;
  }
  .mtitle-vertical span {
    font-size: 1.3rem;
  }
}

.vertical-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
}
@media all and (max-width: 639px) {
  .vertical-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.vertical-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 10%;
  position: relative;
}
@media all and (max-width: 639px) {
  .vertical-content {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
    margin: 15px 0 0;
  }
}

.link-txt {
  font-weight: 600;
  border-bottom: 1px dashed #5c4332;
  color: #5c4332;
}

.lead01 span {
  font-family: "Montserrat", sans-serif;
  font-weight: normal;
  color: #ff5f5f;
  font-size: 3rem;
  display: block;
}
@media all and (max-width: 639px) {
  .lead01 span {
    font-size: 2.5rem;
  }
}
.lead01 {
  text-align: center;
  line-height: 1.4;
  font-weight: 600;
  font-size: 1.1em;
  margin-bottom: 15px;
}

.title01 {
  font-weight: 600;
  font-size: 4.5rem;
  margin: 0;
  letter-spacing: 0.1rem;
  padding-bottom: 3rem;
  color: #ff5f5f;
}
.title01.sbc {
  color: #669933;
}
.title01.white {
  color: #fff;
}
@media all and (max-width: 639px) {
  .title01 {
    font-size: 2rem;
    padding-bottom: 3rem;
  }
}

.title03 {
  color: #5c4332;
  padding: 8px 15px;
  font-weight: 600;
  margin-top: 10px;
  font-size: 2rem;
  margin-bottom: 40px;
  position: relative;
  border-radius: 0 40px 40px 0;
  text-align: left;
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
}
.title03 span {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  margin-left: 8px;
}
@media all and (max-width: 639px) {
  .title03 {
    font-size: 1.5rem;
  }
  .title03 span {
    font-size: 1.3rem;
  }
}
.title03:before, .title03:after {
  position: absolute;
  content: "";
  left: 0;
  height: 6px;
}
.title03:before {
  width: 25%;
  top: -6px;
  background: #ffc5c5;
  border-radius: 5px 5px 0 0;
}
.title03:after {
  width: 40%;
  bottom: -6px;
  background: #669933;
  border-radius: 0 0 5px 5px;
}

.box1 {
  background: url(../img/body_bg.png);
  padding: 25px;
}
.box1 + .box1 {
  margin-top: 30px;
}
@media all and (max-width: 639px) {
  .box1 {
    padding: 20px 10px;
  }
}

.link-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: -15px;
}
@media all and (max-width: 639px) {
  .link-list {
    padding: 0 10px;
  }
}
.link-list li {
  width: 15%;
  margin-top: 15px;
  border: 1px solid #f0f0f0;
  background: #fff;
  padding: 4px 0;
}
.link-list li img {
  width: 100%;
}
@media all and (max-width: 639px) {
  .link-list li {
    width: 31%;
  }
}

/* slide_list
----------------------------------*/
.slide_list {
  position: relative;
}
.slide_list li {
  margin-right: 1%;
}
.slide_list li img {
  width: auto;
  height: 260px;
}
@media all and (max-width: 639px) {
  .slide_list li img {
    height: 180px;
  }
}

.greet-txt01 {
  font-size: 1.8rem;
  letter-spacing: 0.15em;
  margin-bottom: 25px;
  line-height: 2;
  color: #254900;
  text-align: center;
}
@media all and (max-width: 639px) {
  .greet-txt01 {
    font-size: 1.2rem;
    text-align: left;
  }
}

.about-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 90%;
}
.about-box:nth-of-type(2) {
  margin: 0 auto;
}
.about-box + .about-box {
  margin-top: 60px;
}
@media all and (max-width: 896px) {
  .about-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 75%;
  }
}
@media all and (max-width: 896px) {
  .about-box {
    width: 95%;
  }
}
.about-box .about-img {
  width: 45%;
}
.about-box .about-img img {
  width: 100%;
  border-radius: 15px;
}
@media all and (max-width: 896px) {
  .about-box .about-img {
    width: 100%;
  }
}
.about-box .about-txt {
  width: 55%;
  padding: 40px;
  color: #254900;
  font-weight: 600;
}
@media all and (max-width: 896px) {
  .about-box .about-txt {
    width: 100%;
  }
}
@media all and (max-width: 639px) {
  .about-box .about-txt {
    padding: 30px 15px;
  }
}
.about-box .about-txt {
  position: relative;
}
.about-box .about-txt:before {
  position: absolute;
  content: "";
  right: 0px;
  bottom: -20px;
  width: 220px;
  height: 200px;
  z-index: -1;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28144/top-lead.webp) no-repeat center/contain;
  opacity: 0.3;
  -webkit-transform: rotate(-15deg);
          transform: rotate(-15deg);
}
@media all and (max-width: 896px) {
  .about-box .about-txt:before {
    width: 150px;
    height: 150px;
    right: 15px;
    bottom: auto;
    top: 40px;
  }
}

.about-title {
  font-size: 3rem;
  color: #ff5f5f;
  position: relative;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
}
.about-title .eng {
  display: block;
  font-size: 1.8rem;
  color: #fff6f6;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}
@media all and (max-width: 639px) {
  .about-title {
    font-size: 2.2rem;
  }
  .about-title .eng {
    font-size: 1.3rem;
  }
}

.border-line {
  display: block;
  width: 90%;
  margin: 80px auto;
  height: 4px;
  background-image: -webkit-gradient(linear, left top, right top, from(#fff6f6), color-stop(#fff0d2), to(#b9d6c3));
  background-image: linear-gradient(to right, #fff6f6, #fff0d2, #b9d6c3);
  border-radius: 8px;
}

.notion {
  background: #f5f0e6;
  padding: 15px;
  border-radius: 10px;
}

.product-title {
  color: #254900;
  margin-bottom: 10px;
}
.product-title span {
  color: #777;
  font-size: 1.4rem;
  display: block;
}
@media all and (max-width: 639px) {
  .product-title span {
    font-size: 12px;
  }
}

.state {
  position: absolute;
  left: -20px;
  top: -10px;
  width: 100px;
  z-index: 5;
  -webkit-transform: rotate(-5deg);
          transform: rotate(-5deg);
}
@media all and (max-width: 639px) {
  .state {
    width: 90px;
    left: -10px;
  }
}

.plan {
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 2.4rem;
  color: #ff5f5f;
  border-bottom: 2px solid #ff5f5f;
  margin-bottom: 20px;
  letter-spacing: 0.2rem;
}
@media all and (max-width: 639px) {
  .plan {
    font-size: 1.8rem;
  }
}

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

.title50 {
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 5rem;
}
@media all and (max-width: 896px) {
  .title50 {
    font-size: 4rem;
  }
}
@media all and (max-width: 639px) {
  .title50 {
    font-size: 3.2rem;
  }
}

.title40 {
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 4rem;
}
@media all and (max-width: 896px) {
  .title40 {
    font-size: 3.2rem;
  }
}
@media all and (max-width: 639px) {
  .title40 {
    font-size: 2.4rem;
  }
}

.title38 {
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 3.8rem;
}
@media all and (max-width: 896px) {
  .title38 {
    font-size: 3rem;
  }
}
@media all and (max-width: 639px) {
  .title38 {
    font-size: 2.4rem;
  }
}

.title36 {
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 3.6rem;
}
@media all and (max-width: 896px) {
  .title36 {
    font-size: 2.8rem;
  }
}
@media all and (max-width: 639px) {
  .title36 {
    font-size: 2.2rem;
  }
}

.title34 {
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 3.4rem;
}
@media all and (max-width: 896px) {
  .title34 {
    font-size: 2.7rem;
  }
}
@media all and (max-width: 639px) {
  .title34 {
    font-size: 2.1rem;
  }
}

.title32 {
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 3.4rem;
}
@media all and (max-width: 896px) {
  .title32 {
    font-size: 2.7rem;
  }
}
@media all and (max-width: 639px) {
  .title32 {
    font-size: 2.1rem;
  }
}

.title28 {
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 2.8rem;
}
@media all and (max-width: 896px) {
  .title28 {
    font-size: 2.2rem;
  }
}
@media all and (max-width: 639px) {
  .title28 {
    font-size: 1.8rem;
  }
}

.title24 {
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 2.4rem;
}
@media all and (max-width: 896px) {
  .title24 {
    font-size: 2rem;
  }
}
@media all and (max-width: 639px) {
  .title24 {
    font-size: 1.7rem;
  }
}

.title22 {
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 2.2rem;
}
@media all and (max-width: 896px) {
  .title22 {
    font-size: 1.85rem;
  }
}
@media all and (max-width: 639px) {
  .title22 {
    font-size: 1.6rem;
  }
}

.title20 {
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 2rem;
}
@media all and (max-width: 896px) {
  .title20 {
    font-size: 1.6rem;
  }
}
@media all and (max-width: 639px) {
  .title20 {
    font-size: 1.45rem;
  }
}

.title18 {
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 1.8rem;
}
@media all and (max-width: 896px) {
  .title18 {
    font-size: 1.5rem;
  }
}
@media all and (max-width: 639px) {
  .title18 {
    font-size: 1.35rem;
    letter-spacing: 0.15em;
  }
}

.title16 {
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 1.6rem;
}
@media all and (max-width: 896px) {
  .title16 {
    font-size: 1.4rem;
  }
}
@media all and (max-width: 639px) {
  .title16 {
    font-size: 1.25rem;
    letter-spacing: 0.15em;
  }
}

.title14 {
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 1.4rem;
}
@media all and (max-width: 896px) {
  .title14 {
    font-size: 1.3rem;
  }
}
@media all and (max-width: 639px) {
  .title14 {
    font-size: 1.2rem;
    letter-spacing: 0.1em;
  }
}

.title12 {
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 1.2rem;
}
@media all and (max-width: 896px) {
  .title12 {
    font-size: 1.1rem;
  }
}
@media all and (max-width: 639px) {
  .title12 {
    font-size: 1rem;
    letter-spacing: 0.1em;
  }
}

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

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

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

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

.top-bnr.insta-bnr {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
}
.top-bnr.insta-bnr a {
  display: block;
  padding: 60px 30px;
  border-radius: 20px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.top-bnr.insta-bnr a:before, .top-bnr.insta-bnr a:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
.top-bnr.insta-bnr a:before {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28144/insta-bnr.webp) no-repeat center/cover;
  -webkit-filter: grayscale(100%) brightness(0.9);
          filter: grayscale(100%) brightness(0.9);
  z-index: -2;
}
.top-bnr.insta-bnr a:after {
  background: linear-gradient(135deg, rgba(131, 58, 180, 0.85) 0%, rgba(193, 53, 132, 0.85) 50%, rgba(225, 48, 108, 0.9) 100%);
  z-index: -1;
}
.top-bnr.insta-bnr a .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1;
}
.top-bnr.insta-bnr a .inner .child-txt {
  width: 100%;
  color: #ffffff;
  text-align: center;
}
.top-bnr.insta-bnr a .inner .child-txt .bnr-title {
  margin-bottom: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.top-bnr.insta-bnr a .inner .child-txt .bnr-title .insta-icon {
  display: block;
  font-size: 5.5rem;
  color: #ffffff;
  margin-bottom: 10px;
  -webkit-filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.5));
          filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.5));
}
.top-bnr.insta-bnr a .inner .child-txt .bnr-title .eng {
  display: block;
  font-size: 2rem;
  font-family: "Arial", sans-serif;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.15em;
  margin-bottom: 5px;
  text-transform: uppercase;
}
.top-bnr.insta-bnr a .inner .child-txt .bnr-title .ja {
  display: block;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.top-bnr.insta-bnr a .inner .child-txt p {
  line-height: 1.8;
  color: #eeeeee;
  font-weight: 500;
}
.top-bnr.insta-bnr a:hover {
  -webkit-transform: scale(0.98);
          transform: scale(0.98);
  border-radius: 20px;
}
.top-bnr.insta-bnr a:hover:after {
  background: linear-gradient(135deg, rgba(131, 58, 180, 0.75) 0%, rgba(193, 53, 132, 0.75) 50%, rgba(253, 29, 29, 0.8) 100%);
}
.top-bnr.insta-bnr a:hover .insta-icon {
  -webkit-filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.8));
          filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.8));
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media all and (max-width: 896px) {
  .top-bnr.insta-bnr a {
    padding: 45px 15px;
  }
  .top-bnr.insta-bnr a .inner .child-txt .bnr-title .insta-icon {
    font-size: 4.5rem;
  }
  .top-bnr.insta-bnr a .inner .child-txt .bnr-title .eng {
    font-size: 1.6rem;
  }
  .top-bnr.insta-bnr a .inner .child-txt .bnr-title .ja {
    font-size: 2.2rem;
  }
}
@media all and (max-width: 639px) {
  .top-bnr.insta-bnr a {
    padding: 35px 15px;
  }
  .top-bnr.insta-bnr a .inner .child-txt .bnr-title .insta-icon {
    font-size: 3.8rem;
  }
  .top-bnr.insta-bnr a .inner .child-txt .bnr-title .eng {
    font-size: 1.4rem;
  }
  .top-bnr.insta-bnr a .inner .child-txt .bnr-title .ja {
    font-size: 1.8rem;
  }
}

.numpop_list {
  position: relative;
  margin: 70px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  /* ▼Type1 を使ったら3カラムに */
}
.numpop_list.type1 li {
  width: 31%;
}
.numpop_list li {
  width: 35%;
  margin: 0 1% 60px;
  padding: 20px;
  border: 2px solid #333;
  border-radius: 10px;
  position: relative;
  -webkit-filter: drop-shadow(6px 6px 0px rgba(37, 53, 43, 0.2));
          filter: drop-shadow(6px 6px 0px rgba(37, 53, 43, 0.2));
  background-color: #fff;
}
.numpop_list .list_num {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: -44px;
  text-align: center;
}
.numpop_list .list_num span {
  background-color: #669933;
  color: #fff;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  line-height: 2.2;
  display: inline-block;
  border: 10px solid #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 3rem;
}
.numpop_list .list_icon {
  margin: 20px auto 10px;
  max-width: 500px;
}
.numpop_list .list_icon img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media all and (max-width: 639px) {
  .numpop_list .list_icon img {
    height: 180px;
  }
}
.numpop_list .list_title {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: #ff5f5f;
}
.numpop_list .list_txt {
  margin: 10px auto 10px;
}
.numpop_list {
  /* ▼スマホは1カラム */
}
@media all and (max-width: 639px) {
  .numpop_list {
    margin: 50px auto 0;
  }
  .numpop_list.type1 li {
    width: 100%;
  }
  .numpop_list li {
    width: 100%;
    padding: 20px 10px 20px;
    -webkit-filter: drop-shadow(2px 2px 0px rgba(37, 53, 43, 0.2));
            filter: drop-shadow(2px 2px 0px rgba(37, 53, 43, 0.2));
  }
  .numpop_list .list_num span {
    width: 70px;
    height: 70px;
    line-height: 2.6;
    font-size: 1.6rem;
  }
  .numpop_list .list_icon {
    margin: 10px auto 10px;
    max-width: 300px;
  }
  .numpop_list .list_title {
    font-size: 1.3rem;
  }
  .numpop_list .list_txt {
    margin: 10px auto 10px;
    font-size: 1rem;
  }
}

.top-icon {
  max-width: 880px;
  width: 100%;
  text-align: center;
  margin: 0 auto;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -webkit-user-drag: none;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}

.content-box + .content-box {
  margin-top: 40px;
}

.content-box {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.content-box:before {
  position: absolute;
  content: "";
  width: 0%;
  height: 100%;
  background-color: #fff;
  top: 0;
  left: 0;
  z-index: -1;
}
.content-box.type1:before {
  left: auto;
  right: 0;
}
.content-box.type1 .child-txt {
  margin-left: auto;
}
.content-box.type1 .photo:before {
  right: auto;
  left: 0;
}
.content-box .content-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.content-box .content-flex .child-txt {
  position: relative;
  width: 50%;
  padding: 60px;
}
.content-box .content-flex .child-txt .num {
  position: absolute;
  color: #fffef3;
  font-size: 10rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em !important;
  top: 30px;
  left: 30px;
  line-height: 1;
}
.content-box .content-flex .child-txt .content-title {
  position: relative;
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 2.2rem;
  color: #5c4332;
  line-height: 1.6;
}
.content-box .content-flex .child-txt .content-title i {
  color: #ff5f5f;
}
.content-box .content-flex .child-txt .content-title .small {
  display: block;
  font-size: 2rem;
  margin-top: 5px;
}
.content-box .content-flex .child-txt .txt {
  margin: 30px auto;
}
.content-box .content-flex .child-txt .txt p + p {
  margin-top: 15px;
}
.content-box .content-flex .child-txt .txt2 {
  margin: 30px auto 0;
}
.content-box .content-flex .child-txt .txt2 p + p {
  margin-top: 15px;
}
.content-box .content-flex .child-txt .content-btn a {
  position: relative;
  overflow: hidden;
  color: #5c4332;
  width: 100%;
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 1.6rem;
}
@media all and (max-width: 896px) {
  .content-box .content-flex .child-txt .content-btn a {
    font-size: 1.4rem;
  }
}
@media all and (max-width: 639px) {
  .content-box .content-flex .child-txt .content-btn a {
    font-size: 1.25rem;
    letter-spacing: 0.15em;
  }
}
.content-box .content-flex .child-txt .content-btn a {
  padding: 10px;
  border: 1px solid #ff5f5f;
  display: block;
  text-align: center;
  max-width: 220px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.content-box .content-flex .child-txt .content-btn a:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background-color: #ff5f5f;
  top: 0;
  left: 10px;
}
.content-box .content-flex .child-txt .content-btn a:after {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background-color: #ff5f5f;
  top: 0;
  right: 10px;
}
.content-box .content-flex .child-txt .content-btn a:hover {
  color: #fff;
  border: 1px solid #ff5f5f;
  -webkit-box-shadow: #669933 0 80px 0px 2px inset;
  box-shadow: #669933 0 80px 0px 2px inset;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.content-box .content-flex .child-txt .content-btn a:hover:before {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  left: -1px;
}
.content-box .content-flex .child-txt .content-btn a:hover:after {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  right: -1px;
}
.content-box .content-flex .child-img .photo {
  height: 100%;
}
.content-box .content-flex .child-img .photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.content-box .content-flex .child-img .photo:before {
  position: absolute;
  content: "";
  width: 50%;
  height: 0%;
  top: 0;
  right: 0;
}
.content-box .content-flex .child-img .photo.type1:before {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28144/service01.webp) no-repeat;
  background-size: cover;
  background-position: center;
}
.content-box .content-flex .child-img .photo.type2:before {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28144/service02.webp) no-repeat;
  background-size: cover;
  background-position: center;
}
.content-box .content-flex .child-img .photo.type3:before {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28144/service03.webp) no-repeat;
  background-size: cover;
  background-position: center;
}
.content-box .content-flex .child-img .photo.type4:before {
  background: url(../img/photo04.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.content-box .content-flex .child-img .photo.type5:before {
  background: url(../img/photo05.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.content-box .content-flex .child-img .photo.type6:before {
  background: url(../img/photo06.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.content-box .content-flex .child-img .photo.type7:before {
  background: url(../img/photo07.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
@media all and (max-width: 896px) {
  .content-box {
    width: calc(100% - 40px);
  }
  .content-box .content-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .content-box .content-flex .child-txt {
    width: 100%;
    padding: 30px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .content-box .content-flex .child-txt .num {
    font-size: 8rem;
    top: 15px;
    left: 15px;
  }
  .content-box .content-flex .child-txt .content-title {
    font-size: 1.8rem;
  }
  .content-box .content-flex .child-txt .content-title .small {
    font-size: 1.6rem;
    letter-spacing: 0.1em;
  }
  .content-box .content-flex .child-txt .txt {
    margin: 25px auto;
  }
  .content-box .content-flex .child-txt .txt p + p {
    margin-top: 10px;
  }
  .content-box .content-flex .child-txt .txt2 {
    margin: 25px auto 0;
  }
  .content-box .content-flex .child-txt .txt2 p + p {
    margin-top: 10px;
  }
  .content-box .content-flex .child-img {
    width: 100%;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .content-box .content-flex .child-img .photo {
    position: relative;
    height: auto;
    padding-bottom: 56.25%;
  }
  .content-box .content-flex .child-img .photo.type1:before, .content-box .content-flex .child-img .photo.type2:before, .content-box .content-flex .child-img .photo.type3:before, .content-box .content-flex .child-img .photo.type4:before, .content-box .content-flex .child-img .photo.type5:before, .content-box .content-flex .child-img .photo.type6:before, .content-box .content-flex .child-img .photo.type7:before {
    width: 100%;
    background-size: cover;
  }
}
@media all and (max-width: 896px) {
  .content-box {
    width: calc(100% - 20px);
  }
  .content-box .content-flex .child-txt {
    padding: 20px;
  }
  .content-box .content-flex .child-txt .num {
    font-size: 6rem;
  }
  .content-box .content-flex .child-txt .content-title {
    font-size: 1.4rem;
  }
  .content-box .content-flex .child-txt .content-title .small {
    font-size: 1.3rem;
  }
  .content-box .content-flex .child-txt .txt {
    margin: 20px auto;
  }
  .content-box .content-flex .child-txt .txt2 {
    margin: 20px auto 0;
  }
}

/*----------------------------------
 --oneday--
----------------------------------*/
.onedayArea {
  margin: 50px auto;
}
.onedayArea .oneday__list {
  position: relative;
  z-index: 1;
  width: 95%;
  margin: 0 auto;
}
.onedayArea .oneday__list:before {
  position: absolute;
  content: "";
  width: 15px;
  height: 96%;
  top: 20px;
  left: 70px;
  background-color: #f5d750;
  z-index: -1;
}
.onedayArea .oneday__list > li {
  position: relative;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 auto 40px;
}
.onedayArea .oneday__list > li .list__num__inner {
  width: 140px;
  height: 140px;
  border: 1px solid #fefefe;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
  text-align: center;
}
.onedayArea .oneday__list > li .list__num {
  position: relative;
  width: 20%;
  max-width: 160px;
  height: 160px;
  border-radius: 50%;
  background-color: #f5d750;
}
.onedayArea .oneday__list > li .list__num.bg-none {
  background-color: transparent;
}
.onedayArea .oneday__list > li .list__num.bg-none .list__num__inner {
  border: none;
}
.onedayArea .oneday__list > li .list__num__main {
  display: block;
  text-align: center;
  font-weight: bold;
  font-size: 2rem;
  margin-top: 40px;
}
.onedayArea .oneday__list > li .list__num__txt {
  display: inline-block;
  text-align: center;
  background-color: #e28763;
  padding: 6px 20px;
  border-radius: 50px;
  line-height: 1;
  font-size: 1.8rem;
  color: #fff;
}
.onedayArea .oneday__list > li .list__photo {
  overflow: hidden;
  width: 300px;
  height: 200px;
}
.onedayArea .oneday__list > li .list__photo img {
  border-radius: 20px;
  width: 100%;
  height: 100%;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
}
@media all and (max-width: 896px) {
  .onedayArea .oneday__list > li .list__photo.sp-left img {
    -o-object-position: left;
       object-position: left;
  }
}
.onedayArea .oneday__list > li .list__detail {
  padding-left: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 80%;
}
.onedayArea .oneday__list > li .list__detail .list__photo {
  width: 30%;
}
.onedayArea .oneday__list > li .list__detail .list__txt {
  width: 70%;
  padding: 20px 0 20px 40px;
  font-weight: bold;
}
.onedayArea .oneday__list > li .list__detail .list__txt .txt__main {
  font-size: 1.7rem;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.onedayArea .oneday__list > li .list__detail .list__txt .txt__main span {
  background-color: #f5f1e9;
  padding: 5px 20px;
  border-radius: 10px;
}
.onedayArea .oneday__list > li .list__detail .list__txt .txt__main span:not(:last-child) {
  margin-bottom: 5px;
}
.onedayArea .oneday__list > li .list__detail .list__txt .txt__sub {
  padding: 5px 20px;
}
@media all and (max-width: 639px) {
  .onedayArea .oneday__list > li .list__detail .list__txt .txt__sub {
    padding: 5px;
  }
}
.onedayArea .oneday__list > li .list__detail .list__txt .list-txt-box {
  margin: 20px;
}
@media all and (max-width: 639px) {
  .onedayArea .oneday__list > li .list__detail .list__txt .list-txt-box {
    margin: 20px 0;
  }
}
.onedayArea .oneday__list > li .list__detail .list__txt .list-txt-box.b-m30 {
  margin-bottom: 30px;
}
.onedayArea .oneday__list > li .list__detail .list__txt .list-txt-box .mtext1 {
  font-size: 1.8rem;
}
.onedayArea .oneday__bottom__txt {
  text-align: center;
}
@media all and (max-width: 896px) {
  .onedayArea .oneday__list li {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .onedayArea .oneday__list li .list__num {
    width: 30%;
  }
  .onedayArea .oneday__list li .list__detail {
    width: 68%;
    margin: 0 0 0 2%;
    padding: 0;
  }
  .onedayArea .oneday__list li .list__detail .list__photo {
    width: 30%;
  }
  .onedayArea .oneday__list li .list__detail .list__txt {
    width: 66%;
    margin: 0 0 0 4%;
    padding: 0px 0;
  }
  .onedayArea .oneday__list li .txt__main span {
    font-size: 1.6rem;
    display: inline-block;
  }
}
@media all and (max-width: 639px) {
  .onedayArea .oneday__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 95%;
  }
  .onedayArea .oneday__list:before {
    left: 34px;
    width: 10px;
  }
  .onedayArea .oneday__list li {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .onedayArea .oneday__list li .list__num {
    width: 100px;
    max-width: 100px;
    height: 100px;
    margin-left: -8px;
  }
  .onedayArea .oneday__list li .list__num .list__num__inner {
    width: 85px;
    height: 85px;
  }
  .onedayArea .oneday__list li .list__num .list__num__inner .list__num__main {
    font-size: 14px;
    margin-top: 20px;
  }
  .onedayArea .oneday__list li .list__num .list__num__inner .list__num__txt {
    font-size: 12px;
    padding: 6px 10px;
    letter-spacing: 1px;
  }
  .onedayArea .oneday__list li .list__detail {
    width: 80%;
    margin: -85px 0 0 auto;
    padding: 0;
    display: block;
  }
  .onedayArea .oneday__list li .list__detail .list__photo {
    width: 100%;
    height: 220px;
    margin: 0 auto 5px;
  }
  .onedayArea .oneday__list li .list__detail .list__txt {
    width: 100%;
    margin: 0 auto;
    padding: 0px 0;
    font-size: 1.2rem;
  }
  .onedayArea .oneday__list li .list__detail .list__txt .txt__main {
    font-size: 1.4rem;
  }
  .onedayArea .oneday__list li .list__detail .list__txt .txt__main span {
    font-size: 1.4rem;
    display: block;
    border-radius: 10px;
    padding: 8px 10px;
  }
}

.about-img {
  position: relative;
  margin-bottom: 30px;
}
.about-img img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
  -o-object-position: 100% 0%;
     object-position: 100% 0%;
}
.about-img img.type1 {
  -o-object-position: 50% 61%;
     object-position: 50% 61%;
}

@media all and (max-width: 1200px) {
  .about-img img {
    height: 350px;
  }
}
@media all and (max-width: 896px) {
  .about-img img {
    height: 360px;
    border-radius: 5px;
    -o-object-position: 100% 25%;
       object-position: 100% 25%;
  }
}
@media all and (max-width: 639px) {
  .inner {
    padding: 25px 15px;
    border-radius: 0 0 5px 5px;
  }
  .about-img {
    margin-bottom: 20px;
  }
  .about-img img {
    height: 300px;
  }
}
.about-title {
  position: absolute;
  color: #fff;
  background: #669933;
  padding: 15px 20px;
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 2.4rem;
}
@media all and (max-width: 896px) {
  .about-title {
    font-size: 2rem;
  }
}
@media all and (max-width: 639px) {
  .about-title {
    font-size: 1.7rem;
  }
}
.about-title {
  top: 10px;
  left: 10px;
  border-radius: 5px;
  line-height: 1.6;
}
.about-title.type1 {
  background: #254900;
}
@media all and (max-width: 639px) {
  .about-title {
    bottom: 5px;
    left: 5px;
    padding: 10px 15px;
  }
}

.faq dt {
  color: #5c4332;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-right: 16px;
  padding-left: 42px;
  position: relative;
  cursor: pointer;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}
.faq dt:not(:last-of-type) {
  margin-bottom: 28px;
}
.faq dt:before {
  content: "Q";
  position: absolute;
  top: -6px;
  left: -6px;
  text-indent: 0px;
  line-height: 40px;
  color: #fefefe;
  background: #ff5f5f;
  width: 40px;
  height: 40px;
  text-align: center !important;
  border-radius: 100%;
}
.faq dt:hover {
  background: rgb(255, 230.7, 230.7);
}
.faq dd {
  display: none;
  position: relative;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-right: 16px;
  padding-left: 45px;
  line-height: 2;
  position: relative;
  background: #fefefe;
}
.faq dd:not(:last-of-type) {
  margin-bottom: 36px;
}
.faq dd:before {
  content: "A";
  position: absolute;
  top: 0px;
  left: 0px;
  text-indent: 0px;
  line-height: 40px;
  color: #9d0736;
  width: 40px;
  height: 40px;
  text-align: center !important;
}
.faq dt:before,
.faq dd:before {
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 1.8rem;
}
@media all and (max-width: 896px) {
  .faq dt:before,
  .faq dd:before {
    font-size: 1.5rem;
  }
}
@media all and (max-width: 639px) {
  .faq dt:before,
  .faq dd:before {
    font-size: 1.35rem;
    letter-spacing: 0.15em;
  }
}
.faq dt:before,
.faq dd:before {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}
@media all and (max-width: 639px) {
  .faq dt:not(:last-of-type) {
    margin-bottom: 22px;
  }
  .faq dd:not(:last-of-type) {
    margin-bottom: 30px;
  }
}

.img_chosei {
  width: 400px;
  height: 380px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media all and (max-width: 639px) {
  .img_chosei {
    width: 100%;
    max-width: 300px;
    height: 200px;
  }
}

.sns-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.sns-list.center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.sns-list.type1 {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.sns-list.type2 {
  margin-left: 10px;
}
.sns-list.type2 li a {
  background: transparent !important;
  border: 2px solid #fff;
}
.sns-list.type2 li a:before {
  display: none;
}
.sns-list.type2 li a:hover {
  background: rgba(255, 255, 255, 0.2) !important;
}
.sns-list.type3 {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.sns-list.type3 li a {
  background: #fff !important;
  color: #ff5f5f !important;
  border: 1px solid #fff;
}
.sns-list.type3 li a i {
  color: #ff5f5f !important;
}
.sns-list.type3 li a::before {
  display: none;
}
.sns-list.type3 li a:hover {
  background: transparent !important;
  color: #fff !important;
}
.sns-list.type3 li a:hover i {
  opacity: 1;
  color: #fff !important;
}
.sns-list li:not(:last-child) {
  margin-right: 10px;
}
.sns-list li a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  position: relative;
  border-radius: 50%;
}
.sns-list li a i {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 3;
  font-size: 18px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #fefefe;
}
.sns-list li a:hover i {
  -webkit-transform: translate(-50%, -50%) scale(0.85);
          transform: translate(-50%, -50%) scale(0.85);
}
.sns-list li a.btn-other {
  background: #ff5f5f;
}
.sns-list li a.btn-other2 {
  background: #669933;
}
.sns-list li a.btn-brown {
  background: #5c4332;
}
.sns-list li a.btn-map {
  background: #9d0736;
}
.sns-list li a.btn-shop {
  background: #ff5f5f;
}
.sns-list li a.btn-lit {
  background: #918ff1;
}
.sns-list li a.btn-tiktok {
  background: #000;
}
.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-rakuten {
  background: #bf0000;
}
.sns-list li a.btn-youtube {
  background: #d62a29;
}
.sns-list li a.btn-yahoo {
  background: #df0f16;
}
.sns-list li a.btn-ameba {
  background: #2c883a;
}
.sns-list li a.btn-online {
  background: #ff5f5f;
}
.sns-list li a.btn-x {
  background: #000000;
}
.sns-list li a.btn-instagram {
  overflow: hidden;
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
}
.sns-list li a.btn-instagram:before {
  content: "";
  position: absolute;
  top: 20px;
  left: -12px;
  width: 60px;
  height: 60px;
  background: radial-gradient(#ffdb2c 10%, rgba(255, 105, 34, 0.65) 55%, rgba(255, 88, 96, 0) 70%);
}
.sns-list li a.btn-gray {
  background: #383636;
}

#fixed-btn {
  position: fixed;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 150;
}
@media all and (max-width: 896px) {
  #fixed-btn {
    display: none !important;
  }
}
#fixed-btn a {
  position: relative;
  overflow: hidden;
  display: block;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  text-orientation: mixed;
  -webkit-font-feature-settings: "pkna";
  font-feature-settings: "pkna";
  text-align: center;
  padding: 20px 15px;
  border-radius: 5px 0 0 5px;
  color: #fff;
  -webkit-box-shadow: 0 0 0 2px #fff;
          box-shadow: 0 0 0 2px #fff;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  line-height: 1.2;
  margin-bottom: 20px;
}
#fixed-btn a i {
  font-size: 1.5em;
  margin-bottom: 6px;
}
#fixed-btn a:hover {
  opacity: 0.9;
}
#fixed-btn a:hover i {
  -webkit-transition: all 1s;
  transition: all 1s;
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}
#fixed-btn a.insta {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
#fixed-btn a.insta-sub {
  background: linear-gradient(200deg, #833ab4, #fd1d1d, #fcb045);
}
#fixed-btn a:last-child {
  margin-bottom: 0;
}