@charset "UTF-8";
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Zen Maru Gothic", sans-serif;
  letter-spacing: 0.1vw;
}

@media screen and (max-width: 768px) {
  .br_pc {
    display: none;
  }
}

@media screen and (min-width: 1441px) {
  .br_sp {
    display: none;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .br_sp {
    display: none;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .br_sp {
    display: none;
  }
}

.wide {
  width: 1200px;
  margin: auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .wide {
    width: 800px;
  }
}
@media screen and (max-width: 768px) {
  .wide {
    width: 350px;
  }
}

p {
  font-size: 1vw;
  line-height: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  p {
    font-size: 1.8vw;
    line-height: 4vw;
  }
}
@media screen and (max-width: 768px) {
  p {
    font-size: 3.4vw;
    line-height: 8vw;
  }
}

h1 {
  font-size: 3.3vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  h1 {
    font-size: 4.3vw;
  }
}
@media screen and (max-width: 768px) {
  h1 {
    font-size: 8vw;
  }
}

h2 {
  font-size: 2.5vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  h2 {
    font-size: 3.3vw;
  }
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 6vw;
  }
}

h3 {
  font-size: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  h3 {
    font-size: 3vw;
  }
}
@media screen and (max-width: 768px) {
  h3 {
    font-size: 5vw;
  }
}

h4 {
  font-size: 1.7vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  h4 {
    font-size: 2.4vw;
  }
}
@media screen and (max-width: 768px) {
  h4 {
    font-size: 4vw;
  }
}

h5 {
  font-size: 1.3vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  h5 {
    font-size: 2vw;
  }
}
@media screen and (max-width: 768px) {
  h5 {
    font-size: 3.5vw;
  }
}

.fade-in {
  opacity: 0;
  transition-duration: 1s;
  transition-property: opacity, transform;
}

.fade-in-up {
  transform: translate(0, 50px);
}

.fade-in-down {
  transform: translate(0, -50px);
}

.fade-in-left {
  transform: translate(-50px, 0);
}

.fade-in-right {
  transform: translate(50px, 0);
}

.scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}

header {
  z-index: 9999999999;
  position: fixed;
  width: 100%;
  background-color: #fff;
}
header #header_pc {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2vw;
  height: 100px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  header #header_pc {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  header #header_pc {
    display: none;
  }
}
header #header_pc .header_image {
  height: 80%;
  margin-left: 0;
  margin-right: auto;
}
header #header_pc .header_image img {
  height: 100%;
}
header #header_pc .header_menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1vw;
  height: 80%;
  margin-left: auto;
  margin-right: 0;
}
header #header_pc .header_menu .header_address {
  border-radius: 15px;
  background-color: #3983DD;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1vw;
  padding: 0.5vw;
  height: 100%;
}
header #header_pc .header_menu .header_address p {
  color: #fff;
}
header #header_pc .header_menu .header_address img {
  width: 1vw;
}
header #header_pc .header_menu .header_insta {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  padding: 1vw;
  background-color: #FFF0EA;
  height: 100%;
}
header #header_pc .header_menu .header_insta img {
  width: 3vw;
}
header #header_pc .header_menu .header_youtube {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  padding: 0.5vw;
  background-color: #FFF0EA;
  height: 100%;
}
header #header_pc .header_menu .header_youtube img {
  height: 100%;
}
header #header_pc .header_menu .header_tel {
  background-color: #F18C34;
  border-radius: 15px;
  padding: 0.5vw 1vw;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
header #header_pc .header_menu .header_tel a {
  text-decoration: none;
  color: #fff;
  text-align: center;
}
header #header_pc .header_menu .header_tel a h3 {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  letter-spacing: 0.2vw;
}
header #header_pc .header_menu .header_tel a h3 img {
  margin-right: 0.5vw;
  width: 1.6vw;
}
header #header_pc .header_menu .header_contact {
  background-color: #48C6B5;
  border-radius: 15px;
  padding: 0.5vw 1vw;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
header #header_pc .header_menu .header_contact a {
  text-decoration: none;
  color: #fff;
  text-align: center;
}
header #header_pc .header_menu .header_contact a h4 img {
  margin-right: 0.5vw;
  width: 1.6vw;
}

/* メニュー項目に下線用のクラスを追加するためのスタイル */
.current-page::after {
  position: absolute;
  content: "";
  width: 30%;
  height: 3px;
  bottom: -5px;
  left: 50%;
  transform: translate(-50%, 0);
  background-color: #DF1614; /* 線の色 */
}

#header_sp {
  position: fixed;
  width: 100%;
  height: 60px;
  z-index: 10000;
  background-color: #fff;
}
@media screen and (min-width: 1441px) {
  #header_sp {
    display: none;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  #header_sp {
    display: none;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #header_sp {
    height: 120px;
    display: flex;
    align-items: center;
  }
}
#header_sp .header_logo {
  background-color: #fff;
  width: 55%;
  border-radius: 0 0 30px 0;
  padding: 1vw 2vw;
}
@media screen and (max-width: 768px) {
  #header_sp .header_logo a {
    width: 100%;
  }
  #header_sp .header_logo a img {
    width: 90%;
  }
}
#header_sp {
  /*　ハンバーガーボタン　*/
}
#header_sp .hamburger {
  display: block;
  position: fixed;
  z-index: 10005;
  right: 20px;
  top: 15px;
  width: 80px;
  height: 80px;
  cursor: pointer;
  text-align: center;
  background-color: #FFACA9;
  border-radius: 5px;
}
@media screen and (max-width: 768px) {
  #header_sp .hamburger {
    right: 10px;
    top: 5px;
    width: 45px;
    height: 45px;
  }
}
#header_sp .hamburger span {
  display: block;
  position: absolute;
  width: 40px;
  height: 2px;
  left: 6px;
  background: #fff;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  #header_sp .hamburger span {
    width: 30px;
  }
}
#header_sp .hamburger p {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, 0);
  font-size: 1.8vw;
  color: #fff;
  font-family: "Josefin Sans", sans-serif;
}
@media screen and (max-width: 768px) {
  #header_sp .hamburger p {
    top: 70%;
    font-size: 3vw;
    line-height: 3vw;
  }
}
#header_sp .hamburger span:nth-child(1) {
  top: 25%;
  left: 50%;
  transform: translate(-50%, 0);
}
#header_sp .hamburger span:nth-child(2) {
  top: 40%;
  left: 50%;
  transform: translate(-50%, 0);
}
#header_sp .hamburger span:nth-child(3) {
  top: 55%;
  left: 50%;
  transform: translate(-50%, 0);
}
#header_sp {
  /* ナビ開いてる時のボタン */
}
#header_sp .hamburger.active span:nth-child(1) {
  top: 30px;
  left: 20px;
  background: #fff;
  transform: rotate(-45deg);
}
@media screen and (max-width: 768px) {
  #header_sp .hamburger.active span:nth-child(1) {
    top: 15px;
    left: 8px;
  }
}
#header_sp .hamburger.active p {
  color: #fff;
}
#header_sp .hamburger.active span:nth-child(2),
#header_sp .hamburger.active span:nth-child(3) {
  top: 30px;
  left: 20px;
  background: #fff;
  transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  #header_sp .hamburger.active span:nth-child(2),
  #header_sp .hamburger.active span:nth-child(3) {
    top: 15px;
    left: 8px;
  }
}
#header_sp nav.globalMenuSp {
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  color: #009E4D;
  background: #fff;
  text-align: center;
  width: 50%;
  height: 100vh;
  padding: 4vw;
  transform: translateX(200%);
  transition: transform 0.5s ease;
}
@media screen and (max-width: 768px) {
  #header_sp nav.globalMenuSp {
    width: 80%;
    transform: translateX(125%);
  }
}
#header_sp nav.globalMenuSp .header_logo {
  margin-top: 12vw;
  text-align: center;
  width: 100%;
  border-radius: 0 !important;
  margin-bottom: 4vw;
}
@media screen and (max-width: 768px) {
  #header_sp nav.globalMenuSp .header_logo {
    margin-top: 24vw;
  }
}
#header_sp nav.globalMenuSp .header_logo img {
  width: 100%;
}
#header_sp nav.globalMenuSp ul {
  margin: 0 auto;
  padding: 0;
  width: 100%;
}
#header_sp nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  transition: 0.4s all;
}
#header_sp nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
}
#header_sp nav.globalMenuSp ul li:hover {
  transform: scale(1.1);
}
#header_sp nav.globalMenuSp ul li a {
  display: block;
  color: #816F63;
  padding: 4vw 1vw;
  text-decoration: none;
  font-size: 1.8vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px dotted #816F63;
}
@media screen and (max-width: 768px) {
  #header_sp nav.globalMenuSp ul li a {
    font-size: 3.4vw;
    padding: 6vw 2vw;
  }
}
#header_sp nav.globalMenuSp ul li a img {
  margin-right: 1.5vw;
  width: 4vw;
}
@media screen and (max-width: 768px) {
  #header_sp nav.globalMenuSp ul li a img {
    width: 6vw;
  }
}
#header_sp nav.globalMenuSp ul li a p {
  width: 50%;
  text-align: start;
}
#header_sp nav.globalMenuSp ul li a .triangle {
  margin-left: 10vw;
  width: 2vw;
}
@media screen and (max-width: 768px) {
  #header_sp nav.globalMenuSp ul li a .triangle {
    margin-left: 20vw;
    width: 3vw;
  }
}
#header_sp {
  /* このクラスを、jQueryで付与・削除する */
}
#header_sp nav.globalMenuSp.active {
  transform: translateX(100%);
}
@media screen and (max-width: 768px) {
  #header_sp nav.globalMenuSp.active {
    transform: translateX(25%);
  }
}

#mv {
  padding-top: 100px;
  position: relative;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #mv {
    padding-top: 120px;
    margin-bottom: 60vw;
  }
}
@media screen and (max-width: 768px) {
  #mv {
    padding-top: 60px;
    margin-bottom: 82vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #mv .pc {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  #mv .pc {
    display: none !important;
  }
}
@media screen and (min-width: 1441px) {
  #mv .sp {
    display: none !important;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  #mv .sp {
    display: none !important;
  }
}
#mv .mv video {
  width: 100%;
}
#mv .mv_headline {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translate(0, -50%);
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #mv .mv_headline {
    width: 100vw;
    background-position: top;
    background-size: cover;
    left: 0;
    top: auto;
    bottom: -42vw;
    padding: 8vw 0;
    padding-bottom: 16vw;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  #mv .mv_headline {
    width: 100vw;
    background-position: top;
    background-size: cover;
    left: 0;
    top: auto;
    bottom: -50vw;
    padding: 8vw 0;
    padding-bottom: 14vw;
    text-align: center;
  }
}
#mv .mv_headline h2 {
  color: #fff;
  text-shadow: 4px 4px 10px #6A5441;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #mv .mv_headline h2 {
    color: #6A5441;
    text-shadow: none;
  }
}
@media screen and (max-width: 768px) {
  #mv .mv_headline h2 {
    color: #6A5441;
    text-shadow: none;
  }
}
#mv .mv_headline h2 span {
  font-size: 4vw;
}
#mv .mv_headline h2 span:first-child {
  color: #F9DD6C;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #mv .mv_headline h2 span:first-child {
    color: #6A5441;
  }
}
@media screen and (max-width: 768px) {
  #mv .mv_headline h2 span:first-child {
    font-size: 7vw;
    color: #6A5441;
  }
}
#mv .mv_headline h2 span:nth-child(2) {
  color: #56E7D4;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #mv .mv_headline h2 span:nth-child(2) {
    color: #6A5441;
  }
}
@media screen and (max-width: 768px) {
  #mv .mv_headline h2 span:nth-child(2) {
    font-size: 7vw;
    color: #6A5441;
  }
}
#mv .mv_headline h2 span:nth-child(4) {
  color: #73B2FF;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #mv .mv_headline h2 span:nth-child(4) {
    color: #6A5441;
  }
}
@media screen and (max-width: 768px) {
  #mv .mv_headline h2 span:nth-child(4) {
    font-size: 7vw;
    color: #6A5441;
  }
}
#mv .mv_headline h2 span:last-child {
  color: #FFACA9;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #mv .mv_headline h2 span:last-child {
    color: #6A5441;
  }
}
@media screen and (max-width: 768px) {
  #mv .mv_headline h2 span:last-child {
    font-size: 7vw;
    color: #6A5441;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #mv .mv_point {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4vw;
    width: 80%;
    margin: auto;
    margin-top: 24vw;
    position: absolute;
    bottom: -45vw;
    left: 50%;
    transform: translate(-50%, 0);
  }
}
@media screen and (max-width: 768px) {
  #mv .mv_point {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0vw;
    width: 95%;
    margin: auto;
    margin-top: 24vw;
    position: absolute;
    bottom: -70vw;
    left: 50%;
    transform: translate(-50%, 0);
  }
}
#mv .mv_point01 {
  position: absolute;
  width: 15vw;
  height: 15vw;
  background-position: center;
  background-size: cover;
  top: 50%;
  right: 16%;
  transform: translate(0, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  gap: 0.5vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #mv .mv_point01 {
    position: static;
    transform: translate(0, 0);
    width: 25vw;
    height: 25vw;
  }
}
@media screen and (max-width: 768px) {
  #mv .mv_point01 {
    position: static;
    transform: translate(0, 0);
    width: 45vw;
    height: 45vw;
  }
}
#mv .mv_point01 h3, #mv .mv_point01 h4 {
  color: #fff;
  text-align: center;
}
#mv .mv_point02 {
  position: absolute;
  width: 15vw;
  height: 15vw;
  background-position: center;
  background-size: cover;
  top: 50%;
  right: 3%;
  transform: translate(0, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  gap: 0.5vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #mv .mv_point02 {
    position: static;
    transform: translate(0, 0);
    width: 25vw;
    height: 25vw;
  }
}
@media screen and (max-width: 768px) {
  #mv .mv_point02 {
    position: static;
    transform: translate(0, 0);
    width: 45vw;
    height: 45vw;
  }
}
#mv .mv_point02 h3, #mv .mv_point02 h4 {
  color: #fff;
  text-align: center;
}
#mv .mv_menu {
  width: 100%;
  margin: auto;
  padding: 12vw 0;
  position: relative;
  top: -9vw;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #mv .mv_menu {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  #mv .mv_menu {
    display: none !important;
  }
}
#mv .mv_menu .main_menu {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
#mv .mv_menu .main_menu li {
  border-left: 1px solid #6A5441;
  padding: 0 2vw;
}
#mv .mv_menu .main_menu li:first-child {
  border: none;
}
#mv .mv_menu .main_menu li:nth-child(3) {
  position: relative;
}
#mv .mv_menu .main_menu li:nth-child(3) a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5vw;
  flex-flow: row !important;
}
#mv .mv_menu .main_menu li i {
  margin-left: 5px;
  transition: 0.3s;
}
#mv .mv_menu .main_menu li:hover i {
  transform: rotate(180deg);
}
#mv .mv_menu .main_menu li:hover .sub_menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#mv .mv_menu .main_menu li a {
  text-decoration: none;
  display: flex;
  justify-content: center;
  flex-flow: column;
  font-size: 1vw;
  color: #6A5441;
  text-align: center;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #mv .mv_menu .main_menu li a {
    font-size: 2vw;
  }
}
#mv .mv_menu .main_menu li a span {
  text-align: center;
  font-size: 0.8vw;
  color: #B79E74;
}
#mv .mv_menu .main_menu li .sub_menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 300px;
  background: #6A5441;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s;
  list-style: none;
  z-index: 100;
}
#mv .mv_menu .main_menu li .sub_menu li {
  border-bottom: 1px solid #eee;
}
#mv .mv_menu .main_menu li .sub_menu a {
  color: #fff;
  padding: 1vw 0;
}
#mv .mv_sp_scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.3s;
  pointer-events: none;
}
#mv .mv_sp_scroll.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
@media screen and (min-width: 1441px) {
  #mv .mv_sp_scroll {
    display: none !important;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  #mv .mv_sp_scroll {
    display: none !important;
  }
}
#mv .mv_sp_scroll {
  position: fixed;
  bottom: 2vw;
  left: 0;
  width: 100%;
  height: 10vw;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2vw;
}
@media screen and (max-width: 768px) {
  #mv .mv_sp_scroll {
    height: 14vw;
    gap: 0.5vw;
  }
}
#mv .mv_sp_scroll .mv_insta {
  width: 10vw;
  height: 100%;
  background-color: #FFF0EA;
  border: 4px solid #6A5441;
  border-radius: 10px;
  padding: 2vw;
}
@media screen and (max-width: 768px) {
  #mv .mv_sp_scroll .mv_insta {
    width: 14vw;
    height: 100%;
    border: 2px solid #6A5441;
  }
}
#mv .mv_sp_scroll .mv_insta img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  #mv .mv_sp_scroll .mv_insta img {
    width: 100%;
  }
}
#mv .mv_sp_scroll .mv_youtube {
  height: 100%;
  background-color: #FFF0EA;
  border: 4px solid #6A5441;
  border-radius: 10px;
  padding: 2vw;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #mv .mv_sp_scroll .mv_youtube {
    border: 2px solid #6A5441;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 29vw;
    height: 100%;
  }
}
#mv .mv_sp_scroll .mv_youtube img {
  height: 100%;
}
@media screen and (max-width: 768px) {
  #mv .mv_sp_scroll .mv_youtube img {
    width: 100%;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
#mv .mv_sp_scroll .mv_tel {
  width: 10vw;
  height: 100%;
  background-color: #F18C34;
  border-radius: 10px;
  padding: 3vw;
}
@media screen and (max-width: 768px) {
  #mv .mv_sp_scroll .mv_tel {
    width: 14vw;
    height: 100%;
    padding: 4vw;
  }
}
#mv .mv_sp_scroll .mv_tel img {
  width: 100%;
}
#mv .mv_sp_scroll .mv_contact {
  border-radius: 10px;
  height: 100%;
  background-color: #48C6B5;
  padding: 2vw;
}
@media screen and (max-width: 768px) {
  #mv .mv_sp_scroll .mv_contact {
    width: 29vw;
    padding: 2vw 0.5vw;
  }
}
#mv .mv_sp_scroll .mv_contact a {
  text-decoration: none;
  color: #fff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
}
@media screen and (max-width: 768px) {
  #mv .mv_sp_scroll .mv_contact a h4 {
    display: flex;
    justify-content: center;
    gap: 1vw;
  }
}
#mv .mv_sp_scroll .mv_contact a h4 img {
  margin-right: 1vw;
}
@media screen and (max-width: 768px) {
  #mv .mv_sp_scroll .mv_contact a h4 img {
    margin-right: 2vw;
  }
}
#mv .mv_sp_scroll .mv_arrow {
  height: 100%;
}
@media screen and (max-width: 768px) {
  #mv .mv_sp_scroll .mv_arrow {
    width: 14vw;
  }
}
#mv .mv_sp_scroll .mv_arrow img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

#body {
  position: relative;
  padding-bottom: 100px;
}
#body::before {
  content: "";
  position: absolute;
  top: -45vw;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(img/body_bg.png);
  background-size: 100% auto;
  background-repeat: repeat;
  background-position: top center;
  z-index: -10000;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  #body::before {
    top: -65vw;
  }
}

#info {
  width: 90%;
  height: 45vw;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8vw;
  margin-bottom: 18vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #info {
    flex-flow: column;
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  #info {
    width: 95%;
    flex-flow: column;
    height: auto;
    margin-bottom: 30vw;
  }
}
#info .calender {
  width: 50%;
  height: 100%;
  border: 10px solid #F18C34;
  position: relative;
  border-radius: 20px;
  padding: 4vw 2vw;
  background-color: #fff;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #info .calender {
    width: 80%;
    margin-bottom: 8vw;
  }
}
@media screen and (max-width: 768px) {
  #info .calender {
    width: 100%;
    padding: 8vw 2vw;
    margin-bottom: 16vw;
  }
}
#info .calender .calender_point01 {
  position: absolute;
  top: -5vw;
  left: -4vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #info .calender .calender_point01 {
    top: -10vw;
    left: -8vw;
  }
}
@media screen and (max-width: 768px) {
  #info .calender .calender_point01 {
    width: 20vw;
  }
  #info .calender .calender_point01 img {
    width: 100%;
  }
}
#info .calender .calender_point02 {
  position: absolute;
  bottom: -2vw;
  right: -2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #info .calender .calender_point02 {
    bottom: -7vw;
    right: -5vw;
  }
}
@media screen and (max-width: 768px) {
  #info .calender .calender_point02 {
    width: 10vw;
  }
  #info .calender .calender_point02 img {
    width: 100%;
  }
}
#info .calender h2 {
  text-align: center;
  margin-bottom: 2vw;
  color: #6A5441;
  font-weight: 400;
  font-family: "Josefin Sans", sans-serif;
}
@media screen and (max-width: 768px) {
  #info .calender h2 {
    margin-bottom: 6vw;
  }
}
#info .calender h2 span {
  color: #F18C34;
}
#info .calender > p {
  display: inline-block;
  padding: 1vw 2vw;
  background-color: #FFD286;
  color: #6A5441;
  border: 1px solid #6A5441;
  text-align: center;
}
#info .calender table {
  border-collapse: collapse !important;
  margin-bottom: 1vw;
}
#info .calender table td {
  border: 1px solid #6A5441;
}
#info .calender table .simcal-day > div {
  min-height: 0 !important;
  height: auto !important;
  padding: 0 !important;
}
#info .calender table .simcal-no-events {
  display: none !important;
}
#info .calender table .simcal-nav {
  padding: 1vw 2vw !important;
  color: #fff;
  background-color: #F18C34 !important;
  font-size: 1vw;
}
#info .calender table .simcal-week-day {
  padding: 1vw 2vw !important;
  color: #6A5441;
  background-color: #F9DD6C !important;
  font-size: 1vw;
  border: 1px solid #6A5441;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #info .calender table .simcal-week-day {
    font-size: 1.8vw;
  }
}
@media screen and (max-width: 768px) {
  #info .calender table .simcal-week-day {
    font-size: 3.4vw;
  }
}
#info .calender .simcal-default-calendar-grid .simcal-day-number {
  padding: 1vw 2vw !important;
  font-size: 1vw;
  background-color: #fff !important;
  color: #6A5441 !important;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #info .calender .simcal-default-calendar-grid .simcal-day-number {
    font-size: 1.8vw;
  }
}
@media screen and (max-width: 768px) {
  #info .calender .simcal-default-calendar-grid .simcal-day-number {
    font-size: 3.4vw;
  }
}
#info .info {
  width: 50%;
  height: 100%;
  border: 10px solid #48C6B5;
  position: relative;
  border-radius: 20px;
  padding: 4vw 2vw;
  background-color: #fff;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #info .info {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  #info .info {
    width: 100%;
    padding: 8vw 2vw;
  }
}
#info .info .info_point01 {
  position: absolute;
  top: -10vw;
  right: -4vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #info .info .info_point01 {
    width: 24vw;
  }
  #info .info .info_point01 img {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #info .info .info_point01 {
    width: 35vw;
    top: -16vw;
  }
  #info .info .info_point01 img {
    width: 100%;
  }
}
#info .info h2 {
  text-align: center;
  margin-bottom: 2vw;
  color: #6A5441;
  font-weight: 400;
  font-family: "Josefin Sans", sans-serif;
}
@media screen and (max-width: 768px) {
  #info .info h2 {
    margin-bottom: 6vw;
  }
}
#info .info h2 span {
  color: #48C6B5;
}
#info .info .time_contents {
  width: 100%;
  border-radius: 10px;
  border: none;
  background-color: #48C6B5;
  padding: 1vw;
  margin-bottom: 2vw;
}
#info .info .time_contents > p {
  color: #fff;
}
#info .info .time_contents div {
  display: flex;
  justify-content: center;
  align-items: center;
}
#info .info .time_contents div:first-child {
  border-radius: 10px 10px 0 0;
  border-bottom: 2px solid #fff;
}
#info .info .time_contents div:first-child p {
  color: #fff;
}
#info .info .time_contents div:first-child p:first-child {
  border-radius: 10px 0 0 0;
}
#info .info .time_contents div:first-child p:last-child {
  border-radius: 0 10px 0 0;
}
#info .info .time_contents div:nth-child(2) {
  border-bottom: 2px solid #fff;
}
#info .info .time_contents div:nth-child(2) p {
  color: #fff;
}
#info .info .time_contents div:nth-child(2) p:nth-child(2), #info .info .time_contents div:nth-child(2) p:nth-child(3), #info .info .time_contents div:nth-child(2) p:nth-child(4), #info .info .time_contents div:nth-child(2) p:nth-child(5), #info .info .time_contents div:nth-child(2) p:nth-child(6) {
  color: #fff;
  font-size: 1.6vw;
}
@media screen and (max-width: 768px) {
  #info .info .time_contents div:nth-child(2) p:nth-child(2), #info .info .time_contents div:nth-child(2) p:nth-child(3), #info .info .time_contents div:nth-child(2) p:nth-child(4), #info .info .time_contents div:nth-child(2) p:nth-child(5), #info .info .time_contents div:nth-child(2) p:nth-child(6) {
    font-size: 3vw;
  }
}
#info .info .time_contents div:nth-child(3) {
  border-bottom: 2px solid #fff;
  margin-bottom: 1vw;
}
@media screen and (max-width: 768px) {
  #info .info .time_contents div:nth-child(3) {
    margin-bottom: 4vw;
  }
}
#info .info .time_contents div:nth-child(3) p {
  color: #fff;
}
#info .info .time_contents div:nth-child(3) p:nth-child(7) {
  color: #fff;
  font-size: 1.6vw;
}
@media screen and (max-width: 768px) {
  #info .info .time_contents div:nth-child(3) p:nth-child(7) {
    font-size: 3vw;
  }
}
#info .info .time_contents div:nth-child(3) p:first-child {
  border-radius: 0 0 0 10px;
}
#info .info .time_contents div:nth-child(3) p:last-child {
  border-radius: 0 0 10px 0;
}
#info .info .time_contents div p {
  padding: 1vw;
  font-size: 1vw;
  text-align: center;
  height: 4vw;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #info .info .time_contents div p {
    font-size: 1.8vw;
    height: 6vw;
  }
}
@media screen and (max-width: 768px) {
  #info .info .time_contents div p {
    font-size: 3.4vw;
    height: 12vw;
  }
}
#info .info .time_contents div p:first-child {
  width: 20%;
}
#info .info .time_contents div p:not(:first-child) {
  width: 10%;
}
#info .info .info_contents {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2vw;
  width: 100%;
  background-color: #F9F2EF;
  border-radius: 20px;
  padding: 2vw;
}
@media screen and (max-width: 768px) {
  #info .info .info_contents {
    border-radius: 10px;
  }
}
#info .info .info_contents .info_icon {
  width: 4vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #info .info .info_contents .info_icon {
    width: 5vw;
  }
}
@media screen and (max-width: 768px) {
  #info .info .info_contents .info_icon {
    width: 8vw;
  }
}
#info .info .info_contents .info_icon img {
  width: 100%;
}
#info .info .info_contents .info_contents_text p {
  color: #6A5441;
  font-weight: 600;
}
#info .info .info_contents .info_contents_text p span {
  color: #56E7D4;
  font-size: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #info .info .info_contents .info_contents_text p span {
    font-size: 3vw;
  }
}
@media screen and (max-width: 768px) {
  #info .info .info_contents .info_contents_text p span {
    font-size: 5vw;
  }
}

