@charset "UTF-8";

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

a {
  color: rgb(255, 246.904109589, 156.5);
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}

#wrapper {
  overflow: hidden;
}

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

.bold {
  font-weight: 700;
}

h2,
h3 {
  line-height: 1.4;
}

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

.border-line {
  display: block;
  border-top: 2px dashed rgb(62.2222222222, 105.7777777778, 153.7777777778);
  margin: 35px 0;
}

/* animation
----------------------------------*/
@-webkit-keyframes view-zoomin {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes view-zoomin {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-webkit-keyframes view-slideup {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 35px);
    transform: translate(0, 35px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@keyframes view-slideup {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 35px);
    transform: translate(0, 35px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

.animation {
  opacity: 0;
}

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

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

.loader {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #fdfdfd;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9999;
}

.loader::after {
  -webkit-animation: loader 0.5s linear infinite;
  animation: loader 0.5s linear infinite;
  border: 1px solid #FFF9B6;
  border-radius: 50%;
  border-right: 1px solid rgba(255, 249, 182, 0.2);
  border-top: 1px solid rgba(255, 249, 182, 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);
  }
}

.fuwafuwa {
  -webkit-animation-name: fuwafuwa;
  animation-name: fuwafuwa;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
}

.deco-anime2 {
  -webkit-animation: rotate_anime 1.5s cubic-bezier(0.87, 0.01, 0, 0.99) infinite;
  animation: rotate_anime 1.5s cubic-bezier(0.87, 0.01, 0, 0.99) infinite;
  margin: 0 auto;
}

.deco-anime {
  -webkit-animation: rotate_anime 1.5s cubic-bezier(0.87, 0.01, 0, 0.99) infinite;
  animation: rotate_anime 1.5s cubic-bezier(0.87, 0.01, 0, 0.99) infinite;
  max-width: 120px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 500px;
}

.deco-anime img {
  height: 120px;
  -o-object-fit: contain;
  object-fit: contain;
}

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

@-webkit-keyframes rotate_anime {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  25% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  30% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }

  85% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }

  90% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes rotate_anime {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  25% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  30% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }

  85% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }

  90% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@-webkit-keyframes fuwafuwa {
  0% {
    -webkit-transform: translate(0, 0);
  }

  50% {
    -webkit-transform: translate(0, -10px);
  }

  100% {
    -webkit-transform: translate(0, 0);
  }
}

/* header
----------------------------------*/
@-webkit-keyframes hd-scrolled {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, -100%);
    transform: translate(0, -100%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

@keyframes hd-scrolled {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, -100%);
    transform: translate(0, -100%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

#l-header {
  z-index: 200;
  position: relative;
  width: 100%;
}

#l-header:before {
  position: absolute;
  content: "";
  width: 400px;
  height: 400px;
  top: 70px;
  left: 0;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27420/head_02.png) no-repeat 50%/contain;
  z-index: -1;
}

@media all and (max-width: 896px) {
  #l-header:before {
    width: 190px;
    height: 150px;
    left: -13px;
  }
}

#l-header:after {
  position: absolute;
  content: "";
  width: 400px;
  height: 400px;
  top: 50px;
  right: 0;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27420/head_01.png) no-repeat 50%/contain;
  z-index: -1;
}

@media all and (max-width: 896px) {
  #l-header:after {
    width: 150px;
    height: 190px;
    right: -10px;
  }
}

@media screen and (max-width: 1550px) {

  #l-header::before,
  #l-header::after {
    opacity: 0.6;
  }
}

@media all and (max-width: 896px) {

  #l-header::before,
  #l-header::after {
    opacity: 0.4;
  }
}

@media all and (max-width: 639px) {

  #l-header::before,
  #l-header::after {
    content: none;
  }
}

#l-header.is-fixed {
  position: fixed;
  background: #fff;
}

#l-header.is-fixed .inner #logo {
  margin-bottom: 0;
}

#l-header .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 1200px;
  min-width: 1000px;
  margin: 0 auto;
  padding: 15px 0 8px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media all and (max-width: 896px) {
  #l-header .inner {
    min-width: initial;
  }
}

#l-header .inner #logo {
  max-width: 320px;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

@media all and (max-width: 1100px) {
  #l-header .inner #logo {
    width: 260px;
  }
}

@media screen and (max-width: 1100px) {
  #l-header .inner {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  #l-header .inner #logo {
    margin-bottom: 20px;
    margin-top: 20px;
  }

  #l-header .inner .head-right {
    width: 100%;
  }

  #l-header .inner .head-right #header_nav {
    margin-left: auto;
    margin-right: auto;
  }
}

#l-header .head-right {
  margin-left: auto;
  margin-right: 5px;
}

@media all and (max-width: 896px) {
  #l-header .head-right {
    display: none;
  }
}

#l-header .head-right_contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: auto;
}

#l-header .head-right_contact>p:not(:last-of-type) {
  margin-right: 10px;
}

#l-header .head-right_txt {
  display: block;
  font-size: 12px;
}

#l-header .head-right_txt span {
  display: block;
}

#l-header .head-right_txt a {
  color: #FFF9B6;
  padding-bottom: 4px;
  border-bottom: 1px dashed #FFF9B6;
}

#l-header .head-right_tel a,
#l-header .head-right_mail a {
  display: block;
  padding: 4px 15px;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  background: #111;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
}

#l-header .head-right_tel a:before,
#l-header .head-right_mail a:before {
  margin-right: 5px;
}

#l-header .head-right_tel a:hover,
#l-header .head-right_mail a:hover {
  color: #543a25;
}

#l-header .head-right_tel a {
  background: transparent;
  padding: 0 15px 0 17px;
  color: #fff;
  background-color: #FFF9B6;
  border-radius: 40px;
  border: 1px solid #FFF9B6;
  width: auto;
  height: auto;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 2rem;
  position: relative;
}

#l-header .head-right_tel a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  font-size: 1.6rem;
}

#l-header .head-right_tel a:hover {
  color: #FFF9B6;
  border: 1px solid #FFF9B6;
  background-color: #fff;
}

#l-header .head-right_mail {
  margin-left: 10px;
}

#l-header .head-right_mail a {
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  color: #fefefe;
}

#l-header .head-right_mail a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
}

#l-header .head-right_mail a:hover {
  background: #543a25;
}

#l-header .head-btn a {
  display: block;
  padding: 3px 10px;
}

#l-header .head-btn a i {
  display: inline-block;
  margin-right: 5px;
}

#l-header .head-btn.head-right_form a {
  background-color: #FFE9EE;
  color: #fff;
  font-weight: 600;
}

#l-header .head-right_lower {
  font-size: 1.2rem;
  letter-spacing: 0.1rem;
}

#l-header .btn-reserve a {
  display: block;
  width: 70px;
  height: 60px;
  padding: 8px 0;
  text-align: center;
  background: #FFE9EE;
  color: #fff;
  -webkit-transition: background 0.2s cubic-bezier(0.26, 0.06, 0, 1);
  transition: background 0.2s cubic-bezier(0.26, 0.06, 0, 1);
}

#l-header .btn-reserve a i {
  font-size: 2.2rem;
}

#l-header .btn-reserve a span {
  font-weight: bold;
  display: block;
  font-size: 1.2rem;
  letter-spacing: 0;
}

#l-header .btn-reserve a:hover {
  background: #FFE9EE;
}

#l-header::before,
#l-header::after {
  content: none;
}

body.home {
  /* 画面サイズによる透明度調整 */
}

body.home #l-header {
  position: relative;
}

body.home #l-header::before {
  position: absolute;
  content: "";
  width: 400px;
  height: 400px;
  top: 70px;
  left: 0;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27420/head_02.png) no-repeat 50%/contain;
  z-index: -1;
}

@media all and (max-width: 896px) {
  body.home #l-header::before {
    width: 190px;
    height: 150px;
    left: -13px;
  }
}

body.home #l-header::after {
  position: absolute;
  content: "";
  width: 400px;
  height: 400px;
  top: 50px;
  right: 0;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27420/head_01.png) no-repeat 50%/contain;
  z-index: -1;
}

@media all and (max-width: 896px) {
  body.home #l-header::after {
    width: 150px;
    height: 190px;
    right: -10px;
  }
}

@media screen and (max-width: 1550px) {

  body.home #l-header::before,
  body.home #l-header::after {
    opacity: 0.6;
  }
}

@media all and (max-width: 896px) {

  body.home #l-header::before,
  body.home #l-header::after {
    opacity: 0.4;
  }
}

@media all and (max-width: 639px) {

  body.home #l-header::before,
  body.home #l-header::after {
    content: none;
  }
}

#nav_wave {
  position: relative;
}

#nav_wave::before {
  position: absolute;
  content: "";
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27420/h-t-line.png) repeat-x;
  height: 20px;
  width: 100%;
  top: 0;
  display: block;
  z-index: 5;
}

#nav_wave::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -2px;
  height: 12px;
  width: 100%;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27420/h-t-line2.png) center center repeat-x;
  z-index: 5;
}

#header_nav {
  position: relative;
  width: 780px;
}

#header_nav.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: #fff;
  z-index: 20;
}

#header_nav.is-fixed::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -7px;
  height: 12px;
  width: 100%;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27420/h-t-line2.png) center center repeat-x;
  z-index: 5;
}

#header_nav ul {
  margin: 0 auto;
  max-width: 1200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 10px 0 10px;
}

#header_nav ul li {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  border-right: 1px dashed #ccc;
}

#header_nav ul li a {
  display: block;
  letter-spacing: 0.1em;
  position: relative;
  font-size: 1.5rem;
  padding-bottom: 4px;
  color: #543a25;
  font-weight: 500;
  text-align: center;
}

#header_nav ul li a img {
  display: block;
  width: 30px;
  height: 30px;
  -o-object-fit: contain;
  object-fit: contain;
  margin: 0 auto 4px;
}

#header_nav ul li a span {
  display: block;
  font-size: 1.3rem;
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  color: #FFF9B6;
  position: relative;
  line-height: 1.2;
}

#header_nav ul li a:after {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  background: #FF97AF;
  left: 50%;
  border-radius: 5px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -5px;
  -webkit-transition: 0.2s opacity ease-in;
  transition: 0.2s opacity ease-in;
  opacity: 0;
}

#header_nav ul li a:hover span,
#header_nav ul li a.active span {
  color: #FF97AF;
}

#header_nav ul li a:hover:after,
#header_nav ul li a.active:after {
  opacity: 1;
}

#header_nav .dropdown {
  display: none;
  position: absolute;
  left: 0;
  top: 30px;
  z-index: 999;
  padding-top: 30px;
}

#header_nav .dropdown .dropdown-li {
  border-right: 0;
  margin: 0;
  background: #fff;
  border-bottom: 1px dashed #FFE9EE;
  padding: 3px;
  background-color: rgba(255, 233, 238, 0.7);
}

#header_nav .dropdown .dropdown-li a {
  display: block;
  width: 220px;
  padding: 10px 8px;
  font-size: 1.4rem;
  letter-spacing: 0.1rem;
  color: #333;
  background: #fefefe;
}

#header_nav .dropdown .dropdown-li a:hover {
  color: #FFF9B6;
}

#header_nav .dropdown .dropdown-li a:after {
  display: none;
}

/* page-top
----------------------------------*/
#page-top {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 99;
  /* transform: translateY(150px); ← これは削除済みでOK */
  -webkit-animation: fuwafuwa 2.5s ease-in-out infinite;
  animation: fuwafuwa 2.5s ease-in-out infinite;
}

#page-top a {
  display: block;
  width: 110px;
  height: 130px;
  background: url("https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27420/pagetop.png") no-repeat center;
  background-size: contain;
}

@media all and (max-width: 896px) {
  #page-top {
    bottom: 72px;
  }

  #page-top a {
    width: 48px;
    height: 62px;
  }

  #page-top.floatAnime a {
    width: 48px;
    height: 62px;
  }
}

@keyframes fuwafuwa {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  50% {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

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

/* canvas
----------------------------------*/
#canvas-container {
  position: absolute;
  z-index: 20;
  left: 0;
  bottom: -10px;
}

@media all and (max-width: 639px) {
  #canvas-container #sineCanvas {
    height: 70px;
    width: 100%;
  }
}

.swiper-slide {
  position: relative;
}

.swiper-slide:before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 0;
  background-position: 50%;
  background-size: cover;
  z-index: -1;
}

.swiper-slide.slide1:before {
  background-image: url(../img/13.jpg);
  background-position: 95% 25%;
}

.swiper-slide.slide2:before {
  background-image: url(../img/15.jpg);
  background-position: 100% 8%;
}

.slide-img {
  overflow: hidden;
  width: 100%;
  height: 80vh;
  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;
}

.slide-img .slide-txt {
  z-index: 50;
  position: absolute;
  left: 2%;
  bottom: 4%;
  width: 650px;
}

@media all and (max-width: 1100px) {
  .slide-img {
    height: 65vh;
  }
}

@media all and (max-width: 639px) {
  .slide-img {
    height: 40vh;
  }
}

.mask-img {
  mask-image: url("../img/main.png");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: 100% 100%;
  /* Chrome, Safari用 */
  -webkit-mask-image: url("../img/main.png");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: 100% 100%;
}

@media all and (max-width: 1100px) {
  .mask-img {
    mask-size: 100% 100%;
    -webkit-mask-size: 100% 100%;
  }
}

@media all and (max-width: 639px) {
  .mask-img {
    mask-image: none;
    -webkit-mask-image: none;
    mask-size: auto;
    -webkit-mask-size: auto;
  }
}

/**/
#flashA {
  width: 100%;
  padding: 50px 0;
  overflow: hidden;
  background-color: #FFF9B6;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -moz-background-size: cover;
  position: relative;
}

#flashA::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 123px;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27420/mv_footer.png) center bottom repeat-x;
  z-index: 1;
  pointer-events: none;
}

#flash {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.flashimg {
  position: absolute;
  left: 40%;
  top: 68%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: block;
  z-index: 1000;
  max-width: 100%;
  max-height: 100%;
}

@media all and (max-width: 639px) {
  #flash {
    width: 100%;
    height: auto;
  }

  #flashA {
    min-width: 100%;
  }

  .flashimg {
    width: 58%;
    top: 74%;
    left: 32%;
  }
}

/*wideslider*/
.wideslider {
  width: 100%;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.wideslider ul {
  float: left;
  display: inline;
}

.wideslider ul li {
  float: left;
  display: inline;
}

.wideslider ul li img {
  width: 100%;
  display: none;
}

.wideslider_base {
  top: 0;
  position: absolute;
}

.wideslider_wrap {
  top: 0;
  position: absolute;
  overflow: hidden;
}

.slider_prev,
.slider_next {
  top: 0;
  overflow: hidden;
  position: absolute;
  z-index: 100;
  cursor: pointer;
}

.slider_prev {
  background: #fff url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27420/prev.png) no-repeat right center;
}

.slider_next {
  background: #fff url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27420/next.png) no-repeat left center;
}

/* 固定表示用 */
.wideslider.is-static {
  overflow: hidden;
  max-width: 1000px;
  /* ★最大幅を画像サイズに合わせる */
  margin: 0 auto;
  /* 中央寄せ */
}

.wideslider.is-static img {
  display: block;
  width: 100%;
  height: auto;
  /* ★比率維持 */
}

/* もし prev/next が残って出るなら非表示に */
.slider_prev,
.slider_next {
  display: none;
}

.main {
  position: relative;
}

.main:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 50%;
  bottom: 0;
  left: 0;
  background-color: #f5f3f1;
}

.slide-bg {
  position: relative;
  width: 100%;
  background-color: #FFF9B6;
}

#slideshow {
  position: relative;
  width: 100%;
  max-width: calc(100% - 50px);
  margin-left: auto;
  margin-right: auto;
}

@media all and (max-width: 896px) {
  #slideshow {
    max-width: calc(100% - 15px);
  }
}

#catch {
  z-index: 50;
  position: absolute;
  bottom: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
  opacity: 0;
}

#catch.on {
  opacity: 1;
  -webkit-transition: 2s;
  transition: 2s;
}

@media all and (max-width: 1100px) {
  #catch {
    width: 300px;
  }
}

@media all and (max-width: 896px) {
  #catch {
    width: 35%;
  }
}

@media all and (max-width: 639px) {
  #catch {
    width: 55%;
  }
}

.catch-bottom {
  z-index: 50;
  position: absolute;
  bottom: 5%;
  left: 2%;
}

@media all and (max-width: 1100px) {
  .catch-bottom {
    width: 350px;
  }
}

@media all and (max-width: 896px) {
  .catch-bottom {
    width: 380px;
  }
}

@media all and (max-width: 639px) {
  .catch-bottom {
    width: 56%;
  }
}

#scrolldown {
  position: absolute;
  right: 15px;
  bottom: 60px;
  color: #fefefe;
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  -webkit-font-feature-settings: "pkna";
  font-feature-settings: "pkna";
  font-size: 1.4rem;
  z-index: 100;
  height: 210px;
}

#scrolldown:before,
#scrolldown:after {
  position: absolute;
  content: "";
  z-index: 2;
  left: 50%;
}

#scrolldown:before {
  width: 1px;
  height: 100px;
  bottom: 0;
  background: #f0f0f0;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

#scrolldown:after {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 100%;
  top: 100px;
  margin-left: -4px;
  -webkit-animation: scroll-point 2.3s ease-out infinite;
  animation: scroll-point 2.3s ease-out infinite;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@media all and (max-width: 896px) {
  #scrolldown {
    display: none;
  }
}

@-webkit-keyframes scroll-point {
  0% {
    bottom: 0;
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  50% {
    top: 180px;
    opacity: 1;
  }

  80% {
    opacity: 0;
  }

  100% {
    top: 210px;
    opacity: 0;
  }
}

@keyframes scroll-point {
  0% {
    bottom: 0;
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  50% {
    top: 180px;
    opacity: 1;
  }

  80% {
    opacity: 0;
  }

  100% {
    top: 210px;
    opacity: 0;
  }
}

.top-contact-box {
  position: relative;
  max-width: 800px;
  margin: -40px auto 20px;
  background: #f5f3f1;
  border-radius: 15px;
  z-index: 20;
  padding: 35px;
}

@media all and (max-width: 896px) {
  .top-contact-box {
    max-width: 90%;
    padding: 20px;
  }
}

.btn-contact {
  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;
}

.btn-contact>li {
  width: 48%;
}

.btn-contact>li a {
  display: block;
  background: #fff;
  padding: 12px 0;
  text-align: center;
  color: #543a25;
  border-radius: 40px;
  -webkit-box-shadow: 0 0 6px rgba(255, 252, 224, 0.3);
  box-shadow: 0 0 6px rgba(255, 252, 224, 0.3);
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 2.2rem;
  font-weight: 600;
}

.btn-contact>li a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  margin-right: 8px;
}

.btn-contact>li:last-child a {
  padding: 15px 0;
  font-family: "Zen Maru Gothic", "YakuHanJP", "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.8rem;
}

.btn-contact>li:last-child a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
}

@media all and (max-width: 639px) {
  .btn-contact {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .btn-contact>li {
    width: 100%;
  }

  .btn-contact>li a {
    font-size: 1.8rem;
  }

  .btn-contact>li:last-child {
    margin-top: 15px;
  }

  .btn-contact>li:last-child a {
    padding: 12px 0;
    font-size: 1.4rem;
  }
}

/* contact_bnr
----------------------------------*/
.contact_bnr {
  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;
}

.contact_bnr>li {
  width: 100%;
}

@media all and (max-width: 639px) {
  .contact_bnr>li {
    margin-bottom: 10px;
  }
}

.contact_bnr>li a {
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  border-radius: 40px;
  border: 2px solid #FFF9B6;
  color: #FFF9B6;
  font-size: 3rem;
  max-width: 380px;
  line-height: 1.4;
  margin-bottom: 10px;
}

@media all and (max-width: 1100px) {
  .contact_bnr>li a {
    font-size: 2.8rem;
  }
}

@media all and (max-width: 639px) {
  .contact_bnr>li a {
    font-size: 1.8rem;
    text-align: center;
  }
}

.contact_bnr>li .bnr_tel {
  white-space: nowrap;
  position: relative;
  color: #FF97AF;
  border: 2px solid #FF97AF;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-weight: 600;
  border-radius: 40px;
}

.contact_bnr>li .bnr_tel:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  margin-right: 5px;
  font-size: 0.8em;
}

.contact_bnr>li .bnr_tel:hover {
  color: #fff;
  background: #FF97AF;
}

.contact_bnr>li .bnr_mobile {
  background: #fefefe;
  color: #FFF9B6;
}

.contact_bnr>li .bnr_mobile:before {
  font-family: "Font Awesome 5 Free";
  content: "\f3cd";
  font-weight: 900;
}

.contact_bnr>li .bnr_fax {
  background: #fdfdfd;
  color: #FFF9B6;
  cursor: auto;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-weight: 600;
}

.contact_bnr>li .bnr_fax:before {
  font-family: "Font Awesome 5 Free";
  content: "\f1ac";
  font-weight: 900;
}

.contact_bnr>li .bnr_mail {
  background: #FFF9B6;
  color: #fff;
  font-size: 1.8rem;
  border-radius: 40px;
}

@media all and (max-width: 639px) {
  .contact_bnr>li .bnr_mail {
    font-size: 1.2rem;
    padding: 12px 0;
  }
}

.contact_bnr>li .bnr_mail:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
}

.contact_bnr>li .bnr_mail:hover {
  background: #fff;
  color: #FFF9B6;
}

.contact_bnr>li a,
.contact_bnr>li span {
  display: block;
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.2rem;
  padding: 12px 10px;
}

.contact_bnr>li a:before,
.contact_bnr>li span:before {
  margin-right: 5px;
  font-size: 0.85em;
  position: relative;
  display: inline-block;
}

@media all and (max-width: 639px) {

  .contact_bnr>li a,
  .contact_bnr>li span {
    margin: 0 auto;
    white-space: nowrap;
    padding: 10px 0;
    width: 90%;
  }

  .contact_bnr>li a:before,
  .contact_bnr>li span:before {
    font-size: 1.5rem;
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
  }
}

/* footer
----------------------------------*/
.footer-contact {
  position: relative;
  margin: -70px auto 0;
  z-index: 5;
  background: rgba(255, 255, 255, 0.9);
  max-width: 900px;
  -webkit-box-shadow: 0 0 8px rgba(84, 58, 37, 0.05);
  box-shadow: 0 0 8px rgba(84, 58, 37, 0.05);
  padding: 30px;
  border-radius: 20px;
  backdrop-filter: blur(5px);
}

.footer-contact .footer-contact-inner {
  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;
}

.footer-contact .footer-contact-left {
  width: 48%;
}

