@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
/*==========================================================================
# reset - ブラウザの差異や不要なスタイルを無くすためのスタイル
========================================================================== */
* {
  box-sizing: border-box;
}

html, body, h1, h2, h3, h4, h5, h6, ul, ol, dl, li, dt, dd, p, div, span, img, a, table, tr, th, td, small, button, time, figure {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

li, dd {
  list-style-type: none;
}

header, footer, nav, section, article, aside, figure, figcaption {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
}

a {
  cursor: pointer;
  text-decoration: none;
}

body {
  font-family: "source-han-sans-jp-variable", sans-serif;
  font-variation-settings: "wght" 400;
  background-color: #FCF9F4;
  color: #817A6E;
  font-size: 18px;
  letter-spacing: 0.1rem;
  line-height: 1.6;
	overflow-x:hidden;
}
@media (min-width: 768px) and (max-width:1000px) {
  body {
    font-size: 16px;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  body {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
    letter-spacing: 0.05rem;
  }
}

img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.inner {
  width: 1300px;
  margin: 0 auto;
}
@media (min-width: 768px) and (max-width:1000px) {
  .inner {
    padding: 0 60px;
    width: 100%;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .inner {
    width: 940px;
  }
}
@media screen and (max-width: 767px) {
  .inner {
    padding: 0 20px;
    width: 100%;
  }
}

.section-title h2 {
  font-size: 32px;
  line-height: 1.2;
}
@media (min-width: 768px) and (max-width:1000px) {
  .section-title h2 {
    font-size: 28px;
  }
}
@media screen and (max-width: 767px) {
  .section-title h2 {
    font-size: 23px;
  }
}
.section-title span {
  color: #A9DA90;
  font-size: 13px;
  font-family: "Montserrat", sans-serif;
}
@media screen and (max-width: 767px) {
  .section-title span {
    font-size: 10px;
  }
}

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

.btn {
  width: 348px;
  height: 74px;
  border-radius: 20px;
  position: relative;
  transition: all 0.5s;
}
.btn:hover {
  cursor: pointer;
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .btn {
    width: 235px;
    height: 50px;
    border-radius: 5px;
  }
}
.btn a {
  display: inline-block;
  width: 100%;
  height: 100%;
  text-align: center;
  color: #ffffff;
  font-size: 22px;
  padding-top: 17px;
}
@media screen and (max-width: 767px) {
  .btn a {
    font-size: 14px;
    padding-top: 13px;
  }
}
.btn a .btn-bars {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.btn a .btn-bar {
  width: 28px;
  height: 1px;
}
.btn a .btn-bar:not(:last-child) {
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .btn a .btn-bar {
    width: 18px;
  }
}

.white-btn {
  background-color: #ffffff;
  margin-top: 30px;
  transition: all 0.7s;
}
.white-btn:hover {
  background-color: #F88A09;
  border: 2px solid #ffffff;
}
.white-btn a {
  color: #F88A09;
  transition: all 0.7s;
}
.white-btn a:hover {
  color: #ffffff;
}
.white-btn a:hover .btn-bar {
  background-color: #ffffff;
}
.white-btn a .btn-bar {
  background-color: #F88A09;
}

.pc-none {
  display: none;
}
@media (min-width: 768px) and (max-width:1000px) {
  .pc-none {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .pc-none {
    display: block;
  }
}

@media (min-width: 768px) and (max-width:1000px) {
  .sp-none {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .sp-none {
    display: none;
  }
}

.page-hero {
  padding-top: 40px;
}
@media (min-width: 768px) and (max-width:1000px) {
  .page-hero {
    padding-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .page-hero {
    padding-top: 10px;
  }
}

.page-h1-wrap {
  text-align: center;
  padding-bottom: 40px;
}
.page-h1-wrap span {
  color: #A9DA90;
  font-size: 13px;
  font-family: "Montserrat", sans-serif;
}
@media screen and (max-width: 767px) {
  .page-h1-wrap span {
    font-size: 10px;
  }
}
.page-h1-wrap h1 {
  font-size: 32px;
  letter-spacing: 0.4rem;
}

@media (min-width: 768px) and (max-width:1000px) {
  .page-h1-wrap h1 {
    font-size: 28px;
  }
}
@media screen and (max-width: 767px) {
  .page-h1-wrap h1 {
    font-size: 24px;
  }
}

.page-hero-nav {
  display: flex;
  justify-content: space-between;
  width: 1300px;
  margin: 60px auto;
  position: relative;
}
@media (min-width: 768px) and (max-width:1000px) {
  .page-hero-nav {
    padding: 0 60px;
    width: 100%;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .page-hero-nav {
    width: 940px;
  }
}
@media (min-width: 768px) and (max-width:1000px) {
  .page-hero-nav {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .page-hero-nav {
    display: none;
  }
}
.page-hero-nav li a {
  color: #817A6E;
  text-align: center;
  letter-spacing: 0.17rem;
  transition: all 0.5s;
}
.page-hero-nav li a:hover {
  cursor: pointer;
  opacity: 0.7;
}
@media (min-width: 1001px) and (max-width:1500px) {
  .page-hero-nav li a {
    font-size: 15px;
  }
}
.page-hero-nav li a span {
  color: #A9DA90;
  display: block;
  font-family: "Montserrat", sans-serif;
}

.page-h2-style span {
  font-size: 15px;
}
@media screen and (max-width: 767px) {
  .page-h2-style span {
    font-size: 10px;
  }
}
.page-h2-style h2 {
  font-size: 45px;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.4rem;
}
@media (min-width: 768px) and (max-width:1000px) {
  .page-h2-style h2 {
    font-size: 38px;
    letter-spacing: 0.2rem;
  }
}
@media screen and (max-width: 767px) {
  .page-h2-style h2 {
    font-size: 30px;
  }
}

@media screen and (max-width: 767px) {
  .page-section-wrap {
    padding: 0 20px;
  }
}

.page-h2-wrap {
  text-align: center;
}
.page-h2-wrap h2 {
  font-size: 32px;
  line-height: 1.2;
}
@media (min-width: 768px) and (max-width:1000px) {
  .page-h2-wrap h2 {
    font-size: 28px;
  }
}
@media screen and (max-width: 767px) {
  .page-h2-wrap h2 {
    font-size: 23px;
  }
}
.page-h2-wrap span {
  color: #A9DA90;
  font-size: 13px;
  font-family: "Montserrat", sans-serif;
}
@media screen and (max-width: 767px) {
  .page-h2-wrap span {
    font-size: 10px;
  }
}

.page-pt30-wrap p {
  padding-top: 30px !important;
}
@media screen and (max-width: 767px) {
  .page-pt30-wrap p {
    padding-top: 15px;
  }
}

.pt30-h2-wrap {
  padding-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .pt30-h2-wrap {
    padding-bottom: 15px;
  }
}

.page-section-wrap {
  padding-top: 120px;
  padding-bottom: 120px;
}
@media (min-width: 1001px) and (max-width:1500px) {
  .page-section-wrap {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media (min-width: 768px) and (max-width:1000px) {
  .page-section-wrap {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  .page-section-wrap {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.page-section-wrap p {
  padding-top: 60px;
  text-align: center;
  line-height: 2;
}
@media (min-width: 768px) and (max-width:1000px) {
  .page-section-wrap p {
    padding-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .page-section-wrap p {
    padding-top: 30px;
  }
}

.page-section-wrap {
  padding-top: 120px;
  padding-bottom: 120px;
}
@media (min-width: 1001px) and (max-width:1500px) {
  .page-section-wrap {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media (min-width: 768px) and (max-width:1000px) {
  .page-section-wrap {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  .page-section-wrap {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.page-section-wrap p {
  padding-top: 60px;
  text-align: center;
  line-height: 2;
}
@media (min-width: 768px) and (max-width:1000px) {
  .page-section-wrap p {
    padding-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .page-section-wrap p {
    padding-top: 30px;
  }
}

.breadcrumb {
  padding-top: 90px;
  padding-bottom: 40px;
  padding-right: 100px;
  text-align: right;
}
@media (min-width: 1001px) and (max-width:1500px) {
  .breadcrumb {
    padding-right: 60px;
    padding-top: 60px;
  }
}
@media (min-width: 768px) and (max-width:1000px) {
  .breadcrumb {
    padding-right: 40px;
    padding-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .breadcrumb {
    padding-top: 40px;
    padding-right: 20px;
    padding-bottom: 20px;
  }
}
.breadcrumb a {
  color: #817A6E;
}
.breadcrumb a:hover {
  opacity: 0.7;
}

.header-sp-top {
  display: flex;
  height: 78px;
}
@media screen and (min-width: 1501px) {
  .header-sp-top {
    display: none;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .header-sp-top {
    display: none;
  }
}

.header-sp-tel {
  width: 50%;
  background-color: #D9E6D4;
}
.header-sp-tel a {
  display: inline-block;
  width: 100%;
  height: 100%;
  color: #817A6E;
  text-align: center;
  padding-top: 12px;
}
.header-sp-tel a .is-number {
  font-size: 18px;
}
.header-sp-tel a .is-number span {
  font-size: 9px;
}

.header-sp-web {
  width: 50%;
  background-color: #FC7A79;
}
.header-sp-web a {
  display: inline-block;
  width: 100%;
  height: 100%;
  color: #ffffff;
  text-align: center;
  padding-top: 13px;
}
.header-sp-web a img {
  width: 35px;
  display: block;
  margin: 0 auto 5px auto;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 100px;
}
@media (min-width: 1001px) and (max-width:1500px) {
  .header {
    padding: 20px 60px;
  }
}
@media (min-width: 768px) and (max-width:1000px) {
  .header {
    padding: 10px 40px;
  }
}
@media screen and (max-width: 767px) {
  .header {
    padding: 10px 20px;
  }
}

.header-logo {
  width: 140px;
}
@media screen and (max-width: 767px) {
  .header-logo {
    width: 60px;
  }
}
@media (min-width: 768px) and (max-width:1000px) {
  .header-logo {
    width: 80px;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .header-logo {
    width: 120px;
  }
}

.drawer-icon {
  position: fixed;
  top: 50px;
  z-index: 300;
  transition: transform 0.5s ease 0s;
  width: 50px;
  height: 50px;
  right: 100px;
  background: url(../img/drawer-icon.png) no-repeat center center/contain;
}
@media (min-width: 1001px) and (max-width:1500px) {
  .drawer-icon {
    width: 40px;
    right: 60px;
    height: 40px;
  }
}
@media screen and (max-width: 767px) {
  .drawer-icon {
    right: 20px;
    width: 30px;
    height: 30px;
    top: 100px;
  }
}
@media (min-width: 768px) and (max-width:1000px) {
  .drawer-icon {
    right: 40px;
    width: 40px;
    height: 40px;
    top: 100px;
  }
}
.drawer-icon.is-active {
  top: 60px;
  background: none;
  border: 2px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .drawer-icon.is-active {
    top: 20px;
  }
}
@media (min-width: 768px) and (max-width:1000px) {
  .drawer-icon.is-active {
    top: 40px;
  }
}
.drawer-icon.is-active::before, .drawer-icon.is-active::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 2px;
  background-color: #fff;
}
.drawer-icon.is-active::before {
  transform: rotate(45deg);
}
.drawer-icon.is-active::after {
  transform: rotate(-45deg);
}
.drawer-icon.top20 {
  top: 20px;
}

.drawer-content {
  position: fixed;
  width: 100%;
  height: 100%;
  right: 0;
  top: 0;
  background: #D9E6D4;
  z-index: 299;
  transition: transform 0.5s ease, opacity 0.5s ease;
  padding: 160px 40px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
	opacity:0;
	 pointer-events: none;
}
@media screen and (max-width: 767px) {
  .drawer-content {
    padding: 40px 0;
  }
}
@media (min-width: 768px) and (max-width:1000px) {
  .drawer-content {
    padding: 60px 0;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .drawer-content {
    padding: 140px 20px;
  }
}
.drawer-content.is-active {
   opacity: 1;
    pointer-events: auto;
	
}

.drawer-nav {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}
@media (min-width: 768px) and (max-width:1000px) {
  .drawer-nav {
    padding: 50px 0;
    width: 100%;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .drawer-nav {
    width: 900px;
  }
}
@media screen and (max-width: 767px) {
  .drawer-nav {
    padding: 0;
    width: 100%;
    display: block;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .drawer-nav li {
    border-bottom: 1px solid #ffffff;
    padding: 10px 0;
  }
}
.drawer-nav li a {
  color: #817A6E;
  text-align: center;
  letter-spacing: 0.17rem;
  transition: all 0.5s;
}
.drawer-nav li a:hover {
  cursor: pointer;
  opacity: 0.7;
}
@media (min-width: 768px) and (max-width:1000px) {
  .drawer-nav li a {
    font-size: 14px;
  }
}
.drawer-nav li a span {
  color: #ffffff;
  font-size: 13px;
  display: block;
}
@media (min-width: 768px) and (max-width:1000px) {
  .drawer-nav li a span {
    font-size: 10px;
  }
}
@media screen and (max-width: 767px) {
  .drawer-nav li a span {
    font-size: 10px;
  }
}

.drawer-title {
  width: 1300px;
  margin: 60px auto;
  font-size: 29px;
  letter-spacing: 0.2rem;
  font-family: "Montserrat", sans-serif;
  position: relative;
}
@media (min-width: 768px) and (max-width:1000px) {
  .drawer-title {
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
  }
}
@media screen and (max-width: 767px) {
  .drawer-title {
    font-size: 22px;
    letter-spacing: 0.1rem;
    margin: 30px 0;
    text-align: center;
    color: #ffffff;
    width: 100%;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .drawer-title {
    margin: 40px auto;
    width: 940px;
  }
}
.drawer-title::after {
  position: absolute;
  content: "";
  width: calc(100% - 420px);
  height: 1px;
  background-color: #817A6E;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
@media screen and (max-width: 767px) {
  .drawer-title::after {
    width: calc((100% - 281px) / 2);
    background-color: #ffffff;
  }
}
@media screen and (max-width: 767px) {
  .drawer-title::before {
    position: absolute;
    content: "";
    width: calc(100% - 420px);
    height: 1px;
    background-color: #817A6E;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: calc((100% - 281px) / 2);
    background-color: #ffffff;
  }
}

.drawer-menu-wrap {
  display: flex;
  justify-content: space-around;
  padding: 0 80px;
}
@media (min-width: 1001px) and (max-width:1500px) {
  .drawer-menu-wrap {
    padding: 0 30px;
  }
}
@media (min-width: 768px) and (max-width:1000px) {
  .drawer-menu-wrap {
    padding: 0;
    justify-content: center;
    gap: 10px;
  }
}
@media screen and (max-width: 767px) {
  .drawer-menu-wrap {
    flex-wrap: wrap;
    padding: 0;
    gap: 10px;
    justify-content: center;
  }
}
.drawer-menu-wrap .menu-item {
  transition: all 0.5s;
}
.drawer-menu-wrap .menu-item:hover {
  cursor: pointer;
  opacity: 0.7;
}
.drawer-menu-wrap .menu-item a {
  padding: 50px 0;
}
@media (min-width: 768px) and (max-width:1000px) {
  .drawer-menu-wrap .menu-item a {
    padding: 35px 0;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .drawer-menu-wrap .menu-item a {
    padding: 40px 0;
  }
}
@media screen and (max-width: 767px) {
  .drawer-menu-wrap .menu-item a {
    padding: 30px 0;
  }
}
.drawer-menu-wrap .menu-item a p {
  color: #3E3531;
  padding-bottom: 30px;
}
@media (min-width: 768px) and (max-width:1000px) {
  .drawer-menu-wrap .menu-item a p {
    padding-bottom: 25px;
  }
}
@media screen and (max-width: 767px) {
  .drawer-menu-wrap .menu-item a p {
    padding-bottom: 20px;
  }
}
.drawer-menu-wrap .menu-item a img {
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
  width: auto;
}

/*=================================

blog

==================================*/
.blog {
  padding: 100px 0;
}
@media (min-width: 768px) and (max-width:1000px) {
  .blog {
    padding: 60px 0;
  }
}
@media screen and (max-width: 767px) {
  .blog {
    padding: 60px 0;
  }
}

.blog-wrap {
  margin-top: 60px;
  margin-bottom: 60px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px 20px;
}
@media screen and (max-width: 767px) {
  .blog-wrap {
    margin-top: 30px;
    margin-bottom: 30px;
    display: block;
  }
}

.blog-section-title {
  padding-bottom: 20px;
  position: relative;
}
.blog-section-title::after {
  position: absolute;
  content: "";
  width: 40px;
  height: 1px;
  background-color: #817A6E;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.blog-item {
  width: calc((100% - 40px) / 3);
}
.blog-item .blog-img {
  width: 100%;
  aspect-ratio: 414/272;
}
@media screen and (max-width: 767px) {
  .blog-item .blog-img {
    width: 161px;
  }
}
.blog-item .blog-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .blog-item {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .blog-content {
    width: calc(100% - 171px);
  }
}

.blog-title {
  padding-top: 5px;
  color: #817A6E;
}

.blog-date {
  font-size: 10px;
  color: #817A6E;
}

.archives-btn {
  text-align: center;
}
.archives-btn a {
  display: inline-block;
  color: #817A6E;
  transition: all 0.5s;
}
.archives-btn a .circle-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #817A6E;
  display: block;
  margin: 5px auto;
}
.archives-btn a .circle-arrow img {
  width: 20px;
  margin-top: 13px;
}
.archives-btn a:hover {
  cursor: pointer;
  opacity: 0.7;
}

/*=================================

plaza

==================================*/
.section-plaza {
  padding: 100px 0;
  background-color: #E6E5E5;
}
@media (min-width: 768px) and (max-width:1000px) {
  .section-plaza {
    padding: 60px 0;
  }
}
@media screen and (max-width: 767px) {
  .section-plaza {
    padding: 30px 0;
    background-color: #FCF9F4;
  }
}

.plaza-text {
  text-align: center;
  padding-top: 60px;
}
@media screen and (max-width: 767px) {
  .plaza-text {
    padding-top: 30px;
  }
}

.section-plaza-title {
  padding-bottom: 20px;
  position: relative;
}
.section-plaza-title::after {
  position: absolute;
  content: "";
  width: 40px;
  height: 1px;
  background-color: #817A6E;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.plaza-wrap {
  margin: 60px 140px;
  display: flex;
  justify-content: space-between;
}
@media (min-width: 768px) and (max-width:1000px) {
  .plaza-wrap {
    margin: 40px 0;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .plaza-wrap {
    margin: 60px 0;
  }
}
@media screen and (max-width: 767px) {
  .plaza-wrap {
    display: block;
    margin: 20px 0;
    padding-bottom: 20px;
  }
}

.plaza-img {
  width: 100%;
  height: 100%;
  aspect-ratio: 100/138;
}
.plaza-img img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .plaza-img {
    width: 161px;
  }
}

.plaza-title {
  color: #817A6E;
}
@media screen and (max-width: 767px) {
  .plaza-title {
    width: calc(100% - 171px);
  }
}

.plaza-item {
  width: 280px;
}
@media (min-width: 768px) and (max-width:1000px) {
  .plaza-item {
    width: calc((100% - 30px) / 3);
  }
}
@media screen and (max-width: 767px) {
  .plaza-item {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
  }
}

.plaza-title {
  padding-top: 5px;
}

/*=================================

instagram

==================================*/
.instagram {
  padding: 100px 0 140px 0;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) and (max-width:1000px) {
  .instagram {
    padding: 60px 0;
  }
}
@media screen and (max-width: 767px) {
  .instagram {
    padding: 40px 0;
  }
}

.instagram-circle {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background-color: #CE5180;
  opacity: 8%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
@media (min-width: 768px) and (max-width:1000px) {
  .instagram-circle {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .instagram-circle {
    display: none;
  }
}

.section-insta-title {
  padding-bottom: 20px;
  position: relative;
}
.section-insta-title::after {
  position: absolute;
  content: "";
  width: 40px;
  height: 1px;
  background-color: #817A6E;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.instagram-wrap {
  display: flex;
  gap: 30px;
  margin-top: 80px;
}
@media (min-width: 768px) and (max-width:1000px) {
  .instagram-wrap {
    margin-top: 60px;
    gap: 10px;
  }
}
@media screen and (max-width: 767px) {
  .instagram-wrap {
    margin-top: 30px;
    gap: 10px;
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 767px) {
  .instagram-item {
    width: calc(50% - 5px);
  }
}

.instagram-btn {
  margin-top: 60px;
  text-align: center;
}
.instagram-btn a {
  color: #817A6E;
  display: inline-block;
  text-align: center;
  transition: all 0.5s;
}
.instagram-btn a:hover {
  cursor: pointer;
  opacity: 0.7;
}
.instagram-btn a img {
  width: 27px;
}
@media screen and (max-width: 767px) {
  .instagram-btn a img {
    width: 22px;
  }
}

/*=================================

footer

==================================*/
.footer-info {
  background-color: #D9E6D4;
  padding: 100px 0;
}
@media (min-width: 768px) and (max-width:1000px) {
  .footer-info {
    padding: 40px 0;
  }
}
@media screen and (max-width: 767px) {
  .footer-info {
    padding: 40px 0;
  }
}

.footer-wrap {
  display: flex;
}
@media (min-width: 768px) and (max-width:1000px) {
  .footer-wrap {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .footer-wrap {
    display: block;
  }
}

.footer-left {
  width: 50%;
}
@media (min-width: 768px) and (max-width:1000px) {
  .footer-left {
    width: 100%;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .footer-left {
    width: 100%;
    text-align: center;
  }
}

.footer-logo {
  font-size: 30px;
  padding-bottom: 20px;
}
@media (min-width: 768px) and (max-width:1000px) {
  .footer-logo {
    font-size: 26px;
    padding-bottom: 15px;
  }
}
@media screen and (max-width: 767px) {
  .footer-logo {
    font-size: 23px;
    padding-bottom: 15px;
  }
}

.footer-access-btn {
  margin-top: 20px;
  background-color: #ffffff;
  padding: 20px;
  width: 415px;
  background-color: #FCF9F4;
}
@media (min-width: 768px) and (max-width:1000px) {
  .footer-access-btn {
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 767px) {
  .footer-access-btn {
    margin-top: 10px;
    background-color: transparent;
    padding: 10px 0;
    width: auto;
  }
}

.footer-btn-wrap {
  display: flex;
  justify-content: space-between;
}
.footer-btn-wrap a p {
  color: #817A6E;
}
@media screen and (max-width: 767px) {
  .footer-btn-wrap {
    display: block;
  }
}

.footer-btn-left {
  position: relative;
  padding-right: 20px;
  transition: all 0.5s;
}
.footer-btn-left:hover {
  cursor: pointer;
  opacity: 0.7;
}
.footer-btn-left::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background-color: #817A6E;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .footer-btn-left::after {
    display: none;
  }
}

.footer-btn-tel {
  font-size: 28px;
  color: #817A6E;
}
@media screen and (max-width: 767px) {
  .footer-btn-tel {
    font-size: 20px;
  }
}
.footer-btn-tel span {
  font-size: 14px;
}

.footer-btn-right {
  transition: all 0.5s;
  text-align: center;
}
.footer-btn-right:hover {
  cursor: pointer;
  opacity: 0.7;
}
.footer-btn-right p {
  color: #817A6E;
  font-size: 14px;
}

.footer-web-img {
  width: 40px;
  margin: 0 auto 10px auto;
}

.footer-footer {
  display: flex;
  position: relative;
}
@media (min-width: 768px) and (max-width:1000px) {
  .footer-footer {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .footer-footer {
    display: block;
  }
}

.footer-map {
  width: 50%;
}
@media (min-width: 768px) and (max-width:1000px) {
  .footer-map {
    width: 100%;
    height: 300px;
  }
}
@media screen and (max-width: 767px) {
  .footer-map {
    width: 100%;
    height: 200px;
  }
}
.footer-map iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.footer-map-wrap {
  height: 100%;
}

.footer-nav {
  padding: 60px 200px 40px 60px;
}
@media (min-width: 768px) and (max-width:1000px) {
  .footer-nav {
    padding: 40px;
  }
}
@media screen and (max-width: 767px) {
  .footer-nav {
    padding: 30px 20px;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .footer-nav {
    padding: 40px 60px 40px 30px;
  }
}

.footer-nav-items {
  display: flex;
  flex-wrap: wrap;
  width: 440px;
  gap: 20px;
}
@media (min-width: 768px) and (max-width:1000px) {
  .footer-nav-items {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .footer-nav-items {
    width: 100%;
    padding-bottom: 30px;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .footer-nav-items {
    gap: 10px;
  }
}

.footer-nav-item {
  width: 200px;
}
@media screen and (max-width: 767px) {
  .footer-nav-item {
    width: 150px;
  }
}
.footer-nav-item a {
  color: #817A6E;
  transition: all 0.5s;
}
.footer-nav-item a:hover {
  cursor: pointer;
  opacity: 0.7;
}
.footer-nav-item img {
  width: 7px;
  vertical-align: middle;
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .footer-nav-item img {
    margin-right: 5px;
  }
}

.top-btn {
  width: 82px;
  height: 82px;
  border: 1px solid #817A6E;
  background-color: #ffffff;
  border-radius: 50%;
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  text-align: center;
  padding-top: 15px;
  position: absolute;
  right: 200px;
  top: 60px;
  transition: all 0.5s;
}
@media screen and (max-width: 767px) {
  .top-btn {
    right: 10px;
    top: auto;
    bottom: 130px;
  }
}
@media (min-width: 768px) and (max-width:1000px) {
  .top-btn {
    right: 40px;
    top: auto;
    bottom: 100px;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .top-btn {
    right: 60px;
    top: 40px;
  }
}
.top-btn img {
  width: 7px;
  display: block;
  margin: 0 auto;
}
.top-btn:hover {
  cursor: pointer;
  opacity: 0.7;
}

.footer-footer-text {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  display: flex;
  margin-top: 30px;
  gap: 30px;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .footer-footer-text {
    flex-direction: column-reverse;
  }
}

.footer-link-btn {
  border-radius: 34px;
  background-color: #D9E6D4;
  width: 224px;
  height: 48px;
}
.footer-link-btn a {
  text-align: center;
  display: inline-block;
  width: 100%;
  height: 100%;
  padding-top: 15px;
  color: #817A6E;
  transition: all 0.5s;
}
.footer-link-btn a:hover {
  cursor: pointer;
  opacity: 0.7;
}
.footer-link-btn a .is-logo {
  width: 21px;
  margin-right: 20px;
  vertical-align: middle;
}
.footer-link-btn a .is-line {
  width: 18px;
  margin-left: 10px;
  vertical-align: middle;
}

.page-about {
  padding: 100px 0 200px 0;
}
@media (min-width: 768px) and (max-width:1000px) {
  .page-about {
    padding: 80px 0;
  }
}
@media screen and (max-width: 767px) {
  .page-about {
    padding: 60px 0 80px 0;
  }
}

.about-row--1,
.about-row--3 {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .about-row--1,
  .about-row--3 {
    display: block;
  }
}
@media (min-width: 768px) and (max-width:1000px) {
  .about-row--1 .about-row-text,
  .about-row--3 .about-row-text {
    width: 360px;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .about-row--1 .about-row-text,
  .about-row--3 .about-row-text {
    width: 360px;
  }
}

.about-row--2,
.about-row--4 {
  display: flex;
  flex-direction: row-reverse;
  justify-content: start;
  gap: 80px;
}
@media (min-width: 768px) and (max-width:1000px) {
  .about-row--2,
  .about-row--4 {
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .about-row--2,
  .about-row--4 {
    display: block;
  }
}
@media (min-width: 768px) and (max-width:1000px) {
  .about-row--2 .about-row-text,
  .about-row--4 .about-row-text {
    width: 300px;
  }
}

.about-row-h2 span {
  color: #A9DA90;
  font-size: 13px;
  font-family: "Montserrat", sans-serif;
}
@media screen and (max-width: 767px) {
  .about-row-h2 span {
    font-size: 10px;
  }
}
.about-row-h2 h2 {
  font-size: 32px;
  letter-spacing: 0.3em;
  padding-bottom: 20px;
}
@media (min-width: 768px) and (max-width:1000px) {
  .about-row-h2 h2 {
    font-size: 28px;
    letter-spacing: 0.15rem;
  }
}
@media screen and (max-width: 767px) {
  .about-row-h2 h2 {
    font-size: 24px;
  }
}

.about-row-text {
  line-height: 2.4;
  padding-bottom: 60px;
}
@media (min-width: 768px) and (max-width:1000px) {
  .about-row-text {
    font-size: 14px;
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .about-row-text {
    font-size: 13px;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .about-row-text {
    padding-bottom: 45px;
    font-size: 14px;
    white-space: nowrap;
  }
}

.about-row-anime--1 {
  width: 15%;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .about-row-anime--1 {
    width: 20%;
    margin-top: 20px;
  }
}

.about-row-anime--2 {
  width: 35%;
  margin-left: auto;
  margin-top: -200px;
  margin-bottom: 200px;
}
@media (min-width: 768px) and (max-width:1000px) {
  .about-row-anime--2 {
    margin-top: -70px;
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 767px) {
  .about-row-anime--2 {
    margin-top: 20px;
    margin-bottom: 30px;
  }
}

.about-row-anime--3 {
  width: 13%;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .about-row-anime--3 {
    width: 15%;
    margin-top: 20px;
  }
}

.about-row-anime--4 {
  width: 16%;
  margin-left: auto;
  margin-top: -260px;
}
@media (min-width: 768px) and (max-width:1000px) {
  .about-row-anime--4 {
    margin-top: -40px;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .about-row-anime--4 {
    margin-top: -80px;
    margin-right: -60px;
  }
}
@media screen and (max-width: 767px) {
  .about-row-anime--4 {
    margin-top: 10px;
    width: 18%;
  }
}

.about-row-anime {
  opacity: 0; /* アニメーションが効かなくても見えるように */
  transform: none;
  visibility: visible;
}

.about-white {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  top: 0;
  left: 0;
  opacity: 0.3;
}

.about-vision {
  background: url(../img/about/about-sky.jpg) no-repeat center center/cover;
  padding: 180px 0;
  text-align: center;
  position: relative;
  z-index: 0;
}
@media (min-width: 768px) and (max-width:1000px) {
  .about-vision {
    padding: 120px 0;
  }
}
@media screen and (max-width: 767px) {
  .about-vision {
    padding: 80px 0;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .about-vision {
    padding: 140px 0;
  }
}
.about-vision h3 {
  font-size: 45px;
  letter-spacing: 0.4rem;
  padding-top: 50px;
  padding-bottom: 50px;
}
@media (min-width: 768px) and (max-width:1000px) {
  .about-vision h3 {
    font-size: 38px;
  }
}
@media screen and (max-width: 767px) {
  .about-vision h3 {
    font-size: 24px;
    padding-top: 30px;
    padding-bottom: 30px;
    letter-spacing: 0.1rem;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .about-vision h3 {
    font-size: 40px;
  }
}

.vision-text {
  font-size: 20px;
  line-height: 2.6;
  letter-spacing: 0.2rem;
  padding-bottom: 50px;
}
@media (min-width: 768px) and (max-width:1000px) {
  .vision-text {
    font-size: 16px;
    padding-bottom: 30px;
    line-height: 2.1;
  }
}
@media screen and (max-width: 767px) {
  .vision-text {
    font-size: 14px;
    padding-bottom: 30px;
    letter-spacing: 0.1rem;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .vision-text {
    font-size: 18px;
  }
}

.about-mission {
  padding-top: 150px;
  padding-bottom: 60px;
  text-align: center;
}
@media (min-width: 768px) and (max-width:1000px) {
  .about-mission {
    padding-top: 100px;
  }
}
@media screen and (max-width: 767px) {
  .about-mission {
    padding-top: 60px;
    padding-bottom: 40px;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .about-mission {
    padding-top: 120px;
    padding-bottom: 50px;
  }
}
.about-mission h3 {
  font-size: 45px;
  padding-top: 60px;
  padding-bottom: 40px;
  letter-spacing: 0.3rem;
}
@media (min-width: 768px) and (max-width:1000px) {
  .about-mission h3 {
    font-size: 38px;
    padding-top: 40px;
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .about-mission h3 {
    font-size: 22px;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .about-mission h3 {
    font-size: 40px;
    padding-top: 50px;
  }
}
.about-mission p {
  line-height: 1.8;
  padding-bottom: 40px;
}
@media (min-width: 768px) and (max-width:1000px) {
  .about-mission p {
    padding-bottom: 30px;
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .about-mission p {
    padding-bottom: 20px;
  }
}

.gray-title {
  width: 100%;
  padding: 30px 0;
  background-color: #E4E4E4;
  text-align: center;
}
@media (min-width: 768px) and (max-width:1000px) {
  .gray-title {
    padding: 20px 0;
  }
}
@media screen and (max-width: 767px) {
  .gray-title {
    padding: 15px 0;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .gray-title {
    padding: 25px 0;
  }
}

.about-value {
  padding-bottom: 150px;
}
@media screen and (max-width: 767px) {
  .about-value {
    padding-bottom: 40px;
  }
}

.value-wrap {
  display: flex;
  padding-top: 80px;
  justify-content: space-between;
}
@media (min-width: 768px) and (max-width:1000px) {
  .value-wrap {
    padding-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .value-wrap {
    display: block;
    padding-top: 20px;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .value-wrap {
    padding-top: 60px;
  }
}

.value-left {
  width: 46%;
  padding-right: 20px;
  padding-top: 20px;
}
@media screen and (max-width: 767px) {
  .value-left {
    width: 100%;
    padding-top: 0;
    padding-right: 0;
    padding-bottom: 20px;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .value-left {
    padding-top: 40px;
  }
}
.value-left h3 {
  font-size: 32px;
  letter-spacing: 0.3rem;
  text-align: center;
  padding-bottom: 150px;
}
@media (min-width: 768px) and (max-width:1000px) {
  .value-left h3 {
    font-size: 26px;
  }
}
@media screen and (max-width: 767px) {
  .value-left h3 {
    font-size: 24px;
    padding-bottom: 20px;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .value-left h3 {
    font-size: 25px;
  }
}

.value-right {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .value-right {
    width: 100%;
  }
}

.value-item {
  padding-bottom: 30px;
}
@media (min-width: 768px) and (max-width:1000px) {
  .value-item {
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .value-item {
    padding-bottom: 20px;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .value-item {
    padding-bottom: 20px;
  }
}

.value-h4 {
  display: flex;
  gap: 20px;
}
.value-h4 h4 {
  font-size: 20px;
  padding-bottom: 10px;
  padding-top: 8px;
  font-feature-settings: "palt";
}
@media (min-width: 768px) and (max-width:1000px) {
  .value-h4 h4 {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .value-h4 h4 {
    font-size: 18px;
    padding-bottom: 5px;
    padding-top: 2px;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .value-h4 h4 {
    font-size: 18px;
    padding-top: 6px;
  }
}
.value-h4 p {
  font-size: 13px;
  line-height: 1.8;
}

.value-number {
  font-size: 25px;
  letter-spacing: 0.25rem;
}
@media screen and (max-width: 767px) {
  .value-number {
    font-size: 20px;
  }
}

@media (min-width: 768px) and (max-width:1000px) {
  .about-slider {
    height: 200px;
  }
}
@media screen and (max-width: 767px) {
  .about-slider {
    height: 150px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

@media (min-width: 768px) and (max-width:1000px) {
  .about-slider-item {
    width: 300px;
  }
}
@media screen and (max-width: 767px) {
  .about-slider-item {
    width: 250px;
  }
}

.about-greeting {
  padding-top: 180px;
  padding-bottom: 250px;
}
@media (min-width: 768px) and (max-width:1000px) {
  .about-greeting {
    padding-top: 120px;
    padding-bottom: 180px;
  }
}
@media screen and (max-width: 767px) {
  .about-greeting {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .about-greeting {
    padding-top: 140px;
    padding-bottom: 200px;
  }
}

.greeting-head {
  display: flex;
  gap: 60px;
  align-items: center;
}
@media (min-width: 768px) and (max-width:1000px) {
  .greeting-head {
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .greeting-head {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .greeting-img {
    width: 60%;
    margin: 0 auto;
  }
}

.greeting-h2 {
  padding-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .greeting-h2 {
    padding-top: 20px;
  }
}
.greeting-h2 span {
  color: #A9DA90;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
}
@media screen and (max-width: 767px) {
  .greeting-h2 span {
    font-size: 10px;
  }
}
.greeting-h2 h2 {
  font-size: 32px;
}
@media screen and (max-width: 767px) {
  .greeting-h2 h2 {
    font-size: 24px;
  }
}

.greeting-name {
  font-size: 20px;
}
@media (min-width: 768px) and (max-width:1000px) {
  .greeting-name {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .greeting-name {
    font-size: 16px;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .greeting-name {
    font-size: 18px;
  }
}

.greeting-message {
  padding-top: 20px;
  font-size: 25px;
}
@media (min-width: 768px) and (max-width:1000px) {
  .greeting-message {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .greeting-message {
    font-size: 20px;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .greeting-message {
    font-size: 22px;
  }
}

.greeting-text {
  padding-top: 40px;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .greeting-text {
    padding-top: 20px;
  }
}

.about-clinic {
  background-color: #CDC1B2;
  padding: 80px 0 120px 0;
}
@media (min-width: 768px) and (max-width:1000px) {
  .about-clinic {
    padding: 60px 0 80px 0;
  }
}
@media screen and (max-width: 767px) {
  .about-clinic {
    padding: 60px 0;
  }
}

.clinic-wrap {
  display: flex;
}
@media (min-width: 768px) and (max-width:1000px) {
  .clinic-wrap {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .clinic-wrap {
    display: block;
  }
}

.clinic-left {
  width: 50%;
}
@media (min-width: 768px) and (max-width:1000px) {
  .clinic-left {
    width: 70%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .clinic-left {
    width: 100%;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .clinic-left {
    padding-right: 20px;
  }
}

.clinic-title-en {
  font-size: 71px;
  letter-spacing: 0.7rem;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  line-height: 1;
  margin-left: 100px;
}
@media (min-width: 768px) and (max-width:1000px) {
  .clinic-title-en {
    font-size: 65px;
    margin-left: 60px;
  }
}
@media screen and (max-width: 767px) {
  .clinic-title-en {
    font-size: 40px;
    margin-left: 0;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .clinic-title-en {
    font-size: 50px;
    letter-spacing: 0.5rem;
  }
}

.clinic-right {
  width: 50%;
  padding-left: 40px;
  padding-top: 60px;
  color: #ffffff;
}
@media (min-width: 768px) and (max-width:1000px) {
  .clinic-right {
    width: 100%;
    padding-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .clinic-right {
    padding-top: 20px;
    width: 100%;
    padding-left: 0;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .clinic-right {
    padding-left: 0;
    padding-top: 40px;
  }
}
.clinic-right h2 {
  font-size: 32px;
  letter-spacing: 0.3rem;
  padding-bottom: 20px;
}
@media (min-width: 768px) and (max-width:1000px) {
  .clinic-right h2 {
    font-size: 26px;
  }
}
@media screen and (max-width: 767px) {
  .clinic-right h2 {
    font-size: 22px;
    padding-bottom: 10px;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .clinic-right h2 {
    font-size: 26px;
    padding-bottom: 10px;
  }
}

.clinic-info-wrap {
  display: flex;
  line-height: 2;
}
@media (min-width: 1001px) and (max-width:1500px) {
  .clinic-info-wrap {
    line-height: 1.6;
  }
}

.clinic-info-label {
  width: 170px;
}
@media screen and (max-width: 767px) {
  .clinic-info-label {
    width: 100px;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .clinic-info-label {
    width: 120px;
  }
}

.clinic-info-text {
  width: calc(100% - 170px);
}
@media screen and (max-width: 767px) {
  .clinic-info-text {
    width: calc(100% - 100px);
    font-size: 13px;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .clinic-info-text {
    width: calc(100% - 120px);
  }
}

.about-history {
  padding-top: 200px;
  padding-bottom: 200px;
}
@media (min-width: 768px) and (max-width:1000px) {
  .about-history {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 767px) {
  .about-history {
    padding: 60px 0;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .about-history {
    padding: 150px 0;
  }
}

.history-h2 span {
  color: #A9DA90;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
}
@media screen and (max-width: 767px) {
  .history-h2 span {
    font-size: 10px;
  }
}
.history-h2 h2 {
  font-size: 32px;
}
@media screen and (max-width: 767px) {
  .history-h2 h2 {
    font-size: 24px;
  }
}

.history-wrap {
  padding-top: 60px;
}
@media screen and (max-width: 767px) {
  .history-wrap {
    padding-top: 20px;
  }
}

.history-row {
  display: flex;
  padding-top: 40px;
  border-bottom: 1px dashed #817A6E;
}
@media screen and (max-width: 767px) {
  .history-row {
    display: block;
    padding-top: 25px;
  }
}

.history-date {
  width: 300px;
}
@media (min-width: 768px) and (max-width:1000px) {
  .history-date {
    width: 200px;
  }
}
@media screen and (max-width: 767px) {
  .history-date {
    width: auto;
  }
}

.history-text {
  width: calc(100% - 300px);
}
@media screen and (max-width: 767px) {
  .history-text {
    width: 100%;
  }
}

.info-bg {
  padding: 0 100px;
  aspect-ratio: 10/3;
}
.info-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 1001px) and (max-width:1500px) {
  .info-bg {
    padding: 0 60px;
  }
}
@media (min-width: 768px) and (max-width:1000px) {
  .info-bg {
    padding: 0 40px;
  }
}
@media screen and (max-width: 767px) {
  .info-bg {
    padding: 0 20px;
  }
}

.info-calender {
  border-top: 1px solid #8ED053;
}

.page-calender {
  padding-top: 100px;
}
@media (min-width: 768px) and (max-width:1000px) {
  .page-calender {
    padding-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .page-calender {
    padding-top: 40px;
    overflow-x: hidden;
    overflow-y: hidden;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .page-calender {
    padding-top: 80px;
  }
}

.clinic-calendar {
  margin-top: 80px;
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  font-size: 16px;
  table-layout: fixed;
}
@media (min-width: 768px) and (max-width:1000px) {
  .clinic-calendar {
    margin-top: 60px;
    width: 660px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 767px) {
  .clinic-calendar {
    letter-spacing: 0.01rem;
    font-size: 8px;
    width: 320px;
    margin: 40px auto 0 auto;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .clinic-calendar {
    font-size: 15px;
  }
}
.clinic-calendar th, .clinic-calendar td {
  border: 1px solid #817A6E;
  padding: 16px;
  position: relative;
  width: 12.5%;
  height: 60px;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .clinic-calendar th, .clinic-calendar td {
    padding: 10px 0;
    width: 11.71%;
    letter-spacing: 0.01rem;
  }
}
@media (min-width: 768px) and (max-width:1000px) {
  .clinic-calendar th, .clinic-calendar td {
    padding: 12px 0;
    height: 80px;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .clinic-calendar th, .clinic-calendar td {
    padding: 16px 0;
    width: 12.2%;
  }
}
.clinic-calendar th:first-child {
  width: 12.5%;
}
@media screen and (max-width: 767px) {
  .clinic-calendar th:first-child {
    width: 18%;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .clinic-calendar th:first-child {
    width: 14%;
  }
}
.clinic-calendar td.closed::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: calc(100% + 10px);
  height: 100%;
  border-top: 1px solid #817A6E;
  transform: rotate(-20deg);
  transform-origin: top right;
  pointer-events: none;
}
@media (min-width: 768px) and (max-width:1000px) {
  .clinic-calendar td.closed::after {
    width: calc(100% + 29px);
    transform: rotate(-42deg);
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .clinic-calendar td.closed::after {
    width: calc(100% + 14px);
    transform: rotate(-27deg);
  }
}
@media screen and (max-width: 767px) {
  .clinic-calendar td.closed::after {
    width: calc(100% + 34px);
    transform: rotate(-58deg);
  }
}

.calender-message {
  display: block;
  margin-top: 10px;
  font-size: 15px;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .calender-message {
    font-size: 13px;
  }
}

.info-subject {
  padding: 180px 0;
}
@media (min-width: 768px) and (max-width:1000px) {
  .info-subject {
    padding: 100px 0;
  }
}
@media screen and (max-width: 767px) {
  .info-subject {
    padding: 80px 0;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .info-subject {
    padding: 150px 0;
  }
}

.subject-wrap {
  margin-top: 80px;
  display: flex;
}
@media (min-width: 768px) and (max-width:1000px) {
  .subject-wrap {
    margin-top: 60px;
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .subject-wrap {
    margin-top: 50px;
    display: block;
  }
}
.subject-wrap:nth-child(odd) {
  flex-direction: row-reverse;
}
.subject-wrap:nth-child(odd) .subject-content {
  margin-right: -100px;
  padding: 60px 140px 40px 40px;
}
@media (min-width: 768px) and (max-width:1000px) {
  .subject-wrap:nth-child(odd) .subject-content {
    padding: 40px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .subject-wrap:nth-child(odd) .subject-content {
    padding: 20px;
    margin-right: auto;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .subject-wrap:nth-child(odd) .subject-content {
    margin-right: -60px;
    padding: 40px 90px 30px 40px;
  }
}
.subject-wrap:nth-child(even) .subject-content {
  margin-left: -100px;
  padding: 60px 40px 40px 140px;
}
@media screen and (max-width: 767px) {
  .subject-wrap:nth-child(even) .subject-content {
    margin-left: auto;
    padding: 20px;
  }
}
@media (min-width: 768px) and (max-width:1000px) {
  .subject-wrap:nth-child(even) .subject-content {
    margin: 0 auto;
    padding: 40px;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .subject-wrap:nth-child(even) .subject-content {
    margin-left: -60px;
    padding: 40px 40px 30px 90px;
  }
}

.subject-img {
  width: 50%;
  position: relative;
  z-index: 3;
}
@media (min-width: 768px) and (max-width:1000px) {
  .subject-img {
    width: 80%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .subject-img {
    width: 100%;
  }
}

.subject-content {
  color: #ffffff;
  background-color: #BF9494;
  width: calc(50% + 100px);
  min-height: 400px;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) and (max-width:1000px) {
  .subject-content {
    width: 80%;
    min-height: 100px;
  }
}
@media screen and (max-width: 767px) {
  .subject-content {
    width: 95%;
    margin: -20px auto 0 auto;
    z-index: 4;
    min-height: 100px;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .subject-content {
    min-height: 350px;
    width: calc(50% + 60px);
    margin-top: 40px;
  }
}
.subject-content h3 {
  font-size: 25px;
  padding-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .subject-content h3 {
    font-size: 20px;
  }
}
.subject-content p {
  line-height: 2;
}

.info-hospital {
  padding: 100px 0 140px 0;
}
@media (min-width: 768px) and (max-width:1000px) {
  .info-hospital {
    padding: 60px 0 100px 0;
  }
}
@media screen and (max-width: 767px) {
  .info-hospital {
    padding: 20px 0 80px 0;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .info-hospital {
    padding: 60px 0 100px 0;
  }
}

.hospital-wrap {
  margin-top: 100px;
  display: flex;
  gap: 70px;
  flex-wrap: wrap;
}
@media (min-width: 768px) and (max-width:1000px) {
  .hospital-wrap {
    gap: 40px 10px;
  }
}
@media screen and (max-width: 767px) {
  .hospital-wrap {
    margin-top: 60px;
    display: block;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .hospital-wrap {
    gap: 40px;
  }
}

.hospital-item {
  width: calc((100% - 140px) / 3);
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) and (max-width:1000px) {
  .hospital-item {
    width: calc((100% - 20px) / 3);
  }
}
@media screen and (max-width: 767px) {
  .hospital-item {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .hospital-item {
    width: calc((100% - 80px) / 3);
  }
}

.hospital-content {
  padding: 25px 30px;
  background-color: #EFF5E9;
  flex: 1;
}
@media (min-width: 768px) and (max-width:1000px) {
  .hospital-content {
    padding: 15px;
  }
}
@media screen and (max-width: 767px) {
  .hospital-content {
    padding: 15px 20px;
  }
}
.hospital-content h3 {
  text-align: center;
  padding-bottom: 15px;
  border-bottom: 1px solid #817A6E;
}
@media screen and (max-width: 767px) {
  .hospital-content h3 {
    padding-bottom: 10px;
  }
}
.hospital-content p {
  padding-top: 15px;
  font-size: 15px;
  line-height: 2.1;
}
@media screen and (max-width: 767px) {
  .hospital-content p {
    padding-top: 10px;
    font-size: 13px;
  }
}

.info-access-wrap {
  background-color: #EFF5E9;
  padding: 80px;
}
@media (min-width: 768px) and (max-width:1000px) {
  .info-access-wrap {
    padding: 40px;
  }
}
@media screen and (max-width: 767px) {
  .info-access-wrap {
    padding: 40px 20px;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .info-access-wrap {
    padding: 50px;
  }
}

.access-map {
  margin-top: 80px;
  margin-bottom: 40px;
  position: relative;
  padding-top: 40%;
  width: 100%;
}
@media (min-width: 768px) and (max-width:1000px) {
  .access-map {
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .access-map {
    margin-top: 40px;
    margin-bottom: 20px;
    padding-top: 80%;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .access-map {
    margin-top: 60px;
    margin-bottom: 20px;
  }
}
.access-map iframe {
  width: 100%;
  height: 100%;
}

.access-map-wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.access-style-border {
  border-bottom: 1px solid #ffffff;
}

.access-style {
  padding-top: 30px;
  padding-bottom: 40px;
}
@media (min-width: 768px) and (max-width:1000px) {
  .access-style {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .access-style {
    padding-top: 15px;
    padding-bottom: 20px;
  }
}

.access-h3 {
  display: flex;
  align-items: center;
}
.access-h3 span {
  font-size: 40px;
  letter-spacing: 0.4rem;
}
@media (min-width: 768px) and (max-width:1000px) {
  .access-h3 span {
    font-size: 30px;
  }
}
@media screen and (max-width: 767px) {
  .access-h3 span {
    font-size: 20px;
    letter-spacing: 0.2rem;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .access-h3 span {
    font-size: 36px;
  }
}
.access-h3 h3 {
  font-size: 30px;
  letter-spacing: 0.3rem;
  padding-left: 10px;
}
@media (min-width: 768px) and (max-width:1000px) {
  .access-h3 h3 {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .access-h3 h3 {
    font-size: 20px;
    letter-spacing: 0.1rem;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .access-h3 h3 {
    font-size: 28px;
  }
}

.access-style-text {
  padding-top: 10px;
  font-size: 14px;
  line-height: 2.2;
}

.access-btn {
  background-color: #F86415;
  width: 232px;
  height: 43px;
  border-radius: 5px;
  margin-top: 20px;
}
@media (min-width: 768px) and (max-width:1000px) {
  .access-btn {
    margin: 30px auto;
  }
}
@media screen and (max-width: 767px) {
  .access-btn {
    border-radius: 2px;
    margin-top: 30px;
  }
}
.access-btn a {
  display: inline-block;
  width: 100%;
  height: 100%;
  text-align: center;
  font-size: 13px;
  color: #ffffff;
  display: flex;
  justify-content: center;
  gap: 14px;
  align-items: center;
  transition: all 0.5s;
}
.access-btn a:hover {
  opacity: 0.6;
}
.access-btn img {
  width: 18px;
}

/*=============================

hero

=================================*/
.hero {
  position: relative;
  width: 100%;
  padding: 0 100px;
}
@media (min-width: 768px) and (max-width:1000px) {
  .hero {
    padding: 0 40px;
  }
}
@media screen and (max-width: 767px) {
  .hero {
    padding: 0 20px;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .hero {
    padding: 0 60px;
  }
}

.hero-swiper,
.swiper-wrapper,
.swiper-slide {
  height: 100%;
  border-radius: 32px;
}
@media screen and (max-width: 767px) {
  .hero-swiper,
  .swiper-wrapper,
  .swiper-slide {
    border-radius: 10px;
  }
}

.hero-img {
  width: 100%;
  aspect-ratio: 17/9;
}
@media (min-width: 1001px) and (max-width:1500px) {
  .hero-img {
    aspect-ratio: 17/10;
  }
}
@media (min-width: 768px) and (max-width:1000px) {
  .hero-img {
    aspect-ratio: 17/10;
  }
}
@media screen and (max-width: 767px) {
  .hero-img {
    aspect-ratio: 17/10;
  }
}

/* 画像にアニメーションを付ける */
.hero-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 4s ease, opacity 3s ease;
  transform: scale(1.05);
  opacity: 0;
}

/* 表示中のスライドに効果適用 */
.swiper-slide-active .hero-img img {
  transform: scale(1);
  opacity: 1;
}

/* 前面に出す要素 */
.hero-message-wrap,
.hero-nav {
  position: absolute;
  z-index: 5;
}

/* メッセージ中央配置 */
.hero-message-wrap {
  top: 80px;
  left: 90px;
}
@media (min-width: 768px) and (max-width:1000px) {
  .hero-message-wrap {
    top: 40px;
    left: 30px;
  }
}
@media screen and (max-width: 767px) {
  .hero-message-wrap {
    top: 5px;
    left: 10px;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .hero-message-wrap {
    top: 80px;
    left: 50px;
  }
}
.hero-message-wrap h1 {
  font-size: 40px;
  color: #456F4A;
  font-weight: 500;
  padding: 15px 10px 15px 20px;
  border-radius: 10px;
  background-color: #FCF9F4;
  letter-spacing: 0.3rem;
}
@media (min-width: 768px) and (max-width:1000px) {
  .hero-message-wrap h1 {
    font-size: 24px;
    padding: 10px;
  }
}
@media screen and (max-width: 767px) {
  .hero-message-wrap h1 {
    font-size: 13px;
    padding: 3px 5px;
    letter-spacing: 0.01rem;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .hero-message-wrap h1 {
   font-size: 2.5vw;
    padding: 10px;
  }
}
.hero-message-wrap .hero-text {
	margin-left: 100px;
  width: 460px;
  
}
@media (min-width: 768px) and (max-width:1000px) {
  .hero-message-wrap .hero-text {
    width: 270px;
    margin-left: 100px;
  }
}
@media screen and (max-width: 767px) {
  .hero-message-wrap .hero-text {
    width: 130px;
    margin-left: 20px;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .hero-message-wrap .hero-text {
    width: 350px;
    margin-left: 60px;
  }
}

/* ナビは下部中央配置（例） */
.hero-nav {
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  width: 1300px;
  margin: 0 auto;
}
@media (min-width: 768px) and (max-width:1000px) {
  .hero-nav {
    padding: 0 60px;
    width: 100%;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .hero-nav {
    width: 940px;
  }
}
@media (min-width: 768px) and (max-width:1000px) {
  .hero-nav {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .hero-nav {
    display: none;
  }
}
.hero-nav li a {
  color: #ffffff;
  text-align: center;
  letter-spacing: 0.17rem;
  transition: all 0.5s;
}
.hero-nav li a:hover {
  cursor: pointer;
  opacity: 0.7;
}
@media (min-width: 1001px) and (max-width:1500px) {
  .hero-nav li a {
    font-size: 15px;
  }
}
.hero-nav li a span {
  color: #A9DA90;
  display: block;
}

.open-sub-menu {
  transition: all 0.7s;
}
.open-sub-menu:hover .hero-nav-menu {
  display: block;
}

.hero-nav-menu {
  display: none;
  position: absolute;
  width: 100%;
  height: auto;
  top: 100%;
  left: 0;
  padding: 80px 40px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  background-color: #D9E6D4;
}
.hero-nav-menu .hero-sub-menu {
  display: flex;
  justify-content: space-between;
  height: auto;
}

/* swiper背景を一番奥に */
.hero-swiper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

/*=================================

top

==================================*/
.schedule tbody td.is-morning {
  padding-left: 10px !important;
}

@media (min-width: 991px) and (max-width: 1500px) {
  .schedule tbody td.is-morning {
    padding-left: 8px !important;
  }
}
@media (min-width: 768px) and (max-width: 990px) {
  .schedule tbody td.is-morning {
    padding-left: 8px !important;
  }
}
@media screen and (max-width: 767px) {
  .schedule tbody td.is-morning {
    padding-left: 0 !important;
  }
}
.top {
  padding-top: 100px;
  padding-bottom: 30px;
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) and (max-width:1000px) {
  .top {
    padding-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .top {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

.top-wrap {
  display: flex;
  justify-content: center;
  gap: 70px;
}
@media (min-width: 1001px) and (max-width:1500px) {
  .top-wrap {
    gap: 40px;
  }
}
@media (min-width: 768px) and (max-width:1000px) {
  .top-wrap {
    flex-direction: column-reverse;
    gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .top-wrap {
    flex-direction: column-reverse;
    gap: 0;
  }
}

.top-left {
  width: calc(50% - 25px);
}
@media (min-width: 1001px) and (max-width:1500px) {
  .top-left {
    width: calc(50% - 20px);
  }
}
@media (min-width: 768px) and (max-width:1000px) {
  .top-left {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .top-left {
    width: 100%;
  }
}

.news {
  width: 90%;
}
@media (min-width: 1001px) and (max-width:1500px) {
  .news {
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width:1000px) {
  .news {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .news {
    width: 100%;
  }
}

.more-btn {
  text-align: right;
  margin-top: 10px;
}
.more-btn a {
  font-size: 14px;
  color: #817A6E;
  transition: all 0.5s;
}
.more-btn a img {
  width: 27px;
  vertical-align: middle;
}
.more-btn a:hover {
  opacity: 0.6;
}
@media (min-width: 768px) and (max-width:1000px) {
  .more-btn {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .more-btn {
    margin-top: 0;
  }
}

.top-title-wrap {
  display: flex;
  justify-content: space-between;
}

.top-title {
  font-size: 24px;
  letter-spacing: 0.2rem;
  padding-bottom: 20px;
}
@media (min-width: 768px) and (max-width:1000px) {
  .top-title {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .top-title {
    font-size: 16px;
    padding-bottom: 0;
  }
}

.news-post {
  display: flex;
  border-bottom: 1px solid #817A6E;
  padding: 20px 0;
  color: #817A6E;
  align-items: center;
  transition: all 0.5s;
}
.news-post:hover {
  cursor: pointer;
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .news-post {
    padding: 15px 0;
  }
}
.news-post .news-category {
  letter-spacing: 0.05rem;
  margin-right: 20px;
  width: 80px;
  font-size: 10px;
  height: 20px;
  background-color: #CE5180;
  color: #ffffff;
  text-align: center;
  padding-top: 2px;
}
@media screen and (max-width: 767px) {
  .news-post .news-category {
    margin-right: 15px;
  }
}

.btn-links {
  margin-top: 60px;
}
@media (min-width: 768px) and (max-width:1000px) {
  .btn-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media screen and (max-width: 767px) {
  .btn-links {
    margin-top: 30px;
  }
}

.btn-link {
  width: 387px;
  height: 78px;
  margin-bottom: 20px;
  transition: all 0.5s;
}
.btn-link:hover {
  cursor: pointer;
  opacity: 0.7;
}
@media (min-width: 768px) and (max-width:1000px) {
  .btn-link {
    width: 300px;
  }
}
@media screen and (max-width: 767px) {
  .btn-link {
    width: 282px;
    height: 60px;
    margin: 0 auto 5px auto;
  }
}
.btn-link a {
  display: inline-block;
  padding-left: 20px;
  padding-top: 14px;
  color: #ffffff;
  font-size: 20px;
  width: 100%;
  height: 100%;
}
.btn-link a img {
  width: 50px;
  margin-right: 20px;
  vertical-align: middle;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .btn-link a img {
    width: 35px;
  }
}
@media (min-width: 768px) and (max-width:1000px) {
  .btn-link a {
    font-size: 16px;
    padding-top: 11px;
  }
}
@media screen and (max-width: 767px) {
  .btn-link a {
    font-size: 14px;
    padding-top: 11px;
  }
}
.btn-link:nth-child(1) {
  background-color: #F4BA35;
}
.btn-link:nth-child(2) {
  background-color: #80B186;
}
.btn-link:nth-child(3) {
  background-color: #4C98AD;
}
.btn-link:nth-child(4) {
  background-color: #7C6961;
}
.btn-link:nth-child(4) img {
  width: 45px;
}
@media screen and (max-width: 767px) {
  .btn-link:nth-child(4) img {
    width: 33px;
  }
}
.btn-link:nth-child(4) a {
  padding-top: 10px;
}
@media screen and (max-width: 767px) {
  .btn-link:nth-child(4) a {
    padding-top: 7px;
  }
}

.today {
  border: 1px solid #FC7A79;
  width: 90%;
  margin-left: auto;
  margin-bottom: 60px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .today {
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width:1000px) {
  .today {
    width: 100%;
  }
}
.today::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 100px;
  background-color: #EAE0D3;
  top: -100px;
  left: 80px;
}
@media screen and (max-width: 767px) {
  .today::before {
    height: 40px;
    top: -40px;
  }
}
.today::after {
  position: absolute;
  content: "";
  width: 5px;
  height: 100px;
  background-color: #EAE0D3;
  top: -100px;
  right: 80px;
}
@media screen and (max-width: 767px) {
  .today::after {
    height: 40px;
    top: -40px;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .today {
    width: 100%;
  }
}

.today-title {
  text-align: center;
  background-color: #FC7A79;
  padding: 10px 0;
  color: #ffffff;
}

.today-text {
  background-color: #ffffff;
  padding: 25px 40px;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .today-text {
    padding: 15px 20px;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .today-text {
    padding: 20px 30px;
  }
}

.today-sub-message {
  padding-top: 20px;
}

.top-right {
  width: calc(50% - 25px);
}
@media (min-width: 768px) and (max-width:1000px) {
  .top-right {
    width: 100%;
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .top-right {
    width: 100%;
    margin-top: 30px;
  }
}
.top-right table {
  width: 100%;
  border-collapse: collapse;
}
.top-right thead th {
  padding: 10px;
}
@media screen and (max-width: 767px) {
  .top-right thead th {
    padding: 6px;
  }
}
.top-right thead th:first-child {
  text-align: left;
  padding-left: 0;
}
.top-right tbody td {
  text-align: center;
  padding: 10px;
  font-size: 16px;
}
@media (min-width: 1001px) and (max-width:1500px) {
  .top-right tbody td {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .top-right tbody td {
    font-size: 13px;
  }
}
.top-right tbody td:first-child {
  text-align: left;
  padding-left: 0;
}
.top-right .red-circle {
  width: 16px;
  height: 16px;
  background-color: #FC7A79;
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
}

.schedule-message {
  display: block;
  font-size: 14px;
  line-height: 2;
  margin-top: 20px;
  letter-spacing: 0.01rem;
}

/*=================================

about

==================================*/
.about {
  padding-top: 80px;
  padding-bottom: 100px;
}
@media (min-width: 768px) and (max-width:1000px) {
  .about {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  .about {
    padding-top: 40px;
    padding-bottom: 60px;
  }
}

.about-wrap {
  display: flex;
  gap: 60px;
}
@media (min-width: 768px) and (max-width:1000px) {
  .about-wrap {
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .about-wrap {
    flex-direction: column;
    gap: 10px;
  }
}

.about-img-wrap {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .about-img-wrap {
    width: 100%;
  }
}

.about-img--1 {
  width: 100%;
}

.about-img--2 {
  width: 50%;
  margin-left: auto;
  margin-right: -100px;
  margin-top: -60px;
}
@media (min-width: 768px) and (max-width:1000px) {
  .about-img--2 {
    margin-top: 0;
    margin-right: 0;
    width: 70%;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .about-img--2 {
    margin-right: -20px;
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .about-img--2 {
    display: none;
  }
}

.about-img--3 {
  width: 50%;
  margin-top: -130px;
}
@media (min-width: 1001px) and (max-width:1500px) {
  .about-img--3 {
    margin-top: -20px;
    left: 0;
  }
}
@media (min-width: 768px) and (max-width:1000px) {
  .about-img--3 {
    margin-top: 0;
    width: 70%;
  }
}
@media screen and (max-width: 767px) {
  .about-img--3 {
    display: none;
  }
}

.about-content {
  width: 50%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .about-content {
    width: 100%;
  }
}

.about-text {
  padding-top: 20px;
  line-height: 1.8;
}

.brown-btn {
  background-color: #817A6E;
  margin: 80px auto;
  transition: all 0.7s;
}
@media (min-width: 768px) and (max-width:1000px) {
  .brown-btn {
    margin: 20px auto;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .brown-btn {
    margin: 70px auto;
  }
}
@media screen and (max-width: 767px) {
  .brown-btn {
    margin-left: 0;
    margin-top: 30px;
    margin-bottom: 40px;
  }
}
.brown-btn:hover {
  background-color: #FFFFFF;
}
.brown-btn a {
  color: #ffffff;
  transition: all 0.7s;
}
.brown-btn a:hover {
  color: #817A6E;
}
.brown-btn a:hover .btn-bar {
  background-color: #817A6E;
}
.brown-btn .btn-bar {
  background-color: #ffffff;
}

.about-anime {
  width: 70%;
  margin-left: auto;
}
@media (min-width: 768px) and (max-width:1000px) {
  .about-anime {
    width: 60%;
  }
}
@media screen and (max-width: 767px) {
  .about-anime {
    width: 147px;
    position: absolute;
    top: -50px;
    right: 0;
  }
}

/*=================================

information

==================================*/
.information {
  position: relative;
}

.en-title {
  font-size: 70px;
  letter-spacing: 0.4rem;
  color: #3E3531;
  font-family: "Montserrat", sans-serif;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  top: -60px;
  z-index: 3;
}
@media (min-width: 768px) and (max-width:1000px) {
  .en-title {
    font-size: 50px;
    top: -40px;
  }
}
@media screen and (max-width: 767px) {
  .en-title {
    font-size: 32px;
    letter-spacing: 0.1rem;
    top: -20px;
  }
}
.en-title .is-yellow {
  color: #FBE267;
}
.en-title .is-green {
  color: #7ECA3B;
}

.info-container {
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
  padding-bottom: 180px;
}
@media screen and (max-width: 767px) {
  .info-container {
    padding-bottom: 60px;
  }
}

.info-title {
  padding-top: 80px;
}
@media screen and (max-width: 767px) {
  .info-title {
    padding-top: 50px;
  }
}

.info-menu-wrap {
  display: flex;
  justify-content: space-between;
  padding-top: 100px;
}
@media (min-width: 768px) and (max-width:1000px) {
  .info-menu-wrap {
    padding-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .info-menu-wrap {
    padding-top: 60px;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
}

.menu-item {
  width: calc(20% - 20px);
  opacity: 0.7;
  transform: translateY(0px);
  transition: all 0.3s ease;
}
@media (min-width: 768px) and (max-width:1000px) {
  .menu-item {
    width: calc(20% - 10px);
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .menu-item {
    width: calc(20% - 15px);
  }
}
@media screen and (max-width: 767px) {
  .menu-item {
    width: calc(50% - 10px);
  }
}
.menu-item:hover {
  opacity: 1;
  transform: translateY(-4px);
}
.menu-item a {
  display: inline-block;
  padding: 70px 0;
  width: 100%;
  text-align: center;
}
@media (min-width: 768px) and (max-width:1000px) {
  .menu-item a {
    padding: 40px 0;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .menu-item a {
    padding: 45px 0;
  }
}
@media screen and (max-width: 767px) {
  .menu-item a {
    padding: 40px 0;
  }
}
.menu-item a p {
  color: #3E3531;
  padding-bottom: 30px;
}
@media (min-width: 768px) and (max-width:1000px) {
  .menu-item a p {
    padding-bottom: 20px;
    font-size: 14px;
  }
}
.menu-item a img {
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  width: auto;
}
.menu-item:nth-child(1) {
  background-color: #FEF7E9;
}
.menu-item:nth-child(2) {
  background-color: #E8F8F7;
}
.menu-item:nth-child(3) {
  background-color: #FFF3ED;
}
.menu-item:nth-child(4) {
  background-color: #F1F3FA;
}
.menu-item:nth-child(5) {
  background-color: #F8F7F7;
}

.circle-green {
  width: 157px;
  height: 157px;
  border-radius: 50%;
  position: relative;
  margin-bottom: -80px;
  margin-left: -30px;
  background-color: #7ECA3B;
  opacity: 0.2;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .circle-green {
    display: none;
  }
}

.circle-yellow--1 {
  width: 154px;
  height: 154px;
  border-radius: 50%;
  position: absolute;
  background-color: #F3D752;
  opacity: 0.2;
  left: -40px;
  bottom: -20px;
}
@media screen and (max-width: 767px) {
  .circle-yellow--1 {
    display: none;
  }
}

.circle-yellow--2 {
  width: 157px;
  height: 157px;
  border-radius: 50%;
  position: absolute;
  background-color: #F3D752;
  opacity: 0.2;
  right: -40px;
  bottom: -10px;
}
@media screen and (max-width: 767px) {
  .circle-yellow--2 {
    display: none;
  }
}

/*=================================

recruit

==================================*/
.recruit {
  background-color: #F88B0A;
  color: #ffffff;
  padding: 80px 0 120px 0;
}
@media (min-width: 768px) and (max-width:1000px) {
  .recruit {
    padding: 40px 0;
  }
}
@media screen and (max-width: 767px) {
  .recruit {
    padding: 30px 0 50px 0;
  }
}

.recruit-inner {
  margin-left: 250px;
}
@media (min-width: 768px) and (max-width:1000px) {
  .recruit-inner {
    margin-left: 40px;
    margin-right: 40px;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .recruit-inner {
    margin-left: 150px;
  }
}
@media screen and (max-width: 767px) {
  .recruit-inner {
    margin-left: 0;
    padding: 0 20px;
  }
}

.recruit-writing {
  width: 65%;
}
@media screen and (max-width: 767px) {
  .recruit-writing {
    width: 100%;
  }
}

.recruit-wrap {
  display: flex;
  justify-content: space-between;
}
@media (min-width: 768px) and (max-width:1000px) {
  .recruit-wrap {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .recruit-wrap {
    display: block;
  }
}

.recruit-content {
  width: 40%;
}
@media (min-width: 768px) and (max-width:1000px) {
  .recruit-content {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .recruit-content {
    width: 100%;
  }
}

.rotate-message {
  width: calc(100% + 80px);
  margin-right: -100px;
  margin-bottom: 40px;
  position: relative;
}
@media (min-width: 768px) and (max-width:1000px) {
  .rotate-message {
    width: 70%;
    margin-left: 60px;
  }
}
@media screen and (max-width: 767px) {
  .rotate-message {
    width: 70%;
    margin-bottom: 10px;
    margin-left: 30px;
  }
}

.recruit-text {
  width: 100%;
  line-height: 1.8;
  padding-bottom: 30px;
}
@media (min-width: 1001px) and (max-width:1500px) {
  .recruit-text {
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .recruit-text {
    line-height: 1.4;
    padding-bottom: 0;
  }
}

.recruit-img {
  width: 56%;
}
@media (min-width: 768px) and (max-width:1000px) {
  .recruit-img {
    margin: 0 auto;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .recruit-img {
    width: 292px;
    margin: 0 auto;
    padding-bottom: 20px;
  }
}

/*=================================

faqs

==================================*/
.faqs {
  padding: 160px 0 120px 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
@media (min-width: 1001px) and (max-width:1500px) {
  .faqs {
    padding: 120px 0 100px 0;
  }
}
@media (min-width: 768px) and (max-width:1000px) {
  .faqs {
    padding: 60px 0;
  }
}
@media screen and (max-width: 767px) {
  .faqs {
    padding: 30px 0;
  }
}

.faqs-anime {
  width: 165px;
  position: absolute;
  top: 0;
  right: 250px;
}
@media (min-width: 768px) and (max-width:1000px) {
  .faqs-anime {
    width: 100px;
    right: 100px;
    top: 40px;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .faqs-anime {
    width: 140px;
  }
}
@media screen and (max-width: 767px) {
  .faqs-anime {
    width: 60px;
    right: 40px;
    top: 20px;
  }
}

.faqs-inner {
  background-color: #ffffff;
  padding: 80px 0 60px 0;
  margin-top: 140px;
}
@media (min-width: 1001px) and (max-width:1500px) {
  .faqs-inner {
    margin-top: 120px;
    padding: 60px 0;
  }
}
@media (min-width: 768px) and (max-width:1000px) {
  .faqs-inner {
    padding: 40px;
  }
}
@media screen and (max-width: 767px) {
  .faqs-inner {
    padding: 20px 10px 30px 10px;
    margin-top: 40px;
  }
}

.faqs-title {
  text-align: center;
  position: relative;
}
.faqs-title::before {
  position: absolute;
  content: "";
  height: 130px;
  width: 1px;
  background-color: #817A6E;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 768px) and (max-width:1000px) {
  .faqs-title::before {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .faqs-title::before {
    display: none;
  }
}
.faqs-title h2 {
  padding-left: 30px;
}
@media (min-width: 768px) and (max-width:1000px) {
  .faqs-title h2 {
    padding-left: 15px;
  }
}
@media screen and (max-width: 767px) {
  .faqs-title h2 {
    padding-left: 9px;
  }
}
.faqs-title span {
  display: block;
}

.faqs-wrap {
  width: 1000px;
  margin: 60px auto;
}
@media (min-width: 768px) and (max-width:1000px) {
  .faqs-wrap {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .faqs-wrap {
    width: 100%;
    margin: 30px auto;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .faqs-wrap {
    width: 90%;
  }
}

.fqs-item {
  margin-bottom: 30px;
}

.faqs-head {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 20px 40px;
  border-radius: 100px;
  border: 1px solid #817A6E;
}
@media screen and (max-width: 767px) {
  .faqs-head {
    padding: 15px 20px;
    gap: 20px;
  }
	.faqs-q-text{
		width:200px;
	}
}

.faqs-q-icon {
  font-size: 50px;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  color: #817A6E;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .faqs-q-icon {
    font-size: 20px;
  }
}

.faqs-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  display: flex;
  gap: 30px;
  padding: 0 40px;
}
@media screen and (max-width: 767px) {
  .faqs-body {
    display: block;
    padding: 0;
  }
}

.faqs-body.open {
  padding: 20px 40px;
}
@media screen and (max-width: 767px) {
  .faqs-body.open {
    padding: 20px;
  }
}

.faqs-a-icon {
  font-size: 50px;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  color: #817A6E;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .faqs-a-icon {
    font-size: 20px;
  }
}

.faqs-red-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #CE5180;
  position: relative;
  margin-left: auto;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .faqs-red-icon {
    width: 20px;
    height: 20px;
  }
}

.faqs-red-bar1, .faqs-red-bar2 {
  background-color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.faqs-red-bar1 {
  width: 23px;
  height: 2.5px;
}
@media screen and (max-width: 767px) {
  .faqs-red-bar1 {
    width: 13px;
    height: 1px;
  }
}

.faqs-red-bar2 {
  width: 2.5px;
  height: 23px;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .faqs-red-bar2 {
    width: 1px;
    height: 13px;
  }
}

.faqs-red-icon.minus .faqs-red-bar2 {
  opacity: 0;
}

.faqs-message {
  width: 940px;
  margin: 0 auto;
  line-height: 2;
}
@media (min-width: 768px) and (max-width:1000px) {
  .faqs-message {
    width: 95%;
  }
}
@media screen and (max-width: 767px) {
  .faqs-message {
    width: 90%;
    line-height: 1.4;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .faqs-message {
    width: 85%;
  }
}
.faqs-message li {
  list-style: disc;
}
@media screen and (max-width: 767px) {
  .faqs-message li {
    padding-top: 20px;
  }
}

/*=================================

digisma

==================================*/
.digisma {
  background-color: #3971B7;
  color: #ffffff;
  padding: 100px 0;
}
@media (min-width: 768px) and (max-width:1000px) {
  .digisma {
    padding: 60px 0;
  }
}
@media screen and (max-width: 767px) {
  .digisma {
    padding: 30px 0 60px 0;
  }
}

.digisma-inner {
  position: relative;
}

.digisma-writing--left {
  width: 30%;
  position: absolute;
  left: 40px;
  top: -40px;
}
@media screen and (max-width: 767px) {
  .digisma-writing--left {
    width: 40%;
    top: 60px;
    left: 20px;
  }
}

.digisma-writing--right {
  width: 30%;
  position: absolute;
  right: 40px;
  top: -40px;
}
@media screen and (max-width: 767px) {
  .digisma-writing--right {
    width: 40%;
    top: 60px;
    right: 20px;
  }
}

.digisma-flame--1 {
  width: 15%;
  position: absolute;
  left: 0;
  bottom: 120px;
}
@media (min-width: 768px) and (max-width:1000px) {
  .digisma-flame--1 {
    width: 20%;
    bottom: auto;
    top: 150px;
  }
}
@media screen and (max-width: 767px) {
  .digisma-flame--1 {
    width: 25%;
    top: 150px;
  }
}

.digisma-flame--2 {
  width: 15%;
  position: absolute;
  left: 120px;
  top: 100px;
}
@media (min-width: 768px) and (max-width:1000px) {
  .digisma-flame--2 {
    width: 20%;
    left: 40px;
    top: 10px;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .digisma-flame--2 {
    left: 60px;
  }
}
@media screen and (max-width: 767px) {
  .digisma-flame--2 {
    width: 25%;
    top: 80px;
    left: 80px;
  }
}

.digisma-flame--3 {
  width: 15%;
  position: absolute;
  right: 120px;
  top: 100px;
}
@media (min-width: 768px) and (max-width:1000px) {
  .digisma-flame--3 {
    width: 20%;
    right: 20px;
    top: 10px;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .digisma-flame--3 {
    right: 60px;
  }
}
@media screen and (max-width: 767px) {
  .digisma-flame--3 {
    width: 25%;
    top: 80px;
    right: 80px;
  }
}

.digisma-flame--4 {
  width: 15%;
  position: absolute;
  right: 0;
  bottom: 120px;
}
@media (min-width: 768px) and (max-width:1000px) {
  .digisma-flame--4 {
    width: 20%;
    bottom: auto;
    top: 150px;
  }
}
@media screen and (max-width: 767px) {
  .digisma-flame--4 {
    width: 25%;
    top: 140px;
  }
}

.digisma-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 60px;
}
@media (min-width: 1001px) and (max-width:1500px) {
  .digisma-wrap {
    gap: 50px;
  }
}
@media screen and (max-width: 767px) {
  .digisma-wrap {
    gap: 30px;
  }
}

.digisma-message {
  text-align: center;
  font-size: 42px;
  position: relative;
  padding-bottom: 40px;
}
@media (min-width: 768px) and (max-width:1000px) {
  .digisma-message {
    font-size: 34px;
    padding-bottom: 20px;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .digisma-message {
    font-size: 36px;
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .digisma-message {
    padding-bottom: 10px;
    font-size: 20px;
  }
}
.digisma-message::after {
  position: absolute;
  content: "";
  width: 150px;
  height: 2px;
  background-color: #ffffff;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .digisma-message::after {
    width: 50px;
  }
}

.digisma-text {
  line-height: 2;
  text-align: center;
}

@media (min-width: 768px) and (max-width:1000px) {
  .digisma-title {
    width: 60%;
  }
}
@media screen and (max-width: 767px) {
  .digisma-title {
    padding-top: 170px;
    width: 60%;
  }
}

.digisma-person {
  width: 20%;
  position: absolute;
  bottom: -60px;
  right: 100px;
}
@media (min-width: 768px) and (max-width:1000px) {
  .digisma-person {
    right: 40px;
    bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .digisma-person {
    top: -20px;
    right: 20px;
  }
}

.digisma-btn {
  width: 348px;
  height: 74px;
  border-radius: 34px;
  background-color: #ffffff;
  position: relative;
}
@media screen and (max-width: 767px) {
  .digisma-btn {
    width: 235px;
    height: 50px;
  }
}
.digisma-btn a {
  display: inline-block;
  width: 100%;
  height: 100%;
  text-align: center;
  color: #3971B7;
  padding-top: 18px;
  font-size: 20px;
  transition: all 0.5s;
}
@media screen and (max-width: 767px) {
  .digisma-btn a {
    font-size: 14px;
    padding-top: 14px;
  }
}
.digisma-btn a:hover {
  cursor: pointer;
  opacity: 0.7;
}
.digisma-btn::before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 40px;
  height: 1px;
  background-color: #3971B7;
}
@media screen and (max-width: 767px) {
  .digisma-btn::before {
    width: 30px;
  }
}
.digisma-btn::after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  right: -40px;
  width: 40px;
  height: 1px;
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  .digisma-btn::after {
    width: 30px;
    right: -30px;
  }
}

/*=================================

member

==================================*/
.member-wrap {
  padding-bottom: 200px;
}
@media (min-width: 768px) and (max-width:1000px) {
  .member-wrap {
    padding-bottom: 120px;
  }
}
@media screen and (max-width: 767px) {
  .member-wrap {
    padding-bottom: 100px;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .member-wrap {
    padding-bottom: 160px;
  }
}

.member-row {
  display: flex;
  padding-top: 100px;
  gap: 80px;
}
@media (min-width: 768px) and (max-width:1000px) {
  .member-row {
    padding-top: 60px;
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .member-row {
    padding-top: 60px;
    display: block;
  }
}

.member-img {
  width: 33%;
}
@media screen and (max-width: 767px) {
  .member-img {
    width: 80%;
    margin: 0 auto;
  }
}

.member-content {
  width: 67%;
}
@media screen and (max-width: 767px) {
  .member-content {
    padding-top: 20px;
  }
}

.member-name {
  font-size: 25px;
  letter-spacing: 0.25rem;
  margin-bottom: 30px;
  padding-bottom: 10px;
  position: relative;
}
@media (min-width: 768px) and (max-width:1000px) {
  .member-name {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .member-name {
    font-size: 18px;
    margin-bottom: 25px;
    padding-bottom: 5px;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .member-name {
    font-size: 23px;
    margin-bottom: 25px;
  }
}
.member-name::after {
  position: absolute;
  content: "";
  width: 66px;
  height: 1px;
  background-color: #817A6E;
  bottom: 0;
}

.member-kana {
  letter-spacing: 0.15rem;
  font-family: "Montserrat", sans-serif;
}

.member-history {
  padding-bottom: 30px;
  line-height: 1.8;
}
@media (min-width: 768px) and (max-width:1000px) {
  .member-history {
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .member-history {
    padding-bottom: 20px;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .member-history {
    padding-bottom: 25px;
  }
}

.member-position {
  line-height: 1.8;
}

.member-block {
  margin-bottom: 30px;
}

/*================

outpatient

===================*/
.out-flow {
  padding-top: 120px;
  padding-bottom: 150px;
}
@media (min-width: 768px) and (max-width:1000px) {
  .out-flow {
    padding-top: 90px;
    padding-bottom: 110px;
  }
}
@media screen and (max-width: 767px) {
  .out-flow {
    padding-top: 80px;
    padding-bottom: 100px;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .out-flow {
    padding-top: 100px;
    padding-bottom: 120px;
  }
}

.out-flow-wrap {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .out-flow-wrap {
    margin-top: 60px;
  }
}

.out-flow-item {
  display: flex;
}
@media (min-width: 768px) and (max-width:1000px) {
  .out-flow-item {
    display: block;
    margin: 0 auto;
    width: 70%;
  }
}
@media screen and (max-width: 767px) {
  .out-flow-item {
    display: block;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .out-flow-item {
    height: 300px;
  }
}

.out-flow-img {
  width: 50%;
  height: 100%;
}
@media (min-width: 768px) and (max-width:1000px) {
  .out-flow-img {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .out-flow-img {
    width: 100%;
  }
}
.out-flow-img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.out-flow-content {
  width: 50%;
  background-color: #ffffff;
  padding: 30px 40px;
  line-height: 2;
}
@media (min-width: 768px) and (max-width:1000px) {
  .out-flow-content {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .out-flow-content {
    width: 100%;
    padding: 20px 30px;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .out-flow-content {
    padding: 20px 30px;
  }
}
.out-flow-content h3 {
  font-size: 22px;
}
@media screen and (max-width: 767px) {
  .out-flow-content h3 {
    font-size: 18px;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .out-flow-content h3 {
    font-size: 20px;
  }
}
.out-flow-content h4 {
  margin-top: 10px;
}

.out-flow-arrow {
  width: 41px;
  margin-left: 23%;
  margin-top: 30px;
  margin-bottom: 30px;
}
@media (min-width: 768px) and (max-width:1000px) {
  .out-flow-arrow {
    margin: 10px auto;
    width: 30px;
  }
}
@media screen and (max-width: 767px) {
  .out-flow-arrow {
    margin: 10px auto;
    width: 20px;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .out-flow-arrow {
    width: 36px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 767px) {
  .page-full {
    height: 120px;
  }
  .page-full img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.out-check-anchor {
  display: flex;
  margin-top: -50px;
  padding: 0 80px 50px 80px;
  justify-content: space-between;
}
@media (min-width: 768px) and (max-width:1000px) {
  .out-check-anchor {
    padding: 0 0 40px 0;
    margin-top: -30px;
  }
}
@media screen and (max-width: 767px) {
  .out-check-anchor {
    padding: 0 0 20px 0;
    margin-top: -20px;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .out-check-anchor {
    padding: 0 20px 40px 20px;
    margin-top: -40px;
  }
}

.check-anchor-btn {
  width: 160px;
  background-color: #18979E;
  height: 83px;
}
@media (min-width: 768px) and (max-width:1000px) {
  .check-anchor-btn {
    width: 120px;
  }
}
@media screen and (max-width: 767px) {
  .check-anchor-btn {
    width: 60px;
    height: 70px;
  }
}
.check-anchor-btn a {
  display: inline-block;
  color: #ffffff;
  font-size: 15px;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: all 0.5s;
}
.check-anchor-btn a:hover {
  opacity: 0.7;
}
@media (min-width: 768px) and (max-width:1000px) {
  .check-anchor-btn a {
    font-size: 13px;
  }
}
@media screen and (max-width: 767px) {
  .check-anchor-btn a {
    font-size: 9px;
  }
}

.check-anchor-btn--5 a {
  text-align: left;
}

.check-h3 {
  color: #ffffff;
  padding: 5px 20px;
  background-color: #18979E;
  margin-bottom: 30px;
  margin-top: 40px;
  width: 70%;
}
@media (min-width: 768px) and (max-width:1000px) {
  .check-h3 {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .check-h3 {
    padding: 5px 10px;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .check-h3 {
    width: 90%;
  }
}

.check-h4 {
  color: #18979E;
}

.check-content-item {
  padding-bottom: 30px;
  line-height: 1.8;
}
@media (min-width: 768px) and (max-width:1000px) {
  .check-content-item {
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .check-content-item {
    padding-bottom: 15px;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .check-content-item {
    padding-bottom: 20px;
  }
}

.check-content-btn {
  margin-top: 30px;
}
.check-content-btn a {
  border-radius: 5px;
  background-color: #F86415;
  color: #ffffff;
  display: inline-block;
  padding: 20px 30px;
}

.check-flame-h4 {
  color: #18979E;
  padding-top: 30px;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .check-flame-h4 {
    padding-top: 20px;
  }
}

.green-border {
  width: 60%;
  height: 1px;
  background-color: #18979E;
}
@media (min-width: 768px) and (max-width:1000px) {
  .green-border {
    width: 80%;
  }
}
@media screen and (max-width: 767px) {
  .green-border {
    width: 100%;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .green-border {
    width: 70%;
  }
}

.check-table {
  margin-top: 30px;
}
@media (min-width: 768px) and (max-width:1000px) {
  .check-table {
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .check-table {
    margin-top: 10px;
  }
}
.check-table table {
  width: 75%;
  border-collapse: collapse;
  border: 1px solid #817A6E;
}
@media (min-width: 768px) and (max-width:1000px) {
  .check-table table {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .check-table table {
    width: 100%;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .check-table table {
    width: 90%;
  }
}
.check-table tbody td {
  text-align: center;
  padding: 15px;
  border: 1px solid #817A6E;
  vertical-align: middle;
}
@media (min-width: 1001px) and (max-width:1500px) {
  .check-table tbody td {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .check-table tbody td {
    font-size: 13px;
  }
}
.check-table tbody td:first-child {
  text-align: left;
}
.check-table tbody td:last-child {
  width: 180px;
}
@media screen and (max-width: 767px) {
  .check-table tbody td:last-child {
    width: 100px;
  }
}

.check-white-box {
  width: 75%;
  background-color: #ffffff;
  padding: 30px 40px;
  margin: 60px 0;
}
@media (min-width: 768px) and (max-width:1000px) {
  .check-white-box {
    width: 100%;
    margin: 40px 0;
  }
}
@media screen and (max-width: 767px) {
  .check-white-box {
    margin: 30px 0;
    width: 100%;
    padding: 20px;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .check-white-box {
    width: 90%;
  }
}

.online-section-top {
  width: 40%;
  margin: 0 auto;
}
@media (min-width: 768px) and (max-width:1000px) {
  .online-section-top {
    width: 60%;
  }
}
@media screen and (max-width: 767px) {
  .online-section-top {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .online-section-top {
    width: 45%;
  }
}
.online-section-top .page-h2-wrap {
  padding-bottom: 30px;
}
.online-section-top p {
  padding-top: 30px;
}

.online-flow {
  padding-top: 150px;
}
@media (min-width: 768px) and (max-width:1000px) {
  .online-flow {
    padding-top: 100px;
  }
}
@media screen and (max-width: 767px) {
  .online-flow {
    padding-top: 80px;
  }
}

.online-flow-wrap {
  display: flex;
  align-items: center;
  margin-top: 80px;
}
@media (min-width: 768px) and (max-width:1000px) {
  .online-flow-wrap {
    margin-top: 40px;
    display: block;
  }
}
@media (min-width: 768px) and (max-width:1000px) {
  .online-flow-wrap {
    margin-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .online-flow-wrap {
    margin-top: 40px;
    display: block;
  }
}

.flow-right-arrow {
  width: 21px;
}
@media (min-width: 768px) and (max-width:1000px) {
  .flow-right-arrow {
    transform: rotate(90deg);
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .flow-right-arrow {
    transform: rotate(90deg);
    margin: 0 auto;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .flow-right-arrow {
    width: 18px;
  }
}

.online-flow-item {
  width: calc((100% - 105px) / 5);
  background-color: #ffffff;
  padding: 30px 20px;
}
@media (min-width: 768px) and (max-width:1000px) {
  .online-flow-item {
    width: 70%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .online-flow-item {
    width: 100%;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .online-flow-item {
    width: calc((100% - 90px) / 5);
    padding: 25px 10px;
  }
}
.online-flow-item h3 {
  text-align: center;
  width: 180px;
  margin: 0 auto;
  font-size: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #817A6E;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .online-flow-item h3 {
    margin-bottom: 20px;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .online-flow-item h3 {
    width: 100px;
    font-size: 18px;
    margin-bottom: 15px;
  }
}
.online-flow-item p {
  font-size: 15px;
  line-height: 2.1;
  height: 260px;
}
@media (min-width: 768px) and (max-width:1000px) {
  .online-flow-item p {
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .online-flow-item p {
    font-size: 14px;
    height: auto;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .online-flow-item p {
    font-size: 14px;
    height: 300px;
  }
}

.reservation {
  padding-top: 150px;
}
@media (min-width: 768px) and (max-width:1000px) {
  .reservation {
    padding-top: 100px;
  }
}
@media screen and (max-width: 767px) {
  .reservation {
    padding-top: 80px;
  }
}

.reservation-h2-wrap {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .reservation-h2-wrap {
    display: block;
    margin-bottom: 20px;
  }
}
.reservation-h2-wrap .align-left {
  text-align: left;
}

.reservation-pdf-btn {
  width: 232px;
  height: 43px;
  background-color: #80B186;
  margin-top: 25px;
}
.reservation-pdf-btn a {
  display: inline-block;
  width: 100%;
  height: 100%;
  color: #ffffff;
  text-align: center;
  font-size: 15px;
  padding-top: 8px;
}
.reservation-pdf-btn img {
  width: 15px;
  margin-right: 10px;
}

.reservation-content {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .reservation-content {
    margin-top: 15px;
  }
}
.reservation-content h3 {
  background-color: #9DC77A;
  color: #ffffff;
  font-size: 24px;
  padding: 5px 20px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .reservation-content h3 {
    font-size: 14px;
    padding: 3px 5px;
    margin-bottom: 15px;
  }
}
.reservation-content p {
  padding-right: 300px;
}
@media (min-width: 1001px) and (max-width:1500px) {
  .reservation-content p {
    padding-right: 0;
  }
}
@media (min-width: 768px) and (max-width:1000px) {
  .reservation-content p {
    padding-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .reservation-content p {
    padding-right: 0;
    line-height: 1.8;
  }
}
.reservation-content li {
  text-indent: -1.5em;
  margin-left: 1.5em;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .reservation-content li {
    line-height: 1.8;
  }
}

.reservation-btn-wrap {
  margin-top: 30px;
  display: flex;
  gap: 60px;
}
@media screen and (max-width: 767px) {
  .reservation-btn-wrap {
    display: block;
    margin-top: 15px;
    margin-bottom: 40px;
  }
}

.reservation-btn {
  width: 300px;
  height: 77px;
  position: relative;
  border: 1px solid #9DC77A;
}
@media screen and (max-width: 767px) {
  .reservation-btn {
    width: 215px;
    height: 56px;
    margin-bottom: 10px;
  }
}
.reservation-btn a {
  width: 100%;
  height: 100%;
  display: inline-block;
  color: #9DC77A;
  text-align: center;
  font-size: 20px;
  padding-top: 20px;
  transition: all 0.7s;
}
@media screen and (max-width: 767px) {
  .reservation-btn a {
    padding-top: 10px;
  }
}
.reservation-btn a img {
  width: 50px;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  transition: opacity 0.5s ease, transform 0.7s ease;
}
.reservation-btn a:hover {
  background-color: #9DC77A;
  color: #ffffff;
}
.reservation-btn a .hover-img {
  opacity: 0;
}
.reservation-btn a:hover {
  background-color: #9DC77A;
  color: #ffffff;
}
.reservation-btn a:hover .default-img {
  opacity: 0;
}
.reservation-btn a:hover .hover-img {
  opacity: 1;
}

/*================

home

===================*/
.home-area {
  background-color: #ffffff;
  border-radius: 46px;
  width: 100%;
  padding: 35px 0 45px 0;
}
@media (min-width: 768px) and (max-width:1000px) {
  .home-area {
    padding: 30px;
  }
}
@media screen and (max-width: 767px) {
  .home-area {
    padding: 20px 0;
    border-radius: 20px;
  }
}
.home-area h3 {
  text-align: center;
  font-size: 24px;
  color: #E6C80F;
  padding-bottom: 35px;
}
@media (min-width: 768px) and (max-width:1000px) {
  .home-area h3 {
    font-size: 20px;
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .home-area h3 {
    font-size: 18px;
    padding-bottom: 5px;
  }
}

.home-area--1 .home-area-list {
  width: 1080px;
}
@media (min-width: 768px) and (max-width:1000px) {
  .home-area--1 .home-area-list {
    width: auto;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .home-area--1 .home-area-list {
    width: 860px;
  }
}
@media screen and (max-width: 767px) {
  .home-area--1 .home-area-list {
    width: auto;
    padding: 20px;
  }
}

.home-area--2 .home-area-list {
  width: 880px;
}
@media (min-width: 768px) and (max-width:1000px) {
  .home-area--2 .home-area-list {
    width: auto;
  }
}
@media screen and (max-width: 767px) {
  .home-area--2 .home-area-list {
    width: auto;
    padding: 20px;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .home-area--2 .home-area-list {
    width: 720px;
  }
}
.home-area--2 .home-area-list li {
  width: 220px;
}
@media (min-width: 768px) and (max-width:1000px) {
  .home-area--2 .home-area-list li {
    width: auto;
  }
}
@media screen and (max-width: 767px) {
  .home-area--2 .home-area-list li {
    width: auto;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .home-area--2 .home-area-list li {
    width: 180px;
  }
}

.home-area-list {
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 15px 0;
}
@media (min-width: 768px) and (max-width:1000px) {
  .home-area-list {
    gap: 10px 20px;
  }
}
@media screen and (max-width: 767px) {
  .home-area-list {
    gap: 10px;
  }
}
.home-area-list li {
  width: 270px;
}
@media (min-width: 768px) and (max-width:1000px) {
  .home-area-list li {
    width: auto;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .home-area-list li {
    width: 215px;
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .home-area-list li {
    width: auto;
    font-size: 12px;
  }
}

.home-flow-wrap {
  padding: 0 60px;
}
@media (min-width: 768px) and (max-width:1000px) {
  .home-flow-wrap {
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .home-flow-wrap {
    padding: 0;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .home-flow-wrap {
    padding: 0;
  }
}
.home-flow-wrap .bottom-line {
  width: calc(100% - 150px);
  height: 1px;
  background-color: #817A6E;
  margin-left: auto;
}
@media (min-width: 768px) and (max-width:1000px) {
  .home-flow-wrap .bottom-line {
    width: calc(100% - 120px);
  }
}
@media screen and (max-width: 767px) {
  .home-flow-wrap .bottom-line {
    width: 100%;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .home-flow-wrap .bottom-line {
    width: calc(100% - 130px);
  }
}

.home-flow-item {
  display: flex;
  align-items: center;
  padding: 60px 0;
}
@media (min-width: 768px) and (max-width:1000px) {
  .home-flow-item {
    padding: 30px 0;
  }
}
@media screen and (max-width: 767px) {
  .home-flow-item {
    padding: 30px 0;
    display: block;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .home-flow-item {
    padding: 50px 0;
  }
}
.home-flow-item:first-child {
  padding-top: 0;
}

.home-flow-top {
  display: flex;
  align-items: center;
  gap: 50px;
}
@media (min-width: 768px) and (max-width:1000px) {
  .home-flow-top {
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .home-flow-top {
    gap: 30px;
    padding-bottom: 20px;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .home-flow-top {
    gap: 35px;
  }
}
.home-flow-top h3 {
  font-size: 20px;
  color: #7ECA3B;
  width: 300px;
}
@media (min-width: 768px) and (max-width:1000px) {
  .home-flow-top h3 {
    font-size: 18px;
    width: 200px;
  }
}
@media screen and (max-width: 767px) {
  .home-flow-top h3 {
    width: auto;
    font-size: 18px;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .home-flow-top h3 {
    width: 215px;
    font-size: 18px;
  }
}

.home-flow-number {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 1px solid #817A6E;
  text-align: center;
  padding-top: 30px;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .home-flow-number {
    width: 60px;
    height: 60px;
    padding-top: 14px;
  }
}

.home-flow-message {
  padding-top: 100px;
  padding-bottom: 70px;
  line-height: 1.8;
  text-align: center;
}
@media (min-width: 768px) and (max-width:1000px) {
  .home-flow-message {
    padding-top: 60px;
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  .home-flow-message {
    padding-top: 50px;
    padding-bottom: 40px;
  }
}

.home-contact-btn {
  text-align: center;
  margin-bottom: 100px;
}
.home-contact-btn a {
  display: inline-block;
  text-align: center;
  color: #ffffff;
  background-color: #80B186;
  padding: 20px 40px;
  transition: all 0.6s;
}
.home-contact-btn a span {
  display: block;
}
.home-contact-btn a .is-big {
  font-size: 27px;
}
.home-contact-btn a .is-small {
  font-size: 15px;
}
.home-contact-btn a:hover {
  opacity: 0.6;
}

.home-full {
  padding: 0 100px;
}
@media (min-width: 768px) and (max-width:1000px) {
  .home-full {
    padding: 0 40px;
  }
}
@media screen and (max-width: 767px) {
  .home-full {
    padding: 0 20px;
  }
}

.page-recruit {
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .page-recruit {
    padding-bottom: 60px;
  }
}

.recruit-bg {
  display: flex;
  justify-content: space-between;
  margin-top: 80px;
  aspect-ratio: auto;
}
@media screen and (max-width: 767px) {
  .recruit-bg {
    margin-top: 40px;
  }
}
.recruit-bg img {
  width: 23%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (min-width: 1001px) and (max-width:1500px) {
  .recruit-bg img {
    width: 24%;
  }
}
@media (min-width: 768px) and (max-width:1000px) {
  .recruit-bg img {
    width: 25%;
  }
}
@media screen and (max-width: 767px) {
  .recruit-bg img {
    width: 28%;
  }
}

.entry-btn-fixed {
  position: fixed;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background-color: #1A1A1A;
  right: 100px;
  bottom: 80px;
  text-align: center;
  z-index: 200;
  transition: all 0.6s;
}
.entry-btn-fixed:hover {
  opacity: 0.6;
}
@media (min-width: 768px) and (max-width:1000px) {
  .entry-btn-fixed {
    width: 140px;
    height: 140px;
    right: 40px;
    bottom: 40px;
    line-height: 1.3;
  }
}
@media screen and (max-width: 767px) {
  .entry-btn-fixed {
    width: 120px;
    height: 120px;
    right: 20px;
    bottom: 20px;
    line-height: 1.3;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .entry-btn-fixed {
    width: 150px;
    height: 150px;
    line-height: 1.4;
    right: 60px;
    bottom: 40px;
  }
}
.entry-btn-fixed a {
  color: #ffffff;
  display: inline-block;
  padding-top: 26px;
}
@media screen and (max-width: 767px) {
  .entry-btn-fixed a {
    padding-top: 20px;
  }
}
.entry-btn-fixed .entry-message {
  font-size: 15px;
}
@media (min-width: 768px) and (max-width:1000px) {
  .entry-btn-fixed .entry-message {
    font-size: 13px;
  }
}
@media screen and (max-width: 767px) {
  .entry-btn-fixed .entry-message {
    font-size: 10px;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .entry-btn-fixed .entry-message {
    font-size: 14px;
  }
}
.entry-btn-fixed .entry-en {
  font-size: 32px;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.3rem;
}
@media (min-width: 768px) and (max-width:1000px) {
  .entry-btn-fixed .entry-en {
    font-size: 28px;
  }
}
@media screen and (max-width: 767px) {
  .entry-btn-fixed .entry-en {
    font-size: 24px;
    letter-spacing: 0.1rem;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .entry-btn-fixed .entry-en {
    font-size: 28px;
    letter-spacing: 0.1rem;
  }
}
.entry-btn-fixed img {
  width: 42px;
}
@media (min-width: 768px) and (max-width:1000px) {
  .entry-btn-fixed img {
    width: 35px;
  }
}
@media screen and (max-width: 767px) {
  .entry-btn-fixed img {
    width: 35px;
  }
}

.project-head {
  padding: 90px 0 130px 0;
  text-align: center;
  background-color: #E4E4E4;
  width: 100%;
  color: #1A1A1A;
}
@media (min-width: 768px) and (max-width:1000px) {
  .project-head {
    padding: 60px 0 100px;
  }
}
@media screen and (max-width: 767px) {
  .project-head {
    padding: 50px 0 60px 0;
  }
}
.project-head h3 {
  font-size: 48px;
  letter-spacing: 0.4rem;
  line-height: 1.8;
  padding-top: 10px;
}
@media (min-width: 768px) and (max-width:1000px) {
  .project-head h3 {
    font-size: 38px;
  }
}
@media screen and (max-width: 767px) {
  .project-head h3 {
    font-size: 24px;
    line-height: 1.6;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .project-head h3 {
    font-size: 44px;
  }
}

@media screen and (max-width: 767px) {
  .recruit-h2 {
    line-height: 1.2;
  }
}
.recruit-h2 span {
  font-size: 15px;
}
.recruit-h2 h2 {
  font-size: 45px;
  font-family: "Montserrat", sans-serif;
}
@media screen and (max-width: 767px) {
  .recruit-h2 h2 {
    font-size: 36px;
    padding-bottom: 10px;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .recruit-h2 h2 {
    font-size: 40px;
  }
}

.project-content {
  padding: 90px 0;
  color: #1A1A1A;
  text-align: center;
  margin-top: -80px;
  position: relative;
  z-index: 0;
  background: url(../img/recruit/recruit-back.jpg) no-repeat center center/cover;
}
@media (min-width: 768px) and (max-width:1000px) {
  .project-content {
    padding: 60px 20px;
  }
}
@media screen and (max-width: 767px) {
  .project-content {
    margin-top: -40px;
    padding: 60px 10px;
  }
}
.project-content h4 {
  font-size: 25px;
  letter-spacing: 0.25rem;
  padding-bottom: 60px;
}
@media (min-width: 768px) and (max-width:1000px) {
  .project-content h4 {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .project-content h4 {
    font-size: 18px;
    letter-spacing: 0.1rem;
    padding-bottom: 30px;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .project-content h4 {
    font-size: 22px;
  }
}
.project-content p {
  padding-bottom: 40px;
  line-height: 2.5;
}
@media screen and (max-width: 767px) {
  .project-content p {
    padding-bottom: 20px;
    line-height: 1.8;
    font-size: 13px;
  }
}

.reason {
  padding-top: 150px;
}

.reason-wrap {
  position: relative;
  background-color: #F7F6E4;
  width: 100%;
  padding-bottom: 40px;
}
.reason-wrap h2 {
  letter-spacing: 0.4rem;
  font-size: 40px;
  padding-top: 100px;
  padding-left: 40px;
  padding-bottom: 80px;
}
@media (min-width: 768px) and (max-width:1000px) {
  .reason-wrap h2 {
    font-size: 28px;
    padding-top: 60px;
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .reason-wrap h2 {
    font-size: 20px;
    padding-left: 20px;
    letter-spacing: 0.1rem;
    padding-top: 50px;
    padding-bottom: 30px;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .reason-wrap h2 {
    font-size: 36px;
  }
}

.reason-title-en {
  position: absolute;
  font-family: "Montserrat", sans-serif;
  font-size: 50px;
  left: 0;
  top: -35px;
  color: #1A1A1A;
}
@media (min-width: 768px) and (max-width:1000px) {
  .reason-title-en {
    font-size: 45px;
  }
}
@media screen and (max-width: 767px) {
  .reason-title-en {
    font-size: 25px;
    top: -15px;
    letter-spacing: 0.01rem;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .reason-title-en {
    font-size: 46px;
  }
}

.reason-row {
  display: flex;
  padding: 45px 60px;
  gap: 40px;
  align-items: center;
}
@media (min-width: 768px) and (max-width:1000px) {
  .reason-row {
    padding: 40px 20px;
  }
}
@media screen and (max-width: 767px) {
  .reason-row {
    display: block;
    padding: 30px 10px;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .reason-row {
    padding: 40px;
  }
}
.reason-row:nth-child(odd) .reason-number {
  right: -20px;
}
.reason-row:nth-child(even) {
  flex-direction: row-reverse;
}
.reason-row:nth-child(even) .reason-number {
  left: -20px;
}

.reason-img {
  position: relative;
  width: 500px;
}
@media (min-width: 768px) and (max-width:1000px) {
  .reason-img {
    width: 350px;
  }
}
@media screen and (max-width: 767px) {
  .reason-img {
    width: 100%;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .reason-img {
    width: 400px;
  }
}
.reason-img .reason-number {
  position: absolute;
  font-size: 60px;
  font-weight: 600;
  letter-spacing: 0.6rem;
  top: -50px;
}
@media screen and (max-width: 767px) {
  .reason-img .reason-number {
    font-size: 48px;
    top: -40px;
  }
}

.reason-content {
  width: calc(100% - 540px);
}
@media (min-width: 768px) and (max-width:1000px) {
  .reason-content {
    width: calc(100% - 370px);
  }
}
@media screen and (max-width: 767px) {
  .reason-content {
    width: 100%;
    padding-top: 10px;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .reason-content {
    width: calc(100% - 430px);
  }
}
.reason-content h3 {
  font-size: 30px;
  padding-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .reason-content h3 {
    font-size: 20px;
    padding-bottom: 5px;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .reason-content h3 {
    font-size: 26px;
  }
}

.entry-btn {
  background-color: #1A1A1A;
  border-radius: 34px;
  margin: 80px auto 40px auto;
}
@media (min-width: 768px) and (max-width:1000px) {
  .entry-btn {
    margin: 60px auto 40px auto;
  }
}
@media screen and (max-width: 767px) {
  .entry-btn {
    margin: 40px auto;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .entry-btn {
    margin: 60px auto 40px auto;
  }
}
.entry-btn a {
  font-family: "Montserrat", sans-serif;
}
.entry-btn .btn-bar {
  background-color: #ffffff;
}
.entry-btn:hover {
  background-color: #ffffff;
}
.entry-btn:hover a {
  color: #1A1A1A;
}
.entry-btn:hover a .btn-bar {
  background-color: #1A1A1A;
}

.job {
  padding-top: 80px;
  padding-bottom: 150px;
}
@media (min-width: 768px) and (max-width:1000px) {
  .job {
    padding-bottom: 100px;
    padding-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .job {
    padding-top: 40px;
    padding-bottom: 60px;
  }
}
.job h2 {
  width: 500px;
  margin: 0 auto;
}
@media (min-width: 768px) and (max-width:1000px) {
  .job h2 {
    width: 350px;
  }
}
@media screen and (max-width: 767px) {
  .job h2 {
    width: 90%;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .job h2 {
    width: 400px;
  }
}
.job h3 {
  text-align: center;
  font-size: 36px;
  letter-spacing: 0.36rem;
  padding-bottom: 100px;
  padding-top: 20px;
}
@media (min-width: 768px) and (max-width:1000px) {
  .job h3 {
    font-size: 28px;
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  .job h3 {
    font-size: 20px;
    padding-bottom: 40px;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .job h3 {
    font-size: 32px;
  }
}

.job-wrap {
  display: flex;
}

.job-item {
  flex: 1;
  text-align: center;
}
.job-item h4 {
  font-size: 20px;
  padding: 20px 0;
}
@media (min-width: 768px) and (max-width:1000px) {
  .job-item h4 {
    padding: 10px 0;
  }
}
@media screen and (max-width: 767px) {
  .job-item h4 {
    font-size: 14px;
    padding: 10px 0;
  }
}
@media screen and (max-width: 767px) {
  .job-item p {
    font-size: 10px;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .job-item p {
    font-size: 13px;
  }
}

.job-item-img {
  width: 100%;
  aspect-ratio: 320/482;
}
.job-item-img img {
  border-radius: 35px;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .job-item-img img {
    border-radius: 15px;
  }
}

.voice {
  padding-bottom: 200px;
}
@media (min-width: 768px) and (max-width:1000px) {
  .voice {
    padding-bottom: 120px;
  }
}
@media screen and (max-width: 767px) {
  .voice {
    padding-bottom: 80px;
  }
}

.voice-wrap {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .voice-wrap {
    display: block;
  }
}

.voice-left {
  width: 47%;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .voice-left {
    width: 60%;
    margin: 0 auto;
    margin-top: 0;
  }
}

.voice-en {
  width: 100%;
}

.voice-right {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .voice-right {
    width: 100%;
  }
}
.voice-right h2 {
  font-size: 48px;
  letter-spacing: 0.4rem;
  padding-bottom: 15px;
}
@media (min-width: 768px) and (max-width:1000px) {
  .voice-right h2 {
    font-size: 34px;
    padding-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .voice-right h2 {
    font-size: 20px;
    padding-top: 20px;
    text-align: center;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .voice-right h2 {
    font-size: 40px;
    padding-bottom: 10px;
  }
}

.voice-name {
  font-size: 25px;
  padding-bottom: 40px;
}
@media (min-width: 768px) and (max-width:1000px) {
  .voice-name {
    font-size: 20px;
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .voice-name {
    font-size: 16px;
    padding-bottom: 20px;
    text-align: center;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .voice-name {
    font-size: 22px;
    padding-bottom: 20px;
  }
}

.voice-item {
  padding-bottom: 20px;
}
.voice-item h3 {
  color: #CE5180;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .voice-item h3 {
    font-size: 16px;
  }
}
.voice-item p {
  padding-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .voice-item p {
    padding-bottom: 10px;
  }
}

.entry h2 {
  color: #ffffff;
  font-size: 30px;
  text-align: center;
  background-color: #1A1A1A;
  width: 100%;
  padding: 10px 0;
}
@media (min-width: 768px) and (max-width:1000px) {
  .entry h2 {
    font-size: 22px;
  }
}
@media screen and (max-width: 767px) {
  .entry h2 {
    font-size: 18px;
    padding: 8px 0;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .entry h2 {
    font-size: 26px;
  }
}

.entry-wrap {
  padding-top: 100px;
}
@media (min-width: 768px) and (max-width:1000px) {
  .entry-wrap {
    padding-top: 80px;
  }
}
@media screen and (max-width: 767px) {
  .entry-wrap {
    padding-top: 60px;
  }
}
.entry-wrap:nth-child(3) .entry-item h3 {
  background-color: #6C4A43;
}
.entry-wrap:nth-child(3) .entry-item .entry-row:nth-child(even) {
  background-color: #FDEBE7;
}
.entry-wrap:nth-child(3) .entry-item .entry-row:nth-child(odd) {
  background-color: #ffffff;
}
.entry-wrap:nth-child(4) .entry-item h3 {
  background-color: #406858;
}
.entry-wrap:nth-child(4) .entry-item .entry-row:nth-child(even) {
  background-color: #F0FFF9;
}
.entry-wrap:nth-child(4) .entry-item .entry-row:nth-child(odd) {
  background-color: #ffffff;
}

.entry-item h3 {
  color: #ffffff;
  font-size: 30px;
  text-align: center;
  background-color: #465362;
  width: 100%;
  padding: 10px 0;
}
@media (min-width: 768px) and (max-width:1000px) {
  .entry-item h3 {
    font-size: 22px;
  }
}
@media screen and (max-width: 767px) {
  .entry-item h3 {
    padding: 8px 0;
    font-size: 18px;
  }
}
@media (min-width: 1001px) and (max-width:1500px) {
  .entry-item h3 {
    font-size: 26px;
  }
}

.entry-row {
  display: flex;
  color: #1A1A1A;
  align-items: center;
  padding: 20px;
}
@media screen and (max-width: 767px) {
  .entry-row {
    padding: 10px;
  }
}
.entry-row:nth-child(even) {
  background-color: #E4EEFA;
}
.entry-row:nth-child(odd) {
  background-color: #ffffff;
}

.entry-label {
  width: 300px;
}
@media (min-width: 768px) and (max-width:1000px) {
  .entry-label {
    width: 200px;
  }
}
@media screen and (max-width: 767px) {
  .entry-label {
    width: 120px;
  }
}

.entry-text {
  width: calc(100% - 300px);
}
@media (min-width: 768px) and (max-width:1000px) {
  .entry-text {
    width: calc(100% - 200px);
  }
}
@media screen and (max-width: 767px) {
  .entry-text {
    width: calc(100% - 120px);
  }
}

.form {
  padding: 150px 0;
}
@media (min-width: 768px) and (max-width:1000px) {
  .form {
    padding: 100px 40px;
  }
}
@media screen and (max-width: 767px) {
  .form {
    padding: 80px 20px;
  }
}

.form-inner {
  width: 1000px;
  margin: 0 auto;
}
@media (min-width: 1001px) and (max-width:1500px) {
  .form-inner {
    width: 800px;
  }
}
@media (min-width: 768px) and (max-width:1000px) {
  .form-inner {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .form-inner {
    width: 100%;
  }
}

.form-title {
  position: relative;
  background-color: #1A1A1A;
  color: #ffffff;
  padding: 10px 0;
}
.form-title h2 {
  text-align: center;
}
.form-title span {
  position: absolute;
  top: 10px;
  right: 150px;
}
@media (min-width: 1001px) and (max-width:1500px) {
  .form-title span {
    right: 100px;
  }
}
@media screen and (max-width: 767px) {
  .form-title span {
    position: static;
    text-align: right;
    display: block;
    font-size: 12px;
  }
}

.form-item {
  padding: 10px 0;
}

.form-label {
  color: #1A1A1A;
  padding-bottom: 5px;
}
.form-label .required {
  position: relative;
}
.form-label .required::after {
  content: "＊";
  position: absolute;
  font-weight: 700;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3";
  color: #1A1A1A;
  top: -10px;
  right: -15px;
  font-weight: 700;
}

.form-input {
  width: 100%;
}
.form-input [type=text] {
  width: 100%;
  height: 35px;
  border: 1px solid #1A1A1A;
  padding-left: 10px;
  font-size: 16px;
}
.form-input [type=email] {
  width: 100%;
  height: 35px;
  border: 1px solid #1A1A1A;
  padding-left: 10px;
  font-size: 16px;
}
.form-input span {
  margin: 0 5px;
}

.form-tel {
  width: 100%;
}
.form-tel [type=text] {
  width: 15%;
  height: 35px;
  border: 1px solid #1A1A1A;
  margin-left: 5px;
  padding-left: 10px;
  font-size: 16px;
}

.form-input-radio--1 label {
  color: #1A1A1A;
}
.form-input-radio--1 label [type=radio] {
  transform: scale(1.5);
  margin-right: 10px;
}

.form-input-radio .wpcf7-list-item {
  display: block;
}
.form-input-radio label {
  display: block;
  color: #1A1A1A;
}
.form-input-radio label [type=radio] {
  transform: scale(1.5);
  margin-right: 10px;
}

.form-textarea textarea {
  width: 100%;
  height: 90px;
  padding: 10px;
  font-size: 16px;
}

.form-file {
  padding-bottom: 20px;
}
.form-file span {
  font-size: 10px;
}

.form-file-text {
  font-size: 12px;
  color: #1A1A1A;
  padding: 5px 0;
}

.form-file-btn {
  display: inline-block;
  font-size: 10px;
  text-align: center;
  border: 1px solid #1A1A1A;
  border-radius: 6px;
  padding: 3px 10px;
  color: #1A1A1A;
  margin-right: 10px;
}
.form-check {
  padding-top: 30px;
  color: #1A1A1A;
}
.form-check li {
  font-size: 12px;
  padding-bottom: 5px;
}
.form-check p {
  font-size: 14px;
}

.form-check-title {
  padding-bottom: 10px;
}

.form-check-box {
  background-color: #F4F3EF;
  margin-top: 5px;
  margin-bottom: 25px;
  padding: 20px;
}
@media screen and (max-width: 767px) {
  .form-check-box {
    padding-top: 40px;
  }
}
.form-check-box [type=checkbox] {
  transform: scale(1.5);
}
.form-check-box p {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .form-check-box p {
    text-align: left;
  }
}
.form-check-box .wpcf7-list-item {
  padding-left: 10px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .form-check-box .wpcf7-list-item {
    padding-left: 0;
  }
}
.form-check-box .wpcf7-list-item::after {
  content: "必須";
  width: 40px;
  position: absolute;
  color: #ffffff;
  background-color: #BBCBCB;
  padding: 5px 10px;
  font-size: 12px;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  right: -80px;
}
@media screen and (max-width: 767px) {
  .form-check-box .wpcf7-list-item::after {
    top: -20px;
    left: 0;
  }
}
.form-back {
  margin-top: 60px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .form-back {
    margin-top: 40px;
  }
}
.form-back [type=button] {
  width: 220px;
  height: 45px;
  text-align: center;
  background-color: #817A6E;
  border: #817A6E;
  color: #ffffff;
}
.form-back [type=button]:hover {
  opacity: 0.7;
}

.form-confirm {
  margin-top: 60px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .form-confirm {
    margin-top: 40px;
  }
}
.form-confirm [type=submit] {
  width: 220px;
  height: 45px;
  text-align: center;
  background-color: #1A1A1A;
  color: #ffffff;
}
.form-confirm [type=submit]:hover {
  opacity: 0.7;
}

.form-submit {
  margin-top: 20px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .form-submit {
    margin-top: 10px;
  }
}
.form-submit [type=submit] {
  width: 220px;
  height: 45px;
  text-align: center;
  background-color: #1A1A1A;
  color: #ffffff;
}
.form-submit [type=submit]:hover {
  opacity: 0.7;
}

div.wpcf7 .wpcf7-spinner {
  display: block;
}

.thanks-wrap {
  padding-top: 100px;
  padding-bottom: 140px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .thanks-wrap {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.thanks-wrap h1 {
  font-size: 32px;
  padding-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .thanks-wrap h1 {
    font-size: 20px;
  }
}
.thanks-wrap p {
  padding-bottom: 30px;
}

.page-posts {
  margin-top: 100px;
}
@media (min-width: 1001px) and (max-width:1500px) {
  .page-posts {
    margin-top: 80px;
  }
}
@media (min-width: 768px) and (max-width:1000px) {
  .page-posts {
    margin-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .page-posts {
    margin-top: 50px;
  }
}

.page-post-item {
  display: flex;
  gap: 60px;
  padding: 30px 0;
  border-bottom: 1px solid #817A6E;
  color: #817A6E;
  transition: all 0.7s;
}
.page-post-item:hover {
  opacity: 0.7;
}
@media (min-width: 768px) and (max-width:1000px) {
  .page-post-item {
    gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .page-post-item {
    gap: 30px;
    padding: 20px 0;
  }
}

.page-post {
  margin: 0 80px;
}
@media (min-width: 768px) and (max-width:1000px) {
  .page-post {
    margin: 0;
  }
}
@media screen and (max-width: 767px) {
  .page-post {
    margin: 0;
  }
}

.page-post-title {
  padding-bottom: 10px;
  border-bottom: 1px solid #817A6E;
}
.page-post-title time {
  letter-spacing: 0.3rem;
}
.page-post-title h2 {
  font-size: 30px;
}
@media (min-width: 768px) and (max-width:1000px) {
  .page-post-title h2 {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .page-post-title h2 {
    font-size: 18px;
  }
}

.page-post-content {
  margin: 40px 0;
  line-height: 2;
}
@media (min-width: 768px) and (max-width:1000px) {
  .page-post-content {
    margin: 20px 0;
  }
}
@media screen and (max-width: 767px) {
  .page-post-content {
    margin: 20px 0;
  }
}

.single__pagination {
  padding: 30px 80px;
  border-top: 1px solid #817A6E;
  border-bottom: 1px solid #817A6E;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 1001px) and (max-width:1500px) {
  .single__pagination {
    padding: 30px 40px;
  }
}
@media (min-width: 768px) and (max-width:1000px) {
  .single__pagination {
    padding: 20px 0;
  }
}
@media screen and (max-width: 767px) {
  .single__pagination {
    padding: 20px 0;
  }
}

.single__prev {
  width: 500px;
}
@media (min-width: 1001px) and (max-width:1500px) {
  .single__prev {
    width: 400px;
  }
}
@media (min-width: 768px) and (max-width:1000px) {
  .single__prev {
    width: 300px;
  }
}
@media screen and (max-width: 767px) {
  .single__prev {
    width: auto;
    margin-right: 10px;
  }
  .single__prev span {
    font-size: 10px;
  }
}
.single__prev a {
  color: #817A6E;
}
@media screen and (max-width: 767px) {
  .single__prev a {
    display: flex;
    flex-direction: column-reverse;
  }
}
.single__prev a img {
  width: 25px;
  vertical-align: middle;
  margin-bottom: 5px;
}

.single__next {
  text-align: right;
  width: 500px;
}
@media (min-width: 1001px) and (max-width:1500px) {
  .single__next {
    width: 400px;
  }
}
@media (min-width: 768px) and (max-width:1000px) {
  .single__next {
    width: 300px;
  }
}
@media screen and (max-width: 767px) {
  .single__next {
    width: auto;
    margin-left: 10px;
  }
  .single__next span {
    font-size: 10px;
  }
}
.single__next a {
  color: #817A6E;
}
@media screen and (max-width: 767px) {
  .single__next a {
    display: flex;
    flex-direction: column;
    align-items: end;
  }
}
.single__next a img {
  width: 25px;
  vertical-align: middle;
  margin-bottom: 5px;
}

.l-pagination {
  text-align: center;
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .l-pagination {
    margin-top: 60px;
  }
}

.l-pagination .current {
  background-color: rgb(129, 122, 110);
  margin: 0 5px;
  display: inline-block;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  padding-top: 15px;
  color: #ffffff;
  background-color: rgba(129, 122, 110, 0.68);
}

.l-pagination a {
  margin: 0 5px;
  display: inline-block;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  padding-top: 15px;
  color: #ffffff;
  background-color: rgba(129, 122, 110, 0.68);
}
.l-pagination a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .l-pagination a {
    width: 45px;
    height: 45px;
    padding-top: 10px;
    margin: 0 2px;
  }
}
.l-pagination a.next {
  width: 40px;
  height: 40px;
  vertical-align: middle;
  font-size: 10px;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  padding-top: 12px;
}
@media screen and (max-width: 767px) {
  .l-pagination a.next {
    width: 30px;
    height: 30px;
    padding-top: 9px;
    font-size: 8px;
  }
}
.l-pagination a.prev {
  width: 40px;
  height: 40px;
  vertical-align: middle;
  font-size: 10px;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  padding-top: 12px;
}
@media screen and (max-width: 767px) {
  .l-pagination a.prev {
    width: 30px;
    height: 30px;
    padding-top: 9px;
    font-size: 8px;
  }
}
.page-blog{
	padding-bottom:100px;
}
.page-blog .single__pagination {
  width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
  margin-bottom: 100px;
}
.page-blog .single__pagination a:hover {
  opacity: 0.7;
}
@media (min-width: 1001px) and (max-width:1500px) {
  .page-blog .single__pagination {
    width: 800px;
    font-size: 16px;
    margin-bottom: 80px;
  }
}
@media (min-width: 768px) and (max-width:1000px) {
  .page-blog .single__pagination {
    width: 100%;
    margin-bottom: 70px;
  }
}
@media screen and (max-width: 767px) {
  .page-blog .single__pagination {
    width: 100%;
    margin-bottom: 60px;
  }
  .page-blog .single__pagination span {
    display: none;
  }
}
.page-blog .single__archive a {
  white-space: nowrap;
  color: #817A6E;
}

.blog-posts {
  width: 874px;
  margin: 100px auto;
}
@media screen and (max-width: 767px) {
  .blog-posts {
    width: 100%;
    margin: 60px auto;
  }
}
@media (min-width: 768px) and (max-width:1000px) {
  .blog-posts {
    width: 100%;
    margin: 80px auto;
  }
}
.blog-posts .page-post-title span {
  letter-spacing: 0.1rem;
}

.blog-archive-wrap {
  padding-top: 60px;
  padding-bottom: 100px;
}

.page-blog-numbers ul {
  display: flex;
  gap: 8px;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin-top: 40px;
}

.page-blog-numbers li a,
.page-blog-numbers li span {
  display: inline-block;
  padding: 8px 12px;
  color: #817A6E;
  text-decoration: none;
  font-size: 30px;
}
@media screen and (max-width: 767px) {
  .page-blog-numbers li a,
  .page-blog-numbers li span {
    font-size: 18px;
  }
}
.page-blog-numbers li a:hover,
.page-blog-numbers li span:hover {
  opacity: 0.7;
}

.page-blog-numbers li span.current {
  color: #817A6E;
  border-color: #333;
}

.page-plaza .single__pagination {
  width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
  margin-bottom: 100px;
}
.page-plaza .single__pagination a:hover {
  opacity: 0.7;
}
@media (min-width: 1001px) and (max-width:1500px) {
  .page-plaza .single__pagination {
    width: 800px;
    font-size: 16px;
    margin-bottom: 80px;
  }
}
@media (min-width: 768px) and (max-width:1000px) {
  .page-plaza .single__pagination {
    width: 100%;
    margin-bottom: 70px;
  }
}
@media screen and (max-width: 767px) {
  .page-plaza .single__pagination {
    width: 100%;
    margin-bottom: 60px;
  }
  .page-plaza .single__pagination span {
    display: none;
  }
}
.page-plaza .single__archive a {
  white-space: nowrap;
  color: #817A6E;
}

.plaza-posts {
  width: 874px;
  margin: 100px auto;
}
@media screen and (max-width: 767px) {
  .plaza-posts {
    width: 100%;
    margin: 60px auto;
  }
}
@media (min-width: 768px) and (max-width:1000px) {
  .plaza-posts {
    width: 100%;
    margin: 80px auto;
  }
}
.plaza-posts .page-post-title span {
  letter-spacing: 0.1rem;
}
.plaza-posts img {
  width: auto;
  height: 100%;
}

.plaza-archive-wrap {
  padding-top: 120px;
}
@media screen and (max-width: 767px) {
  .plaza-archive-wrap {
    padding-top: 60px;
  }
}

.plaza-archive-item {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .plaza-archive-item {
    margin-bottom: 40px;
  }
}

.plaza-archive-title {
  font-size: 30px;
  position: relative;
  padding-left: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #817A6E;
  margin-right: 200px;
}
@media screen and (max-width: 767px) {
  .plaza-archive-title {
    margin-right: 0;
    font-size: 18px;
    padding-left: 20px;
    padding-bottom: 10px;
  }
}
.plaza-archive-title a {
  color: #817A6E;
}
.plaza-archive-title::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 50px;
  top: 0;
  left: 0;
  background-color: #817A6E;
}
@media screen and (max-width: 767px) {
  .plaza-archive-title::before {
    width: 5px;
    height: 30px;
  }
}

.plaza-archive-content {
  padding-top: 40px;
  display: flex;
  gap: 80px;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .plaza-archive-content {
    padding-top: 20px;
    gap: 20px;
  }
}

.plaza-archive-img {
  width: 300px;
}
@media screen and (max-width: 767px) {
  .plaza-archive-img {
    width: 160px;
  }
}

.plaza-archive-excerpt {
  width: calc(100% - 300px);
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .plaza-archive-excerpt {
    width: calc(100% - 180px);
  }
}

.plaza-back-title {
  font-size: 30px;
  position: relative;
  padding-left: 40px;
  padding-bottom: 20px;
  margin-right: 200px;
}
@media screen and (max-width: 767px) {
  .plaza-back-title {
    margin-right: 0;
    font-size: 18px;
    padding-left: 20px;
    padding-bottom: 10px;
  }
}
.plaza-back-title a {
  color: #817A6E;
}
.plaza-back-title::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 50px;
  top: 0;
  left: 0;
  background-color: #817A6E;
}
@media screen and (max-width: 767px) {
  .plaza-back-title::before {
    width: 5px;
    height: 30px;
  }
}

.back-number-wrap {
  display: flex;
  border: 1px solid #817A6E;
  width: 80%;
}
.back-number-wrap:not(:first-child) {
  margin-top: -1px;
}
@media screen and (max-width: 767px) {
  .back-number-wrap {
    width: 100%;
  }
}

.back-number-year {
  width: 30%;
  padding: 30px 40px;
  font-size: 30px;
  border-right: 1px solid #817A6E;
  background-color: #f9f8f6;
}
@media screen and (max-width: 767px) {
  .back-number-year {
    padding: 15px 10px;
    font-size: 20px;
  }
}

.back-number-month {
  padding: 30px 40px;
}
@media screen and (max-width: 767px) {
  .back-number-month {
    padding: 15px 0;
  }
}
.back-number-month a {
  color: #817A6E;
  text-decoration: none;
  padding: 5px 10px;
  text-decoration: underline;
  display: block;
  transition: opacity 0.3s;
}
.back-number-month a img {
  width: 12px;
  vertical-align: middle;
  margin-right: 10px;
  margin-bottom: 5px;
}
.back-number-month a:hover {
  opacity: 0.7;
}

.plaza-pagination {
  text-align: center;
  padding-top: 60px;
}
@media screen and (max-width: 767px) {
  .plaza-pagination {
    padding-top: 40px;
  }
}
.plaza-pagination a {
  font-size: 30px;
  color: #817A6E;
  padding: 0 5px;
}
@media screen and (max-width: 767px) {
  .plaza-pagination a {
    font-size: 18px;
  }
}
.plaza-pagination a:hover {
  opacity: 0.7;
}
.plaza-pagination span {
  font-size: 30px;
  padding: 0 5px;
}
@media screen and (max-width: 767px) {
  .plaza-pagination span {
    font-size: 18px;
  }
}/*# sourceMappingURL=main.css.map */

.slb_data_title{
	display:none!important;
}