@charset "UTF-8";
/* アニメーションベンダープレフィックス込み指定 */
/* アニメーションベンダープレフィックス込み指定 */
body {
  color: #131313;
  font-family: "Noto Sans JP", sans-serif, "Cinzel", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-size: 1.5rem;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  font-weight: 600;
  position: relative;
  letter-spacing: 0.1em;
  background-color: #ffffff;
}

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

#wrapper {
  overflow-x: hidden;
}
#wrapper #l-main {
  width: 100%;
  position: relative;
  background-color: #FBFAFA;
  z-index: 1;
  padding-bottom: 10px;
}
@media all and (max-width: 639px) {
  #wrapper {
    overflow: hidden;
  }
  #wrapper.contents {
    overflow: hidden;
  }
}

.pagearea {
  background-color: #fff;
  border-top: 6px solid #ffffff;
}
.pagearea.border-none {
  border-top: none;
}
.pagearea.gray {
  border-top: 6px solid #e0e0e0;
  background-color: #ffffff;
}
.pagearea.gray2 {
  border-top: 6px solid #e0e0e0;
  background-color: #f5f5f5;
}
.pagearea.bg-green {
  position: relative;
}
.pagearea.bg-green:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/noise.png) repeat;
  background-size: 100px 100px;
  left: 0;
  top: 0;
}
.pagearea.bg-green2 {
  position: relative;
}
.pagearea.bg-green2:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/noise2.png) repeat;
  background-size: 100px 100px;
  left: 0;
  top: 0;
}
.pagearea.bottom {
  border-bottom: 6px solid #e0e0e0;
}
.pagearea .inner {
  padding: 60px;
  width: calc(100% - 50px);
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
@media all and (max-width: 1367px) {
  .pagearea {
    padding: 0 20px;
    margin: 0 auto;
  }
}
@media all and (max-width: 896px) {
  .pagearea .inner {
    padding: 50px 0px;
  }
}
@media all and (max-width: 639px) {
  .pagearea {
    width: 100%;
    margin: 0 auto;
    padding: 50px 0 0;
  }
  .pagearea .inner {
    padding: 30px 0;
    margin: 0 auto;
    width: calc(100% - 30px);
  }
  .pagearea.border-none {
    padding: 0px 0 0;
    border-top: none;
  }
}

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

.bold {
  font-weight: 600;
}

h2,
h3 {
  line-height: 1.4;
}
h2 .ja,
h3 .ja {
  font-weight: 600;
}

.u-txt {
  letter-spacing: 0.05rem;
}

.mincho {
  font-family: "Shippori Mincho", serif, "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
}

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

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

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

.loader {
  align-items: center;
  background: #fff;
  display: flex;
  justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9999;
  perspective: 100px;
  width: 100%;
  height: 100vh;
}
.loader .loader-logo {
  position: absolute;
  top: 42%;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
}
@media all and (max-width: 639px) {
  .loader .loader-logo {
    width: 60%;
  }
}
.loader.loader-off {
  -webkit-animation: textoff 1.2s forwards;
          animation: textoff 1.2s forwards;
}

@-webkit-keyframes textoff {
  0% {
    opacity: 1;
    display: block;
  }
  90% {
    opacity: 0;
    display: block;
  }
  100% {
    opacity: 0;
    display: none;
    z-index: -1;
  }
}

@keyframes textoff {
  0% {
    opacity: 1;
    display: block;
  }
  90% {
    opacity: 0;
    display: block;
  }
  100% {
    opacity: 0;
    display: none;
    z-index: -1;
  }
}
/* header
----------------------------------*/
#l-header {
  position: relative;
  z-index: 200;
  width: 100%;
  background-color: #fff;
}
#l-header.is-fixed {
  top: 0;
  margin-top: 0;
  position: fixed;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
}
#l-header.is-fixed .inner #logo {
  margin: 0px auto 20px;
  position: absolute;
  left: 50px;
  right: auto;
  top: 20px;
  width: 200px;
}
#l-header.is-fixed .inner #logo .logo1 {
  display: none;
}
#l-header.is-fixed .inner #logo .logo2 {
  display: block;
}
#l-header.is-fixed .inner #logo:before {
  display: none;
}
#l-header.is-fixed .inner #header_nav {
  margin: 0 auto;
}
#l-header.is-fixed .inner #header_nav ul {
  margin: 0 auto;
}
#l-header.is-fixed .inner #header_nav ul li {
  text-shadow: none;
}
#l-header.is-fixed .inner #header_nav ul li a {
  padding-bottom: 0px;
}
@media all and (max-width: 1367px) {
  #l-header.is-fixed .header_contact {
    position: absolute;
    right: 30px;
    top: -30px;
  }
  #l-header.is-fixed .header_contact .head-btn {
    width: 40px;
  }
}
@media all and (max-width: 1100px) {
  #l-header.is-fixed .inner #logo {
    position: initial;
    margin: 0 auto;
    padding: 0px 0 10px;
    width: 180px;
  }
  #l-header.is-fixed .header_contact {
    top: -30px;
  }
  #l-header.is-fixed .header_contact .head-btn {
    width: 40%;
  }
  #l-header.is-fixed #header_nav {
    padding: 0;
    margin: 10px auto 0;
  }
  #l-header.is-fixed #header_nav ul {
    padding: 0;
  }
  #l-header.is-fixed #header_nav ul li a {
    padding-bottom: 0px;
  }
}
@media all and (max-width: 896px) {
  #l-header.is-fixed .header_contact {
    display: none;
  }
}
@media all and (max-width: 639px) {
  #l-header.is-fixed {
    margin-top: 0px;
  }
  #l-header.is-fixed:before {
    display: none;
  }
  #l-header.is-fixed .head-insta {
    top: 7px;
  }
}
@media all and (max-width: 639px) {
  #l-header {
    position: initial;
    margin-top: 40px;
  }
}
#l-header .inner {
  margin: 0 auto;
  padding: 10px 20px;
  position: relative;
  align-items: center;
  z-index: 1;
}
@media all and (max-width: 1367px) {
  #l-header .inner {
    display: block;
  }
}
@media all and (max-width: 896px) {
  #l-header .inner {
    min-width: initial;
  }
}
#l-header .inner #logo {
  position: absolute;
  left: 0;
  right: 0;
  margin: -100px auto 20px;
  z-index: 100;
  width: 270px;
  transition: all 0.2s ease-in;
}
#l-header .inner #logo:before {
  position: absolute;
  content: "";
  width: 354px;
  height: 132px;
  background: url(../img/logo-bg.png) no-repeat;
  left: -15%;
  right: 0;
  margin: 0 auto;
  text-align: center;
  background-size: cover;
  top: -38px;
  z-index: -1;
}
#l-header .inner #logo .logo1 {
  display: block;
}
#l-header .inner #logo .logo2 {
  display: none;
}
@media all and (max-width: 1100px) {
  #l-header .inner #logo {
    width: 250px;
  }
  #l-header .inner #logo:before {
    width: 314px;
    height: 118px;
    left: -15%;
    top: -28px;
  }
}
@media all and (max-width: 896px) {
  #l-header .inner #logo {
    width: 250px;
  }
  #l-header .inner #logo:before {
    width: 384px;
    height: 138px;
    left: 0;
    top: -68px;
  }
}

.header_contact {
  position: fixed;
  bottom: 100px;
  top: 0;
  right: 0;
  z-index: 200;
}

.head-btn-area {
  position: absolute;
  color: #333;
  width: 400px;
  right: 0;
  top: 70px;
  padding: 40px 40px;
  background-color: #fff;
  font-family: "Shippori Mincho", serif, "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
}
.head-btn-area.open {
  display: block !important;
  -webkit-animation: UpAnime 0.5s forwards;
          animation: UpAnime 0.5s forwards;
}
.head-btn-area .btn-box {
  margin-bottom: 20px;
}
.head-btn-area .btn-box:last-child {
  margin-bottom: 0;
}
.head-btn-area .title {
  font-size: 2rem;
  border-bottom: 1px solid #ddd;
  padding-bottom: 5px;
  margin-bottom: 5px;
}
.head-btn-area .adoress-box {
  display: flex;
  flex-wrap: wrap;
}
.head-btn-area .adoress-box .txt {
  font-size: 1.2rem;
}
.head-btn-area .adoress-box .icon {
  font-size: 1.2rem;
  color: #dd7687;
  margin-left: 5px;
}
.head-btn-area .adoress-box .icon:hover {
  transition: 0.4s;
  opacity: 0.4;
}
.head-btn-area .tel {
  font-size: 1.2rem;
}
.head-btn-area .tel span {
  color: #dd7687;
}
.head-btn-area .tel span:hover {
  transition: 0.4s;
  opacity: 0.4;
}
@media all and (max-width: 639px) {
  .head-btn-area {
    padding: 20px;
    right: 20%;
    width: 300px;
  }
  .head-btn-area .title {
    font-size: 1.3rem;
  }
  .head-btn-area .adoress-box .txt {
    font-size: 1rem;
  }
  .head-btn-area .adoress-box .icon {
    font-size: 1rem;
    margin-left: 10px;
  }
}

.head-btn {
  display: block;
  position: relative;
  padding: 14px 22px 14px 28px;
  font-size: 2rem;
  color: #fff;
  z-index: 1;
}
.head-btn:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgb(221, 125, 25);
  background: linear-gradient(149deg, rgb(221, 125, 25) 0%, rgb(200, 123, 43) 100%);
  z-index: -1;
}
.head-btn:hover, .head-btn:active {
  color: #dd7687;
}
.head-btn:hover:before, .head-btn:active:before {
  transition: 0.4s;
  width: 0;
}
.head-btn:hover:after, .head-btn:active:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: 1px solid #dd7687;
}
@media all and (max-width: 639px) {
  .head-btn {
    padding: 8px 15px 10px 19px;
    font-size: 1.4rem;
  }
}

.head-insta {
  position: absolute;
  top: 7px;
  right: 3%;
  z-index: 1;
}
.head-insta a:hover {
  opacity: 0.6;
  transition: 0.4s;
}
@media all and (max-width: 1100px) {
  .head-insta img {
    width: 60px;
  }
}
@media all and (max-width: 639px) {
  .head-insta {
    top: -33px;
  }
  .head-insta img {
    width: 60px;
  }
}

#header_nav {
  position: relative;
  margin: 10px auto;
  text-align: center;
  z-index: 1;
}
#header_nav ul {
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  max-width: 1000px;
}
#header_nav ul li {
  position: relative;
  flex: 1 0 auto;
  color: #ebebeb;
}
#header_nav ul li a {
  display: block;
  position: relative;
  line-height: 1.5;
  font-size: 1.4rem;
  padding: 10px 14px;
  color: #525252;
  font-family: "Shippori Mincho", serif, "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
}
#header_nav ul li a .eng {
  display: block;
  font-size: 1.1rem;
  font-family: "Share", cursive;
  font-weight: 600;
  text-transform: uppercase;
  color: #dd7687;
  position: relative;
  letter-spacing: 0.1rem;
}
#header_nav ul li a:after {
  position: absolute;
  content: "";
  width: 0;
  height: 2px;
  background: #dd7687;
  left: 0;
  bottom: 0px;
  transition: 0.2s width ease-in;
}
@media all and (max-width: 1100px) {
  #header_nav ul li a:after {
    right: 0;
    text-align: center;
    margin: 0 auto;
  }
}
#header_nav ul li:hover a, #header_nav ul li.active a {
  transition: 0.2s width ease-in;
}
#header_nav ul li:hover a .eng, #header_nav ul li.active a .eng {
  color: #727171;
}
#header_nav ul li .sub-menu {
  display: none;
  border-top: 0;
  display: none;
  margin: 0 auto;
  opacity: 0;
  visibility: hidden;
  width: 280px;
  -webkit-transiton: opacity 0.2s;
  transition: opacity 0.2s;
  z-index: 1;
  position: absolute;
  left: 0;
  top: 40px;
  padding: 20px;
}
#header_nav ul li .sub-menu li {
  width: 100%;
  margin: 0 auto 5px;
  background-color: #dd7687;
  padding: 10px 15px 10px 30px;
  margin-bottom: 4px;
  position: relative;
  transition: 0.8s;
}
#header_nav ul li .sub-menu li:before {
  position: absolute;
  content: "";
  left: 17px;
  top: 15px;
  box-sizing: border-box;
  width: 4px;
  height: 4px;
  border: 4px solid transparent;
  border-left: 4px solid #fff;
}
#header_nav ul li .sub-menu li a {
  display: block;
  font-weight: normal;
  font-size: 1.2rem;
  color: #fff;
  padding: 0;
  text-shadow: none;
}
#header_nav ul li .sub-menu li:hover {
  background-color: rgb(151, 151, 151);
}
#header_nav ul li:hover .sub-menu, #header_nav ul li.active .sub-menu {
  display: flex;
  flex-wrap: wrap;
  opacity: 1;
  visibility: visible;
  transition: 0.8s;
}
#header_nav ul li:hover .header_link, #header_nav ul li.active .header_link {
  transform: scale(1.1);
  position: relative;
}
#header_nav ul li:hover .header_link:before, #header_nav ul li.active .header_link:before {
  position: absolute;
  content: "";
  width: 40px;
  height: 40px;
  left: 0;
  right: 0;
  top: -6px;
  margin: 0 auto;
  border-radius: 50%;
  background-color: rgba(114, 113, 113, 0.4);
  z-index: -1;
}
#header_nav ul li:hover .header_link.type2:before, #header_nav ul li.active .header_link.type2:before {
  background-color: rgba(104, 175, 216, 0.4);
}
#header_nav ul li:hover .header_link.type3:before, #header_nav ul li.active .header_link.type3:before {
  background-color: rgba(230, 196, 5, 0.4);
}
#header_nav ul li:hover .header_link.type4:before, #header_nav ul li.active .header_link.type4:before {
  background-color: rgba(211, 221, 76, 0.4);
}
@media all and (max-width: 1860px) {
  #header_nav ul {
    margin: 0 auto;
  }
}
@media all and (max-width: 1570px) {
  #header_nav ul {
    margin: 0 auto;
    max-width: 780px;
  }
}
@media all and (max-width: 1367px) {
  #header_nav ul li a {
    font-size: 1.5rem;
  }
}
@media all and (max-width: 1100px) {
  #header_nav {
    text-align: center;
    margin: 20px auto 0px;
    width: 100%;
    border-radius: 10px;
  }
  #header_nav ul {
    max-width: 580px;
  }
  #header_nav ul li a {
    font-size: 1.3rem;
  }
  #header_nav ul li a .eng {
    font-size: 1rem;
  }
}
#header_nav.UpMove {
  position: fixed;
  width: 100%;
  -webkit-animation: UpAnime 0.5s forwards;
          animation: UpAnime 0.5s forwards;
}
#header_nav.DownMove {
  position: fixed;
  top: 0;
  margin: 0 auto;
  width: 100%;
  -webkit-animation: DownAnime 0.5s forwards;
          animation: DownAnime 0.5s forwards;
  background-color: white;
  box-shadow: 0px 0px 16px -6px rgba(0, 0, 0, 0.6);
}
#header_nav.DownMove ul {
  width: 100%;
  margin-right: 5%;
}
#header_nav.DownMove ul li a {
  color: #000;
}
#header_nav.DownMove ul li a .eng {
  color: #727171;
}
#header_nav.DownMove ul li:hover a, #header_nav.DownMove ul li.active a {
  color: #fff;
  transition: 0.2s width ease-in;
  background-color: #dd7687;
}
#header_nav.DownMove ul li:hover a .eng, #header_nav.DownMove ul li.active a .eng {
  color: #fff;
}
#header_nav.DownMove ul li:hover .sub-menu a, #header_nav.DownMove ul li.active .sub-menu a {
  background-color: transparent;
  color: #fff;
}
@media all and (max-width: 1367px) {
  #header_nav.DownMove ul {
    margin-right: 1%;
    width: 60%;
  }
  #header_nav.DownMove ul li a {
    font-size: 1.3rem;
  }
}
@media all and (max-width: 1100px) {
  #header_nav.DownMove ul {
    width: 100%;
    max-width: 670px;
  }
}

/* page-top
----------------------------------*/
#page-top {
  position: fixed;
  bottom: 10px;
  right: 7px;
  z-index: 200;
}
#page-top a {
  display: block;
  background: #4d3e3e;
  color: #fff;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 1.2rem;
  text-align: center;
}
#page-top a:hover {
  opacity: 0.6;
}
@media all and (max-width: 896px) {
  #page-top {
    display: none;
  }
}

/* swiper
----------------------------------*/
@-webkit-keyframes UpAnime {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes UpAnime {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes zoom-in {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.12);
  }
}
@keyframes zoom-in {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.12);
  }
}
@-webkit-keyframes slideIn {
  0% {
    transform: translate(-100vw, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes slideIn {
  0% {
    transform: translate(-100vw, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}
@-webkit-keyframes slideIn2 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes slideIn2 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes slideIn3 {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes slideIn3 {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    background: rgba(255, 255, 255, 0.5);
  }
  100% {
    background: rgba(255, 255, 255, 0.9);
  }
}
@keyframes fadeIn {
  0% {
    background: rgba(255, 255, 255, 0.5);
  }
  100% {
    background: rgba(255, 255, 255, 0.9);
  }
}
@-webkit-keyframes bg-anime {
  0% {
    width: 100%;
  }
  100% {
    width: 0%;
  }
}
@keyframes bg-anime {
  0% {
    width: 100%;
  }
  100% {
    width: 0%;
  }
}
.swiper-slide {
  position: relative;
}

.slide-img {
  overflow: hidden;
  width: 100%;
  height: 54vh;
  margin: 0 0 0 auto;
  width: 100%;
  opacity: 0;
  -webkit-animation: slideIn2 2s cubic-bezier(0.7, 0, 0.3, 1) 1.8s forwards;
          animation: slideIn2 2s cubic-bezier(0.7, 0, 0.3, 1) 1.8s forwards;
}
.slide-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media all and (max-width: 896px) {
  .slide-img {
    height: 40vw;
  }
}

.topslide {
  position: relative;
}
@media all and (max-width: 896px) {
  .topslide {
    height: 40vw;
  }
}

#slide-wrap {
  position: relative;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
}
@media all and (max-width: 639px) {
  #slide-wrap {
    display: block;
    height: 100%;
    width: calc(100% - 40px);
    margin-top: 30px;
  }
}

.slide-leftarea {
  background-color: #ddd;
  padding: 100px 0;
  position: relative;
}
@media all and (max-width: 639px) {
  .slide-leftarea {
    padding: 70px 0;
  }
}
.slide-leftarea:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/top-bg.jpg) no-repeat;
  background-size: cover;
  top: 0;
  left: 0;
}

#slideshow {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}
#slideshow:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  background-color: #ebebeb;
  -webkit-animation: bg-anime 3s cubic-bezier(0.7, 0, 0.3, 1) 2s forwards;
          animation: bg-anime 3s cubic-bezier(0.7, 0, 0.3, 1) 2s forwards;
  z-index: 2;
}
@media all and (max-width: 639px) {
  #slideshow {
    margin: 0px auto 0;
  }
}

.slide-txt {
  position: absolute;
  left: 50%;
  top: 47%;
  transform: translate(-50%, -50%);
  width: 40%;
  padding: 30px 25px;
  z-index: 20;
  background-image: linear-gradient(69deg, transparent 0%, rgba(255, 255, 255, 0.6) 20%, #fff 50%, rgba(255, 255, 255, 0.6) 80%, transparent 100%);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  text-align: center;
}
@media all and (max-width: 1100px) {
  .slide-txt {
    width: 55%;
  }
}
@media all and (max-width: 639px) {
  .slide-txt {
    padding: 20px 10px;
    width: 80%;
  }
}
.slide-txt:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 10px;
  left: 10px;
  border: 0.9px solid #fff;
  opacity: 0.7;
}
@media all and (max-width: 639px) {
  .slide-txt:before {
    top: 5px;
    left: 5px;
  }
}

.slide-fixed {
  position: absolute;
  left: 50%;
  bottom: 2%;
  transform: translateX(-50%);
  width: 500px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  z-index: 20;
}
@media all and (max-width: 896px) {
  .slide-fixed {
    width: 50%;
  }
}
.slide-fixed li {
  width: 31%;
}
@media all and (max-width: 639px) {
  .slide-fixed {
    width: 60%;
  }
}

.catch {
  z-index: 50;
  position: absolute;
  margin: 0 auto;
  text-align: center;
  position: absolute;
  width: 30%;
  bottom: 120px;
  left: 0;
  right: 0;
  margin: 0 auto;
  opacity: 0;
  filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.2));
  -webkit-animation: view-zoomin 1s ease-out 3.4s forwards;
          animation: view-zoomin 1s ease-out 3.4s forwards;
}
@media all and (max-width: 1100px) {
  .catch {
    width: 60%;
  }
}
@media all and (max-width: 896px) {
  .catch {
    bottom: 45px;
  }
}
@media all and (max-width: 639px) {
  .catch {
    width: 50%;
    bottom: 0%;
  }
}

@-webkit-keyframes updown-anim {
  0% {
    transform: translateY(110%); /*表示範囲外から*/
  }
  50% {
    transform: translateY(0); /*通常の位置へ*/
  }
  100% {
    transform: translateY(0); /*文字が上に揃うまで待機*/
  }
}

@keyframes updown-anim {
  0% {
    transform: translateY(110%); /*表示範囲外から*/
  }
  50% {
    transform: translateY(0); /*通常の位置へ*/
  }
  100% {
    transform: translateY(0); /*文字が上に揃うまで待機*/
  }
}
.updown span:nth-child(1) {
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}

.updown span:nth-child(2) {
  -webkit-animation-delay: 3.05s;
          animation-delay: 3.05s;
}

.updown span:nth-child(3) {
  -webkit-animation-delay: 3.1s;
          animation-delay: 3.1s;
}

.updown span:nth-child(4) {
  -webkit-animation-delay: 3.15s;
          animation-delay: 3.15s;
}

.updown span:nth-child(5) {
  -webkit-animation-delay: 3.2s;
          animation-delay: 3.2s;
}

.updown span:nth-child(6) {
  -webkit-animation-delay: 3.25s;
          animation-delay: 3.25s;
}

.updown span:nth-child(7) {
  -webkit-animation-delay: 3.3s;
          animation-delay: 3.3s;
}

.updown span:nth-child(8) {
  -webkit-animation-delay: 3.35s;
          animation-delay: 3.35s;
}

.updown span:nth-child(9) {
  -webkit-animation-delay: 3.4s;
          animation-delay: 3.4s;
}

.updown span:nth-child(10) {
  -webkit-animation-delay: 3.45s;
          animation-delay: 3.45s;
}

.updown span:nth-child(11) {
  -webkit-animation-delay: 3.5s;
          animation-delay: 3.5s;
}

.updown span:nth-child(12) {
  -webkit-animation-delay: 3.55s;
          animation-delay: 3.55s;
}

.updown span:nth-child(13) {
  -webkit-animation-delay: 3.6s;
          animation-delay: 3.6s;
}

.updown span:nth-child(14) {
  -webkit-animation-delay: 3.65s;
          animation-delay: 3.65s;
}

.updown span:nth-child(15) {
  -webkit-animation-delay: 3.7s;
          animation-delay: 3.7s;
}

.updown span:nth-child(16) {
  -webkit-animation-delay: 3.75s;
          animation-delay: 3.75s;
}

.updown span:nth-child(17) {
  -webkit-animation-delay: 3.8s;
          animation-delay: 3.8s;
}

.updown span:nth-child(18) {
  -webkit-animation-delay: 3.85s;
          animation-delay: 3.85s;
}

.updown span:nth-child(19) {
  -webkit-animation-delay: 3.9s;
          animation-delay: 3.9s;
}

.updown span:nth-child(20) {
  -webkit-animation-delay: 3.95s;
          animation-delay: 3.95s;
}

.updown span:nth-child(21) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.updown span:nth-child(22) {
  -webkit-animation-delay: 1.05s;
          animation-delay: 1.05s;
}

.updown span:nth-child(23) {
  -webkit-animation-delay: 1.1s;
          animation-delay: 1.1s;
}

.updown span:nth-child(22) {
  -webkit-animation-delay: 1.05s;
          animation-delay: 1.05s;
}

.updown span:nth-child(23) {
  -webkit-animation-delay: 1.1s;
          animation-delay: 1.1s;
}

.updown span:nth-child(24) {
  -webkit-animation-delay: 1.15s;
          animation-delay: 1.15s;
}

.updown span:nth-child(25) {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}

.updown span:nth-child(26) {
  -webkit-animation-delay: 1.25s;
          animation-delay: 1.25s;
}

.updown span:nth-child(27) {
  -webkit-animation-delay: 1.3s;
          animation-delay: 1.3s;
}

.updown span:nth-child(28) {
  -webkit-animation-delay: 1.35s;
          animation-delay: 1.35s;
}

.catch-bg {
  position: absolute;
  left: 3%;
  top: 32%;
  z-index: 1;
  mix-blend-mode: hard-light;
}
@media all and (max-width: 639px) {
  .catch-bg {
    left: -4%;
    top: 53%;
    width: 80%;
  }
}

#scrolldown {
  position: absolute;
  right: 15px;
  bottom: 60px;
  color: #fefefe;
  font-family: "Share", cursive;
  font-weight: 600;
  text-transform: uppercase;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  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;
  -webkit-animation: scroll-point 2.3s ease-out infinite;
          animation: scroll-point 2.3s ease-out infinite;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
@media all and (max-width: 896px) {
  #scrolldown {
    display: none;
  }
}

@-webkit-keyframes scroll-point {
  0% {
    bottom: 0;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  50% {
    top: 180px;
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    top: 210px;
    opacity: 0;
  }
}

@keyframes scroll-point {
  0% {
    bottom: 0;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  50% {
    top: 180px;
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    top: 210px;
    opacity: 0;
  }
}
/* contact_bnr
----------------------------------*/
.contact_bnr > li a {
  display: block;
  position: relative;
  max-width: 320px;
}
@media all and (max-width: 896px) {
  .contact_bnr > li a {
    text-align: center;
    margin: 0 auto 0px;
  }
  .contact_bnr > li:first-of-type {
    margin-right: 0;
  }
}
.contact_bnr > li .bnr_tel {
  white-space: nowrap;
  position: relative;
  color: #dd7687;
  font-family: "Cinzel", serif;
  font-weight: 500;
  font-size: 3.8rem;
  line-height: 1.2;
  text-align: center;
  margin: 0 auto;
}
.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 {
  color: #5e5043;
  text-shadow: 0 0 4px rgba(94, 80, 67, 0.1);
}
@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.2rem;
    text-align: center;
  }
}
.contact_bnr > li .bnr_mobile {
  background: #fefefe;
  color: #dd7687;
}
.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: #6b6b6b;
  font-size: 2rem;
  line-height: 1.2;
  text-align: center;
  margin: 0 auto;
  color: #e9e2d9;
}
.contact_bnr > li .bnr_fax:before {
  font-family: "Font Awesome 5 Free";
  content: "\f1ac";
  font-weight: 900;
  padding-left: 5px;
}
@media all and (max-width: 639px) {
  .contact_bnr > li .bnr_fax {
    font-size: 1.4rem;
  }
}
.contact_bnr > li .bnr_mail {
  background: #dd7687;
  color: #fff;
  text-align: center;
  font-size: 1.7rem;
  font-weight: 600;
  border-radius: 50px;
  line-height: 1.4;
  padding: 15px 8px;
}
.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: "\f073";
  font-weight: 900;
  font-size: 0.8em;
  margin-right: 15px;
}
.contact_bnr > li .bnr_mail:hover {
  background: #dd7687;
  color: #fff;
}
@media all and (max-width: 639px) {
  .contact_bnr > li .bnr_mail {
    font-size: 1.4rem;
  }
}

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

#l-footer {
  font-size: 1.4rem;
  position: relative;
  width: 100%;
  padding: 20px;
}
#l-footer .inner {
  padding: 40px 20px 40px;
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
}
#l-footer .footer-column {
  margin: 0 auto;
  color: #131313;
  position: relative;
  z-index: 2;
  max-width: 540px;
}
#l-footer .footer-txt {
  padding-left: 8px;
}
#l-footer .footer-txt span {
  background: #dd7687;
  padding: 5px 10px;
  font-size: 13px;
  color: #fefefe;
}
@media all and (max-width: 1100px) {
  #l-footer .footer-column {
    justify-content: space-around;
    max-width: 80%;
  }
  #l-footer .footer-column .footer-left {
    font-size: 12px;
    width: 100%;
  }
  #l-footer .footer-column .footer-middle {
    width: 50%;
  }
  #l-footer .footer-column .footer-right {
    width: 100%;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media all and (max-width: 896px) {
  #l-footer .footer-column {
    max-width: 100%;
    display: block;
  }
  #l-footer .footer-column .contact_bnr {
    text-align: center;
  }
}
@media all and (max-width: 639px) {
  #l-footer {
    font-size: 1.2rem;
    padding: 0px 20px 40px;
  }
  #l-footer .inner {
    padding: 0px 0px 0;
  }
  #l-footer .inner .right-inner {
    padding: 8px;
    font-size: 12px;
  }
  #l-footer .footer-txt {
    font-size: 1rem;
  }
  #l-footer .footer-column {
    max-width: 100%;
    display: block;
  }
  #l-footer .footer-column .footer-left,
#l-footer .footer-column .footer-middle {
    width: 100%;
    padding: 40px 20px;
  }
  #l-footer .footer-column .footer-middle {
    margin-top: 25px;
  }
  #l-footer .footer-column .contact_bnr {
    text-align: center;
  }
}

.map-wrap {
  display: flex;
  flex-wrap: wrap;
}
.map-wrap .access-txt {
  width: 25%;
  min-width: 300px;
  background: #f2edde;
}
.map-wrap .access-txt .inner {
  padding: 45px 25px;
}
@media all and (max-width: 639px) {
  .map-wrap .access-txt {
    width: 100%;
  }
  .map-wrap .access-txt .inner {
    padding: 30px 15px;
    text-align: left;
  }
}

.map-big {
  height: 210px;
  position: relative;
  z-index: 3;
}
@media all and (max-width: 639px) {
  .map-big {
    height: 250px;
    flex: 0 1 auto;
    width: 100%;
  }
}