.footer-contact .footer-contact-right {
  width: 48%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 233, 238, 0.1)), to(rgba(255, 233, 238, 0.2)));
  background-image: linear-gradient(to bottom, rgba(255, 233, 238, 0.1), rgba(255, 233, 238, 0.2));
  padding: 20px;
  border-radius: 10px;
}

@media all and (max-width: 896px) {
  .footer-contact {
    max-width: 90%;
  }
}

@media all and (max-width: 639px) {
  .footer-contact .footer-contact-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .footer-contact .footer-contact-inner .footer-contact-left {
    width: 100%;
  }

  .footer-contact .footer-contact-inner .footer-contact-right {
    width: 100%;
  }
}

/* footer_navi
----------------------------------*/
footer {
  position: relative;
}

footer.wave_img::before {
  position: absolute;
  content: "";
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27420/h-t-line2.png) repeat-x;
  height: 12px;
  width: 100%;
  top: 0;
  display: block;
  z-index: 5;
}

#l-footer {
  font-size: 1.4rem;
  position: relative;
  width: 100%;
}

#l-footer:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
}

#l-footer .inner {
  padding: 60px 20px 40px;
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
}

#l-footer .footer-column {
  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: 0 auto;
  color: #111;
  position: relative;
  z-index: 2;
}

#l-footer .footer-column .footer-left {
  width: 45%;
}

#l-footer .footer-column .footer-right {
  width: 50%;
}

#l-footer .footer-txt {
  padding-left: 8px;
}

#l-footer .footer-txt span {
  background: #FFF9B6;
  padding: 5px 10px;
  font-size: 13px;
  color: #fefefe;
}

@media all and (max-width: 1100px) {
  #l-footer .footer-column {
    -ms-flex-pack: distribute;
    justify-content: space-around;
    max-width: 80%;
  }

  #l-footer .footer-column .footer-left {
    font-size: 12px;
    width: 47%;
  }

  #l-footer .footer-column .footer-middle {
    width: 50%;
  }

  #l-footer .footer-column .footer-right {
    width: 100%;
    margin-top: 20px;
  }
}

@media all and (max-width: 896px) {
  #l-footer .footer-column {
    max-width: 90%;
  }
}

@media all and (max-width: 639px) {
  #l-footer {
    font-size: 1.2rem;
  }

  #l-footer .inner {
    padding: 40px 20px;
  }

  #l-footer .inner .right-inner {
    padding: 8px;
    font-size: 12px;
  }

  #l-footer .footer-column {
    max-width: 100%;
  }

  #l-footer .footer-column .footer-left,
  #l-footer .footer-column .footer-middle {
    width: 100%;
  }

  #l-footer .footer-column .footer-middle {
    margin-top: 25px;
  }
}

.map-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.map-wrap .access-txt {
  width: 35%;
  max-width: 400px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
}

.map-wrap .access-txt .inner {
  padding: 45px 25px;
}

@media all and (max-width: 639px) {
  .map-wrap .access-txt {
    width: 100%;
  }

  .map-wrap .access-txt .inner {
    padding: 30px 15px;
    text-align: left;
  }
}

.map-big {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 350px;
  position: relative;
  z-index: 3;
}

@media all and (max-width: 639px) {
  .map-big {
    height: 250px;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    width: 100%;
  }
}

/* footer_navi
----------------------------------*/
.footer_navi {
  padding: 15px 10px 10px;
  margin: 0 auto;
}

.footer_navi ul {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.footer_navi ul li {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  margin-bottom: 4px;
}

.footer_navi ul li a {
  color: #543a25;
  font-size: 1.3rem;
  position: relative;
  padding-left: 20px;
  text-align: center;
  display: block;
}

.footer_navi ul li a img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
  object-fit: contain;
  padding-right: 5px;
}

.footer_navi ul li a span {
  display: none;
}

.footer_navi ul li a:hover {
  color: #FFE9EE;
}

.footer_navi ul li .dropdown {
  display: none;
}

.footer_navi ul li .dropdown .dropdon-li a {
  font-size: 1.2rem;
}

.flogo {
  max-width: 350px;
  text-align: center;
  min-height: 0;
  position: relative;
  z-index: 5;
  margin: 0 auto 30px;
}

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

.copyright {
  background: #FFE9EE;
  padding: 20px 0;
  font-size: 1.2rem;
  position: relative;
  z-index: 2;
  color: #543a25;
}

@media all and (max-width: 896px) {
  .copyright {
    font-size: 12px;
    padding: 15px 0 60px;
  }
}

/*----------------------------------
 top-contents
----------------------------------*/
.title-icon {
  position: relative;
  text-align: center;
  margin: 0 auto;
  width: 70px;
  height: 60px;
}

.top-lead {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  font-size: 2rem;
  letter-spacing: 0.2em;
  color: #543a25;
}

.top-lead span {
  background: rgba(255, 233, 238, 0.3);
}

@media all and (max-width: 639px) {
  .top-lead {
    font-size: 1.4rem;
  }
}

.title-big {
  margin-bottom: 40px;
}

.title-big .eng {
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  display: block;
  font-size: 2.2rem;
  color: #B0CE86;
}

.title-big .ja {
  font-size: 3rem;
  font-weight: 500;
  color: #543a25;
  position: relative;
}

.title-big .ja::after {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -15px;
  content: "●●●";
  letter-spacing: 0.8em;
  font-size: 10px;
  color: #B0CE86;
  padding-left: 0.5em;
}

@media all and (max-width: 639px) {
  .title-big {
    margin-bottom: 30px;
  }

  .title-big .eng {
    font-size: 1.5rem;
  }

  .title-big .ja {
    font-size: 1.8rem;
  }
}

.top-gradient-box {
  position: relative;
}

.top-gradient-box:before,
.top-gradient-box:after {
  position: absolute;
  content: "";
  width: 15%;
  background: -webkit-gradient(linear, left top, right top, color-stop(12.5%, #E7E7E7), color-stop(12.5%, #fff), color-stop(37.5%, #fff), color-stop(37.5%, #FFFCE0), color-stop(62.5%, #FFFCE0), color-stop(62.5%, #fff), color-stop(87.5%, #fff), color-stop(87.5%, #E7E7E7));
  background: linear-gradient(90deg, #E7E7E7 12.5%, #fff 12.5%, #fff 37.5%, #FFFCE0 37.5%, #FFFCE0 62.5%, #fff 62.5%, #fff 87.5%, #E7E7E7 87.5%);
  background-size: 70px 70px;
  background-position: 50px 50px;
  z-index: -2;
  opacity: 0.2;
}

@media all and (max-width: 639px) {

  .top-gradient-box:before,
  .top-gradient-box:after {
    width: 25%;
  }
}

.top-gradient-box:before {
  height: 60%;
  top: -10%;
  left: 0;
}

.top-gradient-box:after {
  height: 45%;
  right: 0;
  bottom: -10%;
}

.sec1-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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 1800px;
  margin-right: auto;
  margin-left: auto;
}

.sec1-wrap+.sec1-wrap {
  margin-top: 120px;
}

.sec1-wrap .sec1-img-box {
  width: 56%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

.sec1-wrap .sec1-img-box img {
  width: 100%;
  border-radius: 8px;
}

.sec1-wrap .sec1-img-box .sec1-img01 {
  width: 58%;
}

.sec1-wrap .sec1-img-box .sec1-img02 {
  width: 37%;
}

.sec1-wrap .sec1-box {
  width: 40%;
  padding: 20px 40px;
}

.sec1-wrap.type1 .sec1-img-box {
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 0;
  order: 0;
}

.sec1-wrap.type1 .sec1-img-box .sec1-img01 {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

@media all and (max-width: 896px) {
  .sec1-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .sec1-wrap+.sec1-wrap {
    margin-top: 60px;
  }

  .sec1-wrap .sec1-img-box {
    width: 95%;
    margin-bottom: 20px;
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .sec1-wrap .sec1-box {
    width: 100%;
    padding: 20px;
  }
}

.bg-sub {
  position: relative;
}

.bg-sub:after {
  position: absolute;
  content: "";
  background: #FFE9EE;
  width: 100%;
  height: 100%;
  left: 0px;
  bottom: 0px;
  z-index: -2;
  background-size: 100%;
  opacity: 0.5;
}

.bg-yellow {
  position: relative;
}

.bg-yellow:after {
  position: absolute;
  content: "";
  background: #FFFCE0;
  width: 100%;
  height: 100%;
  left: 0px;
  bottom: 0px;
  z-index: -2;
  background-size: 100%;
  opacity: 0.5;
}

.bg-sec2 {
  position: relative;
  padding-top: 150px;
}

.bg-sec2:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 60%;
  top: 0;
  left: 0;
  background: url(../img/image/002.jpg) no-repeat 80% 50%/cover;
  z-index: -1;
  opacity: 0.4;
}

@media all and (max-width: 639px) {
  .bg-sec2:before {
    height: 220px;
  }
}

.feature-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -2%;
}

.feature-list>li {
  width: 31.33%;
  margin-left: 2%;
  margin-bottom: 50px;
  background-color: #fff;
  border-radius: 10px;
  -webkit-box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  padding: 20px;
  position: relative;
}

.feature-list>li:nth-child(2) {
  margin-top: 30px;
}

@media all and (max-width: 639px) {
  .feature-list>li:nth-child(2) {
    margin-top: 0;
  }
}

.feature-list>li:nth-child(3) {
  margin-top: 60px;
}

@media all and (max-width: 639px) {
  .feature-list>li:nth-child(3) {
    margin-top: 0;
  }
}

.feature-list>li:nth-child(5) {
  margin-top: 30px;
}

@media all and (max-width: 639px) {
  .feature-list>li:nth-child(5) {
    margin-top: 0;
  }
}

.feature-list>li:nth-child(6) {
  margin-top: 60px;
}

@media all and (max-width: 639px) {
  .feature-list>li:nth-child(6) {
    margin-top: 0;
  }
}

.feature-list>li .feuture-img {
  height: 250px;
}

.feature-list>li .feuture-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  overflow: hidden;
}

@media all and (max-width: 639px) {
  .feature-list>li .feuture-img {
    height: auto;
  }
}

.feature-list>li .feature-txt {
  position: relative;
  padding-top: 37px;
}

.feature-list>li .feature-txt .feature-num {
  display: block;
  position: absolute;
  font-family: "Dancing Script", cursive;
  font-size: 4rem;
  line-height: 1;
  color: #FFE9EE;
  left: 50%;
  top: -60px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 70px;
  width: 70px;
  height: 70px;
  text-align: center;
  line-height: 70px;
  z-index: 3;
  border-radius: 50%;
}

.feature-list>li .feature-txt .feature-num:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 30px;
  bottom: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background: #FFE9EE;
  opacity: 1;
}

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

  .feature-list>li {
    width: 100%;
    margin: 0 auto 30px;
  }

  .feature-list>li .feature-num {
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 2rem;
    top: -20px;
  }

  .feature-list>li .feature-num:before {
    width: 12px;
    height: 12px;
  }
}

/*year-box
--------------------------------------*/
.year-box li {
  position: relative;
  border-radius: 10px;
  margin-bottom: 25px !important;
}

.year-box li figure {
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  text-align: center;
  width: 200px;
  margin: 40px auto 10px;
}

.year-box li .ttl {
  font-size: 2rem;
  padding: 5px 20px;
  text-align: center;
  color: #fff;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  top: -20px;
}

.year-box li .ttl span {
  padding: 5px 40px;
  width: 80%;
  border-radius: 40px;
}

.year-box li.type1 {
  border: 2px solid #e275d9;
}

.year-box li.type1 .ttl span {
  background-color: #e275d9;
}

.year-box li.type2 {
  border: 2px solid #94e275;
}

.year-box li.type2 .ttl span {
  background-color: #94e275;
}

.year-box li.type3 {
  border: 2px solid #57b9ca;
}

.year-box li.type3 .ttl span {
  background-color: #57b9ca;
}

.year-box li.type4 {
  border: 2px solid #e0874b;
}

.year-box li.type4 .ttl span {
  background-color: #e0874b;
}

.year-box li.type5 {
  border: 2px solid #d6a92e;
}

.year-box li.type5 .ttl span {
  background-color: #d6a92e;
}

.year-box li.type6 {
  border: 2px solid #46af43;
}

.year-box li.type6 .ttl span {
  background-color: #46af43;
}

.year-box li.type7 {
  border: 2px solid #7543af;
}

.year-box li.type7 .ttl span {
  background-color: #7543af;
}

.year-box li.type8 {
  border: 2px solid #3bb5e6;
}

.year-box li.type8 .ttl span {
  background-color: #3bb5e6;
}

.year-box li.type9 {
  border: 2px solid #6b3c21;
}

.year-box li.type9 .ttl span {
  background-color: #6b3c21;
}

.year-box li.type10 {
  border: 2px solid #be4434;
}

.year-box li.type10 .ttl span {
  background-color: #be4434;
}

.year-box li.type11 {
  border: 2px solid #c1e63b;
}

.year-box li.type11 .ttl span {
  background-color: #c1e63b;
}

.year-box li.type12 {
  border: 2px solid #c04040;
}

.year-box li.type12 .ttl span {
  background-color: #c04040;
}

.year-box li .txtarea {
  padding: 20px;
}

.list-problem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.list-problem li {
  width: 32%;
  margin-right: 1%;
  position: relative;
  margin-bottom: 10px;
  font-size: 1.8rem;
  text-align: center;
}

.list-problem li:nth-child(3n) {
  margin-right: 0;
}

.list-problem li a {
  display: block;
  background: #FFE9EE;
  color: #FFFFFF;
  text-align: center;
  padding: 10px;
  border-radius: 50px;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
  position: relative;
}

.list-problem li a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f019";
  font-weight: 900;
  top: 50%;
  margin-right: 10px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #fff;
}

@media all and (max-width: 639px) {
  .list-problem li {
    width: 95%;
    margin: 0 auto 10px;
    padding: 8px 8px 8px 45px;
    font-size: 1.3rem;
  }
}

.list-problem.type1 li {
  background: #fff;
  -webkit-box-shadow: 4px 4px 4px rgba(255, 252, 224, 0.5);
  box-shadow: 4px 4px 4px rgba(255, 252, 224, 0.5);
}

.list-problem.type1 li:before {
  color: #FFF9B6;
}

.title_balloon {
  position: relative;
  z-index: 3;
  margin: -140px auto 35px;
  width: 450px;
  text-align: center;
}

@media all and (max-width: 896px) {
  .title_balloon {
    margin: -100px auto 20px;
  }
}

@media all and (max-width: 639px) {
  .title_balloon {
    width: 90%;
  }
}

.box1 {
  position: relative;
  z-index: 5;
  max-width: 1000px;
  margin: 0 auto;
  -webkit-transform: translateY(-100px);
  transform: translateY(-100px);
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  -webkit-box-shadow: 0 4px rgba(255, 249, 182, 0.2);
  box-shadow: 0 4px rgba(255, 249, 182, 0.2);
}

@media all and (max-width: 896px) {
  .box1 {
    max-width: 95%;
    padding: 16px;
  }
}

.box1.type1 {
  -webkit-transform: none;
  transform: none;
}

.title01 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #111;
}

.title01 span {
  display: block;
  font-size: 2.2rem;
  font-weight: 500;
  color: #FFF9B6;
}

@media all and (max-width: 639px) {
  .title01 {
    font-size: 1.4rem;
  }

  .title01 span {
    font-size: 1.3rem;
  }
}

.title01.white {
  color: #fcfcfc;
}

.title01.white span {
  color: #fff;
}

.title02 {
  margin-bottom: 10px;
}

.title02 span {
  color: #543a25;
  font-weight: 600;
  background: url(../img/bg-yellow.jpg);
  padding: 3px 10px;
  border-radius: 30px;
  letter-spacing: 0.2em;
}

@media all and (max-width: 639px) {
  .title02 {
    font-size: 1.2rem;
  }
}

.title03 {
  margin-bottom: 20px;
  font-size: 2.2rem;
  font-weight: 600;
  color: #FFF9B6;
  line-height: 1.3;
}

.title03 span {
  font-weight: normal;
  font-size: 1.7rem;
}

@media all and (max-width: 639px) {
  .title03 {
    font-size: 1.5rem;
  }

  .title03 span {
    font-size: 1.3rem;
  }
}

.title-icon2 {
  position: relative;
  z-index: 1;
}

.title-icon2 .eng {
  font-size: 2.4rem;
  line-height: 1;
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  font-weight: 600;
  position: relative;
  z-index: 1;
  color: #916b50;
}

.title-icon2 .eng span {
  color: #916b50;
}

.title-icon2 .ja {
  display: block;
  font-size: 2.6rem;
  position: relative;
  z-index: 1;
  color: #543a25;
  font-weight: 500;
}

@media all and (max-width: 639px) {
  .title-icon2 .ja {
    font-size: 1.5rem;
  }
}

.title-icon2.type--white .eng {
  color: #543a25;
}

.title-icon2.type--white .ja {
  color: #fff;
}

.title-icon2.type--icon {
  text-align: center;
  padding-bottom: 60px;
}

.title-icon2.type--icon .ja {
  padding-bottom: 20px;
  position: relative;
}

.title-icon2.type--icon .ja:before {
  position: absolute;
  content: "";
  width: 237px;
  height: 60px;
  bottom: -50px;
  left: 0;
  right: 0;
  margin: 0 auto;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27420/title-icon2.png) no-repeat;
  background-size: cover;
}

.title-icon2.type--icon2 {
  text-align: center;
  padding-bottom: 0px;
}

.title-icon2.type--icon2 .eng {
  display: block;
}

.title-icon2.type--icon2 .ja {
  position: relative;
  display: inline-block;
}

.title-icon2.type--icon2 .ja:before {
  position: absolute;
  content: "";
  width: 32px;
  height: 42px;
  bottom: 0px;
  left: -50px;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27420/title-icon2.png) no-repeat;
  background-size: cover;
}

.title-icon2.type--icon2 .ja:after {
  position: absolute;
  content: "";
  width: 32px;
  height: 42px;
  bottom: 0px;
  right: -50px;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27420/title-icon2.png) no-repeat;
  background-size: cover;
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.map-big {
  margin-top: 40px;
  width: 100%;
  height: 350px;
}

@media all and (max-width: 639px) {
  .map-big {
    height: 280px;
  }
}

/* --news--
----------------------------------*/
.news-top {
  position: relative;
  padding: 70px 0 0;
}

.news-top:before {
  position: absolute;
  content: "";
  width: 210px;
  height: 200px;
  right: 10px;
  top: 10px;
  background: url(../img/news-right.png) no-repeat 50%/contain;
}

@media all and (max-width: 1100px) {
  .news-top:before {
    width: 160px;
    height: 150px;
  }
}

@media all and (max-width: 639px) {
  .news-top {
    padding: 20px 0 10px;
  }

  .news-top:before {
    width: 110px;
    height: 100px;
  }
}

.slider_top {
  position: relative;
}