#top_concept {
  width: 90%;
  margin: auto;
  margin-bottom: 16vw;
}
@media screen and (max-width: 768px) {
  #top_concept {
    margin-bottom: 24vw;
  }
}
@media screen and (max-width: 768px) {
  #top_concept .pc {
    display: none !important;
  }
}
@media screen and (min-width: 1441px) {
  #top_concept .sp {
    display: none !important;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  #top_concept .sp {
    display: none !important;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_concept .sp {
    display: none !important;
  }
}
#top_concept .top_concept {
  position: relative;
}
#top_concept .top_concept .top_concept_contents {
  width: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
  padding: 0vw;
  padding-top: 6vw;
  padding-bottom: 6vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_concept .top_concept .top_concept_contents {
    padding-top: 0;
  }
}
@media screen and (max-width: 768px) {
  #top_concept .top_concept .top_concept_contents {
    padding-top: 16vw;
    padding-bottom: 15vw;
  }
}
#top_concept .top_concept .top_concept_contents::after {
  position: absolute;
  content: "";
  z-index: -50;
  top: 2vw;
  left: 2vw;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
}
#top_concept .top_concept .top_concept_contents .concept_title {
  position: relative;
  display: inline-block;
  top: -9vw;
  left: 11vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_concept .top_concept .top_concept_contents .concept_title {
    top: -3vw;
  }
}
@media screen and (max-width: 768px) {
  #top_concept .top_concept .top_concept_contents .concept_title {
    top: -20vw;
    left: 13vw;
  }
}
#top_concept .top_concept .top_concept_contents .concept_title h2 {
  font-size: 7.5vw;
  letter-spacing: 0.2vw;
  font-family: "Josefin Sans", sans-serif;
  color: #6A5441;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  #top_concept .top_concept .top_concept_contents .concept_title h2 {
    font-size: 10.5vw;
  }
}
#top_concept .top_concept .top_concept_contents .concept_title .top_concept_point01 {
  position: absolute;
  top: -8vw;
  right: -8vw;
  z-index: -30;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_concept .top_concept .top_concept_contents .concept_title .top_concept_point01 {
    top: -11vw;
    right: -14vw;
  }
}
@media screen and (max-width: 768px) {
  #top_concept .top_concept .top_concept_contents .concept_title .top_concept_point01 {
    text-align: end;
    top: -16vw;
    right: -13vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_concept .top_concept .top_concept_contents .concept_title .top_concept_point01 img {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  #top_concept .top_concept .top_concept_contents .concept_title .top_concept_point01 img {
    width: 50%;
  }
}
#top_concept .top_concept .top_concept_contents .concept_title .top_concept_point02 {
  position: absolute;
  bottom: -8vw;
  left: -8vw;
  z-index: -30;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_concept .top_concept .top_concept_contents .concept_title .top_concept_point02 {
    bottom: -10vw;
    left: -10vw;
  }
}
@media screen and (max-width: 768px) {
  #top_concept .top_concept .top_concept_contents .concept_title .top_concept_point02 {
    text-align: start;
    bottom: -14vw;
    left: -12vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_concept .top_concept .top_concept_contents .concept_title .top_concept_point02 img {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  #top_concept .top_concept .top_concept_contents .concept_title .top_concept_point02 img {
    width: 50%;
  }
}
#top_concept .top_concept .top_concept_contents .concept_title .top_concept_point03 {
  position: absolute;
  top: -8vw;
  left: -8vw;
  z-index: -40;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_concept .top_concept .top_concept_contents .concept_title .top_concept_point03 img {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  #top_concept .top_concept .top_concept_contents .concept_title .top_concept_point03 img {
    width: 50%;
  }
}
#top_concept .top_concept .top_concept_contents .top_concept_flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4vw;
  width: 100%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  #top_concept .top_concept .top_concept_contents .top_concept_flex {
    flex-flow: column;
  }
}
#top_concept .top_concept .top_concept_contents .top_concept_flex .top_concept_image {
  width: 50%;
  padding: 4vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_concept .top_concept .top_concept_contents .top_concept_flex .top_concept_image {
    width: 35%;
    padding: 2vw;
  }
}
@media screen and (max-width: 768px) {
  #top_concept .top_concept .top_concept_contents .top_concept_flex .top_concept_image {
    width: 100%;
  }
}
#top_concept .top_concept .top_concept_contents .top_concept_flex .top_concept_image img {
  width: 100%;
}
#top_concept .top_concept .top_concept_contents .top_concept_flex .top_concept_text {
  width: 50%;
  padding: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_concept .top_concept .top_concept_contents .top_concept_flex .top_concept_text {
    width: 65%;
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  #top_concept .top_concept .top_concept_contents .top_concept_flex .top_concept_text {
    width: 100%;
    padding: 2vw 3vw;
  }
}
#top_concept .top_concept .top_concept_contents .top_concept_flex .top_concept_text h2 {
  color: #6A5441;
  margin-bottom: 2vw;
  font-weight: 600;
}
#top_concept .top_concept .top_concept_contents .top_concept_flex .top_concept_text p {
  color: #6A5441;
}
#top_concept .top_concept .top_concept_contents .top_concept_point04 {
  position: absolute;
  top: 25%;
  left: 50%;
  z-index: -100;
}
@media screen and (max-width: 768px) {
  #top_concept .top_concept .top_concept_contents .top_concept_point04 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, 0);
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_concept .top_concept .top_concept_contents .top_concept_point04 img {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  #top_concept .top_concept .top_concept_contents .top_concept_point04 img {
    width: 110%;
  }
}
#top_concept .top_concept .top_concept_contents .top_concept_point05 {
  position: absolute;
  bottom: 0%;
  left: 0%;
  z-index: 30;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_concept .top_concept .top_concept_contents .top_concept_point05 img {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  #top_concept .top_concept .top_concept_contents .top_concept_point05 {
    bottom: 52%;
    left: 1vw;
  }
  #top_concept .top_concept .top_concept_contents .top_concept_point05 img {
    width: 50%;
  }
}
#top_concept .top_concept .top_concept_contents .top_concept_point06 {
  position: absolute;
  top: 0%;
  right: 2.5vw;
  z-index: 30;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_concept .top_concept .top_concept_contents .top_concept_point06 {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  #top_concept .top_concept .top_concept_contents .top_concept_point06 {
    display: none;
  }
}
#top_concept .top_concept .top_concept_contents .top_concept_point07 {
  position: absolute;
  top: 8%;
  right: 3.5vw;
  z-index: 30;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_concept .top_concept .top_concept_contents .top_concept_point07 {
    top: -10vw;
    right: -2vw;
    text-align: end;
  }
  #top_concept .top_concept .top_concept_contents .top_concept_point07 img {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  #top_concept .top_concept .top_concept_contents .top_concept_point07 {
    text-align: end;
    right: 1vw;
  }
  #top_concept .top_concept .top_concept_contents .top_concept_point07 img {
    width: 50%;
  }
}

#reason {
  margin-bottom: 8vw;
}
@media screen and (max-width: 768px) {
  #reason {
    margin-bottom: 16vw;
  }
}
@media screen and (max-width: 768px) {
  #reason .pc {
    display: none !important;
  }
}
@media screen and (min-width: 1441px) {
  #reason .sp {
    display: none !important;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  #reason .sp {
    display: none !important;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #reason .sp {
    display: none !important;
  }
}
#reason .reason .reason_headline {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4vw;
  width: 90%;
  margin: auto;
}
#reason .reason .reason_headline .reason_headline_left {
  width: 60%;
  position: relative;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  padding: 6vw 0;
}
@media screen and (max-width: 768px) {
  #reason .reason .reason_headline .reason_headline_left {
    width: 100%;
    padding: 13vw 0;
  }
}
#reason .reason .reason_headline .reason_headline_left h2 {
  color: #6A5441;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  letter-spacing: 0.3vw;
  width: 60%;
  margin: auto;
}
#reason .reason .reason_headline .reason_headline_left h3 {
  color: #6A5441;
  text-align: center;
}
#reason .reason .reason_headline .reason_headline_left h3 img {
  width: 6vw;
}
@media screen and (max-width: 768px) {
  #reason .reason .reason_headline .reason_headline_left h3 img {
    width: 10vw;
  }
}
#reason .reason .reason_headline .reason_headline_left h3 span {
  font-size: 3vw;
}
@media screen and (max-width: 768px) {
  #reason .reason .reason_headline .reason_headline_left h3 span {
    font-size: 8vw;
  }
}
#reason .reason .reason_headline .reason_headline_left .reason_headline_point01 {
  position: absolute;
  top: 3vw;
  left: 0;
  width: 15%;
}
#reason .reason .reason_headline .reason_headline_left .reason_headline_point01 img {
  width: 100%;
}
#reason .reason .reason_headline .reason_headline_left .reason_headline_point02 {
  position: absolute;
  top: 2vw;
  right: 2vw;
  width: 23%;
}
@media screen and (max-width: 768px) {
  #reason .reason .reason_headline .reason_headline_left .reason_headline_point02 {
    width: 30%;
  }
}
#reason .reason .reason_headline .reason_headline_left .reason_headline_point02 img {
  width: 100%;
}
#reason .reason .reason_headline .reason_headline_left .reason_headline_point03 {
  position: absolute;
  bottom: 2vw;
  right: 2vw;
  width: 13%;
}
#reason .reason .reason_headline .reason_headline_left .reason_headline_point03 img {
  width: 100%;
}
#reason .reason .reason_headline .reason_headline_right {
  width: 40%;
}
@media screen and (max-width: 768px) {
  #reason .reason .reason_headline .reason_headline_right {
    display: none;
  }
}
#reason .reason .reason_headline .reason_headline_right img {
  width: 100%;
}
#reason .reason .reason01 {
  background-position: top;
  padding: 8vw 0;
  position: relative;
  background-repeat: no-repeat;
  padding-bottom: 6vw;
  background-size: cover;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #reason .reason .reason01 {
    padding-top: 12vw;
  }
}
@media screen and (max-width: 768px) {
  #reason .reason .reason01 {
    padding: 24vw 0;
    padding-bottom: 12vw;
  }
}
#reason .reason .reason01 .reason01_contents {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2vw;
  width: 80%;
  margin: auto;
  position: relative;
  z-index: 100;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #reason .reason .reason01 .reason01_contents {
    width: 95%;
  }
}
@media screen and (max-width: 768px) {
  #reason .reason .reason01 .reason01_contents {
    width: 95%;
    flex-flow: column;
  }
}
#reason .reason .reason01 .reason01_contents .reason01_left {
  width: 60%;
}
@media screen and (max-width: 768px) {
  #reason .reason .reason01 .reason01_contents .reason01_left {
    width: 100%;
    margin-bottom: 8vw;
  }
}
#reason .reason .reason01 .reason01_contents .reason01_left .reason01_top {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2vw;
  margin-bottom: 2vw;
}
#reason .reason .reason01 .reason01_contents .reason01_left .reason01_top .reason_01_number {
  width: 30%;
  padding: 4vw 0;
  background-repeat: no-repeat;
  text-align: center;
  background-size: contain;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #reason .reason .reason01 .reason01_contents .reason01_left .reason01_top .reason_01_number {
    width: 50%;
    padding: 9vw 0;
  }
}
@media screen and (max-width: 768px) {
  #reason .reason .reason01 .reason01_contents .reason01_left .reason01_top .reason_01_number {
    padding: 10vw 0;
    background-size: contain;
  }
}
#reason .reason .reason01 .reason01_contents .reason01_left .reason01_top .reason_01_number h5 {
  margin-bottom: 0.5vw;
}
@media screen and (max-width: 768px) {
  #reason .reason .reason01 .reason01_contents .reason01_left .reason01_top .reason_01_number h5 {
    margin-bottom: 1.5vw;
  }
}
#reason .reason .reason01 .reason01_contents .reason01_left .reason01_top .reason_01_number img {
  width: 4.5vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #reason .reason .reason01 .reason01_contents .reason01_left .reason01_top .reason_01_number img {
    width: 6.5vw;
  }
}
@media screen and (max-width: 768px) {
  #reason .reason .reason01 .reason01_contents .reason01_left .reason01_top .reason_01_number img {
    width: 7.5vw;
  }
}
#reason .reason .reason01 .reason01_contents .reason01_left .reason01_top .reason_text {
  width: 70%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #reason .reason .reason01 .reason01_contents .reason01_left .reason01_top .reason_text {
    width: 50%;
  }
}
#reason .reason .reason01 .reason01_contents .reason01_left .reason01_top .reason_text h3 {
  margin-bottom: 1vw;
  color: #6A5441;
}
@media screen and (max-width: 768px) {
  #reason .reason .reason01 .reason01_contents .reason01_left .reason01_top .reason_text h3 {
    margin-bottom: 3vw;
  }
}
#reason .reason .reason01 .reason01_contents .reason01_left .reason01_top .reason_text p {
  color: #6A5441;
}
#reason .reason .reason01 .reason01_contents .reason01_left .reason01_bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2vw;
}
#reason .reason .reason01 .reason01_contents .reason01_left .reason01_bottom img {
  width: 30%;
}
#reason .reason .reason01 .reason01_contents .reason01_right {
  width: 40%;
}
@media screen and (max-width: 768px) {
  #reason .reason .reason01 .reason01_contents .reason01_right {
    width: 80%;
  }
}
#reason .reason .reason01 .reason01_contents .reason01_right img {
  width: 100%;
}
#reason .reason .reason01 .reason01_point01 {
  position: absolute;
  top: 0;
  left: 0;
  width: 15%;
}
@media screen and (max-width: 768px) {
  #reason .reason .reason01 .reason01_point01 {
    width: 30%;
  }
}
#reason .reason .reason01 .reason01_point01 img {
  width: 100%;
}
#reason .reason .reason01 .reason01_point02 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -40;
  width: 30%;
}
@media screen and (max-width: 768px) {
  #reason .reason .reason01 .reason01_point02 {
    width: 70%;
  }
}
#reason .reason .reason01 .reason01_point02 img {
  width: 100%;
}
#reason .reason .reason01 .reason01_point03 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 10%;
}
@media screen and (max-width: 768px) {
  #reason .reason .reason01 .reason01_point03 {
    width: 25%;
  }
}
#reason .reason .reason01 .reason01_point03 img {
  width: 100%;
}
#reason .reason .reason02 {
  background-position: top;
  padding: 8vw 0;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #reason .reason .reason02 {
    padding-top: 12vw;
  }
}
@media screen and (max-width: 768px) {
  #reason .reason .reason02 {
    padding: 24vw 0;
    padding-bottom: 12vw;
  }
}
#reason .reason .reason02 .reason02_contents {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2vw;
  width: 80%;
  margin: auto;
  position: relative;
  flex-flow: row-reverse;
  z-index: 100;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #reason .reason .reason02 .reason02_contents {
    width: 95%;
  }
}
@media screen and (max-width: 768px) {
  #reason .reason .reason02 .reason02_contents {
    width: 95%;
    flex-flow: column-reverse;
  }
}
#reason .reason .reason02 .reason02_contents .reason02_left {
  width: 50%;
}
@media screen and (max-width: 768px) {
  #reason .reason .reason02 .reason02_contents .reason02_left {
    width: 100%;
    margin-bottom: 8vw;
  }
}
#reason .reason .reason02 .reason02_contents .reason02_left .reason02_top {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  margin-bottom: 2vw;
}
@media screen and (max-width: 768px) {
  #reason .reason .reason02 .reason02_contents .reason02_left .reason02_top {
    gap: 4vw;
  }
}
#reason .reason .reason02 .reason02_contents .reason02_left .reason02_top .reason_02_number {
  width: 35%;
  padding: 5vw 0;
  background-repeat: no-repeat;
  text-align: center;
  background-size: contain;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #reason .reason .reason02 .reason02_contents .reason02_left .reason02_top .reason_02_number {
    width: 50%;
    padding: 9vw 0;
  }
}
@media screen and (max-width: 768px) {
  #reason .reason .reason02 .reason02_contents .reason02_left .reason02_top .reason_02_number {
    padding: 10vw 0;
    background-size: contain;
  }
}
#reason .reason .reason02 .reason02_contents .reason02_left .reason02_top .reason_02_number h5 {
  margin-bottom: 0.5vw;
}
@media screen and (max-width: 768px) {
  #reason .reason .reason02 .reason02_contents .reason02_left .reason02_top .reason_02_number h5 {
    margin-bottom: 1.5vw;
  }
}
#reason .reason .reason02 .reason02_contents .reason02_left .reason02_top .reason_02_number img {
  width: 4.5vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #reason .reason .reason02 .reason02_contents .reason02_left .reason02_top .reason_02_number img {
    width: 6.5vw;
  }
}
@media screen and (max-width: 768px) {
  #reason .reason .reason02 .reason02_contents .reason02_left .reason02_top .reason_02_number img {
    width: 7.5vw;
  }
}
#reason .reason .reason02 .reason02_contents .reason02_left .reason02_top .reason_text {
  width: 70%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #reason .reason .reason02 .reason02_contents .reason02_left .reason02_top .reason_text {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #reason .reason .reason02 .reason02_contents .reason02_left .reason02_top .reason_text {
    width: 100%;
  }
}
#reason .reason .reason02 .reason02_contents .reason02_left .reason02_top .reason_text h3 {
  margin-bottom: 1vw;
  color: #6A5441;
}
@media screen and (max-width: 768px) {
  #reason .reason .reason02 .reason02_contents .reason02_left .reason02_top .reason_text h3 {
    margin-bottom: 3vw;
    text-align: center;
  }
}
#reason .reason .reason02 .reason02_contents .reason02_left .reason02_top .reason_text p {
  color: #6A5441;
}
#reason .reason .reason02 .reason02_contents .reason02_left .reason02_bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2vw;
}
#reason .reason .reason02 .reason02_contents .reason02_left .reason02_bottom img {
  width: 30%;
}
#reason .reason .reason02 .reason02_contents .reason02_right {
  width: 40%;
}
@media screen and (max-width: 768px) {
  #reason .reason .reason02 .reason02_contents .reason02_right {
    width: 80%;
  }
}
#reason .reason .reason02 .reason02_contents .reason02_right img {
  width: 100%;
}
#reason .reason .reason02 .reason02_point01 {
  position: absolute;
  top: 2%;
  left: 0;
  width: 25%;
  z-index: 110;
}
@media screen and (max-width: 768px) {
  #reason .reason .reason02 .reason02_point01 {
    width: 30%;
  }
}
#reason .reason .reason02 .reason02_point01 img {
  width: 100%;
}
#reason .reason .reason02 .reason02_point02 {
  position: absolute;
  bottom: 2%;
  left: 2%;
  z-index: 40;
  width: 20%;
}
@media screen and (max-width: 768px) {
  #reason .reason .reason02 .reason02_point02 {
    width: 25%;
    bottom: 45%;
  }
}
#reason .reason .reason02 .reason02_point02 img {
  width: 100%;
}
#reason .reason .reason02 .reason02_point03 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30%;
}
@media screen and (max-width: 768px) {
  #reason .reason .reason02 .reason02_point03 {
    width: 70%;
    left: 42%;
  }
}
#reason .reason .reason02 .reason02_point03 img {
  width: 100%;
}
#reason .reason .reason02 .reason02_point04 {
  position: absolute;
  top: 5%;
  right: 3%;
  width: 25%;
}
@media screen and (max-width: 768px) {
  #reason .reason .reason02 .reason02_point04 {
    width: 40%;
    top: 35%;
  }
}
#reason .reason .reason02 .reason02_point04 img {
  width: 100%;
}
#reason .reason .reason_flex {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #reason .reason .reason_flex {
    flex-flow: column;
  }
}
#reason .reason .reason_flex .reason03 {
  width: 50%;
  background-repeat: no-repeat;
  position: relative;
  padding: 8vw 0;
  background-size: cover;
  background-position: top;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #reason .reason .reason_flex .reason03 {
    padding: 24vw 0;
  }
}
@media screen and (max-width: 768px) {
  #reason .reason .reason_flex .reason03 {
    width: 100%;
    padding-bottom: 45vw;
  }
}
#reason .reason .reason_flex .reason03 .reason_top {
  width: 80%;
  margin: auto;
  text-align: end;
  position: relative;
  margin-bottom: 8vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #reason .reason .reason_flex .reason03 .reason_top {
    margin-bottom: 20vw;
  }
}
@media screen and (max-width: 768px) {
  #reason .reason .reason_flex .reason03 .reason_top {
    text-align: center;
  }
}
#reason .reason .reason_flex .reason03 .reason_top img {
  width: 80%;
}
#reason .reason .reason_flex .reason03 .reason_top .reason_03_number {
  width: 35%;
  padding: 5vw 0;
  background-repeat: no-repeat;
  text-align: center;
  background-size: contain;
  position: absolute;
  top: 70%;
  left: 60%;
  transform: translate(-50%, 0);
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #reason .reason .reason_flex .reason03 .reason_top .reason_03_number {
    width: 60%;
    padding: 9vw 0;
  }
}
@media screen and (max-width: 768px) {
  #reason .reason .reason_flex .reason03 .reason_top .reason_03_number {
    position: static;
    margin: auto;
    transform: translate(0, 0);
    padding: 10vw 0;
    background-size: contain;
  }
}
#reason .reason .reason_flex .reason03 .reason_top .reason_03_number h5 {
  margin-bottom: 0.5vw;
}
@media screen and (max-width: 768px) {
  #reason .reason .reason_flex .reason03 .reason_top .reason_03_number h5 {
    margin-bottom: 1.5vw;
  }
}
#reason .reason .reason_flex .reason03 .reason_top .reason_03_number img {
  width: 4.5vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #reason .reason .reason_flex .reason03 .reason_top .reason_03_number img {
    width: 6.5vw;
  }
}
@media screen and (max-width: 768px) {
  #reason .reason .reason_flex .reason03 .reason_top .reason_03_number img {
    width: 7.5vw;
  }
}
#reason .reason .reason_flex .reason03 .reason_text {
  width: 70%;
  margin: auto;
  padding-left: 8vw;
  position: relative;
  z-index: 10;
  height: 18vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #reason .reason .reason_flex .reason03 .reason_text {
    width: 90%;
    padding-left: 0;
  }
}
@media screen and (max-width: 768px) {
  #reason .reason .reason_flex .reason03 .reason_text {
    width: 90%;
    padding-left: 0;
  }
}
#reason .reason .reason_flex .reason03 .reason_text h3 {
  margin-bottom: 3vw;
  color: #6A5441;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #reason .reason .reason_flex .reason03 .reason_text h3 {
    margin-bottom: 3vw;
    text-align: center;
  }
}
#reason .reason .reason_flex .reason03 .reason_text p {
  color: #6A5441;
}
#reason .reason .reason_flex .reason03 .reason03_point01 {
  position: absolute;
  top: 50%;
  left: 5%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #reason .reason .reason_flex .reason03 .reason03_point01 {
    width: 25%;
  }
  #reason .reason .reason_flex .reason03 .reason03_point01 img {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #reason .reason .reason_flex .reason03 .reason03_point01 {
    width: 25%;
    top: 30%;
  }
  #reason .reason .reason_flex .reason03 .reason03_point01 img {
    width: 100%;
  }
}
#reason .reason .reason_flex .reason03 .reason03_point02 {
  position: absolute;
  top: 55%;
  left: 0;
  z-index: -10;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #reason .reason .reason_flex .reason03 .reason03_point02 {
    width: 40%;
  }
  #reason .reason .reason_flex .reason03 .reason03_point02 img {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #reason .reason .reason_flex .reason03 .reason03_point02 {
    top: 40%;
    width: 60%;
  }
  #reason .reason .reason_flex .reason03 .reason03_point02 img {
    width: 100%;
  }
}
#reason .reason .reason_flex .reason03 .reason03_point03 {
  position: absolute;
  bottom: 1vw;
  right: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #reason .reason .reason_flex .reason03 .reason03_point03 {
    width: 25%;
  }
  #reason .reason .reason_flex .reason03 .reason03_point03 img {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #reason .reason .reason_flex .reason03 .reason03_point03 {
    display: none;
  }
}
#reason .reason .reason_flex .reason04 {
  width: 50%;
  background-repeat: no-repeat;
  position: relative;
  padding: 8vw 0;
  background-size: cover;
  background-position: top;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #reason .reason .reason_flex .reason04 {
    padding: 24vw 0;
  }
}
@media screen and (max-width: 768px) {
  #reason .reason .reason_flex .reason04 {
    width: 100%;
    padding-bottom: 30vw;
  }
}
#reason .reason .reason_flex .reason04 .reason_top {
  width: 80%;
  margin: auto;
  text-align: start;
  position: relative;
  margin-bottom: 8vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #reason .reason .reason_flex .reason04 .reason_top {
    margin-bottom: 20vw;
  }
}
@media screen and (max-width: 768px) {
  #reason .reason .reason_flex .reason04 .reason_top {
    text-align: center;
  }
}
#reason .reason .reason_flex .reason04 .reason_top img {
  width: 80%;
}
#reason .reason .reason_flex .reason04 .reason_top .reason_04_number {
  width: 35%;
  padding: 5vw 0;
  background-repeat: no-repeat;
  text-align: center;
  background-size: contain;
  position: absolute;
  top: 70%;
  left: 60%;
  transform: translate(-50%, 0);
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #reason .reason .reason_flex .reason04 .reason_top .reason_04_number {
    width: 60%;
    padding: 9vw 0;
  }
}
@media screen and (max-width: 768px) {
  #reason .reason .reason_flex .reason04 .reason_top .reason_04_number {
    position: static;
    margin: auto;
    transform: translate(0, 0);
    padding: 10vw 0;
    background-size: contain;
  }
}
#reason .reason .reason_flex .reason04 .reason_top .reason_04_number h5 {
  margin-bottom: 0.5vw;
}
@media screen and (max-width: 768px) {
  #reason .reason .reason_flex .reason04 .reason_top .reason_04_number h5 {
    margin-bottom: 1.5vw;
  }
}
#reason .reason .reason_flex .reason04 .reason_top .reason_04_number img {
  width: 4.5vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #reason .reason .reason_flex .reason04 .reason_top .reason_04_number img {
    width: 6.5vw;
  }
}
@media screen and (max-width: 768px) {
  #reason .reason .reason_flex .reason04 .reason_top .reason_04_number img {
    width: 7.5vw;
  }
}
#reason .reason .reason_flex .reason04 .reason_text {
  width: 70%;
  margin: auto;
  padding-right: 8vw;
  position: relative;
  z-index: 10;
  height: 18vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #reason .reason .reason_flex .reason04 .reason_text {
    width: 90%;
    padding-left: 0;
  }
}
@media screen and (max-width: 768px) {
  #reason .reason .reason_flex .reason04 .reason_text {
    width: 90%;
    padding-left: 0;
  }
}
#reason .reason .reason_flex .reason04 .reason_text h3 {
  margin-bottom: 3vw;
  color: #6A5441;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #reason .reason .reason_flex .reason04 .reason_text h3 {
    margin-bottom: 3vw;
    text-align: center;
  }
}
#reason .reason .reason_flex .reason04 .reason_text p {
  color: #6A5441;
}
#reason .reason .reason_flex .reason04 .reason04_point01 {
  position: absolute;
  top: 50%;
  right: 5%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #reason .reason .reason_flex .reason04 .reason04_point01 {
    width: 25%;
  }
  #reason .reason .reason_flex .reason04 .reason04_point01 img {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #reason .reason .reason_flex .reason04 .reason04_point01 {
    width: 25%;
    top: 30%;
  }
  #reason .reason .reason_flex .reason04 .reason04_point01 img {
    width: 100%;
  }
}
#reason .reason .reason_flex .reason04 .reason04_point02 {
  position: absolute;
  top: 55%;
  right: 0;
  z-index: -10;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #reason .reason .reason_flex .reason04 .reason04_point02 {
    width: 40%;
  }
  #reason .reason .reason_flex .reason04 .reason04_point02 img {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #reason .reason .reason_flex .reason04 .reason04_point02 {
    top: 40%;
    width: 60%;
  }
  #reason .reason .reason_flex .reason04 .reason04_point02 img {
    width: 100%;
  }
}
#reason .reason .reason_flex .reason04 .reason04_point03 {
  position: absolute;
  bottom: 1vw;
  left: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #reason .reason .reason_flex .reason04 .reason04_point03 {
    width: 25%;
  }
  #reason .reason .reason_flex .reason04 .reason04_point03 img {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #reason .reason .reason_flex .reason04 .reason04_point03 {
    display: none;
  }
}