.footer-detail-area {
  margin: 40px auto 40px;
  padding: 40px 40px;
  background-color: #fff;
  font-family: "Shippori Mincho", serif, "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  display: flex;
  flex-wrap: wrap;
}
.footer-detail-area.open {
  display: block !important;
  -webkit-animation: UpAnime 0.5s forwards;
          animation: UpAnime 0.5s forwards;
}
.footer-detail-area .btn-box {
  width: 50%;
  padding: 20px;
  margin-bottom: 20px;
}
.footer-detail-area .btn-box:last-child {
  margin-bottom: 0;
}
.footer-detail-area .title {
  font-size: 2rem;
  border-bottom: 1px solid #ddd;
  padding-bottom: 5px;
  margin-bottom: 5px;
  padding: 5px 0 10px;
}
.footer-detail-area .title span {
  height: 40px;
  display: inline-block;
}
.footer-detail-area .title span img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.footer-detail-area .adoress-box {
  display: flex;
  flex-wrap: wrap;
}
.footer-detail-area .adoress-box .txt {
  font-size: 1.2rem;
}
.footer-detail-area .adoress-box .icon {
  font-size: 1.2rem;
  color: #dd7687;
  margin-left: 5px;
}
.footer-detail-area .adoress-box .icon:hover {
  transition: 0.4s;
  opacity: 0.4;
}
.footer-detail-area .detail {
  font-size: 1.2rem;
  margin: 5px 0;
}
.footer-detail-area .detail span {
  background-color: #e6dfd1;
  padding: 4px 10px;
}
.footer-detail-area .tel {
  font-size: 1.2rem;
}
.footer-detail-area .tel span {
  color: #dd7687;
}
.footer-detail-area .tel span:hover {
  transition: 0.4s;
  opacity: 0.4;
}
@media all and (max-width: 639px) {
  .footer-detail-area {
    margin: 20px auto 0;
    padding: 0px;
    width: 100%;
  }
  .footer-detail-area .btn-box {
    width: 100%;
  }
  .footer-detail-area .title {
    font-size: 1.3rem;
  }
  .footer-detail-area .title span {
    height: 30px;
    display: inline-block;
  }
  .footer-detail-area .title span img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .footer-detail-area .detail {
    font-size: 1rem;
  }
  .footer-detail-area .adoress-box .txt {
    font-size: 1rem;
  }
  .footer-detail-area .adoress-box .icon {
    font-size: 1rem;
    margin-left: 10px;
  }
}

/* footer_navi
----------------------------------*/
.footer_navi {
  padding: 15px 10px 10px;
  margin: 0 auto;
}
.footer_navi ul {
  margin: 0 auto;
  max-width: 800px;
  display: flex;
  flex-wrap: wrap;
}
.footer_navi ul li {
  flex: 1 0 auto;
  margin-bottom: 4px;
  border-right: 1px solid #5e5043;
}
.footer_navi ul li:last-child {
  border-right: none;
}
.footer_navi ul li a {
  color: #5e5043;
  font-size: 1.3rem;
  position: relative;
  text-align: center;
  display: block;
  font-family: "Shippori Mincho", serif, "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  font-weight: bold;
}
.footer_navi ul li a .eng {
  display: none;
}
.footer_navi ul li a:hover {
  color: #dd7687;
}
.footer_navi ul li .sub-menu {
  display: none;
}
.footer_navi ul li .dropdown {
  display: none;
}
.footer_navi ul li .dropdown .dropdon-li a {
  font-size: 1.2rem;
}

.flogo {
  max-width: 300px;
  position: relative;
  z-index: 5;
  margin: 0 auto 30px;
  text-align: center;
}
@media all and (max-width: 1100px) {
  .flogo {
    max-width: 300px;
    margin: 0 auto 20px 0;
  }
}
@media all and (max-width: 896px) {
  .flogo {
    margin: 0 auto 40px;
    max-width: 220px;
    text-align: center;
  }
}

.footer-btn {
  position: absolute;
  right: 10px;
  top: 25px;
  display: flex;
  flex-wrap: wrap;
}
.footer-btn .head-btn {
  margin-left: 5px;
  width: 40px;
}
.footer-btn .head-btn:hover {
  opacity: 0.6;
}
@media all and (max-width: 1100px) {
  .footer-btn {
    right: -20px;
    top: 25px;
  }
  .footer-btn .head-btn {
    margin-left: 5px;
    width: 30px;
  }
  .footer-btn .head-btn:hover {
    opacity: 0.6;
  }
}
@media all and (max-width: 896px) {
  .footer-btn {
    position: initial;
    left: 0;
    right: 0;
    margin: 0 auto 20px;
    text-align: center;
    justify-content: center;
  }
}

.footer-column-area {
  margin-bottom: 30px;
}
@media all and (max-width: 896px) {
  .footer-column-area {
    margin-bottom: 0;
  }
}

.footer-facebook iframe {
  height: 370px;
  width: 100%;
}
@media all and (max-width: 639px) {
  .footer-facebook {
    margin-top: 40px;
  }
}

.copyright {
  padding: 0px 0;
  font-size: 1.2rem;
  position: relative;
  z-index: 2;
  color: #333;
  font-family: "Shippori Mincho", serif, "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
}
@media all and (max-width: 896px) {
  .copyright {
    font-size: 12px;
    padding: 15px 0 44px;
    color: #333;
  }
}
@media all and (max-width: 639px) {
  .copyright {
    padding: 0px 0 20px;
    color: #333;
  }
}

/*----------------------------------
 top-contents
----------------------------------*/
.top-gray-box {
  position: relative;
}
.top-gray-box:before {
  position: absolute;
  content: "";
  z-index: -2;
  width: 70%;
  height: 100%;
  top: -4%;
  left: 0;
  background-image: linear-gradient(to right, #727171, #f3f6f6);
  opacity: 0.7;
}

.title-big {
  margin-bottom: 10px;
  text-align: center;
  position: relative;
}
.title-big .eng {
  font-family: "Share", cursive;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 3.5rem;
  color: #dd7687;
  line-height: 1.3;
  display: inline-block;
  background: #dd7687;
  background: linear-gradient(to right, #dd7687, #dd7687);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.title-big .ja {
  padding-left: 20px;
  color: #5e5043;
  font-size: 2rem;
  font-weight: 600;
}
@media all and (max-width: 639px) {
  .title-big .eng {
    font-size: 3.5rem;
    line-height: 1;
  }
  .title-big .ja {
    font-size: 1.5rem;
    line-height: 1.2;
  }
}

.title-big2 {
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
}
.title-big2 span {
  display: block;
  line-height: 1.2;
}
.title-big2 .eng {
  font-size: 4rem;
  color: #dd7687;
  font-family: "Share", cursive;
  font-weight: 400;
  text-transform: uppercase;
}
.title-big2 .ja {
  font-size: 2rem;
  color: #5e5043;
}
@media all and (max-width: 639px) {
  .title-big2 .eng {
    font-size: 2.5rem;
  }
  .title-big2 .ja {
    font-size: 1.5rem;
  }
}
.title-big2.white .eng {
  color: #fff;
}
.title-big2.white .ja {
  color: #fff;
}

.title-big3 {
  padding-left: 30px;
  margin: 30px 0;
  position: relative;
  z-index: 3;
}
.title-big3 span {
  display: block;
  line-height: 1.4;
}
.title-big3 .eng {
  font-family: "Share", cursive;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 3.5vw;
  color: #727171;
  display: inline-block;
  background: #727171;
  background-image: linear-gradient(135deg, #835315 0%, #ffce08 37%, #918417 47%, #a08924 50%, #a08633 53%, #e1ce08 63%, #85591f 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.title-big3 .ja {
  font-size: 3rem;
  position: relative;
  z-index: 2;
  line-height: 1.3;
  letter-spacing: 0.2em;
  font-family: "Shippori Mincho", serif, "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #131313;
}
@media screen and (max-width: 890px) and (orientation: landscape) {
  .title-big3 {
    padding-left: 8px;
  }
  .title-big3 .eng {
    font-size: 3rem;
  }
  .title-big3 .ja {
    font-size: 2rem;
  }
}
@media all and (max-width: 639px) {
  .title-big3 {
    padding-left: 8px;
  }
  .title-big3 .eng {
    font-size: 3rem;
  }
  .title-big3 .ja {
    font-size: 2rem;
  }
}

.title-big4 {
  text-align: center;
  position: relative;
  max-width: 90%;
  margin: 40px auto;
}
.title-big4 .inner {
  position: relative;
  display: inline-block;
}
.title-big4 .inner:before, .title-big4 .inner:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  bottom: 0;
  margin-top: -2rem;
  width: 1px;
  height: 4rem;
  background-color: #dd7687;
  transform: rotate(10deg);
}
.title-big4 .inner:before {
  left: -30px;
}
.title-big4 .inner:after {
  right: -30px;
}
@media all and (max-width: 639px) {
  .title-big4 .inner:before {
    left: -5px;
  }
  .title-big4 .inner:after {
    right: -5px;
  }
}
.title-big4 .txt {
  display: inline-block;
  font-size: 2rem;
  font-weight: 500;
  font-family: "Shippori Mincho", serif, "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
}
.title-big4 .txt .eng {
  font-style: normal;
  font-family: "Share", cursive;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 6rem;
  line-height: 1.2;
  color: #dd7687;
}
@media all and (max-width: 639px) {
  .title-big4 .txt {
    font-size: 1.4rem;
  }
  .title-big4 .txt .eng {
    font-size: 3.5rem;
  }
}

.title-big4-q {
  margin: 0 auto;
  text-align: center;
  max-width: 600px;
}
.title-big4-q img {
  width: 100%;
}

.pick-title {
  position: relative;
  z-index: 2;
  font-size: 2rem;
  padding-left: 30px;
  margin-bottom: -15px;
}
.pick-title .eng {
  line-height: 1;
  font-family: "Share", cursive;
  font-weight: 600;
  text-transform: uppercase;
  display: block;
  font-size: 3.2rem;
  color: #dd7687;
}
.pick-title:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 40px;
  top: -20px;
  left: 0;
  background: #dd7687;
  transform: rotate(20deg);
}
@media all and (max-width: 639px) {
  .pick-title {
    font-size: 1.4rem;
  }
  .pick-title .eng {
    font-size: 2.2rem;
  }
  .pick-title:before {
    left: 10px;
  }
}

.top-btn a {
  display: block;
  margin: 0 auto;
  width: 350px;
  padding: 15px 20px;
  font-weight: 600;
  background: #5e5043;
  color: #f2edde;
  border-top: 2px solid #e2ceaf;
  border-bottom: 2px solid #e2ceaf;
  position: relative;
}
.top-btn a i {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
}

.topic-list {
  display: flex;
  flex-wrap: wrap;
  padding-top: 80px;
}
.topic-list > li {
  width: 44%;
  margin-bottom: 70px;
  position: relative;
  margin-right: 4%;
}
.topic-list > li:nth-child(even) {
  transform: translateY(-70px);
  margin-right: 0;
}
@media all and (max-width: 639px) {
  .topic-list > li:nth-child(even) {
    margin-right: 0;
    transform: none;
  }
}
.topic-list > li:nth-child(3n-1) .topic-inner {
  background: #d86275;
}
.topic-list > li:nth-child(3n) .topic-inner {
  background: #5e5043;
}
.topic-list > li:nth-child(3), .topic-list > li:nth-child(4) {
  margin-left: 2%;
}
.topic-list > li:nth-child(5), .topic-list > li:nth-child(6) {
  margin-left: 4%;
}
@media all and (max-width: 896px) {
  .topic-list > li {
    margin-bottom: 40px;
  }
}
@media all and (max-width: 639px) {
  .topic-list > li {
    width: 90%;
    margin-right: 0;
  }
  .topic-list > li:nth-child(3), .topic-list > li:nth-child(4) {
    margin-left: 0;
  }
  .topic-list > li:nth-child(5), .topic-list > li:nth-child(6) {
    margin-left: 0;
  }
  .topic-list > li:nth-child(even) {
    margin-right: 0;
    transform: none;
    margin-left: auto;
  }
}
.topic-list > li .topic-inner {
  width: 100%;
  height: 100%;
  background: #727171;
  position: relative;
}
.topic-list > li figure {
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  height: 100%;
  width: 50%;
}
.topic-list > li figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  opacity: 0.6;
}
@media all and (max-width: 896px) {
  .topic-list > li figure {
    width: 100%;
    height: 100%;
  }
}
.topic-list > li .topic-num {
  display: block;
  position: absolute;
  font-family: "Cinzel", serif;
  font-weight: 500;
  font-size: 7rem;
  line-height: 1;
  color: #fff;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}
.topic-list > li .topic-num:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 55px;
  bottom: 0;
  right: -10px;
  background: #fff;
  transform: rotate(30deg);
}
@media all and (max-width: 639px) {
  .topic-list > li .topic-num:before {
    height: 35px;
  }
}
@media all and (max-width: 896px) {
  .topic-list > li .topic-num {
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
  }
}
@media all and (max-width: 639px) {
  .topic-list > li .topic-num {
    font-size: 4rem;
    top: 30px;
  }
}
.topic-list > li .topic-txt {
  position: relative;
  padding: 50px 30px 50px 40%;
  color: #fff;
}
@media all and (max-width: 896px) {
  .topic-list > li .topic-txt {
    padding: 100px 20px 20px;
  }
}
@media all and (max-width: 639px) {
  .topic-list > li .topic-txt {
    padding: 80px 15px 25px;
  }
}
.topic-list > li .topic-title {
  font-weight: 600;
  color: #fff;
  font-size: 2rem;
}
@media all and (max-width: 639px) {
  .topic-list > li .topic-title {
    font-size: 1.4rem;
  }
}
@media all and (max-width: 639px) {
  .topic-list {
    padding: 0 10px;
  }
}

.icon-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 30px auto 0;
}
@media all and (max-width: 639px) {
  .icon-list {
    max-width: 90%;
  }
}
.icon-list.type1 {
  justify-content: flex-start;
}
.icon-list li {
  width: 31%;
  margin-bottom: 30px;
  margin-right: 3.495%;
}
.icon-list li:nth-child(3n) {
  margin-right: 0;
}
.icon-list li figure {
  margin: 0 auto;
  text-align: center;
}
.icon-list li a {
  display: block;
  text-align: center;
  font-weight: 600;
  line-height: 1.4;
  height: 100%;
  transition: all 0.2s cubic-bezier(0.26, 0.06, 0, 1);
  position: relative;
  padding: 25px 0;
  transition: transform 0.2s cubic-bezier(0.26, 0.06, 0, 1);
}
@media all and (max-width: 639px) {
  .icon-list li a {
    padding: 18px 0;
  }
}
.icon-list li a figure {
  margin: 0 auto 10px;
  width: 70px;
}
@media all and (max-width: 639px) {
  .icon-list li a figure {
    width: 60px;
    margin-bottom: 10px;
  }
}
.icon-list li a .icon-title {
  color: #5e5043;
  position: relative;
  z-index: 2;
  transition: all 0.2s cubic-bezier(0.26, 0.06, 0, 1);
}
@media all and (max-width: 639px) {
  .icon-list li a .icon-title {
    padding: 5px;
  }
}
.icon-list li a:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-image: linear-gradient(to right bottom, #fff, #f2edde);
  transition: transform 0.2s cubic-bezier(0.26, 0.06, 0, 1);
  z-index: -1;
}
.icon-list li a:hover {
  z-index: 2;
}
.icon-list li a:hover:before {
  transform: translate(-50%, -50%) scale(1.07, 1.02);
  opacity: 1;
}
.icon-list li a:hover .icon-title {
  color: #dd7687;
}
@media all and (max-width: 639px) {
  .icon-list li {
    width: 48%;
    margin-bottom: 15px;
    margin-right: 4%;
  }
  .icon-list li:nth-child(3n) {
    margin-right: 4%;
  }
  .icon-list li:nth-child(2n) {
    margin-right: 0;
  }
}
.icon-list.type2 li {
  width: 23%;
  margin-right: 2.6666666667%;
}
.icon-list.type2 li:nth-child(3n) {
  margin-right: 2.6666666667%;
}
.icon-list.type2 li:nth-child(4n) {
  margin-right: 0;
}

.choice-list li {
  margin-bottom: 10px;
}
.choice-list .title {
  font-size: 1.8rem;
}
@media all and (max-width: 639px) {
  .choice-list .title {
    font-size: 1.3rem;
  }
}
.choice-list .title span {
  font-family: "Cinzel", serif;
  font-weight: 500;
  font-size: 4rem;
  font-style: italic;
  color: #b0aba6;
  padding-right: 10px;
}
@media all and (max-width: 639px) {
  .choice-list .title span {
    font-size: 2.4rem;
  }
}

.sec6 {
  position: relative;
  color: #fff;
}
.sec6:before, .sec6:after {
  position: absolute;
  content: "";
  width: 100%;
  top: 0;
  left: 0;
}
.sec6:before {
  height: 100%;
  background: #727171;
}
.sec6:after {
  height: 80%;
  background: url(../img/bg-sec6.jpg) no-repeat center/cover;
}
@media all and (max-width: 1100px) {
  .sec6:after {
    height: 100%;
  }
}

.sec6-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  margin-bottom: 60px;
}
.sec6-wrap .sec6-img {
  width: 25%;
}
.sec6-wrap .sec6-txt {
  width: 65%;
  padding: 40px;
  line-height: 2;
}
.sec6-wrap .sec6-name {
  font-size: 4rem;
}
.sec6-wrap .sec6-name .small {
  font-size: 2rem;
  padding-right: 10px;
}
.sec6-wrap .sec6-name .eng {
  font-family: "Share", cursive;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 3rem;
  letter-spacing: 0.2em;
  padding-left: 20px;
}
@media all and (max-width: 639px) {
  .sec6-wrap .sec6-name {
    font-size: 2.2rem;
    line-height: 1.3;
  }
  .sec6-wrap .sec6-name .small {
    font-size: 1.3rem;
  }
  .sec6-wrap .sec6-name .eng {
    font-size: 1.5rem;
    display: block;
  }
}
@media all and (max-width: 1100px) {
  .sec6-wrap {
    margin-bottom: 0;
  }
  .sec6-wrap .sec6-img {
    width: 35%;
  }
  .sec6-wrap .sec6-txt {
    padding: 25px;
  }
}
@media all and (max-width: 639px) {
  .sec6-wrap {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .sec6-wrap .sec6-img {
    width: 60%;
    margin-bottom: 25px;
  }
  .sec6-wrap .sec6-txt {
    width: 100%;
    padding: 15px;
  }
}

.title01 {
  line-height: 1.4;
  font-size: 1.7rem;
  margin-bottom: 20px;
  color: #68afd8;
}
.title01 span {
  display: block;
  font-size: 1.5rem;
  font-weight: 600;
  color: #dd7687;
  font-family: "Share", cursive;
  font-weight: 600;
  text-transform: uppercase;
}
@media all and (max-width: 639px) {
  .title01 {
    font-size: 1.4rem;
  }
  .title01 span {
    font-size: 1.43em;
  }
}
.title01.white {
  color: #fcfcfc;
}
.title01.white span {
  color: #fff;
}

.title02 {
  font-size: 1.4rem;
  font-weight: 700;
  padding-bottom: 5px;
  letter-spacing: 0.2em;
  margin-bottom: 10px;
}
.title02 span {
  background: #727171;
  padding: 4px 8px;
  color: #fff;
}
@media all and (max-width: 639px) {
  .title02 {
    font-size: 1.2rem;
  }
}
.title02.type1 span {
  background: #68afd8;
}

.title03 {
  background: #f2edde;
  color: #5e5043;
  padding: 8px 15px;
  font-weight: 600;
  margin-top: 10px;
  font-size: 2rem;
  margin-bottom: 50px;
  position: relative;
  font-family: "Shippori Mincho", serif, "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
}
.title03 span {
  font-family: "Share", cursive;
  font-weight: 600;
  text-transform: uppercase;
  color: #dd7687;
  margin-right: 8px;
}
@media all and (max-width: 639px) {
  .title03 {
    font-size: 1.4rem;
  }
}
.title03:before, .title03:after {
  position: absolute;
  content: "";
  left: 0;
  height: 6px;
}
.title03:before {
  width: 25%;
  top: -6px;
  background: #dd7687;
}
.title03:after {
  width: 40%;
  bottom: -6px;
  background: #dd7687;
  opacity: 0.7;
}

.title04 {
  padding: 8px 0;
  text-align: center;
  background: #dd7687;
  margin-bottom: 15px;
  color: #fff;
}
.title04.type1 {
  background: #55725a;
  color: #5e5043;
}

/* --news--
----------------------------------*/
.news-box-area {
  background-color: rgb(219, 219, 219);
  color: #fff;
  padding: 20px 10px;
}

.news-box {
  margin: 0 auto 0;
  max-width: 1200px;
  position: relative;
  z-index: 10;
  display: flex;
}
@media all and (max-width: 896px) {
  .news-box {
    margin-top: 0;
  }
}
@media all and (max-width: 639px) {
  .news-box {
    flex-direction: column;
    padding: 20px 10px;
    margin-bottom: 0px;
  }
}
.news-box .scrollbar {
  min-height: 50px;
}

.news-title {
  text-align: center;
  text-align: center;
  border-right: 1px solid rgb(92, 92, 92);
  padding-right: 20px;
  position: relative;
}
.news-title span {
  display: block;
}
.news-title .eng {
  font-family: "Share", cursive;
  font-weight: 600;
  text-transform: uppercase;
  color: #727171;
  position: relative;
  font-size: 2.5rem;
  letter-spacing: 0.1em;
}
.news-title .ja {
  font-size: 2rem;
  position: relative;
  margin: 0 auto;
  color: rgb(0, 0, 0);
  max-height: 150px;
  font-family: "Shippori Mincho", serif, "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
}
@media all and (max-width: 639px) {
  .news-title {
    margin-bottom: 30px;
  }
  .news-title .eng {
    font-size: 2.5rem;
  }
  .news-title .ja {
    font-size: 1.5rem;
    -ms-writing-mode: inherit;
        writing-mode: inherit;
    margin-bottom: 0;
  }
}

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

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

.top-bg {
  background: url(../img/top-bg01.jpg) no-repeat center/cover;
  background-attachment: fixed;
  height: 400px;
}
@media all and (max-width: 1100px) {
  .top-bg {
    background-attachment: scroll;
  }
}

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

/* top-anime
----------------------------------*/
.anime-bg {
  position: relative;
}
.anime-bg:before {
  position: absolute;
  content: "";
  width: 100%;
  max-width: 1460px;
  height: 130%;
  top: -50px;
  left: -100px;
  transform: scaleY(0);
  background: rgba(221, 118, 135, 0.7);
  -webkit-animation: photo-anime 1.2s ease-in-out forwards;
          animation: photo-anime 1.2s ease-in-out forwards;
  z-index: -1;
}
@media all and (max-width: 1860px) {
  .anime-bg:before {
    left: -10%;
    width: 120%;
    max-width: 1600px;
    height: 130%;
  }
}
@media all and (max-width: 1100px) {
  .anime-bg:before {
    left: -10%;
    width: 120%;
    height: 130%;
  }
}

@-webkit-keyframes photo-anime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1.2);
  }
  70% {
    transform-origin: left;
    transform: scaleX(1);
  }
  71% {
    transform-origin: right;
    transform: scaleX(1);
  }
  100% {
    transform-origin: right;
    transform: scaleX(1);
  }
}

@keyframes photo-anime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1.2);
  }
  70% {
    transform-origin: left;
    transform: scaleX(1);
  }
  71% {
    transform-origin: right;
    transform: scaleX(1);
  }
  100% {
    transform-origin: right;
    transform: scaleX(1);
  }
}
.anime-bg2 {
  position: relative;
}
.anime-bg2:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 140%;
  top: -20%;
  transform: scaleY(0);
  background: rgba(131, 185, 110, 0.5);
  -webkit-animation: photo-anime2 1.2s ease-in-out forwards;
          animation: photo-anime2 1.2s ease-in-out forwards;
  z-index: -1;
}

@-webkit-keyframes photo-anime2 {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  80% {
    transform-origin: left;
    transform: scaleX(1);
  }
  81% {
    transform-origin: left;
    transform: scaleX(1);
  }
  100% {
    transform-origin: right;
    transform: scaleX(1);
  }
}

@keyframes photo-anime2 {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  80% {
    transform-origin: left;
    transform: scaleX(1);
  }
  81% {
    transform-origin: left;
    transform: scaleX(1);
  }
  100% {
    transform-origin: right;
    transform: scaleX(1);
  }
}
/* top-area
----------------------------------*/
@-webkit-keyframes circle-anime {
  0% {
    transform: rotate(0);
  }
  5% {
    opacity: 0;
  }
  25% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  75% {
    opacity: 0;
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes circle-anime {
  0% {
    transform: rotate(0);
  }
  5% {
    opacity: 0;
  }
  25% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  75% {
    opacity: 0;
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes circle-anime2 {
  0% {
    opacity: 0;
    transform: rotate(0);
  }
  15% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes circle-anime2 {
  0% {
    opacity: 0;
    transform: rotate(0);
  }
  15% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
  100% {
    transform: rotate(360deg);
  }
}
.top {
  position: relative;
}

.top-banner:hover {
  opacity: 0.7;
}

.top-commonbox {
  position: relative;
  margin: 80px auto;
}
.top-commonbox .inner {
  padding: 60px;
  width: calc(100% - 50px);
  position: relative;
  margin: 0 auto;
}
.top-commonbox .txtarea {
  padding: 40px;
  position: relative;
  z-index: 1;
}
@media all and (max-width: 639px) {
  .top-commonbox {
    margin: 50px auto;
  }
  .top-commonbox .inner {
    padding: 30px 0;
    margin: 0 auto;
    width: calc(100% - 30px);
  }
}
@media all and (max-width: 639px) {
  .top-commonbox .txtarea {
    padding: 20px;
    font-size: 1.2rem;
  }
}

.top-main-box {
  max-width: none;
  margin: 0px auto 0px;
  position: relative;
  z-index: 1;
}
.top-main-box:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 46%;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 0;
  background-color: #b0aba6;
}
.top-main-box:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 19px;
  background: url(../img/bg-pattern.png) repeat;
  background-size: 163px 170px;
  bottom: 20px;
}
.top-main-box .inner {
  width: 100%;
  padding: 100px 0;
}
.top-main-box .photoarea {
  text-align: center;
  position: relative;
  margin: 0 auto;
  padding: 50px 20px;
}
.top-main-box .photoarea .photo {
  height: 440px;
  width: 700px;
  margin: 0 auto;
}
.top-main-box .photoarea img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-main-box .txtarea {
  padding: 0;
  text-align: center;
}
.top-main-box .txtarea span {
  background-color: #5e5043;
  color: #fff;
  padding: 5px 20px;
  font-weight: normal;
}
.top-main-box .mainarea {
  max-width: 1200px;
  margin: 0px auto 0;
  padding: 50px 0 0;
}
@media all and (max-width: 896px) {
  .top-main-box .inner {
    width: 100%;
    padding: 100px 20px;
  }
  .top-main-box .photoarea .photo {
    height: 330px;
    width: 530px;
  }
}
@media all and (max-width: 639px) {
  .top-main-box .photoarea {
    padding: 30px 20px;
  }
  .top-main-box .photoarea .photo {
    width: 286px;
    height: 180px;
  }
  .top-main-box .txtarea span {
    display: inline-block;
  }
}

.top-topicbox {
  position: relative;
  z-index: 1;
}
.top-topicbox .inner {
  padding: 30px 40px 30px;
  width: 100%;
  margin: 0px auto;
}
.top-topicbox .mtitle2 {
  margin: 0 auto;
  max-width: 280px;
  border-right: 10px solid #b0aba6;
}
.top-topicbox .mtitle2 .eng {
  color: #b0aba6;
}
.top-topicbox .mtitle2 .ja {
  font-size: 2rem;
  padding-left: 0;
}
.top-topicbox .mtitle2 .ja::first-letter {
  color: #dd7687;
}
.top-topicbox .blog-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
}
.top-topicbox .blog-wrap > li {
  width: 30%;
  padding: 0;
  margin: 0 1%;
  background-color: transparent;
  color: #fff;
}
.top-topicbox .blog-wrap > li .data {
  padding-right: 20px;
}
.top-topicbox .blog-wrap > li:hover .data {
  opacity: 0.8;
}
.top-topicbox .blog-wrap > li:hover .txt {
  opacity: 0.6;
}
.top-topicbox .blog-img {
  width: 100%;
}
.top-topicbox .blog-detail {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  align-items: flex-start;
  padding: 0 0;
  background-color: transparent;
  justify-content: flex-start;
}
.top-topicbox .blog-detail .blog-date {
  width: 100%;
  position: absolute;
  top: 8px;
  left: -4px;
  font-size: 1.4rem;
  max-width: 120px;
}
.top-topicbox .blog-detail .blog-txt {
  width: 100%;
  padding: 10px 15px;
  color: #333;
}
.top-topicbox .btn04 {
  text-align: center;
  position: relative;
  margin: 30px auto 60px;
}
.top-topicbox .btn04 a {
  width: 280px;
  display: block;
  margin: 0 auto;
}
@media all and (max-width: 1100px) {
  .top-topicbox .blog-wrap > li {
    width: 100%;
  }
  .top-topicbox .btn span {
    top: 0;
  }
}
@media all and (max-width: 639px) {
  .top-topicbox .mtitle2 {
    margin: 0 auto;
    border-right: none;
    border-bottom: 1px solid #727171;
    padding-bottom: 15px;
    margin-bottom: 10px;
  }
  .top-topicbox .mtitle2 .ja {
    font-size: 1.6rem;
  }
  .top-topicbox .inner {
    padding: 30px 20px;
  }
  .top-topicbox .blog-detail {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    align-items: flex-start;
    padding: 0 0;
  }
  .top-topicbox .blog-detail .blog-date {
    width: 100%;
    background-color: transparent;
    font-size: 1.2rem;
    padding: 0;
  }
  .top-topicbox .blog-detail .blog-txt {
    width: 100%;
    padding: 0 15px;
  }
  .top-topicbox .btn {
    text-align: center;
    padding-top: 10px;
  }
  .top-topicbox .btn span {
    width: 150px;
    padding: 8px 20px;
    position: initial;
    margin-top: 10px;
    display: inline-block;
  }
}

.top-contact-box .inner {
  margin: 0 auto;
  max-width: 1500px;
  padding: 50px;
  background-color: #ECE6E6;
  position: relative;
  z-index: 1;
}
.top-contact-box .inner:before {
  position: absolute;
  content: "";
  border: 2px solid #45220E;
  width: 90%;
  height: 70%;
  bottom: 10%;
  left: 5%;
  z-index: -1;
}
.top-contact-box .inner .title {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  background-color: #ECE6E6;
  top: 15%;
  padding: 0 20px;
  display: inline-table;
}
.top-contact-box .main {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 0 20px;
}
.top-contact-box .main .list2 {
  margin-top: 0;
  max-width: 560px;
}
.top-contact-box .main .list2 li {
  margin-top: 0;
}
.top-contact-box .contact-title {
  text-align: center;
  margin-bottom: 20px;
  color: #5e5043;
}
.top-contact-box .btn-tel:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  margin-right: 5px;
}
.top-contact-box .btn-mail:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
  margin-right: 5px;
}
@media all and (max-width: 639px) {
  .top-contact-box .inner {
    padding: 30px 20px;
  }
  .top-contact-box .inner:before {
    height: 78%;
  }
  .top-contact-box .inner .title {
    top: 8%;
  }
  .top-contact-box .main {
    padding: 70px 30px 40px;
  }
  .top-contact-box .main .list2 {
    margin-top: 0;
    max-width: 560px;
  }
  .top-contact-box .main .list2 li {
    margin-top: 0;
  }
  .top-contact-box .main .list2 li:nth-child(2n) {
    margin-top: 40px;
  }
  .top-contact-box .contact-title {
    margin-bottom: 10px;
  }
}