.news-box {
  margin: 0 auto 0;
  max-width: 1200px;
  position: relative;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media all and (max-width: 896px) {
  .news-box {
    margin-top: 0;
  }
}

@media all and (max-width: 639px) {
  .news-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.news-title {
  text-align: center;
  font-weight: 700;
  text-align: center;
  position: relative;
}

.news-title span {
  display: block;
}

.news-title .eng {
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  color: #FFE9EE;
  position: relative;
  font-size: 2rem;
}

.news-title .ja {
  font-size: 1.4rem;
  position: relative;
  margin: 0 auto;
  margin-bottom: 10px;
  color: #FF97AF;
}

@media all and (max-width: 639px) {
  .news-title {
    margin-bottom: 30px;
    -webkit-transform: none;
    transform: none;
    padding: 4px 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .news-title .eng {
    font-size: 2rem;
  }

  .news-title .ja {
    font-size: 1.3rem;
    -webkit-writing-mode: inherit;
    -ms-writing-mode: inherit;
    writing-mode: inherit;
    margin-bottom: 0;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}

.news-right {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-left: 60px;
}

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

.topic-dl .topic-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px dotted #ccc;
  position: relative;
  padding: 10px 0;
}

.topic-dl .topic-inner:before {
  width: 40px;
  border-bottom: 1px solid #FFE9EE;
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
}

.topic-dl .topic-inner dt {
  width: 7em;
  font-size: 1.4rem;
  font-weight: 700;
  color: #222;
}

@media all and (max-width: 639px) {
  .topic-dl .topic-inner dt {
    font-size: 12px;
  }
}

.topic-dl .topic-inner dd {
  padding-left: 20px;
}

.topic-dl .topic-inner dd a {
  font-weight: 600;
}

.topic-dl .topic-inner dd a:hover {
  color: #FFF9B6;
}

@media all and (max-width: 639px) {
  .topic-dl {
    padding-bottom: 40px;
  }
}

.top-bg {
  background: url(../img/top-bg01.jpg) no-repeat center/cover;
  background-attachment: fixed;
  height: 400px;
}

@media all and (max-width: 1100px) {
  .top-bg {
    background-attachment: scroll;
  }
}

/* --top-bnr-list--
----------------------------------*/
.top-bnr-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;
  max-width: 1200px;
  margin: 0 auto;
}

.top-bnr-list>li {
  width: 23%;
  position: relative;
  margin-right: 2%;
  margin-bottom: 40px;
}

.top-bnr-list>li:nth-child(4) {
  margin-right: 0;
}

.top-bnr-list>li a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}

.top-bnr-list>li a:hover {
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.top-bnr-list>li a:hover .btn-arrow {
  background: #222;
}

.top-bnr-list>li a:hover .btn-arrow i {
  border-bottom-color: #fefefe;
}

.top-bnr-list>li a:hover .btn-arrow i:before {
  border-right-color: #fefefe;
}

.top-bnr-list>li a:hover .top-bnr-img img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

@media all and (max-width: 1100px) {
  .top-bnr-list {
    width: 85%;
    margin: 0 auto;
  }

  .top-bnr-list>li {
    width: 48%;
    margin-bottom: 20px;
  }

  .top-bnr-list>li:nth-child(3) {
    margin-right: auto;
  }
}

@media all and (max-width: 639px) {
  .top-bnr-list {
    width: 95%;
  }

  .top-bnr-list>li {
    width: 100%;
  }
}

.top-bnr-list .top-bnr-img {
  border-radius: 0 20px 0 20px;
  position: relative;
  width: 100%;
  height: 230px;
  overflow: hidden;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.top-bnr-list .top-bnr-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

@media all and (max-width: 639px) {
  .top-bnr-list .top-bnr-img {
    height: 200px;
  }
}

.top-bnr-list .btn-arrow {
  width: 50px;
  height: 50px;
  position: absolute;
  right: 20px;
  top: 203px;
  text-align: center;
  line-height: 50px;
  background: #fefefe;
  border: 1px solid #222;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

@media all and (max-width: 639px) {
  .top-bnr-list .btn-arrow {
    width: 40px;
    height: 40px;
    top: 170px;
    border: 1px solid #222;
  }
}

.top-bnr-list .btn-arrow i {
  display: block;
  position: absolute;
  width: 25px;
  border-bottom: 2px solid #222;
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  height: 5px;
}

.top-bnr-list .btn-arrow i:before {
  position: absolute;
  width: 10px;
  height: 8px;
  content: "";
  right: 3px;
  bottom: -2px;
  border-right: 3px solid #222;
  -webkit-transform: skew(45deg);
  transform: skew(45deg);
}

@media all and (max-width: 639px) {
  .top-bnr-list .btn-arrow i {
    width: 20px;
    border-bottom: 1px solid #222;
  }

  .top-bnr-list .btn-arrow i:before {
    border-right: 1px solid #222;
  }
}

.top-bnr-list .top-bnr-title {
  padding: 15px 5px;
  position: relative;
  z-index: 5;
  line-height: 1;
}

.top-bnr-list .top-bnr-title .eng {
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  color: #FFF9B6;
  padding: 0 10px;
  display: block;
}

.top-bnr-list .top-bnr-title .ja {
  font-size: 2rem;
  padding: 0 10px;
  color: #111;
  display: block;
}

@media all and (max-width: 639px) {
  .top-bnr-list .top-bnr-title .eng {
    font-size: 2.2rem;
  }

  .top-bnr-list .top-bnr-title .ja {
    font-size: 1.3rem;
  }
}

.top-bnr-list .top-bnr-txt {
  color: #222;
  font-size: 1.4rem;
  padding: 10px;
}

@media all and (max-width: 639px) {
  .top-bnr-list .top-bnr-txt {
    font-size: 1.2rem;
  }
}

.map-link {
  font-weight: 700;
  color: #FFF9B6;
  border-bottom: 1px solid #FFF9B6;
}

.map-link:before {
  font-family: "Font Awesome 5 Free";
  content: "\f3c5";
  font-weight: 900;
  margin-right: 5px;
}

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

@media all and (max-width: 1100px) {
  .single {
    padding: 80px 10px;
  }
}

.single.type1 {
  padding: 0 0 80px;
}

@media all and (max-width: 639px) {
  .single.type1 {
    padding: 40px 0 80px;
  }

  .single.type1.tp-80 {
    padding: 80px 0 80px;
  }
}

.single.type02 {
  padding: 80px 0 200px;
}

@media all and (max-width: 639px) {
  .single.type02 {
    padding: 40px 0 2px;
  }
}

.single.tp-80 {
  padding: 80px 0 80px;
}

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

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

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

@media all and (max-width: 1100px) {
  .single03 {
    padding: 80px 10px;
  }
}

.single04 {
  margin: 50px auto 0;
  max-width: 1000px;
  padding: 20px 0;
  display: block;
}

@media all and (max-width: 639px) {
  .single04.type1 {
    padding: 0 0 20px;
  }
}

.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;
}

.top-box {
  max-width: 900px;
  margin: 0px auto 0;
  background: #fefefe;
  padding: 25px;
  border-radius: 20px;
  position: relative;
  border: 3px solid #FFB406;
}

.about-mbox {
  position: relative;
  z-index: 2;
  background: #fff;
  padding: 40px 30px;
  border-radius: 10px;
  border-width: 5px;
  border-style: solid;
  border-color: #FFF9B6;
}

.about-mbox .about-img {
  position: relative;
  margin-bottom: 40px;
}

.about-mbox .about-img img {
  width: 100%;
  height: 320px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 5px 5px 0 0;
}

.about-mbox .about-img .about-title {
  position: absolute;
  color: #fff;
  border-radius: 0 10px 0 0;
  background: #FFF9B6;
  padding: 10px 25px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 600;
  font-size: 2rem;
  bottom: 0;
  left: 0;
}

@media all and (max-width: 896px) {
  .about-mbox .about-img .about-title {
    font-size: 1.6rem;
  }
}

@media all and (max-width: 639px) {
  .about-mbox .about-img .about-title {
    font-size: 1.45rem;
  }
}

@media all and (max-width: 639px) {
  .about-mbox .about-img .about-title {
    font-size: 1.2rem;
  }
}

.about-mbox .about-img .about-title.type2 {
  border-color: #f0ab68;
}

.about-mbox .about-img .about-title.type4 {
  border-color: #B0CE86;
}

.about-mbox.type1 {
  border-color: rgb(237.6807228916, 159.3975903614, 157.3192771084);
}

.about-mbox.type1 .about-img .about-title {
  background: rgb(222.3192771084, 74.6024096386, 70.6807228916);
}

.about-mbox.type2 {
  border-color: rgb(244.6084337349, 196.8072289157, 150.3915662651);
}

.about-mbox.type2 .about-img .about-title {
  background: #f0ab68;
}

.about-mbox.type3 {
  border-color: #ffffb2;
}

.about-mbox.type3 .about-img .about-title {
  background: #ffff4c;
}

.about-mbox.type4 {
  border-color: rgb(199.7, 220.7, 170.3);
}

.about-mbox.type4 .about-img .about-title {
  background: rgb(152.3, 191.3, 97.7);
}

.about-mbox.type5 {
  border-color: rgb(157.8296703297, 215.4120879121, 221.1703296703);
}

.about-mbox.type5 .about-img .about-title {
  background: rgb(82.1703296703, 184.5879120879, 194.8296703297);
}

.about-mbox.type6 {
  border-color: rgb(164.7005988024, 200.8203592814, 229.2994011976);
}

.about-mbox.type6 .about-img .about-title {
  background: rgb(85.2994011976, 153.1796407186, 206.7005988024);
}

.about-mbox.type7 {
  border-color: rgb(187.6315789474, 170.0877192982, 219.9122807018);
}

.about-mbox.type7 .about-img .about-title {
  background: rgb(130.3684210526, 97.9122807018, 190.0877192982);
}

.about-mbox.type8 {
  border-color: rgb(246.9545454545, 204.0454545455, 219.0636363636);
}

.about-mbox.type8 .about-img .about-title {
  background: rgb(233.0454545455, 115.9545454545, 156.9363636364);
}

.about-mbox.bordernone {
  border: none;
}

@media all and (max-width: 1100px) {
  .about-mbox .about-img img {
    height: 280px;
  }
}

@media all and (max-width: 896px) {
  .about-mbox {
    border-width: 3px;
  }

  .about-mbox .about-img img {
    height: 220px;
  }
}

@media all and (max-width: 639px) {
  .about-mbox {
    padding: 25px 15px;
    border-radius: 5px;
  }

  .about-mbox .about-img {
    margin-bottom: 30px;
  }

  .about-mbox .about-img img {
    height: 180px;
    border-radius: 3px 3px 0 0;
  }

  .about-mbox .about-img .about-title {
    border-radius: 0 5px 0 0;
  }
}

.mbox {
  background: #fefefe;
  padding: 30px;
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  border-radius: 20px;
}

.mbox.transparent {
  background: transparent;
}

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

.mbox.type1 {
  border: 4px solid #ddd;
  border-radius: 0;
  padding: 40px;
}

@media all and (max-width: 639px) {
  .mbox.type1 {
    padding: 15px;
  }
}

.mbox.sd {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(3px);
  -webkit-box-shadow: 2px 2px 10px -3px rgba(84, 58, 37, 0.2);
  box-shadow: 2px 2px 10px -3px rgba(84, 58, 37, 0.2);
}

.mbox2 {
  background: rgba(255, 252, 224, 0.6);
  padding: 30px;
  border-radius: 20px;
}

@media all and (max-width: 639px) {
  .mbox2 {
    padding: 15px;
  }
}

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

.small-box.w600 {
  max-width: 600px;
}

.small-box.type2 {
  background: rgba(255, 254, 247, 0.8);
  padding: 30px;
  border-radius: 20px;
  -webkit-box-shadow: 2px 2px 10px -3px rgba(84, 58, 37, 0.2);
  box-shadow: 2px 2px 10px -3px rgba(84, 58, 37, 0.2);
}

@media all and (max-width: 639px) {
  .small-box.type2 {
    padding: 20px 15px;
    background: rgba(255, 255, 255, 0.7);
  }
}

.small-box2 {
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27420/bg_sbox.jpg);
  background-repeat: repeat;
  background-position: center;
  border-radius: 1em;
  padding: 50px;
  max-width: 1000px;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 2px 2px 10px -3px rgba(84, 58, 37, 0.2);
  box-shadow: 2px 2px 10px -3px rgba(84, 58, 37, 0.2);
}

@media all and (max-width: 896px) {
  .small-box2 {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    padding: 40px 20px;
  }
}

@media all and (max-width: 639px) {
  .small-box2 {
    width: 95%;
    padding: 20px 10px;
  }
}

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

.sentence2 {
  line-height: 2.4;
}

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

.bg-grid {
  background: rgba(255, 255, 255, 0.8);
  /* 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.1)), to(rgba(204, 204, 204, 0.1))), -webkit-gradient(linear, left bottom, left top, color-stop(95%, transparent), color-stop(50%, rgba(204, 204, 204, 0.1)), to(rgba(204, 204, 204, 0.1)));
  background-image: linear-gradient(90deg, transparent 95%, rgba(204, 204, 204, 0.1) 50%, rgba(204, 204, 204, 0.1)), linear-gradient(0deg, transparent 95%, rgba(204, 204, 204, 0.1) 50%, rgba(204, 204, 204, 0.1));
  background-size: 20px 20px;
  background-repeat: repeat;
}

.bg-map {
  position: relative;
}

.bg-map:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-image: url(../img/map.jpg);
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
  background-attachment: fixed;
  opacity: 0.9;
}

@media all and (max-width: 896px) {
  .bg-map:before {
    background-attachment: scroll;
  }
}

.bg_ore-line {
  position: relative;
}

.bg_ore-line::before {
  position: absolute;
  content: "";
  background: url(../img/g-line.png) repeat-x;
  height: 26px;
  width: 100%;
  z-index: 2;
  display: block;
}

.bg-haikei {
  position: relative;
  padding: 100px auto 0;
}

.bg-haikei:before {
  position: absolute;
  content: "";
  width: 360px;
  height: 100%;
  bottom: 0;
  right: 0;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27420/haikei2.png) no-repeat bottom;
  background-size: 100% auto;
  opacity: 0.9;
}

.bg-haikei:after {
  position: absolute;
  content: "";
  width: 360px;
  height: 100%;
  top: 0%;
  left: 0;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27420/haikei.png) no-repeat top;
  background-size: 100% auto;
}

@media all and (max-width: 896px) {
  .bg-haikei:before {
    width: 100px;
    background-size: 100% auto;
    opacity: 0.2;
  }

  .bg-haikei:after {
    width: 100px;
    background-size: 100% auto;
    opacity: 0.2;
  }
}

.bg-nami {
  position: relative;
}

.bg-nami:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 60px;
  top: -43px;
  left: 0;
  z-index: -1;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27420/naminami.svg) repeat-x 50%/contain;
}

.bg-nami:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 60px;
  bottom: -43px;
  left: 0;
  z-index: -1;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27420/naminami.svg) repeat-x 50%/contain;
  -webkit-transform: scale(1, -1);
  transform: scale(1, -1);
}

.bg-nami.type2::after {
  display: none;
}

.bg-nami.type3::after {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27420/naminami_y.svg) repeat-x 50%/contain;
}

.bg-nami.type4:before {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27420/naminami_y.svg) repeat-x 50%/contain;
}

.bg-nami.type4::after {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27420/naminami_y.svg) repeat-x 50%/contain;
}

.dash-note {
  background-color: #fff;
  background-image: linear-gradient(90deg, transparent 0%, transparent 50%, #fff 50%, #fff 100%), linear-gradient(180deg, #FFD209 1px, transparent 1px);
  background-size: 8px 100%, 100% 3em;
  line-height: 3em;
  padding-bottom: 1px;
}

.bg-oreflo {
  position: relative;
}

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

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

@media all and (max-width: 896px) {
  .bg-oreflo:before {
    width: 100px;
    background-size: 100% auto;
    opacity: 0.2;
  }

  .bg-oreflo:after {
    width: 100px;
    background-size: 100% auto;
    opacity: 0.2;
  }
}

.bg-hana {
  position: relative;
}

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

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

@media all and (max-width: 896px) {
  .bg-hana:before {
    width: 100px;
    background-size: 100% auto;
    opacity: 0.2;
  }

  .bg-hana:after {
    width: 100px;
    background-size: 100% auto;
    opacity: 0.2;
  }
}

#main {
  float: left;
  width: 76%;
}

#main .mbox {
  min-height: 300px;
}

@media all and (max-width: 896px) {
  #main .mbox {
    min-height: initial;
  }
}

@media all and (max-width: 896px) {
  #main {
    float: none;
    width: 100%;
  }
}

#side {
  float: right;
  position: sticky;
  right: 0;
  top: 0;
  width: 21%;
  padding-right: 10px;
}

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

/* title
----------------------------------*/
.title40 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 600;
  line-height: 1.8;
  font-size: 4rem;
}

@media all and (max-width: 896px) {
  .title40 {
    font-size: 3rem;
    line-height: 1.6;
  }
}

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

.title28 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 600;
  line-height: 1.8;
  font-size: 2.8rem;
}

@media all and (max-width: 896px) {
  .title28 {
    font-size: 2.2rem;
    line-height: 1.6;
  }
}

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

.title24 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 600;
  line-height: 1.8;
  font-size: 2.4rem;
}

@media all and (max-width: 896px) {
  .title24 {
    font-size: 2rem;
    line-height: 1.6;
  }
}

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

.title22 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 600;
  font-size: 2.2rem;
}

@media all and (max-width: 896px) {
  .title22 {
    font-size: 1.8rem;
  }
}

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

.title20 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 600;
  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: "Zen Maru Gothic", sans-serif;
  font-weight: 600;
  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.4rem;
    letter-spacing: 0.15em;
  }
}

.title16 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 600;
  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.3rem;
    letter-spacing: 0.15em;
  }
}

/* mtitle
----------------------------------*/
.mtitle {
  margin: 0 auto 40px;
  position: relative;
  text-align: center;
}

.mtitle.type1 {
  margin: 30px auto 40px;
}

.mtitle .eng {
  font-size: 1.8rem;
  color: #FFF9B6;
  position: relative;
  z-index: 2;
  display: block;
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
}

.mtitle .eng.img-none:before {
  background: none;
}

.mtitle .ja {
  position: relative;
  z-index: 2;
  font-size: 2.4rem;
  color: #111;
  font-weight: 500;
  letter-spacing: 0.15em;
}

.mtitle.white {
  color: #fff;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}

.mtitle.white span {
  color: #fff;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}

.mtitle.white span:after {
  background-color: #eee;
}

.mtitle.white span.ja {
  border-bottom-color: #fefefe;
}

.mtitle.mtitle_left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.mtitle.mtitle_left:before {
  left: 2%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.mtitle.mtitle_left span:after {
  left: 0;
  -webkit-transform: none;
  transform: none;
}

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

  .mtitle .eng {
    font-size: 1.5rem;
  }

  .mtitle .ja {
    font-size: 2rem;
  }
}

.mtitle1_2 {
  text-align: center;
  letter-spacing: 0.2rem;
  margin-bottom: 45px;
}

.mtitle1_2 .en {
  text-transform: uppercase;
  color: #333;
  font-weight: 500;
  font-size: 2rem;
  font-weight: 500;
  margin-top: 20px;
}

.mtitle1_2 .ja {
  color: #543a25;
  display: block;
  font-size: 3.2rem;
  font-weight: 500;
}

.mtitle1_2 .ja:after {
  content: " ";
  display: block;
  margin: 10px auto;
  content: "";
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27420/mtitle1_2.png) no-repeat center center;
  width: 60px;
  height: 20px;
  background-size: cover;
}

@media all and (max-width: 896px) {
  .mtitle1_2 .en {
    font-size: 1rem;
  }

  .mtitle1_2 .ja {
    font-size: 2.8rem;
    letter-spacing: -0.01rem;
  }
}

.mtitle_orijinal {
  position: relative;
  margin-bottom: 24px;
  font-size: 2.4rem;
  letter-spacing: 0.1em;
}

.mtitle_orijinal::before {
  content: "";
  display: inline-block;
  width: 50px;
  height: 50px;
  background-image: url(../img/class01.png);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: contain;
  margin-right: 0.5em;
  vertical-align: middle;
}

.mtitle_orijinal.type1:before {
  background-image: url(../img/class02.png);
}

.mtitle_orijinal.type2:before {
  background-image: url(../img/class03.png);
}

.mtitle2 {
  font-size: 3rem;
  position: relative;
  color: #FFF9B6;
  font-weight: 600;
  position: relative;
  padding-left: 20px;
  margin-bottom: 30px;
  line-height: 1.2;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 600;
}

.mtitle2 .eng {
  display: block;
  font-size: 3rem;
  font-family: "Hachi Maru Pop", cursive;
  font-weight: 600;
  color: #B0CE86;
}

.mtitle2 .big {
  font-size: 3.5rem;
}

.mtitle2:before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  background: #FFF9B6;
  border-radius: 4px;
}

.mtitle2.co2 {
  color: #f0ab68;
}

.mtitle2.co2:before {
  background-color: #f0ab68;
}

.mtitle2.co4 {
  color: #B0CE86;
}

.mtitle2.co4:before {
  background-color: #B0CE86;
}

.mtitle2.co5 {
  color: #78c8d0;
}

.mtitle2.co5:before {
  background-color: #78c8d0;
}

.mtitle2.co8 {
  color: #f0a0bc;
}

.mtitle2.co8:before {
  background-color: #f0a0bc;
}

@media all and (max-width: 639px) {
  .mtitle2 {
    font-size: 2rem;
  }
}

.mtitle3 {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  -webkit-font-feature-settings: "pkna";
  font-feature-settings: "pkna";
  position: absolute;
  min-height: 100px;
  top: 0;
  left: 0;
}

.mtitle3 .ja {
  display: block;
  font-size: 3.2rem;
  color: #222;
  letter-spacing: 0.2em;
  padding-right: 5px;
  font-weight: 600;
  line-height: 2;
}

.mtitle3 .eng {
  display: block;
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  font-size: 2.6rem;
  color: #FFF9B6;
}

@media all and (max-width: 639px) {
  .mtitle3 {
    -webkit-writing-mode: inherit;
    -ms-writing-mode: inherit;
    writing-mode: inherit;
    position: static;
    margin-bottom: 20px;
    min-height: initial;
    min-height: auto;
  }

  .mtitle3 .ja {
    font-size: 2rem;
  }

  .mtitle3 .eng {
    font-size: 1.6rem;
  }
}

.mtitle_line {
  position: relative;
  margin-bottom: 25px;
  border-top: 2px solid #FF97AF;
  padding: 10px 10px 18px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 600;
  font-size: 2rem;
  color: #FF97AF;
}

@media all and (max-width: 639px) {
  .mtitle_line {
    font-size: 1.5rem;
  }
}

.mtitle_line.co2 {
  border-top: 2px solid #f0ab68;
  color: #f0ab68;
}

.mtitle_line.co2:after {
  background-image: repeating-linear-gradient(-45deg, #f0ab68, #f0ab68 1px, transparent 2px, transparent 5px);
}

.mtitle_line.co4 {
  border-top: 2px solid #B0CE86;
  color: #B0CE86;
}

.mtitle_line.co4:after {
  background-image: repeating-linear-gradient(-45deg, #B0CE86, #B0CE86 1px, transparent 2px, transparent 5px);
}

.mtitle_line:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  content: "";
  opacity: 0.5;
  background-image: repeating-linear-gradient(-45deg, #FF97AF, #FF97AF 1px, transparent 2px, transparent 5px);
  background-size: 7px 7px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.mtitle_balloon {
  font-size: 3rem;
  margin-bottom: 15px;
  font-weight: 700;
  text-align: center;
}

.mtitle_balloon span {
  position: relative;
  display: inline-block;
  padding-bottom: 18px;
  line-height: 1.3em;
  color: #543a25;
  font-family: "Hachi Maru Pop", cursive;
  font-weight: 600;
}

.mtitle_balloon span.eng {
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  font-size: 5rem;
}

.mtitle_balloon span:before,
.mtitle_balloon span:after {
  content: "";
  display: block;
  border-bottom: 2px dashed #543a25;
  position: absolute;
  width: 50%;
  bottom: 6px;
}

.mtitle_balloon span:before {
  left: -5px;
}

.mtitle_balloon span:after {
  right: -5px;
}

.mtitle_balloon span i {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px dashed #543a25;
  border-right: 2px dashed #543a25;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  position: absolute;
  left: 50%;
  margin-left: -5px;
  bottom: 2px;
}

.mtitle_balloon.center {
  text-align: center;
}

.mtitle_balloon.white span:before,
.mtitle_balloon.white span:after {
  border-bottom-color: #fefefe;
}

.mtitle_balloon.white span i {
  border-color: #fefefe;
}

@media all and (max-width: 639px) {
  .mtitle_balloon {
    font-size: 1.7rem;
  }

  .mtitle_balloon span.eng {
    font-size: 2.4rem;
  }
}

.mtitle-bll {
  font-size: 1.7rem;
  font-weight: 500;
  border-bottom: 2px solid #eeeeee;
  position: relative;
  margin-bottom: 15px;
  line-height: 1.5;
  padding-bottom: 8px;
}

.mtitle-bll:after {
  position: absolute;
  content: "";
  display: block;
  bottom: -2px;
  width: 100px;
  height: 2px;
  background: #FFF9B6;
}

@media all and (max-width: 639px) {
  .mtitle-bll {
    font-size: 1.6rem;
  }
}

.mtitle4 {
  font-weight: 600;
  text-align: center;
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.1rem;
  margin: -30px auto 20px;
}

.mtitle4 span {
  position: relative;
  display: inline-block;
  color: #543a25;
  min-width: 10%;
}

.mtitle4 span:before,
.mtitle4 span:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 1px;
  height: 2rem;
  background-color: #FFF9B6;
}

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

@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: 0 auto 40px;
  position: relative;
  text-align: center;
}

.mtitle5.type1 {
  margin: 30px auto 40px;
}

.mtitle5 .eng {
  font-size: 1.8rem;
  color: #FF97AF;
  position: relative;
  z-index: 2;
  display: block;
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
}

.mtitle5 .eng.img-none:before {
  background: none;
}

.mtitle5 .ja {
  position: relative;
  z-index: 2;
  font-size: 2.8rem;
  color: #111;
  font-weight: 500;
  letter-spacing: 0.15em;
}

.mtitle5::before {
  position: absolute;
  content: "";
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27420/mtitle5.png) no-repeat center/contain;
  top: -70px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  height: 80px;
  width: 90px;
}