#loop {
  overflow-x: hidden;
  margin-bottom: 8vw;
}
@media screen and (max-width: 768px) {
  #loop {
    margin-bottom: 16vw;
  }
}
#loop .loop .loop_contents {
  margin-bottom: 2vw;
}
@media screen and (max-width: 768px) {
  #loop .loop .loop_contents {
    margin-bottom: 8vw;
  }
}
#loop .loop .loop_contents img {
  padding: 1vw;
}
#loop .loop .loop_btn {
  text-align: center;
  width: 20%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  #loop .loop .loop_btn {
    width: 80%;
  }
}
#loop .loop .loop_btn a {
  text-align: center;
  text-decoration: none;
}
#loop .loop .loop_btn a button {
  padding: 1.5vw;
  background-color: #6A5441;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1vw;
  border: none;
  width: 100%;
  border-radius: 50px;
  transition: all 0.4s;
}
@media screen and (max-width: 768px) {
  #loop .loop .loop_btn a button {
    padding: 3vw;
    gap: 3vw;
  }
}
#loop .loop .loop_btn a button:hover {
  opacity: 0.8;
}
#loop .loop .loop_btn a button img {
  width: 1.2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #loop .loop .loop_btn a button img {
    width: 2vw;
  }
}
@media screen and (max-width: 768px) {
  #loop .loop .loop_btn a button img {
    width: 4vw;
  }
}

#for_kids .for_kids {
  background-position: top;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  #for_kids .for_kids {
    position: relative;
  }
}
#for_kids .for_kids .for_kids_headline {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2vw;
}
@media screen and (max-width: 768px) {
  #for_kids .for_kids .for_kids_headline {
    flex-flow: column;
    padding-top: 95vw;
  }
}
#for_kids .for_kids .for_kids_headline h2 {
  text-align: center;
  color: #6A5441;
  font-size: 5vw;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  #for_kids .for_kids .for_kids_headline h2 {
    font-size: 10vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #for_kids .for_kids .for_kids_headline .for_kids_point01, #for_kids .for_kids .for_kids_headline .for_kids_point02 {
    width: 25%;
  }
  #for_kids .for_kids .for_kids_headline .for_kids_point01 img, #for_kids .for_kids .for_kids_headline .for_kids_point02 img {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #for_kids .for_kids .for_kids_headline .for_kids_point01, #for_kids .for_kids .for_kids_headline .for_kids_point02 {
    width: 45%;
    position: absolute;
    top: 0;
  }
  #for_kids .for_kids .for_kids_headline .for_kids_point01 img, #for_kids .for_kids .for_kids_headline .for_kids_point02 img {
    width: 100%;
  }
}
#for_kids .for_kids .for_kids_headline .for_kids_point01 {
  left: 5%;
}
#for_kids .for_kids .for_kids_headline .for_kids_point02 {
  right: 5%;
}
#for_kids .for_kids .for_kids_contents {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #for_kids .for_kids .for_kids_contents {
    position: relative;
    padding-top: 26vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #for_kids .for_kids .for_kids_contents .for_kids_point03, #for_kids .for_kids .for_kids_contents .for_kids_point04 {
    width: 25%;
    position: absolute;
    top: 0;
  }
  #for_kids .for_kids .for_kids_contents .for_kids_point03 img, #for_kids .for_kids .for_kids_contents .for_kids_point04 img {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #for_kids .for_kids .for_kids_contents .for_kids_point03, #for_kids .for_kids .for_kids_contents .for_kids_point04 {
    width: 40%;
    position: absolute;
    top: 25%;
  }
  #for_kids .for_kids .for_kids_contents .for_kids_point03 img, #for_kids .for_kids .for_kids_contents .for_kids_point04 img {
    width: 100%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #for_kids .for_kids .for_kids_contents .for_kids_point03 {
    left: 15%;
  }
}
@media screen and (max-width: 768px) {
  #for_kids .for_kids .for_kids_contents .for_kids_point03 {
    left: 5%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #for_kids .for_kids .for_kids_contents .for_kids_point04 {
    right: 15%;
  }
}
@media screen and (max-width: 768px) {
  #for_kids .for_kids .for_kids_contents .for_kids_point04 {
    right: 5%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #for_kids .for_kids .for_kids_contents .for_kids_content {
    margin-bottom: 6vw;
  }
}
@media screen and (max-width: 768px) {
  #for_kids .for_kids .for_kids_contents .for_kids_content {
    width: 95%;
    margin: auto;
  }
}
#for_kids .for_kids .for_kids_contents .for_kids_content h3, #for_kids .for_kids .for_kids_contents .for_kids_content p {
  text-align: center;
  color: #6A5441;
}
#for_kids .for_kids .for_kids_contents .for_kids_content h3 {
  margin-bottom: 2vw;
}
@media screen and (max-width: 768px) {
  #for_kids .for_kids .for_kids_contents .for_kids_content h3 {
    margin-bottom: 4vw;
  }
}
#for_kids .for_kids .for_kids_btns {
  padding: 4vw 0;
  padding-bottom: 2vw;
  background-position: top;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #for_kids .for_kids .for_kids_btns {
    background-color: #fff;
  }
}
@media screen and (max-width: 768px) {
  #for_kids .for_kids .for_kids_btns {
    padding: 8vw 0;
    padding-top: 12vw;
  }
}
#for_kids .for_kids .for_kids_btns .for_kids_btn {
  text-align: center;
  width: 20%;
  margin: auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #for_kids .for_kids .for_kids_btns .for_kids_btn {
    width: 40%;
  }
}
@media screen and (max-width: 768px) {
  #for_kids .for_kids .for_kids_btns .for_kids_btn {
    width: 80%;
  }
}
#for_kids .for_kids .for_kids_btns .for_kids_btn a {
  text-align: center;
  text-decoration: none;
}
#for_kids .for_kids .for_kids_btns .for_kids_btn a button {
  padding: 1.5vw;
  background-color: #fff;
  color: #6A5441;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1vw;
  border: none;
  width: 100%;
  border-radius: 50px;
  transition: all 0.4s;
}
@media screen and (max-width: 768px) {
  #for_kids .for_kids .for_kids_btns .for_kids_btn a button {
    padding: 3vw;
    gap: 3vw;
  }
}
#for_kids .for_kids .for_kids_btns .for_kids_btn a button:hover {
  opacity: 0.8;
}
#for_kids .for_kids .for_kids_btns .for_kids_btn a button img {
  width: 1.2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #for_kids .for_kids .for_kids_btns .for_kids_btn a button img {
    width: 2vw;
  }
}
@media screen and (max-width: 768px) {
  #for_kids .for_kids .for_kids_btns .for_kids_btn a button img {
    width: 4vw;
  }
}

#medical .medical {
  background-color: rgba(250, 164, 161, 0.7);
  padding: 4vw 0;
}
@media screen and (max-width: 768px) {
  #medical .medical {
    padding: 8vw 0;
  }
}
#medical .medical .medical_headline {
  position: relative;
  margin-bottom: 4vw;
}
@media screen and (max-width: 768px) {
  #medical .medical .medical_headline {
    margin-bottom: 8vw;
  }
}
#medical .medical .medical_headline .medical_headline_contents {
  padding: 9vw;
  width: 50%;
  margin: auto;
  background-repeat: no-repeat;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #medical .medical .medical_headline .medical_headline_contents {
    background-size: contain;
  }
}
@media screen and (max-width: 768px) {
  #medical .medical .medical_headline .medical_headline_contents {
    width: 80%;
    padding: 17vw 9vw;
    background-size: contain;
  }
}
#medical .medical .medical_headline .medical_headline_contents h2 {
  font-size: 5vw;
  font-weight: 400;
  color: #6A5441;
  margin-bottom: 1vw;
  font-family: "Josefin Sans", sans-serif;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #medical .medical .medical_headline .medical_headline_contents h2 {
    font-size: 14vw;
  }
}
#medical .medical .medical_headline .medical_headline_contents h4 {
  color: #6A5441;
  text-align: end;
  padding-right: 4vw;
}
#medical .medical .medical_headline .medical_headline_point01 {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translate(0, -50%);
  width: 25%;
}
@media screen and (max-width: 768px) {
  #medical .medical .medical_headline .medical_headline_point01 {
    left: 2%;
    top: 78%;
    width: 35%;
  }
}
#medical .medical .medical_headline .medical_headline_point01 img {
  width: 100%;
}
#medical .medical .medical_headline .medical_headline_point02 {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translate(0, -50%);
  width: 25%;
}
@media screen and (max-width: 768px) {
  #medical .medical .medical_headline .medical_headline_point02 {
    right: 2%;
    width: 32%;
    top: 90%;
  }
}
#medical .medical .medical_headline .medical_headline_point02 img {
  width: 100%;
}
#medical .medical .medical_images {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2vw;
  width: 90%;
  margin: auto;
  margin-bottom: 4vw;
}
@media screen and (max-width: 768px) {
  #medical .medical .medical_images {
    margin-bottom: 8vw;
  }
}
#medical .medical .medical_images img {
  width: 30%;
}
#medical .medical .medical_contents {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 4vw;
}
@media screen and (max-width: 768px) {
  #medical .medical .medical_contents {
    flex-flow: column;
    margin-bottom: 8vw;
  }
}
#medical .medical .medical_contents .medical_content {
  width: 33.3333333333%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  #medical .medical .medical_contents .medical_content {
    width: 100%;
    margin-bottom: 4vw;
  }
}
#medical .medical .medical_contents .medical_content .medical_image {
  width: 80%;
  margin: auto;
  margin-bottom: 2vw;
}
@media screen and (max-width: 768px) {
  #medical .medical .medical_contents .medical_content .medical_image {
    margin-bottom: 4vw;
  }
}
#medical .medical .medical_contents .medical_content .medical_image img {
  width: 100%;
}
#medical .medical .medical_contents .medical_content .medical_item {
  background-position: top;
  background-repeat: no-repeat;
  padding: 4vw;
  height: 30vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #medical .medical .medical_contents .medical_content .medical_item {
    padding: 12vw 2vw;
    height: 38vw;
  }
}
@media screen and (max-width: 768px) {
  #medical .medical .medical_contents .medical_content .medical_item {
    padding: 24vw 4vw;
    height: 70vw;
  }
}
#medical .medical .medical_contents .medical_content .medical_item h2 {
  text-align: center;
  color: #fff;
  margin-bottom: 4vw;
  height: 12vw;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #medical .medical .medical_contents .medical_content .medical_item h2 {
    margin-bottom: 10vw;
  }
}
#medical .medical .medical_contents .medical_content .medical_item .medical_content_btn {
  text-align: center;
  margin: auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #medical .medical .medical_contents .medical_content .medical_item .medical_content_btn {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  #medical .medical .medical_contents .medical_content .medical_item .medical_content_btn {
    width: 80%;
  }
}
#medical .medical .medical_contents .medical_content .medical_item .medical_content_btn a {
  text-align: center;
  text-decoration: none;
}
#medical .medical .medical_contents .medical_content .medical_item .medical_content_btn a button {
  padding: 1.5vw;
  background-color: #fff;
  color: #6A5441;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1vw;
  border: none;
  width: 100%;
  border-radius: 50px;
  transition: all 0.4s;
  font-size: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #medical .medical .medical_contents .medical_content .medical_item .medical_content_btn a button {
    font-size: 1.8vw;
  }
}
@media screen and (max-width: 768px) {
  #medical .medical .medical_contents .medical_content .medical_item .medical_content_btn a button {
    font-size: 3.4vw;
    padding: 3vw;
    gap: 3vw;
  }
}
#medical .medical .medical_contents .medical_content .medical_item .medical_content_btn a button:hover {
  opacity: 0.8;
}
#medical .medical .medical_contents .medical_content .medical_item .medical_content_btn a button img {
  width: 1.2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #medical .medical .medical_contents .medical_content .medical_item .medical_content_btn a button img {
    width: 2vw;
  }
}
@media screen and (max-width: 768px) {
  #medical .medical .medical_contents .medical_content .medical_item .medical_content_btn a button img {
    width: 4vw;
  }
}
#medical .medical .medical_menus .medical_menu {
  width: 90%;
  margin: auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #medical .medical .medical_menus .medical_menu {
    width: 95%;
  }
}
#medical .medical .medical_menus .medical_menu ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5vw;
}
@media screen and (max-width: 768px) {
  #medical .medical .medical_menus .medical_menu ul {
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
#medical .medical .medical_menus .medical_menu ul li {
  width: 10%;
  height: 30vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #medical .medical .medical_menus .medical_menu ul li {
    height: 47vw;
  }
}
@media screen and (max-width: 768px) {
  #medical .medical .medical_menus .medical_menu ul li {
    width: 48%;
    height: auto;
  }
}
#medical .medical .medical_menus .medical_menu ul li:first-child {
  border-top: 8px solid #ED5B56;
}
#medical .medical .medical_menus .medical_menu ul li:nth-child(2) {
  border-top: 8px solid #F18C34;
}
#medical .medical .medical_menus .medical_menu ul li:nth-child(3) {
  border-top: 8px solid #E2BE2E;
}
#medical .medical .medical_menus .medical_menu ul li:nth-child(4) {
  border-top: 8px solid #388275;
}
#medical .medical .medical_menus .medical_menu ul li:nth-child(5) {
  border-top: 8px solid #48C6B5;
}
#medical .medical .medical_menus .medical_menu ul li:nth-child(6) {
  border-top: 8px solid #A9D0D5;
}
#medical .medical .medical_menus .medical_menu ul li:nth-child(7) {
  border-top: 8px solid #7B55E6;
}
#medical .medical .medical_menus .medical_menu ul li:nth-child(8) {
  border-top: 8px solid #4A5EE5;
}
#medical .medical .medical_menus .medical_menu ul li:last-child {
  border-top: 8px solid #3983DD;
}
#medical .medical .medical_menus .medical_menu ul li a {
  width: 100%;
  height: 100%;
  display: block;
  text-decoration: none;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  writing-mode: vertical-rl;
  padding: 2vw;
  transition: all 0.4s;
}
@media screen and (max-width: 768px) {
  #medical .medical .medical_menus .medical_menu ul li a {
    writing-mode: unset;
  }
}
#medical .medical .medical_menus .medical_menu ul li a:hover {
  opacity: 0.8;
}
#medical .medical .medical_menus .medical_menu ul li a img:first-child {
  width: 3vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #medical .medical .medical_menus .medical_menu ul li a img:first-child {
    width: 5vw;
  }
}
@media screen and (max-width: 768px) {
  #medical .medical .medical_menus .medical_menu ul li a img:first-child {
    width: 6vw;
  }
}
@media screen and (max-width: 768px) {
  #medical .medical .medical_menus .medical_menu ul li a img:last-child {
    width: 6vw;
  }
}
#medical .medical .medical_menus .medical_menu ul li a h4 {
  height: 18vw;
  color: #6A5441;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #medical .medical .medical_menus .medical_menu ul li a h4 {
    height: 26vw;
  }
}
@media screen and (max-width: 768px) {
  #medical .medical .medical_menus .medical_menu ul li a h4 {
    font-size: 3vw;
    height: 12vw;
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

#youtube .youtube {
  padding-bottom: 80px;
}
#youtube .youtube .youtube_headline {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
#youtube .youtube .youtube_headline .youtube_left_deco {
  flex-shrink: 0;
  position: relative;
  width: 650px;
  height: 536px;
  align-self: flex-end;
  pointer-events: none;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #youtube .youtube .youtube_headline .youtube_left_deco {
    width: 450px;
    height: 370px;
  }
}
@media screen and (max-width: 768px) {
  #youtube .youtube .youtube_headline .youtube_left_deco {
    width: 270px;
    height: 222px;
  }
}
#youtube .youtube .youtube_headline .youtube_left_deco .youtube_dots {
  position: absolute;
  left: 6px;
  top: 0;
  width: 25vw;
  height: 25vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #youtube .youtube .youtube_headline .youtube_left_deco .youtube_dots {
    width: 217px;
    left: 4px;
  }
}
@media screen and (max-width: 768px) {
  #youtube .youtube .youtube_headline .youtube_left_deco .youtube_dots {
    width: 130px;
    left: 2px;
  }
}
#youtube .youtube .youtube_headline .youtube_left_deco .youtube_dots img {
  width: 100%;
  height: 100%;
  display: block;
}
#youtube .youtube .youtube_headline .youtube_left_deco .youtube_bird {
  position: absolute;
  left: 12vw;
  top: 224px;
  width: 20vw;
  height: 12vw;
  transform: rotate(-30deg);
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #youtube .youtube .youtube_headline .youtube_left_deco .youtube_bird {
    left: 50px;
    top: 155px;
    width: 25vw;
  }
}
@media screen and (max-width: 768px) {
  #youtube .youtube .youtube_headline .youtube_left_deco .youtube_bird {
    left: 10vw;
    top: 15vw;
    width: 30vw;
    height: 15vw;
  }
}
#youtube .youtube .youtube_headline .youtube_left_deco .youtube_bird img {
  width: 100%;
  height: 100%;
  display: block;
}
#youtube .youtube .youtube_headline .youtube_left_deco .youtube_flower {
  position: absolute;
  left: 34vw;
  top: 201px;
  width: 12vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #youtube .youtube .youtube_headline .youtube_left_deco .youtube_flower {
    left: 30vw;
    top: 139px;
    width: 10vw;
    height: 10vw;
  }
}
@media screen and (max-width: 768px) {
  #youtube .youtube .youtube_headline .youtube_left_deco .youtube_flower {
    left: 42vw;
    top: 8vw;
    width: 12vw;
    height: 12vw;
  }
}
#youtube .youtube .youtube_headline .youtube_left_deco .youtube_flower img {
  width: 100%;
  height: 100%;
  display: block;
}
#youtube .youtube .youtube_headline .youtube_heading_right {
  flex: 1;
  position: relative;
  min-height: 340px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #youtube .youtube .youtube_headline .youtube_heading_right {
    min-height: 260px;
  }
}
@media screen and (max-width: 768px) {
  #youtube .youtube .youtube_headline .youtube_heading_right {
    min-height: 180px;
  }
}
#youtube .youtube .youtube_headline .youtube_heading_right .youtube_garland {
  position: absolute;
  top: 0;
  right: 0;
  width: 411px;
  z-index: 2;
  pointer-events: none;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #youtube .youtube .youtube_headline .youtube_heading_right .youtube_garland {
    width: 35vw;
    height: 15vw;
  }
}
@media screen and (max-width: 768px) {
  #youtube .youtube .youtube_headline .youtube_heading_right .youtube_garland {
    width: 35vw;
    height: 15vw;
  }
}
#youtube .youtube .youtube_headline .youtube_heading_right .youtube_garland img {
  width: 100%;
  display: block;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #youtube .youtube .youtube_headline .youtube_heading_right .youtube_garland img {
    height: 100%;
  }
}
@media screen and (max-width: 768px) {
  #youtube .youtube .youtube_headline .youtube_heading_right .youtube_garland img {
    height: 100%;
  }
}
#youtube .youtube .youtube_headline .youtube_heading_right .youtube_blob {
  position: absolute;
  right: 80px;
  top: 60px;
  width: 324px;
  z-index: 1;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #youtube .youtube .youtube_headline .youtube_heading_right .youtube_blob {
    width: 220px;
    right: 40px;
    top: 40px;
  }
}
@media screen and (max-width: 768px) {
  #youtube .youtube .youtube_headline .youtube_heading_right .youtube_blob {
    width: 140px;
    right: 10px;
    top: 20px;
  }
}
#youtube .youtube .youtube_headline .youtube_heading_right .youtube_blob img {
  width: 100%;
  display: block;
}
#youtube .youtube .youtube_headline .youtube_heading_right .youtube_title {
  position: absolute;
  bottom: 30px;
  right: 240px;
  text-align: right;
  z-index: 3;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #youtube .youtube .youtube_headline .youtube_heading_right .youtube_title {
    right: 120px;
    bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  #youtube .youtube .youtube_headline .youtube_heading_right .youtube_title {
    right: 10px;
    bottom: 10px;
  }
}
#youtube .youtube .youtube_headline .youtube_heading_right .youtube_title h2 {
  font-family: "Josefin Sans", sans-serif;
  font-size: 9.6rem;
  font-weight: 600;
  color: #6a5441;
  letter-spacing: 0.1em;
  line-height: 1.1;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #youtube .youtube .youtube_headline .youtube_heading_right .youtube_title h2 {
    font-size: 6.5rem;
  }
}
@media screen and (max-width: 768px) {
  #youtube .youtube .youtube_headline .youtube_heading_right .youtube_title h2 {
    font-size: 4rem;
  }
}
#youtube .youtube .youtube_headline .youtube_heading_right .youtube_title h4 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 3.6rem;
  font-weight: 700;
  color: #6a5441;
  letter-spacing: 0.1em;
  margin-top: 0.4rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #youtube .youtube .youtube_headline .youtube_heading_right .youtube_title h4 {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  #youtube .youtube .youtube_headline .youtube_heading_right .youtube_title h4 {
    font-size: 1.8rem;
  }
}
#youtube .youtube .youtube_slider_wrap {
  position: relative;
  padding-bottom: 70px;
}
#youtube .youtube .youtube_slider_wrap .slick-prev,
#youtube .youtube .youtube_slider_wrap .slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  z-index: 10;
  cursor: pointer;
  border: none;
  font-size: 0;
  color: transparent;
  transition: box-shadow 0.3s;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #youtube .youtube .youtube_slider_wrap .slick-prev,
  #youtube .youtube .youtube_slider_wrap .slick-next {
    width: 48px;
    height: 48px;
  }
}
@media screen and (max-width: 768px) {
  #youtube .youtube .youtube_slider_wrap .slick-prev,
  #youtube .youtube .youtube_slider_wrap .slick-next {
    width: 36px;
    height: 36px;
  }
}
#youtube .youtube .youtube_slider_wrap .slick-prev:hover,
#youtube .youtube .youtube_slider_wrap .slick-next:hover {
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.22);
}
#youtube .youtube .youtube_slider_wrap .slick-prev::before,
#youtube .youtube .youtube_slider_wrap .slick-next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 11px;
  border-top: 2.5px solid #6a5441;
  border-right: 2.5px solid #6a5441;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #youtube .youtube .youtube_slider_wrap .slick-prev::before,
  #youtube .youtube .youtube_slider_wrap .slick-next::before {
    width: 9px;
    height: 9px;
  }
}
@media screen and (max-width: 768px) {
  #youtube .youtube .youtube_slider_wrap .slick-prev::before,
  #youtube .youtube .youtube_slider_wrap .slick-next::before {
    width: 7px;
    height: 7px;
  }
}
#youtube .youtube .youtube_slider_wrap .slick-prev {
  left: 80px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #youtube .youtube .youtube_slider_wrap .slick-prev {
    left: 40px;
  }
}
@media screen and (max-width: 768px) {
  #youtube .youtube .youtube_slider_wrap .slick-prev {
    left: 8px;
  }
}
#youtube .youtube .youtube_slider_wrap .slick-prev::before {
  transform: translate(-25%, -50%) rotate(-135deg);
}
#youtube .youtube .youtube_slider_wrap .slick-next {
  right: 80px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #youtube .youtube .youtube_slider_wrap .slick-next {
    right: 40px;
  }
}
@media screen and (max-width: 768px) {
  #youtube .youtube .youtube_slider_wrap .slick-next {
    right: 8px;
  }
}
#youtube .youtube .youtube_slider_wrap .slick-next::before {
  transform: translate(-75%, -50%) rotate(45deg);
}
#youtube .youtube .youtube_slider_wrap .youtube_slider .slick-track {
  display: flex;
  align-items: stretch;
}
#youtube .youtube .youtube_slider_wrap .youtube_slider .slick-slide {
  height: auto;
}
#youtube .youtube .youtube_slider_wrap .youtube_slider .slick-slide > div {
  height: 100%;
}
#youtube .youtube .youtube_slider_wrap .youtube_slider .youtube_item {
  padding: 0 10px;
  height: 100%;
}
#youtube .youtube .youtube_slider_wrap .youtube_slider .youtube_item .youtube_embed_wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}
#youtube .youtube .youtube_slider_wrap .youtube_slider .youtube_item .youtube_embed_wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
#youtube .youtube .youtube_slider_wrap .youtube_slider .slick-dots {
  position: relative;
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
  padding: 0;
  list-style: none;
  bottom: auto;
}
#youtube .youtube .youtube_slider_wrap .youtube_slider .slick-dots li {
  width: 14px;
  height: 14px;
  margin: 0;
  padding: 0;
}
#youtube .youtube .youtube_slider_wrap .youtube_slider .slick-dots li button {
  width: 14px;
  height: 14px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background-color: #c4bcb4;
  cursor: pointer;
  font-size: 0;
  color: transparent;
  transition: background-color 0.3s;
}
#youtube .youtube .youtube_slider_wrap .youtube_slider .slick-dots li button::before {
  display: none;
}
#youtube .youtube .youtube_slider_wrap .youtube_slider .slick-dots li.slick-active button {
  background-color: #4a8a7a;
}

