@charset "UTF-8";
/* アニメーションベンダープレフィックス込み指定 */
/* アニメーションベンダープレフィックス込み指定 */
html {
  scroll-behavior: smooth;
}

body {
  color: #434343;
  background: #fcfbf8;
  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;
  font-weight: 400;
  position: relative;
  letter-spacing: 0.1em;
}

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

#wrapper {
  position: relative;
  overflow: hidden;
}

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

.bold {
  font-weight: 600;
}

h2,
h3 {
  line-height: 1.6;
}
h2 .ja,
h3 .ja {
  font-family: "Zen Maru Gothic", "YakuHanJP", "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
}
h2.wg500,
h3.wg500 {
  font-weight: 500;
}

.title {
  font-family: "Zen Maru Gothic", "YakuHanJP", "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-weight: 900 !important;
  letter-spacing: 0.1em;
}

.ita {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  font-style: italic !important;
  text-transform: inherit !important;
  letter-spacing: 0.05rem !important;
}

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

/* animation
----------------------------------*/
@keyframes view-zoomin {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes view-slideup {
  0% {
    opacity: 0;
    transform: translate(0, 35px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes yurayura {
  0%,
  100% {
    transform: rotate(2deg);
  }
  50% {
    transform: rotate(-2deg);
  }
}
.yurayura {
  transform-origin: center bottom;
  animation: yurayura 2s linear infinite;
}

@keyframes poyopoyo {
  0%,
  40%,
  60%,
  80% {
    transform: scale(1);
  }
  50%,
  70% {
    transform: scale(0.95);
  }
}
.poyopoyo {
  animation: poyopoyo 2s ease-out infinite;
}

.animation {
  opacity: 0;
}

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

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

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

@keyframes loader {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.fuwafuwa {
  animation: fuwafuwa 3s ease-in-out infinite alternate;
  transition: 1.5s ease-in-out;
}

.fuwafuwa2 {
  animation: fuwafuwa2 3s ease-in-out infinite alternate;
  transition: 1.5s ease-in-out;
}

@keyframes fuwafuwa {
  0% {
    transform: translate(0, 0) rotate(-7deg);
  }
  50% {
    transform: translate(0, -7px) rotate(0deg);
  }
  100% {
    transform: translate(0, 0) rotate(7deg);
  }
}
@keyframes fuwafuwa2 {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(0, -15px) rotate(0deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}
.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;
}

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

@-webkit-keyframes rotate_anime {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(0deg);
  }
  30% {
    transform: rotate(5deg);
  }
  85% {
    transform: rotate(5deg);
  }
  90% {
    transform: rotate(0deg);
  }
}
@keyframes rotate_anime {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(0deg);
  }
  30% {
    transform: rotate(5deg);
  }
  85% {
    transform: rotate(5deg);
  }
  90% {
    transform: rotate(0deg);
  }
}
@-webkit-keyframes rotate_anime2 {
  0% {
    transform: rotate(0deg);
  }
  35% {
    transform: rotate(0deg);
  }
  40% {
    transform: rotate(-5deg);
  }
  95% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes rotate_anime2 {
  0% {
    transform: rotate(0deg);
  }
  35% {
    transform: rotate(0deg);
  }
  40% {
    transform: rotate(-5deg);
  }
  95% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
/* header
----------------------------------*/
@keyframes hd-scrolled {
  0% {
    opacity: 0;
    transform: translate(0, -100%);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
#l-header {
  width: 100%;
  transition: all 0.4s ease-in;
}
#l-header.is-fixed {
  position: fixed;
  width: 100%;
  z-index: 200;
  top: 0;
  left: 0;
  background: #fcfbf8;
}
#l-header.is-fixed::before,
#l-header.is-fixed::after {
  display: none;
}
#l-header.is-fixed .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5px;
  transition: all 0.5s ease;
}
#l-header.is-fixed .inner #logo {
  width: 250px;
}
@media all and (max-width: 1100px) {
  #l-header.is-fixed .inner #logo {
    width: 200px;
  }
}
@media all and (max-width: 896px) {
  #l-header {
    background: transparent;
    backdrop-filter: none;
  }
}
#l-header .inner {
  position: relative;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  max-width: 85%;
  padding: 40px 0;
  transition: all 0.5s ease;
}
#l-header .inner #logo {
  transition: all 0.4s ease-in;
  width: 300px;
  z-index: 2;
}
@media all and (max-width: 1367px) {
  #l-header .inner #logo {
    width: 250px;
  }
}
@media all and (max-width: 896px) {
  #l-header .inner #logo {
    width: 220px;
  }
}
@media all and (max-width: 639px) {
  #l-header .inner #logo {
    width: 180px;
  }
}
#l-header .head-right {
  position: relative;
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media all and (max-width: 1100px) {
  #l-header .head-right {
    display: none;
  }
}
#l-header .head-right_contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}
#l-header .head-right_tel,
#l-header .head-right_mail {
  text-align: center;
  white-space: nowrap;
}
#l-header .head-right_tel span,
#l-header .head-right_mail span {
  font-size: 1.2rem;
  color: #fff;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}
#l-header .head-right_tel a,
#l-header .head-right_mail a {
  position: relative;
  display: block;
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  line-height: 1.2;
  color: #aa7851;
  background: #fff;
  border-radius: 30px;
  transition: all 0.3s ease-in;
  padding: 0 3px;
  padding: 15px 30px;
  font-size: 1.4rem;
}
#l-header .head-right_tel a:hover,
#l-header .head-right_mail a:hover {
  opacity: 0.6;
}
#l-header .head-right_txt {
  text-align: center;
}
#l-header .head-right_txt a {
  position: relative;
  display: block;
  font-family: "Zen Maru Gothic", "YakuHanJP", "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #fff;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
  font-size: 1.6rem;
  transition: all 0.3s ease-in;
  border: 2px solid #fff;
  padding: 5px 15px;
  border-radius: 3px;
}
#l-header .head-right_txt a:hover {
  background: rgba(255, 255, 255, 0.2);
}
#l-header .head-right_btn a {
  position: relative;
  display: block;
  width: 38px;
  height: 38px;
  line-height: 38px;
  border: 2px solid #fff;
  box-sizing: border-box;
  font-size: 1.5rem;
  color: #fff;
  border-radius: 100%;
  filter: drop-shadow(0px 0px 3px rgba(86, 77, 72, 0.5));
  transition: all 0.3s ease-in;
}
#l-header .head-right_btn a i {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
#l-header .head-right_btn a:hover {
  background: rgba(255, 255, 255, 0.2);
}
@media all and (max-width: 1367px) {
  #l-header .inner {
    max-width: 95%;
    padding: 20px 0;
  }
}

.head-sns > li a {
  background: #aa7851;
  border-radius: 30px;
  padding: 20px 25px !important;
  color: #fff !important;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.head-sns > li a:hover {
  opacity: 0.6;
}

#header_nav {
  position: relative;
  transition: all 0.4s ease-in;
}
@media all and (max-width: 896px) {
  #header_nav {
    display: none;
  }
}
#header_nav > ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  position: relative;
  transition: all 0.5s ease;
}
#header_nav > ul li {
  position: relative;
  text-align: center;
}
#header_nav > ul li a {
  position: relative;
  display: block;
  line-height: 1.5;
  font-weight: bold;
  color: #434343;
}
#header_nav > ul li a span {
  display: block;
  color: #aa7851;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  font-size: 1.4rem;
}
#header_nav > ul li a img {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  margin-left: auto;
  margin-right: auto;
}
#header_nav > ul li a:hover {
  opacity: 0.6;
}
#header_nav .dropdown {
  display: none;
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  top: 40px;
  padding-top: 18px;
  z-index: 999;
  width: 100%;
}
#header_nav .dropdown li {
  border-right: 0px dashed #ddd;
  border-bottom: 1px solid #ddd;
}
#header_nav .dropdown li:last-child {
  border-radius: 0 0 5px 5px;
  border-bottom: 0px solid #ddd;
  overflow: hidden;
}
#header_nav .dropdown .dropdown-li a {
  display: block;
  width: auto;
  padding: 10px;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  color: #564d48;
  background: #fcfbf8;
  text-shadow: none;
  filter: none;
}
#header_nav .dropdown .dropdown-li a:after {
  display: none;
}
#header_nav .dropdown .dropdown-li a:hover {
  background: #f2f2f2;
}
@media all and (max-width: 1367px) {
  #header_nav > ul {
    gap: 20px;
  }
}

/* page-top
----------------------------------*/
#page-top {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 200;
}
#page-top a {
  display: block;
  background: #fff;
  color: #564d48;
  border: 1px solid #564d48;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  font-size: 1.1rem;
  text-align: center;
}
#page-top a:hover {
  opacity: 0.6;
}
@media all and (max-width: 896px) {
  #page-top {
    bottom: 72px;
  }
}

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

.slide-img {
  overflow: hidden;
  width: 100%;
  height: 80vh;
}
.slide-img:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #564d48;
  opacity: 0.2;
}
.slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: "object-fit: cover;";
}
@media all and (max-width: 1367px) {
  .slide-img {
    height: 55vw;
  }
}

#slideshow {
  position: relative;
  overflow: hidden;
  width: 90%;
  margin: 0 auto;
}
#slideshow:before {
  position: absolute;
  content: "";
  left: 20px;
  bottom: 20px;
  width: 400px;
  max-width: 20%;
  max-width: 20%;
  height: 80%;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/24503/20240702_103912_6ddbf2db5fa0ef96d4111a153c7ed760610b8f00) no-repeat left bottom/contain;
  z-index: 10;
  animation: rotate_anime 1.5s cubic-bezier(0.87, 0.01, 0, 0.99) infinite;
}
#slideshow:after {
  position: absolute;
  content: "";
  right: 20px;
  top: 20px;
  width: 400px;
  max-width: 20%;
  height: 80%;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/24503/20240702_104023_c52f07ee2f2b66e65d19bd7d42d5cc8102a7d5e2) no-repeat right top/contain;
  z-index: 10;
  animation: rotate_anime2 1.5s cubic-bezier(0.87, 0.01, 0, 0.99) infinite;
}
#slideshow .swiper-container {
  border-radius: 40px;
}
@media all and (max-width: 896px) {
  #slideshow .swiper-container {
    border-radius: 20px;
  }
}

#catch {
  position: absolute;
  z-index: 50;
  left: 50%;
  bottom: 5%;
  transform: translateX(-50%);
  transition: opacity 2s cubic-bezier(0.18, 0.06, 0.23, 1);
  opacity: 0;
  max-width: 600px;
}
#catch.on {
  opacity: 1;
  transition: all 2s ease-in;
}
@media all and (max-width: 896px) {
  #catch {
    bottom: 30%;
  }
}
@media all and (max-width: 639px) {
  #catch {
    width: 80%;
    bottom: 20%;
  }
}

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