.contact-box {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 0 20px;
}
.contact-box.type2 {
  max-width: 560px;
  margin: 0 auto 20px;
}
.contact-box .list2 {
  margin-top: 0;
  max-width: 560px;
}
.contact-box .list2 li {
  margin-top: 0;
}
.contact-box .contact-title {
  text-align: center;
  margin-bottom: 20px;
  color: #5e5043;
}
.contact-box .btn-tel:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  margin-right: 5px;
}
.contact-box .btn-mail:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
  margin-right: 5px;
}
@media all and (max-width: 639px) {
  .contact-box {
    padding: 70px 30px 40px;
  }
  .contact-box .list2 {
    margin-top: 0;
    max-width: 560px;
  }
  .contact-box .list2 li {
    margin-top: 0;
  }
  .contact-box .list2 li:nth-child(2n) {
    margin-top: 40px;
  }
  .contact-box .contact-title {
    margin-bottom: 10px;
  }
}

.top-content-box {
  margin: 0 auto;
  background-color: #b0aba6;
  position: relative;
}
.top-content-box:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 19px;
  background: url(../img/bg-pattern.png) repeat;
  background-size: 163px 170px;
  top: 20px;
}
.top-content-box:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 19px;
  background: url(../img/bg-pattern.png) repeat;
  background-size: 163px 170px;
  bottom: 20px;
}
.top-content-box .inner {
  margin: 0 auto;
  padding: 40px 0 50px;
  width: 100%;
}
@media all and (max-width: 639px) {
  .top-content-box .inner {
    padding: 50px 0;
  }
  .top-content-box .subtxtarea {
    text-align: left;
  }
}

.content-box {
  position: relative;
  z-index: 1;
  max-width: 1500px;
  margin: 0 auto;
  padding: 40px 20px;
}
.content-box .content-box-inner {
  max-width: 1500px;
  position: relative;
  z-index: 1;
}
.content-box .content-box-inner:before {
  position: absolute;
  content: "";
  width: 0%;
  height: 100%;
  background-color: #fff;
  top: 0;
  left: 0;
  z-index: -1;
}
.content-box .content-box-inner.reverse-inner:before {
  left: auto;
  right: 0;
}
.content-box .content-box-inner.reverse-inner .photo:before {
  right: auto;
  left: 0;
}

.content-detailarea {
  position: relative;
  padding: 120px 0;
}
.content-detailarea .photo {
  height: 100%;
}
.content-detailarea .photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.content-detailarea .photo:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 0%;
  top: 0;
  right: 0;
  z-index: -1;
}
.content-detailarea .photo.type1:before {
  background: url(../img/content-photo01.jpg) no-repeat;
  background-size: cover;
}
.content-detailarea .photo.type2:before {
  background: url(../img/content-photo02.jpg) no-repeat;
  background-size: cover;
}
.content-detailarea .photo.type3:before {
  background: url(../img/content-photo03.jpg) no-repeat;
  background-size: cover;
}
.content-detailarea .photo.type4:before {
  background: url(../img/content-photo04.jpg) no-repeat;
  background-size: cover;
}
.content-detailarea .titlebox {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 200px;
  z-index: 1;
  display: inline-table;
}
@media all and (max-width: 896px) {
  .content-detailarea {
    padding: 0;
  }
  .content-detailarea .titlebox {
    top: 260px;
  }
  .content-detailarea .photo {
    height: 300px;
    position: relative;
  }
  .content-detailarea .photo.type1:before, .content-detailarea .photo.type2:before, .content-detailarea .photo.type3:before, .content-detailarea .photo.type4:before {
    width: 100%;
    background-size: cover;
  }
}
@media all and (max-width: 639px) {
  .content-detailarea {
    padding: 0;
  }
  .content-detailarea .titlebox {
    top: 120px;
    width: 80%;
  }
  .content-detailarea .photo {
    height: 140px;
    position: relative;
  }
  .content-detailarea .photo.type1:before, .content-detailarea .photo.type2:before, .content-detailarea .photo.type3:before, .content-detailarea .photo.type4:before {
    width: 100%;
    background-size: cover;
  }
}

.content-linkarea {
  position: relative;
  background-color: white;
  padding: 20px;
}
.content-linkarea .main {
  text-align: center;
}
.content-linkarea .content-title .eng {
  font-size: 2rem;
  line-height: 1.4;
  text-decoration: none;
  display: inline-block;
  background: #dd7687;
  background: linear-gradient(90deg, #dd7687 0%, #dd7687 50%, #b0aba6 70%, #727171 100%);
  background-position: 100%;
  background-size: 490%;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: background-position 0.8s;
}
.content-linkarea .content-title .ja {
  font-size: 1.4rem;
}
.content-linkarea .content-arrow {
  position: absolute;
  z-index: 1;
  width: 60px;
  bottom: 14px;
  right: 6%;
}
.content-linkarea .content-arrow:before {
  position: absolute;
  content: "";
  width: 60px;
  height: 1px;
  right: 0;
  background-color: #dd7687;
}
.content-linkarea .content-arrow:after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  transform-origin: right bottom;
  width: 14px;
  height: 1px;
  background-color: #dd7687;
  transform: rotate(45deg);
}
@media all and (max-width: 639px) {
  .content-linkarea .content-title {
    text-align: center;
    padding-bottom: 10px;
  }
  .content-linkarea .content-title .eng {
    font-size: 1.2rem;
  }
  .content-linkarea .content-title .ja {
    font-size: 1.2rem;
  }
}
.content-linkarea:hover .content-title .eng {
  background-position: 50%;
}
.content-linkarea:hover .content-arrow {
  transition: 0.4s;
  width: 40px;
}
.content-linkarea:hover .content-arrow:before {
  transition: 0.4s;
  position: absolute;
  content: "";
  width: 40px;
  height: 1px;
  right: 0;
}
.content-linkarea:hover .content-arrow:after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  transform-origin: right bottom;
  width: 20px;
  height: 1px;
  transform: rotate(45deg);
}
@media all and (max-width: 639px) {
  .content-linkarea:hover .content-arrow {
    width: 20px;
  }
  .content-linkarea:hover .content-arrow:before {
    transition: 0.4s;
    position: absolute;
    content: "";
    width: 20px;
    height: 1px;
    right: 0;
  }
}

.content-subarea {
  background-color: rgba(145, 135, 94, 0.1);
  padding: 10px;
}
.content-subarea .txt {
  margin: 0 auto;
  padding: 20px;
  font-family: "Shippori Mincho", serif, "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
}
.content-subarea .content-subarea-in {
  border: 1px solid #8d755e;
  padding: 10px;
}
.content-subarea.type-green {
  background-color: rgba(67, 112, 69, 0.1);
}
.content-subarea .sub-title {
  text-align: center;
  font-family: "Shippori Mincho", serif, "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  font-size: 2rem;
}

.content-btn {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.top-news-box {
  margin: 100px auto;
  position: relative;
  padding: 0;
  width: calc(100% - 80px);
}
.top-news-box .inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 20px 0 0;
}
.top-news-box:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 5px;
  background: url(../img/noise.png) repeat;
  background-size: 100px 100px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: -1;
}
.top-news-box .news-list {
  margin-left: 40px;
}
@media all and (max-width: 1100px) {
  .top-news-box {
    width: calc(100% - 80px);
  }
}
@media all and (max-width: 639px) {
  .top-news-box {
    width: calc(100% - 40px);
    margin: 50px auto;
  }
  .top-news-box:before {
    width: 100%;
    height: 100%;
    bottom: 0;
  }
  .top-news-box .mtitle {
    margin-bottom: 20px;
  }
  .top-news-box .news-list {
    margin-left: 0px;
    padding: 0 20px 20px;
  }
}

.top-detail-box {
  margin: 100px auto;
  width: 100%;
  position: relative;
}
.top-detail-box:before {
  position: absolute;
  content: "";
  width: 60%;
  height: 100%;
  bottom: 0;
  right: 0;
  background: url(../img/bg-03.jpg) no-repeat;
  background-size: cover;
  background-attachment: fixed;
  opacity: 0.6;
}
.top-detail-box .inner {
  width: 100%;
  padding: 50px 0 100px;
}
.top-detail-box .inner .mtitle {
  padding: 0 50px;
  max-width: 1500px;
  margin-bottom: 100px;
}
.top-detail-box .photo {
  height: 500px;
  position: relative;
}
.top-detail-box .photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-detail-box .photoarea {
  position: relative;
}
.top-detail-box .eng-title {
  position: absolute;
  font-size: 7rem;
  font-family: "Shippori Mincho", serif, "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  right: -4%;
  height: 100%;
  top: 13%;
  line-height: 1.2;
}
.top-detail-box .title {
  margin-bottom: 50px;
}
.top-detail-box .titlearea {
  padding: 0 20px;
}
.top-detail-box .reverse .eng-title {
  left: -4%;
  right: auto;
}
@media all and (max-width: 1100px) {
  .top-detail-box .titlearea {
    position: absolute;
    right: 0;
  }
  .top-detail-box .titlearea.flex-30 {
    width: 300px;
  }
  .top-detail-box .titlearea.flex-30.l-m2 {
    margin: 0 0 0;
    margin-left: auto;
  }
  .top-detail-box .eng-title {
    font-size: 5rem;
  }
  .top-detail-box .reverse .photoarea {
    margin: 0 0 0 auto;
  }
  .top-detail-box .reverse .eng-title {
    left: -4%;
    right: auto;
  }
  .top-detail-box .reverse .titlearea {
    right: auto;
    left: 0;
  }
  .top-detail-box .photoarea.flex-68 {
    width: 60%;
  }
}
@media all and (max-width: 639px) {
  .top-detail-box .inner {
    padding: 50px 0;
  }
  .top-detail-box .inner .mtitle {
    padding: 0;
    text-align: center;
  }
  .top-detail-box .photoarea.flex-68 {
    width: 80%;
    margin-left: 0;
  }
  .top-detail-box .photo {
    height: 300px;
  }
  .top-detail-box .eng-title {
    font-size: 3rem;
    right: -12%;
    height: 100%;
    top: -7%;
  }
  .top-detail-box .titlearea {
    position: initial;
  }
  .top-detail-box .titlearea.flex-30 {
    width: 300px;
  }
  .top-detail-box .titlearea.flex-30.l-m2 {
    margin: 0 auto;
    margin-left: auto;
  }
  .top-detail-box .reverse .photoarea {
    margin: 0 0 0 auto;
  }
  .top-detail-box .reverse .photoarea.flex-68 {
    margin-left: auto;
  }
  .top-detail-box .reverse .eng-title {
    left: -7%;
    top: -10%;
    right: auto;
  }
  .top-detail-box .reverse .titlearea.flex-30.l-m2 {
    margin: 0 auto;
    margin-left: auto;
  }
}

.detail-list {
  max-width: 1500px;
  margin: 0 auto;
}

.detail-box {
  position: relative;
  padding: 60px;
  z-index: 1;
  color: #fff;
}
.detail-box:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgb(255, 255, 255);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(216, 154, 74) 20%, rgb(139, 100, 44) 80%, rgba(255, 255, 255, 0) 100%);
  opacity: 0.5;
  z-index: -1;
}
.detail-box .detail-bg {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/top-strength02.jpg) no-repeat;
  background-size: cover;
  z-index: -2;
  top: 0;
  left: 0;
}
.detail-box.type2:before {
  background: rgb(255, 255, 255);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(216, 178, 74) 20%, rgb(139, 129, 44) 80%, rgba(255, 255, 255, 0) 100%);
}
.detail-box.type2 .detail-bg {
  background: url(../img/top-strength03.jpg) no-repeat;
  background-size: cover;
}
.detail-box.type3:before {
  background: rgb(255, 255, 255);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(216, 107, 74) 20%, rgb(139, 71, 44) 80%, rgba(255, 255, 255, 0) 100%);
}
.detail-box.type3 .detail-bg {
  background: url(../img/top-strength04.jpg) no-repeat;
  background-size: cover;
}
@media all and (max-width: 639px) {
  .detail-box {
    padding: 30px 20px;
  }
  .detail-box.t-m100 {
    margin-top: 50px;
  }
  .detail-box p {
    text-align: left;
  }
  .detail-box p.txtdeko-2 {
    text-align: center;
  }
}

.top-attention-box {
  margin: 100px auto;
}
.top-attention-box .detail-box {
  max-width: 1200px;
  margin: 40px auto;
}

.top-gallery {
  position: relative;
}
.top-gallery .inner {
  position: relative;
}
.top-gallery .titlearea {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 34%;
  max-width: 400px;
  padding: 40px;
  background-color: rgba(245, 245, 245, 0.5);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
}
@media all and (max-width: 639px) {
  .top-gallery .titlearea {
    max-width: 300px;
    padding: 20px 40px 40px;
  }
}

/* page content
----------------------------------*/
.page-concept {
  margin: 100px auto 0;
  position: relative;
  max-width: 1000px;
  z-index: 1;
}
.page-concept.t-m0 {
  margin-top: 0;
}
.page-concept ul {
  max-width: 1000px;
  margin: 0px auto 0;
}
.page-concept ul.t-m80 {
  margin: 80px auto 0;
}
.page-concept li {
  margin-bottom: 20px;
}
.page-concept .concept-area {
  position: relative;
}
.page-concept .concept-photo {
  height: 300px;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 92%, 53% 92%, 50% 100%, 47% 92%, 0 92%);
          clip-path: polygon(0% 0%, 100% 0%, 100% 92%, 53% 92%, 50% 100%, 47% 92%, 0 92%);
}
.page-concept .concept-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-concept .concept-photo.type2 {
  -webkit-clip-path: polygon(0% 0%, 94% 0, 94% 25%, 100% 35%, 94% 45%, 94% 100%, 0 100%);
          clip-path: polygon(0% 0%, 94% 0, 94% 25%, 100% 35%, 94% 45%, 94% 100%, 0 100%);
  height: 220px;
}
.page-concept .concept-icon {
  width: 10%;
  max-width: 60px;
}
.page-concept .concept-txt {
  color: #333;
  margin-top: 10px;
}
@media all and (max-width: 639px) {
  .page-concept .concept-photo {
    height: 200px;
  }
  .page-concept .concept-photo.type2 {
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 92%, 53% 92%, 50% 100%, 47% 92%, 0 92%);
            clip-path: polygon(0% 0%, 100% 0%, 100% 92%, 53% 92%, 50% 100%, 47% 92%, 0 92%);
    height: 180px;
  }
  .page-concept .concept-area.t-m40 {
    margin-top: 20px;
  }
}

.page-point {
  margin: 0px auto 0;
  position: relative;
  max-width: 1500px;
  z-index: 1;
  padding: 80px 40px 60px;
}
.page-point .mtitle {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: upright;
  position: -webkit-sticky;
  position: sticky;
  top: 150px;
  margin: 0 auto 0 0;
}
.page-point .mtitle.max .eng {
  font-size: 4rem;
}
@media all and (max-width: 639px) {
  .page-point {
    padding: 40px 20px;
  }
  .page-point ul {
    margin-top: 70px;
  }
  .page-point .concept-area {
    margin-top: 10px;
  }
  .page-point .mtitle {
    -ms-writing-mode: initial;
        writing-mode: initial;
  }
  .page-point .mtitle.max {
    padding: 0;
  }
}

.page-box {
  margin: 100px auto 0;
}
.page-box .detail-box {
  position: relative;
  padding: 100px 40px;
  z-index: 1;
  color: #fff;
  margin: 0 auto;
}
.page-box .detail-box:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgb(255, 255, 255);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(216, 154, 74) 20%, rgb(139, 100, 44) 80%, rgba(255, 255, 255, 0) 100%);
  opacity: 0.5;
  z-index: -1;
}
.page-box .detail-box .detail-bg {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/mouthpiece-bg.jpg) no-repeat right;
  background-size: cover;
  z-index: -2;
  top: 0;
  left: 0;
}
.page-box .detail-box .detail-bg.type2 {
  background: url(../img/ceramic-bg.jpg) no-repeat right;
  background-size: cover;
}
.page-box .detail-box .inner {
  max-width: 1000px;
  margin: 0 auto 0 0;
}
.page-box .detail-box .main-box {
  max-width: 600px;
  margin: 40px auto 0;
}
@media all and (max-width: 639px) {
  .page-box .detail-box {
    padding: 30px 20px;
  }
  .page-box .detail-box.t-m100 {
    margin-top: 50px;
  }
  .page-box .detail-box p {
    text-align: left;
  }
  .page-box .detail-box p.txtdeko-2 {
    text-align: center;
  }
}
@media all and (max-width: 639px) {
  .page-box {
    margin: 0 auto;
  }
}

.page-flow {
  margin: 100px auto 0;
  position: relative;
  max-width: 1000px;
  z-index: 1;
}
.page-flow.single {
  padding: 20px 0 0;
}
.page-flow ul {
  max-width: 1000px;
  /*margin: 80px auto 0;*/
  margin: 20px auto 0;
}
.page-flow li {
  margin-bottom: 20px;
  color: #fff;
  position: relative;
  padding: 40px 40px 40px;
}
.page-flow .list2 {
  margin-top: 10px;
  padding: 0;
}
.page-flow .list2 li {
  margin-top: 20px;
  padding: 0;
}
.page-flow .photo {
  height: 100%;
}
.page-flow .photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-flow .flow-icon {
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 92%, 0 92%);
          clip-path: polygon(0% 0%, 100% 0%, 100% 92%, 0 92%);
  background: rgb(196, 174, 153);
  position: relative;
  position: absolute;
  top: 30px;
  left: 24px;
}
.page-flow .flow-icon.flow-1 {
  background: #b0aba6;
}
.page-flow .flow-icon.flow-2 {
  background: linear-gradient(142deg, rgb(230, 212, 197) 0%, rgb(212, 191, 171) 30%, rgb(199, 181, 165) 65%, rgb(172, 147, 128) 100%);
}
.page-flow .flow-icon.flow-3 {
  background: linear-gradient(142deg, rgb(226, 209, 193) 0%, rgb(214, 192, 172) 30%, rgb(187, 163, 141) 65%, rgb(158, 131, 106) 100%);
}
.page-flow .flow-icon.flow-4 {
  background: linear-gradient(142deg, rgb(206, 186, 167) 0%, rgb(196, 170, 146) 30%, rgb(166, 142, 119) 65%, rgb(141, 117, 94) 100%);
}
.page-flow .flow-icon.flow-5 {
  background: linear-gradient(142deg, rgb(204, 173, 144) 0%, rgb(180, 151, 122) 30%, rgb(156, 129, 102) 65%, rgb(126, 100, 76) 100%);
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 92%, 0 92%);
          clip-path: polygon(0% 0%, 100% 0%, 100% 92%, 0 92%);
}
.page-flow .flow-icon .num {
  margin: 0 auto;
  text-align: center;
  font-size: 4rem;
  font-weight: 300;
  padding: 0px 20px 5px;
}
.page-flow .flow-txt {
  color: #333;
  margin-top: 10px;
}
@media all and (max-width: 639px) {
  .page-flow {
    padding: 40px 0px;
  }
  .page-flow .flow-photo {
    height: 120px;
  }
  .page-flow .flow-icon .num {
    font-size: 2rem;
  }
  .page-flow .flow-txt {
    font-size: 1.1rem;
  }
  .page-flow .txtdeko5 {
    margin-top: 0;
  }
  .page-flow li {
    padding: 20px;
  }
}

.page-box2 {
  margin-bottom: 100px;
}
.page-box2 .inner {
  margin: 0 auto;
  max-width: 1500px;
  padding: 100px 0;
  position: relative;
  z-index: 1;
}
.page-box2 .txtarea {
  margin: 100px auto 0;
  font-family: "Shippori Mincho", serif, "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
}
.page-box2 .txtarea .main {
  font-size: 2rem;
  color: #5e5043;
}
.page-box2 .photo {
  position: relative;
  z-index: 1;
}
.page-box2 .photo:before {
  position: absolute;
  content: "";
  width: 130%;
  height: 60%;
  background: url(../img/bg-05.jpg) no-repeat;
  background-size: cover;
  z-index: -1;
  right: -40%;
  top: 20%;
  opacity: 0.7;
}
.page-box2 .photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media all and (max-width: 896px) {
  .page-box2 .txtarea {
    padding: 20px;
    font-size: 1.3rem;
  }
}
@media all and (max-width: 639px) {
  .page-box2 .inner {
    padding: 50px 0;
  }
  .page-box2 .txtarea {
    margin: 0 auto;
    font-size: 1.2rem;
  }
  .page-box2 .txtarea .main {
    font-size: 1.6rem;
    color: #5e5043;
    text-align: left;
  }
  .page-box2 .photo {
    margin-top: 40px;
    height: 220px;
  }
  .page-box2 .photo img {
    height: 220px;
  }
}

.page-list {
  max-width: 1000px;
  margin: 40px auto 0;
}

.page-main-box {
  max-width: none;
  margin: 130px auto 100px;
  position: relative;
  z-index: 1;
}
.page-main-box .inner {
  width: 100%;
  padding: 0;
  max-width: 1500px;
}
.page-main-box .titlearea {
  margin-top: 80px;
  padding: 0 40px;
  position: relative;
}
.page-main-box .titlearea:before {
  position: absolute;
  content: "";
  width: 160%;
  height: 77%;
  bottom: -6%;
  left: 0%;
  background: url(../img/bg-03.jpg) no-repeat;
  background-size: cover;
  opacity: 0.5;
  z-index: -1;
}
.page-main-box .titlearea .main {
  font-size: 2rem;
  color: #5e5043;
}
.page-main-box .titlearea .main-min {
  font-size: 1.4rem;
  color: #333;
}
.page-main-box .titlearea .txt {
  margin: 50px auto 0;
  font-family: "Shippori Mincho", serif, "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  font-weight: normal;
  font-size: 1.7rem;
  background-color: #fff;
  padding: 50px 60px;
  max-width: 100%;
  box-shadow: 0 0 10px rgba(94, 80, 67, 0.05);
}
.page-main-box .photoarea {
  text-align: center;
  position: relative;
}
.page-main-box .photoarea .photo {
  height: 500px;
}
.page-main-box .photoarea img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-main-box .eng-title {
  position: absolute;
  bottom: 0%;
  left: 9%;
  font-size: 12rem;
  font-family: "Nanum Myeongjo", serif;
  font-weight: 400;
  color: rgb(133, 111, 83);
  opacity: 0.4;
}
@media all and (max-width: 1100px) {
  .page-main-box .photoarea .photo {
    height: 530px;
  }
  .page-main-box .titlearea .txt {
    margin: 40px auto 0 auto;
    padding: 40px 40px;
    font-size: 1.2rem;
    max-width: 100%;
  }
  .page-main-box .titlearea .main {
    font-size: 1.6rem;
  }
}
@media all and (max-width: 896px) {
  .page-main-box .titlearea {
    margin-top: 30px;
  }
  .page-main-box .titlearea .txt .main {
    font-size: 1.5rem;
  }
}
@media all and (max-width: 639px) {
  .page-main-box {
    margin-top: 80px;
  }
  .page-main-box .photoarea {
    margin-top: 40px;
  }
  .page-main-box .photoarea .photo {
    height: 180px;
  }
  .page-main-box .titlearea {
    margin-top: 20px;
    padding: 0 20px;
  }
  .page-main-box .titlearea:before {
    width: 100%;
    height: 70%;
    bottom: -10%;
    right: 0%;
  }
  .page-main-box .titlearea .txt {
    padding: 20px;
  }
  .page-main-box .titlearea .txt .main {
    font-size: 1.3rem;
  }
}

/* contents
----------------------------------*/
.single {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 0;
  position: relative;
}
@media all and (max-width: 1100px) {
  .single {
    padding: 80px 10px;
  }
}
.single.bgwhite {
  padding: 40px 0;
  background-color: #fff;
}

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

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

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

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

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

.lsingle {
  float: left;
}

.rsingle {
  float: right;
}

.mbox {
  background: #fefefe;
  padding: 30px;
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}
.mbox.transparent {
  background: transparent;
}
@media all and (max-width: 639px) {
  .mbox {
    padding: 15px 10px;
  }
}
.mbox.b-top {
  border-top: 5px solid #727171;
  border-left: 5px solid #b0aba6;
  box-shadow: 10px 10px 1px 1px rgba(0, 0, 0, 0.4);
}

.mbox2 {
  background: rgba(246, 239, 230, 0.8);
  padding: 30px;
  border: 2px solid #f6efe6;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}
@media all and (max-width: 639px) {
  .mbox2 {
    padding: 15px;
  }
}

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

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

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

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

#main {
  float: left;
  width: 76%;
}
#main .mbox {
  min-height: 300px;
  background-color: #ffffff;
}
@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: -webkit-sticky;
  position: sticky;
  right: 0;
  top: 0;
  width: 21%;
  padding-right: 10px;
}
@media all and (max-width: 896px) {
  #side {
    float: none;
    width: 100%;
    position: static;
    margin-top: 40px;
  }
}