#news {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2vw;
  padding-bottom: 8vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #news {
    width: 65%;
    margin: auto;
  }
}
@media screen and (max-width: 768px) {
  #news {
    width: 95%;
    margin: auto;
  }
}
#news .news, #news .blog, #news .column {
  width: 30%;
}
#news .news_section_title {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 3.2rem;
  margin-bottom: 6rem;
  height: 10vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #news .news_section_title {
    gap: 2.4rem;
    margin-bottom: 4.8rem;
  }
}
@media screen and (max-width: 768px) {
  #news .news_section_title {
    gap: 1.6rem;
    margin-bottom: 4rem;
  }
}
#news .news_section_title .news_title {
  font-family: "Josefin Sans", sans-serif;
  font-size: 4.8rem;
  font-weight: 600;
  color: #6a5441;
  letter-spacing: 0.48rem;
  line-height: 1.2;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #news .news_section_title .news_title {
    font-size: 3.6rem;
    letter-spacing: 0.36rem;
  }
}
@media screen and (max-width: 768px) {
  #news .news_section_title .news_title {
    font-size: 2.8rem;
    letter-spacing: 0.28rem;
  }
}
#news .news_section_title .news_title span {
  color: #f18c34;
}
#news .news_section_title .news_deco {
  flex-shrink: 0;
}
#news .news_section_title .news_deco img {
  display: block;
  width: 100%;
}
#news .news_section_title .news_deco_star {
  width: 4vw;
  height: 5vw;
  position: relative;
  top: -2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #news .news_section_title .news_deco_star {
    width: 36px;
  }
}
@media screen and (max-width: 768px) {
  #news .news_section_title .news_deco_star {
    width: 28px;
  }
}
#news .news_section_title .news_deco_star img {
  height: 100%;
}
#news .news_section_title .news_deco_tulip {
  width: 4.5vw;
  height: 8vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #news .news_section_title .news_deco_tulip {
    width: 44px;
  }
}
@media screen and (max-width: 768px) {
  #news .news_section_title .news_deco_tulip {
    width: 34px;
  }
}
#news .news_section_title .news_deco_tulip img {
  height: 100%;
}
#news .news_section_title .blog_deco_left {
  width: 5vw;
  height: 5vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #news .news_section_title .blog_deco_left {
    width: 44px;
    height: 44px;
  }
}
@media screen and (max-width: 768px) {
  #news .news_section_title .blog_deco_left {
    width: 34px;
    height: 34px;
  }
}
#news .news_section_title .blog_deco_left img {
  height: 100%;
}
#news .news_section_title .blog_deco_right {
  width: 4vw;
  height: 5vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #news .news_section_title .blog_deco_right {
    width: 36px;
    height: 44px;
  }
}
@media screen and (max-width: 768px) {
  #news .news_section_title .blog_deco_right {
    width: 28px;
    height: 34px;
  }
}
#news .news_section_title .blog_deco_right img {
  height: 100%;
}
#news .news_section_title .column_deco_left {
  width: 4.5vw;
  height: 5vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #news .news_section_title .column_deco_left {
    width: 40px;
    height: 44px;
  }
}
@media screen and (max-width: 768px) {
  #news .news_section_title .column_deco_left {
    width: 32px;
    height: 34px;
  }
}
#news .news_section_title .column_deco_left img {
  height: 100%;
}
#news .news_section_title .column_deco_right {
  width: 3.5vw;
  height: 7vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #news .news_section_title .column_deco_right {
    width: 32px;
    height: 60px;
  }
}
@media screen and (max-width: 768px) {
  #news .news_section_title .column_deco_right {
    width: 24px;
    height: 48px;
  }
}
#news .news_section_title .column_deco_right img {
  height: 100%;
}
#news .news_section_title .blog_title span {
  color: #3983dd;
}
#news .news_section_title .column_title span {
  color: #48c6b5;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #news {
    flex-direction: column;
  }
  #news .news, #news .blog, #news .column {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #news {
    flex-direction: column;
  }
  #news .news, #news .blog, #news .column {
    width: 100%;
  }
}
#news .news_stripe {
  width: 100%;
  height: 20px;
  margin-bottom: 0;
}
#news .news .news_stripe {
  background: repeating-linear-gradient(-45deg, #f18c34 0px, #f18c34 3px, rgba(241, 140, 52, 0.15) 3px, rgba(241, 140, 52, 0.15) 12px);
}
#news .blog .news_stripe {
  background: repeating-linear-gradient(-45deg, #3983dd 0px, #3983dd 3px, rgba(57, 131, 221, 0.15) 3px, rgba(57, 131, 221, 0.15) 12px);
}
#news .column .news_stripe {
  background: repeating-linear-gradient(-45deg, #48c6b5 0px, #48c6b5 3px, rgba(72, 198, 181, 0.15) 3px, rgba(72, 198, 181, 0.15) 12px);
}
#news .news_contents {
  width: 100%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #news .news_contents {
    margin-bottom: 4vw;
  }
}
@media screen and (max-width: 768px) {
  #news .news_contents {
    margin-bottom: 8vw;
  }
}
#news .news_contents ul {
  list-style: none;
  height: 30vw;
  overflow: scroll;
  background-color: #fff;
  padding: 4vw 1vw;
  border-radius: 0 0 25px 25px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #news .news_contents ul {
    height: 60vw;
  }
}
@media screen and (max-width: 768px) {
  #news .news_contents ul {
    height: 80vw;
  }
}
#news .news_contents ul li {
  padding: 1vw 0;
  border-bottom: 1px dotted #F5A967;
}
#news .news_contents ul li a {
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2vw;
}
#news .news_contents ul li a .thumb {
  width: 25%;
}
#news .news_contents ul li a .thumb img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#news .news_contents ul li a .outline {
  width: 75%;
}
#news .news_contents ul li a .outline .date {
  padding: 0.5vw 1vw;
  border-radius: 50px;
  color: #fff;
  text-align: center;
  background-color: #F18C34;
  margin-bottom: 1vw;
  font-size: 1vw;
  width: 50%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #news .news_contents ul li a .outline .date {
    font-size: 1.8vw;
  }
}
@media screen and (max-width: 768px) {
  #news .news_contents ul li a .outline .date {
    font-size: 3.4vw;
  }
}
#news .news_contents ul li a .outline .title {
  color: #6A5441;
  font-size: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #news .news_contents ul li a .outline .title {
    font-size: 1.8vw;
  }
}
@media screen and (max-width: 768px) {
  #news .news_contents ul li a .outline .title {
    font-size: 3.4vw;
  }
}

#recruit {
  background-color: rgba(249, 221, 108, 0.7);
  padding: 8vw 0;
  padding-bottom: 20vw;
}
@media screen and (max-width: 768px) {
  #recruit {
    padding: 16vw 0;
    padding-bottom: 30vw;
  }
}
#recruit .recruit_banner {
  width: 50%;
  margin: auto;
  transition: all 0.4s;
}
#recruit .recruit_banner:hover {
  opacity: 0.8;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #recruit .recruit_banner {
    width: 65%;
  }
}
@media screen and (max-width: 768px) {
  #recruit .recruit_banner {
    width: 90%;
  }
}
#recruit .recruit_banner img {
  width: 100%;
}

.footer_top {
  position: relative;
}
@media screen and (max-width: 768px) {
  .footer_top {
    margin-bottom: 40vw;
  }
}
@media screen and (max-width: 768px) {
  .footer_top .pc {
    display: none !important;
  }
}
@media screen and (min-width: 1441px) {
  .footer_top .sp {
    display: none !important;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .footer_top .sp {
    display: none !important;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .footer_top .sp {
    display: none !important;
  }
}
.footer_top .footer_top_bg {
  position: absolute;
  width: 100%;
  z-index: 0;
  top: -15vw;
  left: 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .footer_top .footer_top_bg {
    height: 90vh;
    top: -15vw;
  }
}
@media screen and (max-width: 768px) {
  .footer_top .footer_top_bg {
    height: 120vh;
  }
}
.footer_top .footer_top_bg img {
  width: 100%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .footer_top .footer_top_bg img {
    height: 100%;
  }
}
@media screen and (max-width: 768px) {
  .footer_top .footer_top_bg img {
    height: 100%;
  }
}
.footer_top .footer_logo {
  width: 30%;
  margin: auto;
  margin-bottom: 4vw;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .footer_top .footer_logo {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .footer_top .footer_logo {
    width: 85%;
    padding-top: 12vw;
    margin-bottom: 8vw;
  }
}
.footer_top .footer_logo img {
  width: 100%;
}
.footer_top .footer_top_flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4vw;
  width: 80%;
  margin: auto;
  position: relative;
  z-index: 10;
  margin-bottom: 4vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .footer_top .footer_top_flex {
    width: 90%;
    flex-flow: column;
  }
}
@media screen and (max-width: 768px) {
  .footer_top .footer_top_flex {
    width: 95%;
    flex-flow: column;
    margin-bottom: 8vw;
  }
}
.footer_top .footer_top_flex .footer_top_left {
  width: 50%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .footer_top .footer_top_flex .footer_top_left {
    width: 65%;
  }
}
@media screen and (max-width: 768px) {
  .footer_top .footer_top_flex .footer_top_left {
    width: 100%;
  }
}
.footer_top .footer_top_flex .footer_top_left .footer_address {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1vw;
  margin-bottom: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .footer_top .footer_top_flex .footer_top_left .footer_address {
    margin-bottom: 2vw;
  }
}
@media screen and (max-width: 768px) {
  .footer_top .footer_top_flex .footer_top_left .footer_address {
    margin-bottom: 4vw;
  }
}
.footer_top .footer_top_flex .footer_top_left .footer_address img {
  width: 1.2vw;
}
.footer_top .footer_top_flex .footer_top_left .footer_address p {
  color: #6A5441;
}
.footer_top .footer_top_flex .footer_top_left .footer_top_left01 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2vw;
  margin-bottom: 1vw;
  height: 5vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .footer_top .footer_top_flex .footer_top_left .footer_top_left01 {
    height: 6vw;
    margin-bottom: 2vw;
  }
}
@media screen and (max-width: 768px) {
  .footer_top .footer_top_flex .footer_top_left .footer_top_left01 {
    height: 15vw;
    margin-bottom: 4vw;
  }
}
.footer_top .footer_top_flex .footer_top_left .footer_top_left01 .footer_insta {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  padding: 1vw;
  background-color: #FFF0EA;
  height: 100%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .footer_top .footer_top_flex .footer_top_left .footer_top_left01 .footer_insta {
    padding: 2vw;
  }
}
@media screen and (max-width: 768px) {
  .footer_top .footer_top_flex .footer_top_left .footer_top_left01 .footer_insta {
    padding: 4vw;
  }
}
.footer_top .footer_top_flex .footer_top_left .footer_top_left01 .footer_insta img {
  width: 3vw;
}
@media screen and (max-width: 768px) {
  .footer_top .footer_top_flex .footer_top_left .footer_top_left01 .footer_insta img {
    width: 8vw;
  }
}
.footer_top .footer_top_flex .footer_top_left .footer_top_left01 .footer_youtube {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  padding: 0.5vw;
  background-color: #FFF0EA;
  height: 100%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .footer_top .footer_top_flex .footer_top_left .footer_top_left01 .footer_youtube {
    padding: 2vw;
  }
}
@media screen and (max-width: 768px) {
  .footer_top .footer_top_flex .footer_top_left .footer_top_left01 .footer_youtube {
    padding: 4vw;
  }
}
.footer_top .footer_top_flex .footer_top_left .footer_top_left01 .footer_youtube img {
  height: 100%;
}
.footer_top .footer_top_flex .footer_top_left .footer_top_left02 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2vw;
}
.footer_top .footer_top_flex .footer_top_left .footer_top_left02 .footer_tel {
  background-color: #F18C34;
  border-radius: 15px;
  padding: 0.5vw 1vw;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .footer_top .footer_top_flex .footer_top_left .footer_top_left02 .footer_tel {
    padding: 1vw 2vw;
  }
}
@media screen and (max-width: 768px) {
  .footer_top .footer_top_flex .footer_top_left .footer_top_left02 .footer_tel {
    padding: 2vw 8vw;
  }
}
.footer_top .footer_top_flex .footer_top_left .footer_top_left02 .footer_tel a {
  text-decoration: none;
  color: #fff;
  text-align: center;
}
.footer_top .footer_top_flex .footer_top_left .footer_top_left02 .footer_tel a h3 {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  letter-spacing: 0.2vw;
}
.footer_top .footer_top_flex .footer_top_left .footer_top_left02 .footer_tel a h3 img {
  margin-right: 0.5vw;
  width: 1.6vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .footer_top .footer_top_flex .footer_top_left .footer_top_left02 .footer_tel a h3 img {
    margin-right: 1vw;
    width: 2vw;
  }
}
@media screen and (max-width: 768px) {
  .footer_top .footer_top_flex .footer_top_left .footer_top_left02 .footer_tel a h3 img {
    margin-right: 2vw;
    width: 4vw;
  }
}
.footer_top .footer_top_flex .footer_top_left .footer_top_left02 .footer_contact {
  background-color: #48C6B5;
  border-radius: 15px;
  padding: 0.5vw 1vw;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .footer_top .footer_top_flex .footer_top_left .footer_top_left02 .footer_contact {
    border-radius: 10px;
    padding: 1vw 2vw;
  }
}
@media screen and (max-width: 768px) {
  .footer_top .footer_top_flex .footer_top_left .footer_top_left02 .footer_contact {
    padding: 2vw 8vw;
  }
}
.footer_top .footer_top_flex .footer_top_left .footer_top_left02 .footer_contact a {
  text-decoration: none;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .footer_top .footer_top_flex .footer_top_left .footer_top_left02 .footer_contact a p {
    margin-bottom: 1.5vw;
  }
}
.footer_top .footer_top_flex .footer_top_left .footer_top_left02 .footer_contact a h4 img {
  margin-right: 0.5vw;
  width: 1.6vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .footer_top .footer_top_flex .footer_top_left .footer_top_left02 .footer_contact a h4 img {
    margin-right: 1vw;
    width: 2vw;
  }
}
@media screen and (max-width: 768px) {
  .footer_top .footer_top_flex .footer_top_left .footer_top_left02 .footer_contact a h4 img {
    margin-right: 2vw;
    width: 4vw;
  }
}
.footer_top .footer_top_flex .footer_top_right {
  width: 50%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .footer_top .footer_top_flex .footer_top_right {
    width: 65%;
  }
}
@media screen and (max-width: 768px) {
  .footer_top .footer_top_flex .footer_top_right {
    width: 100%;
  }
}
.footer_top .footer_top_flex .footer_top_right .footer_time_contents {
  width: 100%;
  border-radius: 10px;
  border: none;
  background-color: #3983DD;
  padding: 1vw;
}
.footer_top .footer_top_flex .footer_top_right .footer_time_contents > p {
  color: #fff;
}
.footer_top .footer_top_flex .footer_top_right .footer_time_contents div {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer_top .footer_top_flex .footer_top_right .footer_time_contents div:first-child {
  border-radius: 10px 10px 0 0;
  border-bottom: 2px solid #fff;
}
.footer_top .footer_top_flex .footer_top_right .footer_time_contents div:first-child p {
  color: #fff;
}
.footer_top .footer_top_flex .footer_top_right .footer_time_contents div:first-child p:first-child {
  border-radius: 10px 0 0 0;
}
.footer_top .footer_top_flex .footer_top_right .footer_time_contents div:first-child p:last-child {
  border-radius: 0 10px 0 0;
}
.footer_top .footer_top_flex .footer_top_right .footer_time_contents div:nth-child(2) {
  border-bottom: 2px solid #fff;
}
.footer_top .footer_top_flex .footer_top_right .footer_time_contents div:nth-child(2) p {
  color: #fff;
}
.footer_top .footer_top_flex .footer_top_right .footer_time_contents div:nth-child(2) p:nth-child(2), .footer_top .footer_top_flex .footer_top_right .footer_time_contents div:nth-child(2) p:nth-child(3), .footer_top .footer_top_flex .footer_top_right .footer_time_contents div:nth-child(2) p:nth-child(4), .footer_top .footer_top_flex .footer_top_right .footer_time_contents div:nth-child(2) p:nth-child(5), .footer_top .footer_top_flex .footer_top_right .footer_time_contents div:nth-child(2) p:nth-child(6) {
  color: #fff;
  font-size: 1.6vw;
}
@media screen and (max-width: 768px) {
  .footer_top .footer_top_flex .footer_top_right .footer_time_contents div:nth-child(2) p:nth-child(2), .footer_top .footer_top_flex .footer_top_right .footer_time_contents div:nth-child(2) p:nth-child(3), .footer_top .footer_top_flex .footer_top_right .footer_time_contents div:nth-child(2) p:nth-child(4), .footer_top .footer_top_flex .footer_top_right .footer_time_contents div:nth-child(2) p:nth-child(5), .footer_top .footer_top_flex .footer_top_right .footer_time_contents div:nth-child(2) p:nth-child(6) {
    font-size: 3vw;
  }
}
.footer_top .footer_top_flex .footer_top_right .footer_time_contents div:nth-child(3) {
  border-bottom: 2px solid #fff;
  margin-bottom: 1vw;
}
@media screen and (max-width: 768px) {
  .footer_top .footer_top_flex .footer_top_right .footer_time_contents div:nth-child(3) {
    margin-bottom: 4vw;
  }
}
.footer_top .footer_top_flex .footer_top_right .footer_time_contents div:nth-child(3) p {
  color: #fff;
}
.footer_top .footer_top_flex .footer_top_right .footer_time_contents div:nth-child(3) p:nth-child(7) {
  color: #fff;
  font-size: 1.6vw;
}
@media screen and (max-width: 768px) {
  .footer_top .footer_top_flex .footer_top_right .footer_time_contents div:nth-child(3) p:nth-child(7) {
    font-size: 3vw;
  }
}
.footer_top .footer_top_flex .footer_top_right .footer_time_contents div:nth-child(3) p:first-child {
  border-radius: 0 0 0 10px;
}
.footer_top .footer_top_flex .footer_top_right .footer_time_contents div:nth-child(3) p:last-child {
  border-radius: 0 0 10px 0;
}
.footer_top .footer_top_flex .footer_top_right .footer_time_contents div p {
  padding: 1vw;
  font-size: 1vw;
  text-align: center;
  height: 4vw;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .footer_top .footer_top_flex .footer_top_right .footer_time_contents div p {
    font-size: 1.8vw;
    height: 6vw;
  }
}
@media screen and (max-width: 768px) {
  .footer_top .footer_top_flex .footer_top_right .footer_time_contents div p {
    font-size: 3.4vw;
    height: 12vw;
  }
}
.footer_top .footer_top_flex .footer_top_right .footer_time_contents div p:first-child {
  width: 20%;
}
.footer_top .footer_top_flex .footer_top_right .footer_time_contents div p:not(:first-child) {
  width: 10%;
}
.footer_top .footer_banner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2vw;
  width: 80%;
  margin: auto;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .footer_top .footer_banner {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  .footer_top .footer_banner {
    width: 95%;
    margin: auto;
    flex-flow: column;
    gap: 4vw;
  }
}
.footer_top .footer_banner .footer_banner_item {
  width: 30%;
}
@media screen and (max-width: 768px) {
  .footer_top .footer_banner .footer_banner_item {
    width: 100%;
  }
}
.footer_top .footer_banner .footer_banner_item a {
  width: 100%;
  display: block;
}
.footer_top .footer_banner .footer_banner_item a img {
  width: 100%;
}

footer .footer {
  background-position: center;
  background-size: cover;
  width: 100%;
}
footer .footer .footer_map {
  width: 90%;
  margin: auto;
  margin-bottom: 8vw;
}
@media screen and (max-width: 768px) {
  footer .footer .footer_map {
    height: 50vw;
  }
}
footer .footer .footer_map iframe {
  position: relative;
  top: 5vw;
  width: 100%;
  height: 40vw;
}
@media screen and (max-width: 768px) {
  footer .footer .footer_map iframe {
    height: 80vw;
    top: -30vw;
  }
}
footer .footer .footer_contents {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4vw;
  padding-bottom: 4vw;
}
@media screen and (max-width: 768px) {
  footer .footer .footer_contents {
    flex-flow: column;
    padding-bottom: 8vw;
  }
}
footer .footer .footer_contents .site_map {
  width: 30%;
}
@media screen and (max-width: 768px) {
  footer .footer .footer_contents .site_map {
    width: 100%;
  }
}
footer .footer .footer_contents .site_map h2 {
  color: #6A5441;
  font-family: "Josefin Sans", sans-serif;
  padding-bottom: 1vw;
  border-bottom: 1px solid #6A5441;
  margin-bottom: 1vw;
  font-weight: 400;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer .footer .footer_contents .site_map h2 {
    padding-bottom: 2vw;
    margin-bottom: 2vw;
  }
}
@media screen and (max-width: 768px) {
  footer .footer .footer_contents .site_map h2 {
    padding-bottom: 4vw;
    margin-bottom: 4vw;
  }
}
footer .footer .footer_contents .site_map ul {
  list-style: none;
  width: 95%;
  margin: auto;
}
footer .footer .footer_contents .site_map ul li {
  margin-bottom: 1.5vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer .footer .footer_contents .site_map ul li {
    margin-bottom: 2.5vw;
  }
}
@media screen and (max-width: 768px) {
  footer .footer .footer_contents .site_map ul li {
    margin-bottom: 4vw;
  }
}
footer .footer .footer_contents .site_map ul li a {
  text-decoration: none;
  color: #6A5441;
  font-size: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer .footer .footer_contents .site_map ul li a {
    font-size: 1.8vw;
  }
}
@media screen and (max-width: 768px) {
  footer .footer .footer_contents .site_map ul li a {
    font-size: 3.4vw;
  }
}
footer .footer .footer_contents .site_map ul li a span {
  margin-right: 0.5vw;
}
footer .footer .footer_contents .site_medical {
  width: 50%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer .footer .footer_contents .site_medical {
    width: 65%;
  }
}
@media screen and (max-width: 768px) {
  footer .footer .footer_contents .site_medical {
    width: 100%;
  }
}
footer .footer .footer_contents .site_medical h2 {
  color: #6A5441;
  font-family: "Josefin Sans", sans-serif;
  padding-bottom: 1vw;
  border-bottom: 1px solid #6A5441;
  margin-bottom: 1vw;
  font-weight: 400;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer .footer .footer_contents .site_medical h2 {
    padding-bottom: 2vw;
    margin-bottom: 2vw;
  }
}
@media screen and (max-width: 768px) {
  footer .footer .footer_contents .site_medical h2 {
    padding-bottom: 4vw;
    margin-bottom: 4vw;
  }
}
footer .footer .footer_contents .site_medical ul {
  list-style: none;
  width: 95%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  footer .footer .footer_contents .site_medical ul {
    flex-flow: column;
  }
}
footer .footer .footer_contents .site_medical ul li {
  width: 50%;
  margin-bottom: 1.5vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer .footer .footer_contents .site_medical ul li {
    margin-bottom: 2.5vw;
  }
}
@media screen and (max-width: 768px) {
  footer .footer .footer_contents .site_medical ul li {
    width: 100%;
    margin-bottom: 4vw;
  }
}
footer .footer .footer_contents .site_medical ul li a {
  text-decoration: none;
  color: #6A5441;
  font-size: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer .footer .footer_contents .site_medical ul li a {
    font-size: 1.8vw;
  }
}
@media screen and (max-width: 768px) {
  footer .footer .footer_contents .site_medical ul li a {
    font-size: 3.4vw;
  }
}
footer .footer .footer_contents .site_medical ul li a span {
  margin-right: 0.5vw;
}
footer .footer .copyright {
  padding: 2vw 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  footer .footer .copyright {
    padding: 4vw 0;
    padding-bottom: 12vw;
  }
}
footer .footer .copyright p {
  color: #6A5441;
}

.footer_sp_scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.3s;
  pointer-events: none;
}
.footer_sp_scroll.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
@media screen and (min-width: 1441px) {
  .footer_sp_scroll {
    display: none !important;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .footer_sp_scroll {
    display: none !important;
  }
}
.footer_sp_scroll {
  position: fixed;
  bottom: 2vw;
  left: 0;
  width: 100%;
  height: 10vw;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2vw;
}
@media screen and (max-width: 768px) {
  .footer_sp_scroll {
    height: 14vw;
    gap: 0.5vw;
  }
}
.footer_sp_scroll .footer_insta {
  width: 10vw;
  height: 100%;
  background-color: #FFF0EA;
  border: 4px solid #6A5441;
  border-radius: 10px;
  padding: 2vw;
}
@media screen and (max-width: 768px) {
  .footer_sp_scroll .footer_insta {
    width: 14vw;
    height: 100%;
    border: 2px solid #6A5441;
  }
}
.footer_sp_scroll .footer_insta img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .footer_sp_scroll .footer_insta img {
    width: 100%;
  }
}
.footer_sp_scroll .footer_youtube {
  height: 100%;
  background-color: #FFF0EA;
  border: 4px solid #6A5441;
  border-radius: 10px;
  padding: 2vw;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .footer_sp_scroll .footer_youtube {
    border: 2px solid #6A5441;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 29vw;
    height: 100%;
  }
}
.footer_sp_scroll .footer_youtube img {
  height: 100%;
}
@media screen and (max-width: 768px) {
  .footer_sp_scroll .footer_youtube img {
    width: 100%;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.footer_sp_scroll .footer_tel {
  width: 10vw;
  height: 100%;
  background-color: #F18C34;
  border-radius: 10px;
  padding: 3vw;
}
@media screen and (max-width: 768px) {
  .footer_sp_scroll .footer_tel {
    width: 14vw;
    height: 100%;
    padding: 4vw;
  }
}
.footer_sp_scroll .footer_tel img {
  width: 100%;
}
.footer_sp_scroll .footer_contact {
  border-radius: 10px;
  height: 100%;
  background-color: #48C6B5;
  padding: 2vw;
}
@media screen and (max-width: 768px) {
  .footer_sp_scroll .footer_contact {
    width: 29vw;
    padding: 2vw 0.5vw;
  }
}
.footer_sp_scroll .footer_contact a {
  text-decoration: none;
  color: #fff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
}
.footer_sp_scroll .footer_contact a p {
  line-height: 5vw;
}
.footer_sp_scroll .footer_contact a h4 {
  line-height: 5vw;
}
@media screen and (max-width: 768px) {
  .footer_sp_scroll .footer_contact a h4 {
    display: flex;
    justify-content: center;
    gap: 1vw;
  }
}
.footer_sp_scroll .footer_contact a h4 img {
  margin-right: 1vw;
}
@media screen and (max-width: 768px) {
  .footer_sp_scroll .footer_contact a h4 img {
    margin-right: 2vw;
  }
}
.footer_sp_scroll .footer_arrow {
  height: 100%;
}
@media screen and (max-width: 768px) {
  .footer_sp_scroll .footer_arrow {
    width: 14vw;
  }
}
.footer_sp_scroll .footer_arrow img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.lower_hero {
  position: relative;
  z-index: 100;
}
.lower_hero .lower_hero_bg {
  position: relative;
  width: 100%;
  height: 40vw;
  background-image: url(img/treatment_hero_bg.png);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .lower_hero .lower_hero_bg {
    height: 60vw;
  }
}
@media screen and (max-width: 768px) {
  .lower_hero .lower_hero_bg {
    height: 220px;
  }
}
.lower_hero .lower_hero_bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(106, 84, 65, 0.4);
}
.lower_hero .lower_hero_bg h1 {
  position: relative;
  z-index: 1;
  color: #fff;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 6.4rem;
  font-weight: 500;
  letter-spacing: 0.64rem;
  text-shadow: 4px 4px 40px rgba(0, 0, 0, 0.9);
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .lower_hero .lower_hero_bg h1 {
    font-size: 5rem;
    letter-spacing: 0.5rem;
  }
}
@media screen and (max-width: 768px) {
  .lower_hero .lower_hero_bg h1 {
    font-size: 3.6rem;
    letter-spacing: 0.36rem;
  }
}
.lower_hero .lower_hero_wave {
  position: relative;
  height: 180px;
  margin-top: -80px;
}
@media screen and (max-width: 768px) {
  .lower_hero .lower_hero_wave {
    height: 100px;
    margin-top: -40px;
  }
}

.lower_nav {
  width: 100%;
  position: absolute;
  top: 28vw;
  z-index: 100;
  background-image: url(img/lower_menu_bg.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  padding: 12vw 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .lower_nav {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .lower_nav {
    display: none !important;
  }
}
.lower_nav .main_menu {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
.lower_nav .main_menu li {
  border-left: 1px solid #6A5441;
  padding: 0 2vw;
}
.lower_nav .main_menu li:first-child {
  border: none;
}
.lower_nav .main_menu li:nth-child(3) {
  position: relative;
}
.lower_nav .main_menu li:nth-child(3) a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5vw;
  flex-flow: row !important;
}
.lower_nav .main_menu li i {
  margin-left: 5px;
  transition: 0.3s;
}
.lower_nav .main_menu li:hover i {
  transform: rotate(180deg);
}
.lower_nav .main_menu li:hover .sub_menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lower_nav .main_menu li a {
  text-decoration: none;
  display: flex;
  justify-content: center;
  flex-flow: column;
  font-size: 1vw;
  color: #6A5441;
  text-align: center;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .lower_nav .main_menu li a {
    font-size: 2vw;
  }
}
.lower_nav .main_menu li a span {
  text-align: center;
  font-size: 0.8vw;
  color: #B79E74;
}
.lower_nav .main_menu li .sub_menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 300px;
  background: #6A5441;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s;
  list-style: none;
  z-index: 100;
}
.lower_nav .main_menu li .sub_menu li {
  border-bottom: 1px solid #eee;
}
.lower_nav .main_menu li .sub_menu a {
  color: #fff;
  padding: 1vw 0;
}

#treatment_main {
  position: relative;
  padding-bottom: 200px;
}
@media screen and (max-width: 768px) {
  #treatment_main {
    padding-bottom: 100px;
  }
}
#treatment_main::before {
  content: "";
  position: absolute;
  top: -40vw;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(img/body_bg.png);
  background-size: 100% auto;
  background-repeat: repeat-y;
  background-position: top center;
  z-index: -1;
  pointer-events: none;
}