@media all and (max-width: 639px) {
  .mtitle5 {
    margin: 63px auto 20px;
  }

  .mtitle5 .eng {
    font-size: 1.2rem;
  }

  .mtitle5 .ja {
    font-size: 1.7rem;
  }

  .mtitle5::before {
    width: 55px;
    height: 47px;
    top: -58px;
  }
}

.mtitle6 {
  position: relative;
  margin-bottom: 10px;
  /* ★ 前に付ける星マーク */
  /* タイトルのテキスト部分 */
  /* ★ 下に敷く横線は after に移動 */
}

.mtitle6::before {
  font-family: "Font Awesome 5 Free";
  content: "\f005";
  font-weight: 900;
  color: #faf07a;
  font-size: 1em;
  display: inline-block;
  position: relative;
  z-index: 1;
}

.mtitle6 span {
  color: #543a25;
  background: #fff;
  padding-right: 15px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 600;
  font-size: 1.8rem;
}

@media all and (max-width: 896px) {
  .mtitle6 span {
    font-size: 1.5rem;
  }
}

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

.mtitle6.type1::first-letter {
  color: #FFE9EE;
}

.mtitle6.type2 span {
  background: #ffffff;
}

.mtitle6::after {
  position: absolute;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background: rgb(218.4028169014, 216.1154929577, 210.3971830986);
  z-index: -1;
}

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

  .mtitle6 span {
    padding-right: 10px;
  }
}

.mtitle_bar {
  margin: 0 auto 40px;
  text-align: center;
  position: relative;
}

.mtitle_bar:before {
  content: "";
  background-color: #FFF9B6;
  background-size: contain;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, #FFF9B6), color-stop(50%, #222));
  background-image: linear-gradient(to right, #FFF9B6 50%, #222 50%);
  z-index: 1;
  width: 120px;
  height: 3px;
  position: absolute;
  top: inherit;
  bottom: -15px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

@media all and (max-width: 639px) {
  .mtitle_bar:before {
    left: 0;
    right: 0;
    width: 80px;
    margin: 0 auto 30px;
    bottom: -60%;
    height: 2px;
  }
}

.mtitle_bar .ja {
  font-size: 3rem;
  color: #FFF9B6;
}

@media all and (max-width: 639px) {
  .mtitle_bar:before {
    margin: 0 auto 15px;
  }

  .mtitle_bar .ja {
    font-size: 2rem;
  }
}

.mtitle_sub {
  padding-left: 0.5em;
  font-weight: 500;
  position: relative;
  border-left: 6px solid #B0CE86;
  margin: 8px 0 15px;
  font-size: 1.8rem;
  line-height: 1.4;
  text-align: left;
  font-family: "Zen Maru Gothic", "YakuHanJP", "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.mtitle_sub .hissu {
  color: #fff;
  background: rgb(199.7, 220.7, 170.3);
  padding: 5px 8px;
  margin-right: 5px;
  font-size: 11px;
  border-radius: 20px;
}

.mtitle_sub:before {
  position: absolute;
  left: -6px;
  bottom: 0;
  content: "";
  width: 6px;
  height: 50%;
  background-color: #FF97AF;
}

.mtitle_box {
  background: #FFFCE0;
  color: #543a25;
  font-size: 1.6rem;
  position: relative;
  padding: 10px 10px;
  margin-bottom: 20px;
  font-weight: 700;
}

.mtitle_box span {
  font-weight: normal;
  font-size: 14px;
  padding-left: 10px;
}

.mtitle_box:before {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f30a";
  font-weight: 900;
  display: block;
  right: -1px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #fff;
}

@media all and (max-width: 639px) {
  .mtitle_box {
    font-size: 1.3rem;
    padding: 8px;
  }
}

.mtitle_box2 {
  background: #FFF9B6;
  font-size: 2.2rem;
  color: #fff;
  position: relative;
  font-weight: 700;
  overflow: hidden;
  letter-spacing: 0.1rem;
  -webkit-box-shadow: 0 8px 8px rgba(255, 249, 182, 0.2);
  box-shadow: 0 8px 8px rgba(255, 249, 182, 0.2);
  padding: 15px 10px 15px 20px;
  margin-bottom: 25px;
}

.mtitle_box2 .small-cap {
  font-weight: normal;
  font-size: 14px;
}

.mtitle_box2:before {
  background-color: #fff;
  content: "";
  display: block;
  -webkit-transform: rotate(60deg);
  transform: rotate(60deg);
  position: absolute;
  bottom: -10px;
  right: -150px;
  width: 300px;
  height: 280px;
}

@media all and (max-width: 639px) {
  .mtitle_box2 {
    font-size: 15px;
    line-height: 1.5;
    padding: 10px 10px 10px 15px;
    padding-right: 40px;
  }

  .mtitle_box2 span {
    font-size: 12px;
  }

  .mtitle_box2:before {
    width: 215px;
    right: -170px;
  }
}

.mtitle_box3 {
  background: #ebc22f;
  font-size: 1.8rem;
  position: relative;
  padding: 15px 20px;
  margin-bottom: 20px;
  font-weight: 700;
  color: #fff;
  border-radius: 35px;
  letter-spacing: 0.15em;
}

.mtitle_box3.odd_t {
  background: #78c599;
}

.mtitle_box3 span {
  font-weight: normal;
  font-size: 14px;
  padding-left: 10px;
}

.mtitle_box3:before {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f30a";
  font-weight: 900;
  display: block;
  right: -1px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #fff;
}

@media all and (max-width: 639px) {
  .mtitle_box3 {
    font-size: 1.3rem;
    padding: 10px 20px;
  }
}

.mtext0 {
  text-align: center;
  font-size: 1.8rem;
  color: #916b50;
  letter-spacing: 0.2em;
}

.mtext0 span {
  font-size: 1.5rem;
  color: #FFE9EE;
  margin-right: 10px;
  letter-spacing: 0;
}

.mtext1 {
  font-size: 2.1rem;
  line-height: 1.6;
  letter-spacing: 0.15em;
}

.mtext1.w400 {
  font-weight: 400 !important;
}

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

.mtext2 {
  font-size: 2.7rem;
  letter-spacing: 0.1rem;
  line-height: 1.4;
}

.mtext2.w400 {
  font-weight: 400 !important;
}

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

.mtitle_category {
  margin-bottom: 15px;
  font-size: 1.8rem;
  font-weight: normal;
}

.mtitle_category:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0ca";
  font-weight: 900;
  margin-right: 5px;
  color: #FFF9B6;
}

/* btn
----------------------------------*/
.top-btn:hover {
  opacity: 0.7;
}

.btn01.left {
  margin-left: 0;
}

.btn01.type1 a {
  background: -webkit-gradient(linear, left top, right top, from(#6DBA8D), color-stop(#47A0A0), to(#6DBA8D));
  background: linear-gradient(to right, #6DBA8D, #47A0A0, #6DBA8D);
  color: #fff;
  border: 1px solid #FFF9B6;
}

.btn01.type1 a:hover {
  background-color: #fff;
  color: #FFF9B6;
}

.btn01 a {
  background: #fefefe;
  text-align: center;
  width: 300px;
  margin: 15px auto;
  color: #543a25;
  display: block;
  padding: 8px 5px;
  font-weight: 700;
  border: 2px solid #FFF9B6;
  border-radius: 35px;
}

.btn01 a:hover {
  background: #FFF9B6;
  color: #fefefe;
}

.btn01.mail {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
}

.btn01.mail a {
  background: #FFFCE0;
  margin: 15px auto 25px;
}

.btn01.mail a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
  margin-right: 5px;
}

.btn01.left a {
  margin: 15px 0;
}

@media all and (max-width: 639px) {
  .btn01 a {
    width: 95%;
  }
}

.btn02 {
  width: 300px;
  margin: 20px auto 20px;
}

.btn02 a {
  display: block;
  position: relative;
  padding: 15px 0;
  background-color: #FFF9B6;
  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: 260px;
  }

  .btn02 a {
    font-size: 1.2rem;
  }
}

/*page_menu*/
.page_menu_bg {
  text-align: center;
  padding: 16px 0;
  margin: 60px auto 80px;
}

@media all and (max-width: 639px) {
  .page_menu_bg {
    margin: 30px auto 40px;
  }
}

.page_menu {
  font-weight: normal;
  overflow: hidden;
  line-height: 1.5;
  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: 3px 3%;
}

.page_menu li {
  position: relative;
  text-align: center;
  margin: 0 2% 10px;
  display: table;
  width: 29%;
}

.page_menu li img {
  display: block;
  width: 30px;
  height: 30px;
  -o-object-fit: contain;
  object-fit: contain;
  margin: 0 auto 4px;
}

.page_menu li a {
  font-size: 1.5rem;
  letter-spacing: 0.8;
  height: 50px;
  display: block;
  vertical-align: middle;
  padding: 8px 0px;
  line-height: 1.3;
  border-bottom: 1px solid #DF5C83;
  background: #fff;
}

.page_menu li a:link,
.page_menu li a:visited {
  color: #543a25;
}

.page_menu li a:hover {
  background: #fff;
  color: #DF5C83 !important;
}

@media all and (max-width: 896px) {
  .page_menu {
    margin: 6px 0;
  }

  .page_menu li {
    margin: 0 2% 15px;
    border: 1px solid #fff;
    width: 45%;
  }

  .page_menu li a {
    font-size: 0.8rem;
    letter-spacing: 0rem;
    height: auto;
  }
}

/* news
----------------------------------*/
.news {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  letter-spacing: 0;
  line-height: 1.7;
}

.news dt {
  width: 7em;
  padding: 3px 5px;
  background: #f0f0f0;
  text-align: center;
  color: #543a25;
}

.news dd {
  padding: 5px;
  background: #fff;
  width: calc(100% - 8.5em);
  margin-left: 8px;
}

.news dt:not(:last-child),
.news dd:not(:last-child) {
  margin-bottom: 7px;
}

.news-bl {
  overflow: hidden;
}

.news-bl.type_flow {
  overflow: unset;
  width: 95%;
  margin-left: auto;
  margin-right: auto;
}

.news-bl.type_flow dt {
  font-weight: 700;
  border: 2px solid #FFF9B6;
  font-family: "Dancing Script", cursive;
}

.news-bl.type_flow dd {
  padding: 3px 0 12px 9.2em;
}

.news-bl.type_flow.odd_t dt {
  border: 2px solid #78c599;
  color: #78c599;
}

.news-bl dt {
  float: left;
  width: 8em;
  padding: 5px;
  line-height: 1.3;
  color: #FFF9B6;
  text-align: center;
  border: 1px solid #FFF9B6;
  border-radius: 30px;
  background: #fefefe;
  font-size: 1.3rem;
}

@media all and (max-width: 639px) {
  .news-bl dt {
    font-size: 1.2rem;
  }
}

.news-bl dd {
  padding: 0 0 12px 9.2em;
  line-height: 1.6;
  border-bottom: 1px dotted #dddddd;
  margin: 0 0 10px;
}

.news-bl dd a {
  color: #543a25;
  background-image: -webkit-gradient(linear, left top, right top, from(#FFF9B6), to(#B0CE86));
  background-image: linear-gradient(to right, #FFF9B6, #B0CE86);
  padding-bottom: 0.25em;
  background-position: 100% 100%;
  background-size: 0% 1px;
  background-repeat: no-repeat;
  -webkit-transition: background-size 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: background-size 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  font-weight: 700;
}

.news-bl dd a:hover {
  background-position: 0 100%;
  background-size: 100% 1px;
}

.news-bl dd:last-child {
  margin: 0;
  border-bottom: none;
}

@media all and (max-width: 639px) {
  .news-bl dt {
    float: none;
  }

  .news-bl dd {
    padding: 8px 5px;
  }

  .news-bl.type_flow dt {
    width: 6em;
    float: left;
  }

  .news-bl.type_flow dd {
    padding: 0 0 12px 8em;
  }
}

/* page-title
----------------------------------*/
.page-title {
  margin: 0 auto 0;
  position: relative;
  z-index: 1;
  padding: 80px 0 140px;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27420/page-title.jpg) no-repeat 50% 30%/cover;
  overflow: hidden;
  max-width: 100%;
}

.page-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 100px;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27420/kumo.png) repeat-x center bottom;
  background-size: contain;
  z-index: 2;
  pointer-events: none;
}

.page-title .page-lead {
  text-align: center;
  padding: 18px 0;
  position: relative;
}

.page-title .page-lead span {
  display: block;
}

.page-title .page-lead .ja {
  font-size: 3rem;
  font-weight: 600;
  color: #543a25;
}

.page-title .page-lead .eng {
  font-size: 2rem;
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  letter-spacing: 0.1rem;
  color: #543a25;
}

@media all and (max-width: 639px) {
  .page-title {
    padding: 50px 0;
  }

  .page-title .inner {
    max-width: 80%;
    margin: 0 auto 0;
  }

  .page-title .page-lead {
    padding: 15px 0;
  }

  .page-title .page-lead .ja {
    font-size: 2rem;
  }

  .page-title .page-lead .eng {
    font-size: 1.6rem;
  }
}

.page-beige {
  position: relative;
}

.page-beige:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 75%;
  left: 0;
  bottom: -61%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #f7ede9;
  z-index: -1;
}

.bg-about-image {
  position: relative;
  z-index: 0;
}

.bg-about-image:before,
.bg-about-image:after {
  position: absolute;
  content: "";
  opacity: 0.9;
  z-index: -1;
}

.bg-about-image:before {
  background: url(../img/about-left.png) no-repeat 50%/contain;
  width: 250px;
  height: 240px;
  left: 0;
  bottom: 50px;
}

.bg-about-image:after {
  background: url(../img/about-right.png) no-repeat 50%/contain;
  width: 250px;
  height: 250px;
  right: 0;
  bottom: 50px;
}

@media all and (max-width: 639px) {

  .bg-about-image:before,
  .bg-about-image:after {
    width: 80px;
    height: 80px;
  }
}

.bg-01 {
  position: relative;
  margin: 40px auto;
}

.bg-01:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../img/bg-01.jpg) no-repeat center 30%/cover;
  opacity: 0.25;
}

@media all and (max-width: 896px) {
  .bg-01:before {
    background-attachment: initial;
  }
}

@media all and (max-width: 639px) {
  .bg-01:before {
    width: 100%;
  }
}

.bg-01.type1:before {
  background: #FFFCE0;
  opacity: 0.05;
}

.bg-01.type2:before {
  background-image: -webkit-gradient(linear, right top, left top, from(#e4d6a6), color-stop(#f5f3f1), to(transparent));
  background-image: linear-gradient(to left, #e4d6a6, #f5f3f1, transparent);
  opacity: 0.6;
}

.bg-02 {
  background: rgba(245, 243, 241, 0.1);
  background-color: rgba(163, 139, 128, 0.031372549);
  background-image: url(../img/bg_mtitle_line.gif);
  background-blend-mode: darken;
}

@media all and (max-width: 639px) {
  .bg-02 {
    padding: 40px 0;
  }
}

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

.bg-pattern {
  background: url(../img/pattern.png) repeat-x left bottom;
}

.bg-base {
  background: rgba(255, 249, 182, 0.5);
  position: relative;
}

.bg-base.type1 {
  background: transparent;
  margin-bottom: 40px;
  position: relative;
}

.bg-base.type1:before {
  position: absolute;
  content: "";
  width: calc(100% - 80px);
  height: 100%;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  background: #FFF9B6;
  z-index: -1;
  opacity: 0.7;
}

@media all and (max-width: 896px) {
  .bg-base.type1:before {
    width: calc(100% - 10px);
  }
}

.bg-base.type2 {
  background: transparent;
  margin-bottom: 40px;
  position: relative;
}

.bg-base.type2:before {
  position: absolute;
  content: "";
  width: calc(100% - 80px);
  height: 100%;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  background: #eeeeee;
  z-index: -1;
}

@media all and (max-width: 896px) {
  .bg-base.type2:before {
    width: calc(100% - 10px);
  }
}

.bg-base.type-white {
  background: transparent;
  margin-bottom: 40px;
  position: relative;
}

.bg-base.type-white:before {
  position: absolute;
  content: "";
  width: calc(100% - 80px);
  height: 100%;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  background: #fff;
}

@media all and (max-width: 896px) {
  .bg-base.type-white:before {
    width: calc(100% - 10px);
  }
}

.tori {
  position: absolute;
  right: -30px;
  top: 50px;
}

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

.kumo {
  position: absolute;
  left: -50px;
  top: 50px;
}

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

.bg-ki {
  position: relative;
  padding-bottom: 40px;
}

.bg-ki:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 140px;
  background: url(../img/about-top.png) repeat-x 50%/cover;
  left: 0;
  bottom: -90px;
  z-index: 1;
}

@media all and (max-width: 1100px) {
  .bg-ki:before {
    background: url(../img/about-top.png) repeat-x 50%/contain;
  }
}

@media all and (max-width: 639px) {
  .bg-ki:before {
    bottom: -94px;
  }
}

.bg-ki:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 250px;
  right: 0;
  bottom: -100px;
  background: url(../img/news-bottom.png), url(../img/news-bottom_1.png);
  background-repeat: no-repeat, no-repeat;
  background-position: right -50px bottom 0, left -50px bottom 0;
  background-size: contain, contain;
  z-index: 2;
}

@media all and (max-width: 1100px) {
  .bg-ki:after {
    height: 180px;
    bottom: -59px;
  }
}

@media all and (max-width: 639px) {
  .bg-ki:after {
    background: url(../img/news-bottom.png);
    background-size: contain;
    height: 130px;
    width: 230px;
    right: -24px;
    background-repeat: no-repeat;
  }
}

.bg-cream {
  background: #fffcf4;
  position: relative;
}

.bg-ore {
  position: relative;
}

.bg-ore.type1::after {
  content: unset;
}

.bg-ore.type2::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 140px;
  background: url(../img/about-top_02_type2.png) repeat-x 50%/cover;
  left: 0;
  bottom: 0;
  z-index: 1;
}

@media all and (max-width: 1100px) {
  .bg-ore.type2::after {
    background: url(../img/about-top_02_type2.png) repeat-x 50%/cover;
  }
}

@media all and (max-width: 639px) {
  .bg-ore.type2::after {
    bottom: 0;
    height: 80px;
  }
}

.bg-ore.type2 .oreinner {
  padding: 80px 0 150px;
}

@media all and (max-width: 639px) {
  .bg-ore.type2 .oreinner {
    padding: 50px 0;
  }
}

.bg-ore::before {
  top: 0;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-size: cover;
  opacity: 0.6;
  background-color: #FFF9B6;
}

.bg-ore::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 140px;
  background: url(../img/about-top_02.png) repeat-x 50%/cover;
  left: 0;
  bottom: 0;
  z-index: 1;
}

@media all and (max-width: 1100px) {
  .bg-ore::after {
    background: url(../img/about-top_02.png) repeat-x 50%/cover;
  }
}

@media all and (max-width: 639px) {
  .bg-ore::after {
    bottom: 0;
    height: 80px;
  }
}

.bg-ore .oreinner {
  padding: 150px 0;
}

@media all and (max-width: 639px) {
  .bg-ore .oreinner {
    padding: 50px 0;
  }
}

.ki-line {
  position: relative;
}

.ki-line:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 140px;
  background: url(../img/ki-line.png) repeat-x 50%/contain;
  left: 0;
  bottom: 0px;
  z-index: 1;
}

@media all and (max-width: 639px) {
  .ki-line:before {
    background: url(../img/ki-line.png) repeat-x 50%/cover;
    height: 80px;
  }
}

.bg-risu_usa {
  position: relative;
}

.bg-risu_usa::before {
  position: absolute;
  content: "";
  width: 400px;
  height: 70%;
  z-index: -1;
  bottom: -25%;
  left: -2%;
  background-image: url(../img/risu.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 70%;
}

.bg-risu_usa::after {
  position: absolute;
  content: "";
  width: 400px;
  height: 70%;
  z-index: -1;
  top: -10%;
  right: 0%;
  background-image: url(../img/usagi.png);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 70%;
}

@media screen and (max-width: 1440px) {

  .bg-risu_usa::before,
  .bg-risu_usa::after {
    opacity: 0.3;
  }
}

@media all and (max-width: 896px) {

  .bg-risu_usa::before,
  .bg-risu_usa::after {
    opacity: 0.2;
    width: 280px;
    height: 50%;
  }

  .bg-risu_usa::after {
    top: -20%;
  }
}

@media all and (max-width: 639px) {

  .bg-risu_usa::before,
  .bg-risu_usa::after {
    opacity: 0.2;
    width: 200px;
    height: 130px;
  }

  .bg-risu_usa::before {
    bottom: 0;
  }

  .bg-risu_usa::after {
    top: 0%;
    right: -5%;
  }
}

.bg-hato {
  position: relative;
}

.bg-hato::after {
  position: absolute;
  content: "";
  width: 180px;
  height: 180px;
  z-index: 0;
  top: 5%;
  right: 5%;
  background-image: url(../img/hato_yell.png);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100%;
}

@media screen and (max-width: 1440px) {
  .bg-hato::after {
    top: 20%;
    right: 1%;
    opacity: 0.3;
  }
}

@media all and (max-width: 896px) {

  .bg-hato::before,
  .bg-hato::after {
    opacity: 0.2;
    width: 120px;
    height: 120px;
  }
}

@media all and (max-width: 639px) {

  .bg-hato::before,
  .bg-hato::after {
    opacity: 0.2;
    width: 80px;
    height: 80px;
  }

  .bg-hato::after {
    right: 0;
  }
}

.bg_aji {
  position: relative;
}

.bg_aji::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0%;
  background-image: url(../img/bg_aji.png);
  background-repeat: repeat;
  width: 100%;
  height: 100%;
  background-size: 100%;
  z-index: -1;
  opacity: 0.3;
}

.kumo2 {
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 0;
  height: 99px;
  margin: auto;
  background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27420/tori.png);
  background-position: bottom center;
  background-repeat: repeat;
  content: "";
  z-index: 1;
}

@media all and (max-width: 639px) {
  .kumo2 {
    background-repeat: no-repeat;
    background-size: contain;
    left: 0;
    background-repeat: repeat-x;
    background-size: auto 50px;
  }
}

.bg-about {
  position: relative;
  padding-top: 100px;
  background-color: rgba(255, 252, 224, 0.7);
}

.bg-bnr {
  position: relative;
}

.bg-bnr:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: calc(100% - 210px);
  border-radius: 0 0 90px 0;
  background-image: radial-gradient(rgba(151, 196, 204, 0.3) 7%, transparent 10%), radial-gradient(rgba(151, 196, 204, 0.3) 7%, transparent 10%);
  background-position: 0 0, 20px 20px;
  background-size: 40px 40px;
  opacity: 0.8;
  z-index: -1;
}

.bg_tree {
  position: relative;
}