@keyframes scroll-point {
  0% {
    bottom: 0;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  50% {
    top: 180px;
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    top: 210px;
    opacity: 0;
  }
}
/* contact_bnr
----------------------------------*/
.contact_bnr > li {
  margin: 0 auto;
  text-align: center;
}
.contact_bnr > li:not(:last-child) {
  margin-bottom: 20px;
}
.contact_bnr > li a {
  display: block;
  position: relative;
}
@media all and (max-width: 896px) {
  .contact_bnr > li a {
    text-align: center;
    margin: 0 auto 20px;
  }
  .contact_bnr > li:first-of-type {
    margin-right: 0;
  }
}
.contact_bnr > li .bnr_tel {
  white-space: nowrap;
  position: relative;
  color: #fefefe;
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-size: 3.4rem;
  line-height: 1.4;
}
.contact_bnr > li .bnr_tel:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  margin-right: 5px;
  font-size: 0.7em;
}
.contact_bnr > li .bnr_tel:hover {
  opacity: 0.6;
}
@media all and (max-width: 1100px) {
  .contact_bnr > li .bnr_tel {
    font-size: 3rem;
  }
}
@media all and (max-width: 639px) {
  .contact_bnr > li .bnr_tel {
    font-size: 2.3rem;
    text-align: center;
  }
}
.contact_bnr > li .bnr_mobile {
  background: #fefefe;
  color: #aa7851;
}
.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: #aa7851;
}
.contact_bnr > li .bnr_fax:before {
  font-family: "Font Awesome 5 Free";
  content: "\f1ac";
  font-weight: 900;
}
.contact_bnr > li .bnr_mail {
  background: #fefefe;
  color: #434343;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 600;
  border-radius: 15px;
  max-width: 320px;
  margin: auto;
  line-height: 1.4;
  padding: 20px;
}
.contact_bnr > li .bnr_mail .small {
  font-size: 0.8em;
  margin-left: 4px;
}
.contact_bnr > li .bnr_mail:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
  font-size: 0.8em;
  margin-right: 10px;
}
.contact_bnr > li .bnr_mail:hover {
  background: rgba(255, 255, 255, 0.5);
}
@media all and (max-width: 639px) {
  .contact_bnr > li .bnr_mail {
    font-size: 1.4rem;
    max-width: 100%;
  }
}

/* footer
----------------------------------*/
#l-footer {
  font-size: 1.5rem;
  position: relative;
  background: #aa7851;
  border-radius: 200px 200px 0 0;
}
#l-footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fcfbf8;
  z-index: -2;
}
#l-footer .inner {
  z-index: 20;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 120px 0;
  max-width: 85%;
  margin: 0 auto;
}
#l-footer .inner .footer_left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
@media all and (max-width: 896px) {
  #l-footer {
    border-radius: 100px 100px 0 0;
  }
  #l-footer .inner {
    flex-direction: column;
    padding: 60px 0;
  }
  #l-footer .inner > div {
    width: 100%;
    text-align: center;
  }
  #l-footer .inner .footer_right {
    display: none;
  }
}
@media all and (max-width: 639px) {
  #l-footer {
    font-size: 1.2rem;
    border-radius: 30px 30px 0 0;
  }
  #l-footer::before {
    top: -38px;
    height: 40px;
  }
}

.footer_img {
  display: flex;
  border-radius: 100px 100px 0 0;
  overflow: hidden;
}
.footer_img img {
  width: 25%;
  height: 300px;
  object-fit: cover;
}

.footer_contact {
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer_contact > li {
  width: 49%;
}
.footer_contact > li a {
  color: #564d48;
  display: block;
  background: rgba(255, 255, 255, 0.8);
  text-align: center;
  padding: 30px 100px;
  border-radius: 20px;
  font-weight: 600;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
}
.footer_contact > li a i {
  display: block;
  font-size: 2.5em;
  margin-bottom: 10px;
}
.footer_contact > li:nth-child(1) {
  margin-bottom: 10px;
}
.footer_contact > li:nth-child(2) a {
  background: #e8dcd4;
}

/* footer_navi
----------------------------------*/
.footer_navi {
  position: relative;
}
@media all and (max-width: 896px) {
  .footer_navi {
    display: none;
  }
}
.footer_navi ul {
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0 20px;
}
.footer_navi ul li {
  width: calc((100% - 20px) / 2);
}
.footer_navi ul li a {
  color: #fff;
  font-size: 1.4rem;
  position: relative;
  font-weight: 600;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding: 10px;
  display: block;
}
.footer_navi ul li a span {
  transition: 0.2s all ease-in-out;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  position: relative;
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.2rem;
  text-align: left;
}
@media all and (max-width: 639px) {
  .footer_navi ul li a {
    font-size: 1.2rem;
  }
}
.footer_navi ul li a:hover {
  background: rgba(255, 255, 255, 0.7);
}
.footer_navi ul li .dropdown {
  margin-top: 10px;
  padding: 8px 5px 5px;
}
@media all and (max-width: 639px) {
  .footer_navi ul li .dropdown {
    padding: 10px;
  }
}
.footer_navi ul li .dropdown .dropdown-ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px 15px;
  max-width: 320px;
}
.footer_navi ul li .dropdown .dropdown-li {
  width: 100%;
}
.footer_navi ul li .dropdown .dropdown-li:first-of-type {
  display: block;
}
.footer_navi ul li .dropdown .dropdown-li a {
  font-size: 13px;
  color: #ddd;
  line-height: 1.5;
  letter-spacing: 0;
  border: none;
  display: block;
}
.footer_navi ul li .dropdown .dropdown-li a:before {
  background: #fff;
}

.flogo {
  max-width: 300px;
  text-align: center;
  margin-bottom: 40px;
}
@media all and (max-width: 896px) {
  .flogo {
    width: 60%;
    margin: 0 auto 40px;
  }
}

.address {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 40px;
}
@media all and (max-width: 896px) {
  .address {
    margin: 0 auto 40px;
  }
}
@media all and (max-width: 639px) {
  .address {
    font-size: 12px;
  }
}

.copyright {
  font-size: 1.2rem;
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: left;
}
@media all and (max-width: 896px) {
  .copyright {
    font-size: 12px;
    margin: auto;
  }
}

/*----------------------------------
 layout
----------------------------------*/
.staff_list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}
.staff_list > li {
  width: calc((100% - 80px) / 3);
  background: rgba(170, 120, 81, 0.2);
  border-radius: 20px;
  padding: 20px;
}
.staff_list > li:nth-child(4),
.staff_list > li:nth-child(5) {
  background: rgba(232, 220, 212, 0.2);
}
.staff_list > li:nth-child(4) .txt2 span,
.staff_list > li:nth-child(5) .txt2 span {
  background: #e8dcd4;
}
.staff_list > li .img {
  text-align: center;
}
.staff_list > li .img img {
  width: 80%;
}
.staff_list > li .txt {
  font-weight: bold;
  text-align: center;
  font-size: 1.4em;
  margin-bottom: 10px;
}
.staff_list > li .txt2 span {
  display: block;
  text-align: center;
  background: #aa7851;
  border-radius: 5px;
}
@media all and (max-width: 896px) {
  .staff_list > li {
    width: calc((100% - 40px) / 3);
  }
}
@media all and (max-width: 639px) {
  .staff_list > li {
    width: calc((100% - 20px) / 2);
  }
}

.rec_box {
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
  width: 90%;
  margin: 0 auto;
}
.rec_box.w-100 {
  width: 100%;
}
.rec_box.col3 > li {
  width: calc((100% - 160px) / 3);
}
.rec_box.col2 > li {
  width: calc((100% - 80px) / 2);
  padding: 0 4em;
}
.rec_box.col2 > li .img img {
  height: 350px;
  width: 100%;
  object-fit: cover;
}
.rec_box.jc-c {
  justify-content: center;
}
.rec_box > li {
  width: calc((100% - 80px) / 2);
}
.rec_box > li .img {
  margin-bottom: 20px;
}
.rec_box > li .img img {
  border-radius: 20px;
}
.rec_box > li .ttl {
  text-align: center;
  margin-bottom: 10px;
  font-size: 1.8rem;
  font-weight: 600;
}
.rec_box > li .txt {
  font-size: 0.9em;
}
@media all and (max-width: 896px) {
  .rec_box.col3 {
    gap: 20px;
  }
  .rec_box.col3 > li {
    width: calc((100% - 20px) / 2);
  }
  .rec_box.col3 > li .img {
    margin-bottom: 10px;
  }
  .rec_box.col2 > li {
    padding: 0;
  }
  .rec_box.col2 > li .img img {
    height: 250px;
  }
}
@media all and (max-width: 639px) {
  .rec_box.col3,
  .rec_box.col2 {
    gap: 40px;
  }
  .rec_box.col3 > li,
  .rec_box.col2 > li {
    width: 100%;
  }
  .rec_box.col3 > li .ttl,
  .rec_box.col2 > li .ttl {
    font-size: 1.4rem;
  }
}

.fas_box {
  max-width: 100%;
  margin: 80px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
}
.fas_box .inner {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: calc((100% - 60px) / 2);
}
.fas_box .inner .img {
  width: 100%;
  margin-bottom: 10px;
  position: relative;
  text-align: center;
}
.fas_box .inner .img .num {
  position: absolute;
  top: -0.8em;
  left: -0.8em;
  width: 2.5em;
  height: 2.5em;
  line-height: 2.5em;
  text-align: center;
  font-size: 3rem;
  background: #aa7851;
  color: #fff;
  border-radius: 50%;
  margin-right: 15px;
}
.fas_box .inner .img img {
  border-radius: 20px;
  width: 45%;
  height: 100%;
  object-fit: contain;
}
.fas_box .inner .txt {
  position: relative;
  flex: 1;
}
.fas_box .inner .txt .ttl {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  text-align: center;
}
@media all and (max-width: 896px) {
  .fas_box {
    gap: 30px;
  }
  .fas_box .inner {
    width: calc((100% - 30px) / 2);
  }
  .fas_box .inner .img img {
    width: 75%;
  }
  .fas_box .inner .txt .ttl {
    font-size: 1.6rem;
  }
}
@media all and (max-width: 639px) {
  .fas_box {
    margin: 40px auto 0;
  }
  .fas_box .inner {
    width: 100%;
  }
}

/* --news--
----------------------------------*/
.news-box {
  margin: 0 auto 0;
  max-width: 1200px;
  border-radius: 20px;
  position: relative;
  z-index: 10;
  display: flex;
  min-height: 150px;
  padding: 100px 50px 50px;
  background: white;
  border-left: double 7px #e8dcd4;
  border-right: double 7px #e8dcd4;
}
.news-box::before {
  position: absolute;
  content: "";
  left: 50%;
  top: -5px;
  transform: translateX(-50%);
  width: 1050px;
  height: 60px;
  background: url(../img/deco03.png) no-repeat center/contain;
  z-index: -1;
}
@media all and (max-width: 896px) {
  .news-box {
    margin-top: 0;
  }
}
@media all and (max-width: 639px) {
  .news-box {
    flex-direction: column;
    padding: 20px 10px;
    margin-bottom: 40px;
  }
}

.news-title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 60px;
  text-align: center;
  color: #fff;
  position: relative;
}
.news-title span {
  display: block;
}
.news-title .eng {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  position: relative;
  font-size: 2.5rem;
  letter-spacing: 0.1em;
}
.news-title .ja {
  position: relative;
  margin: 0 auto;
  margin-bottom: 20px;
  font-family: "Shippori Mincho", "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 900;
  letter-spacing: 0.2em;
}
@media all and (max-width: 639px) {
  .news-title {
    margin-bottom: 30px;
  }
  .news-title .eng {
    font-size: 1.8rem;
  }
  .news-title .ja {
    font-size: 1.3rem;
    writing-mode: inherit;
    margin-bottom: 0;
  }
}

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

#main {
  float: left;
  width: 75%;
}
#main .mbox {
  min-height: 700px;
}
@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: 25%;
  padding: 20px;
  border-radius: 10px;
}
@media all and (max-width: 896px) {
  #side {
    float: none;
    width: 100%;
    position: static;
    margin-top: 40px;
  }
}