.treatment_section {
  padding: 80px 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .treatment_section {
    padding: 60px 0;
  }
}
@media screen and (max-width: 768px) {
  .treatment_section {
    padding: 25px 0;
  }
}

.treatment_section_title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .treatment_section_title {
    gap: 1rem;
    margin-bottom: 40px;
    flex-wrap: wrap;
  }
}
.treatment_section_title::after {
  content: "";
  flex-basis: 100%;
  width: 217px;
  height: 23px;
  max-width: 100%;
  background-image: url(img/lower_headline_bottom.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: -1rem;
}
@media screen and (max-width: 768px) {
  .treatment_section_title::after {
    width: 160px;
    height: 17px;
    margin-top: 1rem;
  }
}
.treatment_section_title .title_icon {
  width: 5vw;
  height: 5vw;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .treatment_section_title .title_icon {
    width: 10vw;
    height: 10vw;
  }
}
.treatment_section_title .title_icon img {
  width: 100%;
  height: 100%;
}
.treatment_section_title h2 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 3.6rem;
  color: #6a5441;
  letter-spacing: 0.4rem;
  font-weight: 500;
  white-space: nowrap;
  line-height: 1.2;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .treatment_section_title h2 {
    font-size: 3rem;
    white-space: normal;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .treatment_section_title h2 {
    font-size: 2rem;
    letter-spacing: 0.1rem;
    white-space: normal;
    text-align: center;
  }
}

.trouble_box_wrap {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto 60px;
  padding: 0 80px;
  position: relative;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .trouble_box_wrap {
    padding: 0 40px;
  }
}
@media screen and (max-width: 768px) {
  .trouble_box_wrap {
    padding: 0 10px;
  }
}
.trouble_box_wrap .trouble_deco_left,
.trouble_box_wrap .trouble_deco_right {
  position: absolute;
  top: 3vw;
  width: 20vw;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .trouble_box_wrap .trouble_deco_left,
  .trouble_box_wrap .trouble_deco_right {
    width: 35vw;
    height: 18vw;
    top: 13vw;
  }
}
.trouble_box_wrap .trouble_deco_left img,
.trouble_box_wrap .trouble_deco_right img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .trouble_box_wrap .trouble_deco_left img,
  .trouble_box_wrap .trouble_deco_right img {
    height: 100%;
  }
}
.trouble_box_wrap .trouble_deco_left {
  left: 18vw;
}
@media screen and (max-width: 768px) {
  .trouble_box_wrap .trouble_deco_left {
    left: 25px;
  }
}
.trouble_box_wrap .trouble_deco_right {
  right: 18vw;
}
@media screen and (max-width: 768px) {
  .trouble_box_wrap .trouble_deco_right {
    right: 25px;
  }
}

.trouble_box {
  background-color: #f9dd6c;
  padding: 20px;
}
.trouble_box .trouble_box_inner {
  background-color: #fff;
  border-radius: 20px;
  padding: 40px 40px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.3rem;
}
@media screen and (max-width: 768px) {
  .trouble_box .trouble_box_inner {
    padding: 30px 20px 40px;
    border-radius: 12px;
  }
}
.trouble_box .trouble_box_inner .trouble_script {
  font-family: "Allura", cursive;
  font-size: 9.6vw;
  color: #6a5441;
  line-height: 1;
  position: relative;
  top: -6vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .trouble_box .trouble_box_inner .trouble_script {
    font-size: 12vw;
  }
}
@media screen and (max-width: 768px) {
  .trouble_box .trouble_box_inner .trouble_script {
    font-size: 5.6rem;
  }
}
.trouble_box .trouble_box_inner .trouble_subtitle {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2.4rem;
  color: #6a5441;
  font-weight: 500;
  letter-spacing: 0.1rem;
  position: relative;
  top: -6vw;
}
@media screen and (max-width: 768px) {
  .trouble_box .trouble_box_inner .trouble_subtitle {
    font-size: 1.8rem;
    top: -12vw;
  }
}
.trouble_box .trouble_box_inner .trouble_mini_images {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 1vw;
  width: 20%;
  margin: auto;
  position: relative;
  top: -6vw;
}
@media screen and (max-width: 768px) {
  .trouble_box .trouble_box_inner .trouble_mini_images {
    width: 50%;
    top: -12vw;
  }
}
.trouble_box .trouble_box_inner .trouble_mini_images img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
}
.trouble_box .trouble_box_inner .trouble_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 40px;
       column-gap: 40px;
  row-gap: 0;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .trouble_box .trouble_box_inner .trouble_list {
    grid-template-columns: 1fr;
  }
}
.trouble_box .trouble_box_inner .trouble_list .trouble_item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 15px;
  border-bottom: 1px dashed #6a5441;
  margin-bottom: 15px;
}
.trouble_box .trouble_box_inner .trouble_list .trouble_item .trouble_icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}
.trouble_box .trouble_box_inner .trouble_list .trouble_item .trouble_icon img {
  width: 100%;
  height: 100%;
}
.trouble_box .trouble_box_inner .trouble_list .trouble_item p {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.6rem;
  color: #6a5441;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .trouble_box .trouble_box_inner .trouble_list .trouble_item p {
    font-size: 1.3rem;
  }
}

.content_container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}

.content_block {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 80px;
  padding: 0 80px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .content_block {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 60px;
    padding: 0 40px;
  }
}
@media screen and (max-width: 768px) {
  .content_block {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
    padding: 20px;
  }
}
.content_block.reverse {
  flex-direction: row-reverse;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .content_block.reverse {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .content_block.reverse {
    flex-direction: column;
  }
}
.content_block .content_text {
  flex: 1;
  min-width: 0;
}
.content_block .content_text .content_sub_heading02 {
  color: #388275;
}
.content_block .content_text .p {
  margin-bottom: 4vw;
}
@media screen and (max-width: 768px) {
  .content_block .content_text .p {
    margin-bottom: 8vw;
  }
}
.content_block .content_text .content_heading {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2.8rem;
  color: #6a5441;
  line-height: 1.4;
  font-weight: 500;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #6a5441;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .content_block .content_text .content_heading {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  .content_block .content_text .content_heading {
    font-size: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
  }
}
.content_block .content_text .content_heading span {
  color: #ED5B56;
}
.content_block .content_text .content_heading .span {
  color: #6a5441;
  font-size: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .content_block .content_text .content_heading .span {
    font-size: 1.8vw;
  }
}
@media screen and (max-width: 768px) {
  .content_block .content_text .content_heading .span {
    font-size: 3.4vw;
  }
}
.content_block .content_text p {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.6rem;
  color: #6a5441;
  line-height: 2;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .content_block .content_text p {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .content_block .content_text p {
    font-size: 1.4rem;
    line-height: 1.9;
  }
}
.content_block .content_text .content_sub_heading {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2rem;
  color: #6a5441;
  font-weight: 500;
  margin-top: 2.4rem;
  margin-bottom: 1.2rem;
}
@media screen and (max-width: 768px) {
  .content_block .content_text .content_sub_heading {
    font-size: 1.6rem;
  }
}
.content_block .content_image {
  width: 600px;
  flex-shrink: 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .content_block .content_image {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .content_block .content_image {
    width: 100%;
  }
}
.content_block .content_image img {
  width: 100%;
  height: 400px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 8px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .content_block .content_image img {
    height: 300px;
  }
}
@media screen and (max-width: 768px) {
  .content_block .content_image img {
    height: 220px;
  }
}

.pmtc_steps {
  display: flex;
  gap: 40px;
  margin-bottom: 80px;
  background-color: #fff;
  padding: 4vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .pmtc_steps {
    gap: 24px;
  }
}
@media screen and (max-width: 768px) {
  .pmtc_steps {
    flex-direction: column;
    gap: 32px;
    margin-bottom: 60px;
    padding: 8vw;
  }
}
.pmtc_steps .pmtc_step_item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pmtc_steps .pmtc_step_item .pmtc_step_image {
  width: 100%;
  height: 260px;
  overflow: hidden;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .pmtc_steps .pmtc_step_item .pmtc_step_image {
    height: 200px;
  }
}
@media screen and (max-width: 768px) {
  .pmtc_steps .pmtc_step_item .pmtc_step_image {
    height: 220px;
  }
}
.pmtc_steps .pmtc_step_item .pmtc_step_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.pmtc_steps .pmtc_step_item p {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.6rem;
  color: #6a5441;
  line-height: 2;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .pmtc_steps .pmtc_step_item p {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .pmtc_steps .pmtc_step_item p {
    font-size: 1.4rem;
  }
}

.content_text_only {
  width: 90%;
  margin: auto;
  margin-bottom: 60px;
}
.content_text_only p {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.4rem;
  color: #6a5441;
  line-height: 2.4;
}
@media screen and (max-width: 768px) {
  .content_text_only p {
    font-size: 1.3rem;
  }
}

.treatment_subheading {
  max-width: 1440px;
  width: 90%;
  margin: 0 auto 40px;
  padding: 0 80px;
  background-image: url(img/lower_sub_headline_bg.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 98px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .treatment_subheading {
    padding: 0 40px;
  }
}
@media screen and (max-width: 768px) {
  .treatment_subheading {
    padding: 0 10px;
    margin: 8vw auto;
    min-height: 72px;
    background-image: url(img/Frame651.png);
    background-size: 100% 100%;
  }
}
.treatment_subheading h3 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2.4rem;
  color: #6a5441;
  letter-spacing: 0.3rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .treatment_subheading h3 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .treatment_subheading h3 {
    font-size: 1.6rem;
  }
}

.merit_box {
  background-color: #fff;
  border: 7px solid #a9d0d5;
  border-radius: 30px;
  padding: 40px;
  margin-left: 80px;
  margin-right: 80px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  margin-bottom: 80px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .merit_box {
    padding: 32px;
    gap: 32px;
    margin-left: 40px;
    margin-right: 40px;
  }
}
@media screen and (max-width: 768px) {
  .merit_box {
    padding: 24px 20px;
    gap: 24px;
    border-radius: 20px;
    border-width: 4px;
    margin-bottom: 60px;
    margin-left: 20px;
    margin-right: 20px;
  }
}
.merit_box .merit_box_header {
  display: flex;
  align-items: center;
  gap: 40px;
  width: 100%;
  padding-bottom: 20px;
  border-bottom: 3px dashed #6a5441;
}
@media screen and (max-width: 768px) {
  .merit_box .merit_box_header {
    gap: 16px;
    padding-bottom: 16px;
  }
}
.merit_box .merit_box_header h3 {
  flex: 1;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2.8rem;
  color: #6a5441;
  font-weight: 500;
  letter-spacing: 0.28rem;
  text-align: center;
  line-height: 1.2;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .merit_box .merit_box_header h3 {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  .merit_box .merit_box_header h3 {
    font-size: 1.8rem;
    letter-spacing: 0.1rem;
  }
}
.merit_box .merit_box_header .merit_box_deco {
  flex-shrink: 0;
  width: 4vw;
  height: 4vw;
}
@media screen and (max-width: 768px) {
  .merit_box .merit_box_header .merit_box_deco {
    width: 8vw;
    height: 8vw;
  }
}
.merit_box .merit_box_header .merit_box_deco img {
  width: 100%;
  height: 100%;
  display: block;
}
.merit_box .merit_box_list {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.merit_box .merit_box_list .merit_box_item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 15px;
  border-bottom: 1px dashed #6a5441;
  margin-bottom: 15px;
}
.merit_box .merit_box_list .merit_box_item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.merit_box .merit_box_list .merit_box_item .merit_box_icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}
.merit_box .merit_box_list .merit_box_item .merit_box_icon img {
  width: 100%;
  height: 100%;
  display: block;
}
.merit_box .merit_box_list .merit_box_item p {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.6rem;
  color: #6a5441;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .merit_box .merit_box_list .merit_box_item p {
    font-size: 1.4rem;
  }
}

.merit_list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 60px;
}
.merit_list .merit_item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}
.merit_list .merit_item .merit_icon {
  width: 30px;
  flex-shrink: 0;
}
.merit_list .merit_item .merit_icon img {
  width: 100%;
}
.merit_list .merit_item p {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.6rem;
  color: #6a5441;
  line-height: 1.8;
}

.merit_cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .merit_cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media screen and (max-width: 768px) {
  .merit_cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.merit_cards .merit_card {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.merit_cards .merit_card .merit_card_image {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .merit_cards .merit_card .merit_card_image {
    height: 160px;
  }
}
.merit_cards .merit_card .merit_card_body {
  padding: 2rem 2rem 2.4rem;
  flex: 1;
}
.merit_cards .merit_card .merit_card_body .merit_number {
  font-family: "Josefin Sans", sans-serif;
  font-size: 1.3rem;
  color: #f18c34;
  letter-spacing: 0.15rem;
  margin-bottom: 0.6rem;
}
.merit_cards .merit_card .merit_card_body h4 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.8rem;
  color: #6a5441;
  font-weight: 500;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .merit_cards .merit_card .merit_card_body h4 {
    font-size: 1.6rem;
  }
}
.merit_cards .merit_card .merit_card_body p {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.3rem;
  color: #6a5441;
  line-height: 1.9;
}

.treatment_flow {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 60px;
}
.treatment_flow .flow_item {
  display: flex;
  gap: 3.2rem;
  position: relative;
  padding-bottom: 40px;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .treatment_flow .flow_item {
    gap: 2rem;
    padding-bottom: 30px;
  }
}
.treatment_flow .flow_item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 24px;
  top: 56px;
  bottom: 0;
  width: 2px;
  background-color: #f9dd6c;
}
@media screen and (max-width: 768px) {
  .treatment_flow .flow_item:not(:last-child)::after {
    left: 20px;
    top: 48px;
  }
}
.treatment_flow .flow_item .flow_number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #f9dd6c;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .treatment_flow .flow_item .flow_number {
    width: 40px;
    height: 40px;
  }
}
.treatment_flow .flow_item .flow_number span {
  font-family: "Josefin Sans", sans-serif;
  font-size: 2rem;
  color: #6a5441;
  font-weight: 600;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .treatment_flow .flow_item .flow_number span {
    font-size: 1.6rem;
  }
}
.treatment_flow .flow_item .flow_content {
  flex: 1;
}
.treatment_flow .flow_item .flow_content h4 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2rem;
  color: #6a5441;
  font-weight: 500;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .treatment_flow .flow_item .flow_content h4 {
    font-size: 1.6rem;
  }
}
.treatment_flow .flow_item .flow_content p {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.4rem;
  color: #6a5441;
  line-height: 2.2;
}
@media screen and (max-width: 768px) {
  .treatment_flow .flow_item .flow_content p {
    font-size: 1.3rem;
  }
}