.bg_tree::before {
  position: absolute;
  content: "";
  left: 0;
  top: 5%;
  background-image: url(../img/left_tree.png);
  background-repeat: repeat-y;
  width: 100%;
  height: 95%;
  z-index: -1;
}

.bg-dot {
  position: relative;
}

.bg-dot:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: 0 0 90px 0;
  background-image: radial-gradient(rgba(151, 196, 204, 0.3) 7%, transparent 10%), radial-gradient(rgba(151, 196, 204, 0.3) 7%, transparent 10%);
  background-position: 0 0, 20px 20px;
  background-size: 40px 40px;
  opacity: 0.8;
  z-index: -1;
}

.kuroki-logo {
  width: 420px;
  position: absolute;
  left: 0;
  top: 80px;
  z-index: 0;
  opacity: 0.4;
}

@media all and (max-width: 639px) {
  .kuroki-logo {
    width: 300px;
    opacity: 0.1;
  }
}

.kuroki-ttl {
  max-width: 450px;
  opacity: 0.4;
}

.bg-gray {
  position: relative;
  background: #eeeeee;
}

.bg-gray.bg-half {
  background: transparent;
  background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(50%, transparent), color-stop(50.1%, #eeeeee), to(#eeeeee));
  background-image: linear-gradient(to bottom, transparent 0%, transparent 50%, #eeeeee 50.1%, #eeeeee 100%);
}

.bg-gray2 {
  background-image: -webkit-gradient(linear, left top, right bottom, from(#eeeeee), to(#E7E7E7));
  background-image: linear-gradient(to right bottom, #eeeeee, #E7E7E7);
}

.bg-999 {
  background: #aaa;
}

.bg-yel {
  background: #FFFCE0;
}

.bg-beige {
  position: relative;
  background-color: #f5f3f1;
}

.bg-beige:before {
  position: absolute;
  content: "";
  width: calc(100% - 80px);
  height: calc(100% - 80px);
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: #fff;
  z-index: 0;
  opacity: 0.9;
}

@media all and (max-width: 896px) {
  .bg-beige:before {
    width: calc(100% - 10px);
  }
}

.bg-beige2 {
  background: #f5f3f1;
}

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

.bg-purchase {
  position: relative;
}

.bg-purchase::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
  background: url(../img/haikei.svg) no-repeat;
  background-size: cover;
  background-position: bottom;
}

.bg-purchase.type_opa::before {
  opacity: 0.8;
}

/* tbl
----------------------------------*/
.class_table {
  width: 100%;
  background: #FFFFFF;
  border-collapse: collapse;
  table-layout: fixed;
}

.class_table th,
.class_table td {
  padding: 10px;
  border: 1px solid rgba(110, 52, 10, 0.5);
  vertical-align: middle;
}

.class_table th {
  background: #FFFCE0;
}

.class_table img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.class_table span {
  background-color: #FF97AF;
  padding: 2px 15px;
  border-radius: 50px;
  font-size: 13px;
  color: #fff;
}

/* スマホ用カード：基本スタイル */
.class_cards_sp {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
}

.class_cards_sp li {
  background: #fff;
  border: 1px solid rgba(110, 52, 10, 0.3);
  border-radius: 15px;
  padding: 15px 12px;
  margin-bottom: 12px;
  text-align: center;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
}

.class_cards_sp .icon img {
  width: 100px;
  height: 100px;
  -o-object-fit: cover;
  object-fit: cover;
  margin: 0 auto 8px;
}

.class_cards_sp .name {
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 1.4rem;
  color: #543a25;
}

.class_cards_sp .cap span {
  background-color: #FF97AF;
  padding: 3px 14px;
  border-radius: 999px;
  font-size: 1.2rem;
  color: #fff;
  display: inline-block;
}

/* ★ スマホ以下で出し分け */
@media all and (max-width: 639px) {
  .class_table {
    display: none;
  }

  .class_cards_sp {
    display: block;
  }
}

.tbl-profile {
  width: 100%;
  border-top: 1px solid #FFE9EE;
}

.tbl-profile th,
.tbl-profile td {
  padding: 10px;
  font-size: 1.6rem;
  vertical-align: middle;
  border-bottom: 1px solid #FFE9EE;
}

@media all and (max-width: 639px) {

  .tbl-profile th,
  .tbl-profile td {
    font-size: 12px;
  }
}

.tbl-profile th {
  width: 24%;
  text-align: left;
}

.tbl-price {
  width: 100%;
  border-top: 1px solid rgba(145, 107, 80, 0.2);
}

.tbl-price th,
.tbl-price td {
  padding: 10px;
  vertical-align: middle;
  border-bottom: 1px solid rgba(145, 107, 80, 0.2);
}

.tbl-price th {
  width: 40%;
  text-align: left;
  font-size: 1.4rem;
  border-right: 1px solid rgba(145, 107, 80, 0.2);
  background: #f5f3f1;
}

.tbl-price th p {
  font-weight: normal;
  color: #916b50;
  letter-spacing: 0.1rem;
}

@media all and (max-width: 639px) {
  .tbl-price th {
    font-size: 12px;
  }
}

.tbl-price td {
  font-size: 12px;
}

.tbl {
  width: 100%;
}

.tbl.type1 {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.tbl.type1 th,
.tbl.type1 td {
  width: 50%;
}

.tbl.type1 th {
  text-align: center;
  background: #f9f9f9;
}

.tbl .w150 {
  width: 150px;
}

@media all and (max-width: 639px) {
  .tbl .w150 {
    width: 100px;
  }
}

.tbl .w150 img {
  max-width: initial;
}

.tbl th,
.tbl td {
  padding: 15px;
  vertical-align: middle;
  border: 1px solid #ddd;
  font-size: 1.6rem;
}

.tbl th span,
.tbl td span {
  font-size: 1.4rem;
  font-weight: normal;
}

.tbl th {
  text-align: center;
  width: 23%;
  background: #eeeeee;
  color: #543a25;
  font-weight: 500;
}

.tbl thead th {
  background: #eeeeee;
}

.tbl .th-1 {
  width: 30%;
}

.tbl .th-2 {
  background: rgba(82, 131, 185, 0.2);
}

.tbl .th-3 {
  width: 26.6666666667%;
}

.tbl td.w150 {
  padding: 0;
}

.tbl td {
  background: #fff;
}

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

  .tbl th,
  .tbl td {
    padding: 10px;
    font-size: 12px;
  }

  .tbl th span,
  .tbl td span {
    font-size: 12px;
  }
}

@media all and (max-width: 639px) {
  .tbl.type1 {
    width: 98%;
  }

  .tbl.type1 th,
  .tbl.type1 td {
    display: block;
    width: 100%;
  }

  .tbl.type1 td.w150 {
    text-align: center;
    margin: 0 auto;
  }
}

.company {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px;
}

.company th,
.company td {
  padding: 15px 10px;
  vertical-align: middle;
}

.company th {
  width: 25%;
  position: relative;
  background: #ddb938;
  font-weight: bold;
  color: #fff;
  border-radius: 10px 0 0 10px;
}

.company th::after {
  left: 100%;
  top: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: #f7f7f7;
  border-width: 10px;
  border-left-color: #ddb938;
  margin-top: -10px;
}

.company td {
  background: #f7f7f7;
  padding-left: 25px;
  border-radius: 0 10px 10px 0;
}

.company.type1 th {
  background: #7bd1bd;
}

.company.type1 th::after {
  border-left-color: #7bd1bd;
}

@media all and (max-width: 639px) {
  .company th {
    font-weight: 400;
  }

  .company td {
    padding-left: 20px;
  }
}

.tbl_new {
  width: 100%;
}

.tbl_new tr th,
.tbl_new tr td {
  vertical-align: middle;
  padding: 15px 10px;
}

.tbl_new tr th {
  font-weight: 700;
  width: 30%;
  color: #543a25;
  text-align: left;
  padding-left: 30px;
  letter-spacing: 0;
}

@media all and (max-width: 639px) {
  .tbl_new tr th {
    width: 40%;
  }
}

.tbl_new tr:nth-child(odd) th,
.tbl_new tr:nth-child(odd) td {
  background: #eeeeee;
}

.tbl-border {
  width: 100%;
  border-top: 1px solid rgba(255, 151, 175, 0.5);
  font-size: 1em;
}

.tbl-border.type1 th {
  background-color: transparent;
}

.tbl-border:last-child {
  border-bottom: 1px solid rgba(255, 151, 175, 0.5);
}

.tbl-border th,
.tbl-border td {
  padding: 15px;
  vertical-align: middle;
  border-bottom: 1px dashed rgba(255, 151, 175, 0.5);
}

@media all and (max-width: 639px) {

  .tbl-border th,
  .tbl-border td {
    vertical-align: initial;
    padding: 8px 5px;
  }
}

.tbl-border th {
  width: 15%;
  text-align: left;
  color: #FF97AF;
  background-color: #eee;
}

@media all and (max-width: 639px) {
  .tbl-border th {
    width: 30%;
  }
}

.tbl-border th.auto {
  width: auto;
}

.price {
  color: #7063A8;
  font-size: 1.3em;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
}

@media all and (max-width: 639px) {
  .price {
    font-size: 1.5rem;
  }
}

.timetable {
  padding: 20px 20px;
  width: 100%;
  border-top: 1px solid #FFE9EE;
}

.timetable th,
.timetable td {
  border-bottom: 1px solid #FFE9EE;
  padding: 10px 5px;
  text-align: center;
  vertical-align: middle;
  line-height: 1.4;
  font-size: 1.3rem;
}

.timetable th .txt,
.timetable td .txt {
  letter-spacing: 0;
  font-size: 12px;
}

@media all and (max-width: 639px) {

  .timetable th,
  .timetable td {
    font-size: 12px;
  }
}

.timetable .thead th {
  border-top: 0;
  color: #111;
  background: rgba(255, 233, 238, 0.2);
}

.timetable .th-1 {
  width: 35%;
  font-weight: 600;
  text-align: center;
}

.timetable .circle {
  color: #FFE9EE;
}

.timetable .triangle {
  color: #543a25;
}

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

  .timetable .th-1 {
    width: 25%;
  }
}

.notion {
  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;
  padding: 8px 15px;
  background: #eeeeee;
}

.notion .triangle {
  font-size: 2rem;
  color: #543a25;
}

.notion .notion-right {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-left: 20px;
  text-align: left;
}

@media all and (max-width: 639px) {
  .notion .notion-right {
    font-size: 12px;
  }
}

.notion .notion-right span {
  color: #543a25;
  font-weight: bold;
  background: #FFFCE0;
  padding: 0 4px;
}

/* ggmap
----------------------------------*/
.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.youtube {
  padding-bottom: 56.25%;
}

/* list
----------------------------------*/
.list_common li {
  padding-bottom: 4px;
  margin-bottom: 5px;
  border-bottom: 1px dotted rgba(255, 233, 238, 0.5);
}

.list_common li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.list_check.type1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.list_check.type1 li {
  width: 48%;
}

.list_check.type1 li:nth-child(2n) {
  margin-left: 4%;
}

@media all and (max-width: 639px) {
  .list_check.type1 li {
    width: 95%;
    margin: 0 auto 5px;
  }

  .list_check.type1 li:nth-child(2n) {
    margin-left: auto;
  }
}

.list_check li {
  margin-bottom: 5px;
}

.list_check li span {
  font-weight: normal;
  font-size: 0.9em;
  display: block;
  padding: 10px;
  background: rgba(245, 243, 241, 0.2);
  margin-top: 10px;
}

.list_check li a {
  color: #FFF9B6;
  border-bottom: 1px dotted #FFF9B6;
  font-size: 1.9rem;
}

.list_check li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f054";
  font-weight: 900;
  margin-right: 10px;
  color: #FFF9B6;
}

@media all and (max-width: 639px) {
  .list_check li {
    width: 98%;
    margin: 0 auto 5px;
  }

  .list_check li a {
    font-size: 1.3rem;
  }
}

.list_check2 li {
  padding: 4px 8px;
  font-weight: 700;
}

.list_check2 li .num {
  color: #FFF9B6;
  margin: 0 4px;
}

.list_check2 li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  font-weight: 900;
  margin-right: 10px;
  color: #FFE9EE;
}

.list_check2 li:not(:last-child) {
  margin-bottom: 4px;
  border-bottom: 1px dashed #eee;
}

.list-inline2 {
  text-align: center;
}

.list-inline2 li {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 15px;
  background: #fefefe;
  border: 1px solid #FFE9EE;
  font-weight: 700;
}

.list-inline2 li:not(:last-child) {
  margin-right: 8px;
}

.list-inline li {
  display: inline-block;
  padding: 3px;
}

.list-inline li:not(:last-of-type):after {
  content: "/";
  margin: 0 5px;
  color: #543a25;
  font-weight: normal;
}

@media all and (max-width: 639px) {
  .list-inline li {
    display: block;
    padding: 0;
  }

  .list-inline li:before {
    content: "-";
    color: #543a25;
  }

  .list-inline li:not(:last-of-type):after {
    display: none;
  }
}

.list_policy li {
  position: relative;
  padding: 8px 8px 8px 50px;
  color: #543a25;
}

.list_policy li span {
  position: absolute;
  font-size: 3rem;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  color: #FFF9B6;
  left: 4px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.ol-list {
  counter-reset: number;
  list-style: none;
  padding: 5px;
  font-weight: 400;
}

.ol-list.type1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.ol-list.type1>li {
  width: 48%;
}

.ol-list.type1>li:nth-child(2n) {
  margin-left: 4%;
}

.ol-list.white>li {
  color: #fff;
}

.ol-list.white>li .ol-lead {
  color: #fff;
}

.ol-list.white>li:before {
  color: #fff;
}

.ol-list li {
  line-height: 2;
  margin-bottom: 10px;
  border-bottom: 1px dotted #fff;
  position: relative;
  padding-left: 38px;
  padding-bottom: 10px;
}

.ol-list li .ol-lead {
  color: rgb(255, 131, 159.1818181818);
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 500;
}

.ol-list li .inner {
  font-weight: normal;
  display: block;
  padding: 10px;
  line-height: 1.6;
  font-size: 1.4rem;
}

.ol-list li:before {
  counter-increment: number;
  content: counter(number);
  background: #FFE9EE;
  display: inline-block;
  width: 1.6em;
  height: 1.6em;
  line-height: 1.6em;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 1.6rem;
  color: #fff;
  border-radius: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

@media all and (max-width: 639px) {
  .ol-list li {
    padding-left: 32px;
    font-size: 1.2rem;
    line-height: 1.7;
  }

  .ol-list li .ol-lead {
    font-size: 1.4rem;
  }

  .ol-list li .inner {
    font-size: 0.9em;
  }

  .ol-list li:before {
    font-size: 1.3rem;
    width: 1.7em;
    height: 1.7em;
  }
}

.list_disc li {
  font-size: 1.4rem;
  padding: 5px 0;
}

.list_disc li:not(:last-of-type) {
  margin-bottom: 5px;
  border-bottom: 1px dashed #FF97AF;
}

.list_disc li:before {
  content: "●";
  margin-right: 5px;
  color: #FF97AF;
  font-size: 0.7em;
}

.list_disc li.hoshi::before {
  content: "★";
  font-size: 1.1em;
  margin-right: 5px;
  color: #FFF9B6;
  margin-left: -0.22em;
}

@media all and (max-width: 639px) {
  .list_disc li {
    font-size: 1.2rem;
  }
}

.list_disc.type1 li {
  position: relative;
  font-size: 1.5rem;
  padding: 5px 0 5px 18px;
}

.list_disc.type1 li::before {
  position: absolute;
  left: 0;
  top: 10px;
}

.list_disc.type_col2 {
  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;
}

.list_disc.type_col2 li {
  width: 47%;
}

.list_disc.type_col2 li:not(:last-of-type) {
  margin-bottom: 5px;
}

.list_disc2 li {
  padding: 10px 0;
  font-size: 1.6rem;
  position: relative;
}

.list_disc2 li::before {
  content: "";
  font-family: "Font Awesome 5 Free";
  content: "\f005";
  font-weight: 900;
  margin-right: 5px;
  color: #faf07a;
  font-size: 1em;
}

@media all and (max-width: 639px) {
  .list_disc2 li {
    font-size: 1.2rem;
    padding: 2px;
  }

  .list_disc2 li::before {
    font-size: 0.9em;
  }
}

.list-btn {
  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-btn li {
  width: 32%;
  margin: 0 1.995% 40px 0;
}

.list-btn li a {
  display: block;
  background: #FFF9B6;
  color: #fff;
  font-weight: 700;
  padding: 5px;
  text-align: center;
  width: 100%;
  height: 100%;
  line-height: 1.5;
  font-size: 1.5rem;
  letter-spacing: 0;
}

.list-btn li:hover {
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.list-btn li:hover .top-bnr-img img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.list-btn li .top-bnr-img {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.list-btn li .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) {
  .list-btn li .top-bnr-img {
    height: 200px;
  }
}

.list-btn li:nth-child(3n) {
  margin-right: 0;
}

@media all and (max-width: 639px) {
  .list-btn li {
    width: 90%;
    margin: 0 auto 10px;
  }

  .list-btn li a {
    font-size: 1.2rem;
  }

  .list-btn li:nth-child(3n) {
    margin-right: auto;
  }
}

.list-btn.type1 {
  max-width: 1000px;
  margin: 0 auto 20px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.list-btn.type1 li a {
  background: #FFF9B6;
  border: 1px solid rgb(255, 244.8082191781, 131);
}

.list-btn.type1 li a:hover {
  background: rgb(199.7, 220.7, 170.3);
}

.list-btn.type1 li a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f13a";
  font-weight: 900;
  margin-right: 5px;
}

.list-paper li {
  position: relative;
  padding: 5px 5px 8px 25px;
  margin-bottom: 8px;
  border-bottom: 0.9px solid #E7E7E7;
  font-size: 1.4rem;
  line-height: 2;
}

.list-paper li:before {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  top: 14px;
  left: 5px;
  background: #FFF9B6;
  border-radius: 50%;
}

.list-paper li .em {
  background: rgba(255, 252, 224, 0.6);
  font-weight: 600;
  padding: 0 4px;
}

@media all and (max-width: 639px) {
  .list-paper li {
    font-size: 13px;
  }
}

.txt01 {
  letter-spacing: 0;
}

.top-about-box {
  position: relative;
  z-index: 4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 50px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media all and (max-width: 1100px) {
  .top-about-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 120px;
  }
}

@media all and (max-width: 639px) {
  .top-about-box {
    padding: 120px 15px 0;
  }
}

.top-about-box .left {
  width: 25%;
  -ms-flex-item-align: end;
  align-self: flex-end;
}

@media all and (max-width: 1100px) {
  .top-about-box .left {
    margin-bottom: 40px;
    -ms-flex-item-align: center;
    align-self: center;
    width: 70%;
  }
}

.top-about-box .right {
  max-width: 70%;
  min-width: 950px;
  padding-right: 10px;
}

@media all and (max-width: 1100px) {
  .top-about-box .right {
    max-width: 80%;
    min-width: auto;
    margin-left: auto;
  }
}

@media all and (max-width: 896px) {
  .top-about-box .right {
    max-width: 100%;
  }
}

@media all and (max-width: 639px) {
  .top-about-box .right {
    max-width: 100%;
    min-width: initial;
    padding-right: 0;
  }
}

.business-head-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
}

@media all and (max-width: 896px) {
  .business-head-list {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media all and (max-width: 639px) {
  .business-head-list {
    gap: 40px 3%;
  }
}

.business-head-list li {
  width: 41%;
  margin-right: 2%;
  margin-bottom: 40px;
}

.business-head-list li:nth-child(2n) {
  margin-right: 0;
  -webkit-transform: translateY(80px);
  transform: translateY(80px);
}

@media all and (max-width: 896px) {
  .business-head-list li {
    width: 45%;
  }
}

@media all and (max-width: 639px) {
  .business-head-list li {
    width: 100%;
    margin-right: auto;
    margin-bottom: 15px;
  }

  .business-head-list li:nth-child(2n) {
    margin-right: auto;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.business-head-list a {
  display: block;
  position: relative;
}

.business-head-list a .eng {
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  position: absolute;
  left: -2px;
  top: -4px;
  z-index: 5;
  color: #fff;
  font-size: 3rem;
  line-height: 1;
}

@media all and (max-width: 639px) {
  .business-head-list a .eng {
    font-size: 1.8rem;
  }
}

.business-head-list a figure {
  height: 265px;
  overflow: hidden;
  border-radius: 0 0 40px 0;
}

.business-head-list a figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media all and (max-width: 1100px) {
  .business-head-list a figure {
    height: 250px;
  }
}

@media all and (max-width: 639px) {
  .business-head-list a figure {
    height: 220px;
  }
}

.business-head-list a figcaption {
  position: relative;
  margin-top: -30px;
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.business-head-list a figcaption .big {
  font-weight: 600;
  background: #FFF9B6;
  color: #fff;
  font-size: 1.15em;
  display: inline-block;
  padding: 8px 10px 8px 16px;
  line-height: 1.2;
  border-radius: 0 40px 40px 0;
  -webkit-transition: 0.3s all cubic-bezier(0.18, 0.06, 0.23, 1);
  transition: 0.3s all cubic-bezier(0.18, 0.06, 0.23, 1);
}

.business-head-list a figcaption .big:after {
  font-family: "Font Awesome 5 Free";
  content: "\f061";
  font-weight: 900;
  margin-left: 12px;
  display: inline-block;
  width: 25px;
  height: 25px;
  font-size: 13px;
  line-height: 25px;
  background: #fff;
  color: #333;
  border-radius: 50%;
  text-align: center;
}

@media all and (max-width: 639px) {
  .business-head-list a figcaption {
    margin-top: -18px;
  }

  .business-head-list a figcaption .big {
    font-size: 1.1rem;
    padding: 8px 8px 8px 10px;
    white-space: nowrap;
  }

  .business-head-list a figcaption .big:after {
    width: 15px;
    height: 15px;
    line-height: 15px;
    font-size: 11px;
    margin-left: 5px;
  }
}

.business-head-list a:hover figcaption .big {
  background: #111;
}

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

#top-blog .blog-img {
  height: 170px;
}

@media all and (max-width: 639px) {
  #top-blog .blog-img {
    height: 90px;
  }
}

#main .blog-wrap>li {
  width: 32%;
}

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

@media all and (max-width: 639px) {
  #main .blog-wrap>li {
    width: 100%;
    margin: 0 auto 10px;
  }

  #main .blog-wrap>li:last-child {
    margin-bottom: 0;
  }
}

.blog-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.blog-wrap * {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.blog-wrap>li {
  width: 24%;
  margin: 0 0.5% 20px 0.5%;
  position: relative;
  background: rgba(255, 255, 255, 0.8);
  padding: 15px 10px;
}

@media all and (max-width: 1100px) {
  .blog-wrap>li {
    width: 49%;
  }
}

.blog-wrap>li>a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
}

.blog-wrap>li>a:hover~.blog-img img {
  opacity: 1;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

@media all and (max-width: 639px) {
  .blog-wrap>li {
    width: 90%;
    margin: 0 auto 10px;
  }
}

.blog-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.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;";
}

.blog-img:hover img {
  opacity: 1 !important;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.blog-detail {
  padding-top: 10px;
}

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

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

.blog-date {
  background: #FFF9B6;
  width: 100px;
  padding: 5px;
  line-height: 1.3;
  text-align: center;
  display: inline-block;
  color: #fff;
  font-size: 12px;
}

.blog-date2 {
  color: rgb(255, 242.7123287671, 105.5);
  font-size: 0.9em;
  margin-bottom: 5px;
  margin-right: 5px;
}

.blog-date2:before {
  font-family: "Font Awesome 5 Free";
  content: "\f017";
  font-weight: 900;
  margin-right: 5px;
}

.blog-title {
  font-weight: 700;
  line-height: 1.3;
  margin: 10px 0;
  color: #FFF9B6;
}

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

@media all and (max-width: 639px) {
  .blog-txt {
    font-size: 12px;
  }
}

.pages {
  text-align: center;
  margin-top: 30px;
}

.pages .page_next,
.pages .page_prev {
  display: inline-block;
  margin: 0 20px;
}

.pages .page_next a,
.pages .page_prev a {
  color: #FFF9B6;
  padding: 4px 5px;
  font-size: 12px;
}

.category_nav {
  border: 1px solid #dddddd;
}

.category_nav li a {
  display: block;
  padding: 15px;
  border-bottom: 1px dotted #dddddd;
  background-color: #ffffff;
}

.category_nav li a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0a9";
  font-weight: 900;
  margin-right: 5px;
}

.category_nav li a:hover {
  background: #eeeeee;
}

.category_nav li:last-child a {
  border-bottom: none;
}

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

.img-round {
  border-radius: 15px 0 15px 0;
}

.w120 {
  width: 120px;
}

@media all and (max-width: 896px) {
  .w120 {
    max-width: 100px;
    width: 60%;
  }
}

.w300 {
  width: 300px;
}

.spbr {
  display: none !important;
}

.color1 {
  color: #FFF9B6;
}

.color2 {
  color: #543a25;
}

.color3 {
  color: #f66009;
}

.relative {
  position: relative;
}

.txt1 {
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 2;
}

.bigger {
  font-size: 5rem;
}

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

.num {
  font-weight: 700;
}

.num a {
  color: #FFF9B6;
  font-size: 2.8rem;
  text-align: center;
  margin-left: 5px;
}

@media all and (max-width: 639px) {
  .num a {
    font-size: 2rem;
  }
}

.num a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  margin-right: 5px;
}

.num a:hover {
  color: #FFF9B6;
}

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

.telbox .inner {
  background: #fff;
  padding: 10px;
}

.txt-link {
  font-weight: 600;
  text-decoration: underline;
}

.txt-link:hover {
  text-decoration: none;
}

.telbnr {
  max-width: 500px;
  margin: 20px auto 0;
}

.telbnr li {
  border: 3px solid #FF97AF;
  padding: 10px 10px;
  text-align: center;
  border-radius: 40px;
}

.telbnr li a {
  display: block;
  font-size: 3.5rem;
  font-weight: 700;
  color: #FF97AF;
}

.telbnr li a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  margin-right: 5px;
}

.telbnr li a:hover {
  color: #B0CE86;
}

.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: 500;
  font-size: 1.8rem;
  color: #fff;
  margin-top: -30px;
}

.telbnr-ttl span {
  background: #FF97AF;
  padding: 0 20px;
  border-radius: 30px;
}

@media all and (max-width: 639px) {
  .telbnr-ttl {
    font-size: 1.3rem;
  }
}

/* breadcrumb
----------------------------------*/
.breadcrumb {
  max-width: 1200px;
  margin: 20px auto 20px;
  font-size: 1.2rem;
}

.breadcrumb li {
  display: inline;
  color: #aaa;
}

.breadcrumb li a {
  color: #FF97AF;
}

.breadcrumb li+li:before {
  margin: 0 10px;
  content: ">";
}

@media all and (max-width: 639px) {
  .breadcrumb {
    font-size: 12px;
  }
}

/* form
----------------------------------*/
.form {
  margin: 0 auto;
  width: 90%;
}

.form dl dt {
  float: left;
  width: 280px;
  padding-top: 20px;
  font-weight: 500;
  color: #543a25;
}

.form dl dt span {
  color: #fff;
  background: #FFF9B6;
  padding: 5px 8px;
  margin-right: 5px;
  font-size: 11px;
  border-radius: 20px;
  position: relative;
  top: -2px;
}

.form dl dt span.nini {
  background: #f5f29b;
  color: #543a25;
}

.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: 20px 15px;
  width: 100%;
  background: #f5f5f5;
  border-radius: 0;
  -webkit-appearance: none;
}