.news .news-inner {
  display: flex;
  flex-wrap: wrap;
  padding: 18px 6px;
  border-top: 1px solid #ccc;
}
.news .news-inner:last-of-type {
  border-bottom: 1px solid #ccc;
}
@media all and (max-width: 639px) {
  .news .news-inner {
    padding: 12px 4px;
  }
}
.news dt {
  width: 8em;
  float: left;
  font-weight: 600;
  color: #564d48;
}
@media all and (max-width: 639px) {
  .news dt {
    width: 100%;
    float: none;
  }
}
.news dd {
  color: #564d48;
}
.news dd a {
  color: #564d48;
}
.news dd a:hover {
  opacity: 0.5;
}

.news-bl {
  overflow: hidden;
}
.news-bl dt {
  float: left;
  width: 8em;
  padding: 5px;
  line-height: 1.3;
  color: #aa7851;
  text-align: center;
  border: 1px solid #aa7851;
  border-radius: 30px;
  background: #fefefe;
  font-size: 1.3rem;
}
@media all and (max-width: 639px) {
  .news-bl dt {
    font-size: 12px;
  }
}
.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: #564d48;
  background-image: linear-gradient(to right, #aa7851, #aa7851);
  padding-bottom: 0.25em;
  background-position: 100% 100%;
  background-size: 0% 1px;
  background-repeat: no-repeat;
  transition: background-size 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  font-weight: 700;
}
.news-bl dd a:hover {
  background-position: 0 100%;
  background-size: 100% 1px;
}
.news-bl dd:last-child {
  margin: 0;
  border-bottom: none;
}
@media all and (max-width: 639px) {
  .news-bl dt {
    float: none;
    width: 180px;
  }
  .news-bl dd {
    padding: 8px 5px;
    text-align: left;
  }
}

/* category_tab
----------------------------------*/
.innerB {
  width: 100%;
  margin: auto;
  background: #fff;
  padding: 50px 50px;
  box-shadow: 0 6px 15px rgba(36, 37, 38, 0.04);
  box-sizing: border-box;
  border: 1px solid #eee;
}
.innerB.innerB_news {
  border-top: none;
  border-radius: 10px;
}
.innerB.innerB_news .category_contents {
  height: 425px;
  overflow-y: scroll;
  overflow-x: hidden;
}
.innerB.innerB_news .category_contents.type2 {
  height: auto;
  overflow-y: auto;
  overflow-x: auto;
}
.innerB.innerB_news .category_contents::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 5, 56, 0.3);
  border-radius: 10px;
  background-color: #f5f5f5;
}
.innerB.innerB_news .category_contents::-webkit-scrollbar {
  width: 6px;
  background-color: #f5f5f5;
}
.innerB.innerB_news .category_contents::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 5, 56, 0.3);
  background-color: #aa7851;
}
@media all and (max-width: 639px) {
  .innerB {
    padding: 30px 20px;
  }
}

.category_tab {
  position: relative;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.category_tab li {
  position: relative;
  width: 27%;
  box-sizing: border-box;
  background: #aa7851;
  border-top: 3px solid #aa7851;
  border-right: 3px solid #aa7851;
  border-left: 3px solid #aa7851;
  color: #ffffff;
  padding: 20px 10px;
  cursor: pointer;
  margin-left: 20px;
  border-radius: 8px 8px 0 0;
  font-weight: bold;
}
.category_tab li:last-child {
  margin-right: 20px;
}
.category_tab li:nth-child(2) {
  background: #e8dcd4;
  border-top: 3px solid #e8dcd4;
  border-right: 3px solid #e8dcd4;
  border-left: 3px solid #e8dcd4;
}
.category_tab li:nth-child(3) {
  background: #e8dcd4;
  border-top: 3px solid #e8dcd4;
  border-right: 3px solid #e8dcd4;
  border-left: 3px solid #e8dcd4;
}
.category_tab li.active {
  background: #ffffff;
  color: #555;
}
.category_tab li.active:before {
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 3px;
  content: "";
  background: #ffffff;
}
@media all and (max-width: 639px) {
  .category_tab li {
    margin-left: 2px;
    width: 32%;
    padding: 5px;
    font-size: 13px;
  }
  .category_tab li:last-child {
    margin-right: 0px;
  }
}

.panel {
  display: none;
}

/* contents
----------------------------------*/
.single0 {
  margin: 0 auto;
  padding: 120px 0;
  position: relative;
}
.single0.type2 {
  padding: 120px 0 0;
}

.single {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 0;
  position: relative;
}
@media all and (max-width: 1367px) {
  .single {
    padding: 120px 10px;
    max-width: 95%;
  }
}

.single02 {
  margin: 0 auto;
  padding: 120px 0;
}
@media all and (max-width: 1367px) {
  .single02 {
    width: 100%;
    padding: 120px 10px;
  }
}

.single03 {
  max-width: 1500px;
  margin: 0 auto;
  padding: 120px 0;
  position: relative;
}
@media all and (max-width: 1367px) {
  .single03 {
    padding: 120px 10px;
  }
}

.single.phalf,
.single02.phalf,
.single03.phalf {
  padding: 60px 0;
}
@media all and (max-width: 1100px) {
  .single.phalf,
  .single02.phalf,
  .single03.phalf {
    padding: 60px 10px;
  }
}
@media all and (max-width: 896px) {
  .single.phalf,
  .single02.phalf,
  .single03.phalf {
    padding: 30px 0;
  }
}
.single.type2,
.single02.type2,
.single03.type2 {
  padding: 120px 0 0;
}

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

.lsingle {
  float: left;
}

.rsingle {
  float: right;
}

/* box
----------------------------------*/
.mbox {
  background: #fefefe;
  padding: 30px;
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  border-radius: 10px;
}
.mbox.wk {
  border: 1px solid #aa7851;
}
.mbox.transparent {
  background: transparent;
}
.mbox.box1 {
  background: #e8dcd4;
}
.mbox::before {
  border-radius: 10px;
}
@media all and (max-width: 639px) {
  .mbox {
    padding: 15px 10px;
  }
}

.mbox2 {
  background: #769bc5;
  padding: 30px;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  border-radius: 20px;
}
@media all and (max-width: 639px) {
  .mbox2 {
    padding: 15px;
  }
}

.mbox3 {
  position: relative;
  background: #fefefe;
  border-top: 5px solid #aa7851;
  padding: 35px 30px;
  z-index: 3;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 0 8px rgba(86, 77, 72, 0.1);
}
@media all and (max-width: 639px) {
  .mbox3 {
    padding: 20px 15px;
  }
}

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

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

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

/* background
----------------------------------*/
.bg-grid {
  background-image: linear-gradient(90deg, transparent 95%, rgba(204, 204, 204, 0.2) 50%, rgba(204, 204, 204, 0.2)), linear-gradient(0deg, transparent 95%, rgba(204, 204, 204, 0.2) 50%, rgba(204, 204, 204, 0.2));
  background-size: 20px 20px;
  background-repeat: repeat;
}

.bg-nami {
  position: relative;
}
.bg-nami::before {
  content: " ";
  position: absolute;
  bottom: 0;
  transform: scale(1, -1);
  left: 0;
  right: 0;
  width: 100%;
  height: 22px;
  background-position: top center;
  background-repeat: repeat-x;
  background-size: 100%;
  background: url(../img/nami.svg);
  z-index: 1;
}
@media all and (max-width: 896px) {
  .bg-nami::before {
    height: 90px;
  }
}
@media all and (max-width: 639px) {
  .bg-nami::before {
    height: 40px;
  }
}

.bg-gradient {
  position: relative;
}
.bg-gradient:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: linear-gradient(to right, #aa7851, #e8dcd4);
  z-index: -2;
  opacity: 0.1;
}
.bg-gradient.type1 {
  margin-bottom: 20px;
}
.bg-gradient.type1:before {
  position: absolute;
  content: "";
  width: calc(100% - 40px);
  height: 100%;
  transform: translate(-50%, 0);
  top: 0;
  left: 50%;
  background-image: linear-gradient(45deg, #e8dcd4, #faf8f5);
  z-index: -2;
  opacity: 0.1;
}
@media all and (max-width: 639px) {
  .bg-gradient.type1 {
    margin-bottom: 5px;
  }
  .bg-gradient.type1:before {
    width: calc(100% - 10px);
  }
}
.bg-gradient.type2 {
  margin: 20px auto;
}
.bg-gradient.type2:before {
  position: absolute;
  content: "";
  width: calc(100% - 40px);
  height: 100%;
  transform: translate(-50%, 0);
  top: 0;
  left: 50%;
  background-image: linear-gradient(45deg, #aa7851, #faf8f5);
  z-index: -2;
  opacity: 0.05;
}
@media all and (max-width: 639px) {
  .bg-gradient.type2 {
    margin: 5px auto;
  }
  .bg-gradient.type2:before {
    width: calc(100% - 10px);
  }
}

.bg-01 {
  position: relative;
}
.bg-01:before {
  position: absolute;
  content: "";
  width: 450px;
  height: 450px;
  right: -40px;
  bottom: 0;
  background: url(../img/deco01.png) no-repeat center/contain;
  opacity: 0.5;
}
.bg-01:after {
  position: absolute;
  content: "";
  width: 450px;
  height: 450px;
  left: -80px;
  top: 0;
  background: url(../img/deco02.png) no-repeat center/contain;
  z-index: -1;
  opacity: 0.3;
}

.bg-02 {
  position: relative;
}
.bg-02:before,
.bg-02:after {
  position: absolute;
  content: "";
  width: 350px;
  height: 612px;
  z-index: -1;
}
.bg-02:before {
  right: -7%;
  bottom: 10%;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/24503/about01.png) no-repeat center/contain;
}
.bg-02:after {
  left: -7%;
  top: 40%;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/24503/about02.png) no-repeat center/contain;
}
.bg-02.type2:before {
  background: url(../img/deco03.png) no-repeat center/contain;
}
.bg-02.type2:after {
  background: url(../img/deco04.png) no-repeat center/contain;
}
.bg-02.type3:before {
  background: url(../img/deco05.png) no-repeat center/contain;
}
.bg-02.type3:after {
  background: url(../img/deco06.png) no-repeat center/contain;
}
@media all and (max-width: 1100px) {
  .bg-02:before,
  .bg-02:after {
    width: 200px;
  }
  .bg-02:before {
    right: -40px;
  }
  .bg-02:after {
    left: -40px;
  }
}
@media all and (max-width: 896px) {
  .bg-02:before,
  .bg-02:after {
    width: 200px;
  }
}
.bg-02:before {
  right: -100px;
}
.bg-02:after {
  left: -100px;
}
@media all and (max-width: 639px) {
  .bg-02:before,
  .bg-02:after {
    opacity: 0.2;
  }
}

.bg-w {
  position: relative;
}
.bg-w:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #fefefe;
  z-index: -1;
}
.bg-w.round:before {
  border-radius: 100px;
}
.bg-w.chosei {
  margin-bottom: 120px;
}
@media all and (max-width: 896px) {
  .bg-w.round::before {
    border-radius: 100px;
  }
}
@media all and (max-width: 639px) {
  .bg-w .single,
  .bg-w .single03 {
    width: 90%;
  }
  .bg-w::before {
    width: calc(100% - 20px);
  }
  .bg-w.round::before {
    border-radius: 30px;
  }
  .bg-w.chosei {
    margin-bottom: 60px;
  }
}

.bg-base {
  position: relative;
  padding-bottom: 60px;
}
.bg-base:before {
  position: absolute;
  content: "";
  width: 100%;
  height: calc(100% + 400px);
  top: -400px;
  left: 0;
  background: #aa7851;
  border-bottom-left-radius: 400px;
  z-index: -2;
}
@media all and (max-width: 896px) {
  .bg-base::before {
    border-bottom-left-radius: 200px;
  }
}
@media all and (max-width: 639px) {
  .bg-base {
    padding-bottom: 0;
  }
  .bg-base::before {
    border-bottom-left-radius: 100px;
  }
}