.ortho-merit {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 80px;
  margin-bottom: 60px;
  background-color: #fff;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .ortho-merit {
    padding: 40px;
    gap: 24px;
  }
}
@media screen and (max-width: 768px) {
  .ortho-merit {
    padding: 20px;
    gap: 20px;
    flex-direction: column;
  }
}
.ortho-merit__card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: calc((100% - 80px) / 3);
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .ortho-merit__card {
    width: calc((100% - 24px) / 2);
  }
}
@media screen and (max-width: 768px) {
  .ortho-merit__card {
    width: 100%;
  }
}
.ortho-merit__img-wrap {
  width: 100%;
  height: 260px;
  overflow: hidden;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .ortho-merit__img-wrap {
    height: 200px;
  }
}
@media screen and (max-width: 768px) {
  .ortho-merit__img-wrap {
    height: 180px;
  }
}
.ortho-merit__img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.ortho-merit__badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px;
  border-radius: 170px;
  color: #fff;
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .ortho-merit__badge {
    gap: 0px;
  }
}
.ortho-merit__badge--red {
  background-color: #ed5b56;
}
.ortho-merit__badge--green {
  background-color: #388275;
}
.ortho-merit__badge--purple {
  background-color: #7b55e6;
}
.ortho-merit__badge--orange {
  background-color: #f18c34;
}
.ortho-merit__badge--teal {
  background-color: #48c6b5;
}
.ortho-merit__badge--blue {
  background-color: #3983dd;
}
.ortho-merit__badge-label {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .ortho-merit__badge-label {
    font-size: 1.4rem;
  }
}
.ortho-merit__badge-title {
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .ortho-merit__badge-title {
    font-size: 1.6rem;
  }
}
.ortho-merit__text {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.6rem;
  color: #6a5441;
  line-height: 2;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .ortho-merit__text {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .ortho-merit__text {
    font-size: 1.4rem;
  }
}

.ortho-flow-heading {
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 10px;
  margin-bottom: 0;
}
.ortho-flow-heading h3 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 3.2rem;
  color: #6a5441;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.2;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .ortho-flow-heading h3 {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 768px) {
  .ortho-flow-heading h3 {
    font-size: 2rem;
  }
}

.rc-intro {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding: 0 80px;
  margin-bottom: 80px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .rc-intro {
    flex-direction: column;
    gap: 24px;
    padding: 0 40px;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 768px) {
  .rc-intro {
    flex-direction: column;
    gap: 24px;
    padding: 0 10px;
    margin-bottom: 40px;
  }
}
.rc-intro__text {
  flex: 1;
  min-width: 0;
}
.rc-intro__text p {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.6rem;
  color: #6a5441;
  line-height: 2;
}
.rc-intro__text p + p {
  margin-top: 1.6rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .rc-intro__text p {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .rc-intro__text p {
    font-size: 1.4rem;
  }
}
.rc-intro__image {
  width: 600px;
  flex-shrink: 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .rc-intro__image {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .rc-intro__image {
    width: 100%;
  }
}
.rc-intro__image img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .rc-intro__image img {
    height: 300px;
  }
}
@media screen and (max-width: 768px) {
  .rc-intro__image img {
    height: 220px;
  }
}

.rc-block {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding: 0 80px;
  margin-bottom: 80px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .rc-block {
    flex-direction: column;
    gap: 24px;
    padding: 0 40px;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 768px) {
  .rc-block {
    flex-direction: column;
    gap: 24px;
    padding: 0 10px;
    margin-bottom: 40px;
  }
}
.rc-block--reverse {
  flex-direction: row-reverse;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .rc-block--reverse {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .rc-block--reverse {
    flex-direction: column;
  }
}
.rc-block__image {
  width: 600px;
  flex-shrink: 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .rc-block__image {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .rc-block__image {
    width: 100%;
  }
}
.rc-block__image img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .rc-block__image img {
    height: 300px;
  }
}
@media screen and (max-width: 768px) {
  .rc-block__image img {
    height: 220px;
  }
}
.rc-block__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .rc-block__body {
    gap: 15px;
  }
}
.rc-block__body p {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.6rem;
  color: #6a5441;
  line-height: 2;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .rc-block__body p {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .rc-block__body p {
    font-size: 1.4rem;
  }
}
.rc-block__heading {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2.8rem;
  color: #6a5441;
  font-weight: 500;
  line-height: 1.6;
}
.rc-block__heading span {
  color: #ed5b56;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .rc-block__heading {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  .rc-block__heading {
    font-size: 2rem;
  }
}
.rc-block__separator {
  width: 100%;
  height: 0;
  border-top: 1px dashed #6a5441;
}

.rc-reason-bg {
  background-color: #fff;
  padding: 60px 80px;
  margin-bottom: 80px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .rc-reason-bg {
    padding: 40px;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 768px) {
  .rc-reason-bg {
    padding: 30px 20px;
    margin-bottom: 40px;
  }
}

.rc-reason-cards {
  display: flex;
  gap: 40px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .rc-reason-cards {
    gap: 24px;
  }
}
@media screen and (max-width: 768px) {
  .rc-reason-cards {
    flex-direction: column;
    gap: 24px;
  }
}

.rc-reason-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.rc-reason-card__image {
  width: 100%;
  height: 260px;
  overflow: hidden;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .rc-reason-card__image {
    height: 200px;
  }
}
@media screen and (max-width: 768px) {
  .rc-reason-card__image {
    height: 220px;
  }
}
.rc-reason-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.rc-reason-card__label {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 170px;
  padding: 10px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  line-height: 2;
}
.rc-reason-card__label--a {
  background-color: #3983dd;
}
.rc-reason-card__label--b {
  background-color: #388275;
}
.rc-reason-card__label--c {
  background-color: #f18c34;
}
.rc-reason-card__text {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.6rem;
  color: #6a5441;
  line-height: 2;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .rc-reason-card__text {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .rc-reason-card__text {
    font-size: 1.4rem;
  }
}

.ora-subheading {
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 80px;
  margin-bottom: 60px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .ora-subheading {
    padding: 24px 40px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  .ora-subheading {
    padding: 20px;
    margin-bottom: 30px;
  }
}
.ora-subheading h3 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 3.2rem;
  color: #6a5441;
  font-weight: 500;
  letter-spacing: 0.32rem;
  line-height: 1.2;
  text-align: center;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .ora-subheading h3 {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 768px) {
  .ora-subheading h3 {
    font-size: 2.2rem;
  }
}

.ora-qa-heading {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  gap: 40px;
  padding: 0 20px 20px;
  margin-bottom: 40px;
  border-bottom: 3px dashed #6a5441;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .ora-qa-heading {
    padding: 0 40px 16px;
    gap: 24px;
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 768px) {
  .ora-qa-heading {
    padding: 0 0px 14px;
    gap: 16px;
    margin-bottom: 24px;
  }
}
.ora-qa-heading__icon, .ora-qa-heading__deco {
  width: 4vw;
  height: 4vw;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .ora-qa-heading__icon, .ora-qa-heading__deco {
    width: 8vw;
    height: 8vw;
  }
}
.ora-qa-heading__icon img, .ora-qa-heading__deco img {
  width: 100%;
  height: 100%;
}
.ora-qa-heading h3 {
  flex: 1;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2.8rem;
  color: #6a5441;
  font-weight: 500;
  letter-spacing: 0.28rem;
  line-height: 1.2;
  text-align: center;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .ora-qa-heading h3 {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  .ora-qa-heading h3 {
    font-size: 2rem;
  }
}

.ora-qa-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 80px;
  width: 90%;
  margin: auto;
  margin-bottom: 80px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .ora-qa-list {
    padding: 0 40px;
    margin-bottom: 60px;
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .ora-qa-list {
    padding: 0;
    margin-bottom: 40px;
    gap: 16px;
    width: 95%;
  }
}

.ora-qa-item {
  background-color: #fff;
  border-radius: 40px;
  padding: 20px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .ora-qa-item {
    padding: 20px 40px;
    border-radius: 24px;
  }
}
@media screen and (max-width: 768px) {
  .ora-qa-item {
    padding: 20px;
    border-radius: 16px;
    gap: 16px;
  }
}
.ora-qa-item__row {
  display: flex;
  align-items: center;
  gap: 20px;
}
.ora-qa-item__row--top {
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .ora-qa-item__row {
    gap: 14px;
    flex-flow: column;
    align-items: flex-start;
  }
}
.ora-qa-item__icon {
  position: relative;
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .ora-qa-item__icon {
    width: 45px;
    height: 45px;
  }
}
.ora-qa-item__icon--q {
  background-image: url(img/Maskgroup01.png);
}
@media screen and (max-width: 768px) {
  .ora-qa-item__icon--q {
    align-self: flex-start;
  }
}
.ora-qa-item__icon--a {
  background-image: url(img/Group347.png);
  align-self: flex-start;
}
.ora-qa-item__icon span {
  position: relative;
  z-index: 1;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2.8rem;
  color: #6a5441;
  letter-spacing: 0.28rem;
  line-height: 1;
}
.ora-qa-item__question {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2rem;
  color: #6a5441;
  font-weight: 500;
  letter-spacing: 0.2rem;
  line-height: 1;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .ora-qa-item__question {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  .ora-qa-item__question {
    font-size: 1.6rem;
  }
}
.ora-qa-item__answer {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ora-qa-item__answer p {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.6rem;
  color: #6a5441;
  line-height: 2;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .ora-qa-item__answer p {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .ora-qa-item__answer p {
    font-size: 1.4rem;
  }
}
.ora-qa-item__sub {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ora-qa-item__sub-title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.6rem;
  color: #f18c34;
  font-weight: 500;
  line-height: 2;
  color: #F18C34 !important;
}

.qa_list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 60px;
}
.qa_list .qa_item {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
}
.qa_list .qa_item .qa_question,
.qa_list .qa_item .qa_answer {
  display: flex;
  gap: 2.4rem;
  padding: 2rem 2.4rem;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .qa_list .qa_item .qa_question,
  .qa_list .qa_item .qa_answer {
    gap: 1.6rem;
    padding: 1.6rem;
  }
}
.qa_list .qa_item .qa_question .qa_label,
.qa_list .qa_item .qa_answer .qa_label {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .qa_list .qa_item .qa_question .qa_label,
  .qa_list .qa_item .qa_answer .qa_label {
    width: 40px;
    height: 40px;
  }
}
.qa_list .qa_item .qa_question .qa_label span,
.qa_list .qa_item .qa_answer .qa_label span {
  font-family: "Josefin Sans", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .qa_list .qa_item .qa_question .qa_label span,
  .qa_list .qa_item .qa_answer .qa_label span {
    font-size: 1.8rem;
  }
}
.qa_list .qa_item .qa_question .qa_text,
.qa_list .qa_item .qa_answer .qa_text {
  flex: 1;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.4rem;
  color: #6a5441;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .qa_list .qa_item .qa_question .qa_text,
  .qa_list .qa_item .qa_answer .qa_text {
    font-size: 1.3rem;
  }
}
.qa_list .qa_item .qa_question .qa_text p,
.qa_list .qa_item .qa_answer .qa_text p {
  margin-bottom: 0.8rem;
}
.qa_list .qa_item .qa_question .qa_text p:last-child,
.qa_list .qa_item .qa_answer .qa_text p:last-child {
  margin-bottom: 0;
}
.qa_list .qa_item .qa_question .qa_text .qa_sub,
.qa_list .qa_item .qa_answer .qa_text .qa_sub {
  margin-top: 0.8rem;
  padding-left: 1.6rem;
  border-left: 3px solid #f9dd6c;
}
.qa_list .qa_item .qa_question .qa_text .qa_sub p,
.qa_list .qa_item .qa_answer .qa_text .qa_sub p {
  font-size: 1.3rem;
}
.qa_list .qa_item .qa_question {
  background-color: #f9dd6c;
}
.qa_list .qa_item .qa_question .qa_label {
  background-color: #6a5441;
}
.qa_list .qa_item .qa_question .qa_label span {
  color: #fff;
}
.qa_list .qa_item .qa_question .qa_text {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
}
.qa_list .qa_item .qa_answer .qa_label {
  background-color: rgba(241, 140, 52, 0.15);
}
.qa_list .qa_item .qa_answer .qa_label span {
  color: #f18c34;
}

.stats_section {
  margin-bottom: 60px;
}
.stats_section .stats_lead {
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.8rem;
  color: #6a5441;
  font-weight: 500;
  margin-bottom: 3.2rem;
}
@media screen and (max-width: 768px) {
  .stats_section .stats_lead {
    font-size: 1.4rem;
  }
}
.stats_section .stats_label {
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2rem;
  color: #6a5441;
  font-weight: 700;
  margin-bottom: 2.4rem;
  padding: 1rem;
  background-color: #f9dd6c;
  border-radius: 4px;
}

.stats_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .stats_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}
.stats_grid .stat_item {
  text-align: center;
}
.stats_grid .stat_item .stat_number {
  font-family: "Josefin Sans", sans-serif;
  font-size: 4.8rem;
  color: #6a5441;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0.8rem;
}
@media screen and (max-width: 768px) {
  .stats_grid .stat_item .stat_number {
    font-size: 3.2rem;
  }
}
.stats_grid .stat_item .stat_bar {
  width: 100%;
  background-color: rgba(106, 84, 65, 0.1);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 1rem;
}
.stats_grid .stat_item .stat_bar .stat_fill {
  background-color: #6a5441;
  border-radius: 4px;
  transition: height 0.8s ease;
}
.stats_grid .stat_item .stat_country {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.6rem;
  color: #6a5441;
  font-weight: 500;
}

.stats_bar_chart {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 24px;
  height: 220px;
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 768px) {
  .stats_bar_chart {
    gap: 12px;
    height: 160px;
  }
}
.stats_bar_chart .bar_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  height: 100%;
  justify-content: flex-end;
}
.stats_bar_chart .bar_item .bar_pct {
  font-family: "Josefin Sans", sans-serif;
  font-size: 3.2rem;
  color: #6a5441;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .stats_bar_chart .bar_item .bar_pct {
    font-size: 2rem;
  }
}
.stats_bar_chart .bar_item .bar_fill {
  width: 100%;
  background-color: #6a5441;
  border-radius: 4px 4px 0 0;
  margin-bottom: 8px;
}
.stats_bar_chart .bar_item .bar_fill.light {
  background-color: rgba(106, 84, 65, 0.35);
}
.stats_bar_chart .bar_item .bar_country {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.4rem;
  color: #6a5441;
  margin-top: 0.4rem;
}

.disease_tags {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin: 2.4rem 0;
}
.disease_tags .disease_tag {
  display: flex;
  align-items: center;
  gap: 10px;
}
.disease_tags .disease_tag .tag_icon {
  width: 24px;
}
.disease_tags .disease_tag .tag_icon img {
  width: 100%;
}
.disease_tags .disease_tag span {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.5rem;
  color: #6a5441;
}

.prd-flow-subheading {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-bottom: 20px;
  border-bottom: 3px dashed #6a5441;
  margin: 0 80px 40px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .prd-flow-subheading {
    margin: 0 40px 32px;
    gap: 24px;
  }
}
@media screen and (max-width: 768px) {
  .prd-flow-subheading {
    margin: 0 20px 24px;
    gap: 16px;
    padding-bottom: 16px;
  }
}
.prd-flow-subheading__icon-left {
  width: 46px;
  height: 50px;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .prd-flow-subheading__icon-left {
    width: 32px;
    height: 35px;
  }
}
.prd-flow-subheading__icon-right {
  width: 54px;
  height: 50px;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .prd-flow-subheading__icon-right {
    width: 38px;
    height: 35px;
  }
}
.prd-flow-subheading h3 {
  flex: 1;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2.8rem;
  color: #6a5441;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1.2;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .prd-flow-subheading h3 {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 768px) {
  .prd-flow-subheading h3 {
    font-size: 1.8rem;
  }
}

.prd-flow {
  display: flex;
  flex-direction: column;
  margin: 0 80px 60px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .prd-flow {
    margin: 0 40px 48px;
  }
}
@media screen and (max-width: 768px) {
  .prd-flow {
    margin: 0 16px 40px;
  }
}
.prd-flow__item {
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
  margin-bottom: 40px;
}
.prd-flow__item:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .prd-flow__item {
    gap: 12px;
    align-items: center;
    flex-flow: column;
  }
}
.prd-flow__item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: calc(120px / 2 - 1px);
  top: calc(50% + 120px / 2);
  height: calc(50% - 120px / 2 + 40px);
  border-left: 2px dashed #6a5441;
}
@media screen and (max-width: 768px) {
  .prd-flow__item:not(:last-child)::after {
    display: none;
  }
}
.prd-flow__item:not(:first-child)::before {
  content: "";
  position: absolute;
  left: calc(120px / 2 - 1px);
  top: 0;
  height: calc(50% - 120px / 2);
  border-left: 2px dashed #6a5441;
}
@media screen and (max-width: 768px) {
  .prd-flow__item:not(:first-child)::before {
    display: none;
  }
}
.prd-flow__num-wrap {
  position: relative;
  flex-shrink: 0;
  width: 120px;
  height: 120px;
}
@media screen and (max-width: 768px) {
  .prd-flow__num-wrap {
    width: 72px;
    height: 72px;
  }
}
.prd-flow__num-circle {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.prd-flow__num-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 4rem;
  color: #6a5441;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .prd-flow__num-text {
    font-size: 2.4rem;
  }
}
.prd-flow__row {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
}
.prd-flow__arrow {
  width: 90px;
  height: 112px;
  flex-shrink: 0;
  margin-right: -10px;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .prd-flow__arrow {
    width: 60px;
    height: 75px;
  }
}
@media screen and (max-width: 768px) {
  .prd-flow__arrow {
    display: none;
  }
}
.prd-flow__card {
  background-color: #fff;
  border-radius: 20px;
  padding: 40px 60px;
  display: flex;
  align-items: center;
  gap: 40px;
  flex: 1;
  min-width: 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .prd-flow__card {
    padding: 32px 40px;
    gap: 24px;
  }
}
@media screen and (max-width: 768px) {
  .prd-flow__card {
    flex-direction: column;
    padding: 20px 16px;
    gap: 16px;
    align-items: flex-start;
  }
}
.prd-flow__card--no-img .prd-flow__card-content {
  flex: 1;
}
.prd-flow__card-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  flex: 1;
  min-width: 0;
}
@media screen and (max-width: 768px) {
  .prd-flow__card-content {
    gap: 12px;
  }
}
.prd-flow__card-title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.2;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .prd-flow__card-title {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 768px) {
  .prd-flow__card-title {
    font-size: 1.8rem;
  }
}
.prd-flow__card-title--red {
  color: #ed5b56;
}
.prd-flow__card-title--teal {
  color: #48c6b5;
}
.prd-flow__card-title--blue {
  color: #3983dd;
}
.prd-flow__card-title--purple {
  color: #7b55e6;
}
.prd-flow__card-text {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.6rem;
  color: #6a5441;
  line-height: 2;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .prd-flow__card-text {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .prd-flow__card-text {
    font-size: 1.3rem;
  }
}
.prd-flow__card-text p {
  margin: 0;
}
.prd-flow__card-text--wide {
  width: 100%;
}
.prd-flow__card-img {
  width: 260px;
  height: 260px;
  -o-object-fit: contain;
     object-fit: contain;
  flex-shrink: 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .prd-flow__card-img {
    width: 180px;
    height: 180px;
  }
}
@media screen and (max-width: 768px) {
  .prd-flow__card-img {
    width: 100%;
    height: auto;
    max-width: 200px;
    align-self: center;
  }
}

.ceramic-material {
  position: relative;
  padding: 8vw 80px;
  margin-bottom: 60px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .ceramic-material {
    padding: 8vw 40px;
  }
}
@media screen and (max-width: 768px) {
  .ceramic-material {
    padding: 18vw 20px;
    margin-bottom: 40px;
  }
}
.ceramic-material__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: fill;
     object-fit: fill;
  pointer-events: none;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .ceramic-material__bg {
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: left;
       object-position: left;
  }
}
.ceramic-material__item {
  position: relative;
  z-index: 1;
  padding: 40px 0;
}
.ceramic-material__item:not(:last-child) {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .ceramic-material__item {
    padding: 28px 0;
  }
}
.ceramic-material__heading {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-bottom: 25px;
  position: relative;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .ceramic-material__heading {
    gap: 5px;
  }
}
.ceramic-material__heading--orange::after, .ceramic-material__heading--teal::after, .ceramic-material__heading--blue::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 8px;
}
.ceramic-material__heading--orange::after {
  background: repeating-linear-gradient(-60deg, #f18c34 0px, #f18c34 4px, #fbd5a3 4px, #fbd5a3 8px);
}
.ceramic-material__heading--teal::after {
  background: repeating-linear-gradient(-60deg, #48c6b5 0px, #48c6b5 4px, #a8e8e0 4px, #a8e8e0 8px);
}
.ceramic-material__heading--blue::after {
  background: repeating-linear-gradient(-60deg, #3983dd 0px, #3983dd 4px, #9ec4f0 4px, #9ec4f0 8px);
}
.ceramic-material__icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .ceramic-material__icon {
    width: 36px;
    height: 36px;
  }
}
.ceramic-material__title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2.8rem;
  color: #6a5441;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .ceramic-material__title {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 768px) {
  .ceramic-material__title {
    font-size: 1.8rem;
  }
}
.ceramic-material__text {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.6rem;
  color: #6a5441;
  line-height: 2;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .ceramic-material__text {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .ceramic-material__text {
    font-size: 1.4rem;
  }
}

.whitening_types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 60px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .whitening_types {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .whitening_types {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.whitening_types .whitening_type_item {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
}
.whitening_types .whitening_type_item .whitening_type_image {
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
}
.whitening_types .whitening_type_item .whitening_type_body {
  padding: 2rem;
}
.whitening_types .whitening_type_item .whitening_type_body h4 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.8rem;
  color: #6a5441;
  font-weight: 500;
  margin-bottom: 0.8rem;
}
@media screen and (max-width: 768px) {
  .whitening_types .whitening_type_item .whitening_type_body h4 {
    font-size: 1.5rem;
  }
}
.whitening_types .whitening_type_item .whitening_type_body p {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.3rem;
  color: #6a5441;
  line-height: 2;
}

.denture_types {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 60px;
}
.denture_types .denture_type_item {
  display: flex;
  gap: 3.2rem;
  align-items: flex-start;
  background-color: #fff;
  border-radius: 12px;
  padding: 2.8rem;
}
@media screen and (max-width: 768px) {
  .denture_types .denture_type_item {
    flex-direction: column;
    gap: 1.6rem;
    padding: 2rem;
  }
}
.denture_types .denture_type_item .denture_type_image {
  width: 200px;
  height: 160px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .denture_types .denture_type_item .denture_type_image {
    width: 100%;
    height: 160px;
  }
}
.denture_types .denture_type_item .denture_type_text {
  flex: 1;
}
.denture_types .denture_type_item .denture_type_text h4 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2rem;
  color: #6a5441;
  font-weight: 500;
  margin-bottom: 1.2rem;
}
@media screen and (max-width: 768px) {
  .denture_types .denture_type_item .denture_type_text h4 {
    font-size: 1.6rem;
  }
}
.denture_types .denture_type_item .denture_type_text p {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.4rem;
  color: #6a5441;
  line-height: 2.2;
}
@media screen and (max-width: 768px) {
  .denture_types .denture_type_item .denture_type_text p {
    font-size: 1.3rem;
  }
}

.maternity_types {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 60px;
}
.maternity_types .maternity_type_item {
  background-color: #fff;
  border-radius: 12px;
  padding: 2.8rem;
}
.maternity_types .maternity_type_item h4 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2rem;
  color: #6a5441;
  font-weight: 500;
  margin-bottom: 1.2rem;
  padding-bottom: 1.2rem;
  border-bottom: 2px solid #f9dd6c;
}
@media screen and (max-width: 768px) {
  .maternity_types .maternity_type_item h4 {
    font-size: 1.6rem;
  }
}
.maternity_types .maternity_type_item p {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.4rem;
  color: #6a5441;
  line-height: 2.2;
}
@media screen and (max-width: 768px) {
  .maternity_types .maternity_type_item p {
    font-size: 1.3rem;
  }
}

.section_wave {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-bottom: -1px;
}
.section_wave img {
  width: 100%;
  display: block;
}

.prd-infographic {
  background-color: #fff;
  display: flex;
  justify-content: center;
  padding: 40px 80px;
  width: 80%;
  margin: auto;
  margin-bottom: 4vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .prd-infographic {
    padding: 30px 40px;
  }
}
@media screen and (max-width: 768px) {
  .prd-infographic {
    width: 90%;
    padding: 24px 20px;
  }
}
.prd-infographic img {
  width: 100%;
  height: auto;
  display: block;
}

.prd-citation {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.4rem;
  color: #6a5441;
  line-height: 2;
  padding: 0 80px;
  margin-bottom: 40px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .prd-citation {
    padding: 0 40px;
  }
}
@media screen and (max-width: 768px) {
  .prd-citation {
    padding: 0 20px;
    font-size: 1.2rem;
  }
}

.prd-text {
  padding: 0 80px;
  margin-bottom: 60px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .prd-text {
    padding: 0 40px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  .prd-text {
    padding: 0 20px;
    margin-bottom: 32px;
  }
}
.prd-text p {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.6rem;
  color: #6a5441;
  line-height: 2;
}
.prd-text p + p {
  margin-top: 1.6rem;
}
.prd-text--center {
  text-align: center;
}

.prd-disease-tags {
  background-color: #fff;
  border: 2px solid #f18c34;
  border-radius: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px 80px;
  align-items: center;
  justify-content: center;
  padding: 40px;
  margin: 0 80px 60px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .prd-disease-tags {
    margin: 0 40px 40px;
    gap: 24px 40px;
    padding: 30px;
  }
}
@media screen and (max-width: 768px) {
  .prd-disease-tags {
    margin: 0 20px 32px;
    gap: 20px 30px;
    padding: 24px 20px;
  }
}

.prd-disease-tag {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
  width: 10%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .prd-disease-tag {
    width: 25%;
  }
}
@media screen and (max-width: 768px) {
  .prd-disease-tag {
    width: 42%;
  }
}
.prd-disease-tag__icon {
  width: 2vw;
  height: 2vw;
  display: block;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .prd-disease-tag__icon {
    width: 4vw;
    height: 4vw;
  }
}
.prd-disease-tag__name {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.6rem;
  color: #6a5441;
  white-space: nowrap;
  line-height: 1.2;
}

.prd-country-table {
  display: flex;
  align-items: stretch;
  justify-content: center;
  margin: 0 80px 4vw;
  overflow-x: auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .prd-country-table {
    margin: 0 40px 16px;
  }
}
@media screen and (max-width: 768px) {
  .prd-country-table {
    width: 90%;
    margin: auto;
    flex-flow: column;
    margin-bottom: 8vw;
  }
}
.prd-country-table__col {
  display: flex;
  flex-direction: column;
  width: 25%;
  flex-shrink: 0;
  border-right: 1px solid #6a5441;
}
.prd-country-table__col--last {
  border-right: none;
}
@media screen and (max-width: 768px) {
  .prd-country-table__col {
    width: 100%;
    border: none;
  }
}
.prd-country-table__header {
  background-color: #f9dd6c;
  padding: 10px 20px;
  text-align: center;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 2rem;
  color: #6a5441;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .prd-country-table__header {
    font-size: 1.6rem;
    padding: 8px 10px;
  }
}
.prd-country-table__body {
  background-color: #fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .prd-country-table__body {
    padding: 12px 8px;
  }
}
.prd-country-table__body img {
  width: 260px;
  height: 173px;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .prd-country-table__body img {
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  .prd-country-table__body img {
    width: 80%;
    height: auto;
  }
}
.prd-country-table__body p {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.6rem;
  color: #6a5441;
  text-align: center;
  line-height: 2;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .prd-country-table__body p {
    font-size: 1.2rem;
  }
}

.prd-caption {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.6rem;
  color: #6a5441;
  line-height: 2;
  text-align: center;
  padding: 0 80px;
  margin-bottom: 20px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .prd-caption {
    padding: 0 40px;
  }
}
@media screen and (max-width: 768px) {
  .prd-caption {
    padding: 0 20px;
    font-size: 1.4rem;
  }
}

.prd-label {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.6rem;
  color: #6a5441;
  line-height: 2;
  text-align: center;
  padding: 0 80px;
  margin-bottom: 60px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .prd-label {
    padding: 0 40px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  .prd-label {
    padding: 0 20px;
    margin-bottom: 32px;
    font-size: 1.4rem;
  }
}

.orange_bg_section {
  background-color: #f18c34;
  padding: 60px 0;
  margin-bottom: 80px;
}
.orange_bg_section .content_container p {
  color: #fff;
}
.orange_bg_section .content_container h3 {
  color: #fff;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2rem;
  margin-bottom: 1.6rem;
}

#fee_main {
  position: relative;
  padding-bottom: 200px;
}
@media screen and (max-width: 768px) {
  #fee_main {
    padding-bottom: 100px;
  }
}
#fee_main::before {
  content: "";
  position: absolute;
  top: -40vw;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(img/body_bg.png);
  background-size: 100% auto;
  background-repeat: repeat-y;
  background-position: top center;
  z-index: -1;
  pointer-events: none;
}