.form .textarea {
  height: 30px;
}

.form .textarea02 {
  width: 48.5%;
  margin-right: 3%;
}

.form .textarea02:last-child {
  margin-right: 0;
}

.form .textarea03 {
  width: 25%;
  margin-right: 1%;
  height: 40px;
  padding: 10px 15px;
  -webkit-appearance: menulist-button;
}

.form .textarea04 {
  width: 48% !important;
  margin-right: 0.5%;
}

.form button {
  cursor: pointer;
  display: block;
  color: #fff;
  text-align: center;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  border: 1px solid #FFF9B6;
  font-weight: 700;
  padding: 12px 5px;
  margin: 0 auto;
  width: 250px;
  background: #FFF9B6;
  border-radius: 25px;
}

.form button:hover {
  background: #fff;
  color: #FFF9B6;
}

.form button:before {
  font-weight: normal;
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
  margin-right: 10px;
}

.form .select-wrap {
  position: relative;
  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: #FFF9B6;
}

.form label.radio_text {
  cursor: pointer;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
  padding-left: 20px;
  display: inline-block;
}

.form label.radio_text:before {
  position: absolute;
  width: 15px;
  height: 15px;
  border: 1px solid #ccc;
  border-radius: 50%;
  left: 0px;
  top: 2px;
  content: "";
  z-index: 3;
}

.form label.radio_text:after {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 100%;
  left: 2px;
  top: 4px;
  background-color: #FFF9B6;
  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 0px 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 #FFF9B6;
  border-bottom: 3px solid #FFF9B6;
  -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;
}

.thanks {
  padding: 40px;
  border: 3px solid #FFF9B6;
  -webkit-box-shadow: 0 0 0 8px rgba(255, 249, 182, 0.2);
  box-shadow: 0 0 0 8px rgba(255, 249, 182, 0.2);
  max-width: 700px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 20px;
}

@media all and (max-width: 639px) {
  .thanks {
    max-width: 90%;
    padding: 30px 20px;
  }
}

.shadow {
  -webkit-box-shadow: 0 0 10px rgba(84, 58, 37, 0.05);
  box-shadow: 0 0 10px rgba(84, 58, 37, 0.05);
}

.policy {
  padding: 30px;
  background: #fbfbfb;
}

.mtitle_small {
  font-weight: bold;
  color: #543a25;
  padding: 10px 0;
  font-size: 1.6rem;
  border-top: 1px solid #FFE9EE;
  border-bottom: 1px solid #FFE9EE;
  margin-bottom: 20px;
}

.mtitle_small:before {
  content: "―";
  margin-right: 8px;
  color: #FFE9EE;
}

@media all and (max-width: 639px) {
  .mtitle_small {
    padding: 6px 4px;
    font-size: 1.3rem;
  }
}

.mtitle_small2 {
  position: relative;
  margin-bottom: 10px;
  padding-left: 20px;
}

.mtitle_small2:before {
  content: "";
  background-color: #FFF9B6;
  width: 10px;
  height: 4px;
  position: absolute;
  top: 0.6em;
  left: 0;
}

.mtitle_small3 {
  position: relative;
  font-size: 1.7rem;
  color: #111;
  text-align: center;
  margin-bottom: 20px;
}

.mtitle_small3:before {
  content: "";
  width: 30px;
  height: 1px;
  background-color: #111;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -15px;
}

.mtitle_small4 {
  position: relative;
  background: #fff;
  border: 1px solid #ddd;
  font-size: 1.8rem;
  padding: 15px 10px 15px 30px;
  margin-bottom: 15px;
  font-weight: 500;
  letter-spacing: 0.15em;
}

.mtitle_small4::before {
  position: absolute;
  top: 15%;
  left: 10px;
  width: 5px;
  height: 70%;
  content: "";
  background: #FFF9B6;
}

@media all and (max-width: 639px) {
  .mtitle_small4 {
    font-size: 1.4rem;
    padding: 12px 10px 12px 24px;
  }

  .mtitle_small4::before {
    left: 5px;
  }
}

.form-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  padding-left: 130px;
  margin-bottom: 15px;
}

.form-list .form-txt {
  position: absolute;
  left: 0;
  top: 0;
  color: #916b50;
  width: 120px;
  display: block;
}

.form-list label {
  margin-right: 8px;
}

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

  .form-list .form-txt {
    position: relative;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    width: 100%;
    top: auto;
    left: auto;
    margin-bottom: 5px;
  }
}

/* slick
----------------------------------*/
.thumb-item li {
  width: 100%;
}

.thumb-item-nav li {
  overflow: hidden;
  height: 100px;
}

.thumb-item-nav li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
}

@media all and (max-width: 639px) {
  .thumb-item-nav li {
    height: 80px;
  }
}

/*photoギャラリー*/
.gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.gallery li {
  width: 31%;
  margin: 0 1.3333333333% 25px 0;
}

.gallery li:nth-child(3n) {
  margin-right: 0;
}

.gallery li a {
  background: rgba(245, 243, 241, 0.2);
  display: block;
  text-align: center;
  padding: 0px;
  height: 300px;
}

.gallery li a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
  /*IE対策*/
}

.gallery li p {
  font-size: 14px;
  margin: 3px 0 10px;
}

@media all and (max-width: 896px) {
  .gallery li {
    width: 48%;
    margin: 0 1% 20px;
  }

  .gallery li:nth-child(2n) {
    margin-right: 0;
  }

  .gallery li a {
    height: 230px;
  }

  .gallery li p {
    font-size: 12px;
  }
}

@media all and (max-width: 639px) {
  .gallery li a {
    height: 150px;
  }
}

.list2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 1500px;
  margin-right: auto;
  margin-left: auto;
  margin-top: -50px;
}

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

.list2.interview-list .child {
  position: relative;
  padding-bottom: 80px;
}

.list2.type1>li,
.list2.type1 .child {
  background: #fefefe;
  padding: 20px;
}

.list2.type2 {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.list2>li,
.list2 .child {
  width: 48%;
  margin-top: 50px;
  position: relative;
}

.list2>li:nth-child(2n),
.list2 .child:nth-child(2n) {
  margin-left: 4%;
}

@media all and (max-width: 639px) {

  .list2>li:nth-child(2n),
  .list2 .child:nth-child(2n) {
    margin-left: auto;
  }
}

@media all and (max-width: 639px) {

  .list2>li,
  .list2 .child {
    width: 100%;
    margin: 20px auto 0;
  }
}

.list2>li .image,
.list2 .child .image {
  height: 350px;
  display: block;
}

.list2>li .image img,
.list2 .child .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  font-family: "object-fit: contain;";
  /*IE対策*/
}

@media all and (max-width: 896px) {

  .list2>li .image,
  .list2 .child .image {
    height: auto;
  }
}

.list2>li .mtitle3,
.list2 .child .mtitle3 {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  -webkit-font-feature-settings: "pkna";
  font-feature-settings: "pkna";
  position: absolute;
  min-height: 100px;
  top: 0;
  left: 0;
}

.list2>li .mtitle3 .ja,
.list2 .child .mtitle3 .ja {
  display: block;
  font-size: 2.5rem;
  color: #222;
  letter-spacing: 0.2em;
  padding-right: 5px;
  font-weight: 400;
  font-family: "Zen Maru Gothic", "YakuHanJP", "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  line-height: 2;
}

.list2>li .mtitle3 .eng,
.list2 .child .mtitle3 .eng {
  display: block;
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  color: #FFF9B6;
}

@media all and (max-width: 639px) {

  .list2>li .mtitle3,
  .list2 .child .mtitle3 {
    -webkit-writing-mode: inherit;
    -ms-writing-mode: inherit;
    writing-mode: inherit;
    position: static;
    margin-bottom: 20px;
    min-height: initial;
    min-height: auto;
  }

  .list2>li .mtitle3 .ja,
  .list2 .child .mtitle3 .ja {
    font-size: 2rem;
  }

  .list2>li .mtitle3 .eng,
  .list2 .child .mtitle3 .eng {
    font-size: 1.6rem;
  }
}

.list3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.list3.type1>li {
  background: #fff;
  padding: 20px;
}

.list3.type2 {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 70px;
}

.list3.type2 li {
  width: 28%;
  margin: 0 3% 20px 0;
}

.list3.type2 li img {
  -webkit-filter: drop-shadow(0px 0px 5px rgba(17, 17, 17, 0.5));
  filter: drop-shadow(0px 0px 5px rgba(17, 17, 17, 0.5));
}

@media all and (max-width: 639px) {
  .list3.type2 {
    margin-top: 0;
  }

  .list3.type2 li {
    width: 50%;
    margin: 0 auto 30px;
    margin-bottom: 0;
  }

  .list3.type2 li:nth-child(2) {
    margin-top: auto;
  }
}

.list3 li {
  width: 31%;
  position: relative;
  margin: 0 3.495% 20px 0;
}

.list3 li:nth-child(3n) {
  margin-right: 0;
}

@media all and (max-width: 639px) {
  .list3 li {
    width: 80%;
    margin: 0 auto 30px;
  }

  .list3 li:nth-child(3n) {
    margin-right: auto;
  }
}

.list4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -2%;
  margin-top: -30px;
}

.list4.type1 {
  margin-right: auto;
  margin-left: auto;
}