.bg-sub {
  position: relative;
  background: rgba(232, 220, 212, 0.1);
}
.bg-sub.type1 {
  margin: 0 auto 20px;
  width: calc(100% - 40px);
  background: linear-gradient(to bottom, rgba(250, 248, 245, 0.6), rgba(250, 248, 245, 0.4));
}
@media all and (max-width: 639px) {
  .bg-sub.type1 {
    margin: 0 auto 10px;
    width: calc(100% - 20px);
  }
}

.bg-gray {
  position: relative;
}
.bg-gray:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #f4f4f4;
}
.bg-gray.bg-half {
  background: transparent;
  background-image: linear-gradient(to bottom, transparent 0%, transparent 50%, #f4f4f4 50.1%, #f4f4f4 100%);
}

/* mtitle
----------------------------------*/
.mtitle {
  margin: 0 auto 60px;
  position: relative;
}
.mtitle .eng,
.mtitle .eng2 {
  font-size: 1.8rem;
  color: #aa7851;
  position: relative;
  z-index: 2;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.2;
  margin-bottom: 20px;
  display: block;
}
.mtitle .eng2 {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.mtitle .ja {
  font-family: "Zen Maru Gothic", "YakuHanJP", "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  position: relative;
  z-index: 2;
  font-size: 3rem;
  color: #434343;
  display: block;
  line-height: 1.5;
  margin-top: 10px;
}
.mtitle.sbc span.eng,
.mtitle.sbc span.eng2 {
  color: #e8dcd4;
}
.mtitle.white .eng,
.mtitle.white .eng2 {
  color: #fff;
}
.mtitle.white .eng:before,
.mtitle.white .eng2:before {
  color: #fff;
}
.mtitle.mtitle_left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}
@media all and (max-width: 896px) {
  .mtitle .eng,
  .mtitle .eng2 {
    font-size: 1.8rem;
  }
}
@media all and (max-width: 639px) {
  .mtitle {
    text-align: center;
    margin-bottom: 30px;
  }
  .mtitle .eng,
  .mtitle .eng2 {
    font-size: 2rem;
    margin-bottom: 5px;
  }
  .mtitle .ja {
    font-size: 1.5rem;
    margin-top: 5px;
  }
}

.mtitle2 {
  position: relative;
  margin-bottom: 40px;
}
.mtitle2 .eng {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  font-size: 1.6rem;
  color: #aa7851;
}
.mtitle2 .ja {
  font-size: 2.2rem;
  padding-right: 10px;
  color: #434343;
}
.mtitle2 .small {
  font-size: 1.4rem;
  display: block;
}
.mtitle2.type2 {
  margin-bottom: 10px;
}
.mtitle2.white::before {
  color: #fff;
}
.mtitle2.white .ja,
.mtitle2.white .eng {
  color: #fff;
}
.mtitle2.sbc .eng {
  color: #e8dcd4;
}
.mtitle2.sbc .ja {
  color: #fff;
}
.mtitle2.sbc:before {
  color: #e8dcd4;
}
.mtitle2.sbc2 .eng {
  color: #e8dcd4;
}
.mtitle2.sbc2 .ja {
  color: #fff;
}
.mtitle2.sbc2:before {
  color: #e8dcd4;
}
@media all and (max-width: 896px) {
  .mtitle2 .ja {
    font-size: 1.8rem;
  }
}
@media all and (max-width: 639px) {
  .mtitle2:before {
    margin-right: 3px;
  }
  .mtitle2 .eng {
    font-size: 1rem;
  }
  .mtitle2 .ja {
    font-size: 1.3rem;
  }
}

.mtitle3 {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  -webkit-text-orientation: mixed;
  text-orientation: mixed;
  -webkit-font-feature-settings: "pkna";
  font-feature-settings: "pkna";
  position: absolute;
  min-height: 100px;
  top: 0;
  left: 0;
}
.mtitle3 .ja {
  display: block;
  font-size: 2.4rem;
  color: #222;
  letter-spacing: 0.2em;
  padding-right: 5px;
  line-height: 2;
}
.mtitle3 .eng {
  display: block;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  font-size: 2rem;
  color: #aa7851;
}
@media all and (max-width: 639px) {
  .mtitle3 {
    writing-mode: inherit;
    position: static;
    margin-bottom: 20px;
    min-height: initial;
    min-height: auto;
  }
  .mtitle3 .ja {
    font-size: 1.8rem;
  }
  .mtitle3 .eng {
    font-size: 1.4rem;
  }
}

.mtitle4 {
  font-weight: normal;
  text-align: center;
  font-size: 2.5rem;
  line-height: 1.5;
  font-weight: 600;
  font-family: "Zen Maru Gothic", "YakuHanJP", "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  margin-bottom: 40px;
}
.mtitle4 span {
  position: relative;
  display: inline-block;
  min-width: 10%;
}
.mtitle4 span:before,
.mtitle4 span:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 2px;
  height: 1.6rem;
  background-color: #e8dcd4;
}
.mtitle4 span:before {
  left: -15px;
  -webkit-transform: rotate(-25deg);
  transform: rotate(-25deg);
}
.mtitle4 span:after {
  right: -15px;
  -webkit-transform: rotate(25deg);
  transform: rotate(25deg);
}
.mtitle4.white span:before,
.mtitle4.white span:after {
  background-color: #e8dcd4;
}
@media all and (max-width: 639px) {
  .mtitle4 {
    font-size: 1.4rem;
  }
}
@media all and (max-width: 320px) {
  .mtitle4 span:before {
    left: -5px;
  }
  .mtitle4 span:after {
    right: -5px;
  }
}

.mtitles {
  position: relative;
}
.mtitles .ja {
  position: relative;
  z-index: 2;
  font-size: 1.8rem;
  color: #fff;
  background: #aa7851;
  border-radius: 20px;
  padding: 2px 15px;
  margin-bottom: 10px;
  display: inline-block;
}
@media all and (max-width: 639px) {
  .mtitles .ja {
    font-size: 1.6rem;
  }
}

.mtitle_line {
  position: relative;
  margin-bottom: 20px;
  color: #564d48;
  border-top: 2px solid #aa7851;
  font-size: 1.8rem;
  padding: 6px 10px 16px;
  font-family: "Zen Maru Gothic", "YakuHanJP", "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
}
.mtitle_line span {
  font-size: 1.4rem;
  color: #faf8f5;
  margin-right: 10px;
}
.mtitle_line:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  content: "";
  opacity: 0.5;
  background-image: repeating-linear-gradient(-45deg, #876041, #876041 1px, transparent 2px, transparent 5px);
  background-size: 7px 7px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
@media all and (max-width: 639px) {
  .mtitle_line {
    font-size: 1.4rem;
  }
  .mtitle_line span {
    font-size: 12px;
  }
}

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

.mtitle-bll {
  font-size: 1.7rem;
  font-weight: 700;
  border-bottom: 2px solid #eeeeee;
  position: relative;
  margin-bottom: 15px;
  line-height: 1.5;
  padding-bottom: 8px;
}
.mtitle-bll:after {
  position: absolute;
  content: "";
  display: block;
  bottom: -2px;
  width: 100px;
  height: 2px;
  background: #aa7851;
}
@media all and (max-width: 639px) {
  .mtitle-bll {
    font-size: 1.6rem;
  }
}

.mtitle_sub {
  padding-left: 0.5em;
  font-weight: 600;
  position: relative;
  border-left: 6px solid #e8dcd4;
  margin: 8px 0 15px;
  line-height: 1.6;
  text-align: left;
  font-size: 1.6rem;
}
.mtitle_sub.white {
  color: #fff;
  border-left: 6px solid #faf8f5;
}
.mtitle_sub.white:before {
  background-color: #faf8f5;
}
.mtitle_sub span {
  color: #aa7851;
  padding-left: 5px;
  font-size: 0.9em;
}
.mtitle_sub:before {
  position: absolute;
  left: -6px;
  bottom: 0;
  content: "";
  width: 6px;
  height: 50%;
  background-color: #aa7851;
}
@media all and (max-width: 639px) {
  .mtitle_sub {
    font-size: 1.3rem;
  }
}

.mtitle_point {
  position: relative;
  margin-bottom: 15px;
  font-size: 2rem;
  text-align: center;
  line-height: 1.4;
  font-family: "Zen Maru Gothic", "YakuHanJP", "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #564d48;
}
.mtitle_point:after {
  content: "";
  width: 30px;
  height: 2px;
  background: #e8dcd4;
  display: block;
  margin: 10px auto 0;
}
@media all and (max-width: 639px) {
  .mtitle_point {
    font-size: 1.5rem;
  }
}

.mtitle_box {
  background: #faf8f5;
  color: #564d48;
  font-size: 1.6rem;
  position: relative;
  padding: 15px 30px 15px 15px;
  margin-bottom: 20px;
  line-height: 1.4;
  display: flex;
  align-items: center;
}
.mtitle_box:before {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f30a";
  font-weight: 900;
  display: block;
  right: -1px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
}
@media all and (max-width: 639px) {
  .mtitle_box {
    font-size: 1.3rem;
    display: block;
  }
  .mtitle_box .profile {
    display: block;
    padding: 4px 0 0;
  }
}

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

.mtext0 {
  font-size: 1.8rem;
}
.mtext0.type1 {
  font-size: 1.6rem;
}
@media all and (max-width: 639px) {
  .mtext0 {
    font-size: 1.3rem;
  }
  .mtext0.type1 {
    font-size: 1.2rem;
  }
}

.mtext1 {
  font-size: 1.8rem;
  line-height: 1.6;
}
@media all and (max-width: 639px) {
  .mtext1 {
    font-size: 1.3rem;
  }
  .mtext1.b-m40 {
    margin-bottom: 20px;
  }
}

.mtext2 {
  font-size: 2.4rem;
}
@media all and (max-width: 639px) {
  .mtext2 {
    font-size: 1.5rem;
  }
  .mtext2.b-m40 {
    margin-bottom: 20px;
  }
}

.mtext3 {
  font-size: 3rem;
}
@media all and (max-width: 896px) {
  .mtext3 {
    font-size: 2.3rem;
  }
}
@media all and (max-width: 639px) {
  .mtext3 {
    font-size: 1.7rem;
  }
  .mtext3.b-m40 {
    margin-bottom: 20px;
  }
}

.mtext-sub {
  font-weight: 600;
}
.mtext-sub span {
  background: #564d48;
  color: #fff;
  display: inline-block;
  padding: 0 10px;
  margin-right: 10px;
  border-radius: 5px;
}

.mtitle_category {
  margin-bottom: 15px;
  font-size: 1.8rem;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.mtitle_category:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0ca";
  font-weight: 900;
  margin-right: 5px;
  color: #e8dcd4;
}
.mtitle_category.new:before {
  font-family: "Font Awesome 5 Free";
  content: "\f044";
  font-weight: 900;
}
@media all and (max-width: 639px) {
  .mtitle_category {
    font-size: 1.4rem;
  }
}

.mtitle_small {
  font-weight: 600;
  padding: 0 0 4px;
  font-size: 1.6rem;
  border-bottom: 1px solid #faf8f5;
  position: relative;
  margin-bottom: 10px;
}
.mtitle_small:before {
  font-family: "Font Awesome 5 Free";
  content: "\f138";
  font-weight: 900;
  margin-right: 5px;
  color: #e8dcd4;
}
.mtitle_small.type1 {
  border-bottom: 1px solid #f2ece4;
  color: #434343;
}
.mtitle_small.type1:before {
  color: #aa7851;
}
.mtitle_small.type2 {
  border-bottom: 1px solid #f2ece4;
  color: #434343;
}
.mtitle_small.type2:before {
  color: #e8dcd4;
}
.mtitle_small span {
  font-size: 1.45rem;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 0;
  letter-spacing: 0.05em;
}
@media all and (max-width: 639px) {
  .mtitle_small {
    padding: 4px;
    font-size: 1.3rem;
  }
  .mtitle_small span {
    font-size: 1.1rem;
  }
  .mtitle_small:before {
    font-size: 1.1rem;
  }
}

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

.mtitle_small3 {
  font-family: "Zen Maru Gothic", "YakuHanJP", "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #564d48;
  padding: 10px 0;
  font-size: 1.6rem;
  border-top: 1px solid #e8dcd4;
  border-bottom: 1px solid #e8dcd4;
  margin-bottom: 15px;
}
.mtitle_small3:before {
  content: "―";
  margin-right: 8px;
  color: #e8dcd4;
}
@media all and (max-width: 639px) {
  .mtitle_small3 {
    padding: 6px 0;
    font-size: 1.3rem;
  }
}

.mtitle_small4 {
  position: relative;
  background: #fff;
  border: 1px solid #ddd;
  font-size: 2rem;
  padding: 15px 15px 15px 30px;
  margin-bottom: 20px;
  font-family: "Zen Maru Gothic", "YakuHanJP", "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
}
.mtitle_small4.type1:before {
  background: rgba(232, 220, 212, 0.8);
}
.mtitle_small4:before {
  position: absolute;
  top: 15%;
  left: 8px;
  width: 6px;
  height: 70%;
  content: "";
  background: rgba(170, 120, 81, 0.8);
}
@media all and (max-width: 639px) {
  .mtitle_small4 {
    font-size: 1.6rem;
    padding: 12px 12px 12px 24px;
  }
}

/* btn
----------------------------------*/
.btn01 a {
  width: 260px;
  margin: 40px auto 20px;
  color: #564d48;
  background: rgba(255, 255, 255, 0.7);
  display: block;
  padding: 15px 30px;
  border-radius: 40px;
  font-weight: bold;
  position: relative;
  box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
}
.btn01 a::after {
  content: "●";
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  transition: all 0.5s ease;
  color: #564d48;
}
.btn01 a:hover {
  background: #564d48;
  color: #fff;
}
.btn01 a:hover::after {
  right: 20px;
  color: #fff;
}
.btn01.mail {
  flex-basis: 100%;
}
.btn01.mail a {
  background: #e8dcd4;
  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-left: 0;
}
.btn01.white a {
  background: #fff;
  border: 1px solid #fff;
}
.btn01.white a:hover {
  color: #434343;
}
.btn01.white a:hover::after {
  color: #aa7851;
}
.btn01.white2 a {
  background: #fff;
  border: 1px solid #ddd;
}
.btn01.white2 a:hover {
  color: #434343;
}
.btn01.white2 a:hover::after {
  color: #aa7851;
}
@media all and (max-width: 639px) {
  .btn01 a {
    width: 95%;
    font-size: 1rem;
    padding: 15px 30px;
  }
  .btn01.left a {
    margin-left: auto;
  }
}

.btn02 {
  max-width: 280px;
  width: 90%;
  margin: 20px auto 0;
}
.btn02 a {
  display: block;
  position: relative;
  padding: 15px 0;
  background-color: white;
  border: 1px solid #564d48;
  line-height: 24px;
  text-align: center;
  color: #564d48;
}
.btn02 a i {
  display: block;
  position: absolute;
  top: 50%;
  right: -10px;
  width: 45px;
  height: 1px;
  background-color: #564d48;
  transition: all 0.3s ease;
}
.btn02 a:hover i {
  width: 30px;
}

.btn03 {
  width: 100%;
  margin: 20px auto 0;
}
.btn03 a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 20px 40px;
  background-color: #fdfdfc;
  border: 1px solid #d5cfca;
  line-height: 24px;
  color: #564d48;
  border-radius: 10px;
}
.btn03 a i {
  font-size: 3rem;
  border-left: 1px solid #d5cfca;
  padding: 20px 0 20px 40px;
  padding-left: 40px;
}
.btn03 a:hover {
  background: #faf8f5;
  background-color: #f2ece4;
}