.fee-main__inner {
  max-width: 1440px;
  width: 90%;
  margin: 0 auto;
  padding: 60px 0 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .fee-main__inner {
    padding: 40px 0 0;
  }
}
@media screen and (max-width: 768px) {
  .fee-main__inner {
    padding: 8vw 0 0;
  }
}

.fee-page-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .fee-page-heading {
    gap: 1rem;
    margin-bottom: 40px;
  }
}
.fee-page-heading::after {
  content: "";
  flex-basis: 100%;
  width: 217px;
  height: 23px;
  max-width: 100%;
  background-image: url(img/lower_headline_bottom.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: -1rem;
}
@media screen and (max-width: 768px) {
  .fee-page-heading::after {
    width: 160px;
    height: 17px;
    margin-top: 1rem;
  }
}
.fee-page-heading .title_icon {
  width: 5vw;
  height: 5vw;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .fee-page-heading .title_icon {
    width: 10vw;
    height: 10vw;
  }
}
.fee-page-heading .title_icon img {
  width: 100%;
  height: 100%;
}
.fee-page-heading h2 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 3.6rem;
  color: #6a5441;
  letter-spacing: 0.4rem;
  font-weight: 500;
  white-space: nowrap;
  line-height: 1.2;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .fee-page-heading h2 {
    font-size: 3rem;
    white-space: normal;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .fee-page-heading h2 {
    font-size: 2rem;
    letter-spacing: 0.1rem;
    white-space: normal;
    text-align: center;
  }
}

.fee-tax-notice {
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.6rem;
  color: #6a5441;
  letter-spacing: 0.05em;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .fee-tax-notice {
    font-size: 1.3rem;
    margin-bottom: 8vw;
  }
}

.fee-section {
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .fee-section {
    margin-bottom: 12vw;
  }
}
.fee-section__heading {
  max-width: 100%;
  margin: 0 auto 40px;
  padding: 0 80px;
  background-image: url(img/lower_sub_headline_bg.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 98px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .fee-section__heading {
    padding: 0 40px;
  }
}
@media screen and (max-width: 768px) {
  .fee-section__heading {
    padding: 0 10px;
    margin-bottom: 6vw;
    min-height: 72px;
    background-image: url(img/Frame651.png);
  }
}
.fee-section__heading h2 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 3.2rem;
  font-weight: 500;
  color: #6a5441;
  letter-spacing: 0.2em;
  text-align: center;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .fee-section__heading h2 {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 768px) {
  .fee-section__heading h2 {
    font-size: 2rem;
  }
}

.fee-table-wrap {
  margin-bottom: 24px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.fee-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.fee-table__th {
  background-color: #f18c34;
  color: #fff;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 15px 10px;
  text-align: center;
  border-right: 1px solid #fff;
}
.fee-table__th:last-child {
  border-right: none;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .fee-table__th {
    font-size: 1.6rem;
    padding: 12px 8px;
  }
}
@media screen and (max-width: 768px) {
  .fee-table__th {
    font-size: 1.4rem;
    padding: 10px 6px;
  }
}
.fee-table__td {
  background-color: #fff;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  color: #6a5441;
  letter-spacing: 0.05em;
  padding: 15px 10px;
  border-bottom: 1px solid #6a5441;
  border-right: 1px solid #6a5441;
  vertical-align: middle;
  line-height: 1.6;
}
.fee-table__td:first-child {
  border-left: 1px solid #6a5441;
}
.fee-table__td:last-child {
  border-right: 1px solid #6a5441;
}
.fee-table__td--center {
  text-align: center;
}
.fee-table__td--small {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .fee-table__td--small {
    font-size: 1.2rem;
  }
}
.fee-table__td--orange {
  background-color: #f18c34;
  color: #fff;
  text-align: center;
  font-weight: 500;
}
.fee-table__td--first {
  border-top: 1px solid #6a5441;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .fee-table__td {
    font-size: 1.6rem;
    padding: 12px 8px;
  }
}
@media screen and (max-width: 768px) {
  .fee-table__td {
    font-size: 1.3rem;
    padding: 10px 6px;
  }
}
.fee-table--visit .fee-table__td {
  text-align: center;
}

.fee_table_last .fee-table {
  width: 70%;
}
@media screen and (max-width: 768px) {
  .fee_table_last .fee-table {
    width: 100%;
  }
}

.fee-btn-wrap {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  .fee-btn-wrap {
    margin-top: 6vw;
  }
}

.fee-btn {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 20px 60px;
  background-color: #fff;
  border: 2px solid #6a5441;
  border-radius: 90px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.fee-btn:hover {
  opacity: 0.75;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .fee-btn {
    padding: 16px 40px;
    gap: 16px;
  }
}
@media screen and (max-width: 768px) {
  .fee-btn {
    padding: 14px 24px;
    gap: 12px;
  }
}
.fee-btn__text {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  color: #6a5441;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .fee-btn__text {
    font-size: 1.6rem;
  }
}
.fee-btn__icon {
  position: relative;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}
.fee-btn__icon img {
  width: 100%;
  height: 100%;
  display: block;
}
@media screen and (max-width: 768px) {
  .fee-btn__icon {
    width: 36px;
    height: 36px;
  }
}
.fee-btn__arrow {
  position: absolute !important;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px !important;
  height: auto !important;
}

.fee-denture-gallery {
  display: flex;
  gap: 40px;
  margin-top: 32px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .fee-denture-gallery {
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .fee-denture-gallery {
    flex-direction: column;
    gap: 6vw;
    margin-top: 6vw;
  }
}
.fee-denture-gallery__item {
  flex: 1;
  text-align: center;
}
.fee-denture-gallery__item img {
  width: 100%;
  height: 320px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin-bottom: 12px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .fee-denture-gallery__item img {
    height: 220px;
  }
}
@media screen and (max-width: 768px) {
  .fee-denture-gallery__item img {
    height: 56vw;
    margin-bottom: 8px;
  }
}
.fee-denture-gallery__item p {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.6rem;
  color: #6a5441;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .fee-denture-gallery__item p {
    font-size: 1.4rem;
  }
}

#staff_main {
  position: relative;
  padding-bottom: 200px;
}
@media screen and (max-width: 768px) {
  #staff_main {
    padding-bottom: 100px;
  }
}
#staff_main::before {
  content: "";
  position: absolute;
  top: -40vw;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(img/body_bg.png);
  background-size: 100% auto;
  background-repeat: repeat-y;
  background-position: top center;
  z-index: -1;
  pointer-events: none;
}

.staff-main__inner {
  max-width: 1440px;
  width: 90%;
  margin: 0 auto;
  padding: 60px 0 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .staff-main__inner {
    padding: 40px 0 0;
  }
}
@media screen and (max-width: 768px) {
  .staff-main__inner {
    padding: 8vw 0 0;
  }
}

.staff-section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: 60px;
  margin-top: 80px;
}
.staff-section-heading:first-child {
  margin-top: 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .staff-section-heading {
    margin-bottom: 40px;
    margin-top: 60px;
  }
}
@media screen and (max-width: 768px) {
  .staff-section-heading {
    margin-bottom: 8vw;
    margin-top: 10vw;
  }
}
.staff-section-heading__title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .staff-section-heading__title-row {
    gap: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .staff-section-heading__title-row {
    gap: 1rem;
  }
}
.staff-section-heading__deco {
  width: 5vw;
  height: 5vw;
  flex-shrink: 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .staff-section-heading__deco {
    width: 6vw;
    height: 6vw;
  }
}
@media screen and (max-width: 768px) {
  .staff-section-heading__deco {
    width: 10vw;
    height: 10vw;
  }
}
.staff-section-heading__deco img {
  width: 100%;
  height: 100%;
}
.staff-section-heading h2 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 4.8rem;
  color: #6a5441;
  letter-spacing: 0.48rem;
  font-weight: 500;
  white-space: nowrap;
  line-height: 1.2;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .staff-section-heading h2 {
    font-size: 3.2rem;
    letter-spacing: 0.3rem;
  }
}
@media screen and (max-width: 768px) {
  .staff-section-heading h2 {
    font-size: 2.4rem;
    letter-spacing: 0.2rem;
    white-space: normal;
    text-align: center;
  }
}
.staff-section-heading__rainbow {
  margin-top: 8px;
  text-align: center;
}
.staff-section-heading__rainbow img {
  width: 217px;
  max-width: 100%;
  height: auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .staff-section-heading__rainbow img {
    width: 180px;
  }
}
@media screen and (max-width: 768px) {
  .staff-section-heading__rainbow img {
    width: 140px;
  }
}

.staff-name-badge {
  position: relative;
  width: 134px;
  height: 168px;
  flex-shrink: 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .staff-name-badge {
    width: 110px;
    height: 138px;
  }
}
@media screen and (max-width: 768px) {
  .staff-name-badge {
    width: 80px;
    height: 100px;
  }
}
.staff-name-badge__color {
  position: absolute;
  top: -1vw;
  left: -3vw;
  width: 122px;
  height: 117px;
  transform: scaleY(-1) rotate(-200deg);
  pointer-events: none;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .staff-name-badge__color {
    width: 100px;
    height: 96px;
    top: -0.5vw;
    left: -2vw;
  }
}
@media screen and (max-width: 768px) {
  .staff-name-badge__color {
    width: 70px;
    height: 67px;
  }
}
.staff-name-badge__leaf {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 134px;
  height: 107px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .staff-name-badge__leaf {
    width: 110px;
    height: 88px;
  }
}
@media screen and (max-width: 768px) {
  .staff-name-badge__leaf {
    width: 80px;
    height: 65px;
  }
}
.staff-name-badge__role {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: #6a5441;
  letter-spacing: 0.04rem;
  white-space: nowrap;
  line-height: 1.3;
  text-align: center;
  z-index: 1;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .staff-name-badge__role {
    font-size: 1.3rem;
    letter-spacing: 0;
  }
}
@media screen and (max-width: 768px) {
  .staff-name-badge__role {
    font-size: 1rem;
    letter-spacing: 0;
  }
}

.staff-name-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .staff-name-row {
    gap: 14px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .staff-name-row {
    gap: 10px;
    margin-bottom: 4vw;
  }
}

.staff-name-text {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding-top: 60px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .staff-name-text {
    padding-top: 40px;
    gap: 12px;
  }
}
@media screen and (max-width: 768px) {
  .staff-name-text {
    padding-top: 28px;
    gap: 8px;
    flex-wrap: wrap;
  }
}
.staff-name-text__ja {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 3.6rem;
  font-weight: 500;
  color: #6a5441;
  letter-spacing: 0.36rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .staff-name-text__ja {
    font-size: 2.6rem;
    letter-spacing: 0.2rem;
  }
}
@media screen and (max-width: 768px) {
  .staff-name-text__ja {
    font-size: 2rem;
    letter-spacing: 0.1rem;
  }
}
.staff-name-text__en {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.24rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .staff-name-text__en {
    font-size: 1.6rem;
    letter-spacing: 0.1rem;
  }
}
@media screen and (max-width: 768px) {
  .staff-name-text__en {
    font-size: 1.4rem;
    letter-spacing: 0.05rem;
  }
}
.staff-name-text__en--blue {
  color: #3983dd;
}
.staff-name-text__en--orange {
  color: #f18c34;
}
.staff-name-text__en--red {
  color: #ed5b56;
}
.staff-name-text__en--green {
  color: #388275;
}

.staff-director-wrap {
  border-radius: 60px;
  padding: 60px 80px 80px;
  margin-bottom: 80px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .staff-director-wrap {
    padding: 0;
    border-radius: 40px;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 768px) {
  .staff-director-wrap {
    padding: 6vw 5vw 8vw;
    border-radius: 20px;
    margin-bottom: 12vw;
  }
}

.staff-director-main {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  margin-bottom: 4vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .staff-director-main {
    gap: 24px;
    margin-bottom: 3vw;
  }
}
@media screen and (max-width: 768px) {
  .staff-director-main {
    flex-direction: column-reverse;
    gap: 4vw;
    margin-bottom: 6vw;
  }
}

.staff-director-photo {
  flex-shrink: 0;
  width: 520px;
  height: 560px;
  border-radius: 30px;
  border: 10px solid #fff;
  box-shadow: 20px 20px 0 0 #48c6b5;
  overflow: hidden;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .staff-director-photo {
    width: 300px;
    height: 340px;
    border-width: 6px;
    box-shadow: 12px 12px 0 0 #48c6b5;
  }
}
@media screen and (max-width: 768px) {
  .staff-director-photo {
    width: 100%;
    height: 70vw;
    border-width: 6px;
    box-shadow: 10px 10px 0 0 #48c6b5;
  }
}
.staff-director-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  display: block;
}

.staff-info-card {
  background: #fff;
  border-radius: 30px;
  padding: 30px 30px 40px;
  width: 540px;
  margin-bottom: 20px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .staff-info-card {
    width: 100%;
    padding: 20px 20px 30px;
    border-radius: 20px;
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 768px) {
  .staff-info-card {
    width: 100%;
    padding: 5vw 4vw 6vw;
    border-radius: 16px;
    margin-bottom: 4vw;
  }
}
.staff-info-card--teal {
  border: 5px solid #388275;
}
.staff-info-card--orange {
  border: 5px solid #f18c34;
}
.staff-info-card--purple {
  border: 5px solid #7b55e6;
}
.staff-info-card--blue {
  border: 5px solid #3983dd;
}
.staff-info-card--red {
  border: 5px solid #ed5b56;
}
.staff-info-card--green {
  border: 5px solid #388275;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .staff-info-card--teal, .staff-info-card--orange, .staff-info-card--purple, .staff-info-card--blue, .staff-info-card--red, .staff-info-card--green {
    border-width: 4px;
  }
}
.staff-info-card--full {
  width: 100%;
  box-sizing: border-box;
}
.staff-info-card__label {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 130px;
  padding: 10px 20px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2.4rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.24rem;
  margin-bottom: 30px;
}
.staff-info-card__label--teal {
  background-color: #388275;
}
.staff-info-card__label--orange {
  background-color: #f18c34;
}
.staff-info-card__label--purple {
  background-color: #7b55e6;
}
.staff-info-card__label--blue {
  background-color: #3983dd;
}
.staff-info-card__label--red {
  background-color: #ed5b56;
}
.staff-info-card__label--green {
  background-color: #388275;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .staff-info-card__label {
    font-size: 1.8rem;
    padding: 8px 16px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .staff-info-card__label {
    font-size: 1.4rem;
    padding: 7px 14px;
    margin-bottom: 3vw;
  }
}
.staff-info-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.staff-info-card__list--wide {
  flex: 1;
}
@media screen and (max-width: 768px) {
  .staff-info-card__list--wide {
    width: 100%;
  }
}
.staff-info-card__list li {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: #6a5441;
  letter-spacing: 0.05em;
  line-height: 1.6;
  padding-bottom: 14px;
  border-bottom: 1px dashed #6a5441;
  margin-bottom: 14px;
}
.staff-info-card__list li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .staff-info-card__list li {
    font-size: 1.4rem;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 768px) {
  .staff-info-card__list li {
    font-size: 1.3rem;
    padding-bottom: 3vw;
    margin-bottom: 3vw;
    line-height: 1.7;
  }
}
.staff-info-card__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 60px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .staff-info-card__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
@media screen and (max-width: 768px) {
  .staff-info-card__grid {
    grid-template-columns: 1fr;
  }
}
.staff-info-card__cols {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .staff-info-card__cols {
    gap: 30px;
    flex-direction: column;
    gap: 0;
  }
}
@media screen and (max-width: 768px) {
  .staff-info-card__cols {
    flex-direction: column;
    gap: 0;
  }
}
.staff-info-card__message {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: #6a5441;
  letter-spacing: 0.05em;
  line-height: 1.8;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .staff-info-card__message {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .staff-info-card__message {
    font-size: 1.3rem;
    line-height: 1.9;
  }
}

.staff-director-main .staff_flex {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.staff-director-main .staff-info-card {
  flex: 1;
  width: auto;
  min-width: 0;
}

.staff-doctor__info-stack .staff-info-card {
  width: 100%;
}

.staff-accordion {
  background: #fff;
  border-radius: 30px;
  padding: 60px 80px;
  margin-bottom: 80px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .staff-accordion {
    padding: 30px 30px;
    border-radius: 20px;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 768px) {
  .staff-accordion {
    padding: 6vw 4vw;
    margin-bottom: 12vw;
    border-radius: 16px;
  }
}
.staff-accordion__item {
  margin-bottom: 24px;
}
.staff-accordion__item:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .staff-accordion__item {
    margin-bottom: 4vw;
  }
}
.staff-accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: none;
  cursor: pointer;
  border-radius: 160px;
  padding: 20px 40px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2.4rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.24rem;
  text-align: left;
  line-height: 1.4;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .staff-accordion__trigger {
    font-size: 1.8rem;
    padding: 14px 24px;
    letter-spacing: 0.1rem;
  }
}
@media screen and (max-width: 768px) {
  .staff-accordion__trigger {
    font-size: 1.5rem;
    padding: 12px 16px;
    letter-spacing: 0.05rem;
  }
}
.staff-accordion__trigger--red {
  background-color: #ed5b56;
}
.staff-accordion__trigger--orange {
  background-color: #f18c34;
}
.staff-accordion__trigger--yellow {
  background-color: #f5d45b;
  color: #6a5441;
}
.staff-accordion__trigger--teal {
  background-color: #48c6b5;
}
.staff-accordion__trigger--dark-teal {
  background-color: #388275;
}
.staff-accordion__trigger--light-blue {
  background-color: #a9d0d5;
}
.staff-accordion__trigger--blue {
  background-color: #3983dd;
}
.staff-accordion__trigger--purple {
  background-color: #7b55e6;
}
.staff-accordion__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .staff-accordion__icon {
    width: 26px;
    height: 26px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .staff-accordion__icon {
    width: 22px;
    height: 22px;
    font-size: 1.4rem;
  }
}
.staff-accordion__minus {
  display: none !important;
}
.staff-accordion__plus {
  display: block;
}
.staff-accordion__item.is-open .staff-accordion__minus {
  display: block !important;
}
.staff-accordion__item.is-open .staff-accordion__plus {
  display: none;
}
.staff-accordion__body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.staff-accordion__body p {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: #6a5441;
  letter-spacing: 0.05em;
  line-height: 2;
  padding: 0 40px;
  margin-top: 24px;
  margin-bottom: 10px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .staff-accordion__body p {
    font-size: 1.4rem;
    padding: 0 20px;
    margin-top: 18px;
  }
}
@media screen and (max-width: 768px) {
  .staff-accordion__body p {
    font-size: 1.3rem;
    padding: 0 10px;
    line-height: 2;
    margin-top: 4vw;
  }
}
.staff-accordion__item.is-open .staff-accordion__body {
  max-height: 800px;
}

.staff-doctors-wrap {
  background: #fff;
  border-radius: 60px;
  padding: 60px 80px 80px;
  margin-bottom: 80px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .staff-doctors-wrap {
    padding: 40px 30px 50px;
    border-radius: 40px;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 768px) {
  .staff-doctors-wrap {
    padding: 6vw 5vw 8vw;
    border-radius: 20px;
    margin-bottom: 12vw;
  }
}
@media screen and (max-width: 768px) {
  .staff-doctors-wrap .staff-doctor:nth-child(2) .staff-name-badge__role {
    left: 0;
    transform: translate(0, -50%);
  }
}

.staff-doctor {
  margin-bottom: 60px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .staff-doctor {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 768px) {
  .staff-doctor {
    margin-bottom: 12vw;
  }
}
.staff-doctor:last-child {
  margin-bottom: 0;
}
.staff-doctor__header {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 20px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .staff-doctor__header {
    gap: 12px;
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 768px) {
  .staff-doctor__header {
    gap: 10px;
    margin-bottom: 4vw;
  }
}
.staff-doctor__header--right {
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .staff-doctor__header--right {
    justify-content: flex-start;
  }
}
.staff-doctor__header--center {
  justify-content: center;
}
.staff-doctor__body {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .staff-doctor__body {
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .staff-doctor__body {
    flex-direction: column;
    gap: 4vw;
  }
  .staff-doctor__body .staff-info-cards {
    width: 100%;
  }
}
.staff-doctor__body--center {
  justify-content: center;
}
.staff-doctor__body > .staff-info-card {
  flex: 1;
  min-width: 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .staff-doctor__body > .staff-info-card {
    width: auto;
  }
}
.staff-doctor__photo {
  flex-shrink: 0;
  width: 520px;
  height: 360px;
  border-radius: 30px;
  border: 10px solid #fff;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .staff-doctor__photo {
    width: 280px;
    height: 210px;
    border-width: 6px;
    border-radius: 20px;
  }
}
@media screen and (max-width: 768px) {
  .staff-doctor__photo {
    width: 100%;
    height: 60vw;
    border-width: 6px;
    border-radius: 16px;
  }
}
.staff-doctor__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.staff-doctor__info-stack {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .staff-doctor__info-stack {
    gap: 12px;
  }
}
@media screen and (max-width: 768px) {
  .staff-doctor__info-stack {
    width: 100%;
    gap: 4vw;
  }
}
.staff-doctor__suzuki-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex-shrink: 0;
  width: 520px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .staff-doctor__suzuki-left {
    width: 280px;
    gap: 16px;
  }
}
@media screen and (max-width: 768px) {
  .staff-doctor__suzuki-left {
    width: 100%;
    gap: 4vw;
  }
}
.staff-doctor__suzuki-left .staff-info-card {
  width: 100%;
}
.staff-doctor__full-card {
  width: 100%;
  margin-top: 24px;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .staff-doctor__full-card {
    margin-top: 16px;
  }
}
@media screen and (max-width: 768px) {
  .staff-doctor__full-card {
    margin-top: 4vw;
  }
}
.staff-doctor__video-wrap {
  flex-shrink: 0;
  width: 560px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .staff-doctor__video-wrap {
    width: 280px;
  }
}
@media screen and (max-width: 768px) {
  .staff-doctor__video-wrap {
    width: 100%;
  }
}
.staff-doctor__video-wrap iframe {
  width: 100%;
  aspect-ratio: 16/9;
  height: auto;
  border-radius: 10px;
  display: block;
}
.staff-doctor__video-thumb {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
  margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
  .staff-doctor__video-thumb {
    margin-bottom: 2vw;
  }
}
.staff-doctor__video-label {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: #6a5441;
  letter-spacing: 0.2rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .staff-doctor__video-label {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .staff-doctor__video-label {
    font-size: 1.4rem;
  }
}
.staff-doctor--reverse .staff-doctor__photo {
  order: 2;
}
@media screen and (max-width: 768px) {
  .staff-doctor--reverse .staff-doctor__photo {
    order: 0;
  }
}
.staff-doctor--reverse .staff-doctor__video-wrap {
  order: 1;
}
@media screen and (max-width: 768px) {
  .staff-doctor--reverse .staff-doctor__video-wrap {
    order: 0;
  }
}

@media screen and (max-width: 768px) {
  .re {
    flex-direction: column-reverse;
  }
}

#access_main {
  position: relative;
  padding-bottom: 200px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #access_main {
    padding-bottom: 180px;
  }
}
@media screen and (max-width: 768px) {
  #access_main {
    padding-bottom: 200px;
  }
}
#access_main::before {
  content: "";
  position: absolute;
  top: -40vw;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(img/body_bg.png);
  background-size: 100% auto;
  background-repeat: repeat-y;
  background-position: top center;
  z-index: -1;
  pointer-events: none;
}