.list4.type1 li {
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.list4.type1 li a {
  display: block;
}

.list4.type1 li a:hover {
  position: relative;
  -webkit-transform: translate(0, 10px);
  transform: translate(0, 10px);
}

@media all and (max-width: 639px) {
  .list4.type1>li {
    width: 48%;
  }
}

.list4 li {
  margin-left: 2%;
  margin-top: 30px;
  width: 23%;
}

@media all and (max-width: 1100px) {
  .list4 li {
    width: 31.33%;
  }
}

@media all and (max-width: 639px) {
  .list4 {
    margin-left: auto;
  }

  .list4 li {
    width: 90%;
    margin: 25px auto 0;
  }
}

.top-menu-list2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.top-menu-list2>li {
  width: 30%;
}

.top-menu-list2>li a {
  color: #111;
}

.top-menu-list2>li .ttl01 {
  position: absolute;
  right: 0;
  top: -1.5rem;
  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-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.top-menu-list2>li .ttl01 .num {
  background: #d55d54;
  border-radius: 50%;
  width: 4.5rem;
  height: 4.5rem;
  line-height: 4.5rem;
  text-align: center;
  color: #fefefe;
  margin-bottom: 10px;
}

.top-menu-list2>li .ttl01 .eng {
  -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";
  color: #d55d54;
  font-size: 2rem;
}

.top-menu-list2>li .ttl02 {
  text-align: center;
  font-size: 1.8rem;
}

.top-menu-list2>li .icon {
  width: 120px;
  margin: 0 auto 20px;
  -webkit-transition: 0.2s all ease;
  transition: 0.2s all ease;
}

.top-menu-list2>li .icon img {
  width: 120px;
  height: 120px;
  -o-object-fit: contain;
  object-fit: contain;
}

.top-menu-list2>li .inner {
  display: block;
  position: relative;
  padding: 38px;
  background: #fefefe;
  border-radius: 20px;
  -webkit-box-shadow: 10px 10px 35px rgba(203, 203, 203, 0.35);
  box-shadow: 10px 10px 35px rgba(203, 203, 203, 0.35);
}

.top-menu-list2>li:hover .inner .icon {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  opacity: 0.8;
}

@media all and (max-width: 1100px) {
  .top-menu-list2>li .btn02 {
    width: 180px;
  }

  .top-menu-list2>li a {
    padding: 40px;
  }
}

@media all and (max-width: 639px) {
  .top-menu-list2>li .ttl02 {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .top-menu-list2>li .icon {
    margin-bottom: 20px;
    width: 100px;
  }
}

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

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

.note {
  padding: 20px;
  background: #fff;
}

.note.type1 {
  background: #FFFCE0;
  border-radius: 20px;
}

.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;
}

.flow-dl dt {
  color: #FFE9EE;
  width: 70px;
  text-align: center;
  margin-right: 20px;
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  line-height: 1;
  padding-top: 8px;
  background: #fff;
  padding: 15px;
  border-radius: 10px 0 10px 0;
}

.flow-dl dt span {
  font-size: 3rem;
  display: block;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  color: #FFF9B6;
}

.flow-dl dd {
  width: calc(100% - 90px);
  margin-bottom: 40px;
  border-bottom: 1px dashed #eeeeee;
  padding-bottom: 25px;
}

.flow-dl dt:not(:last-child),
.flow-dl dd:not(:last-child) {
  margin-bottom: 20px;
}

@media all and (max-width: 639px) {
  .flow-dl dt {
    font-size: 1.3rem;
  }

  .flow-dl dt span {
    font-size: 2.2rem;
  }
}

.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 {
  width: 49%;
  padding: 5px 0;
  margin-bottom: 5px;
  text-align: center;
  letter-spacing: 0;
  background: #ea9c00;
}

.blog-month ul li:nth-child(2n) {
  margin-left: 2%;
}

.blog-month ul li a {
  color: #fff;
  font-size: 12px;
}

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

.list-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.list-center li {
  width: 50%;
}

@media all and (max-width: 639px) {
  .list-center {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .list-center li {
    width: 100%;
  }
}

.faq-dl .faq-inner {
  padding: 10px;
  margin-bottom: 20px;
}

.faq-dl .faq-inner:not(:last-of-type) {
  margin-bottom: 35px;
  padding-bottom: 20px;
  border-bottom: 3px solid #eee;
}

.faq-dl .faq-inner dt,
.faq-dl .faq-inner dd {
  position: relative;
  padding: 10px 10px 10px 55px;
}

.faq-dl .faq-inner dt:before,
.faq-dl .faq-inner dd:before {
  position: absolute;
  content: "";
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  left: 0;
  top: 0;
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
}

.faq-dl .faq-inner dt {
  margin-bottom: 10px;
  font-weight: 700;
}

.faq-dl .faq-inner dt:before {
  content: "Q";
  color: #fff;
  font-size: 3rem;
  background: rgba(255, 249, 182, 0.4);
}

.faq-dl .faq-inner dd:before {
  content: "A";
  color: #FFE9EE;
  font-size: 3rem;
  background: #FFFCE0;
}

.point-title {
  position: relative;
  font-size: 2.5rem;
  letter-spacing: 0.2rem;
  border-bottom: 1px solid #FFF9B6;
  line-height: 1.3;
  margin-bottom: 15px;
}

.point-title span {
  color: #FFF9B6;
  font-size: 4rem;
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
}

@media all and (max-width: 639px) {
  .point-title {
    font-size: 1.6rem;
  }

  .point-title span {
    font-size: 2.2rem;
  }
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: 30px !important;
  right: auto;
  background: rgba(255, 249, 182, 0.7);
}

@media all and (max-width: 639px) {

  .swiper-button-prev,
  .swiper-container-rtl .swiper-button-next {
    left: 10px !important;
  }
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: 30px !important;
  left: auto;
  background: rgba(255, 249, 182, 0.7);
}

@media all and (max-width: 639px) {

  .swiper-button-next,
  .swiper-container-rtl .swiper-button-prev {
    right: 10px !important;
  }
}

@media all and (max-width: 639px) {

  .swiper-button-next,
  .swiper-button-prev {
    width: 17px !important;
    height: 28px !important;
    background-size: 17px 28px !important;
  }
}

.point-num {
  position: relative;
  z-index: 2;
  width: 60px;
  height: 60px;
  background: #FFE9EE;
  color: #222;
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  font-size: 3.5rem;
  border-radius: 100%;
  text-align: center;
  margin: 0 auto -20px;
  line-height: 60px;
  -webkit-box-shadow: 0 0 0 4px rgba(254, 254, 254, 0.6);
  box-shadow: 0 0 0 4px rgba(254, 254, 254, 0.6);
}

.sns-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.sns-list.center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 15px 0;
}

.sns-list li a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 15px;
  color: #d55d54;
  display: block;
  background: #fefefe;
  border-radius: 100%;
  text-align: center;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  position: relative;
}

.sns-list li a:hover {
  opacity: 0.7;
}

.sns-list li a.btn-facebook {
  background: #1877f2;
}

.sns-list li a.btn-twitter {
  background: #1da1f2;
}

.sns-list li a.btn-instagram {
  overflow: hidden;
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
}

.sns-list li a.btn-instagram i {
  position: relative;
  z-index: 2;
}

.sns-list li a.btn-instagram:before {
  content: "";
  position: absolute;
  /*絶対配置*/
  top: 18px;
  /*ずらす*/
  left: -10px;
  /*ずらす*/
  width: 50px;
  /*グラデーションカバーの幅*/
  height: 50px;
  /*グラデーションカバーの高さ*/
  background: radial-gradient(#ffdb2c 10%, rgba(255, 105, 34, 0.65) 55%, rgba(255, 88, 96, 0) 70%);
  /*グラデーション②*/
}

.sns-list li:not(:last-child) {
  margin-right: 10px;
}

@media all and (max-width: 896px) {
  .sns-list li:not(:last-child) {
    margin-right: 5px;
    margin-bottom: 0;
  }
}

.greet-box {
  width: 65%;
  padding: 20px;
}

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

.greet-txt {
  color: #FFF9B6;
  line-height: 2;
}

.name {
  width: 200px;
  margin: -20px auto 20px;
  position: relative;
  z-index: 2;
  background: #fff;
  color: #FFF9B6;
  font-weight: 600;
  text-align: center;
  padding: 8px 6px;
  -webkit-box-shadow: 0 0 8px rgba(84, 58, 37, 0.05);
  box-shadow: 0 0 8px rgba(84, 58, 37, 0.05);
  line-height: 1.5;
}

.name span {
  color: #FFE9EE;
  display: block;
  font-size: 1.4rem;
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
}

.vertical-content {
  margin-left: 100px;
}

.vertical-content.type1 {
  margin-left: 180px;
}

@media all and (max-width: 1100px) {
  .vertical-content.type1 {
    margin-left: 100px;
  }
}

@media all and (max-width: 639px) {
  .vertical-content.type1 {
    margin-left: 0;
  }
}

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

.flow-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
}

.flow-list.type1 {
  display: block;
}

.flow-list.type1>li {
  width: 100%;
}

.flow-list.type1>li .flow-title {
  margin-bottom: 10px;
}

.flow-list>li {
  width: 48%;
  margin-right: 4%;
  margin-bottom: 35px;
  padding: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  background: rgba(245, 243, 241, 0.8);
  border-radius: 10px;
}

.flow-list>li:nth-child(2n) {
  margin-right: 0;
}

@media all and (max-width: 639px) {
  .flow-list>li {
    width: 100%;
    margin: 0 auto 30px;
  }

  .flow-list>li:nth-child(2n) {
    margin-right: auto;
  }
}

.flow-list>li .flow-num {
  color: #FFF9B6;
  border-right: 1px solid #FFFCE0;
  padding-right: 15px;
  -ms-flex-item-align: center;
  align-self: center;
  line-height: 1.2;
  font-size: 1.3rem;
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
}

.flow-list>li .flow-num span {
  font-size: 3.5rem;
  display: block;
  text-align: center;
}

.flow-list>li .txt {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-left: 35px;
}

.flow-list>li .flow-title {
  color: #543a25;
  border-bottom: 1px solid #FFE9EE;
  padding-bottom: 4px;
  font-weight: 600;
  font-size: 1.8rem;
  letter-spacing: 0.2rem;
}

@media all and (max-width: 639px) {
  .flow-list>li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .flow-list>li .flow-num {
    text-align: center;
    border-right: 0;
    padding: 0 0 4px;
    border-bottom: 1px solid #FFE9EE;
  }

  .flow-list>li .flow-num span {
    font-size: 2.5rem;
  }

  .flow-list>li .flow-title {
    font-size: 1.3rem;
  }

  .flow-list>li .txt {
    margin: 20px auto 0;
  }
}

.price-dl dt {
  padding: 12px 10px;
  background: #f5f3f1;
  color: #543a25;
  border-top: 1px solid rgba(84, 58, 37, 0.3);
  border-bottom: 1px solid rgba(84, 58, 37, 0.3);
}

.price-dl dd {
  padding: 12px 10px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  color: #7063A8;
  background: #fff;
  border-bottom: 1px solid rgba(84, 58, 37, 0.3);
}

.kiritori {
  height: 1px;
  border-top: 1px solid #E7E7E7;
  margin: 40px 0;
  display: block;
}

.interview-head {
  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;
}

.interview-head .interview-lead {
  font-size: 1.7rem;
  letter-spacing: 2;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-right: 30px;
}

.interview-head .interview-btn {
  cursor: pointer;
  width: 220px;
  padding: 15px 8px;
  text-align: center;
  background: #FFFCE0;
  color: #543a25;
  font-weight: 600;
  position: relative;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.interview-head .interview-btn:before {
  font-family: "Font Awesome 5 Free";
  content: "\f107";
  font-weight: 900;
  position: absolute;
  right: 8px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.interview-head .interview-btn:hover {
  background: rgb(255, 240.6164383562, 80);
  color: #fff;
}

@media all and (max-width: 639px) {
  .interview-head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 90%;
    margin: 0 auto;
  }

  .interview-head .interview-lead {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    margin: 0 0 15px;
    font-size: 1.3rem;
  }

  .interview-head .interview-btn {
    width: 100%;
  }
}

.interview-box {
  background: #f5f3f1;
  letter-spacing: 0;
  padding: 30px;
  display: none;
}

@media all and (max-width: 639px) {
  .interview-box {
    padding: 15px 15px;
  }
}

.course-list li .upper {
  padding: 15px;
  background: rgba(255, 233, 238, 0.2);
}

.course-list li .lower {
  padding: 15px;
  background: #f5f3f1;
}

.course-list li:not(:last-of-type) {
  margin-bottom: 20px;
}

.top-box-implant {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  background-image: -webkit-gradient(linear, left top, right top, from(#7063A8), to(#5283B9));
  background-image: linear-gradient(to right, #7063A8, #5283B9);
  padding: 15px 15px;
}

.top-box-implant .child {
  width: 50%;
  padding: 30px 20px;
  background: rgba(255, 244, 202, 0.3);
}

.top-box-implant .child.type1 {
  background: rgba(226, 245, 245, 0.3);
}

@media all and (max-width: 639px) {
  .top-box-implant {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#7063A8), to(#5283B9));
    background-image: linear-gradient(to bottom, #7063A8, #5283B9);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 10px;
  }

  .top-box-implant .child {
    width: 100%;
    margin: 0 auto;
    padding: 25px 20px;
  }

  .top-box-implant .child:first-of-type {
    margin-bottom: 10px;
  }
}

.adv-list li {
  padding: 12px;
  background: #fff;
  font-weight: 600;
}

.adv-list li .small {
  font-weight: normal;
  font-size: 1.4rem;
  padding: 6px;
}

@media all and (max-width: 639px) {
  .adv-list li .small {
    font-size: 12px;
  }
}

.adv-list li:not(:last-of-type) {
  margin-bottom: 4px;
}

.flow-figure {
  width: 100%;
}

.flow-figure .figure1 {
  width: 100%;
  height: 500px;
}

.flow-figure .figure1 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media all and (max-width: 896px) {
  .flow-figure .figure1 {
    height: 300px;
  }
}

@media all and (max-width: 639px) {
  .flow-figure .figure1 {
    height: 200px;
  }
}

.column2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.column2.item-end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
}

.column2.tp {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.column2 .child {
  width: 48%;
}

.column2 .child01 {
  width: 40%;
}

.column2 .child01 img {
  border-radius: 20px;
}

.column2 .child02 {
  width: 56%;
}

.column2 .child03 {
  width: 28%;
}

.column2 .child04 {
  width: 68%;
}

.column2 .child05 {
  width: 50%;
}

.column2 .child06 {
  width: 47%;
}

.column2 .child-txt {
  width: 50%;
  padding: 0 50px;
}

.column2 .child-img {
  width: 50%;
}

@media all and (max-width: 896px) {

  .column2 .child,
  .column2 .child01,
  .column2 .child02,
  .column2 .child03,
  .column2 .child04,
  .column2 .child05,
  .column2 .child06,
  .column2 .child-txt,
  .column2 .child-img {
    width: 100%;
  }

  .column2 .child.bm20,
  .column2 .child01.bm20,
  .column2 .child02.bm20,
  .column2 .child03.bm20,
  .column2 .child04.bm20,
  .column2 .child05.bm20,
  .column2 .child06.bm20,
  .column2 .child-txt.bm20,
  .column2 .child-img.bm20 {
    margin-bottom: 20px;
  }

  .column2 .child.bm10,
  .column2 .child01.bm10,
  .column2 .child02.bm10,
  .column2 .child03.bm10,
  .column2 .child04.bm10,
  .column2 .child05.bm10,
  .column2 .child06.bm10,
  .column2 .child-txt.bm10,
  .column2 .child-img.bm10 {
    margin-bottom: 10px;
  }

  .column2 .child.column2-img,
  .column2 .child01.column2-img,
  .column2 .child02.column2-img,
  .column2 .child03.column2-img,
  .column2 .child04.column2-img,
  .column2 .child05.column2-img,
  .column2 .child06.column2-img,
  .column2 .child-txt.column2-img,
  .column2 .child-img.column2-img {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    margin-bottom: 30px;
  }

  .column2 .child.column2-img2,
  .column2 .child01.column2-img2,
  .column2 .child02.column2-img2,
  .column2 .child03.column2-img2,
  .column2 .child04.column2-img2,
  .column2 .child05.column2-img2,
  .column2 .child06.column2-img2,
  .column2 .child-txt.column2-img2,
  .column2 .child-img.column2-img2 {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    margin-bottom: 20px;
  }

  .column2 .child-img {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    margin-bottom: 30px;
  }

  .column2.sp-100 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .column2.sp-100 .child {
    width: 48%;
  }

  .column2.sp-100 .child.bm20 {
    margin-bottom: 0;
  }
}

@media all and (max-width: 639px) {
  .column2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .column2 .child05,
  .column2 .child06 {
    width: 100%;
  }

  .column2 .child05.column2-img,
  .column2 .child06.column2-img {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    margin-bottom: 20px;
  }

  .column2 .child05 figure,
  .column2 .child06 figure {
    height: 200px;
  }

  .column2 .child05 figure img,
  .column2 .child06 figure img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .column2.sp-100 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .column2.sp-100 .child {
    width: 100%;
  }

  .column2.sp-100 .child.bm20 {
    margin-bottom: 20px;
  }
}

.column3 {
  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;
}

.column3.type1 {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.column3 .child {
  width: 32%;
}

@media all and (max-width: 896px) {
  .column3 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .column3 .child {
    width: 100%;
  }

  .column3 .child.bm20 {
    margin-bottom: 20px;
  }
}

.slider {
  max-width: calc(100% - 50px);
  margin-left: auto;
  margin-right: auto;
  height: 80vh;
  position: relative;
  overflow: hidden;
}

@media all and (max-width: 896px) {
  .slider {
    max-width: calc(100% - 15px);
  }
}

.slider>div {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: absolute;
  left: 0;
  top: 0;
}

.slider>div img.slider-img {
  display: none;
}

.slider>div>div {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  background-repeat: no-repeat;
}

@media all and (max-width: 1100px) {
  .slider {
    height: 50vh;
  }
}

.kodawari-box {
  background: #fff;
  width: 80%;
  margin-right: auto;
  margin-left: auto;
  padding: 60px 30px 40px;
  -webkit-box-shadow: 15px 15px rgb(212.5, 212.5, 212.5);
  box-shadow: 15px 15px rgb(212.5, 212.5, 212.5);
  margin-top: -30px;
}

@media all and (max-width: 639px) {
  .kodawari-box {
    width: 95%;
    margin-top: 15px;
    padding: 15px;
    -webkit-box-shadow: 6px 6px rgb(212.5, 212.5, 212.5);
    box-shadow: 6px 6px rgb(212.5, 212.5, 212.5);
  }
}

.top-btn01 {
  display: block;
  padding: 15px;
  background: #fff;
  -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-btn01:hover {
  -webkit-transform: translateY(-20px);
  transform: translateY(-20px);
}

.page-bottom {
  padding-bottom: 60px;
}

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

.top-gallery .inner {
  position: relative;
}

.top-gallery .slide_list {
  position: relative;
  display: none;
  margin: 0px auto 0px;
}

.top-gallery .slide_list li {
  margin-right: 1%;
}

.top-gallery .slide_list li a {
  display: block;
  width: 240px;
  height: 200px;
  overflow: hidden;
}

.top-gallery .slide_list li img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 200px;
  width: 100%;
  font-family: "object-fit: cover;";
  -webkit-transition: 0.2s all ease-in;
  transition: 0.2s all ease-in;
}

.top-gallery .slide_list li:hover img {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

@media all and (max-width: 639px) {
  .top-gallery .slide_list {
    margin: 0px auto 5px;
  }

  .top-gallery .slide_list li a {
    width: 170px;
    height: 120px;
  }

  .top-gallery .slide_list li img {
    width: auto;
    height: 100%;
  }
}

.top-gallery .slide_list2 {
  position: relative;
  display: none;
  margin: 0px auto;
}

.top-gallery .slide_list2 li {
  margin-right: 1%;
}

.top-gallery .slide_list2 li a {
  display: block;
  width: 240px;
  height: 200px;
  overflow: hidden;
}

.top-gallery .slide_list2 li img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
  width: 100%;
  font-family: "object-fit: cover;";
  -webkit-transition: 0.2s all ease-in;
  transition: 0.2s all ease-in;
}

.top-gallery .slide_list2 li:hover img {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

@media all and (max-width: 639px) {
  .top-gallery .slide_list2 li a {
    width: 170px;
    height: 120px;
  }

  .top-gallery .slide_list2 li img {
    width: auto;
    height: 100%;
  }
}

/*gallery-wrap*/
#gallery-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  position: relative;
}

@media all and (max-width: 639px) {
  #gallery-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.gallery-name {
  position: absolute;
  font-size: 4rem;
  left: 0px;
  top: -20px;
  z-index: 4;
  letter-spacing: 1rem;
  font-weight: 400;
  display: inline-block;
  border: 2px solid #fff;
  padding: 0 10px;
  background: rgba(255, 255, 255, 0.95);
}

@media all and (max-width: 639px) {
  .gallery-name {
    font-size: 1.7rem;
    letter-spacing: 0.4rem;
  }
}

.slider-gallery {
  width: 58%;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.7);
  padding: 20px 0;
}

@media all and (max-width: 639px) {
  .slider-gallery {
    width: 100%;
    padding: 0;
  }
}

.slide-item {
  max-width: 100%;
  max-height: 550px;
  position: relative;
}

.slide-item img {
  max-width: 100%;
  max-height: 550px;
  -o-object-fit: contain;
  object-fit: contain;
  font-family: "object-fit: contain";
  display: block;
}

.slide-item .caption {
  display: table;
  position: relative;
  margin-top: -60px;
  margin-left: 20px;
  background-color: rgba(255, 255, 255, 0.9);
}

.slide-item .caption p {
  display: table-cell;
  padding: 8px 10px;
  vertical-align: middle;
  font-size: 16px;
  font-weight: bold;
  color: #5d4127;
}

#thumbnail-list {
  width: 40%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media all and (max-width: 639px) {
  #thumbnail-list {
    width: 100%;
    margin-top: 30px;
  }
}

.thumbnail-item {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 31%;
  flex: 0 1 31%;
  margin: 0 1% 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  height: 150px;
  border: 5px solid #e0e0e0;
  cursor: pointer;
}

.thumbnail-item:after {
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  -webkit-transition: 0.3s opacity linear;
  transition: 0.3s opacity linear;
}

.thumbnail-item.thumbnail-current:after {
  opacity: 0;
}

.thumbnail-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
}

@media all and (max-width: 896px) {
  .thumbnail-item {
    height: 100px;
  }

  .thumbnail-item img {
    height: 100%;
  }
}

@media all and (max-width: 639px) {
  .thumbnail-item {
    height: auto;
  }

  .thumbnail-item img {
    height: auto;
  }
}

.bubble-1 {
  position: absolute;
  left: 50%;
  top: 10px;
  z-index: -2;
  margin-right: 280px;
}

/*sec01*/
.sec01 {
  position: relative;
}

.t-layout-wrapper {
  position: relative;
  margin-top: 80px;
}

.t-layout {
  display: block;
}

.t-layout .l-img {
  width: 55%;
  margin-left: auto;
  min-width: 0;
}

.t-layout .l-img img {
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
  max-height: 100%;
  height: 400px;
  width: 100%;
  border-radius: 30px 0 0 30px;
  opacity: 0.4;
}

.t-layout .l-desc {
  width: 85%;
  margin: -300px auto 0 0;
  padding: 4vw 7vw;
  position: relative;
  z-index: 5;
}

.t-layout .l-desc.bg-white {
  background: white;
}

@media all and (max-width: 1100px) {
  .t-layout .l-img img {
    border-radius: 0;
  }
}

@media all and (max-width: 896px) {
  .t-layout .l-img {
    width: 100%;
  }

  .t-layout .l-img img {
    height: 300px;
  }
}

@media all and (max-width: 1100px) {
  .t-layout .l-desc {
    margin: -150px auto 0px;
    padding: 50px;
    width: 90%;
  }
}

@media all and (max-width: 896px) {
  .t-layout .l-desc {
    padding: 30px 15px;
  }
}

.top_2 {
  position: relative;
  margin: 40px auto;
  padding: 80px 0;
}

.top_2.mb-0 {
  margin: 0 auto;
}

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

.top_2:before {
  content: "";
  display: block;
  width: 57%;
  height: 65%;
  background: url(../img/013.jpg) no-repeat 50%/cover;
  position: absolute;
  z-index: 1;
  right: 0;
  top: 0;
  border-radius: 30px 0 0 30px;
}

.top_2 .single_new {
  width: 90%;
  width: calc(100% - 200px);
  margin: auto;
}

.top_2 .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
  width: 100%;
}

.top_2 .inner .txt {
  width: 60%;
  padding: 40px 80px 60px;
  max-width: 750px;
  border-radius: 10px;
  position: relative;
  background-color: #fff;
  color: #FFF9B6;
  -webkit-box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border: 2px solid #FFF9B6;
}

.top_2 .inner .txt:before {
  content: "";
  display: block;
  width: 90px;
  height: 90px;
  background-image: url(../img/hana.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left top;
  position: absolute;
  left: 0;
  top: -76px;
}

.top_2 .inner .txt:after {
  content: "";
  display: block;
  width: 90px;
  height: 90px;
  background-image: url(../img/hana2.png);
  background-repeat: no-repeat;
  background-position: right bottom;
  position: absolute;
  background-size: contain;
  right: 0;
  bottom: -60px;
}

@media all and (max-width: 639px) {
  .top_2 .inner .txt:before {
    width: 70px;
    height: 70px;
    top: -50px;
  }

  .top_2 .inner .txt:after {
    width: 70px;
    height: 70px;
    bottom: -50px;
  }
}

@media all and (max-width: 1100px) {
  .top_2:before {
    width: 70%;
    height: 350px;
  }

  .top_2 .single_new {
    width: calc(100% - 30px);
  }

  .top_2 .inner .txt {
    width: 80%;
    padding: 40px;
    margin-top: 100px;
    margin-right: auto;
  }
}

@media all and (max-width: 896px) {
  .top_2:before {
    width: 100%;
    height: 300px;
    border-radius: 0;
  }

  .top_2 .single_new {
    width: calc(100% - 30px);
  }

  .top_2 .inner .txt {
    width: 100%;
    padding: 30px;
    background-color: #fff;
    color: #FFF9B6;
    margin-top: 100px;
    margin-left: auto;
    margin-right: auto;
  }
}

.top_2.type1:before {
  content: "";
  display: block;
  width: 57%;
  height: 65%;
  background: url(../img/012.jpg) no-repeat 50%/cover;
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  border-radius: 0px 30px 30px 0px;
}

.top_2.type1 .inner .txt {
  width: 60%;
  padding: 40px 80px 60px;
  max-width: 750px;
  border-radius: 10px;
  margin-left: auto;
  position: relative;
  background-color: #FFF9B6;
  color: #fff;
  -webkit-box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

@media all and (max-width: 1100px) {
  .top_2.type1:before {
    width: 70%;
    height: 350px;
  }

  .top_2.type1 .single_new {
    width: calc(100% - 30px);
  }

  .top_2.type1 .inner .txt {
    width: 80%;
    padding: 40px;
    margin-top: 100px;
    margin-right: auto;
  }
}

@media all and (max-width: 896px) {
  .top_2.type1:before {
    width: 100%;
    height: 300px;
    border-radius: 0;
  }

  .top_2.type1 .single_new {
    width: calc(100% - 30px);
  }

  .top_2.type1 .inner .txt {
    width: 100%;
    padding: 30px;
    background-color: rgba(255, 249, 182, 0.9);
    margin-top: 100px;
    margin-left: auto;
    margin-right: auto;
  }
}

/*time-list*/
.time-list.type_center {
  max-width: 480px;
  margin: 0 auto;
}

.time-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.time-list li .txtarea {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  padding: 0px 40px 30px 40px;
}

.time-list li .txtarea:before {
  content: "";
  position: absolute;
  left: 118px;
  top: 0;
  height: 100%;
  width: 2px;
  background-color: #d3d3d3;
}

.time-list li .txtarea:last-child:before {
  display: none;
}

.time-list li .txtarea:after {
  content: "";
  position: absolute;
  left: 110px;
  top: 0;
  width: 20px;
  height: 20px;
  background-color: #FFF9B6;
  z-index: 1;
  border: 2px solid #FFF9B6;
  border-radius: 50%;
}

.time-list li .ttl {
  font-size: 1.4rem;
  line-height: 1.4;
}

.time-list li .time {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100px;
  flex: 0 0 100px;
  text-align: end;
  min-width: 0;
  overflow-wrap: break-word;
  padding-bottom: 1rem;
  color: #FFE9EE;
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1.5rem;
}

@media all and (max-width: 1100px) {
  .time-list {
    padding-left: 0;
  }

  .time-list li .txtarea {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    padding: 0px 0px 30px 40px;
    text-align: left;
  }

  .time-list li .txtarea:before {
    content: "";
    position: absolute;
    left: 88px;
  }

  .time-list li .txtarea:last-child:before {
    display: none;
  }

  .time-list li .txtarea:after {
    content: "";
    position: absolute;
    left: 79px;
  }

  .time-list li .time {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 70px;
    flex: 0 0 70px;
  }
}

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

  .time-list li .txtarea {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    padding: 0px 0px 30px 40px;
    text-align: left;
  }

  .time-list li .txtarea:before {
    content: "";
    position: absolute;
    left: 88px;
  }

  .time-list li .txtarea:last-child:before {
    display: none;
  }

  .time-list li .txtarea:after {
    content: "";
    position: absolute;
    left: 79px;
  }

  .time-list li .time {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 72px;
    flex: 0 0 72px;
    font-size: 1.3rem;
  }
}

.year-box li {
  position: relative;
  border-radius: 10px;
  background-color: #fff;
}

.year-box li figure {
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  text-align: center;
  width: 200px;
  margin: 40px auto 10px;
}

.year-box li .ttl {
  font-size: 2rem;
  padding: 5px 20px;
  text-align: center;
  color: #fff;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  top: -20px;
}

.year-box li .ttl span {
  padding: 5px 40px;
  width: 80%;
  border-radius: 40px;
}

.year-box li.type1 {
  border: 2px solid #e275d9;
}

.year-box li.type1 .ttl span {
  background-color: #e275d9;
}

.year-box li.type2 {
  border: 2px solid #94e275;
}

.year-box li.type2 .ttl span {
  background-color: #94e275;
}

.year-box li.type3 {
  border: 2px solid #57b9ca;
}

.year-box li.type3 .ttl span {
  background-color: #57b9ca;
}

.year-box li.type4 {
  border: 2px solid #e0874b;
}

.year-box li.type4 .ttl span {
  background-color: #e0874b;
}

.year-box li.type5 {
  border: 2px solid #d6a92e;
}

.year-box li.type5 .ttl span {
  background-color: #d6a92e;
}

.year-box li.type6 {
  border: 2px solid #46af43;
}

.year-box li.type6 .ttl span {
  background-color: #46af43;
}

.year-box li.type7 {
  border: 2px solid #7543af;
}

.year-box li.type7 .ttl span {
  background-color: #7543af;
}

.year-box li.type8 {
  border: 2px solid #3bb5e6;
}

.year-box li.type8 .ttl span {
  background-color: #3bb5e6;
}

.year-box li.type9 {
  border: 2px solid #6b3c21;
}

.year-box li.type9 .ttl span {
  background-color: #6b3c21;
}

.year-box li.type10 {
  border: 2px solid #be4434;
}

.year-box li.type10 .ttl span {
  background-color: #be4434;
}

.year-box li.type11 {
  border: 2px solid #c1e63b;
}

.year-box li.type11 .ttl span {
  background-color: #c1e63b;
}

.year-box li.type12 {
  border: 2px solid #c04040;
}

.year-box li.type12 .ttl span {
  background-color: #c04040;
}

.year-box li .txtarea {
  padding: 20px;
}

.blog_list {
  width: 100%;
  margin: 0 auto 0;
  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: start;
  max-width: 1000px;
}

.blog_list.no_04 li {
  width: 31%;
  margin-right: 2%;
  margin-bottom: 20px;
}

.blog_list.no_04 li:nth-child(3n) {
  margin-right: 0;
  margin-top: 0;
}

.blog_list.no_04 li:nth-child(2) {
  margin-top: 0px;
}

.blog_list.no_04 li:nth-child(4n) {
  margin-right: 2%;
}

.blog_list li {
  width: 23%;
  position: relative;
  margin-right: 2.6%;
  -webkit-transition: 0.2s all ease-in;
  transition: 0.2s all ease-in;
  background: #fff;
  border-radius: 15px;
  border: 2px solid #FFF9B6;
  overflow: hidden;
}

.blog_list li:nth-child(2),
.blog_list li:nth-child(3) {
  margin-top: 50px;
}

.blog_list li:nth-child(4n) {
  margin-right: 0;
}

.blog_list li:hover {
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
}

.blog_list li .thams {
  display: block;
  width: 100%;
  height: 180px;
  line-height: 180px;
  background: #FFE9EE;
  margin-bottom: 2rem;
}

.blog_list li .thams img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
}

.blog_list li .title {
  padding: 10px 15px;
  font-weight: 300;
  letter-spacing: 0.1em;
  display: block;
  font-weight: 500;
  line-height: 1.6em;
  letter-spacing: 0.1em;
  color: #333;
}

.blog_list li .data {
  padding-left: 15px;
  font-size: 1.3rem;
  color: #FFF9B6;
  display: table;
  letter-spacing: 0.1em;
}

@media all and (max-width: 896px) {
  .blog_list {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .blog_list li {
    width: 45%;
    margin-right: 0;
    margin-bottom: 2.2rem;
  }

  .blog_list li:nth-child(2),
  .blog_list li:nth-child(3) {
    margin-top: 0;
  }
}

@media all and (max-width: 639px) {
  .blog_list li {
    width: 48%;
  }

  .blog_list li .thams {
    margin-bottom: 0.5rem;
    height: 120px;
    line-height: 120px;
  }

  .blog_list li .data {
    padding-left: 10pz;
    font-size: 1.1rem;
  }

  .blog_list li .title {
    padding: 5px 7px;
    font-size: 1.1rem;
    line-height: 1.3em;
  }
}

.greeting_img {
  max-width: 680px;
}

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

.list4-6 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.list4-6 img {
  border-radius: 20px;
}

.list4-6 .list46-6 {
  width: 50%;
}

.list4-6 .list46-4 {
  width: 47%;
}

@media all and (max-width: 896px) {
  .list4-6 .list46-4 {
    width: 100%;
    margin-bottom: 20px;
  }

  .list4-6 .list46-6 {
    width: 100%;
  }
}

.area_map img {
  margin-left: auto;
  margin-right: auto;
  display: block;
  max-width: 740px;
  width: 100%;
}

.day_flow dt {
  background: #f5c964;
  color: #fff;
  padding: 5px 15px;
  border-radius: 5px;
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  font-size: 2rem;
}

@media all and (max-width: 639px) {
  .day_flow dt {
    font-size: 1.5rem;
  }
}

.day_flow dd {
  border-left: 4px dotted rgb(248.0909090909, 217.6909090909, 147.9090909091);
  margin-left: 25px;
  padding: 10px 15px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.day_flow.type1 dt {
  background: #e999af;
}

.day_flow.type1 dd {
  border-left: 4px dotted rgb(242.0483870968, 194.9516129032, 207.9032258065);
}

.day_flow.type2 dt {
  background: #CCE094;
}

.day_flow.type2 dd {
  border-left: 4px dotted rgb(222.847826087, 235.4565217391, 187.5434782609);
}

.top-cont02 {
  margin: 0 auto;
  max-width: 1150px;
  width: 100%;
}

.top-cont02.type01 .inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.top-cont02 .inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.top-cont02 .inner .top-cont02-img {
  width: 48%;
}

.top-cont02 .inner .top-cont02-img img {
  max-width: 100%;
  height: auto;
}

.top-cont02 .inner .top-cont02-img .img01 {
  z-index: 0;
  width: 90%;
}

.top-cont02 .inner .top-cont02-img .img02 {
  width: 45%;
  z-index: 1;
  margin-top: -60px;
  margin-left: auto;
}

.top-cont02 .inner .top-cont02-txt {
  width: 48%;
}

@media all and (max-width: 896px) {
  .top-cont02 .inner {
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 20px;
    background-color: rgba(255, 255, 255, 0.9);
  }

  .top-cont02 .inner .top-cont02-img {
    width: 100%;
    margin-bottom: 20px;
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .top-cont02 .inner .top-cont02-img .img02 {
    margin-top: -80px;
    max-width: 350px;
  }

  .top-cont02 .inner .top-cont02-txt {
    width: 100%;
    margin: auto;
  }
}

@media all and (max-width: 639px) {
  .top-cont02 .inner {
    max-width: calc(100% - 10px);
  }

  .top-cont02 .inner .top-cont02-img .img02 {
    margin-top: -40px;
    max-width: 300px;
  }
}

.season-img {
  margin-bottom: 20px;
}

.season-img img {
  max-width: 150px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

@media all and (max-width: 639px) {
  .season-img img {
    max-width: 100px;
  }
}

.season.type1 .list_disc li {
  margin-bottom: 5px;
  border-bottom: 1px dashed #F19DB4;
}

.season.type1 .list_disc li:before {
  content: "●";
  color: #F19DB4;
}

.season.type1 .list_disc li.hoshi::before {
  content: "★";
  color: #FFF9B6;
}

.season.type2 .list_disc li {
  margin-bottom: 5px;
  border-bottom: 1px dashed #C5CC02;
}

.season.type2 .list_disc li:before {
  content: "●";
  color: #C5CC02;
}

.season.type2 .list_disc li.hoshi::before {
  content: "★";
  color: #FFF9B6;
}

.season.type3 .list_disc li {
  margin-bottom: 5px;
  border-bottom: 1px dashed #C8A063;
}

.season.type3 .list_disc li:before {
  content: "●";
  color: #C8A063;
}

.season.type3 .list_disc li.hoshi::before {
  content: "★";
  color: #FFF9B6;
}

.season.type4 .list_disc li {
  margin-bottom: 5px;
  border-bottom: 1px dashed #94CBE6;
}

.season.type4 .list_disc li:before {
  content: "●";
  color: #94CBE6;
}

.season.type4 .list_disc li.hoshi::before {
  content: "★";
  color: #FFF9B6;
}

.hosi {
  color: #FFF9B6;
}

.pc_tcenter {
  text-align: center;
  text-wrap: balance;
}

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

.internship_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;
}

.internship_list li {
  padding: 25px 20px;
  width: calc((100% - 60px) / 3);
  background: #fff;
  position: relative;
  margin: 0 10px 20px;
  border-radius: 10px;
}

@media all and (max-width: 639px) {
  .internship_list li {
    width: 90%;
    margin: 0 auto 30px;
  }
}

.menu-bnr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
}

.menu-bnr li {
  -webkit-box-shadow: 0 6px 15px rgba(86, 38, 8, 0.06);
  box-shadow: 0 6px 15px rgba(86, 38, 8, 0.06);
}

.menu-bnr li a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #fff;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
  overflow: hidden;
  border-radius: 5px;
}

.menu-bnr li a:hover .menu-bnr-img img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.menu-bnr li .menu-bnr-img {
  width: 100%;
  height: 140px;
  overflow: hidden;
}

.menu-bnr li .menu-bnr-img img {
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
  overflow: hidden;
}

.menu-bnr li .bnr-title {
  position: relative;
  width: 100%;
  padding-left: 25px;
  color: #543a25;
}

.menu-bnr li .bnr-title:after {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  font-weight: 900;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #FFE9EE;
}

@media all and (max-width: 896px) {
  .menu-bnr {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .menu-bnr li .bnr-title {
    padding-left: 20px;
  }
}

@media all and (max-width: 639px) {
  .menu-bnr {
    grid-template-columns: repeat(1, 1fr);
  }

  .menu-bnr li .menu-bnr-img {
    height: 70px;
  }
}

.menu-btn-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;
  position: relative;
  z-index: 5;
  /* Tablet時（2カラム） */
  /* スマホ時（1カラム） */
}

.menu-btn-list .child {
  /* ★ ここを 3カラム → 4カラム に変更 */
  /* 元: width: calc((100% - 60px) / 3); */
  width: calc((100% - 90px) / 4);
  background: #fefefe;
  -webkit-box-shadow: 0 6px 15px rgba(86, 38, 8, 0.06);
  box-shadow: 0 6px 15px rgba(86, 38, 8, 0.06);
  border-radius: 15px;
}

.menu-btn-list .child a {
  display: block;
  position: relative;
}

.menu-btn-list .child a figure {
  height: 320px;
  overflow: hidden;
  border-radius: 15px 15px 0 0;
  background-image: -webkit-gradient(linear, left top, right bottom, from(#995D36), to(#de936e));
  background-image: linear-gradient(to right bottom, #995D36, #de936e);
}

.menu-btn-list .child a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
  opacity: 0.7;
  -webkit-transition: 0.2s all ease-in;
  transition: 0.2s all ease-in;
}

.menu-btn-list .child a:hover img {
  opacity: 1;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.menu-btn-list .menu-btn-title {
  position: relative;
  z-index: 2;
  width: 85%;
  padding-top: 15px;
  margin: -25px auto 20px;
  color: #543a25;
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
  font-size: 2rem;
  background: #fff;
  border-radius: 15px 15px 0 0;
}

.menu-btn-list .menu-btn-title span {
  font-size: 1.5rem;
  color: #FF97AF;
  font-family: "Ubuntu", sans-serif;
  font-weight: 400;
}

@media all and (max-width: 896px) {
  .menu-btn-list .child {
    width: calc((100% - 80px) / 2);
    margin: 0 20px;
    margin-bottom: 40px;
  }
}

@media all and (max-width: 639px) {
  .menu-btn-list .child {
    width: 100%;
  }

  .menu-btn-list .child a figure {
    height: 200px;
  }

  .menu-btn-list .menu-btn-title {
    padding-top: 10px;
    font-size: 1.5rem;
  }

  .menu-btn-list .menu-btn-title .eng {
    font-size: 1.2rem;
  }
}

/* accordion
----------------------------------*/
.accordion {
  border: 1px solid #ddd;
  margin-top: 50px;
}

.accordion dt,
.accordion dd {
  position: relative;
  padding: 1em;
}

.accordion dt {
  background: #fff;
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: 600;
  border-bottom: 1px dotted #ddd;
}

.accordion dt:after {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f067";
  font-weight: 900;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 1.4rem;
}

.accordion dt.on:after {
  font-family: "Font Awesome 5 Free";
  content: "\f068";
  font-weight: 900;
}

.accordion dd {
  display: none;
  padding: 20px;
  background: #fff;
}

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

  .accordion dt,
  .accordion dd {
    padding: 0.8em 0.6em;
  }

  .accordion dt {
    font-size: 1.2rem;
    letter-spacing: 0.05em;
  }

  .accordion dt:after {
    font-size: 0.9rem;
    right: 8px;
  }
}

.policy_area {
  padding-bottom: 100px;
}

#top_3 {
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
}

#top_3:before,
#top_3:after {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  background-size: 100%;
  z-index: 1;
}

#top_3:before {
  background: url(../img/line_tori.gif) no-repeat 50%/contain;
  width: 550px;
  height: 100px;
  left: 50px;
  bottom: -50px;
}

#top_3:after {
  background: url(../img/bg-top.png) repeat 50%/500px 450px;
  width: 100%;
  height: 100%;
  left: 0px;
  bottom: 0px;
  z-index: 0;
  opacity: 0.5;
}

#top_3 .top_3_main_cont {
  background: #FFFCE0;
  border-radius: 10px;
  position: relative;
  z-index: 2;
}

@media all and (max-width: 639px) {
  #top_3 .top_3_main_cont {
    padding: 50px 15px;
  }
}