.btn_wk a {
  letter-spacing: 0.2em;
  text-align: center;
  position: relative;
  color: #555;
  background: #fff;
  border: 1px solid #555;
  padding: 6px 10px;
  max-width: 220px;
  width: 90%;
  margin-top: 5px;
  margin-bottom: 5px;
  margin-left: auto;
  margin-right: auto;
  display: table;
  transition: all 0.3s ease-in-out;
  font-size: 90%;
}
.btn_wk a span {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  letter-spacing: 0.4em;
}
.btn_wk a:before,
.btn_wk a:after {
  content: "";
  position: absolute;
  border: solid #555;
  width: 10px;
  height: 10px;
  transition: all 0.3s ease-in-out;
}
.btn_wk a:before {
  top: -6px;
  left: -6px;
  border-width: 1px 0 0 1px;
}
.btn_wk a:after {
  bottom: -6px;
  right: -6px;
  border-width: 0 1px 1px 0;
}
.btn_wk a:hover {
  color: #fff;
  background: #aa7851;
  border-color: transparent;
}
.btn_wk a:hover:before,
.btn_wk a:hover:after {
  width: calc(100% + 11px);
  height: calc(100% + 11px);
  border-color: #aa7851;
}
.btn_wk.sbc a:hover {
  color: #fff;
  background: #e8dcd4;
}
.btn_wk.sbc a:hover:before,
.btn_wk.sbc a:hover:after {
  border-color: #e8dcd4;
}
.btn_wk.btn-r a {
  margin-right: 0;
}

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

/* page-title
----------------------------------*/
.page-title {
  margin-left: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-left: auto;
  width: 100%;
}
.page-title .inner {
  height: 550px;
  width: calc(100% - 240px);
  margin: 60px auto 0;
  position: relative;
  background: url(../img/p01.jpg) no-repeat center/cover;
  border-radius: 80px;
  overflow: hidden;
}
.page-title .inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #564d48;
  opacity: 0.3;
}
.page-title .inner.p02 {
  background: url(../img/p02.jpg) no-repeat center/cover;
}
.page-title .inner.p03 {
  background: url(../img/p03.jpg) no-repeat center 60% / cover;
}
.page-title .inner.p04 {
  background: url(../img/p04.jpg) no-repeat center 60% / cover;
}
.page-title .inner.p05 {
  background: url(../img/p05.jpg) no-repeat center 20% / cover;
}
.page-title .page-lead {
  color: #fff;
  line-height: 1.8;
  position: absolute;
  left: 50%;
  bottom: 25%;
  transform: translateX(-50%);
  text-align: center;
}
.page-title .page-lead span {
  display: block;
}
.page-title .page-lead .ja {
  font-family: "Zen Maru Gothic", "YakuHanJP", "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 3rem;
}
.page-title .page-lead .eng {
  font-size: 3rem;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  letter-spacing: 0.05em;
}
@media all and (max-width: 1367px) {
  .page-title .inner {
    width: calc(100% - 140px);
    height: 450px;
  }
}
@media all and (max-width: 1100px) {
  .page-title .inner {
    height: 400px;
  }
  .page-title .inner .page-lead {
    bottom: 35%;
  }
}
@media all and (max-width: 896px) {
  .page-title .inner {
    height: 300px;
  }
  .page-title .page-lead .ja {
    font-size: 1.4rem;
  }
  .page-title .page-lead .eng {
    font-size: 1.8rem;
  }
}
@media all and (max-width: 639px) {
  .page-title .inner {
    height: 250px;
  }
  .page-title .page-lead {
    width: 75%;
  }
}

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

.tbl-profile {
  width: 100%;
}
.tbl-profile th,
.tbl-profile td {
  padding: 10px 5px;
  font-size: 1.4rem;
  vertical-align: middle;
  border-bottom: 1px solid #ddd;
}
@media all and (max-width: 639px) {
  .tbl-profile th,
  .tbl-profile td {
    font-size: 12px;
  }
}
.tbl-profile th {
  width: 26%;
  text-align: left;
  color: #564d48;
}
.tbl-profile.type1 th {
  width: 25%;
}
@media all and (max-width: 639px) {
  .tbl-profile.type1 th {
    width: 30%;
  }
}

.tbl {
  width: 100%;
  border-spacing: 0 10px;
  border-collapse: separate;
}
.tbl th,
.tbl td {
  padding: 15px;
  vertical-align: middle;
  font-weight: 500 !important;
  font-weight: 600;
}
.tbl th span,
.tbl td span {
  font-size: 90%;
  color: #565656;
}
.tbl th {
  background: #e8dcd4;
  border-top-left-radius: 30px;
  color: #fff;
  white-space: nowrap;
}
.tbl th span {
  color: #fff;
}
.tbl td {
  background: #fefefe;
  padding: 15px 30px;
  border: 2px dashed rgba(232, 220, 212, 0.3);
  border-left: none;
}
@media all and (max-width: 639px) {
  .tbl th,
  .tbl td {
    padding: 10px 5px;
  }
  .tbl th {
    border-top-left-radius: 15px;
  }
  .tbl.type1 th,
  .tbl.type1 td {
    display: block;
    width: 100%;
    text-align: center;
  }
  .tbl.type1 th {
    line-height: 1.6;
  }
}

.tbl2 {
  width: 100%;
}
.tbl2.black td {
  color: #434343;
}
.tbl2 th,
.tbl2 td {
  padding: 5px 12px;
  vertical-align: middle;
}
.tbl2 th {
  font-weight: 600;
  width: 25%;
  padding: 7px 12px;
}
.tbl2 th span {
  background: #e8dcd4;
  color: #fefefe;
  padding: 7px 20px;
  width: 100%;
  text-align: center;
  border-radius: 30px;
  display: inline-block;
  white-space: nowrap;
}
.tbl2 td {
  border-bottom: 3px dotted #dcdad9;
}
@media all and (max-width: 639px) {
  .tbl2 th,
  .tbl2 td {
    padding: 5px;
    width: 100%;
    display: block;
  }
}

.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: 25%;
  border-right: 1px solid #e4e4e4;
}
@media all and (max-width: 639px) {
  .tbl_new tr th {
    width: 30%;
  }
}
.tbl_new tr:nth-child(odd) th,
.tbl_new tr:nth-child(odd) td {
  background: #f7f7f7;
}

.tbl-border {
  width: 100%;
}
.tbl-border tr {
  border-top: 1px solid rgba(86, 77, 72, 0.2);
}
.tbl-border th,
.tbl-border td {
  padding: 20px;
  border-bottom: 1px solid rgba(86, 77, 72, 0.2);
  vertical-align: middle;
  text-align: left;
}
@media all and (max-width: 639px) {
  .tbl-border th,
  .tbl-border td {
    padding: 10px;
    font-size: 1.2rem;
  }
}
.tbl-border th {
  width: 25%;
}
.tbl-border th.th-1 {
  width: 45%;
}
@media all and (max-width: 639px) {
  .tbl-border th {
    width: 30%;
  }
}

.timetable {
  width: 100%;
  border-top: 2px solid #d6c1b3;
}
.timetable th,
.timetable td {
  border-bottom: 1px solid #ccc;
  padding: 15px 5px;
  text-align: center;
  vertical-align: middle;
  line-height: 1.5;
}
.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;
    padding: 10px 5px;
  }
}
.timetable .thead th {
  border-top: 0;
}
.timetable .th-1 {
  width: 35%;
  font-weight: 600;
  text-align: center;
}
.timetable .circle {
  color: #e8dcd4;
}
.timetable .circle:before {
  content: "〇";
}
@media all and (max-width: 639px) {
  .timetable {
    padding: 15px 10px;
  }
  .timetable .th-1 {
    width: 25%;
  }
}