.access-main__inner {
  max-width: 1440px;
  width: 90%;
  margin: 0 auto;
  padding: 60px 0 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .access-main__inner {
    padding: 40px 0 0;
  }
}
@media screen and (max-width: 768px) {
  .access-main__inner {
    padding: 8vw 0 0;
  }
}

.access-info {
  display: flex;
  gap: 60px;
  align-items: flex-end;
  margin-bottom: 60px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .access-info {
    gap: 30px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  .access-info {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
  }
}
.access-info__rows {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .access-info__rows {
    gap: 12px;
  }
}
@media screen and (max-width: 768px) {
  .access-info__rows {
    gap: 10px;
  }
}
.access-info__row {
  display: flex;
  gap: 20px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .access-info__row {
    gap: 10px;
  }
}
.access-info__row--tall {
  align-items: stretch;
}
.access-info__badge {
  width: 200px;
  min-width: 200px;
  height: 52px;
  border-radius: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.2rem;
  flex-shrink: 0;
}
.access-info__badge--blue {
  background: #3983dd;
}
.access-info__badge--teal {
  background: #48c6b5;
}
.access-info__badge--green {
  background: #388275;
}
.access-info__badge--orange {
  background: #f18c34;
}
.access-info__badge--red {
  background: #ed5b56;
}
.access-info__badge--purple {
  background: #7b55e6;
}
.access-info__badge--tall {
  height: auto;
  min-height: 88px;
  padding: 10px 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .access-info__badge {
    width: 160px;
    min-width: 160px;
    font-size: 1.6rem;
    height: 44px;
  }
  .access-info__badge--tall {
    height: auto;
    min-height: 72px;
  }
}
@media screen and (max-width: 768px) {
  .access-info__badge {
    width: 110px;
    min-width: 110px;
    font-size: 1.3rem;
    height: 40px;
    letter-spacing: 0.1rem;
  }
  .access-info__badge--tall {
    height: auto;
    min-height: 64px;
  }
}
.access-info__value {
  flex: 1;
  background: #fff;
  border-radius: 200px;
  padding: 15px 20px;
  color: #6a5441;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.18rem;
  line-height: 1.6;
}
.access-info__value--tall {
  border-radius: 26px;
  padding: 16px 20px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .access-info__value {
    font-size: 1.5rem;
    padding: 12px 16px;
  }
}
@media screen and (max-width: 768px) {
  .access-info__value {
    font-size: 1.3rem;
    padding: 10px 12px;
    letter-spacing: 0.06rem;
  }
  .access-info__value--tall {
    border-radius: 16px;
  }
}
.access-info__photo {
  width: 600px;
  flex-shrink: 0;
}
.access-info__photo img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .access-info__photo {
    width: 340px;
  }
  .access-info__photo img {
    height: 280px;
  }
}
@media screen and (max-width: 768px) {
  .access-info__photo {
    width: 100%;
  }
  .access-info__photo img {
    height: 220px;
  }
}

.access-station {
  display: flex;
  gap: 60px;
  margin-bottom: 40px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .access-station {
    gap: 40px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 768px) {
  .access-station {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 30px;
  }
}
.access-station img {
  width: 35%;
}
@media screen and (max-width: 768px) {
  .access-station img {
    width: 100%;
  }
}
.access-station__text {
  flex: 1;
  width: 65%;
}
@media screen and (max-width: 768px) {
  .access-station__text {
    width: 100%;
  }
}
.access-station__text p {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2rem;
  color: #6a5441;
  letter-spacing: 0.2rem;
  line-height: 2;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .access-station__text p {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 768px) {
  .access-station__text p {
    font-size: 1.6rem;
  }
}

.access-bus {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 8vw;
}
@media screen and (max-width: 768px) {
  .access-bus {
    gap: 14px;
    margin-top: 16vw;
  }
}
.access-bus__line {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2rem;
  color: #6a5441;
  letter-spacing: 0.2rem;
  line-height: 2;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .access-bus__line {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 768px) {
  .access-bus__line {
    font-size: 1.6rem;
  }
}
.access-bus__row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.access-bus__label {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2rem;
  color: #6a5441;
  letter-spacing: 0.2rem;
  white-space: nowrap;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .access-bus__label {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 768px) {
  .access-bus__label {
    font-size: 1.5rem;
  }
}
.access-bus__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 170px;
  padding: 10px 40px;
  color: #fff;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.2rem;
  text-decoration: none;
  text-align: center;
  transition: opacity 0.2s;
}
.access-bus__btn:hover {
  opacity: 0.8;
}
.access-bus__btn--blue {
  background: #3983dd;
}
.access-bus__btn--orange {
  background: #f18c34;
}
.access-bus__btn--red {
  background: #ed5b56;
}
.access-bus__btn--full {
  display: flex;
  width: 100%;
  border-radius: 180px;
  padding: 10px 20px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .access-bus__btn {
    font-size: 1.5rem;
    padding: 8px 28px;
  }
}
@media screen and (max-width: 768px) {
  .access-bus__btn {
    font-size: 1.4rem;
    padding: 8px 20px;
  }
}

.access-photos {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
}
.access-photos img {
  flex: 1;
  width: 0;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .access-photos {
    gap: 24px;
    margin-bottom: 40px;
  }
  .access-photos img {
    height: 280px;
  }
}
@media screen and (max-width: 768px) {
  .access-photos {
    flex-direction: column;
    margin-bottom: 40px;
  }
  .access-photos img {
    width: 100%;
    height: 220px;
  }
}

.access-indoor-view {
  margin-bottom: 60px;
}
.access-indoor-view iframe {
  width: 100%;
  height: 500px;
  border: none;
  border-radius: 12px;
  display: block;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .access-indoor-view iframe {
    height: 380px;
  }
}
@media screen and (max-width: 768px) {
  .access-indoor-view iframe {
    height: 280px;
    border-radius: 8px;
  }
}

.access-exterior {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .access-exterior {
    gap: 30px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  .access-exterior {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
  }
}
.access-exterior__text {
  width: 640px;
  flex-shrink: 0;
}
.access-exterior__text p {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 2.4rem;
  color: #6a5441;
  letter-spacing: 0.24rem;
  line-height: 2;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .access-exterior__text {
    width: 360px;
  }
  .access-exterior__text p {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  .access-exterior__text {
    width: 100%;
  }
  .access-exterior__text p {
    font-size: 1.6rem;
    letter-spacing: 0.1rem;
  }
}
.access-exterior__photo {
  flex: 1;
}
.access-exterior__photo img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .access-exterior__photo img {
    height: 280px;
  }
}
@media screen and (max-width: 768px) {
  .access-exterior__photo {
    width: 100%;
  }
  .access-exterior__photo img {
    height: 220px;
  }
}

.access-interior {
  background: #fff;
  border-radius: 24px;
  padding: 60px;
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-bottom: 4vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .access-interior {
    padding: 40px;
    gap: 40px;
    border-radius: 16px;
    margin-bottom: 6vw;
  }
}
@media screen and (max-width: 768px) {
  .access-interior {
    padding: 24px 16px;
    gap: 40px;
    border-radius: 12px;
    margin-bottom: 12vw;
  }
}

.access-card-group {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .access-card-group {
    gap: 24px;
  }
}
@media screen and (max-width: 768px) {
  .access-card-group {
    gap: 24px;
  }
}

.access-card {
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .access-card {
    width: calc(50% - 12px);
  }
}
@media screen and (max-width: 768px) {
  .access-card {
    width: 100%;
  }
}
.access-card__img {
  width: 100%;
  height: 260px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}
.access-card__badge {
  border-radius: 170px;
  padding: 10px 20px;
  color: #fff;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.16rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.access-card__badge--blue {
  background: #3983dd;
}
.access-card__badge--green {
  background: #388275;
}
.access-card__badge--orange {
  background: #f18c34;
}
.access-card__badge--red {
  background: #ed5b56;
}
.access-card p {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.6rem;
  color: #6a5441;
  line-height: 2;
  letter-spacing: 0;
}

/* cspell:disable */
.access-epios {
  background: #fff;
  border: 10px solid #f9dd6c;
  border-radius: 40px;
  padding: 40px 80px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 4vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .access-epios {
    padding: 30px 40px;
    border-radius: 24px;
    margin-bottom: 6vw;
  }
}
@media screen and (max-width: 768px) {
  .access-epios {
    padding: 20px 8px;
    border-radius: 16px;
    border-width: 6px;
    gap: 20px;
    margin-bottom: 12vw;
  }
}
.access-epios__header {
  background: #f9dd6c;
  border-radius: 160px;
  padding: 20px 40px;
  color: #6a5441;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.24rem;
  text-align: center;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .access-epios__header {
    font-size: 2rem;
    padding: 16px 30px;
  }
}
@media screen and (max-width: 768px) {
  .access-epios__header {
    font-size: 1.7rem;
    padding: 14px 24px;
    border-radius: 100px;
  }
}
.access-epios__content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .access-epios__content {
    flex-direction: column;
    gap: 24px;
  }
}
.access-epios__left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.access-epios__left > p {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.6rem;
  color: #6a5441;
  letter-spacing: 0.16rem;
  line-height: 2;
}
.access-epios__items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 100%;
}
.access-epios__item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.access-epios__num {
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: 90px;
  color: #fff;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}
.access-epios__item-text {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.6rem;
  color: #6a5441;
  line-height: 2;
}
.access-epios__footer {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.6rem;
  color: #6a5441;
  line-height: 2;
  letter-spacing: 0;
}
.access-epios__right {
  width: 440px;
  flex-shrink: 0;
}
.access-epios__right img {
  width: 100%;
  height: 440px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 12px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .access-epios__right {
    width: 300px;
  }
  .access-epios__right img {
    height: 300px;
  }
}
@media screen and (max-width: 768px) {
  .access-epios__right {
    width: 100%;
  }
  .access-epios__right img {
    height: auto;
    max-height: 300px;
  }
}

/* cspell:enable */
.access-certification-heading {
  max-width: 100%;
  margin: 0 auto 40px;
  padding: 0 80px;
  background-image: url(img/lower_sub_headline_bg.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 98px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .access-certification-heading {
    padding: 0 40px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 768px) {
  .access-certification-heading {
    padding: 0 10px;
    margin-bottom: 6vw;
    min-height: 72px;
    background-image: url(img/Frame651.png);
  }
}
.access-certification-heading h2 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 3.2rem;
  font-weight: 500;
  color: #6a5441;
  letter-spacing: 0.2em;
  text-align: center;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .access-certification-heading h2 {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  .access-certification-heading h2 {
    font-size: 1.8rem;
  }
}

.access-certification {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .access-certification {
    gap: 40px;
  }
}
@media screen and (max-width: 768px) {
  .access-certification {
    flex-direction: column;
    gap: 24px;
  }
}
.access-certification__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.access-certification__text p {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.6rem;
  color: #6a5441;
  letter-spacing: 0.16rem;
  line-height: 2;
}
.access-certification__items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 514px;
}
.access-certification__item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.access-certification__num {
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: 90px;
  color: #fff;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}
.access-certification__item-text {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.6rem;
  color: #6a5441;
  line-height: 2;
}
.access-certification__photo {
  width: 440px;
  flex-shrink: 0;
}
.access-certification__photo img {
  width: 100%;
  height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}
@media screen and (max-width: 768px) {
  .access-certification__photo img {
    width: 100%;
    height: auto;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .access-certification__photo {
    width: 300px;
  }
  .access-certification__photo img {
    height: 400px;
  }
}
@media screen and (max-width: 768px) {
  .access-certification__photo {
    width: 100%;
  }
}

#recruit_main {
  position: relative;
  padding-bottom: 200px;
}
@media screen and (max-width: 768px) {
  #recruit_main {
    padding-bottom: 100px;
  }
}
#recruit_main::before {
  content: "";
  position: absolute;
  top: -40vw;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(img/body_bg.png);
  background-size: 100% auto;
  background-repeat: repeat-y;
  background-position: top center;
  z-index: -1;
  pointer-events: none;
}

.recruit-main__inner {
  max-width: 1440px;
  width: 90%;
  margin: 0 auto;
  padding: 60px 0 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .recruit-main__inner {
    padding: 40px 0 0;
  }
}
@media screen and (max-width: 768px) {
  .recruit-main__inner {
    padding: 8vw 0 0;
  }
}

.recruit-sub-heading {
  max-width: 100%;
  margin: 0 auto 40px;
  padding: 0 80px;
  background-image: url(img/lower_sub_headline_bg.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 98px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .recruit-sub-heading {
    padding: 0 40px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 768px) {
  .recruit-sub-heading {
    padding: 0 10px;
    margin-bottom: 6vw;
    min-height: 72px;
    background-image: url(img/Frame651.png);
  }
}
.recruit-sub-heading h2 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 3.2rem;
  font-weight: 500;
  color: #6a5441;
  letter-spacing: 0.2em;
  text-align: center;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .recruit-sub-heading h2 {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  .recruit-sub-heading h2 {
    font-size: 1.8rem;
  }
}

.recruit-intro {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 80px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .recruit-intro {
    gap: 24px;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 768px) {
  .recruit-intro {
    flex-direction: column;
    gap: 6vw;
    margin-bottom: 12vw;
  }
}
.recruit-intro__text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .recruit-intro__text {
    gap: 5vw;
  }
}
.recruit-intro__title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 3.2rem;
  font-weight: 500;
  color: #6a5441;
  letter-spacing: 0.1em;
  line-height: 1.6;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .recruit-intro__title {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  .recruit-intro__title {
    font-size: 2rem;
  }
}
.recruit-intro__title .accent {
  color: #48c6b5;
}
.recruit-intro__divider {
  width: 100%;
  border: none;
  border-top: 1px solid #6a5441;
  margin: 0;
}
.recruit-intro__body {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.6rem;
  color: #6a5441;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .recruit-intro__body {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .recruit-intro__body {
    font-size: 1.4rem;
  }
}
.recruit-intro__photo {
  flex-shrink: 0;
  width: 600px;
  height: 400px;
  overflow: hidden;
  border-radius: 20px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .recruit-intro__photo {
    width: 340px;
    height: 240px;
  }
}
@media screen and (max-width: 768px) {
  .recruit-intro__photo {
    width: 100%;
    height: 60vw;
    border-radius: 12px;
  }
}
.recruit-intro__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.recruit-promise {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 80px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .recruit-promise {
    gap: 30px;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 768px) {
  .recruit-promise {
    gap: 12vw;
    margin-bottom: 12vw;
  }
}
.recruit-promise__item {
  display: flex;
  gap: 80px;
  align-items: center;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .recruit-promise__item {
    gap: 30px;
  }
}
@media screen and (max-width: 768px) {
  .recruit-promise__item {
    flex-direction: column;
    gap: 6vw;
  }
}
.recruit-promise__item--reverse .recruit-promise__image {
  order: 2;
}
@media screen and (max-width: 768px) {
  .recruit-promise__item--reverse .recruit-promise__image {
    order: 0;
  }
}
.recruit-promise__image {
  flex-shrink: 0;
  width: 560px;
  height: 360px;
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .recruit-promise__image {
    width: 300px;
    height: 200px;
    border-radius: 14px;
  }
}
@media screen and (max-width: 768px) {
  .recruit-promise__image {
    width: 100%;
    height: 56vw;
    border-radius: 10px;
  }
}
.recruit-promise__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .recruit-promise__image img {
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media screen and (max-width: 768px) {
  .recruit-promise__image img {
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.recruit-promise__text-col {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .recruit-promise__text-col {
    gap: 4vw;
  }
}
.recruit-promise__num-row {
  display: flex;
  align-items: center;
  gap: 30px;
  font-family: "Zen Maru Gothic", sans-serif;
  white-space: nowrap;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .recruit-promise__num-row {
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .recruit-promise__num-row {
    gap: 16px;
  }
}
.recruit-promise__num {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 6.4rem;
  font-weight: 500;
  line-height: 1;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .recruit-promise__num {
    font-size: 4.8rem;
  }
}
@media screen and (max-width: 768px) {
  .recruit-promise__num {
    font-size: 4rem;
  }
}
.recruit-promise__num--red {
  color: #ed5b56;
}
.recruit-promise__num--orange {
  color: #f18c34;
}
.recruit-promise__num--teal {
  color: #48c6b5;
}
.recruit-promise__label {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 3.2rem;
  font-weight: 500;
  color: #6a5441;
  line-height: 1.6;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .recruit-promise__label {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  .recruit-promise__label {
    font-size: 2rem;
    white-space: normal;
  }
}
.recruit-promise__label .accent {
  color: inherit;
}
.recruit-promise__label--red .accent {
  color: #ed5b56;
}
.recruit-promise__label--orange .accent {
  color: #f18c34;
}
.recruit-promise__label--teal .accent {
  color: #48c6b5;
}
.recruit-promise__divider {
  width: 100%;
  border: none;
  border-top: 1px solid #6a5441;
  margin: 0;
}
.recruit-promise__body {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.6rem;
  color: #6a5441;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .recruit-promise__body {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .recruit-promise__body {
    font-size: 1.4rem;
  }
}

.recruit-want {
  background: #fff;
  border: 7px solid #f9dd6c;
  border-radius: 30px;
  padding: 60px 160px;
  margin-bottom: 80px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .recruit-want {
    padding: 40px 60px;
    margin-bottom: 60px;
    border-radius: 20px;
    border-width: 5px;
  }
}
@media screen and (max-width: 768px) {
  .recruit-want {
    padding: 6vw 5vw;
    margin-bottom: 12vw;
    border-radius: 16px;
    border-width: 4px;
  }
}
.recruit-want__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.recruit-want__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 15px;
  margin-bottom: 40px;
  border-bottom: 1px dashed #6a5441;
}
.recruit-want__item:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .recruit-want__item {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 768px) {
  .recruit-want__item {
    margin-bottom: 6vw;
    align-items: flex-start;
  }
}
.recruit-want__item p {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 2rem;
  color: #6a5441;
  line-height: 1.4;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .recruit-want__item p {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .recruit-want__item p {
    font-size: 1.4rem;
    line-height: 1.6;
  }
}
.recruit-want__icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
}
@media screen and (max-width: 768px) {
  .recruit-want__icon {
    width: 24px;
    height: 24px;
    margin-top: 2px;
  }
}

.recruit-process {
  display: flex;
  gap: 26px;
  align-items: flex-start;
  margin-bottom: 60px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .recruit-process {
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 768px) {
  .recruit-process {
    flex-direction: column;
    gap: 8vw;
    margin-bottom: 12vw;
  }
}
.recruit-process__item {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .recruit-process__item {
    flex: 0 0 calc(50% - 8px);
  }
}
@media screen and (max-width: 768px) {
  .recruit-process__item {
    width: 100%;
  }
}
.recruit-process__photo-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
}
.recruit-process__photo-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.recruit-process__badge {
  position: absolute;
  top: 0;
  left: 0;
  width: 63px;
  height: 63px;
  background: #fff;
  border-bottom-right-radius: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 10px 10px 8px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 4.8rem;
  line-height: 1;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .recruit-process__badge {
    width: 50px;
    height: 50px;
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 768px) {
  .recruit-process__badge {
    width: 56px;
    height: 56px;
    font-size: 4rem;
  }
}
.recruit-process__badge--blue {
  color: #3983dd;
}
.recruit-process__badge--green {
  color: #388275;
}
.recruit-process__badge--purple {
  color: #7b55e6;
}
.recruit-process__badge--red {
  color: #ed5b56;
}
.recruit-process__label {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 170px;
  padding: 8px 10px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: #fff;
  line-height: 2;
  text-align: center;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .recruit-process__label {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .recruit-process__label {
    font-size: 1.6rem;
  }
}
.recruit-process__label--blue {
  background-color: #3983dd;
}
.recruit-process__label--green {
  background-color: #388275;
}
.recruit-process__label--purple {
  background-color: #7b55e6;
}
.recruit-process__label--red {
  background-color: #ed5b56;
}
.recruit-process__desc {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.recruit-process__desc p {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.6rem;
  color: #6a5441;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .recruit-process__desc p {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 768px) {
  .recruit-process__desc p {
    font-size: 1.4rem;
  }
}
.recruit-process__contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 20%;
  margin-bottom: 4vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .recruit-process__contact-info {
    width: 25%;
  }
}
@media screen and (max-width: 768px) {
  .recruit-process__contact-info {
    width: 60%;
    margin-bottom: 8vw;
  }
}
.recruit-process__contact-info p {
  color: #6a5441;
}
.recruit-process__phone-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #fff;
  border: 2px solid #3983dd;
  border-radius: 160px;
  padding: 10px 40px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.recruit-process__phone-btn:hover {
  opacity: 0.75;
}
.recruit-process__phone-btn img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.recruit-process__phone-btn span {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 2.4rem;
  color: #3983dd;
  line-height: 1.2;
  white-space: nowrap;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .recruit-process__phone-btn span {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  .recruit-process__phone-btn span {
    font-size: 2rem;
  }
}

.recruit-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 60px 0;
  margin-bottom: 80px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .recruit-cta {
    padding: 40px 0;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 768px) {
  .recruit-cta {
    padding: 8vw 0;
    margin-bottom: 12vw;
    gap: 4vw;
  }
}
.recruit-cta__text {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 2rem;
  color: #6a5441;
  line-height: 2;
  text-align: center;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .recruit-cta__text {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .recruit-cta__text {
    font-size: 1.4rem;
  }
}
.recruit-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #fff;
  border: 2px solid #F18C34;
  border-radius: 160px;
  padding: 10px 40px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.recruit-cta__btn:hover {
  opacity: 0.75;
}
.recruit-cta__btn img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.recruit-cta__btn span {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 2.4rem;
  color: #F18C34;
  line-height: 1.2;
  white-space: nowrap;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .recruit-cta__btn span {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  .recruit-cta__btn span {
    font-size: 2rem;
  }
}

.recruit-job {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .recruit-job {
    margin-bottom: 10vw;
  }
}
.recruit-job:last-child {
  margin-bottom: 0;
}
.recruit-job__heading {
  display: flex;
  align-items: flex-start;
  width: 100%;
  margin: 0 auto;
  gap: 40px;
  padding: 0 80px 20px;
  margin-bottom: 40px;
  border-bottom: 3px dashed #6a5441;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .recruit-job__heading {
    padding: 0 40px 16px;
    gap: 24px;
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 768px) {
  .recruit-job__heading {
    padding: 0 20px 14px;
    gap: 16px;
    margin-bottom: 24px;
  }
}
.recruit-job__heading h3 {
  flex: 1;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2.8rem;
  font-weight: 500;
  color: #6a5441;
  letter-spacing: 0.28rem;
  text-align: center;
  line-height: 1.2;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .recruit-job__heading h3 {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 768px) {
  .recruit-job__heading h3 {
    font-size: 1.8rem;
    letter-spacing: 0.1rem;
  }
}
.recruit-job__deco {
  width: 4vw;
  height: 4vw;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .recruit-job__deco {
    width: 8vw;
    height: 8vw;
  }
}
.recruit-job__table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .recruit-job__table-wrap {
    margin-bottom: 8vw;
  }
}
.recruit-job__table {
  width: 100%;
  border-collapse: collapse;
}
.recruit-job__table .recruit-job__th {
  width: 28%;
  background-color: #f9dd6c;
  border-bottom: 1px solid #6a5441;
  padding: 20px 10px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: #6a5441;
  letter-spacing: 0.18rem;
  text-align: center;
  vertical-align: middle;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .recruit-job__table .recruit-job__th {
    font-size: 1.4rem;
    padding: 14px 8px;
    width: 32%;
  }
}
@media screen and (max-width: 768px) {
  .recruit-job__table .recruit-job__th {
    font-size: 1.2rem;
    padding: 12px 6px;
    letter-spacing: 0;
    width: 35%;
  }
}
.recruit-job__table .recruit-job__td {
  background-color: #fff;
  border-bottom: 1px solid #6a5441;
  padding: 20px 40px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: #6a5441;
  letter-spacing: 0.18rem;
  vertical-align: middle;
  line-height: 1.6;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .recruit-job__table .recruit-job__td {
    font-size: 1.4rem;
    padding: 14px 20px;
  }
}
@media screen and (max-width: 768px) {
  .recruit-job__table .recruit-job__td {
    font-size: 1.2rem;
    padding: 12px 14px;
    letter-spacing: 0;
  }
}/*# sourceMappingURL=style.css.map */