/* mtitle
----------------------------------*/
.mtitle {
  margin: 0 auto 40px;
  position: relative;
  text-align: center;
}
.mtitle .eng {
  font-size: 4rem;
  color: #333;
  display: block;
  font-family: "Nanum Myeongjo", serif;
  font-weight: 400;
  line-height: 1;
  position: absolute;
  left: 0;
  right: 0;
  top: 26px;
  margin: 0 auto;
  color: #8d755e;
  opacity: 0.4;
}
.mtitle .ja {
  position: relative;
  font-size: 2.8rem;
  color: rgb(0, 0, 0);
  letter-spacing: 0.15em;
  font-family: "Shippori Mincho", serif, "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  font-weight: normal;
}
.mtitle.mtitle-line .ja {
  display: inline-block;
}
.mtitle.mtitle-line .ja:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 6px;
  background: rgb(255, 255, 255);
  background: linear-gradient(149deg, rgba(255, 255, 255, 0) 0%, rgb(208, 180, 143) 31%, rgb(222, 203, 177) 68%, rgba(255, 255, 255, 0) 100%);
  bottom: -20px;
  left: 0;
}
.mtitle.white {
  color: #fff;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}
.mtitle.white span {
  color: #fff;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}
.mtitle.white span:after {
  background-color: #eee;
}
.mtitle.white span.ja {
  border-bottom-color: #fefefe;
}
.mtitle.white.mtitle-line .ja {
  display: inline-block;
}
.mtitle.white.mtitle-line .ja:before {
  background: url(../img/mtitle-line-white.png) repeat-x;
}
.mtitle.max .eng {
  font-size: 10rem;
  top: -20px;
  opacity: 0.2;
}
.mtitle.max .ja {
  font-size: 3rem;
}
.mtitle.max .ja span {
  font-size: 3.6rem;
}
.mtitle.max .ja .gold {
  font-size: 3.8rem;
}
.mtitle.max .ja:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 6px;
  background: rgb(255, 255, 255);
  background: linear-gradient(149deg, rgba(255, 255, 255, 0) 0%, rgb(217, 203, 185) 31%, rgb(217, 204, 187) 68%, rgba(255, 255, 255, 0) 100%);
  bottom: -40px;
  left: 0;
}
.mtitle.max.type-left {
  text-align: left;
}
@media all and (max-width: 1570px) {
  .mtitle.max .eng {
    font-size: 9rem;
    top: -20px;
    opacity: 0.2;
  }
}
@media all and (max-width: 1100px) {
  .mtitle.max .eng {
    font-size: 7rem;
    top: -60px;
    opacity: 0.2;
  }
}
@media all and (max-width: 896px) {
  .mtitle.max {
    padding: 0 20px;
  }
  .mtitle.max .eng {
    font-size: 4rem;
    top: -10px;
    opacity: 0.2;
  }
  .mtitle.max .ja {
    font-size: 2.2rem;
  }
  .mtitle.max .ja span {
    font-size: 2.6rem;
  }
  .mtitle.max .ja .gold {
    font-size: 3rem;
  }
  .mtitle.max.type-left {
    text-align: center;
  }
}
@media all and (max-width: 639px) {
  .mtitle {
    text-align: center;
  }
  .mtitle .eng {
    font-size: 1.5rem;
  }
  .mtitle .ja {
    font-size: 1.8rem;
    line-height: 1.4;
    padding-top: 10px;
    display: inline-block;
  }
  .mtitle.max .ja {
    font-size: 1.8rem;
  }
  .mtitle.max .ja span {
    font-size: 2.2rem;
  }
  .mtitle.max .ja .gold {
    font-size: 2.6rem;
  }
}

.mtitle2 {
  width: 100%;
  position: relative;
  margin-bottom: 20px;
  text-align: center;
}
.mtitle2 .ja {
  font-size: 2.4rem;
  line-height: 1.4;
  color: #131313;
  text-align: center;
  display: block;
  font-weight: normal;
  color: #727171;
  padding-bottom: 20px;
  position: relative;
}
.mtitle2 .ja span {
  font-size: 3rem;
  color: #b0aba6;
}
.mtitle2 .ja:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 6px;
  background: url(../img/mtext-line.png) repeat-x;
  background-size: 22px 6px;
  left: 0;
  bottom: 10px;
}
.mtitle2 .ja.type2:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 12px;
  background: url(../img/mtext-line2.png) repeat-x;
  background-size: 56px 11px;
  left: 0;
  bottom: 0;
}
.mtitle2 .eng {
  flex: 1;
  font-size: 3.2rem;
  color: #727171;
  line-height: 1;
  font-family: "Share", cursive;
  font-weight: 600;
  text-transform: uppercase;
}
@media all and (max-width: 639px) {
  .mtitle2 {
    flex-direction: column;
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .mtitle2 .eng {
    font-size: 2.6rem;
    flex: 0 1 auto;
    margin-left: auto;
    line-height: 1.3;
  }
  .mtitle2 .ja {
    font-size: 1.6rem;
  }
  .mtitle2 .ja span {
    font-size: 2rem;
    color: #b0aba6;
  }
}

.mtitle2-2 {
  width: 100%;
  display: flex;
}
.mtitle2-2 .eng {
  flex: 1;
  font-size: 3.2rem;
  color: #727171;
  margin-left: 20px;
  line-height: 1;
  font-family: "Share", cursive;
  font-weight: 600;
  text-transform: uppercase;
}
.mtitle2-2 .eng.type-top {
  position: absolute;
  right: 0;
  top: -20px;
}
@media all and (max-width: 639px) {
  .mtitle2-2 {
    flex-direction: column;
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .mtitle2-2 .eng {
    font-size: 2.6rem;
    flex: 0 1 auto;
    margin-left: auto;
    line-height: 1.3;
  }
  .mtitle2-2 .ja {
    font-size: 1.8rem;
  }
}

.mtitle3 {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-feature-settings: "pkna";
  position: absolute;
  min-height: 100px;
  top: 0;
  left: 0;
}
.mtitle3 .ja {
  display: block;
  font-size: 2.8rem;
  color: #222;
  letter-spacing: 0.2em;
  padding-right: 5px;
  line-height: 2;
}
.mtitle3 .eng {
  display: block;
  font-family: "Share", cursive;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 2rem;
  color: #dd7687;
}
@media all and (max-width: 639px) {
  .mtitle3 {
    -ms-writing-mode: inherit;
        writing-mode: inherit;
    position: static;
    margin-bottom: 20px;
    min-height: initial;
    min-height: auto;
  }
  .mtitle3 .ja {
    font-size: 1.6rem;
  }
  .mtitle3 .eng {
    font-size: 1.4rem;
  }
}

.mtitle_line {
  padding-bottom: 20px;
  position: relative;
  font-weight: 600;
  margin-bottom: 30px;
  color: #dd7687;
  border-top: 2px solid #dd7687;
  padding: 8px 10px 20px;
}
.mtitle_line span {
  font-size: 1.4rem;
  color: #dd7687;
}
.mtitle_line:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  content: "";
  opacity: 0.5;
  background-image: repeating-linear-gradient(-45deg, #ccc, #ccc 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: "Share", cursive;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 5rem;
}
.mtitle_balloon span:before, .mtitle_balloon span:after {
  content: "";
  display: block;
  border-bottom: 3px solid #333;
  position: absolute;
  width: 50%;
  bottom: 6px;
}
.mtitle_balloon span:before {
  left: -5px;
}
.mtitle_balloon span:after {
  right: -5px;
}
.mtitle_balloon span i {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 3px solid #333;
  border-right: 3px solid #333;
  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: #dd7687;
}
@media all and (max-width: 639px) {
  .mtitle-bll {
    font-size: 1.6rem;
  }
}

.mtitle4 {
  font-weight: normal;
  display: table;
}
.mtitle4 .ja {
  font-size: 1.6rem;
  display: table-cell;
}
.mtitle4 .eng {
  color: #55725a;
  font-weight: bold;
  padding-right: 5px;
  font-size: 2rem;
  display: table-cell;
}
@media all and (max-width: 639px) {
  .mtitle4 .ja {
    font-size: 1.2rem;
  }
  .mtitle4 .eng {
    font-size: 1.8rem;
  }
}

.mtitle_sub {
  padding-left: 0.5em;
  font-weight: 600;
  position: relative;
  border-left: 6px solid #dd7687;
  margin: 8px 0 15px;
  color: #5e5043;
  line-height: 1.4;
  text-align: left;
}
.mtitle_sub span {
  color: #dd7687;
  padding-left: 5px;
  font-size: 0.9em;
}
.mtitle_sub:before {
  position: absolute;
  left: -6px;
  bottom: 0;
  content: "";
  width: 6px;
  height: 50%;
  background-color: #727171;
}

.mtitle_box {
  background: #40372e;
  color: #fff;
  font-size: 1.6rem;
  position: relative;
  padding: 15px 30px 15px 10px;
  margin-bottom: 20px;
  font-family: "Shippori Mincho", serif, "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  line-height: 1.4;
  display: flex;
  align-items: center;
}
.mtitle_box .profile {
  text-align: right;
  color: #fff;
  font-size: 12px;
  margin-left: auto;
  padding-right: 20px;
  color: #fff778;
}
.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;
  }
}

.mtext1 {
  font-size: 2.4rem;
  line-height: 1.6;
  color: #dd7687;
}
@media all and (max-width: 639px) {
  .mtext1 {
    font-size: 1.5rem;
    line-height: 1.8;
  }
}
.mtext1 .txtdeko {
  background-color: #dd7687;
  color: #fff;
  padding: 5px 20px;
  font-size: 1.4rem;
}
.mtext1 .txtdeko-min {
  font-size: 1.4rem;
}

.mtext2 {
  font-size: 2rem;
  letter-spacing: 0.1rem;
  line-height: 1.4;
}
@media all and (max-width: 639px) {
  .mtext2 {
    font-size: 1.4rem;
  }
}

.mtext3 {
  font-size: 2rem;
  letter-spacing: 0.1rem;
  line-height: 1.4;
  text-align: center;
}
.mtext3 .mainttl {
  font-size: 4rem;
  font-family: "Share", cursive;
  font-weight: 600;
  text-transform: uppercase;
}
@media all and (max-width: 639px) {
  .mtext3 {
    font-size: 1.4rem;
  }
}

.mtitle_category {
  margin-bottom: 15px;
  font-size: 1.8rem;
  font-weight: normal;
}
.mtitle_category:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0ca";
  font-weight: 900;
  margin-right: 5px;
  color: #dd7687;
}

/* btn
----------------------------------*/
.btn-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.btn-wrap p:first-of-type {
  margin-right: 25px;
}
@media all and (max-width: 639px) {
  .btn-wrap p:first-of-type {
    margin: 0 auto;
  }
}
@media all and (max-width: 639px) {
  .btn-wrap {
    display: block;
  }
}

.btn01 a {
  background: #5e5043;
  text-align: center;
  width: 300px;
  margin: 15px auto;
  color: #fff;
  display: block;
  padding: 8px 5px;
  font-weight: 700;
  border: 2px solid #222;
  border-radius: 35px;
}
.btn01 a:hover {
  background: #dd7687;
  color: #fefefe;
}
.btn01.mail {
  flex-basis: 100%;
}
.btn01.mail a {
  background: #d3dd4c;
  margin: 15px auto 25px;
}
.btn01.mail a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
  margin-right: 5px;
}
.btn01.left a {
  margin: 15px 0;
}
@media all and (max-width: 639px) {
  .btn01 a {
    width: 95%;
  }
}

.btn02 {
  width: 200px;
  margin: 20px auto 20px;
}
.btn02 a {
  display: block;
  position: relative;
  padding: 15px 0;
  background-color: #f6efe6;
  border: 1px solid #5e5043;
  line-height: 24px;
  letter-spacing: 0.1rem;
  font-size: 1.6rem;
  text-align: center;
  color: #5e5043;
}
.btn02 a i {
  display: block;
  position: absolute;
  top: 50%;
  right: -10px;
  width: 50px;
  height: 1px;
  background-color: #5e5043;
  transition: all 0.3s ease;
}
.btn02 a:hover i {
  width: 34px;
}
@media all and (max-width: 639px) {
  .btn02 a {
    font-size: 1.2rem;
  }
}

.btn03 a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin: 30px auto;
  padding: 10px 20px;
  width: 300px;
  text-align: center;
  color: #fff;
  font-size: 1.6rem;
  border: 2px solid #727171;
  transition: 0.3s;
}
.btn03 a::before {
  content: "";
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 100%;
  height: 2px;
  background-color: #727171;
  transition: 0.2s ease 0s;
}
.btn03 a::after {
  content: "";
  position: absolute;
  top: 10px;
  right: -10px;
  width: 2px;
  height: 100%;
  background-color: #727171;
  transition: 0.2s ease 0.2s;
}
.btn03 a:hover::before {
  width: 0%;
}
.btn03 a:hover::after {
  height: 0%;
}
.btn03 a:hover {
  text-decoration: none;
  background: rgb(131, 88, 27);
  background: linear-gradient(157deg, rgb(131, 88, 27) 0%, rgb(246, 184, 39) 100%);
}

.btn04 {
  text-align: center;
}
.btn04 .btn-inner {
  font-size: 1.6rem;
  padding: 15px 0;
  max-width: 350px;
  margin: 0 auto;
}
.btn04 .btn-inner:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
}
.btn04 .btn-inner.type2:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
}
@media all and (max-width: 639px) {
  .btn04 .btn-inner {
    font-size: 1.2rem;
  }
}
.btn04.white a:hover {
  color: #dd7687;
  border: 0.9px solid #fff;
  box-shadow: #fff 0 80px 0px 2px inset;
}
.btn04.basecolor a {
  color: #dd7687;
  border-color: #dd7687;
}
.btn04.basecolor a:before {
  background-color: #dd7687;
}
.btn04.basecolor a:after {
  background-color: #dd7687;
}
.btn04 a {
  color: #fff;
  width: 100%;
  font-size: 1.8rem;
  text-align: center;
  letter-spacing: 0.2rem;
  padding: 8px 40px;
  border: 0.9px solid #dd7687;
  background-color: none;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  border-radius: 50px;
  font-weight: normal;
}
.btn04 a:before {
  position: absolute;
  content: "";
  width: 94%;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  border-radius: 50px;
  z-index: -1;
  height: 100%;
  background-color: #dd7687;
}
.btn04 a:hover {
  color: #fff;
  border: 0.9px solid #dd7687;
  box-shadow: #dd7687 0 80px 0px 2px inset;
  transition: 0.4s;
}
.btn04 a:hover:before {
  transition: 0.4s;
  width: 100%;
}
@media all and (max-width: 1100px) {
  .btn04 a {
    display: block;
  }
}
@media all and (max-width: 639px) {
  .btn04 a {
    font-size: 1.2rem;
  }
}

/* menu_bnr
----------------------------------*/
.buttonBoxarea {
  display: block;
  width: 100%;
  margin: 30px auto;
}

.buttonBox {
  margin: 0 auto 40px;
  position: relative;
  width: 100%;
  max-width: 420px;
  min-width: 150px;
  flex: 20%;
}
.buttonBox .button {
  padding: 5% 0 0;
  width: 100%;
  height: 80px;
  position: relative;
  background: rgba(128, 116, 85, 0.3);
  text-transform: uppercase;
  color: white;
  font-weight: 700;
  letter-spacing: 1px;
  border: none;
  font-size: 2rem;
  text-align: center;
  align-items: center;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
}
@media all and (max-width: 896px) {
  .buttonBox .button {
    padding: 6% 0 0;
  }
}
@media all and (max-width: 639px) {
  .buttonBox .button {
    padding: 10% 0 0;
  }
}
.buttonBox .button .button_bnr {
  color: #fff;
}
.buttonBox .button .button_bnr span {
  text-align: center;
  margin: 0 auto;
  display: block;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  position: relative;
}
@media all and (max-width: 639px) {
  .buttonBox .button .button_bnr span {
    font-size: 1.3rem;
    padding-right: 60px;
  }
}
.buttonBox .button .button_bnr span::before, .buttonBox .button .button_bnr span::after {
  content: "";
  position: absolute;
  background: #fff;
}
.buttonBox .button .button_bnr span::before {
  top: 21px;
  right: 20px;
  height: 1px;
  width: 42px;
}
@media all and (max-width: 639px) {
  .buttonBox .button .button_bnr span::before {
    top: 11px;
  }
}
.buttonBox .button .button_bnr span::after {
  top: 17px;
  right: 19px;
  height: 1px;
  width: 10px;
  transform: rotate(45deg);
}
@media all and (max-width: 639px) {
  .buttonBox .button .button_bnr span::after {
    top: 7px;
  }
}
.buttonBox::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #727171;
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform ease 0.3s;
}
.buttonBox:hover::before {
  background: rgb(195, 163, 73);
  transform-origin: 0% 50%;
  transform: scaleX(1);
}
.buttonBox .border,
.buttonBox .border2 {
  position: absolute;
  background: none;
  transition: all 0.5s ease-in-out;
}
.buttonBox .border {
  top: 0;
  left: 0;
  border-left: 1px solid #d3dd4c;
  border-top: 1px solid #d3dd4c;
  width: 30px;
  height: 30px;
}
.buttonBox .border2 {
  bottom: 0;
  right: 0;
  border-right: 1px solid #d3dd4c;
  border-bottom: 1px solid #d3dd4c;
  width: 30px;
  height: 30px;
}
.buttonBox:hover .border, .buttonBox:hover .border2 {
  width: 102%;
  height: 105%;
}

/* news
----------------------------------*/
.news-bl {
  overflow: hidden;
}
.news-bl dt {
  float: left;
  width: 8em;
  padding: 5px;
  line-height: 1.3;
  color: #dd7687;
  text-align: center;
  border: 1px solid #dd7687;
  border-radius: 10px;
  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;
  color: #fff;
}
.news-bl dd a {
  color: #5e5043;
  background-image: linear-gradient(to right, #dd7687, #dd7687);
  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;
  }
}

/* page-title
----------------------------------*/
.page-title {
  margin: 0px auto 0;
  position: relative;
  z-index: 1;
  background: url(../img/1.jpg) no-repeat 50%/cover;
  overflow: hidden;
  max-width: 100%;
  z-index: 2;
}
.page-title.type1 {
  background: url(../img/page-title01.jpg) no-repeat 50%/cover;
}
.page-title.type2 {
  background: url(../img/page-title02.jpg) no-repeat 50%/cover;
}
.page-title.type3 {
  background: url(../img/page-title03.jpg) no-repeat 50%/cover;
}
.page-title.type4 {
  background: url(../img/page-title04.jpg) no-repeat 50%/cover;
}
.page-title.type5 {
  background: url(../img/page-title05.jpg) no-repeat 50%/cover;
}
.page-title.type6 {
  background: url(../img/page-title06.jpg) no-repeat 50%/cover;
}
.page-title.type7 {
  background: url(../img/page-title07.jpg) no-repeat 50%/cover;
}
.page-title.type8 {
  background: url(../img/page-title08.jpg) no-repeat 50%/cover;
}
.page-title:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: #111;
  opacity: 0.2;
}
.page-title > .inner {
  margin: 0 auto;
  padding: 250px 0 0px;
  max-width: 1500px;
}
.page-title .page-lead {
  color: #5e5043;
  font-size: 2rem;
  text-shadow: 0 0 4px rgba(94, 80, 67, 0.1);
}
.page-title .page-lead span {
  display: block;
}
.page-title .page-lead .ja {
  font-size: 2rem;
  color: #ffffff;
}
.page-title .page-lead .eng {
  font-size: 5rem;
  color: #fff;
  font-family: "Share", cursive;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-transform: initial;
  font-weight: normal;
}
.page-title header {
  background-color: #fff;
}
@media all and (max-width: 1367px) {
  .page-title {
    margin: 0px auto 0;
  }
  .page-title .breadcrumb {
    padding-left: 40px;
  }
}
@media all and (max-width: 896px) {
  .page-title {
    margin: 0px auto 0;
  }
  .page-title > .inner {
    width: 100%;
    padding: 200px 20px 0;
  }
  .page-title .breadcrumb {
    padding-left: 20px;
  }
  .page-title .page-lead {
    font-size: 1.5rem;
  }
  .page-title .page-lead .ja {
    font-size: 1.5rem;
  }
  .page-title .page-lead .eng {
    font-size: 3rem;
  }
  .page-title #l-header .inner {
    padding: 8px 0 30px;
  }
  .page-title #l-header .header_contact {
    top: 10px;
  }
  .page-title #l-header.is-fixed .inner {
    padding: 8px 0 10px;
  }
}
@media all and (max-width: 639px) {
  .page-title {
    margin: 0px auto 0;
  }
  .page-title > .inner {
    width: 100%;
    padding: 200px 20px 0;
  }
  .page-title .breadcrumb {
    padding-left: 20px;
    margin-bottom: 40px;
  }
  .page-title .page-lead {
    font-size: 1.5rem;
  }
  .page-title .page-lead .ja {
    font-size: 1.2rem;
  }
  .page-title .page-lead .eng {
    font-size: 1.8rem;
  }
}

.bg-gradient {
  position: relative;
  position: relative;
}
.bg-gradient:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: linear-gradient(to bottom, #727171, #fff);
  z-index: -2;
  opacity: 0.3;
}

.bg-01 {
  position: relative;
}
.bg-01:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../img/bg-01.jpg) no-repeat center/cover;
  background-attachment: fixed;
}
@media all and (max-width: 1100px) {
  .bg-01:before {
    background-attachment: scroll;
  }
}
.bg-01.type1:before {
  background: #fefefe;
  opacity: 1;
}

.bg-02 {
  position: relative;
  padding: 100px 0 0;
}
.bg-02 .ttlarea {
  position: relative;
}
.bg-02 .ttlarea .mtitle {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 40%;
}
.bg-02 .single02 {
  margin-top: -100px;
  padding: 0;
  background-color: #dd7687;
  width: 100%;
}
@media all and (max-width: 639px) {
  .bg-02 {
    padding-top: 50px;
  }
  .bg-02:before {
    width: 100%;
    height: 300px;
  }
  .bg-02 .single02 {
    width: 100%;
    margin-top: 0px;
  }
  .bg-02 .ttlarea .photo img {
    width: 100%;
    height: 200px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

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

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

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

.bg-06 {
  position: relative;
  background: url(../img/bg-06.jpg) no-repeat center top/cover;
  background-attachment: fixed;
}

.bg-medi01 {
  position: relative;
  padding: 50px 0;
}
.bg-medi01:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.7;
  background: url(../img/bg-medi01.jpg) no-repeat center top/cover;
}
.bg-medi01.type2:before {
  background: url(../img/bg-medi02.jpg) no-repeat center top/cover;
}
.bg-medi01.type3:before {
  background: url(../img/bg-medi03.jpg) no-repeat center top/cover;
}
.bg-medi01.type4:before {
  background: url(../img/bg-medi04.jpg) no-repeat center top/cover;
}
.bg-medi01.type5:before {
  background: url(../img/bg-medi05.jpg) no-repeat center top/cover;
}
.bg-medi01.type6:before {
  background: url(../img/bg-medi06.jpg) no-repeat center top/cover;
}
.bg-medi01.type7:before {
  background: url(../img/bg-medi07.jpg) no-repeat center top/cover;
}

.bg-beau01 {
  position: relative;
  padding: 50px 0;
}
.bg-beau01:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.7;
  background: url(../img/bg-beauty01.jpg) no-repeat center top/cover;
}
.bg-beau01.type2:before {
  background: url(../img/bg-beauty02.jpg) no-repeat center top/cover;
}
.bg-beau01.type3:before {
  background: url(../img/bg-beauty03.jpg) no-repeat center top/cover;
}
.bg-beau01.type4:before {
  background: url(../img/bg-beauty04.jpg) no-repeat center top/cover;
}
.bg-beau01.type5:before {
  background: url(../img/bg-beauty05.jpg) no-repeat center top/cover;
}
.bg-beau01.type6:before {
  background: url(../img/bg-beauty06.jpg) no-repeat center top/cover;
}

.mask {
  position: relative;
  -webkit-clip-path: circle(1%);
          clip-path: circle(1%);
  transition: 0.6s ease-in all;
}
.mask.on {
  -webkit-clip-path: circle(120%);
          clip-path: circle(120%);
}

.bg-white {
  position: relative;
  background: #fff;
}
.bg-white .bg-slide {
  padding: 100px 0 50px;
}

.bg-w {
  position: relative;
  margin-bottom: 50px;
  background: #fff;
}
.bg-w:before {
  position: absolute;
  content: "";
  width: calc(100% - 80px);
  height: 100%;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  background: #fefefe;
  z-index: -1;
}
@media all and (max-width: 639px) {
  .bg-w:before {
    width: calc(100% - 10px);
  }
}

.bg-base {
  background: rgba(114, 113, 113, 0.1);
}
.bg-base.type1 {
  background: transparent;
  margin-bottom: 40px;
  position: relative;
}
.bg-base.type1:before {
  position: absolute;
  content: "";
  width: calc(100% - 80px);
  height: 100%;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  background: #f6efe6;
  z-index: -1;
  opacity: 0.4;
}
@media all and (max-width: 1100px) {
  .bg-base.type1:before {
    width: calc(100% - 10px);
  }
}
.bg-base.type2 {
  background: transparent;
  margin-bottom: 40px;
  position: relative;
}
.bg-base.type2:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  z-index: -1;
  opacity: 0.4;
  background-image: linear-gradient(56deg, rgba(254, 254, 254, 0.05) 0%, rgba(254, 254, 254, 0.05) 69%, rgba(160, 160, 160, 0.05) 69%, rgba(160, 160, 160, 0.05) 100%), linear-gradient(194deg, rgba(102, 102, 102, 0.02) 0%, rgba(102, 102, 102, 0.02) 60%, rgba(67, 67, 67, 0.02) 60%, rgba(67, 67, 67, 0.02) 100%), linear-gradient(76deg, rgba(169, 169, 169, 0.06) 0%, rgba(169, 169, 169, 0.06) 89%, rgba(189, 189, 189, 0.06) 89%, rgba(189, 189, 189, 0.06) 100%), linear-gradient(326deg, rgba(213, 213, 213, 0.04) 0%, rgba(213, 213, 213, 0.04) 45%, rgba(66, 66, 66, 0.04) 45%, rgba(66, 66, 66, 0.04) 100%), linear-gradient(183deg, rgba(223, 223, 223, 0.01) 0%, rgba(223, 223, 223, 0.01) 82%, rgba(28, 28, 28, 0.01) 82%, rgba(28, 28, 28, 0.01) 100%), linear-gradient(3deg, rgba(20, 20, 20, 0.06) 0%, rgba(20, 20, 20, 0.06) 62%, rgba(136, 136, 136, 0.06) 62%, rgba(136, 136, 136, 0.06) 100%), linear-gradient(200deg, rgba(206, 206, 206, 0.09) 0%, rgba(206, 206, 206, 0.09) 58%, rgba(6, 6, 6, 0.09) 58%, rgba(6, 6, 6, 0.09) 100%), linear-gradient(304deg, rgba(162, 162, 162, 0.07) 0%, rgba(162, 162, 162, 0.07) 27%, rgba(24, 24, 24, 0.07) 27%, rgba(24, 24, 24, 0.07) 100%), linear-gradient(186deg, rgba(166, 166, 166, 0.04) 0%, rgba(166, 166, 166, 0.04) 5%, rgba(210, 210, 210, 0) 5%, rgba(210, 210, 210, 0) 100%), linear-gradient(90deg, rgb(15, 80, 24), rgb(25, 101, 28), rgb(39, 107, 68));
}
@media all and (max-width: 1100px) {
  .bg-base.type2:before {
    width: calc(100% - 10px);
  }
}

.bg-green {
  background: #55725a;
}
.bg-green.type1 {
  position: relative;
}
.bg-green.type1:before {
  position: absolute;
  content: "";
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.9;
  background-image: linear-gradient(330deg, rgba(2, 2, 2, 0.02) 0%, rgba(2, 2, 2, 0.02) 81%, transparent 81%, transparent 100%), linear-gradient(104deg, rgba(52, 52, 52, 0.01) 0%, rgba(52, 52, 52, 0.01) 24%, transparent 24%, transparent 100%), linear-gradient(273deg, rgba(52, 52, 52, 0.03) 0%, rgba(52, 52, 52, 0.03) 91%, transparent 91%, transparent 100%), linear-gradient(58deg, rgba(212, 212, 212, 0.03) 0%, rgba(212, 212, 212, 0.03) 51%, transparent 51%, transparent 100%), linear-gradient(297deg, rgba(201, 201, 201, 0.01) 0%, rgba(201, 201, 201, 0.01) 59%, transparent 59%, transparent 100%), linear-gradient(37deg, rgba(169, 169, 169, 0.03) 0%, rgba(169, 169, 169, 0.03) 12%, transparent 12%, transparent 100%), linear-gradient(27deg, rgba(144, 144, 144, 0.03) 0%, rgba(144, 144, 144, 0.03) 76%, transparent 76%, transparent 100%), linear-gradient(168deg, rgba(14, 14, 14, 0.03) 0%, rgba(14, 14, 14, 0.03) 31%, transparent 31%, transparent 100%), linear-gradient(237deg, rgba(96, 96, 96, 0.01) 0%, rgba(96, 96, 96, 0.01) 52%, transparent 52%, transparent 100%), linear-gradient(320deg, rgba(30, 30, 30, 0.03) 0%, rgba(30, 30, 30, 0.03) 52%, transparent 52%, transparent 100%), linear-gradient(271deg, rgba(64, 64, 64, 0.03) 0%, rgba(64, 64, 64, 0.03) 27%, transparent 27%, transparent 100%), linear-gradient(290deg, rgba(32, 32, 32, 0.01) 0%, rgba(32, 32, 32, 0.01) 21%, transparent 21%, transparent 100%), linear-gradient(124deg, rgba(231, 231, 231, 0.03) 0%, rgba(231, 231, 231, 0.03) 1%, transparent 1%, transparent 100%), linear-gradient(298deg, rgba(61, 61, 61, 0.03) 0%, rgba(61, 61, 61, 0.03) 46%, transparent 46%, transparent 100%), linear-gradient(222deg, rgba(216, 216, 216, 0.03) 0%, rgba(216, 216, 216, 0.03) 82%, transparent 82%, transparent 100%), linear-gradient(251deg, rgba(211, 211, 211, 0.01) 0%, rgba(211, 211, 211, 0.01) 57%, transparent 57%, transparent 100%), linear-gradient(200deg, rgba(71, 71, 71, 0.03) 0%, rgba(71, 71, 71, 0.03) 9%, transparent 9%, transparent 100%), linear-gradient(95deg, rgba(160, 160, 160, 0.01) 0%, rgba(160, 160, 160, 0.01) 59%, transparent 59%, transparent 100%), linear-gradient(275deg, rgba(160, 160, 160, 0.03) 0%, rgba(160, 160, 160, 0.03) 3%, transparent 3%, transparent 100%), linear-gradient(351deg, rgba(18, 18, 18, 0.02) 0%, rgba(18, 18, 18, 0.02) 26%, transparent 26%, transparent 100%), linear-gradient(245deg, rgba(103, 103, 103, 0.03) 0%, rgba(103, 103, 103, 0.03) 54%, transparent 54%, transparent 100%), linear-gradient(269deg, rgba(145, 145, 145, 0.03) 0%, rgba(145, 145, 145, 0.03) 76%, transparent 76%, transparent 100%), linear-gradient(150deg, rgba(202, 202, 202, 0.03) 0%, rgba(202, 202, 202, 0.03) 3%, transparent 3%, transparent 100%), linear-gradient(98deg, rgba(14, 14, 14, 0.03) 0%, rgba(14, 14, 14, 0.03) 97%, transparent 97%, transparent 100%), linear-gradient(170deg, rgba(142, 142, 142, 0.03) 0%, rgba(142, 142, 142, 0.03) 13%, transparent 13%, transparent 100%), linear-gradient(347deg, rgba(199, 199, 199, 0.01) 0%, rgba(199, 199, 199, 0.01) 73%, transparent 73%, transparent 100%), linear-gradient(263deg, rgba(176, 176, 176, 0.03) 0%, rgba(176, 176, 176, 0.03) 60%, transparent 60%, transparent 100%), linear-gradient(110deg, rgba(191, 191, 191, 0.03) 0%, rgba(191, 191, 191, 0.03) 83%, transparent 83%, transparent 100%), linear-gradient(198deg, rgba(142, 142, 142, 0.01) 0%, rgba(142, 142, 142, 0.01) 64%, transparent 64%, transparent 100%), linear-gradient(204deg, rgba(5, 5, 5, 0.03) 0%, rgba(5, 5, 5, 0.03) 64%, transparent 64%, transparent 100%), linear-gradient(351deg, rgba(83, 83, 83, 0.01) 0%, rgba(83, 83, 83, 0.01) 84%, transparent 84%, transparent 100%), linear-gradient(12deg, rgba(49, 49, 49, 0.01) 0%, rgba(49, 49, 49, 0.01) 57%, transparent 57%, transparent 100%), linear-gradient(288deg, rgba(141, 141, 141, 0.01) 0%, rgba(141, 141, 141, 0.01) 8%, transparent 8%, transparent 100%), linear-gradient(112deg, rgba(191, 191, 191, 0.01) 0%, rgba(191, 191, 191, 0.01) 8%, transparent 8%, transparent 100%), linear-gradient(230deg, rgba(46, 46, 46, 0.03) 0%, rgba(46, 46, 46, 0.03) 34%, transparent 34%, transparent 100%), linear-gradient(90deg, rgb(255, 255, 255), rgb(255, 255, 255));
}

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

.bg-gray2 {
  position: relative;
  margin-bottom: 40px;
}
.bg-gray2:before {
  position: absolute;
  content: "";
  width: calc(100% - 80px);
  height: 100%;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  background: #f3f6f6;
}
@media all and (max-width: 896px) {
  .bg-gray2:before {
    width: calc(100% - 10px);
  }
}