/* ggmap
----------------------------------*/
.ggmap {
  position: relative;
  padding-bottom: 36.25%;
  height: 0;
  overflow: hidden;
}
.ggmap iframe,
.ggmap object,
.ggmap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.ggmap.youtube {
  padding-bottom: 56.25%;
}

/* list
----------------------------------*/
.list_common li {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px dashed rgba(232, 220, 212, 0.5);
}
.list_common li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.list_check.type1 {
  display: flex;
  flex-wrap: wrap;
}
.list_check.type1 li {
  width: 48%;
  padding: 0;
}
.list_check.type1 li:nth-child(2n) {
  margin-left: 4%;
}
@media all and (max-width: 639px) {
  .list_check.type1 li {
    width: 95%;
    margin: 0 auto 5px;
  }
  .list_check.type1 li:nth-child(2n) {
    margin-left: auto;
  }
}
.list_check li {
  padding: 8px;
  font-weight: 700;
  margin-bottom: 5px;
}
.list_check li span {
  font-weight: normal;
  font-size: 0.9em;
  display: block;
  padding: 10px;
  background: rgba(250, 248, 245, 0.2);
  margin-top: 10px;
}
.list_check li a {
  color: #aa7851;
  border-bottom: 1px dotted #aa7851;
}
.list_check li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f054";
  font-weight: 900;
  margin-right: 10px;
  color: #aa7851;
}
@media all and (max-width: 639px) {
  .list_check li {
    width: 98%;
    margin: 0 auto 10px;
    font-size: 1.2rem;
  }
}

.list_check2.type1 {
  display: flex;
  flex-wrap: wrap;
}
.list_check2.type1 li {
  width: 48%;
}
.list_check2.type1 li:nth-child(2n) {
  margin-left: 4%;
}
@media all and (max-width: 639px) {
  .list_check2.type1 li {
    width: 95%;
    margin: 0 auto 5px;
  }
  .list_check2.type1 li li {
    padding: 2px 8px 2px 25px;
  }
  .list_check2.type1 li:nth-child(2n) {
    margin-left: auto;
  }
}
.list_check2 li {
  padding: 2px 8px 2px 30px;
  position: relative;
}
.list_check2 li .num {
  color: #aa7851;
  margin: 0 4px;
  font-family: "Roboto", sans-serif;
  font-weight: 900;
}
.list_check2 li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 8px;
  color: #aa7851;
}
.list_check2 li:not(:last-child) {
  margin-bottom: 4px;
}

.list-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.list-inline li {
  display: inline-block;
  padding: 1px;
  background: #aa7851;
  border-radius: 20px;
  padding: 3px 20px;
  font-size: 0.9em;
}
.list-inline li:not(:last-of-type):after {
  content: "/";
  margin: 0 1px;
  color: #e8dcd4;
  font-weight: normal;
}
@media all and (max-width: 639px) {
  .list-inline li {
    display: block;
    padding: 0;
  }
  .list-inline li:before {
    content: "-";
    color: #e8dcd4;
  }
  .list-inline li:not(:last-of-type):after {
    display: none;
  }
}

.list-inline2 {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.list-inline2 li {
  width: 32%;
  display: inline-block;
  padding: 24px 15px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #aa7851;
  color: #736357;
  font-weight: 700;
  border-radius: 15px;
  font-size: 2rem;
}
@media all and (max-width: 896px) {
  .list-inline2 li {
    font-size: 1.6rem;
    padding: 10px;
    border-radius: 10px;
    border-radius: 10px;
  }
}
@media all and (max-width: 639px) {
  .list-inline2 li {
    width: 48%;
    font-size: 1.3rem;
  }
}

.ol-list {
  counter-reset: number;
  list-style: none;
  padding: 5px;
}
.ol-list.type1 {
  display: flex;
  flex-wrap: wrap;
}
.ol-list.type1 > li {
  width: 48%;
}
.ol-list.type1 > li:nth-child(2n) {
  margin-left: 4%;
}
.ol-list > li {
  line-height: 2;
  padding-top: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #ccc;
  position: relative;
  padding-left: 3.5em;
  padding-bottom: 10px;
}
.ol-list > li .ol-lead {
  color: #654730;
  font-size: 2rem;
}
.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);
  display: inline-block;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  font-size: 2.2rem;
  color: #fefefe;
  background: #e8dcd4;
  border-radius: 50%;
  padding: 5px;
  width: 1.8em;
  height: 1.8em;
  line-height: 1.8em;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Josefin Sans", sans-serif;
  font-weight: bold;
}
@media all and (max-width: 639px) {
  .ol-list > li {
    font-size: 1.2rem;
  }
  .ol-list > li .ol-lead {
    font-size: 1.4rem;
  }
  .ol-list > li .inner {
    font-size: 0.9em;
  }
  .ol-list > li:before {
    font-size: 3rem;
  }
}
@media all and (max-width: 639px) {
  .ol-list > li {
    padding-left: 2.7em;
  }
  .ol-list > li::before {
    font-size: 1.6rem;
    width: 1.6em;
    height: 1.6em;
    line-height: 1.6em;
  }
}

.list_disc.sbc li:before {
  color: #e8dcd4;
}
.list_disc.type2 li:before {
  content: "●";
  color: #fff;
}
.list_disc.type3 li:not(:last-of-type) {
  margin-bottom: 20px;
}
.list_disc li {
  position: relative;
  text-indent: -1em;
  padding-left: 1em;
}
.list_disc li:not(:last-of-type) {
  margin-bottom: 10px;
}
.list_disc li:before {
  content: "●";
  color: #aa7851;
  font-size: 15px;
}

.list2 {
  display: flex;
  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 > 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;
  }
}

.list3 {
  display: flex;
  flex-wrap: wrap;
}
.list3.type1 > li,
.list3.type1 .child {
  background-color: #fff;
  padding: 10px;
}
.list3 > li,
.list3 .child {
  width: 31%;
  position: relative;
  margin-right: 3.495%;
}
.list3 > li:nth-child(3n),
.list3 .child:nth-child(3n) {
  margin-right: 0;
}
.list3 > li:not(:nth-last-child(-n + 3)),
.list3 .child:not(:nth-last-child(-n + 3)) {
  margin-bottom: 30px;
}
@media all and (max-width: 639px) {
  .list3 > li,
  .list3 .child {
    width: 95%;
    margin: 0 auto 20px;
  }
  .list3 > li:nth-child(3n),
  .list3 .child:nth-child(3n) {
    margin-right: auto;
  }
  .list3 > li:last-child,
  .list3 .child:last-child {
    margin-bottom: 0;
  }
}
.list3 > li figure,
.list3 .child figure {
  width: 100%;
  height: 200px;
  margin-bottom: 20px;
}
.list3 > li figure img,
.list3 .child figure img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.list4 {
  display: flex;
  flex-wrap: wrap;
  margin-left: -2%;
  margin-top: -30px;
}
.list4.type1 {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
  justify-content: center;
}
.list4.type1 li {
  padding: 15px;
  background: rgba(232, 220, 212, 0.2);
  border-radius: 10px;
  display: block;
  transition: all 0.2s ease-in;
}
.list4.type1 li a {
  display: block;
}
.list4.type1 li a:hover {
  position: relative;
  transform: translate(0, 10px);
}
.list4.type1 li img {
  width: 60px;
  margin: 0 auto 10px;
}
@media all and (max-width: 639px) {
  .list4.type1 > li {
    width: 48%;
  }
  .list4.type1 > li img {
    width: 50px;
  }
}
.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;
  }
}

.daily-dl {
  position: relative;
}
.daily-dl .inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
  position: relative;
}
.daily-dl .inner:before {
  position: absolute;
  content: "";
  height: 125%;
  width: 8px;
  top: 25px;
  left: 36px;
  background: #e8dcd4;
}
.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 {
  position: relative;
  width: 80px;
  height: 80px;
  line-height: 80px;
  background: #e8dcd4;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  font-size: 1.4rem;
  z-index: 4;
  font-family: "Roboto", sans-serif;
  font-weight: 900;
}
.daily-dl .inner dt.line2 {
  padding-top: 20px;
  line-height: 1;
}
.daily-dl .inner dt.big {
  font-size: 3rem;
}
@media all and (max-width: 639px) {
  .daily-dl .inner dt {
    font-size: 1.2rem;
  }
  .daily-dl .inner dt.big {
    font-size: 2rem;
  }
}
.daily-dl .inner dd {
  flex: 1;
  position: relative;
  font-weight: bold;
  background: #fff;
  left: -10px;
  margin-top: 10px;
  padding: 15px 10px 15px 25px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 3px;
  color: #434343;
}
.daily-dl .inner dd table th,
.daily-dl .inner dd table td {
  font-weight: 500;
}
.daily-dl .inner dd table th {
  padding-right: 1em;
}
@media all and (max-width: 639px) {
  .daily-dl .inner dd {
    margin-top: 10px;
  }
}

.faq-dl .faq-inner {
  position: relative;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 60px;
  box-shadow: rgba(17, 12, 46, 0.05) 0px 48px 100px 0px;
  padding-left: 30px;
}
.faq-dl .faq-inner:not(:last-of-type) {
  margin-bottom: 20px;
}
.faq-dl .faq-inner dt,
.faq-dl .faq-inner dd {
  position: relative;
  font-size: 1.6rem;
}
@media all and (max-width: 639px) {
  .faq-dl .faq-inner dt,
  .faq-dl .faq-inner dd {
    font-size: 1.3rem;
  }
}
.faq-dl .faq-inner dt:before,
.faq-dl .faq-inner dd:before {
  position: absolute;
  content: "";
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Josefin Sans", sans-serif;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.faq-dl .faq-inner dt {
  font-weight: 600;
  padding: 20px 10px;
  padding-left: 55px;
  cursor: pointer;
  z-index: 2;
}
@media all and (max-width: 639px) {
  .faq-dl .faq-inner dt {
    padding-left: 45px;
  }
}
.faq-dl .faq-inner dt:before {
  content: "Q.";
  color: #736357;
  font-size: 3rem;
}
@media all and (max-width: 639px) {
  .faq-dl .faq-inner dt:before {
    font-size: 2rem;
  }
}
.faq-dl .faq-inner dt span {
  position: relative;
}
.faq-dl .faq-inner dt span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 10px;
  background-image: linear-gradient(to right, #aa7851, #736357);
  opacity: 0.5;
  z-index: -1;
}
@media all and (max-width: 639px) {
  .faq-dl .faq-inner dt span::after {
    display: none;
  }
}
@media all and (max-width: 639px) {
  .faq-dl .faq-inner dt:hover span {
    color: #aa7851;
  }
}
.faq-dl .faq-inner dd {
  display: none;
  padding: 20px;
  padding-left: 55px;
}
.faq-dl .faq-inner dd:before {
  content: "A.";
  color: #aa7851;
  font-size: 3rem;
}
@media all and (max-width: 639px) {
  .faq-dl .faq-inner dd:before {
    font-size: 2rem;
  }
}