#top_3 .top_3_main_cont .top_3_main_cont_photos {
  display: block;
  width: 449px;
  position: absolute;
  top: -100px;
  left: -40px;
}

@media all and (max-width: 639px) {
  #top_3 .top_3_main_cont .top_3_main_cont_photos {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    width: 90%;
    margin: auto;
  }
}

#top_3 .top_3_main_cont .top_3_main_cont_illust {
  display: block;
  width: 230px;
  position: absolute;
  top: -80px;
  right: 0px;
}

@media all and (max-width: 639px) {
  #top_3 .top_3_main_cont .top_3_main_cont_illust {
    width: 169px;
    top: -30px;
    right: 10px;
  }
}

#top_3 .top_3_main_cont .top_3_main_text {
  padding: 100px 80px 120px 450px;
}

@media all and (max-width: 639px) {
  #top_3 .top_3_main_cont .top_3_main_text {
    padding: 20px 15px;
  }
}

#top_3 .top_3_main_cont .top_3_main_text .ttl-img {
  width: 270px;
}

#top_3 .top_3_main_cont .read {
  color: #343434;
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
}

@media all and (max-width: 639px) {
  #top_3 .top_3_main_cont .read {
    font-size: 2rem;
  }
}

#top_3 .top_3_main_cont .read img {
  display: inline-block;
  width: auto;
  height: 18px;
  vertical-align: initial;
  margin-left: 19px;
}

.item-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;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.item-list .item2 {
  width: 48%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.item-list .item2:nth-child(n+3) {
  margin-top: 1.5em;
}

.item-list .item2-1 {
  width: 65%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.item-list .item2-1:nth-child(n+3) {
  margin-top: 1.5em;
}

.item-list .item3 {
  width: 31%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.item-list .item3:nth-child(n+4) {
  margin-top: 1.5em;
}

.item-list .item4 {
  width: 23%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.item-list .item4:nth-child(n+5) {
  margin-top: 1.5em;
}

.item-list.center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.item-list.center .item2,
.item-list.center .item3,
.item-list.center .item4 {
  margin: 1%;
}

@media screen and (max-width: 890px) {
  .item-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;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }

  .item-list .item2,
  .item-list .item2-1,
  .item-list .item3 {
    width: 98%;
    margin: 1%;
  }

  .item-list .item4 {
    width: 48%;
    margin: 1%;
  }
}

.newsl1 dt {
  float: left;
  width: 40px;
  padding-top: 10px;
  line-height: 1.3;
  font-weight: bold;
}

.newsl1 dd {
  padding-left: 50px;
  padding-bottom: 5px;
  padding-top: 10px;
  margin-bottom: 15px;
  line-height: 1.6;
  font-size: 15px;
  border-bottom: dotted 1px #b6ae83;
}

.newsl1 dd b {
  color: #594C39;
}

/* タブ　タイトル枠　1 */
.kakomi-tab1 {
  position: relative;
  margin: 4em auto;
  padding: 1.2em 1em 1em;
  width: 90%;
  background-color: #f7f7f7;
  border: 3px double #999999;
}

.title-tab1 {
  position: absolute;
  display: inline-block;
  top: -38px;
  left: -3px;
  padding: 0 10px;
  height: 35px;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  background-color: #a0a0a0;
  border: 1px solid #999999;
  border-radius: 5px 5px 0 0;
}

/* goal_box
----------------------------------*/
.goal_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
}

.goal_box>li {
  width: calc((100% - 40px) / 3);
}

.goal_box>li .img {
  position: relative;
  width: 300px;
  margin: 0 auto;
}

.goal_box>li .img::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 250px;
  height: 250px;
  background: #543a25;
  border-radius: 100%;
  opacity: 0.1;
  z-index: -1;
}

.goal_box>li .txt .ttl {
  text-align: center;
}

.goal_box>li .txt .ttl span {
  font-size: 2rem;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(0%, #FFE9EE));
  background: linear-gradient(transparent 70%, #FFE9EE 0%);
  z-index: 0;
}

/* タブレット以下で1カラムにする */
@media all and (max-width: 896px) {
  .goal_box {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .goal_box>li {
    width: 100%;
    text-align: center;
    margin-top: 20px;
  }

  .goal_box>li .img {
    width: 220px;
  }
}

/* さらにスマホで微調整したければ */
@media all and (max-width: 639px) {
  .goal_box>li .img {
    width: 200px;
  }
}

/* Popup styles 
----------------------------------*/
.popup-overlay {
  position: fixed;
  top: 0;
  padding-top: 50px;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 9999;
}

.popup-overlay .popup-content {
  background-color: #fff;
  padding: 20px;
  text-align: center;
  max-width: 600px;
  max-height: 80%;
  overflow-y: auto;
  margin: 0 auto;
  z-index: 10000;
}

.popup-overlay .popup-content img {
  max-width: 100%;
  height: auto;
  max-height: 80vh;
}

.popup-overlay .popup-content h3 {
  margin-bottom: 20px;
  font-size: 1.5em;
  z-index: 1000;
}

.popup-overlay .popup-content .close-btn {
  background-color: #FFF9B6;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.popup-overlay .popup-content .close-btn:hover {
  background-color: #f66009;
}

/* category
----------------------------------*/
.category {
  margin-bottom: 30px;
}

.category:last-child {
  margin-bottom: 0;
}

.mtitleB {
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27420/icon06.png) no-repeat center left;
  padding: 7px 0 7px 40px;
  margin-bottom: 15px;
  font-size: 2rem;
  border-bottom: 2px dotted #916b50;
  color: #543a25;
}

/* worksBox
----------------------------------*/
.worksBox {
  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: 0 auto;
  gap: 20px;
}

.worksBoxList {
  width: 320px;
  margin: 0;
  padding: 10px;
  background: #FFFFFF;
  text-align: center;
  -webkit-box-shadow: 0px 0px 2px 2px #CCCCCC;
  box-shadow: 0px 0px 2px 2px #CCCCCC;
  /* 🔽 画像枠を比率固定にする */
  /* ここでアスペクト比を決める（例: 3:2） */
}

@media all and (max-width: 896px) {
  .worksBoxList {
    width: 420px;
  }
}

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

.worksBoxList a {
  display: block;
  position: relative;
  overflow: hidden;
}

.worksBoxList a::before {
  content: "";
  display: block;
  padding-top: 66.6667%;
}

.worksBoxList img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
}

/* 画像下のテキスト余白 */
.worksBoxList span {
  display: block;
  margin-top: 10px;
}

/* daily-dl
----------------------------------*/
.daily-dl {
  position: relative;
}

.daily-dl .inner {
  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;
  margin-bottom: 30px;
  position: relative;
}

.daily-dl .inner:before {
  position: absolute;
  content: "";
  height: 125%;
  width: 8px;
  top: 25px;
  left: 30px;
  background: #eeeeee;
}

.daily-dl .inner:last-child:before {
  display: none;
}

@media all and (max-width: 639px) {
  .daily-dl .inner {
    width: 100%;
    margin: 0 auto 20px;
  }

  .daily-dl .inner:before {
    width: 8px;
    height: 130%;
    left: 30px;
    top: 15px;
  }
}

.daily-dl .inner dt {
  width: 70px;
  height: 70px;
  line-height: 70px;
  background: #f0ab68;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 600;
  position: relative;
  z-index: 4;
}

.daily-dl .inner dt.line2 {
  line-height: 1.2;
  padding-top: 18px;
}

@media all and (max-width: 639px) {
  .daily-dl .inner dt {
    font-size: 1.2rem;
  }
}

.daily-dl .inner dd {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
  background: #fff;
  left: -10px;
  margin-top: 10px;
  padding: 15px 10px 15px 15px;
  font-weight: 600;
  z-index: 2;
  background: #f5f3f1;
  -webkit-box-shadow: 0 0 0 3px #f5f3f1;
  box-shadow: 0 0 0 3px #f5f3f1;
  border-radius: 10px 0 10px 0;
}

.daily-dl .inner dd p {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 600;
}

@media all and (max-width: 639px) {
  .daily-dl .inner dd {
    margin-top: 10px;
  }
}

.daily-dl.co4 .inner dt {
  background: #B0CE86;
}

.daily-dl.co5 .inner dt {
  background: #78c8d0;
}

.daily-dl.co8 .inner dt {
  background: #f0a0bc;
}

.note-side {
  position: relative;
}

@media all and (max-width: 639px) {
  .note-side {
    padding: 0 5px;
  }

  .note-side.type1 {
    padding: 0 10px;
  }
}

.note2 {
  padding: 15px 0;
  background: #d8eaf6;
  border-radius: 20px;
  text-align: center;
}

@media all and (max-width: 639px) {
  .note2 {
    padding: 10px 0;
    border-radius: 10px;
  }
}

/* category_tab
----------------------------------*/
.panel2 {
  display: none;
}

.panel2.show {
  display: block;
}

.category_tab2 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  text-align: center;
  margin-bottom: 35px;
}

.category_tab2 li {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 600;
  font-size: 2rem;
  border-width: 2px;
  border-style: solid;
  border-color: #FF97AF;
  background: #fff;
  color: #543a25;
  padding: 20px 15px;
  margin-right: 1%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  border-radius: 20px;
}

.category_tab2 li:last-child {
  margin-right: 0;
}

.category_tab2 li:hover {
  background: #FF97AF;
  color: #fff;
}

.category_tab2 li.active {
  background: #FF97AF;
  color: #fff;
}

.category_tab2 li.active::after {
  position: absolute;
  content: "";
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  left: 50%;
  bottom: -10px;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-top: 10px solid #FF97AF;
  border-bottom: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media all and (max-width: 1100px) {
  .category_tab2 {
    gap: 10px;
    margin-bottom: 30px;
  }

  .category_tab2 li {
    font-size: 1.6rem;
  }
}

@media all and (max-width: 896px) {
  .category_tab2 {
    gap: 5px;
    margin-bottom: 25px;
  }

  .category_tab2 li {
    padding: 10px;
    font-size: 1.35rem;
    letter-spacing: 0.13em;
    border-radius: 10px;
  }
}

@media all and (max-width: 639px) {
  .category_tab2 li {
    padding: 5px;
    font-size: 1.2rem;
  }

  .category_tab2 li.active::after {
    display: none;
  }
}

.break_chosei {
  text-wrap: balance;
  word-break: auto-phrase;
  font-size: 1.5rem;
}