.bg-gray3 {
  position: relative;
}
.bg-gray3:before {
  position: absolute;
  content: "";
  left: 0;
  top: 200px;
  width: 100%;
  height: calc(100% - 200px);
  background-image: linear-gradient(15deg, #dd7687 0%, #727171 90%, #f1f0e7 90.1%, #f1f0e7 100%);
  opacity: 0.6;
}

.bg-999 {
  background: #aaa;
}

.bg-blue {
  background: rgba(221, 118, 135, 0.2);
}
.bg-blue.bg-half {
  background: transparent;
  background-image: linear-gradient(to bottom, transparent 0%, transparent 50%, #8c8a8a 50.1%, #8c8a8a 100%);
}

.bg-beige {
  position: relative;
  background: #f2edde;
}
.bg-beige.type1 {
  background: transparent;
}
.bg-beige.type1:before {
  position: absolute;
  content: "";
  width: calc(100% - 80px);
  height: 100%;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  background: #f2edde;
  z-index: -1;
  opacity: 0.8;
}
@media all and (max-width: 639px) {
  .bg-beige.type1:before {
    width: calc(100% - 10px);
  }
}

.bg-beige2 {
  background: #f2edde;
  position: relative;
}
.bg-beige2:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: #fff;
  -webkit-clip-path: polygon(12% 0, 100% 0%, 88% 100%, 0% 100%);
          clip-path: polygon(12% 0, 100% 0%, 88% 100%, 0% 100%);
}

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

.bg-darkgreen {
  position: relative;
  background: #88b486;
  margin: 100px 0;
}
.bg-darkgreen.type1 {
  position: relative;
}
.bg-darkgreen.type1:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  opacity: 0.3;
  background-image: linear-gradient(330deg, rgba(2, 2, 2, 0.02) 0%, rgba(2, 2, 2, 0.02) 81%, transparent 81%, transparent 100%), linear-gradient(104deg, rgba(52, 52, 52, 0.01) 0%, rgba(52, 52, 52, 0.01) 24%, transparent 24%, transparent 100%), linear-gradient(273deg, rgba(52, 52, 52, 0.03) 0%, rgba(52, 52, 52, 0.03) 91%, transparent 91%, transparent 100%), linear-gradient(58deg, rgba(212, 212, 212, 0.03) 0%, rgba(212, 212, 212, 0.03) 51%, transparent 51%, transparent 100%), linear-gradient(297deg, rgba(201, 201, 201, 0.01) 0%, rgba(201, 201, 201, 0.01) 59%, transparent 59%, transparent 100%), linear-gradient(37deg, rgba(169, 169, 169, 0.03) 0%, rgba(169, 169, 169, 0.03) 12%, transparent 12%, transparent 100%), linear-gradient(27deg, rgba(144, 144, 144, 0.03) 0%, rgba(144, 144, 144, 0.03) 76%, transparent 76%, transparent 100%), linear-gradient(168deg, rgba(14, 14, 14, 0.03) 0%, rgba(14, 14, 14, 0.03) 31%, transparent 31%, transparent 100%), linear-gradient(237deg, rgba(96, 96, 96, 0.01) 0%, rgba(96, 96, 96, 0.01) 52%, transparent 52%, transparent 100%), linear-gradient(320deg, rgba(30, 30, 30, 0.03) 0%, rgba(30, 30, 30, 0.03) 52%, transparent 52%, transparent 100%), linear-gradient(271deg, rgba(64, 64, 64, 0.03) 0%, rgba(64, 64, 64, 0.03) 27%, transparent 27%, transparent 100%), linear-gradient(290deg, rgba(32, 32, 32, 0.01) 0%, rgba(32, 32, 32, 0.01) 21%, transparent 21%, transparent 100%), linear-gradient(124deg, rgba(231, 231, 231, 0.03) 0%, rgba(231, 231, 231, 0.03) 1%, transparent 1%, transparent 100%), linear-gradient(298deg, rgba(61, 61, 61, 0.03) 0%, rgba(61, 61, 61, 0.03) 46%, transparent 46%, transparent 100%), linear-gradient(222deg, rgba(216, 216, 216, 0.03) 0%, rgba(216, 216, 216, 0.03) 82%, transparent 82%, transparent 100%), linear-gradient(251deg, rgba(211, 211, 211, 0.01) 0%, rgba(211, 211, 211, 0.01) 57%, transparent 57%, transparent 100%), linear-gradient(200deg, rgba(71, 71, 71, 0.03) 0%, rgba(71, 71, 71, 0.03) 9%, transparent 9%, transparent 100%), linear-gradient(95deg, rgba(160, 160, 160, 0.01) 0%, rgba(160, 160, 160, 0.01) 59%, transparent 59%, transparent 100%), linear-gradient(275deg, rgba(160, 160, 160, 0.03) 0%, rgba(160, 160, 160, 0.03) 3%, transparent 3%, transparent 100%), linear-gradient(351deg, rgba(18, 18, 18, 0.02) 0%, rgba(18, 18, 18, 0.02) 26%, transparent 26%, transparent 100%), linear-gradient(245deg, rgba(103, 103, 103, 0.03) 0%, rgba(103, 103, 103, 0.03) 54%, transparent 54%, transparent 100%), linear-gradient(269deg, rgba(145, 145, 145, 0.03) 0%, rgba(145, 145, 145, 0.03) 76%, transparent 76%, transparent 100%), linear-gradient(150deg, rgba(202, 202, 202, 0.03) 0%, rgba(202, 202, 202, 0.03) 3%, transparent 3%, transparent 100%), linear-gradient(98deg, rgba(14, 14, 14, 0.03) 0%, rgba(14, 14, 14, 0.03) 97%, transparent 97%, transparent 100%), linear-gradient(170deg, rgba(142, 142, 142, 0.03) 0%, rgba(142, 142, 142, 0.03) 13%, transparent 13%, transparent 100%), linear-gradient(347deg, rgba(199, 199, 199, 0.01) 0%, rgba(199, 199, 199, 0.01) 73%, transparent 73%, transparent 100%), linear-gradient(263deg, rgba(176, 176, 176, 0.03) 0%, rgba(176, 176, 176, 0.03) 60%, transparent 60%, transparent 100%), linear-gradient(110deg, rgba(191, 191, 191, 0.03) 0%, rgba(191, 191, 191, 0.03) 83%, transparent 83%, transparent 100%), linear-gradient(198deg, rgba(142, 142, 142, 0.01) 0%, rgba(142, 142, 142, 0.01) 64%, transparent 64%, transparent 100%), linear-gradient(204deg, rgba(5, 5, 5, 0.03) 0%, rgba(5, 5, 5, 0.03) 64%, transparent 64%, transparent 100%), linear-gradient(351deg, rgba(83, 83, 83, 0.01) 0%, rgba(83, 83, 83, 0.01) 84%, transparent 84%, transparent 100%), linear-gradient(12deg, rgba(49, 49, 49, 0.01) 0%, rgba(49, 49, 49, 0.01) 57%, transparent 57%, transparent 100%), linear-gradient(288deg, rgba(141, 141, 141, 0.01) 0%, rgba(141, 141, 141, 0.01) 8%, transparent 8%, transparent 100%), linear-gradient(112deg, rgba(191, 191, 191, 0.01) 0%, rgba(191, 191, 191, 0.01) 8%, transparent 8%, transparent 100%), linear-gradient(230deg, rgba(46, 46, 46, 0.03) 0%, rgba(46, 46, 46, 0.03) 34%, transparent 34%, transparent 100%), linear-gradient(90deg, rgb(255, 255, 255), rgb(255, 255, 255));
}
.bg-darkgreen.type2 {
  position: relative;
}
.bg-darkgreen.type2:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  opacity: 0.5;
  background-image: linear-gradient(56deg, rgba(254, 254, 254, 0.05) 0%, rgba(254, 254, 254, 0.05) 69%, rgba(160, 160, 160, 0.05) 69%, rgba(160, 160, 160, 0.05) 100%), linear-gradient(194deg, rgba(102, 102, 102, 0.02) 0%, rgba(102, 102, 102, 0.02) 60%, rgba(67, 67, 67, 0.02) 60%, rgba(67, 67, 67, 0.02) 100%), linear-gradient(76deg, rgba(169, 169, 169, 0.06) 0%, rgba(169, 169, 169, 0.06) 89%, rgba(189, 189, 189, 0.06) 89%, rgba(189, 189, 189, 0.06) 100%), linear-gradient(326deg, rgba(213, 213, 213, 0.04) 0%, rgba(213, 213, 213, 0.04) 45%, rgba(66, 66, 66, 0.04) 45%, rgba(66, 66, 66, 0.04) 100%), linear-gradient(183deg, rgba(223, 223, 223, 0.01) 0%, rgba(223, 223, 223, 0.01) 82%, rgba(28, 28, 28, 0.01) 82%, rgba(28, 28, 28, 0.01) 100%), linear-gradient(3deg, rgba(20, 20, 20, 0.06) 0%, rgba(20, 20, 20, 0.06) 62%, rgba(136, 136, 136, 0.06) 62%, rgba(136, 136, 136, 0.06) 100%), linear-gradient(200deg, rgba(206, 206, 206, 0.09) 0%, rgba(206, 206, 206, 0.09) 58%, rgba(6, 6, 6, 0.09) 58%, rgba(6, 6, 6, 0.09) 100%), linear-gradient(304deg, rgba(162, 162, 162, 0.07) 0%, rgba(162, 162, 162, 0.07) 27%, rgba(24, 24, 24, 0.07) 27%, rgba(24, 24, 24, 0.07) 100%), linear-gradient(186deg, rgba(166, 166, 166, 0.04) 0%, rgba(166, 166, 166, 0.04) 5%, rgba(210, 210, 210, 0) 5%, rgba(210, 210, 210, 0) 100%), linear-gradient(90deg, rgb(15, 80, 24), rgb(25, 101, 28), rgb(39, 107, 68));
}

.bg-gold {
  position: relative;
  background: #ccbf94;
}
.bg-gold.type1 {
  position: relative;
}
.bg-gold.type1:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  opacity: 0.5;
  background-image: linear-gradient(330deg, rgba(2, 2, 2, 0.02) 0%, rgba(2, 2, 2, 0.02) 81%, transparent 81%, transparent 100%), linear-gradient(104deg, rgba(52, 52, 52, 0.01) 0%, rgba(52, 52, 52, 0.01) 24%, transparent 24%, transparent 100%), linear-gradient(273deg, rgba(52, 52, 52, 0.03) 0%, rgba(52, 52, 52, 0.03) 91%, transparent 91%, transparent 100%), linear-gradient(58deg, rgba(212, 212, 212, 0.03) 0%, rgba(212, 212, 212, 0.03) 51%, transparent 51%, transparent 100%), linear-gradient(297deg, rgba(201, 201, 201, 0.01) 0%, rgba(201, 201, 201, 0.01) 59%, transparent 59%, transparent 100%), linear-gradient(37deg, rgba(169, 169, 169, 0.03) 0%, rgba(169, 169, 169, 0.03) 12%, transparent 12%, transparent 100%), linear-gradient(27deg, rgba(144, 144, 144, 0.03) 0%, rgba(144, 144, 144, 0.03) 76%, transparent 76%, transparent 100%), linear-gradient(168deg, rgba(14, 14, 14, 0.03) 0%, rgba(14, 14, 14, 0.03) 31%, transparent 31%, transparent 100%), linear-gradient(237deg, rgba(96, 96, 96, 0.01) 0%, rgba(96, 96, 96, 0.01) 52%, transparent 52%, transparent 100%), linear-gradient(320deg, rgba(30, 30, 30, 0.03) 0%, rgba(30, 30, 30, 0.03) 52%, transparent 52%, transparent 100%), linear-gradient(271deg, rgba(64, 64, 64, 0.03) 0%, rgba(64, 64, 64, 0.03) 27%, transparent 27%, transparent 100%), linear-gradient(290deg, rgba(32, 32, 32, 0.01) 0%, rgba(32, 32, 32, 0.01) 21%, transparent 21%, transparent 100%), linear-gradient(124deg, rgba(231, 231, 231, 0.03) 0%, rgba(231, 231, 231, 0.03) 1%, transparent 1%, transparent 100%), linear-gradient(298deg, rgba(61, 61, 61, 0.03) 0%, rgba(61, 61, 61, 0.03) 46%, transparent 46%, transparent 100%), linear-gradient(222deg, rgba(216, 216, 216, 0.03) 0%, rgba(216, 216, 216, 0.03) 82%, transparent 82%, transparent 100%), linear-gradient(251deg, rgba(211, 211, 211, 0.01) 0%, rgba(211, 211, 211, 0.01) 57%, transparent 57%, transparent 100%), linear-gradient(200deg, rgba(71, 71, 71, 0.03) 0%, rgba(71, 71, 71, 0.03) 9%, transparent 9%, transparent 100%), linear-gradient(95deg, rgba(160, 160, 160, 0.01) 0%, rgba(160, 160, 160, 0.01) 59%, transparent 59%, transparent 100%), linear-gradient(275deg, rgba(160, 160, 160, 0.03) 0%, rgba(160, 160, 160, 0.03) 3%, transparent 3%, transparent 100%), linear-gradient(351deg, rgba(18, 18, 18, 0.02) 0%, rgba(18, 18, 18, 0.02) 26%, transparent 26%, transparent 100%), linear-gradient(245deg, rgba(103, 103, 103, 0.03) 0%, rgba(103, 103, 103, 0.03) 54%, transparent 54%, transparent 100%), linear-gradient(269deg, rgba(145, 145, 145, 0.03) 0%, rgba(145, 145, 145, 0.03) 76%, transparent 76%, transparent 100%), linear-gradient(150deg, rgba(202, 202, 202, 0.03) 0%, rgba(202, 202, 202, 0.03) 3%, transparent 3%, transparent 100%), linear-gradient(98deg, rgba(14, 14, 14, 0.03) 0%, rgba(14, 14, 14, 0.03) 97%, transparent 97%, transparent 100%), linear-gradient(170deg, rgba(142, 142, 142, 0.03) 0%, rgba(142, 142, 142, 0.03) 13%, transparent 13%, transparent 100%), linear-gradient(347deg, rgba(199, 199, 199, 0.01) 0%, rgba(199, 199, 199, 0.01) 73%, transparent 73%, transparent 100%), linear-gradient(263deg, rgba(176, 176, 176, 0.03) 0%, rgba(176, 176, 176, 0.03) 60%, transparent 60%, transparent 100%), linear-gradient(110deg, rgba(191, 191, 191, 0.03) 0%, rgba(191, 191, 191, 0.03) 83%, transparent 83%, transparent 100%), linear-gradient(198deg, rgba(142, 142, 142, 0.01) 0%, rgba(142, 142, 142, 0.01) 64%, transparent 64%, transparent 100%), linear-gradient(204deg, rgba(5, 5, 5, 0.03) 0%, rgba(5, 5, 5, 0.03) 64%, transparent 64%, transparent 100%), linear-gradient(351deg, rgba(83, 83, 83, 0.01) 0%, rgba(83, 83, 83, 0.01) 84%, transparent 84%, transparent 100%), linear-gradient(12deg, rgba(49, 49, 49, 0.01) 0%, rgba(49, 49, 49, 0.01) 57%, transparent 57%, transparent 100%), linear-gradient(288deg, rgba(141, 141, 141, 0.01) 0%, rgba(141, 141, 141, 0.01) 8%, transparent 8%, transparent 100%), linear-gradient(112deg, rgba(191, 191, 191, 0.01) 0%, rgba(191, 191, 191, 0.01) 8%, transparent 8%, transparent 100%), linear-gradient(230deg, rgba(46, 46, 46, 0.03) 0%, rgba(46, 46, 46, 0.03) 34%, transparent 34%, transparent 100%), linear-gradient(90deg, rgb(255, 255, 255), rgb(255, 255, 255));
}

/* tbl
----------------------------------*/
.tbl-profile {
  width: 100%;
  font-family: "Shippori Mincho", serif, "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
}
.tbl-profile th,
.tbl-profile td {
  padding: 10px 5px;
  font-size: 1.4rem;
  vertical-align: middle;
  border-bottom: 1px solid #ddd;
  display: flex;
}
@media all and (max-width: 639px) {
  .tbl-profile th,
.tbl-profile td {
    font-size: 12px;
  }
}
.tbl-profile th .txt-num,
.tbl-profile td .txt-num {
  background-color: #b0aba6;
  padding: 2px 5px;
  width: 10px;
  max-width: 105px;
  max-height: 30px;
}
@media all and (max-width: 639px) {
  .tbl-profile th .txt-num,
.tbl-profile td .txt-num {
    max-height: 200px;
    width: 100px;
    padding: 2px 0;
    text-align: center;
    min-width: 100px;
  }
}
.tbl-profile th .txt-area,
.tbl-profile td .txt-area {
  display: inline-block;
  background-color: transparent;
  padding: 2px 10px;
}
.tbl-profile th {
  width: 26%;
  text-align: left;
  color: #5e5043;
  font-family: "Shippori Mincho", serif, "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
}
.tbl-profile.type1 th {
  width: 25%;
}
@media all and (max-width: 639px) {
  .tbl-profile.type1 th {
    width: 30%;
  }
}

.tbl {
  width: 100%;
}
.tbl.tbl-price th {
  background: #727171;
  color: #5e5043;
}
.tbl.tbl-price th span {
  display: block;
  font-size: 13px;
  letter-spacing: 0;
  line-height: 1.4;
}
.tbl th,
.tbl td {
  padding: 15px;
  vertical-align: middle;
  border: 0.9px solid #131313;
  font-size: 1.4rem;
}
.tbl th.center,
.tbl td.center {
  text-align: center;
}
.tbl th {
  background: #ccbf94;
  font-weight: 600;
  text-align: center;
}
.tbl thead th {
  background: #727171;
  color: #fff;
}
.tbl td {
  background: #fff;
}
.tbl td.td-1 {
  width: 50%;
  font-size: 1.3rem;
}
@media all and (max-width: 639px) {
  .tbl td.td-1 {
    font-size: 12px;
  }
}
.tbl td.price-td {
  text-align: right;
}
.tbl .th-1 {
  width: 25%;
}
.tbl .th-2 {
  width: 45%;
}
.tbl.type1 td {
  text-align: left;
}
@media all and (max-width: 639px) {
  .tbl th {
    text-align: left;
  }
  .tbl th,
.tbl td {
    padding: 10px;
    font-size: 12px;
  }
  .tbl th span,
.tbl td span {
    font-size: 12px;
  }
}

.tbl_new {
  width: 100%;
  max-width: 1000px;
  margin: 10px auto 0;
  font-family: "Shippori Mincho", serif, "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
}
.tbl_new tr th,
.tbl_new tr td {
  vertical-align: middle;
  padding: 10px 10px;
  border: 1px solid #9E968E;
  background-color: #fff;
}
.tbl_new tr th {
  font-weight: 700;
  width: 30%;
  color: #68afd8;
  text-align: center;
  padding-left: 30px;
  letter-spacing: 0;
  color: #fff;
  background-color: #9E968E;
  font-family: "Shippori Mincho", serif, "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  border-right: 1px solid #fff;
}
.tbl_new tr th:last-child {
  border-right: none;
}
@media all and (max-width: 639px) {
  .tbl_new tr th {
    width: 40%;
    padding-left: 10px;
    text-align: left;
  }
}
.tbl_new tr td {
  text-align: center;
}
.tbl_new tr td span {
  border: 1px solid #9E968E;
  padding: 2px 6px;
  color: #9E968E;
  font-weight: bold;
}
.tbl_new tr td.txt {
  text-align: left;
}
@media all and (max-width: 639px) {
  .tbl_new tr td {
    text-align: left;
  }
}

.tbl_box {
  width: 100%;
  border: 1px solid #4d77a7;
  background-color: #fff;
}
.tbl_box tr th,
.tbl_box tr td {
  vertical-align: middle;
  padding: 10px 10px;
  border-bottom: 1px solid #4d77a7;
}
.tbl_box tr td {
  width: 70%;
  line-height: 1.4;
}
.tbl_box tr td.left {
  width: 30%;
  position: relative;
  border-right: none;
}
.tbl_box tr td.left:before {
  position: absolute;
  content: "";
  right: -30px;
  top: 34%;
  width: 0;
  height: 0;
  border-left: 16px solid #4d77a7;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}
.tbl_box.type-purple {
  border: 1px solid #5e5b91;
}
.tbl_box.type-purple tr td {
  width: 50%;
}
.tbl_box.type-purple tr td.left {
  width: 50%;
  position: relative;
  border-right: none;
}
.tbl_box.type-purple tr td.left:before {
  position: absolute;
  content: "";
  right: 0px;
  top: 42%;
  width: 0;
  height: 0;
  border-left: 16px solid #5e5b91;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}
.tbl_box.type-gold tr th,
.tbl_box.type-gold tr td {
  border: 1px solid #816d41;
  width: 14.2%;
}
.tbl_box.type-gold tr th {
  font-weight: bold;
  color: #fff;
  background-color: rgba(129, 109, 65, 0.8);
  border-right: 1px solid #fff;
}
.tbl_box.type-gold tr th:last-child {
  border-right: none;
}
.tbl_box.type-gold tr .ttl {
  background-color: #816d41;
  color: #fff;
}
.tbl_box.type-gold.tate tr th {
  border-bottom: 1px solid #fff;
}
.tbl_box.type-gold.tate tr th:last-child {
  border-bottom: none;
}
.tbl_box.type-gold.tate2 tr th {
  width: 20%;
  border-bottom: 1px solid #fff;
}
.tbl_box.type-gold.tate2 tr th:last-child {
  border-bottom: none;
}
.tbl_box.type-gold.tate2 tr td {
  width: 80%;
}
@media all and (max-width: 639px) {
  .tbl_box.type-gold {
    overflow-x: scroll;
  }
}
.tbl_box.type-7 {
  border: 1px solid #437045;
}
.tbl_box.type-7 tr th,
.tbl_box.type-7 tr td {
  border: 1px solid #437045;
  width: 14.2%;
}
.tbl_box.type-7 tr th {
  font-weight: bold;
  background-color: rgba(67, 112, 69, 0.1);
}
.tbl_box.type-7 tr .ttl {
  background-color: #437045;
  color: #fff;
}
.tbl_box.type-7 .saturday td {
  color: #1877f2;
}
.tbl_box.type-7 .sunday td {
  color: #f13f79;
}
@media all and (max-width: 639px) {
  .tbl_box {
    padding: 10px;
    font-size: 1rem;
  }
  .tbl_box th {
    padding-left: 10px;
  }
  .tbl_box tr td.left:before {
    right: -14px;
    top: 37%;
    border-left: 10px solid #4d77a7;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
  }
  .tbl_box tr .ttl {
    background-color: #437045;
    color: #fff;
    text-align: left;
  }
  .tbl_box.type-purple tr td {
    width: 50%;
  }
  .tbl_box.type-purple tr td.left {
    width: 50%;
    position: relative;
    border-right: none;
  }
  .tbl_box.type-purple tr td.left:before {
    position: absolute;
    content: "";
    right: 0px;
    top: 43%;
    width: 0;
    height: 0;
    border-left: 10px solid #5e5b91;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
  }
}

.tbl-border {
  width: 100%;
}
@media all and (max-width: 639px) {
  .tbl-border.type2 {
    margin-top: 70px;
  }
}
.tbl-border tr {
  border-bottom: 1px solid #8d755e;
}
.tbl-border th,
.tbl-border td {
  padding: 8px 10px;
  vertical-align: middle;
  font-size: 1.3rem;
}
@media all and (max-width: 639px) {
  .tbl-border th,
.tbl-border td {
    padding: 10px;
    font-size: 1rem;
  }
}
.tbl-border th {
  width: 20%;
  color: #fff;
  text-align: left;
  color: #5e5043;
  border-right: 1px solid rgba(94, 80, 67, 0.4);
  font-family: "Shippori Mincho", serif, "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  font-weight: bold;
}
.tbl-border th span {
  font-size: 1.2rem;
}
.tbl-border th.th-1 {
  width: 45%;
}
@media all and (max-width: 639px) {
  .tbl-border th {
    width: 30%;
  }
}
.tbl-border td {
  font-family: "Shippori Mincho", serif, "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  font-weight: bold;
}
.tbl-border td a:hover {
  opacity: 0.5;
}

.tbl-border2 {
  width: 100%;
  border: 1px solid #807838;
}
.tbl-border2 th,
.tbl-border2 td {
  padding: 4px 10px;
  vertical-align: middle;
  font-size: 1.4rem;
}
@media all and (max-width: 639px) {
  .tbl-border2 th,
.tbl-border2 td {
    padding: 10px;
    font-size: 1rem;
  }
}
.tbl-border2 th {
  width: 30%;
  color: #fff;
  text-align: center;
  border-color: #807838;
  background-color: #807838;
  border-bottom: 1px solid #807838;
}
.tbl-border2 th.type1 {
  width: 30%;
}
.tbl-border2 th.type2 {
  width: 10%;
}
.tbl-border2 th.type4 {
  width: 15%;
}
.tbl-border2 th.th-1 {
  width: 45%;
}
.tbl-border2 th.sub {
  background-color: transparent;
  border-right: 1px solid #807838;
  color: #807838;
}
.tbl-border2 th.sub a {
  color: #dd7687;
}
.tbl-border2 th.sub a:hover {
  color: #807838;
}
.tbl-border2 td {
  border-color: #ddd;
  text-align: left;
  padding: 4px 20px;
  border-bottom: 1px solid #807838;
  width: 10%;
}
.tbl-border2 td a {
  font-weight: bold;
  color: #807838;
  font-size: 2rem;
}
.tbl-border2 td a:hover {
  color: #dd7687;
}
@media all and (max-width: 639px) {
  .tbl-border2 td a {
    font-size: 1.4rem;
  }
}

.tbl-border3 {
  width: 100%;
}
.tbl-border3.type2 {
  width: 500px;
  margin: 20px auto 20px;
}
.tbl-border3.type3 th {
  width: 12%;
}
@media all and (max-width: 639px) {
  .tbl-border3 {
    margin-bottom: 20px;
  }
  .tbl-border3.type2 {
    margin: 40px auto 20px;
    width: 90%;
  }
  .tbl-border3.type3 th {
    width: 28%;
  }
}
.tbl-border3 th,
.tbl-border3 td {
  padding: 4px 10px;
  vertical-align: middle;
  font-size: 1.3rem;
}
@media all and (max-width: 639px) {
  .tbl-border3 th,
.tbl-border3 td {
    padding: 10px;
    font-size: 1rem;
  }
}
.tbl-border3 th {
  width: 20%;
  color: #000;
  text-align: center;
  border-right: 1px solid #333;
  border-bottom: 5px solid transparent;
}
.tbl-border3 th span {
  font-size: 1.2rem;
}
.tbl-border3 th.th-1 {
  width: 45%;
}
@media all and (max-width: 639px) {
  .tbl-border3 th {
    width: 30%;
  }
}
.tbl-border3 td {
  border-color: #fff;
  position: relative;
  padding-left: 20px;
  color: #000;
}
.tbl-border3 td:before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  left: 12px;
  top: 8px;
}

.marker {
  padding: 0 4px;
  margin-left: 4px;
  background: #fff;
  color: #e65f3e;
}

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

.timetable-wrap {
  box-shadow: 0 0 4px rgba(246, 239, 230, 0.2);
  margin-bottom: 20px;
}

.footer-txt {
  font-size: 1.3rem;
  line-height: 1.3;
}

.timetable {
  width: 100%;
  border-top: 1px solid #55725a;
}
.timetable.type1 {
  border-top: 1px solid #727171;
  border-bottom: 1px solid #55725a;
}
.timetable.type1 th,
.timetable.type1 td {
  border-bottom: 1px solid #55725a;
}
.timetable th,
.timetable td {
  border-bottom: 1px solid #727171;
  padding: 10px 5px;
  text-align: center;
  vertical-align: middle;
  line-height: 1.4;
  color: #55725a;
}
.timetable th .txt,
.timetable td .txt {
  letter-spacing: 0;
  font-size: 12px;
}
@media all and (max-width: 639px) {
  .timetable th,
.timetable td {
    font-size: 12px;
  }
}
.timetable .thead th {
  border-top: 0;
}
.timetable .th-1 {
  width: 35%;
  font-weight: 600;
  text-align: center;
}
.timetable .circle {
  color: rgb(24, 70, 42);
}
.timetable .triangle {
  color: #68afd8;
}
@media all and (max-width: 639px) {
  .timetable {
    padding: 15px 10px;
  }
  .timetable .th-1 {
    width: 25%;
  }
}

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

/* list
----------------------------------*/
.list_common li {
  padding-bottom: 4px;
  font-size: 1.4rem;
  margin-bottom: 5px;
  border-bottom: 1px dotted rgba(114, 113, 113, 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 {
  background: #fefefe;
  padding: 12px 8px;
  width: 48%;
}
.list_check.type1 li:nth-child(2n) {
  margin-left: 4%;
}
@media all and (max-width: 639px) {
  .list_check.type1 li {
    width: 95%;
    margin: 0 auto 5px;
  }
  .list_check.type1 li:nth-child(2n) {
    margin-left: auto;
  }
}
.list_check li {
  padding: 8px;
  font-weight: 700;
  background: #fefefe;
  margin-bottom: 5px;
}
.list_check li span {
  font-weight: normal;
  font-size: 0.9em;
  display: block;
  padding: 10px;
  background: rgba(242, 237, 222, 0.2);
  margin-top: 10px;
}
.list_check li a {
  color: #dd7687;
  border-bottom: 1px dotted #dd7687;
}
.list_check li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f054";
  font-weight: 900;
  margin-right: 10px;
  color: #dd7687;
}
@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:nth-child(2n) {
    margin-left: auto;
  }
}
.list_check2 li {
  padding: 2px 8px 2px 30px;
  position: relative;
}
.list_check2 li .num {
  color: #dd7687;
  margin: 0 4px;
  font-family: "Cinzel", serif;
  font-weight: 500;
}
.list_check2 li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 8px;
  color: #68afd8;
}
.list_check2 li:not(:last-child) {
  margin-bottom: 4px;
}

.list-inline2 {
  text-align: center;
}
.list-inline2 li {
  display: inline-block;
  padding: 4px 15px;
  background: #fefefe;
  border: 1px solid #68afd8;
  font-weight: 700;
  border-radius: 30px;
}
.list-inline2 li:not(:last-child) {
  margin-right: 8px;
}

.list-inline li {
  display: inline-block;
  padding: 3px;
}
.list-inline li:not(:last-of-type):after {
  content: "/";
  margin: 0 5px;
  color: #dd7687;
  font-weight: normal;
}
@media all and (max-width: 639px) {
  .list-inline li {
    display: block;
    padding: 0;
  }
  .list-inline li:before {
    content: "-";
    color: #dd7687;
  }
  .list-inline li:not(:last-of-type):after {
    display: none;
  }
}