.flow-list {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  gap: 20px;
}
.flow-list li {
  width: calc((100% - 40px) / 3);
  padding: 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  background: #fefefe;
  box-shadow: 0 0 15px rgba(86, 77, 72, 0.05);
  border-radius: 5px;
}
.flow-list li.type100 {
  flex-basis: 100%;
  margin-right: 0;
}
.flow-list li .flow-num {
  color: #aa7851;
  font-size: 3.5rem;
  align-self: center;
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  border-right: 2px dashed #e8dcd4;
  padding-right: 20px;
}
.flow-list li .flow-num span {
  font-size: 1.4rem;
  display: block;
  text-align: center;
}
.flow-list li .flow-title {
  font-weight: 600;
  font-size: 1.8rem;
  letter-spacing: 0.2rem;
  padding-left: 20px;
}
@media all and (max-width: 1367px) {
  .flow-list li {
    width: calc((100% - 20px) / 2);
  }
}
@media all and (max-width: 896px) {
  .flow-list li .flow-num {
    font-size: 2.5rem;
  }
  .flow-list li .flow-num span {
    font-size: 1.1rem;
  }
}
@media all and (max-width: 639px) {
  .flow-list {
    gap: 10px;
  }
  .flow-list li {
    width: 100%;
    padding: 10px 20px;
  }
  .flow-list li .flow-title {
    font-size: 1.4rem;
  }
}

.flow-list2 {
  position: relative;
  margin: 0 auto;
}
.flow-list2 .inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 5px;
  position: relative;
}
.flow-list2 .inner:before {
  position: absolute;
  content: "";
  height: 125%;
  width: 8px;
  top: 25px;
  left: 30px;
  background: #e8dcd4;
}
.flow-list2 .inner:last-child:before {
  display: none;
}
@media all and (max-width: 639px) {
  .flow-list2 .inner {
    width: 100%;
    margin: 0 auto 20px;
  }
  .flow-list2 .inner:before {
    width: 8px;
    height: 130%;
    left: 30px;
    top: 15px;
  }
}
.flow-list2 .inner dt {
  position: relative;
  width: 65px;
  height: 65px;
  background: #e8dcd4;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: "Josefin Sans", sans-serif;
}
.flow-list2 .inner dt.big {
  font-size: 2rem;
}
.flow-list2 .inner dt span {
  font-size: 1.6rem;
  display: block;
  line-height: 1.2;
}
.flow-list2 .inner dt span.num {
  font-size: 3rem;
}
@media all and (max-width: 639px) {
  .flow-list2 .inner dt {
    font-size: 1.2rem;
  }
  .flow-list2 .inner dt.big {
    font-size: 2rem;
  }
}
.flow-list2 .inner dd {
  flex: 1;
  position: relative;
  background: #fff;
  left: -10px;
  margin-top: 10px;
  padding: 10px 30px 10px 25px;
  z-index: 2;
  color: #434343;
  border-radius: 3px;
}
.flow-list2 .inner dd table th,
.flow-list2 .inner dd table td {
  font-weight: 500;
}
.flow-list2 .inner dd table th {
  padding-right: 1em;
}
@media all and (max-width: 639px) {
  .flow-list2 .inner dd {
    margin-top: 10px;
  }
}
@media all and (max-width: 639px) {
  .flow-list2 {
    width: 100%;
  }
  .flow-list2 .inner:before {
    height: 110%;
  }
  .flow-list2 .inner dd {
    padding: 15px 15px 15px 20px;
  }
  .flow-list2 .inner dt {
    width: 60px;
    height: 60px;
  }
  .flow-list2 .inner dt span {
    font-size: 1rem;
  }
  .flow-list2 .inner dt span.num {
    font-size: 1.5rem;
  }
}

.price-dl dt {
  background: #f2ece4;
  padding: 14px 20px;
  color: #564d48;
  border-top: 1px solid #e8dcd4;
  border-bottom: 1px solid #e8dcd4;
}
.price-dl dd {
  padding: 20px;
  margin-bottom: 25px;
}

.flow-dl {
  display: flex;
  flex-wrap: wrap;
}
.flow-dl .flow-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 48%;
  margin-right: 4%;
  margin-bottom: 25px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.8);
}
.flow-dl .flow-inner:nth-child(2n) {
  margin-right: 0;
}
@media all and (max-width: 639px) {
  .flow-dl .flow-inner {
    width: 100%;
    margin: 0 auto 25px;
  }
  .flow-dl .flow-inner:nth-child(2n) {
    margin-right: auto;
  }
}
.flow-dl dt {
  color: #aa7851;
  width: 60px;
  text-align: center;
  margin-right: 20px;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding-top: 8px;
}
.flow-dl dt span {
  font-size: 3.5rem;
  display: block;
  line-height: 1;
  color: #e8dcd4;
  font-family: "Roboto", sans-serif;
  font-weight: 900;
}
.flow-dl dd {
  width: calc(100% - 80px);
}
.flow-dl dt:not(:last-child),
.flow-dl dd:not(:last-child) {
  margin-bottom: 20px;
}
@media all and (max-width: 639px) {
  .flow-dl dt {
    font-size: 1.3rem;
  }
  .flow-dl dt span {
    font-size: 2.2rem;
  }
}

.column2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.column2.tp {
  align-items: flex-start;
}
.column2.bottom {
  align-items: flex-end;
}
.column2 .child {
  width: 48%;
}
.column2 .child2 {
  width: 40%;
}
.column2 .child3 {
  width: 58%;
}
.column2 .child4 {
  width: 30%;
}
.column2 .child5 {
  width: 68%;
}
.column2 .child6 {
  width: 25%;
}
.column2.type1 {
  width: 95%;
  margin: auto;
}
@media all and (max-width: 896px) {
  .column2.type1 {
    flex-direction: column;
  }
  .column2.type1 .child {
    width: 100%;
  }
  .column2.type1 .child.bm20 {
    margin-bottom: 20px;
  }
  .column2.type1 .child.column2-img {
    order: -1;
    margin-bottom: 30px;
  }
}
@media all and (max-width: 896px) {
  .column2 {
    flex-direction: column;
    gap: 20px;
  }
  .column2.reverse {
    flex-direction: column-reverse;
  }
  .column2 .child,
  .column2 .child2,
  .column2 .child3,
  .column2 .child4,
  .column2 .child5,
  .column2 .child6 {
    width: 100%;
  }
  .column2 .child.bm20,
  .column2 .child2.bm20,
  .column2 .child3.bm20,
  .column2 .child4.bm20,
  .column2 .child5.bm20,
  .column2 .child6.bm20 {
    margin-bottom: 20px;
  }
  .column2 .child.column2-img,
  .column2 .child2.column2-img,
  .column2 .child3.column2-img,
  .column2 .child4.column2-img,
  .column2 .child5.column2-img,
  .column2 .child6.column2-img {
    order: -1;
    margin-bottom: 30px;
  }
}

.column3 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.column3 .child1 {
  width: 180px;
}
.column3 .child2 {
  width: 300px;
}
.column3 .child3 {
  width: calc(100% / 3);
}
@media all and (max-width: 896px) {
  .column3 .child1,
  .column3 .child2 {
    width: 48%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .column3 .child3 {
    margin-top: 15px;
    width: 100%;
  }
}
@media all and (max-width: 639px) {
  .column3 {
    flex-direction: column;
  }
  .column3 .child1,
  .column3 .child2,
  .column3 .child3 {
    width: 100%;
  }
  .column3 .child2 {
    margin-top: 15px;
  }
}

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

#main .blog-wrap > li,
.news-right .blog-wrap > li {
  width: 32%;
}
@media all and (max-width: 1367px) {
  #main .blog-wrap > li,
  .news-right .blog-wrap > li {
    width: 49%;
  }
}
@media all and (max-width: 639px) {
  #main .blog-wrap > li,
  .news-right .blog-wrap > li {
    width: 90%;
  }
}

.blog-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 80px;
}
.blog-wrap * {
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.blog-wrap > li {
  width: calc((100% - 80px) / 3);
  position: relative;
  background: rgba(170, 120, 81, 0.2);
  padding: 4rem 2em 1.5em;
  border-radius: 20px;
}
@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;
  }
}
@media all and (max-width: 639px) {
  .blog-wrap {
    margin-top: 40px;
  }
  .blog-wrap > li {
    padding: 2rem 1em 0.5em;
  }
}

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

.blog-detail {
  padding-top: 10px;
}

.blog-detail-upper {
  position: absolute;
  top: -1em;
  right: 0.5em;
  z-index: 2;
  color: #434343;
  font-size: 12px;
}

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

.blog-date {
  line-height: 1.3;
  text-align: center;
  display: inline-block;
  color: #aa7851;
  font-size: 3rem;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  font-weight: 700;
}
@media all and (max-width: 639px) {
  .blog-date {
    font-size: 2rem;
  }
}

.blog-title {
  font-weight: 700;
  line-height: 1.3;
  margin: 10px 0;
  color: #434343;
}

.blog-txt {
  line-height: 1.5;
  color: #aa7851;
  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: #aa7851;
  padding: 4px 5px;
  background: #434343;
  font-size: 12px;
}

.blog_new {
  margin-bottom: 30px;
}
.blog_new a {
  display: flex;
  justify-content: space-between;
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  padding: 5px 0;
}
.blog_new a .image {
  width: 35%;
  height: 74px;
  overflow: hidden;
}
.blog_new a .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: "object-fit: cover;";
}
.blog_new a .detail {
  width: 60%;
}
.blog_new a .detail .entry_title {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #564d48;
  font-size: 1.3rem;
}
.blog_new a .date_new {
  font-size: 1.2rem;
  color: #aa7851;
}
.blog_new a .date_new:before {
  font-family: "Font Awesome 5 Free";
  content: "\f017";
  font-weight: 900;
  margin-right: 5px;
}
@media all and (max-width: 639px) {
  .blog_new a .detail {
    font-size: 1.2rem;
  }
  .blog_new a .date_new {
    font-size: 1.1rem;
  }
}

.category_nav li:not(:last-child) {
  margin-bottom: 5px;
}
.category_nav li a {
  display: block;
  padding: 10px;
  font-size: 13px;
  text-align: center;
  background: #f4f4f4;
  color: #564d48;
}
.category_nav li a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0a9";
  font-weight: 900;
  margin-right: 5px;
  color: #e8dcd4;
}
.category_nav li a:hover {
  opacity: 0.5;
}
.category_nav li:last-child a {
  border-bottom: none;
}

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

.price {
  color: #e8dcd4;
  font-size: 1.2em;
}
.price span {
  display: block;
  font-size: 1.4rem;
  color: #564d48;
  letter-spacing: 0;
}
@media all and (max-width: 639px) {
  .price {
    font-size: 1.5rem;
  }
  .price span {
    font-size: 13px;
  }
}

.img-y {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.img-y img {
  border-radius: 20px;
}

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

.b_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 120px;
  border: 10px solid #fff;
  aspect-ratio: 1/1;
}
@media all and (max-width: 896px) {
  .b_img img {
    aspect-ratio: initial;
    border-radius: 60px;
  }
}
@media all and (max-width: 639px) {
  .b_img img {
    border-radius: 20px;
    border: 5px solid #fff;
  }
}

.img-flex {
  display: flex;
}

.img-100 {
  display: flex;
  gap: 1%;
}
.img-100 img {
  border-radius: 20px;
  object-fit: cover;
}
.img-100 .img1 {
  width: 30%;
}
.img-100 .img2 {
  width: 69%;
}

.b-txt {
  border-bottom: 2px dashed rgba(86, 77, 72, 0.3);
  padding-bottom: 0.2em;
  line-height: 2.2;
}

.img-r {
  border-radius: 10px;
  aspect-ratio: 1/1;
  object-fit: cover;
}

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

.color1 {
  color: #aa7851;
}

.color2 {
  color: #e8dcd4;
}

.color3 {
  color: #434343;
}

.relative {
  position: relative;
}
.relative.type1 {
  z-index: 5;
}

.bigger {
  font-size: 1.3em;
  line-height: 2;
}
@media all and (max-width: 639px) {
  .bigger {
    line-height: 2;
  }
}