.list_num li {
  position: relative;
  padding: 6px 4px 6px 50px;
  font-size: 2rem;
  margin-bottom: 5px;
  color: #5e5043;
}
.list_num li span {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3.5rem;
  color: #68afd8;
}
@media all and (max-width: 639px) {
  .list_num li {
    font-size: 1.3rem;
  }
  .list_num li span {
    font-size: 2.8rem;
  }
}

.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: 40px;
  padding-bottom: 10px;
}
.ol-list li .ol-lead {
  color: #be2f47;
  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;
  font-family: "Cinzel", serif;
  font-weight: 500;
  left: 0;
  top: 15px;
  position: absolute;
  font-size: 3.5rem;
  color: #dd7687;
  margin-right: 10px;
  line-height: 1;
}
@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;
  }
}

.list_disc li {
  padding: 5px 0 5px 20px;
  font-size: 1.4rem;
  position: relative;
}
.list_disc li:not(:last-of-type) {
  margin-bottom: 5px;
  border-bottom: 1px solid #ccc;
}
.list_disc li:before {
  content: "●";
  position: absolute;
  left: 0;
  top: 8px;
  color: #dd7687;
  font-size: 0.7em;
}
@media all and (max-width: 639px) {
  .list_disc li {
    font-size: 12px;
  }
}

.list-btn {
  display: flex;
  flex-wrap: wrap;
}
.list-btn.btn-100 > li {
  width: 100%;
}
.list-btn.btn-100 > li:nth-child(3n) {
  margin-right: auto;
}
.list-btn.btn-col2 {
  justify-content: space-between;
}
.list-btn.btn-col2 li {
  width: 48%;
  margin: auto;
  margin-bottom: 20px;
}
.list-btn.btn-col2 li a {
  font-size: 2rem;
  padding: 15px 2px;
}
@media all and (max-width: 639px) {
  .list-btn.btn-col2 li {
    width: 100%;
    margin: 0 auto 20px;
  }
  .list-btn.btn-col2 li a {
    font-size: 1.5rem;
  }
}
.list-btn li {
  width: 32%;
  margin: 0 1.995% 10px 0;
}
.list-btn li a {
  display: block;
  background: #fff;
  color: #dd7687;
  font-weight: 700;
  padding: 10px 3px;
  text-align: center;
  width: 100%;
  height: 100%;
  line-height: 1.5;
  font-size: 1.6rem;
  letter-spacing: 0;
  position: relative;
  overflow: hidden;
  border: 2px solid #f6efe6;
}
.list-btn li a:after {
  position: absolute;
  content: "";
  width: 70px;
  height: 70px;
  border-bottom: 0.1em solid #f6efe6;
  border-right: 0.1em solid #f6efe6;
  right: 10px;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}
.list-btn li a .small {
  display: block;
  font-family: "Share", cursive;
  font-weight: 600;
  text-transform: uppercase;
}
.list-btn li a span {
  position: relative;
  z-index: 2;
}
.list-btn li a:hover {
  background: #5e5043;
  color: #fff;
}
.list-btn li:nth-child(3n) {
  margin-right: 0;
}
@media all and (max-width: 639px) {
  .list-btn li {
    width: 90%;
    margin: 0 auto 10px;
  }
  .list-btn li a {
    font-size: 1.2rem;
  }
  .list-btn li a .small {
    font-size: 1.2rem;
  }
  .list-btn li:nth-child(3n) {
    margin-right: auto;
  }
}
.list-btn.type1 li a {
  padding: 65px 40px 65px 0;
  border: 1px solid #d34d63;
  font-size: 2.5rem;
  text-align: right;
  background: #111;
  color: #8d755e;
}
.list-btn.type1 li a:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 70%;
  opacity: 0.7;
  transition: 0.2s ease-in all;
  background: url(../img/icon01.jpg) no-repeat center/cover;
}
.list-btn.type1 li a:after {
  width: 30px;
  height: 30px;
}
.list-btn.type1 li a:hover:before {
  opacity: 0.3;
}
@media all and (max-width: 639px) {
  .list-btn.type1 li a {
    font-size: 1.8rem;
    padding: 50px 40px 50px 0;
  }
}
.list-btn.type1 li:last-of-type a:before {
  background: url(../img/icon02.jpg) no-repeat center/cover;
}

.q-list {
  margin-top: 30px;
}
@media all and (max-width: 639px) {
  .q-list {
    margin-top: 30px;
  }
  .q-list:last-child {
    margin-top: 0;
  }
}
.q-list li {
  position: relative;
  padding-left: 30px;
  font-size: 1.6rem;
  padding-bottom: 10px;
}
@media all and (max-width: 639px) {
  .q-list li {
    font-size: 1.4rem;
  }
}
.q-list li:before {
  position: absolute;
  content: "";
  background: url(../img/teeth.png) no-repeat;
  background-size: contain;
  width: 20px;
  height: 30px;
  left: 0;
}

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

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

.blog-wrap {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 50px auto 0;
}
@media all and (max-width: 639px) {
  .blog-wrap {
    margin: 50px auto 20px;
  }
}
.blog-wrap * {
  transition: 0.3s;
}
.blog-wrap > li {
  width: 30%;
  margin: 0 1% 20px;
  position: relative;
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  padding: 15px 10px;
}
@media all and (max-width: 1100px) {
  .blog-wrap > li {
    width: 48%;
  }
}
.blog-wrap > li > a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
}
.blog-wrap > li:hover {
  background: white;
}
.blog-wrap > li:hover .blog-img img {
  opacity: 1;
  transform: scale(1.2);
}
@media all and (max-width: 639px) {
  .blog-wrap > li {
    width: 100%;
    margin: 0 auto 0px;
    padding-bottom: 0;
  }
}

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

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

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

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

.blog-date {
  background: #b0aba6;
  width: 100px;
  padding: 5px;
  line-height: 1.3;
  text-align: center;
  display: inline-block;
  color: #fff;
  font-size: 12px;
}

.blog-date2 {
  color: #ce3951;
  font-size: 0.9em;
  margin-bottom: 5px;
  margin-right: 5px;
}
.blog-date2:before {
  font-family: "Font Awesome 5 Free";
  content: "\f017";
  font-weight: 900;
  margin-right: 5px;
}

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

.blog-txt {
  line-height: 1.5;
  color: #333;
  padding: 10px;
  font-size: 1.4rem;
}
@media all and (max-width: 639px) {
  .blog-txt {
    font-size: 12px;
  }
}

.blog-cat {
  font-size: 1.2rem;
}

.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: #dd7687;
  padding: 4px 5px;
  background: #111;
  font-size: 12px;
}

.category_nav {
  border: 1px solid #dddddd;
}
.category_nav li a {
  display: block;
  padding: 15px;
  border-bottom: 1px dotted #dddddd;
  background-color: #ffffff;
}
.category_nav li a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0a9";
  font-weight: 900;
  margin-right: 5px;
}
.category_nav li a:hover {
  background: #f3f6f6;
}
.category_nav li:last-child a {
  border-bottom: none;
}

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

.img-round {
  border-radius: 15px 0 15px 0;
}

.w300 {
  width: 300px;
}

.spbr {
  display: none;
}

.color1 {
  color: #dd7687;
}

.color2 {
  color: #68afd8;
}

.color3 {
  color: #e65f3e;
}

.brown {
  color: #5e5043;
}

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

.bigger {
  font-size: 1.15em;
}

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

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

.telbox {
  max-width: 600px;
  margin: 0 auto 20px;
  padding: 20px;
  background: #333;
  text-align: center;
}
.telbox .inner {
  background: #fff;
  padding: 10px;
}

.txt-link {
  font-weight: 700;
  text-decoration: underline;
}
.txt-link:after {
  font-family: "Font Awesome 5 Free";
  content: "\f101";
  font-weight: 900;
  padding-left: 5px;
}
.txt-link:hover {
  text-decoration: none;
}

.telbnr {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 20px auto 10px;
}
.telbnr li {
  border: 1px solid #dd7687;
  background-color: #dd7687;
  padding: 0px 10px;
  text-align: center;
  border-radius: 40px;
}
.telbnr li:nth-child(2n) {
  margin-left: 20px;
}
.telbnr li a {
  width: 100%;
  display: block;
  font-size: 2rem;
  font-weight: 300;
  color: #fff;
}
.telbnr li a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  margin-right: 5px;
}
.telbnr li a.type-mail:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
  margin-right: 5px;
}
.telbnr li a:hover {
  color: #333;
}
@media all and (max-width: 639px) {
  .telbnr {
    max-width: 100%;
  }
  .telbnr li {
    width: 100%;
    margin: 0 auto 30px;
  }
  .telbnr li a {
    font-size: 2rem;
  }
}

.telbnr-ttl {
  font-weight: 600;
  font-size: 1.8rem;
  color: #5e5043;
  margin-top: -30px;
}
.telbnr-ttl span {
  padding: 0 20px;
}
@media all and (max-width: 639px) {
  .telbnr-ttl {
    font-size: 1.4rem;
  }
}

/* breadcrumb
----------------------------------*/
.breadcrumb {
  max-width: 1500px;
  margin: 10px auto 40px;
  font-size: 1.2rem;
  z-index: 1;
  position: relative;
  padding-left: 0;
}
.breadcrumb li {
  display: inline;
  color: #fff;
}
.breadcrumb li a {
  color: #dd7687;
}
.breadcrumb li + li:before {
  margin: 0 10px;
  content: ">";
}
@media all and (max-width: 639px) {
  .breadcrumb {
    font-size: 12px;
  }
}

/* form
----------------------------------*/
.form {
  margin: 0 auto;
  width: 90%;
}
.form dl dt {
  float: left;
  width: 280px;
  padding-top: 14px;
  font-weight: 700;
}
.form dl dt span {
  color: #fff;
  background: #dd7687;
  padding: 5px 8px;
  margin-right: 5px;
  font-size: 11px;
  border-radius: 20px;
  position: relative;
  top: -2px;
}
.form dl dt span.nini {
  background: #d3dd4c;
  color: #5e5043;
}
.form dl dt.w-100 {
  width: 100%;
  padding-bottom: 10px;
}
.form dl dd {
  padding-left: 280px;
  padding-bottom: 28px;
  padding-top: 18px;
  line-height: 1.5;
  border-bottom: 1px dotted #cccccc;
}
.form dl dd:last-child {
  border-bottom: none;
}
.form dl dd.w-100 {
  padding-top: 20px;
  padding-left: 0px;
}
.form dl.type2 {
  margin-top: 10px;
  background-color: #f3faf3;
  padding: 15px;
}
.form dl.type2 dt {
  width: 100px;
}
.form dl.type2 dd {
  padding-bottom: 15px;
  padding-top: 15px;
  padding-left: 100px;
}
@media all and (max-width: 639px) {
  .form dl.type2 dd {
    padding-left: 0px;
  }
}
.form dl.type2 .textarea {
  background-color: #fff;
}
.form dl.type2 label.radio_text {
  cursor: pointer;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
  padding-left: 20px;
  display: inline-block;
}
.form dl.type2 label.radio_text:before {
  position: absolute;
  width: 15px;
  height: 15px;
  border: 1px solid #666;
  border-radius: 50%;
  left: 0px;
  top: 2px;
  content: "";
  z-index: 3;
}
.form dl.type2 label.radio_text:after {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 100%;
  left: 2px;
  top: 4px;
  background-color: #dd7687;
  z-index: 1;
}
.form dl.type2 label.radio_text input[type=radio] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  z-index: 2;
  width: 20px;
  height: 20px;
  left: -23px;
  top: 0px;
  margin: 0px;
  box-shadow: 20px -1px #f3faf3;
}
.form dl.type2 label.radio_text input[type=radio]:checked {
  box-shadow: none;
}
.form dl.type2 label.radio_text input[type=radio]:focus {
  opacity: 0.2;
  box-shadow: 20px -1px #eeebda;
}
.form dl.type2 label.checkbox_text {
  cursor: pointer;
  position: relative;
  padding-left: 25px;
  margin: 0 20px 5px 0;
  overflow: hidden;
  display: inline-block;
}
.form dl.type2 label.checkbox_text:before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 0px;
  top: 0;
  border: 1px solid #ccc;
  z-index: 3;
  padding: 1px;
}
.form dl.type2 label.checkbox_text:after {
  content: "";
  position: absolute;
  top: 40%;
  left: 5px;
  display: block;
  margin-top: -9px;
  width: 8px;
  height: 12px;
  border-right: 3px solid #dd7687;
  border-bottom: 3px solid #dd7687;
  transform: rotate(45deg);
  z-index: 1;
}
@media all and (max-width: 639px) {
  .form dl.type2 label.checkbox_text:after {
    margin-top: -8px;
  }
}
.form dl.type2 label.checkbox_text input[type=checkbox] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  left: -40px;
  width: 20px;
  height: 20px;
  display: block;
  box-shadow: 41px 0px #fff;
  z-index: 2;
  margin: 0px;
  padding: 0px;
}
.form dl.type2 label.checkbox_text input[type=checkbox]:checked {
  box-shadow: none;
}
.form dl.type2 label.checkbox_text input[type=checkbox]:checked:focus {
  box-shadow: 40px 0px #666;
  opacity: 0.1;
}
.form dl.type2 label.checkbox_text input[type=checkbox]:focus {
  box-shadow: 41px 0px #eee;
}
.form .textarea,
.form textarea {
  border: 0;
  padding: 20px 15px;
  width: 100%;
  background: #f5f5f5;
  border-radius: 0;
  -webkit-appearance: none;
}
.form .textarea {
  height: 30px;
}
.form .textarea02 {
  width: 48.5%;
  margin-right: 3%;
}
.form .textarea02:last-child {
  margin-right: 0;
}
.form .textarea03 {
  width: 10%;
  max-width: 100px;
  margin-right: 1%;
}
.form .textarea04 {
  width: 20%;
  margin-right: 1%;
}
.form .textarea05 {
  width: 70%;
  margin-right: 1%;
}
.form .textarea06 {
  height: 90px;
}
.form .textarea07 {
  height: 56px;
}
.form .textarea08 {
  height: 200px;
}
.form .secect-num {
  border: 0;
  padding: 10px 35px 10px 15px;
  background: #f5f5f5;
  position: relative;
}
.form button {
  cursor: pointer;
  display: block;
  color: #fff;
  text-align: center;
  transition: all 0.2s ease-in-out 0s;
  border: 1px solid #dd7687;
  font-weight: 700;
  padding: 12px 5px;
  margin: 40px auto;
  width: 250px;
  background: #dd7687;
  border-radius: 25px;
}
.form button:hover {
  background: #fff;
  color: #dd7687;
}
.form button:before {
  font-weight: normal;
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
  margin-right: 10px;
}
.form .select-wrap {
  position: relative;
  overflow: hidden;
  display: inline-block;
  min-width: 192px;
  min-width: 12em;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  color: #333;
}
.form .select-wrap select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  z-index: 2;
  display: block;
  width: 200%;
  width: -webkit-calc(100% + 5em);
  margin: 0;
  padding: 11px 35px 11px 11px;
  padding: 0.6875rem 2.1875rem 0.6875rem 0.6875rem;
  background: transparent;
  border: 0;
  outline: none;
  line-height: 1.5;
}
.form .entypo-down-open-mini:before {
  font-family: "FontAwesome";
  content: "\f0ab";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 12px;
  right: 0.75rem;
  margin-top: -8px;
  margin-top: -0.5rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1;
  color: #dd7687;
}
.form label.radio_text {
  cursor: pointer;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
  padding-left: 20px;
  display: inline-block;
}
.form label.radio_text:before {
  position: absolute;
  width: 15px;
  height: 15px;
  border: 1px solid #ccc;
  border-radius: 50%;
  left: 0px;
  top: 2px;
  content: "";
  z-index: 3;
}
.form label.radio_text:after {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 100%;
  left: 2px;
  top: 4px;
  background-color: #dd7687;
  z-index: 1;
}
.form label.radio_text input[type=radio] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  z-index: 2;
  width: 20px;
  height: 20px;
  left: -23px;
  top: 0px;
  margin: 0px;
  box-shadow: 20px -1px #fff;
}
.form label.radio_text input[type=radio]:checked {
  box-shadow: none;
}
.form label.radio_text input[type=radio]:focus {
  opacity: 0.2;
  box-shadow: 20px -1px #eeebda;
}
.form label.checkbox_text {
  cursor: pointer;
  position: relative;
  padding-left: 25px;
  margin: 0 20px 5px 0;
  overflow: hidden;
  display: inline-block;
}
.form label.checkbox_text:before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 0px;
  top: 0;
  border: 1px solid #ccc;
  z-index: 3;
  padding: 1px;
}
.form label.checkbox_text:after {
  content: "";
  position: absolute;
  top: 40%;
  left: 5px;
  display: block;
  margin-top: -9px;
  width: 8px;
  height: 12px;
  border-right: 3px solid #dd7687;
  border-bottom: 3px solid #dd7687;
  transform: rotate(45deg);
  z-index: 1;
}
@media all and (max-width: 639px) {
  .form label.checkbox_text:after {
    margin-top: -8px;
  }
}
.form label.checkbox_text input[type=checkbox] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  left: -40px;
  width: 20px;
  height: 20px;
  display: block;
  box-shadow: 41px 0px #fff;
  z-index: 2;
  margin: 0px;
  padding: 0px;
}
.form label.checkbox_text input[type=checkbox]:checked {
  box-shadow: none;
}
.form label.checkbox_text input[type=checkbox]:checked:focus {
  box-shadow: 40px 0px #666;
  opacity: 0.1;
}
.form label.checkbox_text input[type=checkbox]:focus {
  box-shadow: 41px 0px #eee;
}
.form input[type=text],
.form textarea {
  font-size: 16px;
}
@media all and (max-width: 639px) {
  .form input[type=text],
.form textarea {
    transform: scale(0.9);
    margin-left: -5px;
  }
}

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

.thanks {
  padding: 60px 40px;
  max-width: 700px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.6);
}
@media all and (max-width: 639px) {
  .thanks {
    max-width: 90%;
    padding: 30px 20px;
  }
}
.thanks .btn04 {
  position: relative;
  z-index: 1;
}

.shadow {
  box-shadow: 0 0 10px rgba(94, 80, 67, 0.05);
}

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

.mtitle_small {
  font-weight: 600;
  color: #5e5043;
  padding: 0 0 4px;
  font-size: 1.6rem;
  border-bottom: 1px solid #dd7687;
  background: rgba(255, 255, 255, 0.5);
  margin-bottom: 15px;
}
.mtitle_small:before {
  content: "―";
  margin-right: 8px;
  color: #dd7687;
  font-size: 10px;
}
@media all and (max-width: 639px) {
  .mtitle_small {
    padding: 4px;
    font-size: 1.3rem;
  }
}

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