.smaller {
  font-size: 0.8em;
  letter-spacing: 0;
}

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

.telbnr {
  margin: 0 auto;
  padding-top: 25px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.telbnr li {
  text-align: center;
  line-height: 1.4;
  width: 40%;
}
.telbnr li a {
  margin-top: 20px;
  display: block;
  font-size: 3rem;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #564d48;
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
  border-radius: 200px;
  white-space: nowrap;
  box-shadow: rgba(17, 12, 46, 0.05) 0px 48px 100px 0px;
}
.telbnr li a .mn {
  font-weight: 600;
  color: #564d48;
  padding: 5px 20px;
  border-radius: 10px;
  display: block;
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.telbnr li a i {
  padding-right: 15px;
}
.telbnr li a .icon {
  display: block;
  text-align: center;
  margin-bottom: 20px;
}
.telbnr li a .icon img {
  max-width: 40px;
}
.telbnr li a:hover {
  background: rgba(86, 77, 72, 0.1);
}
@media all and (max-width: 1100px) {
  .telbnr li a {
    font-size: 2.5rem;
  }
}
@media all and (max-width: 896px) {
  .telbnr li {
    width: 100%;
  }
}
@media all and (max-width: 639px) {
  .telbnr {
    max-width: 100%;
  }
  .telbnr li {
    width: 100%;
  }
  .telbnr li:last-of-type {
    margin-left: auto;
  }
  .telbnr li a {
    font-size: 2rem;
    margin-top: 8px;
    border-radius: 10px;
    padding: 10px;
  }
  .telbnr li a .mn {
    border-radius: 5px;
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  .telbnr li a .icon {
    margin-bottom: 10px;
  }
  .telbnr li a .icon img {
    max-width: 50px;
  }
}

.telbnr-ttl {
  font-weight: 500;
  font-size: 1.8rem;
  color: #564d48;
  margin-top: -25px;
}
.telbnr-ttl span {
  font-weight: 600;
  background: #aa7851;
  color: #fff;
  padding: 2px 15px;
  border-radius: 5px;
}
@media all and (max-width: 639px) {
  .telbnr-ttl {
    font-size: 1.4rem;
  }
}

.shadow {
  box-shadow: 0 0 10px rgba(86, 77, 72, 0.1);
}

.note {
  padding: 2em;
  margin-top: 10px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
}
@media all and (max-width: 639px) {
  .note {
    font-size: 1.15rem;
  }
}
.note.type1 {
  background: #f4efe9;
}

.name {
  width: 180px;
  position: relative;
  z-index: 2;
  margin-bottom: 20px;
  background: #fff;
  color: #564d48;
  font-weight: 600;
  padding: 15px 6px;
  line-height: 1.5;
  text-align: left;
}
.name .ja {
  font-size: 2.5rem;
}
.name .eng {
  white-space: nowrap;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  font-size: 1.3rem;
}
.name .small {
  font-size: 1.3rem;
  font-family: "Shippori Mincho", "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 900;
  letter-spacing: 0.2em;
}
.name .small2 {
  font-size: 0.7em;
  font-family: "Zen Maru Gothic", "YakuHanJP", "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  letter-spacing: 0.1em;
}

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

/* breadcrumb
----------------------------------*/
.breadcrumb {
  max-width: 1200px;
  margin: 20px auto 20px;
  font-size: 1.2rem;
  text-align: center;
}
.breadcrumb li {
  display: inline;
  color: rgba(86, 77, 72, 0.5);
}
.breadcrumb li a {
  color: #564d48;
}
.breadcrumb li + li:before {
  margin: 0 10px;
  content: ">";
}
@media all and (max-width: 639px) {
  .breadcrumb {
    font-size: 12px;
  }
}

/* form
----------------------------------*/
.form-contents {
  width: 100% !important;
  height: auto !important;
  padding: 0 !important;
  border-radius: 15px 15px 0 0 !important;
  background: transparent !important;
  color: #434343;
}
.form-contents .form-thanks-msg {
  background: #fefefe !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
.form-contents .form-thanks-msg p {
  color: #434343 !important;
}
.form-contents .form-thanks-msg .back-home-btn a {
  color: #e8dcd4 !important;
  border: 2px solid #e8dcd4 !important;
}
.form-contents .form-thanks-msg .back-home-btn a:hover {
  background: #e8dcd4 !important;
  color: #fff !important;
}
.form-contents .required::before {
  background: transparent !important;
  padding: 5px 10px !important;
  content: "*" !important;
  color: #e8dcd4 !important;
  font-size: 1.8rem !important;
}
.form-contents .textarea {
  background-color: #fefefe !important;
  border: none !important;
  padding: 25px 15px !important;
  border-radius: 5px !important;
}
.form-contents input[type="text"],
.form-contents textarea {
  font-size: 16px;
}
.form-contents input[type="select"],
.form-contents .textarea-serect,
.form-contents .textarea-datetime {
  border-radius: 5px !important;
}
.form-contents .submit-btn {
  background-color: #fff !important;
  border: none !important;
  color: #564d48 !important;
  border-radius: 30px !important;
  position: relative !important;
  border: 1px solid #564d48 !important;
}
.form-contents .submit-btn::before {
  display: none !important;
}
.form-contents .submit-btn:hover {
  background: #564d48 !important;
  color: #fff !important;
}
.form-contents .custom-area p {
  padding: 10px 0;
}
.form-contents dl dd:not(.pattern-exclusion) {
  border-bottom: none !important;
  padding-bottom: 0 !important;
}

@media all and (max-width: 639px) {
  .form-contents {
    padding: 0 10px !important;
  }
  .form-contents dl {
    margin: 10px 0 !important;
  }
  .form-contents dl dt {
    float: none !important;
    padding-top: 15px !important;
  }
  .form-contents dl dd {
    padding-left: 0 !important;
    padding-bottom: 15px !important;
    padding-top: 10px !important;
    line-height: 20px !important;
  }
  .form-contents .submit-btn {
    width: 250px !important;
  }
}
.policy {
  padding: 30px;
  background: #fdfdfc;
}

/* accordion
----------------------------------*/
.accordion {
  border: 1px solid #ccc;
}
.accordion dt,
.accordion dd {
  position: relative;
  padding: 1em;
}
.accordion dt {
  cursor: pointer;
  font-size: 1.7rem;
  font-family: "Zen Maru Gothic", "YakuHanJP", "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #434343;
}
.accordion dt:after {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f067";
  font-weight: 900;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 1.7rem;
}
.accordion dt.on:after {
  font-family: "Font Awesome 5 Free";
  content: "\f068";
  font-weight: 900;
}
.accordion dd {
  display: none;
  padding: 25px;
  background: rgba(255, 255, 255, 0.1);
  color: #434343;
}
@media all and (max-width: 639px) {
  .accordion dt {
    font-size: 1.3rem;
  }
  .accordion dd {
    padding: 15px;
  }
}

/* Gallery
----------------------------------*/
.gallery {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.gallery.p_none li p {
  display: none;
}
.gallery.col5 li {
  width: 19.2%;
  margin: 0 1% 1% 0;
}
.gallery.col5 li:nth-child(5n) {
  margin-right: 0;
}
.gallery.col5 li a {
  height: 150px;
}
@media all and (max-width: 639px) {
  .gallery.col5 li {
    width: 49%;
    margin-right: 2%;
    margin-bottom: 1%;
  }
  .gallery.col5 li a {
    height: 100px;
  }
  .gallery.col5 li:nth-child(2n) {
    margin-right: 0;
  }
}
.gallery.col4 li {
  width: 24%;
  margin: 0 1.3333333333% 1% 0;
}
.gallery.col4 li:nth-child(4n) {
  margin-right: 0;
}
.gallery.col4 li a {
  height: 250px;
}
@media all and (max-width: 639px) {
  .gallery.col4 li {
    width: 49%;
    margin-right: 2%;
    margin-bottom: 1%;
  }
  .gallery.col4 li a {
    height: 100px;
  }
  .gallery.col4 li:nth-child(2n) {
    margin-right: 0;
  }
}
.gallery.col3 li {
  width: 32%;
  margin: 0 1% 1% 0;
}
.gallery.col3 li:nth-child(3n) {
  margin-right: 0;
}
@media all and (max-width: 639px) {
  .gallery.col3 li {
    width: 49%;
    margin-right: 2%;
    margin-bottom: 1%;
  }
  .gallery.col3 li:nth-child(3n) {
    margin-right: 2%;
  }
  .gallery.col3 li:nth-child(2n) {
    margin-right: 0;
  }
}
.gallery li a {
  display: block;
  text-align: center;
  padding: 0px;
  height: 400px;
}
.gallery li a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: "object-fit: cover;";
  border-radius: 10px;
}
@media all and (max-width: 639px) {
  .gallery li a {
    height: 100px;
  }
}
.gallery li p {
  font-size: 90%;
  margin: 3px 0 6px;
  text-align: center;
}
.gallery li .g-cap {
  text-align: center;
  font-size: 90%;
  margin: 2px 0 6px;
}

.slide_list,
.slide_list2 {
  gap: 10px;
  text-align: center;
}
.slide_list img,
.slide_list2 img {
  height: 400px;
  width: 400px;
  object-fit: cover;
  filter: grayscale(0.4);
  filter: brightness(110%);
  transition:
    filter 0.2s ease-in,
    -webkit-filter 0.2s ease-in;
  border-radius: 10px;
  position: relative;
}
.slide_list img:hover,
.slide_list2 img:hover {
  filter: grayscale(0);
}
@media all and (max-width: 1100px) {
  .slide_list img,
  .slide_list2 img {
    height: 300px;
    width: 300px;
  }
}
@media all and (max-width: 639px) {
  .slide_list img,
  .slide_list2 img {
    height: 150px;
    width: 180px;
  }
}

/* anker link
----------------------------------*/
/* slick
----------------------------------*/
#slider-wrap {
  position: relative;
  margin: 10px auto;
}

.slider-item {
  width: 100%;
  max-width: 700px;
  border: 2px solid #e8dcd4;
  padding: 25px !important;
  background: #fff;
}

.slide-arrow {
  position: absolute;
  top: 50%;
  z-index: 200;
  width: 20px;
  height: 20px;
  top: 50%;
  margin-top: -10px;
  transform: rotate(45deg);
  cursor: pointer;
}
@media all and (max-width: 639px) {
  .slide-arrow {
    width: 15px;
    height: 15px;
    margin-top: -7px;
  }
}
.slide-arrow.prev-arrow {
  left: 50%;
  margin-left: -370px;
  border-bottom: solid 2px;
  border-left: solid 2px;
  border-color: #aa7851;
}
@media all and (max-width: 1100px) {
  .slide-arrow.prev-arrow {
    left: 10px;
    margin-left: 0;
  }
}
@media all and (max-width: 639px) {
  .slide-arrow.prev-arrow {
    border-color: #e8dcd4;
  }
}
.slide-arrow.next-arrow {
  right: 50%;
  margin-right: -370px;
  border-top: solid 2px;
  border-right: solid 2px;
  border-color: #aa7851;
}
@media all and (max-width: 1100px) {
  .slide-arrow.next-arrow {
    right: 10px;
    margin-right: 0;
  }
}
@media all and (max-width: 639px) {
  .slide-arrow.next-arrow {
    border-color: #e8dcd4;
  }
} /*# sourceMappingURL=basis.css.map */

.member-ttl {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.member-ttl span {
  font-size: 1.5rem;
}
@media all and (max-width: 896px) {
  .member-ttl {
    font-size: 1.6rem;
  }
  .member-ttl span {
    font-size: 1.2rem;
  }
}

.kiritori {
  border: dotted 1px #eee;
}