/*photoギャラリー*/
.gallery {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  justify-content: center;
  padding-bottom: 40px;
  max-width: 1500px;
  margin: 100px auto 0;
}
.gallery li {
  margin: 0 1.5% 30px;
  width: 29%;
  position: relative;
}
.gallery li a {
  display: block;
  text-align: center;
  padding: 0px;
  overflow: hidden;
}
.gallery li a img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  -o-object-position: center 5%;
     object-position: center 5%;
  /*IE対策*/
}
@media all and (max-width: 639px) {
  .gallery li a img {
    height: 160px;
  }
}
.gallery li a:hover img {
  transition: 0.8s;
  transform: scale(1.12);
}
.gallery li p {
  font-size: 14px;
  margin: 3px 0 10px;
  background-color: #fff;
  padding: 10px 20px;
  display: inline-block;
  position: absolute;
  top: 10px;
  left: 0;
  font-family: "Shippori Mincho", serif, "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  font-weight: 600;
}
@media all and (max-width: 639px) {
  .gallery li {
    margin: 0 2% 20px;
    width: 46%;
  }
  .gallery li p {
    padding: 6px 10px;
  }
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes slideDown {
  0% {
    opacity: 1;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideDown {
  0% {
    opacity: 1;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.slide-down {
  -webkit-animation-name: slideDown;
  animation-name: slideDown;
}

@-webkit-keyframes slideUp {
  0% {
    transform: translateY(20px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes slideUp {
  0% {
    transform: translateY(20px);
  }
  100% {
    transform: translateY(0px);
  }
}
.slide-up {
  -webkit-animation-name: slideUp;
  animation-name: slideUp;
}

.content-wrap {
  height: 420px;
  overflow: hidden;
  position: relative;
  margin: 0;
}

.close-btn,
.more-btn {
  display: block;
  width: 100%;
  padding: 80px 0 20px;
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
  background: linear-gradient(to bottom, rgba(245, 245, 245, 0) 0%, whitesmoke 60%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00ffffff", endColorstr="#ffffff", GradientType=0 );
}

.close-btn {
  background: none;
}

.slide-up {
  height: 420px;
  padding-bottom: 0;
  overflow: hidden;
}

.slide-down {
  height: auto;
  overflow: visible;
  padding-bottom: 50px;
}

.more-btn p {
  display: inline-block;
  color: #fff;
  cursor: pointer;
  background: #658a76;
  padding: 10px 20px;
  width: 80%;
  max-width: 280px;
  border-radius: 50px;
}
@media all and (max-width: 639px) {
  .more-btn p {
    padding: 6px 20px;
  }
}
.more-btn p.type-green {
  background: #7d995d;
}
.more-btn p.type-brown {
  background: #ac9281;
}
.more-btn p.type-purple {
  background: #a19fc4;
}

.close-btn {
  padding: 0;
  padding-bottom: 20px;
}

.close-btn p {
  background: #aaa;
}

.list2 {
  display: flex;
  flex-wrap: wrap;
  max-width: 1500px;
  margin-right: auto;
  margin-left: auto;
  margin-top: -50px;
  justify-content: center;
}
@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.type-50,
.list2 .child.type-50 {
  width: 48%;
}
.list2 > li:nth-child(2n),
.list2 .child:nth-child(2n) {
  margin-left: 4%;
}
@media all and (max-width: 639px) {
  .list2 > li:nth-child(2n),
.list2 .child:nth-child(2n) {
    margin-left: auto;
  }
}
@media all and (max-width: 639px) {
  .list2 > li,
.list2 .child {
    width: 100%;
    margin: 20px auto 0;
  }
  .list2 > li:last-child,
.list2 .child:last-child {
    width: 100%;
  }
  .list2 > li.type-50,
.list2 .child.type-50 {
    width: 100%;
  }
}

.list3 {
  display: flex;
  flex-wrap: wrap;
}
.list3 > li {
  width: 31%;
  position: relative;
  margin: 0 3.495% 30px 0;
}
.list3 > li:nth-child(3n) {
  margin-right: 0;
}
@media all and (max-width: 639px) {
  .list3 > li {
    width: 95%;
    margin: 0 auto 30px;
  }
  .list3 > li:nth-child(3n) {
    margin-right: auto;
  }
}
@media all and (max-width: 639px) {
  .list3 > li.type-2 {
    width: 48%;
    margin: 0 auto 10px;
  }
  .list3 > li.type-2:nth-child(2n) {
    margin-left: 4%;
  }
  .list3 > li.type-2:nth-child(3n) {
    margin-right: auto;
  }
  .list3 > li.type-2 .feature-txt {
    padding: 10px;
  }
  .list3 > li.type-2 .feature-title {
    font-size: 1.2rem;
  }
}

.list4 {
  display: flex;
  flex-wrap: wrap;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0px;
  justify-content: center;
}
.list4.type1 {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
  justify-content: center;
}
.list4.type1 li {
  padding: 15px;
  background: rgba(104, 175, 216, 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: 0 1% 20px;
  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: 48%;
    margin: 0px 1% 20px;
  }
}

.list6 {
  display: flex;
  flex-wrap: wrap;
  margin-top: -30px;
}
.list6 li {
  margin-top: 30px;
  width: 15.8%;
  margin: 0 1% 0 0;
}
.list6 li:nth-child(6n) {
  margin-right: 0;
}
@media all and (max-width: 1100px) {
  .list6 {
    justify-content: center;
  }
  .list6 li {
    width: 31%;
    margin-bottom: 80px;
  }
  .list6 li:nth-child(3n) {
    margin-right: 0;
  }
}
@media all and (max-width: 639px) {
  .list6 {
    margin-left: auto;
  }
  .list6 li {
    width: 48%;
    margin: 40px 2% 0 0;
  }
  .list6 li:nth-child(3n) {
    margin-right: 2%;
  }
  .list6 li:nth-child(2n) {
    margin-right: 0;
  }
}

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

.box-arrow {
  position: relative;
}
.box-arrow:after {
  position: absolute;
  content: "";
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 30px 0 30px 30px;
  border-color: transparent transparent transparent #d3dd4c;
  z-index: 3;
}
@media all and (max-width: 639px) {
  .box-arrow:after {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    top: auto;
    bottom: -15px;
    border-width: 15px 20px 0 20px;
    border-color: #d3dd4c transparent transparent transparent;
  }
}

.caution {
  color: #e65f3e;
  letter-spacing: 0;
  font-size: 1.4rem;
}
@media all and (max-width: 639px) {
  .caution {
    font-size: 1.1rem;
  }
}

.note {
  padding: 20px;
  margin-top: 10px;
  background: #727171;
  border-radius: 8px;
  letter-spacing: 0;
  font-size: 1.5rem;
}
@media all and (max-width: 639px) {
  .note {
    font-size: 12px;
  }
}
.note.type1 {
  background: #f4efe9;
}

.note2 {
  padding: 20px;
  background: #f6efe6;
  margin-top: 30px;
}

.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: #dd7687;
  width: 60px;
  text-align: center;
  margin-right: 20px;
  font-family: "Share", cursive;
  font-weight: 600;
  text-transform: uppercase;
  padding-top: 8px;
}
.flow-dl dt span {
  font-size: 3.5rem;
  display: block;
  line-height: 1;
  color: #55725a;
  font-family: "Cinzel", serif;
  font-weight: 500;
}
.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;
  }
}

.number {
  font-family: "Cinzel", serif;
  font-weight: 500;
  font-size: 4.5rem;
  color: #e6c405;
  line-height: 1;
  top: 0;
  left: 0;
  position: absolute;
}
@media all and (max-width: 639px) {
  .number {
    font-size: 2.8rem;
    top: 10px;
  }
}

.txt1 {
  padding-left: 60px;
}
@media all and (max-width: 639px) {
  .txt1 {
    padding-left: 40px;
  }
}

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

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

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

.faq-dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.faq-dl .faq-inner {
  margin-bottom: 20px;
  width: 48%;
  background: #fff;
}
@media all and (max-width: 639px) {
  .faq-dl .faq-inner {
    width: 90%;
    margin: 0 auto 20px;
  }
}
.faq-dl .faq-inner dt,
.faq-dl .faq-inner dd {
  position: relative;
}
.faq-dl .faq-inner dt:before,
.faq-dl .faq-inner dd:before {
  position: absolute;
  content: "";
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  left: 0;
  top: 0;
  font-family: "Share", cursive;
  font-weight: 600;
  text-transform: uppercase;
}
.faq-dl .faq-inner dt {
  background-image: linear-gradient(to right, #dd7687, #dd7687);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  padding: 10px 10px 10px 55px;
}
.faq-dl .faq-inner dt:before {
  content: "Q";
  color: #d3dd4c;
  font-size: 3rem;
}
.faq-dl .faq-inner dd {
  padding: 20px 20px 20px 55px;
}
.faq-dl .faq-inner dd:before {
  content: "A";
  color: #e6c405;
  font-size: 3rem;
}

.sns-list {
  display: flex;
}
.sns-list.center {
  justify-content: center;
  margin: 15px 0;
}
.sns-list li a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 15px;
  color: #e65f3e;
  display: block;
  background: #fefefe;
  border-radius: 100%;
  text-align: center;
  transition: all 0.2s ease-in;
  position: relative;
}
.sns-list li a:hover {
  opacity: 0.7;
}
.sns-list li a.btn-facebook {
  background: #1877f2;
}
.sns-list li a.btn-twitter {
  background: #1da1f2;
}
.sns-list li a.btn-instagram {
  overflow: hidden;
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
}
.sns-list li a.btn-instagram i {
  position: relative;
  z-index: 2;
}
.sns-list li a.btn-instagram:before {
  content: "";
  position: absolute;
  /*絶対配置*/
  top: 18px;
  /*ずらす*/
  left: -10px;
  /*ずらす*/
  width: 50px;
  /*グラデーションカバーの幅*/
  height: 50px;
  /*グラデーションカバーの高さ*/
  background: radial-gradient(#ffdb2c 10%, rgba(255, 105, 34, 0.65) 55%, rgba(255, 88, 96, 0) 70%);
  /*グラデーション②*/
}
.sns-list li:not(:last-child) {
  margin-right: 10px;
}
@media all and (max-width: 896px) {
  .sns-list li:not(:last-child) {
    margin-right: 5px;
    margin-bottom: 0;
  }
}

.profi-box {
  position: relative;
}

.name {
  width: 200px;
  margin: -20px auto 20px;
  position: absolute;
  z-index: 2;
  background: #dd7687;
  color: #fff;
  font-weight: 600;
  text-align: center;
  padding: 15px 6px;
  box-shadow: 0 0 8px rgba(94, 80, 67, 0.05);
  line-height: 1.5;
  font-size: 1.6rem;
  border-radius: 0 5px 5px 0;
  bottom: 0;
  left: -10px;
  filter: drop-shadow(6px 5px 1px rgba(0, 0, 0, 0.6));
}
.name .small {
  font-size: 0.8em;
}

.profi-txt {
  background-color: #fff;
  border-top: 2px solid #727171;
  padding: 20px;
}
.profi-txt span {
  color: #dd7687;
  font-weight: bold;
  padding-right: 8px;
}

.clinicphoto {
  max-width: 580px;
}
.clinicphoto img {
  width: 100%;
}

.greet {
  font-weight: 600;
  letter-spacing: 0;
  line-height: 2;
  color: #5e5043;
}

.vertical-content {
  margin-left: 100px;
}
.vertical-content.type1 {
  margin-left: 180px;
}
@media all and (max-width: 639px) {
  .vertical-content.type1 {
    margin-left: 0;
  }
}
@media all and (max-width: 639px) {
  .vertical-content {
    margin-left: 0;
  }
}

.box1 {
  background: #fff;
  box-shadow: 0 3 10px rgba(221, 118, 135, 0.15);
  padding: 30px;
  border-radius: 8px;
  margin-right: auto;
  margin-left: auto;
}
.box1.type1 {
  position: relative;
  background: rgba(255, 255, 255, 0.7);
}
.box1.type1:before {
  position: absolute;
  content: "";
  left: 50%;
  top: -80px;
  width: 1px;
  height: 80px;
  z-index: 2;
  background-image: linear-gradient(to top, #f1c8cf, #dd7687);
  opacity: 0.7;
}
@media all and (max-width: 639px) {
  .box1 {
    padding: 25px 15px;
  }
}

.pickup {
  font-family: "Share", cursive;
  font-weight: 600;
  text-transform: uppercase;
  color: #dd7687;
}

.flow-list {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
.flow-list.type1 {
  display: block;
}
.flow-list.type1 li {
  width: 100%;
}
.flow-list.type1 li .flow-title {
  margin-bottom: 10px;
}
.flow-list li {
  width: 48%;
  margin-right: 4%;
  margin-bottom: 35px;
  align-items: center;
  padding: 25px;
  display: flex;
  flex-wrap: wrap;
  background: #fefefe;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(94, 80, 67, 0.05);
}
.flow-list li.type100 {
  flex-basis: 100%;
  margin-right: 0;
}
.flow-list li:nth-child(2n) {
  margin-right: 0;
}
@media all and (max-width: 639px) {
  .flow-list li {
    width: 90%;
    margin: 0 auto 30px;
  }
  .flow-list li:nth-child(2n) {
    margin-right: auto;
  }
}
.flow-list li .flow-num {
  color: #dd7687;
  font-size: 3.5rem;
  border-right: 1px solid #dd7687;
  padding-right: 15px;
  align-self: center;
  line-height: 1.2;
  font-family: "Cinzel", serif;
  font-weight: 500;
}
.flow-list li .flow-num span {
  font-size: 1.3rem;
  display: block;
  text-align: center;
}
.flow-list li .txt {
  flex: 1;
  margin-left: 35px;
}
.flow-list li .flow-title {
  color: #dd7687;
  border-bottom: 1px solid #dd7687;
  padding-bottom: 4px;
  font-weight: 600;
  font-size: 1.8rem;
  letter-spacing: 0.2rem;
}
@media all and (max-width: 639px) {
  .flow-list li {
    flex-direction: column;
  }
  .flow-list li .flow-num {
    font-size: 2.2rem;
    text-align: center;
    border-right: 0;
    padding: 0 0 4px;
    border-bottom: 1px solid #dd7687;
  }
  .flow-list li .flow-title {
    font-size: 1.3rem;
  }
  .flow-list li .txt {
    margin: 20px auto 0;
  }
}

.flow-box {
  position: relative;
  margin-bottom: 20px;
}
.flow-box .txtarea {
  position: relative;
}
.flow-box .txtarea .flow-arrow {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  width: 0;
  height: 0;
  bottom: 50px;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid #727171;
}
@media all and (max-width: 639px) {
  .flow-box .txtarea {
    padding-bottom: 50px;
  }
  .flow-box .txtarea .flow-arrow {
    bottom: 10px;
  }
}

.price-dl dt {
  background: #ebe3cc;
  padding: 14px 20px;
  color: #5e5043;
  border-top: 1px solid #727171;
  border-bottom: 1px solid #727171;
}
.price-dl dd {
  padding: 20px;
  margin-bottom: 25px;
}

.kiritori {
  height: 1px;
  border-top: 1px solid rgba(221, 118, 135, 0.4);
  margin: 50px auto;
  width: 95%;
  display: block;
}

.column2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.column2 .child {
  width: 48%;
}
@media all and (max-width: 639px) {
  .column2 {
    flex-direction: column;
  }
  .column2 .child {
    width: 100%;
  }
  .column2 .child.column2-img {
    order: -1;
    margin-bottom: 30px;
  }
}

/* slick
----------------------------------*/
.sliderArea-box {
  border-left: 2px solid #dd7687;
}
@media all and (max-width: 639px) {
  .sliderArea-box {
    border-left: none;
  }
}

.sliderArea {
  max-width: 90%;
  margin: 0 auto;
  padding: 0 25px;
}
@media all and (max-width: 639px) {
  .sliderArea {
    max-width: 100%;
  }
}

.sliderArea.w300 {
  max-width: 300px;
}

.slider {
  /*横幅94%で左右に余白を持たせて中央寄せ*/
  width: 94%;
  margin: 0 auto;
}

.slick-slide {
  margin: 0 5px;
  padding: 15px !important;
}

.slick-slide img {
  width: 100%;
  height: 100%;
}

.slick-prev,
.slick-next {
  z-index: 1;
  background: #333;
}

.slick-prev:before,
.slick-next:before {
  color: #000;
}

.slick-prev:before {
  position: absolute;
  content: "";
  color: #000;
  background: url(../img/arrow-left.png) no-repeat !important;
  background-size: contain !important;
  width: 20px;
  height: 20px;
  left: 10px;
  top: 48%;
  z-index: 1;
}
@media all and (max-width: 639px) {
  .slick-prev:before {
    left: -10px;
  }
}

@media all and (max-width: 639px) {
  .slick-prev {
    left: -30px !important;
  }
}

.slick-next:before {
  color: #000;
  position: absolute;
  content: "";
  background: url(../img/arrow-right.png) no-repeat !important;
  background-size: contain !important;
  width: 20px;
  height: 20px;
  right: 10px;
  top: 48%;
  z-index: 1;
}
@media all and (max-width: 639px) {
  .slick-next:before {
    right: -10px;
  }
}

@media all and (max-width: 639px) {
  .slick-next {
    right: -30px !important;
  }
}

.slick-slide {
  transition: all ease-in-out 0.3s;
  opacity: 0.2;
}

.slick-active {
  opacity: 1;
}

.slick-current {
  opacity: 1;
}

.slide_list {
  position: relative;
  display: none;
  margin: 0px auto 30px;
}
.slide_list li {
  margin-right: 1%;
}
.slide_list li img {
  height: 400px;
  transition: filter 0.2s ease-in;
}
.slide_list li p {
  display: none;
}
.slide_list li .caption,
.slide_list li .caption2 {
  display: none;
}
.slide_list li:hover img {
  filter: grayscale(0);
}
@media all and (max-width: 639px) {
  .slide_list li img {
    width: 200px;
    height: 240px;
  }
}

.slide_list2 {
  position: relative;
  display: none;
  margin: 0px auto;
}
.slide_list2 li {
  margin-right: 1%;
}
.slide_list2 li p {
  display: none;
}
.slide_list2 li .caption,
.slide_list2 li .caption2 {
  display: none;
}
.slide_list2 li img {
  height: 400px;
  transition: filter 0.2s ease-in;
}
.slide_list2 li:hover img {
  filter: grayscale(0);
}
@media all and (max-width: 639px) {
  .slide_list2 li img {
    width: 200px;
    height: 240px;
  }
}

.top-list li {
  padding: 8px;
  font-weight: 600;
}
.top-list li:not(:last-child) {
  margin-bottom: 10px;
  border-bottom: 1px solid #5e5043;
}
.top-list li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  font-weight: 900;
  margin-right: 5px;
  color: #e6c405;
}
.top-list.type1 li:before {
  color: #68afd8;
}

.sinryou-list {
  font-size: 12px;
  letter-spacing: 0;
}

.name-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  flex-direction: row-reverse;
  font-weight: 600;
  margin: 10px auto 40px;
}
.name-box p {
  color: #d34d63;
}
.name-box p span {
  display: block;
  font-size: 1.3rem;
  color: #5e5043;
}
@media all and (max-width: 639px) {
  .name-box p span {
    font-size: 12px;
  }
}
.name-box p:first-child {
  margin-left: 30px;
}

.about-txt {
  -moz-column-count: 2;
       column-count: 2;
  -moz-column-gap: 70px;
       column-gap: 70px;
}
@media all and (max-width: 639px) {
  .about-txt {
    -moz-column-count: inherit;
         column-count: inherit;
  }
}

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

.top-anchor {
  display: flex;
  max-width: 800px;
  margin: 30px auto 0;
  flex-wrap: wrap;
  justify-content: space-between;
}
.top-anchor li {
  width: 31%;
}
.top-anchor li a {
  display: block;
  width: 100%;
  text-align: center;
}
.top-anchor li img {
  max-width: 80%;
  margin: 0 auto;
}
.top-anchor li .anchor-title {
  position: relative;
  margin-top: 20px;
}
.top-anchor li .anchor-title span {
  padding: 10px 0;
  font-family: "Shippori Mincho", serif, "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  border-top: 0.9px solid #dd7687;
  border-bottom: 0.9px solid #dd7687;
  letter-spacing: 0.15em;
}
@media all and (max-width: 639px) {
  .top-anchor li .anchor-title span {
    display: block;
    font-size: 1.2rem;
    line-height: 1.3;
    padding: 6px 0;
  }
}
.top-anchor li .anchor-title:after {
  position: absolute;
  content: "";
  left: 50%;
  transform: translateX(-50%);
  bottom: -30px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 12.5px 0 12.5px;
  border-color: #dd7687 transparent transparent transparent;
}

/* top_main
----------------------------------*/
.top_main {
  overflow: hidden;
  margin-bottom: 20px;
}
.top_main .inner {
  position: relative;
  margin: 40px 0 60px;
}
.top_main .inner .top_main_contents {
  position: relative;
  max-width: calc(100% - 100px);
  margin: 0 auto;
}
.top_main .inner .top_main_contents .top_main_txt {
  position: relative;
  width: 750px;
  left: 0%;
  max-width: 100%;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  padding: 35px 50px;
}
.top_main .inner .top_main_contents .top_main_img {
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 40px;
  width: 800px;
  max-width: 100%;
}
.top_main .inner .top_main_contents .top_main_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
@media all and (max-width: 896px) {
  .top_main .inner .top_main_contents .top_main_img {
    display: none;
  }
}
.top_main .inner .top_main_contents .top_main_img_small {
  display: none;
}
@media all and (max-width: 896px) {
  .top_main .inner .top_main_contents .top_main_img_small {
    display: block;
    margin-bottom: 30px;
  }
}
@media all and (max-width: 896px) {
  .top_main .inner .top_main_contents {
    max-width: 90%;
    margin: auto;
  }
  .top_main .inner .top_main_contents .top_main_txt {
    left: 0%;
    padding: 15px;
  }
}
@media all and (max-width: 639px) {
  .top_main .inner .top_main_contents {
    max-width: 95%;
  }
}

.clinic-list li {
  margin-bottom: 30px;
}
.clinic-list li a {
  display: block;
  width: 100%;
  height: 280px;
  overflow: hidden;
}
.clinic-list li a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  font-family: "object-fit: contain;";
}
.clinic-list li p {
  font-size: 1.4rem;
  padding: 5px;
  line-height: 1.5;
}
@media all and (max-width: 639px) {
  .clinic-list li a {
    height: 200px;
  }
  .clinic-list li a img {
    -o-object-fit: cover;
       object-fit: cover;
    font-family: "object-fit: cover;";
  }
  .clinic-list li p {
    font-size: 13px;
  }
}

.bundoki {
  width: 350px;
  margin: 0 auto -90px;
  text-align: center;
  opacity: 0.5;
}
@media all and (max-width: 639px) {
  .bundoki {
    width: 85%;
  }
}

.bg-concern {
  border: 2px solid #e2ceaf;
  max-width: 1200px;
  margin: -30px auto 40px;
  position: relative;
  z-index: 2;
  padding: 25px 0;
}
@media all and (max-width: 896px) {
  .bg-concern {
    max-width: 95%;
  }
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
}
.feature-list > li {
  width: 31%;
  position: relative;
  margin-bottom: 50px;
}
@media all and (max-width: 639px) {
  .feature-list > li {
    width: 95%;
    margin: 0 auto 35px;
  }
}
.feature-list > li:nth-child(3n+2) {
  transform: translateY(40px);
}
@media all and (max-width: 639px) {
  .feature-list > li:nth-child(3n+2) {
    transform: none;
  }
}
.feature-list > li .feature-inner {
  width: 100%;
  height: 100%;
  background: #fff;
  overflow: hidden;
  position: relative;
}
.feature-list > li figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
@media all and (max-width: 639px) {
  .feature-list > li figure {
    width: 100%;
    height: 250px;
  }
}
.feature-list > li .feature-num {
  display: block;
  position: absolute;
  text-align: center;
  font-size: 3rem;
  width: 70px;
  height: 70px;
  background: rgba(17, 17, 17, 0.8);
  font-family: "Cinzel", serif;
  font-weight: 500;
  color: #fff;
  left: 20px;
  top: -30px;
  z-index: 3;
  border-radius: 50%;
  line-height: 70px;
}
@media all and (max-width: 639px) {
  .feature-list > li .feature-num {
    width: 70px;
    height: 70px;
    line-height: 70px;
    font-size: 3rem;
  }
}
.feature-list > li .feature-txt {
  position: relative;
  padding: 20px;
  flex: 1;
  font-size: 1.4rem;
}
@media all and (max-width: 639px) {
  .feature-list > li .feature-txt {
    padding: 25px 15px;
    font-size: 1.2rem;
  }
}
.feature-list > li .feature-title {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.4;
  font-family: "Shippori Mincho", serif, "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  margin-bottom: 10px;
}
@media all and (max-width: 639px) {
  .feature-list > li .feature-title {
    font-size: 1.5rem;
  }
}
.feature-list > li:hover .feature-inner {
  background: lemonchiffon;
}
@media all and (max-width: 639px) {
  .feature-list {
    padding: 0 10px;
  }
}

.article-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.article-box .left {
  width: 30%;
}
.article-box .right {
  width: 68%;
}
@media all and (max-width: 896px) {
  .article-box {
    padding: 0 10px;
  }
  .article-box .left {
    width: 100%;
  }
  .article-box .right {
    width: 100%;
  }
}

.fixed-btn {
  position: fixed;
  right: 0;
  top: 130px;
  z-index: 150;
  width: 60px;
}
.fixed-btn a {
  display: block;
  font-weight: 600;
  font-size: 1.5rem;
  color: #fff;
}
.fixed-btn a:hover {
  opacity: 0.8;
}
.fixed-btn a:last-of-type {
  margin-top: 10px;
}
@media all and (max-width: 639px) {
  .fixed-btn {
    top: auto;
    width: 100%;
    bottom: 0px;
    display: flex;
  }
  .fixed-btn a {
    background: #aa8f3e;
    padding: 0 10px;
  }
  .fixed-btn a:last-of-type {
    margin: 0;
    background: #6f5e53;
  }
}

.covid-area {
  position: relative;
  padding: 0 0 100px;
  background: linear-gradient(to bottom, #222, #111);
}

.covid-wrap {
  max-width: 1000px;
  margin: 0 auto 0;
  background: #fff;
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0px 7px 29px 0px rgba(0, 0, 0, 0.02);
  transform: translateY(-25px);
  z-index: 20;
  cursor: pointer;
}
@media all and (max-width: 639px) {
  .covid-wrap {
    max-width: 95%;
    padding: 20px 15px;
    border-radius: 10px;
  }
}

.covid-title {
  border-top: 0.9px solid #dd7687;
  border-bottom: 0.9px solid #dd7687;
  padding: 10px 5px;
  text-align: center;
  font-family: "Shippori Mincho", serif, "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 1.6;
  color: #5e5043;
  margin-bottom: 25px;
  position: relative;
}
.covid-title:after {
  position: absolute;
  content: "";
  right: 10px;
  top: 15px;
  width: 20px;
  height: 20px;
  border-top: 2px solid #68afd8;
  border-right: 2px solid #68afd8;
  transform: rotate(135deg);
}
@media all and (max-width: 639px) {
  .covid-title {
    padding: 10px 40px 10px 5px;
    font-size: 1.6rem;
  }
  .covid-title:after {
    width: 14px;
    height: 14px;
  }
}

.covid-content {
  display: none;
}

.half-box {
  width: 50%;
  margin-left: auto;
  padding: 40px;
  color: #fff;
}
@media all and (max-width: 639px) {
  .half-box {
    padding: 25px 15px;
    width: 100%;
  }
}

.tel-box {
  border: 0.9px solid #5e5043;
  width: 80%;
  margin: 0 auto 40px;
  padding: 30px;
  text-align: center;
}
.tel-box a {
  display: block;
  font-size: 4rem;
  line-height: 1.3;
  font-family: "Share", cursive;
  font-weight: 600;
  text-transform: uppercase;
  color: #68afd8;
}
.tel-box a:hover {
  color: #dd7687;
}
.tel-box a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  margin-right: 8px;
  font-size: 0.8em;
}
@media all and (max-width: 639px) {
  .tel-box {
    padding: 20px;
    max-width: 95%;
  }
  .tel-box a {
    font-size: 2.6rem;
  }
}

/*----------------------------------
 flex
----------------------------------*/
.flex {
  display: flex;
  flex-wrap: wrap;
}
@media all and (max-width: 1100px) {
  .flex.flex-pro {
    display: block;
  }
  .flex.flex-pro .flex-30 {
    width: 90%;
    margin: 0 auto;
  }
  .flex.flex-pro .flex-68 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
  }
  .flex.flex-pro .flex-40 {
    width: 40%;
  }
}
@media all and (max-width: 1100px) and (max-width: 639px) {
  .flex.flex-pro .flex-40 {
    width: 100%;
  }
}
@media all and (max-width: 896px) {
  .flex.flex-tablet {
    display: block;
  }
  .flex.flex-tablet .flex-60 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .flex.flex-tablet .flex-40 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media all and (max-width: 896px) {
  .flex.flex-tbl {
    display: block;
  }
  .flex.flex-tbl .flex-48 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .flex.flex-tbl .flex-48.l-m2 {
    margin-left: auto;
    margin-right: auto;
  }
}
@media all and (max-width: 639px) {
  .flex {
    display: block;
  }
}
.flex.w-100 {
  width: 100%;
}
.flex.j-center {
  justify-content: center;
}
.flex.a-center {
  align-items: center;
}
.flex.a-first {
  align-items: flex-start;
}
.flex.a-end {
  align-items: flex-end;
}
.flex.reverse .flex-68 {
  order: 2;
}
.flex.reverse .flex-30 {
  order: 1;
}
.flex.reverse .flex-30.l-m2 {
  margin-left: 0;
}
.flex.reverse > .flex-60 {
  order: 2;
}
.flex.reverse > .flex-40 {
  order: 1;
}
.flex .flex-15 {
  width: 15%;
}
@media all and (max-width: 639px) {
  .flex .flex-15 {
    width: 90%;
    margin: 0 auto;
  }
}
.flex .flex-10 {
  width: 10%;
}
@media all and (max-width: 639px) {
  .flex .flex-10 {
    width: 100%;
    margin: 0 auto;
  }
}
.flex .flex-20 {
  width: 20%;
}
.flex .flex-20.l-m2 {
  margin-left: 2%;
}
@media all and (max-width: 639px) {
  .flex .flex-20 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .flex .flex-20.l-m2 {
    margin-left: auto;
  }
}
.flex .flex-24 {
  width: 24%;
}
@media all and (max-width: 639px) {
  .flex .flex-24 {
    width: 100%;
    margin: 0 auto;
  }
}
.flex .flex-30 {
  width: 30%;
}
.flex .flex-30.l-m2 {
  margin-left: 2%;
}
@media all and (max-width: 639px) {
  .flex .flex-30 {
    width: 100%;
    margin: 0 auto;
  }
  .flex .flex-30.l-m2 {
    margin-left: auto;
    margin-right: auto;
  }
}
.flex .flex-38 {
  width: 38%;
}
.flex .flex-38.l-m2 {
  margin-left: 2%;
}
@media all and (max-width: 639px) {
  .flex .flex-38 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .flex .flex-38.l-m2 {
    margin-left: auto;
  }
}
.flex .flex-40 {
  width: 40%;
}
@media all and (max-width: 639px) {
  .flex .flex-40 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
.flex .flex-48 {
  width: 48%;
}
@media all and (max-width: 639px) {
  .flex .flex-48 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .flex .flex-48:first-child {
    margin-left: auto;
  }
}
.flex .flex-48.l-m2 {
  margin-left: 2%;
}
@media all and (max-width: 639px) {
  .flex .flex-48.l-m2 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
.flex .flex-48.l-m4 {
  margin-left: 4%;
}
@media all and (max-width: 639px) {
  .flex .flex-48.l-m4 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
.flex .flex-50 {
  width: 50%;
}
@media all and (max-width: 639px) {
  .flex .flex-50 {
    width: 100%;
  }
}
.flex .flex-58 {
  width: 58%;
}
@media all and (max-width: 639px) {
  .flex .flex-58 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .flex .flex-58.l-m2 {
    margin-left: auto;
  }
}
.flex .flex-58.l-m2 {
  margin-left: 2%;
}
.flex .flex-60 {
  width: 60%;
}
@media all and (max-width: 639px) {
  .flex .flex-60 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
.flex .flex-68 {
  width: 68%;
}
@media all and (max-width: 639px) {
  .flex .flex-68 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
.flex .flex-68.l-m2 {
  margin-left: 2%;
}
@media all and (max-width: 639px) {
  .flex .flex-68.l-m2 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
.flex .flex-70 {
  width: 70%;
}
@media all and (max-width: 639px) {
  .flex .flex-70 {
    width: 100%;
  }
}
.flex .flex-76 {
  width: 76%;
}
@media all and (max-width: 639px) {
  .flex .flex-76 {
    width: 100%;
  }
}
.flex .flex-78 {
  width: 78%;
}
@media all and (max-width: 639px) {
  .flex .flex-78 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
.flex .flex-78.l-m2 {
  margin-left: 2%;
}
@media all and (max-width: 639px) {
  .flex .flex-78.l-m2 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
.flex .flex-80 {
  width: 80%;
}
@media all and (max-width: 639px) {
  .flex .flex-80 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
.flex .flex-86 {
  width: 86%;
}
@media all and (max-width: 639px) {
  .flex .flex-86 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
.flex .flex-86.l-m4 {
  margin-left: 4%;
}
@media all and (max-width: 639px) {
  .flex .flex-86.l-m4 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
.flex .flex-85 {
  width: 85%;
}
@media all and (max-width: 639px) {
  .flex .flex-85 {
    width: 100%;
  }
}

.t-black {
  color: #111;
}

.listbox {
  margin: 0 30px;
}
@media all and (max-width: 639px) {
  .listbox {
    margin: 0 15px;
  }
}
.listbox li {
  padding: 5px 30px;
  border-bottom: 2px dotted #b0aba6;
  position: relative;
  font-size: 1.6rem;
}
@media all and (max-width: 639px) {
  .listbox li {
    padding: 5px 20px;
  }
  .listbox li.t-min {
    font-size: 1.3rem;
  }
}
.listbox li:before {
  position: absolute;
  content: "";
  width: 100%;
  border-bottom: 2px solid #727171;
  bottom: -4px;
  left: 0;
  opacity: 0.3;
}
.listbox li span {
  padding-right: 5px;
  color: #dd7687;
}

.listbox2 li {
  position: relative;
}
.listbox2 .feature-txt {
  padding: 20px;
  background-color: #fff;
  position: relative;
}
.listbox2 .feature-txt.type1 {
  border-bottom: 2px solid #727171;
  text-align: center;
  font-size: 1.6rem;
}
.listbox2 .feature-subtxt {
  font-size: 5rem;
  font-weight: bold;
  width: 110%;
  color: #000;
  opacity: 0.1;
  position: absolute;
  bottom: 0;
}
.listbox2 .feature-main {
  position: absolute;
  background-color: #727171;
  color: #fff;
  padding: 14px 20px;
  text-align: center;
  top: -5px;
  left: 10px;
  font-size: 2rem;
  font-family: "Cinzel", serif;
  font-weight: 500;
  filter: drop-shadow(6px 5px 1px rgba(0, 0, 0, 0.6));
}
.listbox2 .feature-main2 {
  color: #727171;
  font-weight: bold;
  padding: 14px 20px;
  text-align: center;
  font-size: 2rem;
  border-bottom: 2px solid #727171;
}

.dental-box .title {
  text-align: center;
  font-size: 3rem;
}
.dental-box .title span {
  font-size: 5rem;
  font-weight: bold;
  color: #727171;
}
@media all and (max-width: 639px) {
  .dental-box .title {
    font-size: 1.5rem;
  }
  .dental-box .title span {
    font-size: 2rem;
  }
}
.dental-box .txt span {
  border-bottom: 2px solid #727171;
}

.whiten-box .title {
  text-align: center;
  font-size: 2rem;
}
.whiten-box .title span {
  font-size: 3rem;
  font-weight: bold;
  color: #727171;
}
@media all and (max-width: 639px) {
  .whiten-box .title {
    font-size: 1.5rem;
  }
  .whiten-box .title span {
    font-size: 2rem;
  }
}
.whiten-box .txt .line {
  border-bottom: 2px solid #727171;
}
.whiten-box .txt .bold {
  font-size: 1.6rem;
  font-weight: bold;
}
@media all and (max-width: 639px) {
  .whiten-box .txt .bold {
    font-size: 1.5rem;
  }
}

.photo-deko {
  filter: drop-shadow(8px 8px 0px #b0aba6);
  margin-bottom: 20px;
}
.photo-deko img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.attention-box {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px 0 50px;
}
.attention-box .list3 {
  max-width: 900px;
  margin: 0 auto;
}
.attention-box li {
  background-color: #dd7687;
  border-radius: 20px;
  padding: 20px;
  margin: 0 auto 20px;
  text-align: center;
}
.attention-box li .txt {
  text-align: center;
  color: #fff;
  padding-top: 10px;
}
@media all and (max-width: 639px) {
  .attention-box {
    padding-bottom: 100px;
  }
  .attention-box li {
    width: 48%;
    margin-right: 2%;
  }
  .attention-box li:nth-child(2n) {
    margin-right: 0;
  }
}

/* Q and A table
----------------------------------*/
.qa-list dl {
  position: relative;
  margin: 30px 0 0;
  cursor: pointer;
  border: 1px solid rgb(244, 232, 255);
}
.qa-list dl:first-child {
  margin-top: 0;
}

.qa-list.type1 dl {
  border: none;
}
.qa-list.type1 dl dt {
  font-family: "Shippori Mincho", serif, "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  padding: 20px 30px;
}
.qa-list.type1 dl dt:before {
  content: "";
}
.qa-list.type1 dl dd {
  padding: 20px 30px;
}
.qa-list.type1 dl dd:before {
  content: "";
}
@media all and (max-width: 896px) {
  .qa-list.type1 dl dt {
    padding: 20px 20px;
  }
  .qa-list.type1 dl dd {
    padding: 20px 0px;
  }
}

.qa-list .open dt::after {
  transform: rotate(-45deg);
}

.qa-list dl dt {
  position: relative;
  padding: 20px 30px 20px 60px;
  font-weight: bold;
  background-color: #ffffff;
  border-bottom: 1px solid #dd7687;
  font-size: 1.8rem;
}
.qa-list dl dt:before {
  font-size: 22px;
  line-height: 1;
  position: absolute;
  top: 22px;
  left: 20px;
  display: block;
  content: "Q.";
  color: #777;
}
.qa-list dl dt:after {
  position: absolute;
  top: 40%;
  right: 26px;
  display: block;
  width: 7px;
  height: 7px;
  margin: auto;
  content: "";
  transform: rotate(135deg);
  border-top: 2px solid #000;
  border-right: 2px solid #000;
}

.qa-list dl dd {
  position: relative;
  margin: 0;
  padding: 20px 20px 20px 60px;
}
.qa-list dl dd:before {
  font-size: 22px;
  line-height: 1;
  position: absolute;
  left: 20px;
  display: block;
  content: "A.";
  font-weight: bold;
  color: #dd7687;
}

@media all and (max-width: 896px) {
  .qa-list dl {
    margin: 10px 0 0;
  }
  .qa-list dl:after {
    top: 20px;
    right: 20px;
    width: 7px;
    height: 7px;
  }
  .qa-list dl dt {
    padding: 16px 26px;
    font-size: 14px;
  }
  .qa-list dl dt:before {
    font-size: 14px;
    top: 20px;
    left: 15px;
  }
  .qa-list dl dd {
    margin: 0;
    padding: 16px;
    font-size: 14px;
  }
  .qa-list dl dd:before {
    font-size: 14px;
    left: 15px;
    margin-top: 5px;
  }
}
.price-list {
  max-width: 1500px;
  margin: 0 auto;
}
.price-list li {
  margin-bottom: 50px;
}
.price-list .mainttl {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  border-bottom: 2px solid #727171;
}
.price-list .mainttl .txt {
  color: #dd7687;
  font-size: 2rem;
  padding-bottom: 5px;
}
.price-list .mainttl .num {
  text-align: right;
  font-size: 2rem;
  font-family: "Share", cursive;
  font-weight: 600;
  text-transform: uppercase;
}
.price-list .mainttl .num span {
  font-size: 1.4rem;
}
@media all and (max-width: 639px) {
  .price-list .mainttl .txt {
    color: #dd7687;
    font-size: 1.4rem;
  }
  .price-list .mainttl .num {
    text-align: right;
    font-size: 1.3rem;
    font-family: "Share", cursive;
    font-weight: 600;
    text-transform: uppercase;
  }
  .price-list .mainttl .num span {
    font-size: 1.4rem;
  }
}

/*----------------------------------
pc/sp
----------------------------------*/
@media all and (max-width: 639px) {
  .pconly {
    display: none;
  }
}

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

.news-list li {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  padding: 4px 4px 6px;
}
.news-list li:not(:last-of-type) {
  margin-bottom: 15px;
}
.news-list li .data {
  font-size: 1.6rem;
  color: #333;
  border: 0.9px solid #333;
  padding: 0px 10px;
  font-family: "Cinzel", serif;
  font-weight: 500;
  /*background: #111;*/
}
@media all and (max-width: 639px) {
  .news-list li .data {
    font-size: 12px;
  }
}
.news-list li .tag {
  font-size: 1.4rem;
  color: #fff;
  background-color: #333;
  border: 0.9px solid #333;
  padding: 4px 6px;
  margin-left: 20px;
  width: 120px;
  text-align: center;
  /*background: #111;*/
}
@media all and (max-width: 639px) {
  .news-list li .tag {
    font-size: 12px;
    margin-left: 0px;
  }
}
.news-list li .txt {
  flex: 1;
  margin: 4px 0 0 20px;
  padding: 0;
  font-size: 1.6rem;
  line-height: 1.4;
  color: #000;
  font-weight: normal;
}
.news-list li .txt a {
  color: #000;
  font-weight: normal;
  text-decoration: underline;
  font-weight: normal;
}
.news-list li .txt a:hover {
  opacity: 0.5;
}
@media all and (max-width: 896px) {
  .news-list li {
    display: block;
  }
  .news-list li .data {
    display: inline-block;
    font-size: 1.2rem;
    padding: 4px;
    margin-left: 0;
  }
  .news-list li .txt {
    margin: 5px 0 0;
    display: block;
    font-size: 1.2rem;
  }
}

.anime-txt {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 50%;
  top: 30%;
}
@media all and (max-width: 639px) {
  .anime-txt {
    top: -10%;
    width: 60%;
  }
}

.catch-logo {
  width: 400px;
  height: 100px;
}
@media all and (max-width: 639px) {
  .catch-logo {
    width: 80%;
  }
}

.cls-1 {
  fill: #dd7687;
  opacity: 0;
  -webkit-animation: texton 0.4s linear 0.4s forwards;
          animation: texton 0.4s linear 0.4s forwards;
}

.cls-1-2 {
  fill: #dd7687;
  opacity: 0;
  -webkit-animation: texton 0.4s linear 0.6s forwards;
          animation: texton 0.4s linear 0.6s forwards;
}

.cls-1-3 {
  fill: #dd7687;
  opacity: 0;
  -webkit-animation: texton 0.4s linear 0.8s forwards;
          animation: texton 0.4s linear 0.8s forwards;
}

.cls-1-4 {
  fill: #dd7687;
  opacity: 0;
  -webkit-animation: texton 0.4s linear 1s forwards;
          animation: texton 0.4s linear 1s forwards;
}

.cls-1-5 {
  fill: #dd7687;
  opacity: 0;
  -webkit-animation: texton 0.4s linear 1.2s forwards;
          animation: texton 0.4s linear 1.2s forwards;
}

.cls-1-6 {
  fill: #dd7687;
  opacity: 0;
  -webkit-animation: texton 0.4s linear 1.4s forwards;
          animation: texton 0.4s linear 1.4s forwards;
}

.cls-1-7 {
  fill: #dd7687;
  opacity: 0;
  -webkit-animation: texton 0.4s linear 1.6s forwards;
          animation: texton 0.4s linear 1.6s forwards;
}

.cls-1-8 {
  fill: #dd7687;
  opacity: 0;
  -webkit-animation: texton 0.4s linear 1.8s forwards;
          animation: texton 0.4s linear 1.8s forwards;
}

.cls-2 {
  fill: #727171;
  opacity: 0;
  -webkit-animation: texton2 0.4s linear 2.6s forwards;
          animation: texton2 0.4s linear 2.6s forwards;
}

@-webkit-keyframes texton {
  0% {
    opacity: 0;
  }
  1% {
    opacity: 0.5;
  }
  70% {
    transform: scale(1.1);
    opacity: 1;
  }
  85% {
    opacity: 0.5;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes texton {
  0% {
    opacity: 0;
  }
  1% {
    opacity: 0.5;
  }
  70% {
    transform: scale(1.1);
    opacity: 1;
  }
  85% {
    opacity: 0.5;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes texton2 {
  0% {
    opacity: 0;
  }
  1% {
    opacity: 0.5;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes texton2 {
  0% {
    opacity: 0;
  }
  1% {
    opacity: 0.5;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes textAnime {
  0% {
    stroke-dashoffset: 600;
    fill: transparent;
  }
  15% {
    fill: transparent;
  }
  31% {
    stroke-dashoffset: 0;
    fill: rgb(255, 255, 255);
  }
  32% {
    stroke-dashoffset: 0;
    fill: rgb(255, 255, 255);
  }
}
@keyframes textAnime {
  0% {
    stroke-dashoffset: 600;
    fill: transparent;
  }
  15% {
    fill: transparent;
  }
  31% {
    stroke-dashoffset: 0;
    fill: rgb(255, 255, 255);
  }
  32% {
    stroke-dashoffset: 0;
    fill: rgb(255, 255, 255);
  }
}
@-webkit-keyframes textAnime2 {
  0% {
    fill: transparent;
  }
  15% {
    fill: transparent;
  }
  100% {
    stroke: #fff;
    stroke-dasharray: 9.044 9.044;
  }
}
@keyframes textAnime2 {
  0% {
    fill: transparent;
  }
  15% {
    fill: transparent;
  }
  100% {
    stroke: #fff;
    stroke-dasharray: 9.044 9.044;
  }
}
@-webkit-keyframes animeline {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes animeline {
  to {
    stroke-dashoffset: 0;
  }
}
/*----------------------------------
txtdeko
----------------------------------*/
.txtdeko-box {
  position: relative;
  margin: 0 auto 70px;
  text-align: center;
}
.txtdeko-box:before {
  position: absolute;
  content: "";
  width: 500px;
  height: 40px;
  left: 0;
  right: 0;
  margin: 0 auto;
  background: url(../img/title-line.png) no-repeat;
  bottom: -70px;
}
@media all and (max-width: 639px) {
  .txtdeko-box:before {
    width: 300px;
  }
}

.txtdeko-txt {
  color: #8d755e;
  font-size: 2rem;
  font-weight: bold;
}
@media all and (max-width: 639px) {
  .txtdeko-txt {
    font-size: 1.4rem;
  }
}

.txtdeko-eng {
  font-family: "Share", cursive;
  font-weight: 600;
  text-transform: uppercase;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: -40px;
  font-size: 4rem;
  opacity: 0.2;
  color: #b0aba6;
}
@media all and (max-width: 639px) {
  .txtdeko-eng {
    font-size: 2rem;
    top: -20px;
  }
}

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

.txtdeko-2 {
  font-size: 3rem;
  line-height: 1.6;
}
.txtdeko-2 span {
  font-size: 4rem;
}
@media all and (max-width: 639px) {
  .txtdeko-2 {
    font-size: 1.6rem;
    text-align: center;
  }
  .txtdeko-2 span {
    font-size: 2rem;
  }
}

.txtdeko2 {
  position: relative;
  color: #5e5043;
  opacity: 0.4;
  font-size: 3rem;
  line-height: 1.6;
  color: #b0aba6;
}
@media all and (max-width: 639px) {
  .txtdeko2 {
    font-size: 1.4rem;
    line-height: 1.6;
  }
}

.txtdeko3 {
  position: relative;
  padding: 0 20px;
}
.txtdeko3 span {
  position: relative;
}
.txtdeko3 span:before {
  position: absolute;
  content: "";
  width: 10px;
  height: 8px;
  border-left: 10px solid #dd7687;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  top: 2px;
  left: -8px;
}
.txtdeko3.type2 span:before {
  left: -12px;
  border-left: 10px solid #55725a;
}
@media all and (max-width: 639px) {
  .txtdeko3 {
    text-align: left;
  }
}

.txtdeko4 {
  margin-bottom: 10px;
  text-align: center;
  position: relative;
}
.txtdeko4 span {
  background-color: #727171;
  padding: 2px 15px;
  font-family: "Shippori Mincho", serif, "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  position: relative;
  z-index: 2;
  font-size: 1.2rem;
  border-radius: 50px;
}
@media all and (max-width: 639px) {
  .txtdeko4 span {
    font-size: 1.2rem;
    display: inline-block;
    line-height: 1.2;
    padding: 4px 15px;
  }
}
.txtdeko4.type2 span {
  background-color: rgba(85, 114, 90, 0.3);
}
.txtdeko4.txt-2rem span {
  font-size: 2rem;
  padding: 2px 30px;
}
@media all and (max-width: 639px) {
  .txtdeko4.txt-2rem span {
    font-size: 1.4rem;
    padding: 4px 20px;
  }
}

.txtdeko5 {
  text-align: center;
  padding: 10px 0;
  border-top: 1px solid #8d755e;
  border-bottom: 1px solid #8d755e;
  color: #727171;
}

.txtdeko-min {
  font-weight: normal;
  font-size: 1.2rem;
}

.txtdeko-min2 {
  font-weight: normal;
  font-size: 1.4rem;
}
@media all and (max-width: 639px) {
  .txtdeko-min2 {
    font-size: 1.2rem;
  }
}

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

.txtdeko-arrow {
  position: relative;
}
.txtdeko-arrow span {
  position: relative;
}
.txtdeko-arrow span:before {
  position: absolute;
  content: "";
  width: 10px;
  height: 20px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 20px solid #55725a;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  bottom: -50px;
}

.txtdeko-arrow-right {
  position: relative;
}
.txtdeko-arrow-right span {
  position: relative;
  padding-left: 30px;
}
.txtdeko-arrow-right span:before {
  position: absolute;
  content: "";
  width: 18px;
  height: 10px;
  border-bottom: 10px solid transparent;
  border-left: 18px solid #55725a;
  border-top: 10px solid transparent;
  top: 1px;
  left: 0;
}

.txtdeko-numbox {
  position: relative;
  padding: 40px;
  display: table;
  width: 100%;
}
.txtdeko-numbox:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(141, 117, 94, 0.1);
  top: 0;
  left: 0;
}
.txtdeko-numbox .num {
  font-size: 10rem;
  font-family: "Shippori Mincho", serif, "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #5e5043;
  display: table-cell;
  padding-right: 20px;
  border-right: 1px solid #8d755e;
  line-height: 1;
  vertical-align: middle;
  text-align: center;
  width: 14%;
}
.txtdeko-numbox .txtarea {
  display: table-cell;
  padding: 0 0 0 20px;
  vertical-align: middle;
  width: 86%;
}
.txtdeko-numbox .txt {
  font-size: 2.4rem;
  line-height: 1.2;
  font-family: "Shippori Mincho", serif, "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #8d755e;
}
.txtdeko-numbox .subtxt {
  margin-top: 10px;
  font-family: "Shippori Mincho", serif, "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
}
@media all and (max-width: 639px) {
  .txtdeko-numbox {
    padding: 20px;
  }
  .txtdeko-numbox .num {
    font-size: 5rem;
    vertical-align: top;
    width: 14%;
  }
  .txtdeko-numbox .txtarea {
    vertical-align: top;
    width: 86%;
  }
  .txtdeko-numbox .txt {
    font-size: 1.6rem;
    line-height: 1.2;
    font-family: "Shippori Mincho", serif, "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-weight: 500;
    color: #8d755e;
  }
  .txtdeko-numbox .subtxt {
    margin-top: 5px;
    font-family: "Shippori Mincho", serif, "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-weight: 500;
    font-size: 1.2rem;
  }
}

.prf-box {
  position: relative;
}
.prf-box .detail {
  font-weight: normal;
  font-size: 1.2rem;
  max-width: 300px;
  margin: 10px auto;
  position: relative;
  background-color: rgba(255, 255, 255, 0.4);
  border-left: 2px solid #727171;
  border-right: 2px solid #727171;
  padding: 5px 0;
}
.prf-box .main {
  font-size: 1.4rem;
  color: #5e5043;
}
.prf-box .main span {
  font-size: 2rem;
  color: #333;
}

.minbox {
  background-color: #fff;
  padding: 20px;
  margin: 10px auto 20px;
}
.minbox.type2 {
  padding: 15px 20px;
  margin-bottom: 10px;
}
.minbox.type3 {
  padding: 15px 20px;
  margin-bottom: 0px;
}

.minbox2 {
  position: relative;
  font-family: "Shippori Mincho", serif, "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  max-width: 1000px;
  margin: 40px auto;
  border-top: 1px solid #8d755e;
  border-bottom: 1px solid #8d755e;
  padding: 20px;
}

.check-txtbox {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  z-index: 1;
  margin: 10px auto 0;
  padding: 0 40px;
  align-items: center;
}
.check-txtbox .icon {
  width: 14%;
  width: 34px;
}
.check-txtbox .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.check-txtbox .txt {
  width: 80%;
  font-family: "Shippori Mincho", serif, "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  font-size: 2rem;
  padding-left: 20px;
}
@media all and (max-width: 639px) {
  .check-txtbox {
    padding: 0px;
    align-items: flex-start;
  }
  .check-txtbox .icon {
    width: 16px;
  }
  .check-txtbox .txt {
    width: 80%;
    font-family: "Shippori Mincho", serif, "Lato", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-weight: 500;
    font-size: 1.4rem;
  }
}

.white-line {
  position: relative;
}
.white-line:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 6px;
  background: rgb(255, 255, 255);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 30%, rgb(255, 255, 255) 70%, rgba(255, 255, 255, 0) 100%);
  left: 0;
  right: 0;
  margin: 0 auto;
  top: -20px;
}

.whitebox {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 40px;
  border-radius: 20px;
  position: relative;
}
.whitebox.arrow:before {
  position: absolute;
  content: "";
  width: 10px;
  height: 20px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 20px solid #fff;
  bottom: -20px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.whitebox .txtdeko {
  position: relative;
  padding-bottom: 20px;
}
.whitebox .txtdeko .num {
  border: 1px solid #dd7687;
  color: #dd7687;
  padding: 10px 16px;
}
.whitebox .txtdeko .txt {
  padding-left: 5px;
  font-size: 2rem;
}
.whitebox .txtdeko:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 6px;
  background: url(../img/mtext-line.png) repeat;
  background-size: 22px 6px;
  bottom: 0;
  mix-blend-mode: color-burn;
}
.whitebox .box-detail {
  max-width: 600px;
  margin: 0 auto;
}
@media all and (max-width: 639px) {
  .whitebox {
    padding: 20px;
  }
  .whitebox .txtdeko .num {
    padding: 6px 12px;
  }
  .whitebox .txtdeko .txt {
    font-size: 1.4rem;
  }
  .whitebox .box-detail {
    max-width: 600px;
    margin: 0 auto;
    font-weight: normal;
  }
}

.borderbox {
  border: 1px solid rgba(141, 117, 94, 0.6);
  padding: 20px;
  margin-top: 20px;
  width: 100%;
}
.borderbox .txtdeko4 span {
  font-size: 1.5rem;
  background-color: #8d755e;
  padding: 5px 40px;
  color: #fff;
}
.borderbox .borderbox-txt {
  font-size: 1.4rem;
}
@media all and (max-width: 639px) {
  .borderbox .txtdeko4 span {
    font-size: 1.4rem;
    background-color: #8d755e;
    padding: 5px 20px;
    color: #fff;
  }
  .borderbox .borderbox-txt {
    font-size: 1.2rem;
  }
}

.box-list li {
  border: 4px dotted #dd7687;
  padding: 20px;
}
.box-list li .detail {
  margin: 0 auto;
  text-align: center;
}
.box-list .txt {
  margin-bottom: 10px;
}
.box-list .txtlink {
  margin: 0 auto;
  text-align: center;
}
.box-list .txtlink span {
  background-color: #55725a;
  color: #fff;
  padding: 6px 30px;
  border-radius: 50px;
  font-size: 1.4rem;
  border: 1px solid #55725a;
}
.box-list .txtlink:hover span {
  transition: 0.4s;
  background-color: #fff;
  color: #55725a;
}

/*----------------------------------
txtbox
----------------------------------*/
.txtbox {
  text-align: left;
  display: table;
}
.txtbox .title {
  display: table-cell;
  font-size: 2rem;
  width: 18%;
  text-align: center;
  background-color: #dd7687;
  color: #fff;
  margin: 0 2% 20px 0;
  vertical-align: middle;
}
.txtbox .txt {
  display: table-cell;
  vertical-align: middle;
  padding: 0 0 0 10px;
}
@media all and (max-width: 639px) {
  .txtbox {
    display: block;
  }
  .txtbox .title {
    width: 50%;
    margin: 0 auto 20px;
    display: block;
    font-size: 1.5rem;
  }
  .txtbox .txt {
    width: 100%;
    padding: 0px;
  }
}

.txtbox2 .title {
  border-bottom: 2px solid #dd7687;
  padding-bottom: 10px;
  margin-bottom: 10px;
  font-weight: bold;
  position: relative;
}
.txtbox2 .title span {
  color: #dd7687;
}
.txtbox2.type2 {
  background-color: rgba(85, 114, 90, 0.4);
  color: #fff;
  padding: 4px 20px;
  margin-bottom: 10px;
}
.txtbox2.type2 .title {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0px;
}
.txtbox2.type2 span {
  font-size: 2rem;
  color: #333;
  padding: 0 4px;
}
@media all and (max-width: 639px) {
  .txtbox2.type2 span {
    font-size: 1.8rem;
  }
}

/*----------------------------------
boxdeko
----------------------------------*/
.boxdeko {
  background-color: white;
  padding: 40px;
  font-weight: 300;
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 60px auto;
  border-radius: 20px;
}
.boxdeko .title {
  margin: 0 auto;
  text-align: center;
}
.boxdeko .title span {
  background-color: #dd7687;
  color: #fff;
  padding: 10px 30px;
  border-radius: 50px;
  text-align: center;
}
@media all and (max-width: 896px) {
  .boxdeko {
    margin-bottom: 0;
    padding: 20px 0;
    width: 100%;
  }
  .boxdeko.sp-b-20 {
    margin-bottom: 20px;
  }
  .boxdeko .title span {
    display: inline-block;
  }
}
.boxdeko.type-white {
  background-color: #fff;
}
.boxdeko.type-green {
  background-color: rgba(136, 180, 134, 0.1);
}
.boxdeko a {
  padding: 0 5px;
}
.boxdeko .btn {
  border: 1px solid #776528;
  padding: 4px 20px;
  background-color: #776528;
  color: #fff;
  border-radius: 50px;
}
.boxdeko .btn:hover {
  background-color: #fff;
  color: #776528;
}

.boxdeko2 {
  padding: 20px;
  background-color: #fff;
}
@media all and (max-width: 896px) {
  .boxdeko2 {
    padding: 20px;
  }
  .boxdeko2.sp-b-20 {
    margin-bottom: 20px;
  }
}

.boxdeko-min {
  padding: 10px;
  background-color: rgba(221, 221, 221, 0.4);
}
.boxdeko-min.type-white {
  padding: 20px;
  background-color: #fff;
}
.boxdeko-min .main {
  border-bottom: 2px dotted #b0aba6;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.txtdeko3-bg {
  position: relative;
}
.txtdeko3-bg:before {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(221, 118, 135, 0.2);
}

@-webkit-keyframes txtdeko3 {
  0% {
    width: 0%;
    background-color: #55725a;
  }
  100% {
    width: 100%;
  }
}

@keyframes txtdeko3 {
  0% {
    width: 0%;
    background-color: #55725a;
  }
  100% {
    width: 100%;
  }
}
.boxdeko3 {
  background-color: rgba(221, 118, 135, 0.1);
  padding: 40px;
  border-radius: 0px;
  max-width: 1500px;
  margin: 0 auto 50px;
  position: relative;
}
.boxdeko3.txtdeko3-bg {
  background: none;
}
@media all and (max-width: 896px) {
  .boxdeko3 {
    padding: 20px;
  }
  .boxdeko3.sp-b-20 {
    margin-bottom: 20px;
  }
}
.boxdeko3.type2 {
  margin-top: 100px;
  border-radius: 20px 20px 0 0;
}
.boxdeko3 .mtext3 {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  top: -20px;
}
.boxdeko3 .leaf01 {
  position: absolute;
  width: 80px;
  left: -4%;
  top: 2%;
  z-index: 2;
  transform: rotate(20deg);
  opacity: 0;
}
.boxdeko3 .leaf02 {
  position: absolute;
  width: 50px;
  left: 0%;
  top: 26%;
  z-index: 2;
  transform: rotate(-20deg);
  opacity: 0;
}
.boxdeko3 .leaf03 {
  position: absolute;
  width: 100px;
  right: -5%;
  bottom: -3%;
  z-index: 2;
  transform: rotate(30deg);
  opacity: 0;
}
.boxdeko3 .leaf04 {
  position: absolute;
  width: 70px;
  right: 5%;
  bottom: -14%;
  z-index: 2;
  transform: rotate(-20deg);
  opacity: 0;
}
@media all and (max-width: 1367px) {
  .boxdeko3 .leaf03 {
    width: 80px;
    right: -1%;
    bottom: -2%;
  }
  .boxdeko3 .leaf04 {
    width: 40px;
    right: 8%;
    bottom: -6%;
  }
}
@media all and (max-width: 896px) {
  .boxdeko3 .leaf01 {
    width: 50px;
    left: -1%;
    top: 2%;
  }
  .boxdeko3 .leaf02 {
    width: 30px;
    left: 2%;
    top: 16%;
  }
  .boxdeko3 .leaf03 {
    width: 50px;
    right: -0.5%;
    bottom: 2%;
  }
  .boxdeko3 .leaf04 {
    width: 40px;
    right: 8%;
    bottom: -6%;
  }
}
@media all and (max-width: 639px) {
  .boxdeko3 .leaf01 {
    width: 50px;
    left: -1%;
    top: -4%;
  }
  .boxdeko3 .leaf02 {
    width: 30px;
    left: 2%;
    top: 18%;
  }
  .boxdeko3 .leaf03 {
    width: 50px;
    right: -2%;
    bottom: 2%;
  }
  .boxdeko3 .leaf04 {
    width: 40px;
    right: 12%;
    bottom: -8%;
  }
}

.anime-leaf {
  -webkit-animation: leaf 1s ease-out 0.5s forwards;
          animation: leaf 1s ease-out 0.5s forwards;
}

.anime-leaf2 {
  -webkit-animation: leaf 1s ease-out 0.9s forwards;
          animation: leaf 1s ease-out 0.9s forwards;
}

.anime-leaf3 {
  -webkit-animation: leaf 1s ease-out 1.3s forwards;
          animation: leaf 1s ease-out 1.3s forwards;
}

.anime-leaf4 {
  -webkit-animation: leaf 1s ease-out 1.7s forwards;
          animation: leaf 1s ease-out 1.7s forwards;
}

/*----------------------------------
photodeko
----------------------------------*/
.photodeko {
  border: 1px solid #dd7687;
}

@media all and (max-width: 639px) {
  .photodeko2 img {
    height: 150px;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.w-photo {
  max-width: 300px;
  margin: 0 auto;
}

/*----------------------------------
animation
----------------------------------*/
.bg-on:before {
  -webkit-animation: bg-onanime 1s ease-out 0.6s forwards;
          animation: bg-onanime 1s ease-out 0.6s forwards;
}

.bg-on-left:before {
  -webkit-animation: bg-on-left-anime 1s ease-out 0s forwards;
          animation: bg-on-left-anime 1s ease-out 0s forwards;
}
.bg-on-left.time2:before {
  -webkit-animation: bg-on-left-anime2 0.8s ease-out 0.2s forwards;
          animation: bg-on-left-anime2 0.8s ease-out 0.2s forwards;
}

.txt-on {
  filter: blur(30px);
  -webkit-animation: txt-onanime 0.6s ease-out 0s forwards;
          animation: txt-onanime 0.6s ease-out 0s forwards;
}
.txt-on.type2 {
  -webkit-animation: txt-onanime 0.6s ease-out 0.5s forwards;
          animation: txt-onanime 0.6s ease-out 0.5s forwards;
}

@-webkit-keyframes bg-onanime {
  100% {
    filter: blur(30px);
  }
}

@keyframes bg-onanime {
  100% {
    filter: blur(30px);
  }
}
@-webkit-keyframes bg-on-left-anime {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes bg-on-left-anime {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes bg-on-left-anime2 {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}
@keyframes bg-on-left-anime2 {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}
@-webkit-keyframes txt-onanime {
  100% {
    filter: blur(30px);
  }
  100% {
    filter: none;
  }
}
@keyframes txt-onanime {
  100% {
    filter: blur(30px);
  }
  100% {
    filter: none;
  }
}
.flower-on {
  -webkit-animation: flower-onanime 1s ease-out 0.7s forwards;
          animation: flower-onanime 1s ease-out 0.7s forwards;
}

@-webkit-keyframes flower-onanime {
  100% {
    mix-blend-mode: normal;
  }
}

@keyframes flower-onanime {
  100% {
    mix-blend-mode: normal;
  }
}
.updown-txt {
  display: flex;
  overflow: hidden;
  justify-content: center;
  flex-wrap: wrap;
}
.updown-txt span {
  transform: translateY(110%);
  display: block;
}
.updown-txt.updown-go span {
  -webkit-animation: updown-anim 1s ease-out forwards;
          animation: updown-anim 1s ease-out forwards;
}

.updown-go span:nth-child(1) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.updown-go span:nth-child(2) {
  -webkit-animation-delay: 0.05s;
          animation-delay: 0.05s;
}

.updown-go span:nth-child(3) {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}

.updown-go span:nth-child(4) {
  -webkit-animation-delay: 0.15s;
          animation-delay: 0.15s;
}

.updown-go span:nth-child(5) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.updown-go span:nth-child(6) {
  -webkit-animation-delay: 0.25s;
          animation-delay: 0.25s;
}

.updown-go span:nth-child(7) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.updown-go span:nth-child(8) {
  -webkit-animation-delay: 0.35s;
          animation-delay: 0.35s;
}

.updown-go span:nth-child(9) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.updown-go span:nth-child(10) {
  -webkit-animation-delay: 0.45s;
          animation-delay: 0.45s;
}

.updown-go span:nth-child(11) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.updown-go span:nth-child(12) {
  -webkit-animation-delay: 0.55s;
          animation-delay: 0.55s;
}

.updown-go span:nth-child(13) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

.updown-go span:nth-child(14) {
  -webkit-animation-delay: 0.65s;
          animation-delay: 0.65s;
}

.updown-go span:nth-child(15) {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}

.updown-go span:nth-child(16) {
  -webkit-animation-delay: 0.75s;
          animation-delay: 0.75s;
}

.updown-go span:nth-child(17) {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}

.updown-go span:nth-child(18) {
  -webkit-animation-delay: 0.85s;
          animation-delay: 0.85s;
}

.border-anime {
  width: 0;
  height: 2px;
  background-color: #555;
  -webkit-animation: border1-anime 0.6s linear 1s forwards;
          animation: border1-anime 0.6s linear 1s forwards;
}

@-webkit-keyframes border1-anime {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

@keyframes border1-anime {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
/*左右のアニメーション*/
.leftAnime {
  opacity: 0; /*事前に透過0にして消しておく*/
}

.slideAnimeLeftRight {
  -webkit-animation-name: slideTextX100;
          animation-name: slideTextX100;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes slideTextX100 {
  from {
    transform: translateX(-100%); /*要素を左の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateX(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
}

@keyframes slideTextX100 {
  from {
    transform: translateX(-100%); /*要素を左の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateX(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
}
.slideAnimeRightLeft {
  -webkit-animation-name: slideTextX-100;
          animation-name: slideTextX-100;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes slideTextX-100 {
  from {
    transform: translateX(100%); /*要素を右の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateX(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
}

@keyframes slideTextX-100 {
  from {
    transform: translateX(100%); /*要素を右の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateX(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
}
/* 4-2　パタッ（左へ） */
.flipLeft {
  -webkit-animation-name: flipLeftAnime;
          animation-name: flipLeftAnime;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  perspective-origin: left center;
  opacity: 0;
}

@-webkit-keyframes flipLeftAnime {
  from {
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(50deg);
    opacity: 0;
  }
  to {
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
    opacity: 1;
  }
}

@keyframes flipLeftAnime {
  from {
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(50deg);
    opacity: 0;
  }
  to {
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
    opacity: 1;
  }
}
/*========= レイアウトのためのCSS ===============*/
/*========= 背景色の動きのCSS ===============*/
/*背景色が伸びて出現 共通*/
.bgextend {
  -webkit-animation-name: bgextendAnimeBase;
          animation-name: bgextendAnimeBase;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  position: relative;
  overflow: hidden; /*　はみ出た色要素を隠す　*/
  opacity: 0;
}

@-webkit-keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*中の要素*/
.bgappear {
  -webkit-animation-name: bgextendAnimeSecond;
          animation-name: bgextendAnimeSecond;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*--------- 左から --------*/
.bgLRextend::before {
  -webkit-animation-name: bgLRextendAnime;
          animation-name: bgLRextendAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #dd7687; /*伸びる背景色の設定*/
}

@-webkit-keyframes bgLRextendAnime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}

@keyframes bgLRextendAnime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
/*--------- 右から --------*/
.bgRLextend::before {
  -webkit-animation-name: bgRLextendAnime;
          animation-name: bgRLextendAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #dd7687; /*伸びる背景色の設定*/
}

@-webkit-keyframes bgRLextendAnime {
  0% {
    transform-origin: right;
    transform: scaleX(0);
  }
  50% {
    transform-origin: right;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: left;
  }
  100% {
    transform-origin: left;
    transform: scaleX(0);
  }
}

@keyframes bgRLextendAnime {
  0% {
    transform-origin: right;
    transform: scaleX(0);
  }
  50% {
    transform-origin: right;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: left;
  }
  100% {
    transform-origin: left;
    transform: scaleX(0);
  }
}
/*--------- 下から --------*/
.bgDUextend::before {
  -webkit-animation-name: bgDUextendAnime;
          animation-name: bgDUextendAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #dd7687; /*伸びる背景色の設定*/
}

@-webkit-keyframes bgDUextendAnime {
  0% {
    transform-origin: bottom;
    transform: scaleY(0);
  }
  50% {
    transform-origin: bottom;
    transform: scaleY(1);
  }
  50.001% {
    transform-origin: top;
  }
  100% {
    transform-origin: top;
    transform: scaleY(0);
  }
}

@keyframes bgDUextendAnime {
  0% {
    transform-origin: bottom;
    transform: scaleY(0);
  }
  50% {
    transform-origin: bottom;
    transform: scaleY(1);
  }
  50.001% {
    transform-origin: top;
  }
  100% {
    transform-origin: top;
    transform: scaleY(0);
  }
}
/*--------- 上から --------*/
.bgUDextend::before {
  -webkit-animation-name: bgUDextendAnime;
          animation-name: bgUDextendAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #666; /*伸びる背景色の設定*/
}

@-webkit-keyframes bgUDextendAnime {
  0% {
    transform-origin: top;
    transform: scaleY(0);
  }
  50% {
    transform-origin: top;
    transform: scaleY(1);
  }
  50.001% {
    transform-origin: bottom;
  }
  100% {
    transform-origin: bottom;
    transform: scaleY(0);
  }
}

@keyframes bgUDextendAnime {
  0% {
    transform-origin: top;
    transform: scaleY(0);
  }
  50% {
    transform-origin: top;
    transform: scaleY(1);
  }
  50.001% {
    transform-origin: bottom;
  }
  100% {
    transform-origin: bottom;
    transform: scaleY(0);
  }
}