@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital@0;1&family=Noto+Sans+JP:wght@400;700&family=Noto+Serif+JP:wght@400;600&display=swap");
/* アニメーションベンダープレフィックス込み指定 */
/* アニメーションベンダープレフィックス込み指定 */
html {
  font-size: 16px;
}

body {
  font-family: "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  line-height: 1.6;
  letter-spacing: 0.1rem;
  color: #3a3a3a;
  background: #fbfcfe;
  font-feature-settings: "palt";
}
body.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}

a {
  color: #ffc5dd;
  text-decoration: none;
}

img {
  max-width: 100%;
}

#loader {
  width: 100%;
  height: 100%;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}
#loader .load_logo {
  width: 180px;
}
@media all and (max-width: 639px) {
  #loader .load_logo {
    width: 120px;
  }
}
#loader .load_logo img {
  width: 100%;
}

main {
  overflow: hidden;
}

header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  transition: 0.3s ease;
}
@media all and (max-width: 1080px) {
  header {
    background: #fbfcfe;
  }
}
header #header {
  height: 90px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
@media all and (max-width: 1580px) {
  header #header {
    justify-content: flex-end;
    margin-right: 100px;
  }
}
@media all and (max-width: 1080px) {
  header #header {
    justify-content: flex-start;
    padding: 1rem 0.5rem;
    border-radius: 0;
    margin-right: 0;
  }
}
@media all and (max-width: 639px) {
  header #header {
    height: 60px;
  }
}
header #header #logo {
  width: 360px;
  padding: 2rem 3rem;
  transition: 0.3s ease;
  background: #fbfcfe;
  position: absolute;
  top: 0;
  left: 0;
}
@media all and (max-width: 1080px) {
  header #header #logo {
    width: 260px;
    padding: 0.5rem;
  }
}
@media all and (max-width: 639px) {
  header #header #logo {
    width: 160px;
    padding: 0.5rem 1rem;
  }
}
header #header #logo a {
  display: block;
}
header #header .head_contact {
  position: absolute;
  top: 0;
  right: 0;
  text-align: center;
}
@media all and (max-width: 1080px) {
  header #header .head_contact {
    display: none;
  }
}
@media all and (max-width: 639px) {
  header #header .head_contact {
    margin-left: 100px;
  }
}
header #header .head_contact .head_link {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
header #header .head_contact .head_link li {
  margin-left: 1rem;
}
header #header .head_contact .head_link li a {
  font-size: 1.5rem;
}
header #header .head_contact .head_link .head_insta a {
  color: #cf2e92;
}
header #header .head_contact .head_link .head_fb a {
  color: #3b5998;
}
header #header .head_contact .web_btn a {
  width: 90px;
  height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f7458e;
  color: #fff;
  font-size: 0.875rem;
}
header #header .head_contact .web_btn a span {
  font-size: 1.5rem;
  transition: 0.3s ease;
}
header #header .head_contact .web_btn a:hover span {
  transform: rotate(10deg);
}
@media all and (max-width: 1080px) {
  header #header .head_contact .web_btn {
    width: 80px;
  }
  header #header .head_contact .web_btn a {
    padding: 0.5rem;
    font-size: 0.75rem;
    line-height: 1.2;
  }
  header #header .head_contact .web_btn a span {
    width: 30px;
    margin: auto;
  }
}
header.upMove {
  position: fixed;
  width: 100%;
  animation: upAnime 0.5s forwards;
}
header.downMove {
  position: fixed;
  width: 100%;
  animation: downAnime 0.5s forwards;
}
header.fixed {
  background: #fbfcfe;
}
header.fixed::before {
  opacity: 0;
}
header.fixed #header #logo {
  width: 250px;
  padding: 1rem;
}
@media all and (max-width: 1080px) {
  header.fixed #header #logo {
    width: 260px;
    padding: 0.5rem;
  }
}
@media all and (max-width: 639px) {
  header.fixed #header #logo {
    width: 160px;
    padding: 0.5rem 1rem;
  }
}

@keyframes upAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-100px);
  }
}
@keyframes downAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes navAnim {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
#nav_menu {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 20;
  transition: ease 0.3s;
}
@media all and (max-width: 1080px) {
  #nav_menu {
    padding: 0;
  }
}
#nav_menu nav {
  width: 100%;
}
@media all and (max-width: 1080px) {
  #nav_menu nav {
    height: 100vh;
    padding: 90px 0 2rem;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s ease;
    background: rgba(255, 255, 255, 0.95);
    z-index: 98;
    will-change: transform;
    overflow-y: scroll;
  }
}
#nav_menu nav ul {
  display: flex;
  justify-content: flex-end;
}
@media all and (max-width: 1080px) {
  #nav_menu nav ul {
    display: block;
    border-top: 4px solid #f7458e;
  }
}
#nav_menu nav ul li {
  text-align: center;
  margin: 0 2rem;
}
@media all and (max-width: 1080px) {
  #nav_menu nav ul li {
    text-align: left;
    border-bottom: 1px solid #ddd;
    margin: 0;
  }
}
#nav_menu nav ul li a {
  display: block;
  color: #3a3a3a;
  font-weight: 600;
  position: relative;
  z-index: 1;
  transition: ease 0.5s;
}
@media all and (max-width: 1080px) {
  #nav_menu nav ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
  }
  #nav_menu nav ul li a:after {
    font-family: "Font Awesome 5 Free";
    content: "\f0da";
    font-weight: 900;
  }
}
#nav_menu nav ul li a span {
  display: block;
  text-align: center;
  font-family: "Libre Baskerville", serif;
  letter-spacing: 0.25rem;
  font-weight: 600;
  font-size: 0.75rem;
  color: #3a3a3a;
}
@media all and (max-width: 1080px) {
  #nav_menu nav ul li a span {
    display: none;
  }
}
#nav_menu nav ul li.dropdown {
  position: relative;
  z-index: 1;
}
@media all and (max-width: 1080px) {
  #nav_menu nav ul li.dropdown a {
    display: inline-block;
  }
}
@media all and (max-width: 1080px) {
  #nav_menu nav ul li.dropdown a:after {
    display: none;
  }
}
#nav_menu nav ul li.dropdown ul {
  display: block;
  width: 200%;
  position: absolute;
  top: calc(100% + 1rem);
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  background: #f7458e;
  border-radius: 10px;
  transition: 0.5s ease;
}
@media all and (max-width: 1080px) {
  #nav_menu nav ul li.dropdown ul {
    width: 100%;
    display: none;
    position: static;
    opacity: 1;
    visibility: visible;
    transition: none;
    transform: none;
    border-radius: 0;
  }
}
#nav_menu nav ul li.dropdown ul:before {
  content: "";
  display: block;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #161e73;
  border-left: 10px solid transparent;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
}
@media all and (max-width: 1080px) {
  #nav_menu nav ul li.dropdown ul:before {
    display: none;
    transform: none;
  }
}
#nav_menu nav ul li.dropdown ul li {
  margin-left: 0;
}
@media all and (max-width: 1080px) {
  #nav_menu nav ul li.dropdown ul li {
    border-bottom: 0;
  }
}
#nav_menu nav ul li.dropdown ul li a {
  display: block;
  color: #fff;
  border-bottom: 1px solid #fff;
  padding: 1rem;
  transition: 0.5s ease;
}
#nav_menu nav ul li.dropdown ul li a:hover {
  background: #1e299e;
}
#nav_menu nav ul li.dropdown ul li:last-of-type a {
  border-bottom: 0;
}
#nav_menu nav ul li.dropdown:hover ul {
  opacity: 1;
  visibility: visible;
}
#nav_menu nav ul li.dropdown .drop_arw {
  display: none;
}
@media all and (max-width: 1080px) {
  #nav_menu nav ul li.dropdown .drop_arw {
    display: block;
    position: absolute;
    top: 30px;
    right: 1.875rem;
    transform: translateY(-50%);
  }
}
#nav_menu nav ul li.dropdown .drop_arw:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0d7";
  font-weight: 900;
}
#nav_menu nav ul li.dropdown.open .drop_arw {
  transform: translateY(-50%) rotate(180deg);
}
@media all and (max-width: 1080px) {
  #nav_menu nav ul li.mega_menu {
    position: relative;
  }
}
#nav_menu nav ul li.mega_menu:hover > a {
  background: #f7458e;
  color: #fff;
}
@media all and (max-width: 1080px) {
  #nav_menu nav ul li.mega_menu:hover > a {
    background: transparent;
    color: #f7458e;
  }
}
#nav_menu nav ul li.mega_menu:hover > a span {
  color: #fff;
}
#nav_menu nav ul li.mega_menu ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 1rem;
  position: absolute;
  top: 100%;
  left: 0;
  opacity: 0;
  visibility: hidden;
  background-color: #f7458e;
  transition: ease 0.3s;
  z-index: 1;
}
@media all and (max-width: 1080px) {
  #nav_menu nav ul li.mega_menu ul {
    display: none;
    position: static;
    opacity: 1;
    visibility: visible;
    transition: none;
    transform: none;
    padding: 0;
  }
}
#nav_menu nav ul li.mega_menu ul li {
  width: 25%;
  flex: inherit;
}
@media all and (max-width: 1080px) {
  #nav_menu nav ul li.mega_menu ul li {
    width: auto;
  }
}
#nav_menu nav ul li.mega_menu ul li a {
  color: #fff;
}
@media all and (max-width: 1080px) {
  #nav_menu nav ul li.mega_menu ul li a figure {
    display: none;
  }
}
#nav_menu nav ul li.mega_menu ul.last {
  left: inherit;
  right: 0;
}
#nav_menu nav ul li.mega_menu:hover ul {
  opacity: 1;
  visibility: visible;
}
#nav_menu nav ul li.mega_menu .drop_arw {
  display: none;
}
@media all and (max-width: 1080px) {
  #nav_menu nav ul li.mega_menu .drop_arw {
    display: block;
    position: absolute;
    top: 24px;
    right: 1rem;
    transform: translateY(-50%);
  }
}
#nav_menu nav ul li.mega_menu .drop_arw:before {
  font-family: "Font Awesome 5 Free";
  content: "\f13a";
  font-weight: 900;
}
#nav_menu nav ul li.mega_menu.open .drop_arw {
  transform: translateY(-50%) rotate(180deg);
}
#nav_menu nav .nav_contact a {
  background: #ffc5dd;
  color: #fff;
}
#nav_menu nav .sub_nav {
  margin-bottom: 1rem;
}
@media all and (max-width: 1080px) {
  #nav_menu nav .sub_nav {
    margin-bottom: 0;
  }
}
@media all and (max-width: 1080px) {
  #nav_menu nav .sub_nav ul {
    display: flex;
    justify-content: center;
  }
}
#nav_menu nav .sub_nav ul li {
  margin-left: 1rem;
}
@media all and (max-width: 1080px) {
  #nav_menu nav .sub_nav ul li {
    margin: 1rem 0.25rem;
  }
}
#nav_menu nav .sub_nav ul li a {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  font-weight: 500;
  color: #fff;
}
@media all and (max-width: 1080px) {
  #nav_menu nav .sub_nav ul li a {
    font-size: 0.7rem;
  }
}
#nav_menu nav .sub_nav ul li a i {
  margin-right: 8px;
}
#nav_menu nav .sub_nav ul li a:after {
  display: none;
}
#nav_menu nav .sub_nav ul li.sub_btn01 a {
  background: #e0315a;
}
#nav_menu nav .sub_nav ul li.sub_btn02 a {
  background: #161e73;
}
#nav_menu nav .sub_nav ul li.sub_btn03 a {
  background: #9ed591;
}
#nav_menu #nav_toggle {
  display: none;
  width: 2rem;
  height: 1.5rem;
  padding: 0.5rem;
  position: fixed;
  top: 2.25rem;
  right: 2rem;
  z-index: 99;
}
@media all and (max-width: 639px) {
  #nav_menu #nav_toggle {
    top: 1.25rem;
    right: 1rem;
  }
}
#nav_menu #nav_toggle span {
  display: inline-block;
  width: 100%;
  height: 2px;
  background: #3a3a3a;
  position: absolute;
  transform: translateY(-50%);
  transition: ease 0.3s;
}
#nav_menu #nav_toggle span:nth-of-type(1) {
  top: 0;
  left: 0;
}
#nav_menu #nav_toggle span:nth-of-type(2) {
  top: 50%;
  left: 0;
}
#nav_menu #nav_toggle span:nth-of-type(3) {
  top: 100%;
  left: 0;
}
@media all and (max-width: 1080px) {
  #nav_menu #nav_toggle {
    display: block;
  }
}
#nav_menu.open nav {
  opacity: 1;
  visibility: visible;
}
#nav_menu.open #nav_toggle span:nth-of-type(1) {
  top: 50%;
  transform: translateY(-50%) rotate(-135deg);
}
#nav_menu.open #nav_toggle span:nth-of-type(2) {
  width: 0;
  opacity: 0;
}
#nav_menu.open #nav_toggle span:nth-of-type(3) {
  top: 50%;
  transform: translateY(-50%) rotate(135deg);
}
#nav_menu .nav_contact {
  display: none;
}
@media all and (max-width: 1080px) {
  #nav_menu .nav_contact {
    display: block;
  }
}
#nav_menu .nav_contact ul li {
  text-align: center;
  border-bottom: 0;
}
#nav_menu .nav_contact ul li.nav_tel {
  margin: 1rem 0;
}
#nav_menu .nav_contact ul li.nav_tel a {
  display: block;
  padding: 1rem;
  background: linear-gradient(135deg, #161e73, #33e6fb);
  color: #fff;
  border-radius: 10px;
  font-size: 1rem;
}
#nav_menu .nav_contact ul li.nav_mail a {
  display: block;
  padding: 1rem;
  background: linear-gradient(135deg, #161e73, #33e6fb);
  color: #fff;
  border-radius: 10px;
  font-size: 1rem;
}
#nav_menu .nav_contact ul li.nav_mail a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
  margin-right: 5px;
}

.nv_eff a {
  position: relative;
}
.nv_eff a:before {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background: #f7458e;
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.3s ease;
}
.nv_eff a:hover:before {
  width: 2rem;
}

.breadcrumbs_wrap {
  width: 100%;
  background: #f7458e;
}

.breadcrumbs {
  width: 1280px;
  max-width: 100%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
}
@media all and (max-width: 639px) {
  .breadcrumbs {
    justify-content: center;
  }
}
.breadcrumbs li {
  margin: 1rem 0.5rem;
}
.breadcrumbs li:last-of-type:before {
  font-family: "Font Awesome 5 Free";
  content: "\f054";
  font-weight: 900;
  margin-right: 0.5rem;
  font-size: 12px;
  color: #fff;
}
.breadcrumbs li a {
  color: #fff;
}
.breadcrumbs li:last-of-type a {
  color: #fff;
  pointer-events: none;
}

main#under {
  overflow: hidden;
}

footer {
  position: relative;
}
footer #footer {
  position: relative;
  width: 1280px;
  max-width: 100%;
  margin: auto;
  padding: 120px 0;
  color: #3a3a3a;
}
@media all and (max-width: 639px) {
  footer #footer {
    padding: 40px 1rem;
  }
}
footer #footer .flogo {
  width: 220px;
  text-align: center;
  margin: auto;
  margin-bottom: 2rem;
}
footer #footer .f_insta {
  text-align: center;
  margin-bottom: 2rem;
}
footer #footer .f_insta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #9ed591;
  border-radius: 80px;
  padding: 1rem 2rem;
  color: #fff;
  font-weight: 600;
}
footer #footer .f_insta a span {
  margin-right: 5px;
}
footer #footer .f_tel {
  text-align: center;
}
footer #footer .f_tel a {
  font-family: "Libre Baskerville", serif;
  letter-spacing: 0.25rem;
  font-weight: 600;
  font-size: 2rem;
  color: #3a3a3a;
}
@media all and (max-width: 639px) {
  footer #footer .f_tel a {
    font-size: 1rem;
  }
}
footer .f_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media all and (max-width: 1080px) {
  footer .f_wrap {
    padding: 0 1rem;
  }
}
footer .f_wrap .f_left {
  width: 48%;
}
@media all and (max-width: 639px) {
  footer .f_wrap .f_left {
    width: 100%;
  }
}
footer .f_wrap .f_right {
  width: 48%;
}
@media all and (max-width: 639px) {
  footer .f_wrap .f_right {
    width: 100%;
  }
}
footer .f_wrap .f_right .btn01 {
  text-align: center;
}
footer .copyright {
  text-align: center;
  padding: 1rem;
  color: #fbfcfe;
  background: #f7458e;
  position: relative;
}
footer .copyright a {
  color: #3a3a3a;
}
footer .foot_txt {
  margin-bottom: 10px;
  text-align: center;
  color: #009e92;
}
@media all and (max-width: 639px) {
  footer .foot_txt {
    font-size: 0.875rem;
  }
}
footer .foot_txt .en {
  font-family: "Libre Baskerville", serif;
  letter-spacing: 0.25rem;
  font-weight: 600;
}
footer .f_navi {
  margin-bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media all and (max-width: 639px) {
  footer .f_navi {
    margin: 2rem 0;
    display: none;
  }
}
footer .f_navi li {
  width: 30%;
  margin: 1rem 1%;
  line-height: 1;
}
@media all and (max-width: 639px) {
  footer .f_navi li {
    width: 48%;
    margin: 0.6rem 0;
  }
}
footer .f_navi li a {
  color: #3a3a3a;
  font-weight: 600;
}
footer .f_navi li a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0da";
  font-weight: 900;
  margin-right: 5px;
  color: #3a3a3a;
}
footer .f_navi li span {
  font-size: 1.25rem;
  display: block;
  font-family: "Libre Baskerville", serif;
  letter-spacing: 0.25rem;
  font-weight: 600;
}
@media all and (max-width: 639px) {
  footer .f_add {
    margin: 2rem 0;
    font-size: 0.8rem;
  }
}

.t_shadow {
  text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, 0px 1px 0 #fff, -1px 0 #fff, -1px 0 0 #fff, 1px 0 0 #fff;
}

.company_tbl {
  width: 100%;
  table-layout: fixed;
  line-height: 1.6;
}
@media all and (max-width: 639px) {
  .company_tbl {
    font-size: 0.75rem;
  }
}
.company_tbl th, .company_tbl td {
  padding: 1rem;
  border-bottom: 1px solid #ccc;
  vertical-align: middle;
  font-weight: 600;
}
@media all and (max-width: 639px) {
  .company_tbl th, .company_tbl td {
    padding: 0.5rem;
  }
}
.company_tbl th {
  width: 30%;
  border-bottom: 1px solid #f7458e;
  text-align: left;
}

.company {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 5px;
}
.company th,
.company td {
  padding: 1rem;
  vertical-align: middle;
}
@media all and (max-width: 639px) {
  .company th,
  .company td {
    display: block;
    text-align: center;
  }
}
.company th {
  width: 35%;
  position: relative;
  background: #f7458e;
  color: #fff;
  font-weight: bold;
}
@media all and (max-width: 639px) {
  .company th {
    width: 100%;
  }
}
.company th::after {
  left: 100%;
  top: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: #fff;
  border-width: 10px;
  border-left-color: #f7458e;
  margin-top: -10px;
}
@media all and (max-width: 639px) {
  .company th::after {
    display: none;
  }
}
.company td {
  background: #fff;
  padding-left: 2rem;
  font-weight: bold;
}
@media all and (max-width: 639px) {
  .company td {
    width: 100%;
    padding-left: 0;
  }
}

.rec_tbl {
  width: 100%;
  table-layout: fixed;
}
.rec_tbl th, .rec_tbl td {
  padding: 0.5rem;
  border: 1px solid #ddd;
}
@media all and (max-width: 639px) {
  .rec_tbl th, .rec_tbl td {
    width: 100%;
    display: block;
    font-size: 13px;
  }
}
.rec_tbl th {
  width: 30%;
  text-align: left;
  background: linear-gradient(135deg, #161e73, #33e6fb);
  color: #fff;
}
@media all and (max-width: 639px) {
  .rec_tbl th {
    width: 100%;
    text-align: center;
  }
}
@media all and (max-width: 639px) {
  .rec_tbl td {
    margin-bottom: 0.5rem;
  }
}

.ifno_contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.ifno_contact li {
  width: 300px;
  margin: 0.5rem;
}
@media all and (max-width: 639px) {
  .ifno_contact li {
    width: 100%;
    text-align: center;
  }
}
.ifno_contact .ifno_tel a {
  display: block;
  padding: 1rem;
  background: #fbfcfe;
  color: #3a3a3a;
  font-weight: 600;
  text-align: center;
}
.ifno_contact .ifno_tel a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f87b";
  font-weight: 900;
  margin-right: 5px;
}
@media all and (max-width: 639px) {
  .ifno_contact .ifno_tel {
    margin-bottom: 1rem;
  }
}
.ifno_contact .ifno_web a {
  display: block;
  padding: 1rem;
  background: #f7458e;
  color: #3a3a3a;
  text-align: center;
}
.ifno_contact .ifno_web a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f073";
  font-weight: 900;
  margin-right: 5px;
}
.ifno_contact .ifno_mail a {
  display: block;
  padding: 0.5rem 1rem;
  background: #fff;
  color: #9ed591;
  font-weight: 600;
  text-align: center;
}
@media all and (max-width: 639px) {
  .ifno_contact .ifno_mail a {
    width: 300px;
  }
}
.ifno_contact .ifno_mail a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
  margin-right: 5px;
}

.ifno_address {
  margin-bottom: 1rem;
}
.ifno_address span:before {
  font-family: "Font Awesome 5 Free";
  content: "\f3c5";
  font-weight: 900;
  margin-right: 5px;
}

.ifno_access span {
  font-size: 1.25rem;
}
@media all and (max-width: 639px) {
  .ifno_access span {
    font-size: 1rem;
  }
}
.ifno_access span:before {
  font-family: "Font Awesome 5 Free";
  content: "\f238";
  font-weight: 900;
  margin-right: 5px;
}

.gmap {
  width: 100%;
  position: relative;
  padding-top: 66.6666666667%;
}
.gmap iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.gmap2 {
  width: 100%;
  position: relative;
  padding-top: 50%;
}
.gmap2 iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

#mainvisual {
  width: 100%;
  padding-bottom: 300px;
  overflow: hidden;
  position: relative;
}
@media all and (max-width: 1080px) {
  #mainvisual {
    padding-bottom: 100px;
  }
}
#mainvisual::before {
  content: "";
  display: block;
  width: 35%;
  height: 100%;
  background: #f7458e;
  position: absolute;
  top: 0;
  left: 0;
}
#mainvisual #main_catch {
  width: 50%;
  padding: 40px;
  position: absolute;
  top: 40%;
  left: 5%;
  transform: translateY(-50%);
  z-index: 10;
  font-size: 1.25rem;
  transition: 0.5s ease;
  letter-spacing: 0.5rem;
  line-height: 2;
  overflow: hidden;
}
@media all and (max-width: 1080px) {
  #mainvisual #main_catch {
    top: inherit;
    bottom: 5%;
    left: 0;
  }
}
@media all and (max-width: 639px) {
  #mainvisual #main_catch {
    width: 100%;
    padding: 20px;
    display: flex;
    align-items: center;
  }
}
#mainvisual #main_catch .catch_img {
  width: 380px;
  max-width: 90%;
  margin: 2rem auto 0;
  filter: brightness(0) invert(1);
}
#mainvisual #main_catch .main_text {
  font-size: 3rem;
  font-family: "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #fff;
  text-shadow: 0 0 10px #2a2a2a;
}
#mainvisual #main_catch .main_text .en {
  display: block;
  font-family: "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-size: 1.25rem;
  letter-spacing: 0.125rem;
}
@media all and (max-width: 639px) {
  #mainvisual #main_catch .main_text .en {
    font-size: 1rem;
  }
}
#mainvisual #main_catch .main_text b {
  display: inline-block;
  font-size: 3.25rem;
  font-weight: 600;
  position: relative;
}
#mainvisual #main_catch .main_text b.marker01 {
  color: #f7458e;
}
#mainvisual #main_catch .main_text b.marker02 {
  color: #9ed591;
}
@media all and (max-width: 1080px) {
  #mainvisual #main_catch .main_text {
    font-size: 1.25rem;
  }
  #mainvisual #main_catch .main_text b {
    font-size: 1.25rem;
    font-weight: 600;
  }
}
@media all and (max-width: 639px) {
  #mainvisual #main_catch .main_text {
    letter-spacing: 0.25rem;
  }
  #mainvisual #main_catch .main_text b {
    font-size: 1.25rem;
  }
}
#mainvisual #main_catch p {
  font-size: 1.5rem;
  color: #fff;
}
@media all and (max-width: 639px) {
  #mainvisual #main_catch p {
    font-size: 1rem;
  }
}
#mainvisual #mainvisual_img {
  width: 100%;
  padding-top: 56.25%;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media all and (max-width: 1080px) {
  #mainvisual #mainvisual_img {
    height: 80vh;
  }
}
#mainvisual .slide_deco1,
#mainvisual .slide_deco2,
#mainvisual .slide_deco3,
#mainvisual .slide_deco4 {
  position: absolute;
  z-index: 1;
}
#mainvisual .slide_deco1 {
  width: 240px;
  bottom: 20px;
  right: 0;
}
@media all and (max-width: 639px) {
  #mainvisual .slide_deco1 {
    width: 110px;
  }
}
#mainvisual .slide_deco2 {
  width: 140px;
  top: 20px;
  right: 0;
}
@media all and (max-width: 639px) {
  #mainvisual .slide_deco2 {
    width: 110px;
  }
}
#mainvisual .slide_deco3 {
  width: 120px;
  bottom: 20px;
  left: 0;
}
@media all and (max-width: 639px) {
  #mainvisual .slide_deco3 {
    width: 80px;
  }
}
#mainvisual .slide_deco4 {
  width: 160px;
  top: 20px;
  left: 0;
}
@media all and (max-width: 639px) {
  #mainvisual .slide_deco4 {
    width: 100px;
  }
}
#mainvisual .wave_deco {
  width: 100%;
  position: absolute;
  bottom: -1px;
  left: 0;
  z-index: 1;
}

#topSlider {
  width: calc(100% - 340px);
  height: calc(100% - 90px);
  position: absolute;
  bottom: 0;
  right: 90px;
}
@media all and (max-width: 1080px) {
  #topSlider {
    width: 100%;
    height: 100%;
    bottom: 0;
    right: 0;
  }
}
#topSlider .swiper-slide {
  position: relative;
}
#topSlider .swiper-slide .slide-img {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
@media all and (max-width: 1080px) {
  #topSlider .swiper-slide .slide-img {
    height: 100%;
  }
}
#topSlider .swiper-slide .slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#topSlider .swiper-slide .slide_catch {
  width: 1280px;
  max-width: 100%;
  margin: auto;
  padding: 4rem 0;
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  border-radius: 15px;
}
@media all and (max-width: 639px) {
  #topSlider .swiper-slide .slide_catch {
    padding: 1rem;
  }
}
#topSlider .swiper-slide .slide_catch .catch_txt {
  display: inline-block;
  font-size: 4rem;
  margin-bottom: 2rem;
  font-weight: 600;
  text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, 0px 1px 0 #fff, -1px 0 #fff, -1px 0 0 #fff, 1px 0 0 #fff;
}
@media all and (max-width: 639px) {
  #topSlider .swiper-slide .slide_catch .catch_txt {
    font-size: 2rem;
  }
}
#topSlider .swiper-slide .slide_catch .catch_logo {
  text-align: center;
}
#topSlider .swiper-slide .slide_catch .catch_logo img {
  width: 200px;
}
#topSlider .swiper-slide .slide_catch p {
  font-size: 2rem;
  font-weight: 600;
  text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, 0px 1px 0 #fff, -1px 0 #fff, -1px 0 0 #fff, 1px 0 0 #fff;
}
@media all and (max-width: 639px) {
  #topSlider .swiper-slide .slide_catch p {
    font-size: 1rem;
  }
}

#topSlider_v2 {
  width: 30%;
  height: 55%;
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 0 0 0 80px;
}
#topSlider_v2 .swiper-slide {
  position: relative;
}
#topSlider_v2 .swiper-slide .slide-img {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
@media all and (max-width: 1080px) {
  #topSlider_v2 .swiper-slide .slide-img {
    display: none;
  }
}
@media all and (max-width: 639px) {
  #topSlider_v2 .swiper-slide .slide-img {
    display: none;
  }
}
#topSlider_v2 .swiper-slide .slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#topSlider_v2 .swiper-slide .slide_catch {
  width: 1280px;
  max-width: 100%;
  margin: auto;
  padding: 4rem 0;
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  border-radius: 15px;
}
@media all and (max-width: 639px) {
  #topSlider_v2 .swiper-slide .slide_catch {
    padding: 1rem;
  }
}
#topSlider_v2 .swiper-slide .slide_catch .catch_txt {
  display: inline-block;
  font-size: 4rem;
  margin-bottom: 2rem;
  font-weight: 600;
  text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, 0px 1px 0 #fff, -1px 0 #fff, -1px 0 0 #fff, 1px 0 0 #fff;
}
@media all and (max-width: 639px) {
  #topSlider_v2 .swiper-slide .slide_catch .catch_txt {
    font-size: 2rem;
  }
}
#topSlider_v2 .swiper-slide .slide_catch .catch_logo {
  text-align: center;
}
#topSlider_v2 .swiper-slide .slide_catch .catch_logo img {
  width: 200px;
}
#topSlider_v2 .swiper-slide .slide_catch p {
  font-size: 2rem;
  font-weight: 600;
  text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, 0px 1px 0 #fff, -1px 0 #fff, -1px 0 0 #fff, 1px 0 0 #fff;
}
@media all and (max-width: 639px) {
  #topSlider_v2 .swiper-slide .slide_catch p {
    font-size: 1rem;
  }
}

@keyframes showSlide {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes hideSlide {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes showTranslate {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-15%);
  }
}
.container {
  width: 1280px;
  max-width: 100%;
  margin: auto;
  padding: 100px 0;
  position: relative;
  z-index: 1;
}
@media all and (max-width: 1200px) {
  .container {
    padding: 120px 1rem;
  }
}
@media all and (max-width: 639px) {
  .container {
    padding: 50px 1rem;
  }
}
.container.pd0 {
  padding: 0;
}
@media all and (max-width: 639px) {
  .container.pd0 {
    padding: 50px 1rem;
  }
}
.container.pd_t0 {
  padding-top: 0;
}
.container.pd_b0 {
  padding-bottom: 0;
}
.container.pd_b200 {
  padding-bottom: 200px;
}
@media all and (max-width: 1080px) {
  .container.pd_b200 {
    padding-bottom: 60px;
  }
}
@media all and (max-width: 1080px) {
  .container.pd_ttab0 {
    padding-top: 0;
  }
}
@media all and (max-width: 639px) {
  .container.pd_ttab0 {
    padding-top: 50px;
  }
}
.container.minus {
  margin-top: -180px;
}
@media all and (max-width: 639px) {
  .container.minus {
    margin-top: 0;
  }
}
.container.minus2 {
  margin-top: -300px;
}
@media all and (max-width: 1080px) {
  .container.minus2 {
    margin-top: -100px;
  }
}
.container.mg_t100 {
  margin-top: 100px;
}
@media all and (max-width: 639px) {
  .container.mg_t100 {
    margin-top: 50px;
  }
}
.container.mg_b100 {
  margin-bottom: 100px;
}
@media all and (max-width: 639px) {
  .container.mg_b100 {
    margin-bottom: 50px;
  }
}

.container2 {
  width: 100%;
  padding: 100px 0;
  position: relative;
  z-index: 1;
}
@media all and (max-width: 639px) {
  .container2 {
    padding: 50px 1rem;
  }
}
.container2.type2 {
  padding: 0;
}
@media all and (max-width: 639px) {
  .container2.type2 {
    padding: 50px 1rem;
  }
}
.container2.pd_t0 {
  padding-top: 0;
}
.container2.pd_b0 {
  padding-bottom: 0;
}
.container2.minus2 {
  margin-top: -300px;
}
@media all and (max-width: 1080px) {
  .container2.minus2 {
    margin-top: -100px;
  }
}
.container2.mg_b60 {
  margin-bottom: 60px;
}
@media all and (max-width: 639px) {
  .container2.mg_b60 {
    margin-bottom: 50px;
  }
}
.container2.mg_b100 {
  margin-bottom: 100px;
}
@media all and (max-width: 639px) {
  .container2.mg_b100 {
    margin-bottom: 50px;
  }
}

.container3 {
  width: 1600px;
  max-width: 100%;
  margin: auto;
  padding: 100px 1rem;
  margin: auto;
  position: relative;
  z-index: 1;
}
@media all and (max-width: 639px) {
  .container3 {
    padding: 50px 1rem;
  }
}
.container3.type2 {
  padding: 0 1rem 100px;
}
.container3.mg_b100 {
  margin-bottom: 100px;
}
@media all and (max-width: 639px) {
  .container3.mg_b100 {
    margin-bottom: 50px;
  }
}
.container3.minus {
  margin-top: -180px;
}
@media all and (max-width: 639px) {
  .container3.minus {
    margin-top: 0;
  }
}
.container3.minus2 {
  margin-top: -300px;
}
@media all and (max-width: 639px) {
  .container3.minus2 {
    margin-top: 0;
  }
}

.container4 {
  width: calc(100% - 100px);
  max-width: 100%;
  padding: 100px 1rem;
  margin: auto;
  position: relative;
  z-index: 1;
}
@media all and (max-width: 639px) {
  .container4 {
    width: 100%;
    padding: 50px 1rem;
  }
}
.container4.type2 {
  padding: 0 1rem;
}
@media all and (max-width: 639px) {
  .container4.type2 {
    padding: 0;
  }
}
.container4.white {
  background: #fff;
}

.container_white {
  width: 1600px;
  max-width: 100%;
  margin: auto;
  padding: 100px 0;
  background: #fff;
}
@media all and (max-width: 639px) {
  .container_white {
    padding: 0;
  }
}

.box {
  padding: 60px;
  background: #fbfcfe;
}
@media all and (max-width: 639px) {
  .box {
    padding: 40px 1rem;
  }
}
.box.pd0 {
  padding: 0;
}
.box.pd_t0 {
  padding-top: 0;
}
.box.bdr {
  border: 2px solid #f7458e;
}
.box.bdr_b {
  border-bottom: 2px solid #f7458e;
}
.box.sdw {
  box-shadow: 0 5px 10px -5px rgba(0, 0, 0, 0.1);
}
.box.transparent {
  background: transparent;
}
.box.r_box {
  border-radius: 20px;
}
.box.v2 {
  background: #fafafa;
}

.box2 {
  width: 900px;
  max-width: 100%;
  margin: auto;
  padding: 60px;
  background: #fff;
}
@media all and (max-width: 639px) {
  .box2 {
    max-width: 100%;
    padding: 1rem 0;
  }
}
.box2.bdr {
  border: 2px solid #f7458e;
}
.box2.bdr_b {
  border-bottom: 2px solid #f7458e;
}
.box2.sdw {
  box-shadow: 0 5px 10px -5px rgba(0, 0, 0, 0.1);
}
.box2.transparent {
  background: transparent;
}
.box2.r_box {
  border-radius: 20px;
}

.box3 {
  padding: 2rem;
  background: #fff;
  border: 2px solid #f7458e;
  position: relative;
  box-shadow: 10px 10px 0 0 #f976ac;
}
@media all and (max-width: 639px) {
  .box3 {
    padding: 1rem;
  }
}

.box4 {
  max-width: 80%;
  margin: auto;
  padding: 2rem;
  border: 2px solid #f7458e;
}
@media all and (max-width: 639px) {
  .box4 {
    max-width: 100%;
    padding: 1rem;
  }
}
.box4.type2 {
  max-width: 100%;
}

.transparent {
  background: transparent;
}

.deco_ttl {
  position: relative;
  text-align: center;
  padding-top: 65px;
  margin-bottom: 2rem;
  line-height: 1.2;
}
.deco_ttl:before {
  content: "";
  display: block;
  width: 60px;
  height: 72px;
  background: url(../img/tree.svg);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.deco_ttl span {
  display: block;
}
.deco_ttl .en {
  font-family: "Libre Baskerville", serif;
  letter-spacing: 0.25rem;
  font-weight: 600;
  font-size: 4rem;
}
.deco_ttl .ja {
  font-size: 1.25rem;
  font-weight: 600;
}
.deco_ttl.white .en {
  color: #fff;
}
.deco_ttl.white .ja {
  color: #fff;
}

.deco_ttl2 {
  position: relative;
  text-align: center;
  padding-top: 65px;
  margin-bottom: 2rem;
  line-height: 1;
}
.deco_ttl2:before {
  content: "";
  display: block;
  width: 100px;
  height: 58px;
  background: url(../img/hanger.svg) no-repeat center/contain;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.deco_ttl2 span {
  display: block;
}
.deco_ttl2 .en {
  font-family: "Libre Baskerville", serif;
  letter-spacing: 0.25rem;
  font-weight: 600;
  font-size: 4rem;
  margin-bottom: 1rem;
  color: #f7458e;
}
.deco_ttl2 .ja {
  font-size: 1.25rem;
  font-weight: 600;
}

.h_ttl {
  display: flex;
  align-items: baseline;
  justify-content: center;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  position: relative;
}
.h_ttl::before {
  content: "";
  display: block;
  width: 100px;
  height: 2px;
  background: linear-gradient(to right, #f7458e 50%, #3a3a3a 50%);
  position: absolute;
  bottom: 0;
}
.h_ttl .en {
  display: block;
  margin-right: 1rem;
  font-family: "Libre Baskerville", serif;
  letter-spacing: 0.25rem;
  font-weight: 600;
  font-size: 2.25rem;
  font-weight: 400;
}
@media all and (max-width: 639px) {
  .h_ttl .en {
    font-size: 1.75rem;
  }
}
.h_ttl .ja {
  font-size: 1.125rem;
  font-weight: 600;
  color: #3a3a3a;
}
@media all and (max-width: 639px) {
  .h_ttl .ja {
    font-size: 1rem;
  }
}
.h_ttl.v2 {
  display: block;
  text-align: center;
}
.h_ttl.v2::before {
  left: 50%;
  transform: translateX(-50%);
}
.h_ttl.white .en {
  color: #fff;
}
.h_ttl.white .ja {
  color: #fff;
}

.h_ttl2 {
  padding-bottom: 2rem;
  font-size: 1.5rem;
}
@media all and (max-width: 639px) {
  .h_ttl2 {
    padding-bottom: 2rem;
  }
}
.h_ttl2 span {
  display: block;
}
.h_ttl2 .en {
  font-family: "Libre Baskerville", serif;
  letter-spacing: 0.25rem;
  font-weight: 600;
  letter-spacing: 0.125rem;
  font-size: 1rem;
}
@media all and (max-width: 639px) {
  .h_ttl2 .en {
    display: block;
    font-size: 1.5rem;
  }
}
.h_ttl2 .ja {
  font-size: 1.5rem;
  font-weight: 600;
  color: #3a3a3a;
}
@media all and (max-width: 639px) {
  .h_ttl2 .ja {
    display: block;
    font-size: 1.25rem;
  }
}
@media all and (max-width: 639px) {
  .h_ttl2 b {
    display: none;
  }
}
.h_ttl2.pd_b0 {
  padding-bottom: 0;
}

.h_ttl3 {
  font-size: 1.5rem;
  font-weight: 600;
  position: relative;
  margin-bottom: 2rem;
}
@media all and (max-width: 639px) {
  .h_ttl3 {
    font-size: 1.25rem;
  }
}
.h_ttl3 span {
  font-size: 2rem;
  font-weight: 600;
  color: #f7458e;
}
@media all and (max-width: 639px) {
  .h_ttl3 span {
    font-size: 1.5rem;
  }
}

.h_ttl4 {
  display: flex;
  align-items: center;
  padding: 1rem 0;
  margin-bottom: 1rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-top: 1px solid #3a3a3a;
  border-bottom: 1px solid #3a3a3a;
  line-height: 1;
}
.h_ttl4:before {
  content: "";
  display: block;
  width: 1rem;
  height: 2px;
  margin-right: 10px;
  background: #f7458e;
}
.h_ttl4 .ja {
  font-weight: 600;
}

.h_ttl_big {
  font-size: 2.5rem;
  color: #f7458e;
  font-weight: 600;
  margin-bottom: 2rem;
}
@media all and (max-width: 1080px) {
  .h_ttl_big {
    font-size: 2rem;
  }
}
@media all and (max-width: 639px) {
  .h_ttl_big {
    font-size: 1.5rem;
  }
}

.h_ttl_s {
  margin-bottom: 0.5rem;
  font-weight: 600;
}
@media all and (max-width: 639px) {
  .h_ttl_s {
    font-size: 1rem;
  }
}
.h_ttl_s span {
  display: flex;
  align-items: center;
  font-weight: 600;
}
.h_ttl_s span:before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 3px;
  background: #9ed591;
  margin-right: 0.5rem;
}
.h_ttl_s.type2 {
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  border-bottom: 1px dashed #ccc;
}

.h_ttl_s2 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}
.h_ttl_s2 span {
  display: flex;
  align-items: center;
}
.h_ttl_s2 span:before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 3px;
  background: #f7458e;
  margin-right: 0.5rem;
}
.h_ttl_s2.type2 {
  font-size: 1.25rem;
}

.h_ttl_line {
  padding: 0.5rem 0;
  margin-bottom: 2rem;
  border-bottom: 2px solid #3a3a3a;
  font-size: 1.25rem;
  position: relative;
  font-weight: 600;
}
@media all and (max-width: 639px) {
  .h_ttl_line {
    font-size: 1.125rem;
  }
}
.h_ttl_line:before {
  content: "";
  display: block;
  width: 4rem;
  height: 2px;
  background: #f7458e;
  position: absolute;
  bottom: -2px;
  left: 0;
}
.h_ttl_line a {
  color: #3a3a3a;
}
.h_ttl_line span {
  font-size: 1.5rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  margin-right: 10px;
  background: #f7458e;
  color: #3a3a3a;
}
@media all and (max-width: 639px) {
  .h_ttl_line span {
    display: block;
  }
}

.h_ttl_sline {
  font-size: 1.125rem;
  font-weight: 600;
  padding-bottom: 0.5rem;
  margin: 1rem 0;
  border-bottom: 1px solid #f7458e;
}
@media all and (max-width: 639px) {
  .h_ttl_sline {
    font-size: 1rem;
  }
}

.h_ttl_line2 {
  margin-bottom: 2rem;
  border-bottom: 2px solid #ccc;
  font-size: 1.25rem;
  position: relative;
  font-weight: 600;
}
@media all and (max-width: 639px) {
  .h_ttl_line2 {
    font-size: 1.125rem;
  }
}
.h_ttl_line2 a {
  color: #3a3a3a;
}
.h_ttl_line2 span {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  margin-right: 10px;
  background: #f7458e;
  color: #3a3a3a;
}
@media all and (max-width: 639px) {
  .h_ttl_line2 span {
    display: block;
  }
}

.h_ttl_bdr {
  text-align: center;
  margin-bottom: 30px;
}
.h_ttl_bdr span {
  display: inline-block;
  padding-bottom: 1rem;
  font-size: 2rem;
  font-weight: 600;
  position: relative;
}
.h_ttl_bdr span::before {
  content: "";
  display: block;
  width: 100px;
  height: 2px;
  background: #9ed591;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media all and (max-width: 639px) {
  .h_ttl_bdr span {
    font-size: 1.25rem;
  }
}
.h_ttl_bdr span b {
  font-size: 1rem;
}

.h_ttl_slash {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  position: relative;
}
.h_ttl_slash span {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 1.5rem;
}
.h_ttl_slash::before, .h_ttl_slash::after {
  content: "";
  display: block;
  width: 2px;
  height: 40px;
  background: #f7458e;
}
.h_ttl_slash::before {
  transform: rotate(-25deg);
}
.h_ttl_slash::after {
  transform: rotate(25deg);
}

.h_ttl_box {
  padding: 1rem;
  background: #fff;
  color: #3a3a3a;
  font-size: 1.25rem;
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  font-weight: 600;
  border: 1px solid #fafafa;
}
.h_ttl_box::before {
  content: "";
  display: block;
  width: 100px;
  height: 300%;
  background: #f7458e;
  transform: rotate(25deg);
  position: absolute;
  top: -150%;
  right: -50px;
}

.h_ttl_sbox {
  padding: 0.5rem 1rem;
  margin-bottom: 2rem;
  background: #f7458e;
}

.ttl_flx {
  display: flex;
  align-items: center;
}
.ttl_flx p:nth-of-type(1) {
  margin-right: 1rem;
}

.fukidashi_ttl {
  display: inline-block;
  position: relative;
  padding: 1rem 2rem;
  margin: 0 auto 20px;
  border: 3px solid #f7458e;
  border-radius: 80px;
  background: #fff;
  font-size: 1.75rem;
  font-weight: 600;
}
.fukidashi_ttl::before {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  content: "";
  border-width: 14px 12px 0 12px;
  border-style: solid;
  border-color: #f7458e transparent transparent transparent;
}
.fukidashi_ttl::after {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  content: "";
  border-width: 14px 12px 0 12px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}
@media all and (max-width: 639px) {
  .fukidashi_ttl {
    font-size: 1.25rem;
  }
}

.mtext1 {
  font-size: 1.25rem;
}
@media all and (max-width: 639px) {
  .mtext1 {
    font-size: 1.125rem;
  }
}

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

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

.bold {
  font-weight: 600;
}

.color1 {
  color: #f7458e;
}

.color2 {
  color: #ffc5dd;
}

.color_blue {
  color: #161e73;
}

.color_brown {
  color: #161e73;
}

.color_brown2 {
  color: #222;
}

.list_disc li {
  padding: 10px 0;
}
.list_disc li:not(:last-of-type) {
  margin-bottom: 5px;
  border-bottom: 1px dashed #ddd;
}
.list_disc li:before {
  content: "●";
  margin-right: 0.25rem;
  color: #f7458e;
  font-size: 0.5rem;
}
@media all and (max-width: 639px) {
  .list_disc li {
    font-size: 12px;
  }
}
.list_disc.type2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.list_disc.type2 li {
  width: 48%;
}
.list_disc.type3 {
  display: flex;
  flex-wrap: wrap;
}
.list_disc.type3 li {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 1rem;
  background: #fafafa;
  border-radius: 2rem;
  border-bottom: 0;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  color: #3a3a3a;
}

.list_check.type1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 740px;
  max-width: 100%;
  margin: auto;
}
.list_check.type1 li {
  width: 48%;
  margin-bottom: 1rem;
  background: #fefefe;
}
@media all and (max-width: 639px) {
  .list_check.type1 li {
    width: 100%;
    margin-bottom: 5px;
    font-size: 0.875rem;
  }
}
.list_check li {
  padding: 4px 0;
  margin-bottom: 5px;
  padding-left: 21px;
  text-indent: -21px;
}
.list_check li span {
  font-weight: normal;
  font-size: 0.9em;
  display: block;
  padding: 10px;
  background: rgba(245, 243, 237, 0.2);
  margin-top: 10px;
}
.list_check li a {
  color: #f7458e;
  border-bottom: 1px dotted #f7458e;
}
.list_check li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  font-weight: 900;
  margin-right: 5px;
  color: #161e73;
}
@media all and (max-width: 639px) {
  .list_check li {
    margin: 0 auto 10px;
  }
}

.list_num li {
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px dashed #3a3a3a;
}
.list_num li span {
  font-size: 1.5rem;
  font-weight: 600;
}
.list_num b {
  font-size: 1.5rem;
  font-weight: 600;
}

.top_about {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
.top_about .top_about_img {
  width: 45%;
  position: relative;
  order: 1;
}
.top_about .top_about_img figure:nth-of-type(1) {
  width: 75%;
  position: absolute;
  top: -200px;
  left: 0;
}
.top_about .top_about_img figure:nth-of-type(2) {
  width: 45%;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.top_about .top_about_img img {
  width: 100%;
}
.top_about .top_about_img2 {
  width: 20%;
  position: relative;
  order: 3;
}
.top_about .top_about_body {
  width: 35%;
  padding: 0 60px;
  order: 2;
}
@media all and (max-width: 1080px) {
  .top_about {
    justify-content: space-between;
  }
  .top_about .top_about_img {
    width: 70%;
    display: flex;
    align-items: center;
  }
  .top_about .top_about_img figure:nth-of-type(1) {
    width: 65%;
    height: 100%;
    position: static;
  }
  .top_about .top_about_img figure:nth-of-type(2) {
    width: 38%;
    height: 100%;
    position: static;
    transform: none;
    margin-left: 7%;
  }
  .top_about .top_about_img figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .top_about .top_about_body {
    width: 100%;
    order: 3;
    margin-top: 2rem;
  }
  .top_about .top_about_img2 {
    width: 25%;
    order: 2;
  }
}
@media all and (max-width: 639px) {
  .top_about .top_about_body {
    padding: 0 1rem;
  }
}

.top_news {
  margin: auto;
}
@media all and (max-width: 639px) {
  .top_news {
    padding: 0;
  }
}

.news_dl {
  display: flex;
  flex-wrap: wrap;
  padding: 2rem;
}
@media all and (max-width: 639px) {
  .news_dl {
    padding: 0;
  }
}
.news_dl dt {
  width: 300px;
  padding: 1rem;
}
@media all and (max-width: 639px) {
  .news_dl dt {
    width: 100%;
    padding: 0.5rem;
  }
}
@media all and (max-width: 639px) {
  .news_dl dt .h_ttl {
    margin-bottom: 1rem;
  }
}
@media all and (max-width: 639px) {
  .news_dl dt .h_ttl .ja {
    font-size: 1.25rem;
  }
}
.news_dl dd {
  width: calc(100% - 320px);
  padding: 1rem;
}
@media all and (max-width: 639px) {
  .news_dl dd {
    width: 100%;
    padding: 0.5rem;
  }
}
.news_dl dd .news_txt {
  padding: 1.5rem 0;
  margin-bottom: 1rem;
  border-top: 1px solid #3a3a3a;
  font-weight: 600;
}
.news_dl dd .news_txt .news_date {
  display: inline-block;
  padding: 0.125rem 1rem;
  margin-right: 1rem;
  border-right: 1px solid #3a3a3a;
}
.news_dl dd .news_txt:last-of-type {
  border-bottom: 1px solid #3a3a3a;
}
.news_dl dd a {
  color: #3a3a3a;
}

.list_dl {
  display: flex;
  flex-wrap: wrap;
}
.list_dl dt {
  width: 160px;
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid #3a3a3a;
}
.list_dl dd {
  width: calc(100% - 160px);
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid #3a3a3a;
}

.list_dl2 dt {
  color: #f7458e;
  font-size: 1.125rem;
  margin-bottom: 10px;
}
.list_dl2 dt .num {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background: #fba7c9;
  text-align: center;
  line-height: 2rem;
  color: #fff;
  margin-right: 10px;
}
.list_dl2 dd {
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: 1px solid #fba7c9;
}
.list_dl2 dd:last-of-type {
  border-bottom: 0;
}

.list_dl3 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px;
  background: #fafafa;
}
.list_dl3 dt {
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #f7458e;
}
.list_dl3 dd {
  width: calc(100% - 100px);
}

.list_dl4 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: #fafafa;
  padding: 10px;
}
.list_dl4 dt {
  width: 140px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #ddd;
}
.list_dl4 dd {
  width: calc(100% - 140px);
  padding: 10px;
  border-bottom: 1px solid #ddd;
}

.img_area {
  width: 100%;
  overflow: hidden;
}

.list_link {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 80px;
}
.list_link li {
  width: 31%;
  background: #fbfcfe;
  display: flex;
  align-items: center;
  margin: 1rem 0;
  position: relative;
}
@media all and (max-width: 639px) {
  .list_link li {
    width: 100%;
  }
}
.list_link li a {
  display: block;
  width: calc(100% - 90px);
  padding: 1rem;
  color: #3a3a3a;
  position: relative;
}
.list_link li a::before {
  font-family: "Font Awesome 5 Free";
  content: "\f054";
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.list_link li a b {
  font-size: 0.75rem;
}
.list_link li span {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f7458e;
  font-size: 1.25rem;
  font-weight: 600;
}

.flx {
  display: flex;
  flex-wrap: wrap;
}

.flx2 {
  display: flex;
  flex-wrap: wrap;
}
.flx2 .flx_in {
  width: 48%;
}
@media all and (max-width: 639px) {
  .flx2 .flx_in {
    width: 100%;
  }
}
.flx2 .flx_in .img_max {
  width: 100%;
}
.flx2 .flx_in.textarea {
  padding: 2rem;
}
@media all and (max-width: 639px) {
  .flx2 .flx_in.textarea {
    padding: 0;
  }
}
.flx2.type2 .flx_in {
  width: 40%;
}
.flx2.type2 .flx_in img {
  width: 100%;
}
@media all and (max-width: 639px) {
  .flx2.type2 .flx_in {
    width: 100%;
  }
}
.flx2.type2 .flx_in:nth-of-type(2) {
  width: 55%;
}
@media all and (max-width: 639px) {
  .flx2.type2 .flx_in:nth-of-type(2) {
    width: 100%;
  }
}
.flx2.type3 .flx_in {
  width: 55%;
}
@media all and (max-width: 639px) {
  .flx2.type3 .flx_in {
    width: 100%;
  }
}
.flx2.type3 .flx_in:nth-of-type(2) {
  width: 40%;
}
@media all and (max-width: 639px) {
  .flx2.type3 .flx_in:nth-of-type(2) {
    width: 100%;
  }
}
.flx2.type4 .flx_in {
  width: 30%;
}
@media all and (max-width: 639px) {
  .flx2.type4 .flx_in {
    width: 100%;
  }
}
.flx2.type4 .flx_in:nth-of-type(2) {
  width: 65%;
}
@media all and (max-width: 639px) {
  .flx2.type4 .flx_in:nth-of-type(2) {
    width: 100%;
  }
}
.flx2.type5 .flx_in {
  width: 25%;
}
@media all and (max-width: 639px) {
  .flx2.type5 .flx_in {
    width: 100%;
  }
}
.flx2.type5 .flx_in:nth-of-type(2) {
  width: 70%;
}
@media all and (max-width: 639px) {
  .flx2.type5 .flx_in:nth-of-type(2) {
    width: 100%;
  }
}

.flx3 {
  display: flex;
  flex-wrap: wrap;
}
.flx3 .flx_in {
  width: 31%;
}
@media all and (max-width: 639px) {
  .flx3 .flx_in {
    width: 100%;
  }
}
@media all and (max-width: 1200px) {
  .flx3.type2 .flx_in {
    width: 48%;
  }
}

.flx4 {
  display: flex;
  flex-wrap: wrap;
}
.flx4 .flx_in {
  width: 23%;
}
@media all and (max-width: 639px) {
  .flx4 .flx_in {
    width: 48%;
  }
}

.flx6 {
  display: flex;
  flex-wrap: wrap;
}
.flx6 .flx_in {
  width: 15%;
}
@media all and (max-width: 639px) {
  .flx6 .flx_in {
    width: 48%;
  }
}

.r_reverse {
  flex-direction: row-reverse;
}

.ai_center {
  align-items: center;
}

.ai_start {
  align-items: flex-start;
}

.ai_end {
  align-items: flex-end;
}

.jc_center {
  justify-content: center;
}

.jc_between {
  justify-content: space-between;
}

.jc_end {
  justify-content: flex-end;
}

.pos_r {
  position: relative;
}

.bg_translucent {
  background: rgba(255, 255, 255, 0.9);
}

.bg_area {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(../img/bg_area.jpg) no-repeat center/cover;
}

.bg_base {
  background: #f7458e;
}
.bg_base.bg_right {
  background: linear-gradient(to left, #f7458e 75%, transparent 75%);
}
.bg_base.bg_left {
  background: linear-gradient(to right, #f7458e 75%, transparent 75%);
}
.bg_base.bg_btm {
  background: linear-gradient(to top, #f7458e 55%, transparent 55%);
}
.bg_base.minus {
  margin-top: -100px;
}

.bg_gray {
  background: #eaeaea;
}
.bg_gray.bg_right {
  background: linear-gradient(to left, #fafafa 85%, transparent 85%);
}
.bg_gray.bg_left {
  background: linear-gradient(to right, #fafafa 85%, transparent 85%);
}
.bg_gray.minus {
  margin-top: -100px;
}

.bg_gray2 {
  position: relative;
  background-image: linear-gradient(23deg, rgba(202, 202, 202, 0.02) 0%, rgba(202, 202, 202, 0.02) 13%, transparent 13%, transparent 80%, rgba(11, 11, 11, 0.02) 80%, rgba(11, 11, 11, 0.02) 100%), linear-gradient(42deg, rgba(98, 98, 98, 0.02) 0%, rgba(98, 98, 98, 0.02) 36%, transparent 36%, transparent 77%, rgba(252, 252, 252, 0.02) 77%, rgba(252, 252, 252, 0.02) 100%), linear-gradient(286deg, rgba(173, 173, 173, 0.02) 0%, rgba(173, 173, 173, 0.02) 2%, transparent 2%, transparent 12%, rgba(59, 59, 59, 0.02) 12%, rgba(59, 59, 59, 0.02) 100%), linear-gradient(77deg, rgba(87, 87, 87, 0.02) 0%, rgba(87, 87, 87, 0.02) 18%, transparent 18%, transparent 55%, rgba(247, 247, 247, 0.02) 55%, rgba(247, 247, 247, 0.02) 100%), linear-gradient(90deg, rgb(255, 255, 255), rgb(255, 255, 255));
}
.bg_gray2.type1 {
  background-image: linear-gradient(16deg, rgba(116, 116, 116, 0.02) 0%, rgba(116, 116, 116, 0.02) 25%, transparent 25%, transparent 96%, rgba(177, 177, 177, 0.02) 96%, rgba(177, 177, 177, 0.02) 100%), linear-gradient(236deg, rgba(148, 148, 148, 0.02) 0%, rgba(148, 148, 148, 0.02) 53%, transparent 53%, transparent 59%, rgba(56, 56, 56, 0.02) 59%, rgba(56, 56, 56, 0.02) 100%), linear-gradient(284deg, rgba(16, 16, 16, 0.02) 0%, rgba(16, 16, 16, 0.02) 46%, transparent 46%, transparent 71%, rgba(181, 181, 181, 0.02) 71%, rgba(181, 181, 181, 0.02) 100%), linear-gradient(316deg, rgba(197, 197, 197, 0.02) 0%, rgba(197, 197, 197, 0.02) 26%, transparent 26%, transparent 49%, rgba(58, 58, 58, 0.02) 49%, rgba(58, 58, 58, 0.02) 100%), linear-gradient(90deg, rgb(255, 255, 255), rgb(255, 255, 255));
}
.bg_gray2.bg-half-bottom {
  background: transparent;
  background-image: linear-gradient(to bottom, transparent 0%, transparent 50%, #eaeaea 50.1%, #eaeaea 100%);
}
.bg_gray2.bg-half-upper {
  background: transparent;
  background-image: linear-gradient(to bottom, #eaeaea 0%, #eaeaea 50%, transparent 50.1%, transparent 100%);
}

.bg_white {
  background: #fff;
}
.bg_white.bg_left {
  background: linear-gradient(to right, #fff 85%, transparent 85%);
}
.bg_white.minus {
  margin-top: -100px;
}

.bg_beige {
  background: #f7458e;
  position: relative;
}
.bg_beige.bg_right {
  background: transparent;
}
.bg_beige.bg_right::before {
  content: "";
  display: block;
  width: calc(100% - 90px);
  height: 100%;
  background: #f7458e;
  position: absolute;
  top: 0;
  right: 0;
}
@media all and (max-width: 639px) {
  .bg_beige.bg_right::before {
    width: calc(100% - 60px);
  }
}
.bg_beige.bg_left {
  background: transparent;
}
.bg_beige.bg_left::before {
  content: "";
  display: block;
  width: calc(100% - 90px);
  height: 100%;
  background: #f7458e;
  position: absolute;
  top: 0;
  left: 0;
}
@media all and (max-width: 639px) {
  .bg_beige.bg_left::before {
    width: calc(100% - 60px);
  }
}
.bg_beige.bg_right2 {
  background: transparent;
}
.bg_beige.bg_right2::before {
  content: "";
  display: block;
  width: calc(100% - 90px);
  height: 50%;
  background: #f7458e;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media all and (max-width: 639px) {
  .bg_beige.bg_right2::before {
    width: calc(100% - 60px);
  }
}
.bg_beige.bg_left2 {
  background: transparent;
}
.bg_beige.bg_left2::before {
  content: "";
  display: block;
  width: calc(100% - 90px);
  height: 50%;
  background: #f7458e;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media all and (max-width: 639px) {
  .bg_beige.bg_left2::before {
    width: calc(100% - 60px);
  }
}
.bg_beige.bg_left3 {
  background: transparent;
}
.bg_beige.bg_left3::before {
  content: "";
  display: block;
  width: calc(100% - 90px);
  height: 50%;
  background: #f7458e;
  position: absolute;
  top: 0;
  left: 0;
}
@media all and (max-width: 639px) {
  .bg_beige.bg_left3::before {
    width: calc(100% - 60px);
  }
}
.bg_beige.bg_btm {
  background: transparent;
}
.bg_beige.bg_btm::before {
  content: "";
  display: block;
  width: 100%;
  height: 50%;
  background: #f7458e;
  position: absolute;
  bottom: 0;
  right: 0;
}
.bg_beige.mg_t100 {
  margin-top: 100px;
}
@media all and (max-width: 639px) {
  .bg_beige.mg_t100 {
    margin-top: 50px;
  }
}

.bg_beige2 {
  background: #eaeaea;
  position: relative;
}
.bg_beige2.bg_right {
  background: transparent;
}
.bg_beige2.bg_right::before {
  content: "";
  display: block;
  width: calc(100% - 90px);
  height: 100%;
  background: #eaeaea;
  position: absolute;
  top: 0;
  right: 0;
}
.bg_beige2.bg_left {
  background: transparent;
}
.bg_beige2.bg_left::before {
  content: "";
  display: block;
  width: calc(100% - 90px);
  height: 100%;
  background: #eaeaea;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 0 80px 80px 0;
}
.bg_beige2.bg_left2 {
  background: transparent;
}
.bg_beige2.bg_left2::before {
  content: "";
  display: block;
  width: calc(100% - 90px);
  height: 50%;
  background: #eaeaea;
  position: absolute;
  bottom: 0;
}

.bg_img1 {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(../img/contact_bg.jpg) no-repeat center/cover;
  background-attachment: fixed;
  position: relative;
}
.bg_img1::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #ffc5dd;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media all and (max-width: 639px) {
  .bg_img1 {
    background-attachment: scroll;
  }
}

.bg_skew {
  position: relative;
}
.bg_skew:before, .bg_skew:after {
  content: "";
  display: block;
  width: 25%;
  height: 200%;
  background: #fafafa;
  transform: matrix(1, 0, -0.3, 1, 0, 0);
  position: absolute;
  top: 0;
  z-index: -1;
}
@media all and (max-width: 1080px) {
  .bg_skew:before, .bg_skew:after {
    width: 100%;
  }
}
.bg_skew:before {
  transform-origin: 100% 0;
  left: 0;
}
@media all and (max-width: 1080px) {
  .bg_skew:before {
    transform-origin: 0 0;
    transform: none;
  }
}
.bg_skew:after {
  transform-origin: 0 100%;
  right: 0;
}
@media all and (max-width: 1080px) {
  .bg_skew:after {
    display: none;
  }
}

.bg_dot {
  background: radial-gradient(#161e73 2px, transparent 2px), radial-gradient(#33e6fb 2px, #fff 2px);
  background-size: 40px 40px;
  background-position: 0 0, 20px 20px;
  position: relative;
  z-index: 1;
}
.bg_dot:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  position: absolute;
  top: 0;
  left: 0;
}

.bg_map {
  width: 1020px;
  max-width: 100%;
  margin: auto;
  position: relative;
}
.bg_map:before {
  content: "";
  width: 100%;
  height: 80%;
  background: url(../img/bg_map.svg) no-repeat right/contain;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media all and (max-width: 639px) {
  .bg_map:before {
    opacity: 0.8;
  }
}
.bg_map .map_box {
  max-width: 50%;
}
.bg_map .map_box p {
  font-size: 1.25rem;
}
@media all and (max-width: 639px) {
  .bg_map .map_box p {
    font-size: 1rem;
  }
}
@media all and (max-width: 639px) {
  .bg_map .map_box {
    max-width: 100%;
  }
}

.pos_z {
  position: relative;
  z-index: 1;
}

.ov_h {
  overflow: hidden;
}

.lh2 {
  line-height: 2;
}

.lh25 {
  line-height: 2.5;
}
@media all and (max-width: 639px) {
  .lh25 {
    line-height: 1.6;
  }
}

.lh28 {
  line-height: 2.8;
}
@media all and (max-width: 639px) {
  .lh28 {
    line-height: 2;
  }
}

.t_shadow {
  text-shadow: 0px 0px 3px #fff, 0px 0px 3px #fff, 0px 0px 3px #fff, 0px 0px 3px #fff, 0px 0px 3px #fff, 0px 0px 3px #fff, 0px 0px 3px #fff, 0px 0px 3px #fff, 0px 0px 3px #fff, 0px 0px 3px #fff, 0px 0px 3px #fff, 0px 0px 3px #fff, 0px 0px 3px #fff, 0px 0px 3px #fff, 0px 0px 3px #fff, 0px 0px 3px #fff, 0px 0px 3px #fff, 0px 0px 3px #fff, 0px 0px 3px #fff, 0px 0px 3px #fff, 0px 0px 3px #fff, 0px 0px 3px #fff, 0px 0px 3px #fff, 0px 0px 3px #fff, 0px 0px 3px #fff, 0px 0px 3px #fff, 0px 0px 3px #fff, 0px 0px 3px #fff, 0px 0px 3px #fff, 0px 0px 3px #fff, 0px 0px 3px #fff, 0px 0px 3px #fff, 0px 0px 3px #fff, 0px 0px 3px #fff, 0px 0px 3px #fff, 0px 0px 3px #fff, 0px 0px 3px #fff, 0px 0px 3px #fff, 0px 0px 3px #fff, 0px 0px 3px #fff, 0px 0px 3px #fff, 0px 0px 3px #fff, 0px 0px 3px #fff, 0px 0px 3px #fff, 0px 0px 3px #fff, 0px 0px 3px #fff, 0px 0px 3px #fff, 0px 0px 3px #fff, 0px 0px 3px #fff, 0px 0px 3px #fff, 0px 0px 3px #fff, 0px 0px 3px #fff, 0px 0px 3px #fff, 0px 0px 3px #fff, 0px 0px 3px #fff, 0px 0px 3px #fff, 0px 0px 3px #fff, 0px 0px 3px #fff, 0px 0px 3px #fff;
}

.page_wrap {
  overflow: hidden;
}

.page_title_box {
  position: relative;
  padding: 150px 0 100px;
  background: linear-gradient(rgba(245, 243, 237, 0.8), rgba(245, 243, 237, 0.8)), url(../img/1.jpg) no-repeat center/cover;
  width: 100%;
  margin: auto;
  transition: 0.5s ease;
}
@media all and (max-width: 639px) {
  .page_title_box {
    padding: 100px 0 20px;
  }
}
.page_title_box .inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  min-height: 450px;
  margin: 0 auto;
  padding-top: 120px;
}
@media all and (max-width: 1080px) {
  .page_title_box .inner {
    width: 90%;
    min-height: auto;
    padding: 40px 1rem;
  }
}
.page_title_box .page_title {
  margin-bottom: 32px;
  text-align: center;
  color: #3a3a3a;
  font-size: 2.5rem;
  font-weight: 600;
}
@media all and (max-width: 1080px) {
  .page_title_box .page_title {
    text-align: center;
    font-size: 1.5rem;
  }
}
.page_title_box .page_title span {
  font-family: "Libre Baskerville", serif;
  letter-spacing: 0.25rem;
  font-weight: 600;
  letter-spacing: 0.25rem;
  display: block;
  font-size: 1.25rem;
}
.page_title_box .page_title span::first-letter {
  color: #f7458e;
}
@media all and (max-width: 1080px) {
  .page_title_box .page_title span {
    font-size: 1rem;
  }
}
.page_title_box.page_1 {
  background-color: #ffa32c;
}
.page_title_box.page_1 .page_title span {
  color: #e8972d;
}
.page_title_box.page_1 .table_contents {
  border-left: 2px solid #e8972d;
}
.page_title_box.page_2 {
  background-color: #e53232;
}
.page_title_box.page_2 .page_title span {
  color: #9d2121;
}
.page_title_box.page_2 .table_contents {
  border-left: 2px solid #9d2121;
}
.page_title_box.page_3 {
  background-color: #028b82;
}
.page_title_box.page_3 .page_title span {
  color: #025751;
}
.page_title_box.page_3 .table_contents {
  border-left: 2px solid #025751;
}
.page_title_box.page_4 {
  background-color: #228cbb;
}
.page_title_box.page_4 .page_title span {
  color: #04648e;
}
.page_title_box.page_4 .table_contents {
  border-left: 2px solid #04648e;
}
.page_title_box.page_5 {
  background-color: #f6d273;
}
.page_title_box.page_5 .page_title span {
  color: #9a8242;
}
.page_title_box.page_5 .table_contents {
  border-left: 2px solid #9a8242;
}
.page_title_box.on {
  opacity: 1;
}

.table_contents {
  padding-left: 1.5em;
}
.table_contents li {
  margin-bottom: 8px;
}
.table_contents li::before {
  content: "・";
  color: #fff;
}
.table_contents li a {
  position: relative;
  color: #fff;
}
.table_contents li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  background-color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.table_contents li a:hover:after {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}

.page_image {
  overflow: hidden;
  position: absolute;
  z-index: 1;
  width: 1200px;
  height: 450px;
  bottom: 0;
  right: 0;
}
@media all and (max-width: 1580px) {
  .page_image {
    width: 900px;
  }
}
@media all and (max-width: 1200px) {
  .page_image {
    width: 860px;
  }
}
@media all and (max-width: 1080px) {
  .page_image {
    position: static;
    width: 100%;
    height: 240px;
  }
}
.page_image img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  vertical-align: middle;
}

.rec_box {
  margin-bottom: 3rem;
}
@media all and (max-width: 639px) {
  .rec_box {
    margin-bottom: 1.5rem;
  }
}

.link {
  margin-top: 1rem;
}
.link a {
  text-decoration: underline;
}

.form dl dt {
  float: left;
  width: 400px;
  padding-top: 20px;
  font-weight: 600;
}
@media all and (max-width: 639px) {
  .form dl dt {
    float: none;
  }
}
.form dl dt span {
  color: #fff;
  background: #9ed591;
  padding: 5px 8px;
  margin-right: 5px;
  font-size: 11px;
  border-radius: 20px;
  position: relative;
  top: -2px;
}
.form dl dt span.nini {
  background: #aaa;
  color: #fff;
}
.form dl dd {
  padding-left: 400px;
  padding-bottom: 20px;
  padding-top: 23px;
  line-height: 1.5;
  border-bottom: 1px dotted #cccccc;
}
.form dl dd:last-child {
  border-bottom: none;
}
@media all and (max-width: 639px) {
  .form dl dd {
    padding-top: 10px;
    padding-left: 0;
  }
}
.form .textarea, .form textarea {
  border: 0;
  padding: 15px;
  width: 100%;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
  background: #f0f0f0;
}
.form .textarea02 {
  width: 48.5% !important;
  margin-right: 3%;
}
.form .textarea02:last-child {
  margin-right: 0;
}
.form .textarea03 {
  width: 20% !important;
  margin-right: 1%;
}
@media all and (max-width: 639px) {
  .form .textarea03 {
    width: 50% !important;
  }
}
.form button {
  cursor: pointer;
  display: block;
  text-align: center;
  transition: all 0.2s ease-in-out 0s;
  border: 1px solid #9ed591;
  font-weight: 600;
  padding: 12px 5px;
  margin: 0 auto;
  width: 250px;
  background: #9ed591;
  color: #fff;
  border-radius: 25px;
}
.form button:hover {
  background: #fff;
  color: #161e73;
}
.form button:before {
  font-weight: normal;
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
  margin-right: 10px;
}
.form .select-wrap {
  position: relative;
  overflow: hidden;
  display: inline-block;
  min-width: 192px;
  min-width: 12em;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  color: #333;
}
.form .select-wrap select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  z-index: 2;
  display: block;
  width: 200%;
  width: -webkit-calc(100% + 5em);
  margin: 0;
  padding: 11px 35px 11px 11px;
  padding: 0.6875rem 2.1875rem 0.6875rem 0.6875rem;
  background: transparent;
  border: 0;
  outline: none;
  line-height: 1.5;
}
.form .entypo-down-open-mini:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0ab";
  font-weight: 900;
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 12px;
  right: 0.75rem;
  margin-top: -8px;
  margin-top: -0.5rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1;
  color: #f7458e;
}
.form label.radio_text {
  cursor: pointer;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
  padding-left: 20px;
  display: inline-block;
}
.form label.radio_text:before {
  position: absolute;
  width: 15px;
  height: 15px;
  border: 1px solid #ccc;
  border-radius: 50%;
  left: 0px;
  top: 5px;
  content: "";
  z-index: 3;
}
.form label.radio_text:after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 100%;
  left: 3px;
  top: 8px;
  background-color: #f7458e;
  z-index: 1;
}
.form label.radio_text input[type=radio] {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  z-index: 2;
  width: 20px;
  height: 20px;
  left: -23px;
  top: 0px;
  margin: 0px;
  box-shadow: 20px -1px #fff;
}
.form label.radio_text input[type=radio]:checked {
  box-shadow: none;
}
.form label.radio_text input[type=radio]:focus {
  opacity: 0.2;
  box-shadow: 20px -1px #eeebda;
}
.form label.checkbox_text {
  cursor: pointer;
  position: relative;
  padding-left: 25px;
  margin: 0 20px 5px 0;
  overflow: hidden;
  display: inline-block;
}
.form label.checkbox_text:before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid #ccc;
  z-index: 3;
  padding: 1px;
}
.form label.checkbox_text:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 5px;
  display: block;
  margin-top: -9px;
  width: 8px;
  height: 12px;
  border-right: 3px solid #f7458e;
  border-bottom: 3px solid #f7458e;
  transform: rotate(45deg);
  z-index: 1;
}
.form label.checkbox_text input[type=checkbox] {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  left: -40px;
  width: 20px;
  height: 20px;
  display: block;
  box-shadow: 41px 0px #fff;
  z-index: 2;
  margin: 0px;
  padding: 0px;
}
.form label.checkbox_text input[type=checkbox]:checked {
  box-shadow: none;
}
.form label.checkbox_text input[type=checkbox]:checked:focus {
  outline: none;
}
.form label.checkbox_text input[type=checkbox]:focus {
  outline: none;
}
.form input[type=text], .form textarea {
  font-size: 16px;
}

.acc_toggle {
  padding: 1rem;
  text-align: center;
  font-size: 1.5rem;
  position: relative;
  background: #f7458e;
  border-radius: 10px;
  color: #fff;
  transition: 0.3s ease;
  cursor: pointer;
}
@media all and (max-width: 639px) {
  .acc_toggle {
    text-align: left;
    font-size: 1rem;
  }
}
.acc_toggle:before {
  font-family: "Font Awesome 5 Free";
  content: "\f05a";
  font-weight: 900;
  margin-right: 5px;
}
.acc_toggle:after {
  font-family: "Font Awesome 5 Free";
  content: "\f067";
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
  font-size: 1rem;
  transition: 0.3s ease;
}
@media all and (max-width: 639px) {
  .acc_toggle:after {
    right: 1rem;
  }
}
.acc_toggle.on {
  border-radius: 10px 10px 0 0;
}
.acc_toggle.on:after {
  transform: translateY(-50%) rotate(135deg);
}

.acc_body {
  display: none;
  padding: 2rem 1rem;
  border: 1px solid #161e73;
  border-top: 0;
  border-radius: 0 0 10px 10px;
}
@media all and (max-width: 639px) {
  .acc_body {
    padding: 1rem 0;
  }
}

.faq_wrap {
  background: #fff;
  margin-bottom: 1rem;
}

.faq_toggle {
  display: flex;
  align-items: baseline;
  padding: 1rem 2rem;
  position: relative;
  transition: 0.3s ease;
  font-size: 1.5rem;
  font-weight: 600;
  cursor: pointer;
}
@media all and (max-width: 639px) {
  .faq_toggle {
    text-align: left;
    font-size: 1rem;
    padding-left: 0;
  }
}
.faq_toggle span {
  font-family: "Libre Baskerville", serif;
  letter-spacing: 0.25rem;
  font-weight: 600;
  color: #9ed591;
  font-size: 2rem;
  font-weight: 600;
  margin-right: 10px;
  margin-top: -9px;
}
.faq_toggle:after {
  font-family: "Font Awesome 5 Free";
  content: "\f067";
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
  font-size: 1rem;
  transition: 0.3s ease;
}
@media all and (max-width: 639px) {
  .faq_toggle:after {
    right: 0;
  }
}
.faq_toggle.on:after {
  transform: translateY(-50%) rotate(135deg);
}

.faq_body {
  display: none;
  padding: 0 2rem 1rem;
  font-size: 1.125rem;
}
@media all and (max-width: 639px) {
  .faq_body {
    padding: 0 0 1rem;
  }
}
.faq_body .faq_inner {
  display: flex;
  align-items: baseline;
  font-weight: 600;
}
.faq_body .faq_inner .answer {
  font-family: "Libre Baskerville", serif;
  letter-spacing: 0.25rem;
  font-weight: 600;
  color: #e0315a;
  font-size: 2rem;
  font-weight: 600;
  margin-right: 10px;
}

#modal_bg {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 80;
  transition: 0.5s ease;
}
#modal_bg #modal_inner {
  padding: 40px;
  background: #f7458e;
}
#modal_bg #modal_inner .modal_img {
  width: 100px;
  margin: auto;
}
#modal_bg #modal_inner .modal_txt {
  color: #fff;
}
#modal_bg #modal_inner #modal_close {
  position: relative;
  text-align: center;
  margin-top: 40px;
}
#modal_bg #modal_inner #modal_close span {
  font-size: 2rem;
  color: #fff;
}
#modal_bg.active {
  opacity: 1;
  visibility: visible;
}
@media all and (max-width: 639px) {
  #modal_bg .flx3 .flx_in {
    width: 48%;
  }
}

#modal_toggle {
  text-align: center;
}
#modal_toggle span {
  display: inline-block;
  font-size: 1.5rem;
  background: #f7458e;
  color: #fff;
  padding: 2rem 6rem;
  cursor: pointer;
}
@media all and (max-width: 639px) {
  #modal_toggle span {
    font-size: 1.25rem;
    padding: 1rem 2rem;
  }
}
#modal_toggle span:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0da";
  font-weight: 900;
  margin-right: 5px;
}

.btn01 {
  text-align: center;
}
.btn01 a {
  width: 300px;
  max-width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  margin: auto;
  color: #f7458e;
  border: 1px solid #f7458e;
  position: relative;
  transition: 0.5s ease;
}
@media all and (max-width: 639px) {
  .btn01 a {
    font-size: 0.875rem;
    padding: 1rem 2rem;
  }
}
.btn01 a svg {
  width: 1rem;
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  fill: #f7458e;
  transition: 0.5s ease;
}
.btn01 a:hover {
  background: #f7458e;
  color: #fff;
}
.btn01 a:hover svg {
  fill: #fff;
}

.insta_btn {
  color: #fff;
  border-radius: 7px;
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  text-align: center;
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
  overflow: hidden;
  text-decoration: none;
}
.insta_btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(15deg, #ffdb2c, rgb(249, 118, 76) 25%, rgba(255, 77, 64, 0) 50%) no-repeat;
}
.insta_btn .fa-instagram {
  font-size: 1.5rem;
  position: relative;
}
.insta_btn span {
  display: inline-block;
  position: relative;
  margin-left: 0.5rem;
  z-index: 1;
}

.list_btn {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.list_btn li {
  margin: 1rem;
}
@media all and (max-width: 639px) {
  .list_btn li {
    width: 80%;
  }
}

#sp_menu {
  width: 100%;
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 88;
  transition: 0.5s ease;
}
#sp_menu.fixed {
  transform: translateY(0);
}
@media all and (max-width: 1080px) {
  #sp_menu {
    display: block;
  }
}
#sp_menu ul {
  display: flex;
  justify-content: space-between;
}
#sp_menu ul li {
  width: 24%;
}
#sp_menu ul li a {
  font-family: "Libre Baskerville", serif;
  letter-spacing: 0.25rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: normal;
  display: block;
  padding: 0.25rem;
  background: #f7458e;
  color: #fff;
  font-size: 0.5rem;
}
#sp_menu ul li a span {
  display: block;
  text-align: center;
}

.blog_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.blog_wrap .blog_main {
  width: 78%;
}
@media all and (max-width: 1080px) {
  .blog_wrap .blog_main {
    width: 100%;
  }
}
.blog_wrap .blog_main .blog_detail_date {
  display: inline-block;
  padding: 5px 10px;
  margin-bottom: 1rem;
  color: #fff;
  background-color: #ffab3e;
  border-radius: 5px;
}
.blog_wrap .blog_side {
  width: 20%;
}
@media all and (max-width: 1080px) {
  .blog_wrap .blog_side {
    width: 100%;
  }
}
.blog_wrap .blog_side .archive {
  padding: 0.5rem;
  background: #f7458e;
  margin-bottom: 0.5rem;
  color: #fff;
}
.blog_wrap .blog_side .archive:before {
  font-family: "Font Awesome 5 Free";
  content: "\f03a";
  font-weight: 900;
  margin-right: 5px;
}
.blog_wrap .blog_side ul li {
  padding: 0.5rem;
  border-bottom: 1px dashed #f7458e;
}
.blog_wrap .blog_side ul li a {
  color: #3a3a3a;
}

.content {
  display: none;
}
.content.is-show {
  display: block;
}

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

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

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

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

@keyframes zoom-in {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.12);
  }
}
.thanks {
  width: 700px;
  max-width: 100%;
  padding: 2rem;
  margin: auto;
  background: #fff;
  border: 3px solid #3a3a3a;
  box-shadow: 0 0 0 8px rgba(255, 197, 221, 0.8);
}

#page_top {
  position: fixed;
  right: 30px;
  bottom: 10px;
  z-index: 2;
  opacity: 0;
  transform: translateY(100px);
  mix-blend-mode: difference;
  writing-mode: vertical-rl;
}
@media all and (max-width: 1080px) {
  #page_top {
    bottom: 70px;
    right: 10px;
  }
}
#page_top a {
  display: flex;
  align-items: center;
  text-transform: uppercase;
  text-decoration: none;
  color: #3a3a3a;
  transition: all 0.3s;
  cursor: pointer;
}
#page_top a:hover {
  opacity: 0.5;
}
#page_top a span {
  display: block;
  font-weight: 600;
  margin-top: 10px;
}
#page_top a img {
  width: 1rem;
}
#page_top.pageUp {
  animation: pageUp 0.5s forwards;
}
#page_top.pagDown {
  animation: pagDown 0.5s forwards;
}

@keyframes pageUp {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pagDown {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(100px);
  }
}
.catch_wrap {
  overflow: hidden;
}

.catch_anim {
  opacity: 0;
  display: inline-block;
  overflow: hidden;
}
.catch_anim.on {
  animation-name: fadeDown;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.8, 0, 0.5, 1);
  opacity: 1 !important;
}
.catch_anim.v2 {
  font-family: "Libre Baskerville", serif;
  letter-spacing: 0.25rem;
  font-weight: 600;
  letter-spacing: 0.5rem;
  padding: 1rem 2rem;
  background: #f7458e;
}

.catch_anim2 {
  opacity: 0;
  display: inline-block;
  overflow: hidden;
}
.catch_anim2.on {
  animation-name: fadeIn;
  animation-delay: 1s;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.8, 0, 0.5, 1);
}

@keyframes fadeDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.slide_anim_wrap {
  display: inline-block;
  overflow: hidden;
}

.slide_anim, .slide_anim2 {
  opacity: 0;
  overflow: hidden;
  display: block;
}
.slide_anim.on, .slide_anim2.on {
  position: relative;
  opacity: 1;
  animation-name: maskIn;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  animation-timing-function: ease;
}
.slide_anim.on:before, .slide_anim2.on:before {
  content: "";
  width: 100%;
  height: 100%;
  background: #ffc5dd;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  animation-name: maskOut;
  animation-duration: 0.5s;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
  animation-timing-function: ease;
}

.slide_anim2.on:before {
  background: #fff;
}

@keyframes maskIn {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes maskOut {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(0);
  }
}
.smooth_ttl {
  font-size: 2rem;
  font-weight: 600;
}
.smooth_ttl .en {
  font-family: "Libre Baskerville", serif;
  letter-spacing: 0.25rem;
  font-weight: 600;
  font-weight: 700;
  font-size: 6rem;
}
@media all and (max-width: 639px) {
  .smooth_ttl .en {
    font-size: 2rem;
  }
}
.smooth_ttl.white {
  color: #fff;
}

.smooth {
  overflow: hidden;
  display: block;
}

.txt_trigger {
  transition: 1s ease-in-out;
  transform: translate3d(0, 100%, 0) skewY(12deg);
  transform-origin: left;
  display: block;
}
.txt_trigger.txt_up {
  transform: translate3d(0, 0, 0) skewY(0);
}

.contact_sec {
  text-align: center;
}
.contact_sec .contact_sec_tel {
  margin: 0 1rem;
}
@media all and (max-width: 639px) {
  .contact_sec .contact_sec_tel {
    margin: 1rem;
  }
}
.contact_sec .contact_sec_tel a {
  font-family: "Libre Baskerville", serif;
  letter-spacing: 0.25rem;
  font-weight: 600;
  font-size: 2rem;
  color: #fff;
}
.contact_sec .contact_sec_tel a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f87b";
  font-weight: 900;
  margin-right: 5px;
}
.contact_sec .contact_sec_tel + p {
  margin-bottom: 2rem;
}
@media all and (max-width: 639px) {
  .contact_sec .contact_sec_tel + p {
    font-size: 0.875rem;
  }
}
.contact_sec .contact_sec_mail {
  margin: 0 1rem;
}
.contact_sec .contact_sec_mail a {
  display: block;
  padding: 1rem 3rem;
  color: #fff;
  border: 1px solid #fff;
  font-size: 1.25rem;
  transition: 0.5s ease;
}
@media all and (max-width: 639px) {
  .contact_sec .contact_sec_mail a {
    padding: 1rem;
    font-size: 1rem;
  }
}
.contact_sec .contact_sec_mail a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
  margin-right: 5px;
}
.contact_sec .contact_sec_mail a:hover {
  background: rgba(255, 255, 255, 0.8);
  color: #161e73;
}
.contact_sec.type2 a {
  color: #161e73;
}
.contact_sec.type2 .contact_sec_mail a {
  border: 1px solid #161e73;
}

.contact_tel {
  text-align: center;
  margin-bottom: 1rem;
}
.contact_tel a {
  display: inline-block;
  font-family: "Libre Baskerville", serif;
  letter-spacing: 0.25rem;
  font-weight: 600;
  font-size: 2rem;
}
.contact_tel a i {
  margin-right: 10px;
}

.contactbnr {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../img/contactbnr.jpg) no-repeat center/cover;
  background-attachment: fixed;
}
@media all and (max-width: 639px) {
  .contactbnr {
    background-attachment: scroll;
  }
}

.info_contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 1rem 0;
  margin: 2rem 0;
}
@media all and (max-width: 639px) {
  .info_contact {
    margin: 1rem 0;
  }
}
.info_contact li {
  width: 300px;
  margin: 0 1rem;
}
@media all and (max-width: 639px) {
  .info_contact li {
    width: 100%;
    text-align: center;
  }
}
.info_contact .info_tel a {
  display: block;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid #fff;
  color: #3a3a3a;
  text-align: center;
}
.info_contact .info_tel a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f87b";
  font-weight: 900;
  margin-right: 5px;
}
@media all and (max-width: 639px) {
  .info_contact .info_tel {
    margin-bottom: 1rem;
  }
}
.info_contact .info_web {
  width: 180px;
}
.info_contact .info_web a {
  display: block;
  padding: 0.5rem 1rem;
  background: #f7458e;
  color: #fff;
  text-align: center;
}
.info_contact .info_web a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f073";
  font-weight: 900;
  margin-right: 5px;
}
.info_contact .info_mail a {
  display: block;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid #fff;
  color: #3a3a3a;
  text-align: center;
}
.info_contact .info_mail a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
  margin-right: 5px;
}

.ceo {
  margin-top: 2rem;
  text-align: right;
}
.ceo span {
  display: inline-block;
  margin-left: 0.5rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.hot_list li {
  margin-bottom: 1rem;
}
.hot_list li span {
  display: inline-block;
  margin-left: 1rem;
  font-size: 1.25rem;
}
.hot_list li i {
  font-size: 2rem;
  color: #e0315a;
}

.r_img img {
  border-radius: 40px;
}

.r_img2 img {
  border-radius: 1rem;
}

.total_box {
  width: 50%;
  padding: 1rem 2rem;
  margin: auto;
  margin-bottom: 2rem;
  background: #fff8fb;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
@media all and (max-width: 639px) {
  .total_box {
    width: 100%;
  }
}
.total_box span {
  color: #fff;
}
.total_box input[type=text].textarea {
  width: auto;
  text-align: right;
  background: #fafafa;
}
@media all and (max-width: 639px) {
  .total_box input[type=text].textarea {
    width: 100%;
    display: block;
    margin-top: 0.5rem;
  }
}

.greet {
  padding-bottom: 340px;
}
@media all and (max-width: 639px) {
  .greet {
    padding: 80px 0 100px;
  }
}
.greet .h_ttl {
  padding-left: calc((100% - 1200px) / 2);
}
@media all and (max-width: 639px) {
  .greet .h_ttl {
    padding-left: 1rem;
  }
}
.greet.v2 {
  padding-bottom: 140px;
  margin-bottom: 80px;
}
.greet.v3 {
  padding-bottom: 140px;
  margin-bottom: 80px;
}

.bg_suisai {
  position: relative;
}
.bg_suisai:before {
  content: "";
  display: block;
  width: 70%;
  height: 60%;
  background: #f5f3ed;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  border-radius: 20px 0 0 20px;
  z-index: -1;
}
.bg_suisai.v2:before {
  bottom: 0;
}

.bg_suisai2 {
  position: relative;
}
.bg_suisai2:before {
  content: "";
  display: block;
  width: 70%;
  height: 75%;
  background: url(../img/bg.jpg) no-repeat center/cover;
  position: absolute;
  bottom: 80px;
  left: 0;
  border-radius: 0 20px 20px 0;
  z-index: -1;
}

.bg_image {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6)), url(../img/contents_bg.jpg) no-repeat center/cover;
  background-attachment: fixed;
}
@media all and (max-width: 639px) {
  .bg_image {
    background-attachment: scroll;
  }
}

.bg_image2 {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.8)), url(../img/contents_bg2.png) no-repeat bottom center/cover;
  background-attachment: fixed;
}
@media all and (max-width: 639px) {
  .bg_image2 {
    background-attachment: scroll;
  }
}

.bg_image3 {
  background: linear-gradient(0deg, rgba(245, 243, 237, 0.95)), url(../img/contents_bg3.png) no-repeat center/cover;
}

.bg_yama {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.8)), url(../img/bg_yama.jpg) no-repeat center right/cover;
  background-attachment: fixed;
}
@media all and (max-width: 639px) {
  .bg_yama {
    background-attachment: scroll;
  }
}

.bg_wave {
  position: relative;
}
.bg_wave .wave_deco {
  display: block;
  width: 100%;
  position: absolute;
  top: -1px;
  left: 0;
  transform: rotate(180deg);
}
.bg_wave .wave_deco2 {
  display: block;
  width: 100%;
  position: absolute;
  bottom: -1px;
  left: 0;
}
.bg_wave.mg_t100 {
  margin-top: 100px;
}
.bg_wave.v2 {
  margin-top: -40px;
}
@media all and (max-width: 639px) {
  .bg_wave.v2 {
    margin-top: 0;
  }
}
.bg_wave.v3 {
  margin-top: 160px;
}
@media all and (max-width: 639px) {
  .bg_wave.v3 {
    margin-top: 0;
  }
}

.bg_wave2 {
  position: relative;
  padding: 40px 0 60px;
  margin-top: 60px;
  background: url(../img/contents_bg.jpg);
}
.bg_wave2:before {
  content: "";
  display: block;
  width: 100%;
  height: 170px;
  background: url(../img/wave.svg) no-repeat;
  position: absolute;
  top: 0;
  left: 0;
}
.bg_wave2.mg_t100 {
  margin-top: 100px;
}
.bg_wave2.v2 {
  margin-top: -200px;
}
@media all and (max-width: 639px) {
  .bg_wave2.v2 {
    margin-top: 0;
  }
}
.bg_wave2.v3 {
  margin-top: 160px;
}
@media all and (max-width: 639px) {
  .bg_wave2.v3 {
    margin-top: 0;
  }
}

.circle_txt {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}
.circle_txt span {
  display: inline-block;
  position: relative;
  color: #3a3a3a;
  margin: 0 10px;
  z-index: 1;
}
.circle_txt span:before {
  content: "";
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #3a3a3a;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.num_list {
  display: flex;
  align-items: center;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #ccc;
}
.num_list .circle_txt {
  align-items: flex-start;
  margin-bottom: 0;
}
.num_list dd {
  padding-left: 15px;
}
.num_list dd p {
  font-size: 1.25rem;
}

.top_contents a, .top_contents .inner {
  display: block;
  position: relative;
}
.top_contents a figure, .top_contents .inner figure {
  overflow: hidden;
}
.top_contents a figure img, .top_contents .inner figure img {
  width: 100%;
  height: 100%;
  transition: 0.3s ease;
}
.top_contents a .txt, .top_contents .inner .txt {
  width: 80%;
  padding: 1rem 2rem;
  margin: auto;
  text-align: center;
  background: #fbfcfe;
  color: #3a3a3a;
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: -50px;
  box-shadow: 0 15px 25px -30px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 2;
}
.top_contents a .txt span, .top_contents .inner .txt span {
  font-family: "Libre Baskerville", serif;
  letter-spacing: 0.25rem;
  font-weight: 600;
  display: block;
  font-size: 1rem;
  font-weight: 400;
}
.top_contents a .txt .arrow_btn, .top_contents .inner .txt .arrow_btn {
  fill: #fff;
  width: 3rem;
  height: 3rem;
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  transition: 0.3s ease;
}
@media all and (max-width: 1080px) {
  .top_contents a .txt, .top_contents .inner .txt {
    font-size: 1.25rem;
  }
}
.top_contents a .top_body, .top_contents .inner .top_body {
  padding: 1rem;
}
@media all and (max-width: 639px) {
  .top_contents .flx_in {
    margin-bottom: 2rem;
  }
}

.btm_contents .wrap {
  display: block;
  position: relative;
  overflow: hidden;
}
.btm_contents .wrap figure {
  overflow: hidden;
}
.btm_contents .wrap figure img {
  width: 100%;
  height: 100%;
  transition: 0.3s ease;
}
.btm_contents .wrap .txt {
  width: 80%;
  padding: 1rem 2rem;
  margin: auto;
  text-align: center;
  background: #fbfcfe;
  color: #3a3a3a;
  font-size: 1.5rem;
  font-weight: 600;
  transform: translateY(-50%);
  z-index: 2;
}
.btm_contents .wrap .txt span {
  font-family: "Libre Baskerville", serif;
  letter-spacing: 0.25rem;
  font-weight: 600;
  display: block;
  font-size: 1.5rem;
  font-weight: 600;
}
@media all and (max-width: 639px) {
  .btm_contents .flx_in {
    margin-bottom: 2rem;
  }
}

.top_greet_txt {
  display: flex;
  justify-content: center;
  text-align: center;
}
@media all and (max-width: 639px) {
  .top_greet_txt {
    text-align: left;
  }
}

.top_blog {
  display: flex;
  flex-wrap: wrap;
  padding: 40px;
  border: 2px solid #f7458e;
  background: #fff;
  border-radius: 20px;
}
@media all and (max-width: 639px) {
  .top_blog {
    padding: 1rem;
  }
}
.top_blog .top_blog_box {
  width: 30%;
  margin: 10px 1.5%;
}
@media all and (max-width: 639px) {
  .top_blog .top_blog_box {
    width: 100%;
    margin: 0 0 2rem;
  }
}
.top_blog .top_blog_box a {
  display: block;
  transition: 0.3s ease;
}
.top_blog .top_blog_box a figure {
  height: 240px;
  margin-bottom: 1rem;
  overflow: hidden;
}
.top_blog .top_blog_box a figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s ease;
}
.top_blog .top_blog_box a .blog_date {
  font-weight: 600;
  color: #f7458e;
}
.top_blog .top_blog_box a .top_blog_ttl {
  font-weight: 600;
  color: #3a3a3a;
}
.top_blog .top_blog_box a:hover figure img {
  transform: scale(1.1);
}

.top_rec {
  position: relative;
  padding-bottom: 100px;
}
@media all and (max-width: 639px) {
  .top_rec {
    padding-bottom: 50px;
  }
}
.top_rec .top_rec_img {
  width: 100%;
  height: 480px;
  position: relative;
  overflow: hidden;
}
@media all and (max-width: 639px) {
  .top_rec .top_rec_img {
    width: 100%;
    height: 240px;
  }
}
.top_rec .top_rec_img:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.top_rec .top_rec_img .prlx_img {
  width: 100%;
  height: 120%;
}
.top_rec .top_rec_img .prlx_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top_rec .top_rec_body {
  width: 800px;
  max-width: 90%;
  padding: 2rem;
  margin: -200px auto 0;
  background: #fff;
  box-shadow: 0 15px 25px -30px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 2;
}
@media all and (max-width: 639px) {
  .top_rec .top_rec_body {
    max-width: 95%;
    padding: 1rem;
    margin: -50px auto 0;
  }
}

.morebtn_wrap {
  position: relative;
}
.morebtn_wrap .btn_ico {
  width: 82px;
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
}
@media all and (max-width: 639px) {
  .morebtn_wrap .btn_ico {
    width: 42px;
    top: -38px;
  }
}

.morebtn {
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
  border: 0;
  margin: 15px 0;
  vertical-align: middle;
  text-decoration: none;
  background: #fff;
  border-radius: 40px;
  border: 1px solid #ddd;
  padding: 6px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 3px 8px;
  width: 240px;
  font-size: 1rem;
}
.morebtn .circle {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: relative;
  display: block;
  margin: 0;
  width: 44px;
  height: 44px;
  background: #0050a7;
  margin-left: -1px;
  border-radius: 22px;
}
.morebtn .circle .icon {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #fff;
}
.morebtn .circle .icon.arrow {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  left: 4px;
  width: 2rem;
  height: 0.125rem;
  background: none;
}
.morebtn .circle .icon.arrow:before {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  content: "";
  top: -0.25rem;
  right: 0.625rem;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.125rem solid #fff;
  border-right: 0.125rem solid #fff;
  transform: rotate(45deg);
}
.morebtn .button-text {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px 0;
  margin: 0 0 0 1.85rem;
  color: #222;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  text-transform: uppercase;
}
.morebtn:hover .circle {
  width: 101%;
  background: #0050a7;
}
.morebtn:hover .circle .icon.arrow {
  background: #fff;
  transform: translate(1rem, 0);
}
.morebtn:hover .circle .icon.arrow:before {
  right: 0;
}
.morebtn:hover .button-text {
  color: #fff;
}
.morebtn.type1 {
  background: #f7458e;
  width: 280px;
}
.morebtn.type1 .circle {
  background: #fff;
}
.morebtn.type1 .icon {
  background: #ffc5dd;
}
.morebtn.type1 .icon.arrow:before {
  border-color: #f7458e;
}
.morebtn.type1 .button-text {
  color: #fff;
  font-size: 1.1em;
}
.morebtn.type1:hover .button-text {
  color: #f7458e;
}

.svg_wrap {
  position: absolute;
  z-index: -9999;
}

@media all and (max-width: 1080px) {
  .prlx, .prlx2, .prlx3, .prlx4 {
    transform: none !important;
    background-position: bottom !important;
  }
}

.form_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media all and (max-width: 639px) {
  .form_list {
    margin-bottom: 2rem;
  }
}
.form_list li {
  width: 40%;
  margin: 1rem;
  text-align: center;
  position: relative;
}
@media all and (max-width: 1080px) {
  .form_list li {
    width: 100%;
    margin-bottom: 1.5rem;
  }
}
.form_list li .ttl {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  background: #9ed591;
  border-radius: 30px;
  color: #fff;
  line-height: 1;
  margin-bottom: -1rem;
}
.form_list li a, .form_list li span {
  font-family: "Libre Baskerville", serif;
  letter-spacing: 0.25rem;
  font-weight: 600;
  letter-spacing: 0.25rem;
  display: block;
  padding: 1.25rem 2rem 0.5rem;
  margin-top: -1rem;
  border: 2px solid #9ed591;
  border-radius: 30px;
  font-size: 1.25rem;
  color: #9ed591;
  font-weight: 600;
}
@media all and (max-width: 639px) {
  .form_list li a, .form_list li span {
    font-size: 1rem;
    padding: 1.25rem 1rem 0.5rem;
  }
}
.form_list li.form_tel a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  margin-right: 5px;
}
.form_list li.form_fax span:before {
  font-family: "Font Awesome 5 Free";
  content: "\f1ac";
  font-weight: 900;
  margin-right: 5px;
}

.president_box {
  max-width: 80%;
  margin: auto;
  padding: 60px;
  position: relative;
  line-height: 2;
  border: 2px solid #f7458e;
  border-radius: 15px;
}
@media all and (max-width: 639px) {
  .president_box {
    max-width: 100%;
    padding: 25px 25px 120px;
  }
}
.president_box .president_ico1, .president_box .president_ico2 {
  position: absolute;
}
.president_box .president_ico1 {
  width: 80px;
  top: -98px;
  right: -10px;
}
.president_box .president_ico2 {
  width: 200px;
  bottom: -3px;
  left: -15px;
}
.president_box .president_name {
  margin-top: 20px;
  text-align: right;
}

.company_box {
  max-width: 80%;
  margin: auto;
  padding: 60px;
  position: relative;
  line-height: 2;
  border: 2px solid #f7458e;
  border-radius: 15px;
}
@media all and (max-width: 639px) {
  .company_box {
    max-width: 100%;
    padding: 25px 25px 120px;
  }
}
.company_box .company_ico1, .company_box .company_ico2 {
  position: absolute;
}
.company_box .company_ico1 {
  width: 80px;
  top: -98px;
  right: -10px;
}
.company_box .company_ico2 {
  width: 200px;
  bottom: -3px;
  left: -15px;
}

.instructor {
  display: flex;
  flex-wrap: wrap;
}
.instructor > li {
  width: 31.333%;
  margin: 1%;
  background: #fff;
  border: 2px solid #f7458e;
  border-radius: 10px;
}
.instructor > li img {
  border-radius: 8px 8px 0 0;
}
.instructor > li .inner {
  padding: 20px;
}
@media all and (max-width: 639px) {
  .instructor > li .inner {
    padding: 20px 10px;
  }
}
.instructor > li .inner .sub-txt {
  font-weight: 500;
  margin-top: 10px;
}
.instructor > li .inner h3 {
  text-indent: -1rem;
  padding-left: 2rem;
  font-weight: 600;
}
@media all and (max-width: 639px) {
  .instructor > li .inner h3 {
    text-indent: -0.875rem;
  }
}
.instructor > li .inner h3 b {
  color: #ffc5dd;
  font-weight: 600;
}
.instructor > li .inner h3 i {
  color: #f7458e;
}
@media all and (max-width: 1080px) {
  .instructor > li {
    width: 48%;
  }
}
@media all and (max-width: 639px) {
  .instructor > li {
    width: 95%;
    margin: 0 auto 60px;
  }
}

.h_ttl_ribon {
  position: relative;
  background: #f7458e;
  color: #fff;
  display: inline-block;
  padding: 15px 35px 15px 15px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 2.2rem;
  clip-path: polygon(0% 0%, 100% 0, 95% 50%, 100% 100%, 0% 100%);
  margin: 0 0 25px -30px;
}
.h_ttl_ribon .eng {
  font-size: 1rem;
  font-family: "Libre Baskerville", serif;
  letter-spacing: 0.25rem;
  font-weight: 600;
  letter-spacing: 0.125rem;
  margin-left: 10px;
}
.h_ttl_ribon.type1 {
  background: #f7458e;
  font-family: "Libre Baskerville", serif;
  letter-spacing: 0.25rem;
  font-weight: 600;
  letter-spacing: 0.125rem;
  font-size: 1rem;
  padding: 10px 30px 10px 10px;
  margin: 10px 0 0 -10px;
}
.h_ttl_ribon.type1 span {
  font-size: 1.5rem;
  font-weight: 600;
}
@media all and (max-width: 639px) {
  .h_ttl_ribon {
    margin: 0 0 20px -10px;
    font-size: 1.5rem;
  }
  .h_ttl_ribon .eng {
    font-size: 1rem;
  }
  .h_ttl_ribon.type1 {
    font-size: 1.4rem;
    margin: 5px 0 0 -5px;
  }
  .h_ttl_ribon.type1 span {
    font-size: 1.8rem;
  }
}

.mtext0 {
  font-size: 1.25rem;
  line-height: 1.6;
}
.mtext0.type1 {
  color: #4e4e4e;
}
.mtext0.type1 i {
  color: #ffc5dd;
  font-size: 1.125rem;
  margin-right: 10px;
}
@media all and (max-width: 639px) {
  .mtext0 {
    font-size: 1rem;
  }
  .mtext0.type1 i {
    font-size: 1.125rem;
  }
}

.mtitle2 {
  margin-bottom: 25px;
  font-weight: 600;
  display: flex;
  align-items: center;
  line-height: 1.5;
  position: relative;
}

.mtitle2.center {
  justify-content: center;
}

.mtitle2.type1 .eng,
.mtitle2.type1 .ja {
  color: #3a200c;
}

.mtitle2 .eng {
  font-size: 1rem;
  margin-right: 10px;
  padding-right: 10px;
  padding-top: 5px;
  border-right: 0.9px solid #555;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  color: #555;
  letter-spacing: 0.1rem;
}

.mtitle2 .ja {
  font-size: 1.5rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-weight: 700;
}

@media screen and (max-width: 639px) {
  .mtitle2 .eng {
    font-size: 1rem;
  }
  .mtitle2 .ja {
    font-size: 1rem;
  }
}
.service_wrap {
  display: flex;
  flex-wrap: wrap;
}

.service_box {
  width: 48%;
  background: #fff;
  border-radius: 20px;
  border: 4px solid #3a3a3a;
  padding: 35px 30px;
  margin-bottom: 60px;
}
@media all and (max-width: 639px) {
  .service_box {
    width: 100%;
    padding: 20px;
  }
}
.service_box .srv_inner {
  padding-top: 20px;
  border-top: 2px solid #3a3a3a;
}

.about_bg {
  position: relative;
  padding: 40px 0 80px;
  background: #f9f9f9;
  overflow: hidden;
}
@media all and (max-width: 639px) {
  .about_bg {
    padding: 60px 0;
  }
}
.about_bg:before, .about_bg:after {
  display: block;
  content: "";
  width: 203px;
  height: 224px;
  position: absolute;
}
@media all and (max-width: 639px) {
  .about_bg:before, .about_bg:after {
    width: 121px;
    height: 134px;
  }
}
.about_bg:before {
  background: url(../img/rectangle_l2.svg) no-repeat center/contain;
  top: 0;
  left: 0;
}
.about_bg:after {
  background: url(../img/rectangle_r2.svg) no-repeat center/contain;
  bottom: 0;
  right: 0;
}
.about_bg .greet_illust {
  max-width: 970px;
  position: absolute;
  bottom: 0;
  right: -160px;
}
@media all and (max-width: 639px) {
  .about_bg .greet_illust {
    max-width: 340px;
    right: -50px;
  }
}

.about {
  position: relative;
}
.about:before {
  position: absolute;
  content: "";
  width: 70%;
  height: 350px;
  bottom: 175px;
  left: 5%;
  background: #fff;
  z-index: -1;
}
@media all and (max-width: 639px) {
  .about:before {
    display: none;
  }
}

.about_box {
  width: 1280px;
  max-width: 100%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  justify-content: space-between;
}
.about_box .about_img {
  width: 45%;
  text-align: center;
}
@media all and (max-width: 639px) {
  .about_box .about_img {
    width: 100%;
  }
}
.about_box .about_txt {
  width: 55%;
  padding: 100px 80px 0px 0px;
}
@media all and (max-width: 639px) {
  .about_box .about_txt {
    width: 100%;
    padding: 1rem 0;
    margin-top: 2rem;
  }
}
.about_box .about_txt .about_sub_ttl {
  font-size: 2.5rem;
  font-weight: 600;
  padding: 60px 0;
  line-height: 1.4;
}
@media all and (max-width: 639px) {
  .about_box .about_txt .about_sub_ttl {
    padding: 0;
    text-align: center;
    font-size: 1.5rem;
  }
}
.about_box .about_txt .about_sub_ttl b {
  font-size: 4rem;
  font-weight: 600;
}
@media all and (max-width: 639px) {
  .about_box .about_txt .about_sub_ttl b {
    font-size: 2.5rem;
  }
}
.about_box .about_txt .about_sub_ttl span {
  color: #ffc5dd;
  font-weight: 600;
}

.news-bl dt {
  float: left;
  width: 8em;
  padding: 10px 5px;
  line-height: 1.3;
  color: #563e26;
  text-align: center;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
}
@media all and (max-width: 639px) {
  .news-bl dt {
    float: none;
  }
}
.news-bl dd {
  padding: 0 0 10px 7.5em;
  line-height: 1.6;
  border-bottom: 1px dotted #dddddd;
  margin: 0 0 10px;
}
@media all and (max-width: 639px) {
  .news-bl dd {
    padding: 0 0 10px 15px;
  }
}
.news-bl dd .category {
  display: inline-block;
  padding: 5px 10px;
  color: #fff;
  background-color: #ffc5dd;
  border-radius: 5px;
}
.news-bl dd .category-2 {
  display: inline-block;
  padding: 5px;
  color: #fff;
  background-color: #6181e7;
  border-radius: 5px;
}
.news-bl dd .category-3 {
  display: inline-block;
  padding: 5px;
  color: #fff;
  background-color: #ff8100;
  border-radius: 5px;
}
.news-bl dd a {
  color: #3a3a3a;
  background-image: linear-gradient(to right, #f7458e, #f7458e);
  padding-bottom: 0.25em;
  background-position: 100% 100%;
  background-size: 0% 1px;
  background-repeat: no-repeat;
  transition: background-size 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  font-weight: 700;
}
.news-bl dd a:hover {
  background-position: 0 100%;
  background-size: 100% 1px;
}
.news-bl dd:last-child {
  margin: 0;
  border-bottom: none;
}

.category {
  display: inline-block;
  padding: 0 10px;
  color: #fff;
  background-color: #f7458e;
  border-radius: 5px;
}

.category-2 {
  display: inline-block;
  padding: 0 10px;
  color: #fff;
  background-color: #6181e7;
  border-radius: 5px;
}

.category-3 {
  display: inline-block;
  padding: 0 10px;
  color: #fff;
  background-color: #ff8100;
  border-radius: 5px;
}

.mtitle_box2 {
  background: #f7458e;
  font-size: 1.125rem;
  color: #fff;
  position: relative;
  font-weight: 700;
  overflow: hidden;
  letter-spacing: 0.1rem;
  padding: 15px 10px 15px 20px;
  margin-bottom: 25px;
}

.mtitle_box2 .small-cap {
  font-weight: normal;
  font-size: 1rem;
}

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

@media all and (max-width: 639px) {
  .mtitle_box2 {
    font-size: 1rem;
    line-height: 1.5;
    padding: 10px 10px 10px 15px;
    padding-right: 40px;
  }
  .mtitle_box2 span {
    font-size: 12px;
  }
  .mtitle_box2:before {
    width: 215px;
    right: -170px;
  }
}
.mission_anim {
  position: relative;
}
.mission_anim .mission1,
.mission_anim .mission2,
.mission_anim .mission3,
.mission_anim .mission4,
.mission_anim .mission5,
.mission_anim .mission6,
.mission_anim .mission7,
.mission_anim .mission8,
.mission_anim .mission9,
.mission_anim .mission10 {
  opacity: 0;
  transition: 0.5s ease;
}
.mission_anim .mission2, .mission_anim .mission3 {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.mission_anim .mission4 {
  width: 6%;
  position: absolute;
  bottom: 10px;
  right: 430px;
}
.mission_anim .mission5 {
  width: 71px;
  position: absolute;
  bottom: 65px;
  left: 415px;
}
.mission_anim .mission6 {
  width: 72px;
  position: absolute;
  bottom: 170px;
  right: 295px;
}
.mission_anim .mission7 {
  width: 55px;
  position: absolute;
  bottom: 45px;
  left: 76px;
}
.mission_anim .mission8 {
  width: 52px;
  position: absolute;
  bottom: 0;
  left: 220px;
}
.mission_anim .mission9 {
  width: 109px;
  position: absolute;
  bottom: 40px;
  right: 80px;
}
.mission_anim .mission10 {
  width: 54px;
  position: absolute;
  bottom: 170px;
  left: 237px;
}
.mission_anim.on .mission1,
.mission_anim.on .mission4,
.mission_anim.on .mission5,
.mission_anim.on .mission6,
.mission_anim.on .mission7,
.mission_anim.on .mission8,
.mission_anim.on .mission9,
.mission_anim.on .mission10 {
  opacity: 1;
  transition-delay: 0.5s;
}
.mission_anim.on .mission2 {
  opacity: 1;
  transition-delay: 1s;
}
.mission_anim.on .mission3 {
  opacity: 1;
  transition-delay: 1.5s;
}

.gcalendar {
  position: relative;
  padding-top: 75%;
  background: #eee;
}
@media all and (max-width: 639px) {
  .gcalendar {
    margin-top: 2rem;
  }
}
.gcalendar iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.top_sch .btn01 {
  margin-top: 60px;
}

.base {
  color: #f7458e;
}

@media all and (max-width: 639px) {
  .top_flow_list {
    margin-top: 2rem;
  }
}
.top_flow_list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 1rem;
  border-top: 2px solid #ddd;
  transition: 0.3s ease;
  position: relative;
  font-weight: 600;
}
.top_flow_list li a:before {
  content: "";
  display: block;
  width: 2rem;
  height: 2px;
  background: #f7458e;
  position: absolute;
  top: -2px;
  left: 0;
  transition: 0.3s ease;
}
.top_flow_list li a span {
  font-weight: 600;
}
.top_flow_list li a span:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0da";
  font-weight: 900;
  margin-right: 5px;
}
.top_flow_list li a .top_flow_img {
  width: 200px;
  height: 200px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 1;
}
.top_flow_list li a .top_flow_img picture {
  display: inline-block;
  width: 100%;
  height: 100%;
  transition: 0.3s ease;
  position: relative;
  padding-top: 100%;
  transform: scale(0);
}
.top_flow_list li a .top_flow_img picture img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.3s ease;
}
.top_flow_list li a:hover:before {
  width: 100%;
}
.top_flow_list li a:hover picture {
  transform: scale(1);
}

.greet_bg {
  padding-bottom: 31.7333333333%;
  position: relative;
}
.greet_bg:before {
  content: "";
  display: block;
  width: 100%;
  height: 39.6666666667%;
  background: url(../img/greet_bg.svg) no-repeat center/80%;
  position: absolute;
  bottom: 60px;
  left: 0;
}
@media all and (max-width: 1080px) {
  .greet_bg:before {
    height: 19.8333333333%;
  }
}
@media all and (max-width: 639px) {
  .greet_bg:before {
    height: 39.6666666667%;
    padding-bottom: 39.6666666667%;
    bottom: -100px;
  }
}

.top_fmarket {
  height: 780px;
  position: relative;
}
@media all and (max-width: 1080px) {
  .top_fmarket {
    height: auto;
  }
}
.top_fmarket .fmarket_img {
  width: 40%;
  padding-top: 40.8%;
  position: absolute;
  top: 0;
  left: 0;
}
@media all and (max-width: 1080px) {
  .top_fmarket .fmarket_img {
    top: 100px;
  }
}
@media all and (max-width: 639px) {
  .top_fmarket .fmarket_img {
    width: 100%;
    padding-top: 102%;
    top: 0;
  }
}
.top_fmarket .fmarket_img:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/fmarket_img.png) no-repeat center/100%;
}
.top_fmarket .fmarket_txt {
  margin-bottom: 60px;
}
.top_fmarket .btn01 {
  margin-bottom: 2rem;
}
@media all and (max-width: 639px) {
  .top_fmarket .h_ttl_big {
    margin-top: 350px;
  }
}

.sdgs_bnr {
  width: 300px;
  margin: 0 auto 2rem;
}

.sdgs_list {
  display: flex;
  justify-content: center;
}
.sdgs_list li {
  max-width: 200px;
  margin: 1rem;
}

.foot_contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2rem;
}
.foot_contact li {
  margin: 1rem;
}
@media all and (max-width: 639px) {
  .foot_contact li {
    width: 100%;
  }
}

.under_bg {
  background: url(../img/contents_bg.jpg);
}

.event_box {
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #ccc;
}
.event_box a {
  color: #3a3a3a;
}
.event_box .event_date {
  margin-bottom: 1rem;
}
.event_box .event_date i {
  margin-right: 5px;
}
.event_box .event_date span {
  font-family: "Libre Baskerville", serif;
  letter-spacing: 0.25rem;
  font-weight: 600;
}
.event_box figure a {
  display: block;
  overflow: hidden;
  height: 300px;
}
.event_box figure a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s ease;
}
.event_box figure a:hover img {
  transform: scale(1.1);
}

.flow_box {
  position: relative;
  padding: 0 0 2rem 80px;
  margin-bottom: 2rem;
}
.flow_box:before, .flow_box:after {
  content: "";
  display: block;
  position: absolute;
}
.flow_box:before {
  width: 2rem;
  height: 2rem;
  border: 6px solid #9ed591;
  border-radius: 50%;
  top: 0.5rem;
  left: 0;
}
.flow_box:after {
  width: 1px;
  height: calc(100% - 3rem);
  background: #9ed591;
  top: 4rem;
  left: 1rem;
}

.flow_dl {
  display: flex;
  flex-wrap: wrap;
}
@media all and (max-width: 639px) {
  .flow_dl {
    padding: 1rem;
  }
}
.flow_dl dt {
  width: 8rem;
  padding-top: 1rem;
  padding-right: 1.5rem;
  text-align: right;
  line-height: 1;
}
.flow_dl dt b {
  position: relative;
  display: block;
  font-family: "Libre Baskerville", serif;
  letter-spacing: 0.25rem;
  font-weight: 600;
  font-size: 1.5rem;
}
.flow_dl dd {
  width: calc(100% - 8rem);
  padding: 1rem 0 0.5rem 10px;
  border-left: solid 2px #f7458e;
}
.flow_dl dd .inner {
  display: flex;
  flex-wrap: wrap;
  margin-left: 1rem;
  position: relative;
}
.flow_dl dd .inner::after {
  content: "";
  position: absolute;
  top: 1rem;
  left: -2.15rem;
  display: inline-block;
  width: 15px;
  height: 15px;
  background-color: #f7458e;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.flow_dl dd .flow_body {
  padding: 0 1rem;
}
.flow_dl dd .flow_body .h_ttl_sline {
  margin: 0 0 1rem;
}

.bg_deco {
  position: relative;
  overflow: hidden;
}
.bg_deco .deco_img1, .bg_deco .deco_img2 {
  position: absolute;
}
.bg_deco .deco_img1 {
  width: 240px;
  bottom: 100px;
  right: 100px;
}
@media all and (max-width: 1080px) {
  .bg_deco .deco_img1 {
    width: 140px;
    bottom: 10px;
  }
}
@media all and (max-width: 639px) {
  .bg_deco .deco_img1 {
    width: 100px;
    bottom: 0;
  }
}
.bg_deco .deco_img2 {
  width: 200px;
  top: 0;
  left: 100px;
}
@media all and (max-width: 1080px) {
  .bg_deco .deco_img2 {
    left: 0;
  }
}
@media all and (max-width: 639px) {
  .bg_deco .deco_img2 {
    width: 160px;
    top: 0;
    left: inherit;
    right: 0;
  }
}

.bg_deco2 {
  position: relative;
  overflow: hidden;
}
.bg_deco2 .deco_img3 {
  position: absolute;
  width: 340px;
  bottom: 0;
  right: -2rem;
}

.bg_deco3 {
  position: relative;
  overflow: hidden;
}
.bg_deco3 .deco_img4 {
  position: absolute;
  width: 240px;
  bottom: 80px;
  left: 380px;
}
@media all and (max-width: 1200px) {
  .bg_deco3 .deco_img4 {
    left: 180px;
  }
}
@media all and (max-width: 1080px) {
  .bg_deco3 .deco_img4 {
    width: 200px;
    bottom: 80px;
    left: 80px;
  }
}
@media all and (max-width: 639px) {
  .bg_deco3 .deco_img4 {
    width: 130px;
    bottom: 0;
    left: 130px;
  }
}

.sp_inner {
  display: flex;
  justify-content: center;
}
.sp_inner .head_insta, .sp_inner .head_fb {
  margin: 0.5rem;
}
.sp_inner .head_insta a, .sp_inner .head_fb a {
  font-size: 2rem;
}
.sp_inner .head_insta a {
  color: #cf2e92;
}
.sp_inner .head_fb a {
  color: #3b5998;
}

.sp_contact .btn01 {
  width: 80%;
  margin: 1rem auto 0;
  font-size: 1rem;
}
.sp_contact .btn01 a {
  border: 1px solid #5fa117;
  background: #5fa117;
  padding: 0.5rem 1rem;
}
.sp_contact .btn01 a:before {
  top: 9px;
}
.sp_contact .btn01 a i {
  margin-right: 5px;
}

.sp_tel_fax {
  display: none;
}
@media all and (max-width: 1080px) {
  .sp_tel_fax {
    display: block;
  }
  .sp_tel_fax .btn01 {
    width: 80%;
    margin: 1rem auto 0;
    font-size: 1rem;
  }
  .sp_tel_fax .btn01 a {
    font-size: 1rem;
    border: 1px solid #f1bc2a;
    background: #f1bc2a;
    padding: 0.5rem 1rem;
  }
  .sp_tel_fax .btn01 a:before {
    top: 9px;
  }
  .sp_tel_fax .btn01 a i {
    margin-right: 5px;
  }
}

.anim, .anim2 {
  opacity: 0;
  display: inline-block;
  overflow: hidden;
}
.anim.on, .anim2.on {
  animation-name: cacth;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.8, 0, 0.5, 1);
  position: relative;
}
.anim.on:before, .anim2.on:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.anim:before {
  background: #fff;
}

.anim2 {
  font-size: 1.25rem !important;
  color: #fff;
}
.anim2:before {
  display: none;
}
@media all and (max-width: 639px) {
  .anim2 {
    font-size: 1rem;
  }
}

@keyframes cacth {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.order_list {
  width: 100%;
}
.order_list li .product_body {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
}
.order_list li .product_body figure {
  width: 45%;
}
@media all and (max-width: 639px) {
  .order_list li .product_body figure {
    width: 100%;
  }
}
.order_list li .product_body .product_txt {
  width: 50%;
}
@media all and (max-width: 639px) {
  .order_list li .product_body .product_txt {
    width: 100%;
  }
}

.order_tbl {
  width: 100%;
}
.order_tbl th, .order_tbl td {
  border-bottom: 1px solid #eee;
  padding: 0.5rem;
  vertical-align: middle;
  font-size: 0.875rem;
}
.order_tbl th {
  width: 35%;
  border-bottom: 1px solid #f7458e;
  font-weight: 600;
}
@media all and (max-width: 639px) {
  .order_tbl th {
    display: block;
    width: 100%;
  }
}
@media all and (max-width: 639px) {
  .order_tbl td {
    display: block;
    width: 100%;
  }
}

.total-box {
  width: 400px;
  max-width: 100%;
  padding: 1rem 2rem;
  margin: 60px auto 20px;
  background: #161e73;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
}
.total-box span {
  color: #fff;
  font-weight: 600;
}
.total-box input {
  width: 60% !important;
  background: #fcfdfe !important;
  font-size: 1.5rem !important;
  font-weight: 600;
  padding: 0.5rem 1rem !important;
}

@media all and (max-width: 1080px) {
  .product_wrap {
    justify-content: space-between;
  }
}

.product_box {
  width: 31%;
  padding: 1rem;
  margin-right: 3.5%;
  margin-bottom: 2rem;
  background: #fff;
  box-shadow: 0 5px 10px -5px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
}
.product_box:nth-of-type(3n) {
  margin-right: 0;
}
@media all and (max-width: 1080px) {
  .product_box {
    width: 48%;
    margin-right: 0;
  }
}
@media all and (max-width: 639px) {
  .product_box {
    width: 100%;
    margin-right: 0;
  }
}
.product_box p {
  font-weight: 600;
}

.recipe_wrap {
  display: flex;
  flex-wrap: wrap;
}
@media all and (max-width: 1080px) {
  .recipe_wrap {
    justify-content: space-between;
  }
}
.recipe_wrap .recipe_box {
  width: 31%;
  margin-right: 3.5%;
  margin-bottom: 2rem;
}
@media all and (max-width: 1080px) {
  .recipe_wrap .recipe_box {
    width: 48%;
    margin-right: 0;
  }
}
@media all and (max-width: 639px) {
  .recipe_wrap .recipe_box {
    width: 100%;
    margin-right: 0;
  }
}
.recipe_wrap .recipe_box:nth-of-type(3n) {
  margin-right: 0;
}
.recipe_wrap .recipe_box a {
  display: block;
}
.recipe_wrap .recipe_box a figure {
  height: 240px;
  margin-bottom: 0.25rem;
  overflow: hidden;
}
.recipe_wrap .recipe_box a figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s ease;
}
.recipe_wrap .recipe_box a .recipe_ttl {
  font-size: 1.125rem;
  font-weight: 600;
  text-align: center;
  color: #f1bc2a;
}
.recipe_wrap .recipe_box a:hover figure img {
  transform: scale(1.1);
}

.about_greet_list {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.about_greet_list li {
  margin: 0 1rem;
}
@media all and (max-width: 639px) {
  .about_greet_list li {
    margin: 0 0.5rem;
  }
}

.yt_wrap {
  text-align: center;
  background: url(../img/contents_bg.jpg) no-repeat center/cover;
}
.yt_wrap iframe {
  max-width: 100%;
}

.spot_wrap {
  margin-bottom: 60px;
}
.spot_wrap .spot_box {
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: dashed 1px #ddd;
}

.spotSlide .swiper-button-prev, .spotSlide .swiper-button-next {
  display: grid;
  place-content: center;
  width: 2.5rem;
  height: 2.5rem;
  cursor: pointer;
  transition: ease 0.3s;
  flex-shrink: 0;
  transform: translateY(-25px);
}
@media all and (max-width: 639px) {
  .spotSlide .swiper-button-prev, .spotSlide .swiper-button-next {
    width: 44px;
    height: 44px;
  }
}
.spotSlide .swiper-button-prev:before, .spotSlide .swiper-button-next:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid #3a3a3a;
  border-radius: 50%;
  box-shadow: 0px 0px 15px -5px #777;
  transition: ease 0.3s;
}
.spotSlide .swiper-button-prev:after, .spotSlide .swiper-button-next:after {
  width: 0.75rem;
  height: 0.75rem;
  content: "";
  border: solid #3a3a3a;
  border-width: 3px 3px 0 0;
  transition: ease 0.3s;
}
.spotSlide .swiper-button-prev:hover:before, .spotSlide .swiper-button-next:hover:before {
  transform: scale(1.2);
}
.spotSlide .swiper-button-prev:after {
  margin-left: 0.25rem;
  transform: rotate(-135deg);
}
.spotSlide .swiper-button-next:after {
  margin-right: 0.25rem;
  transform: rotate(45deg);
}
.spotSlide .swiper-slide figure {
  margin-bottom: 10px;
}
.spotSlide .swiper-slide p {
  color: #9ed591;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #161e73;
}

.link_txt {
  font-weight: 600;
  text-decoration: underline;
  color: #e0315a;
}

#datepicker {
  cursor: pointer;
}

.about_contents {
  margin-bottom: 100px;
}

.process_main figure {
  margin-bottom: 2rem;
}

.top_lineup {
  padding: 2rem;
  position: relative;
}
.top_lineup .h_ttl_line {
  margin-bottom: 0;
}
.top_lineup .lineup_num {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid #3a3a3a;
  border-radius: 50%;
}
.top_lineup .lineup_num span {
  font-size: 1.25rem;
  font-weight: 600;
}

.repair_box {
  margin-bottom: 60px;
}

.repair_sub_box {
  width: 1280px;
  max-width: 100%;
  margin: auto;
}

.top_pt {
  width: 100%;
  height: 480px;
  position: relative;
  border-radius: 80px;
  overflow: hidden;
}
@media all and (max-width: 639px) {
  .top_pt {
    border-radius: 40px;
  }
}
.top_pt img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}
.top_pt a {
  display: block;
  width: 100%;
  height: 100%;
  color: #3a3a3a;
}
.top_pt a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}
.top_pt a:hover img {
  transform: scale(1.1);
}
.top_pt .top_pt_body {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 80px;
  background: rgba(237, 233, 224, 0.6);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.top_pt .top_pt_body > p {
  color: #fff;
  font-size: 1.125rem;
  line-height: 2;
}
@media all and (max-width: 639px) {
  .top_pt .top_pt_body {
    padding: 1rem;
  }
}
.top_pt .top_pt_body .list_num li {
  margin: 0 1rem;
  font-size: 1.25rem;
}
@media all and (max-width: 639px) {
  .top_pt .top_pt_body .list_num li {
    width: 100%;
    font-size: 1rem;
  }
}
.top_pt .top_pt_body .list_num li span {
  font-size: 1.5rem;
}
@media all and (max-width: 639px) {
  .top_pt .top_pt_body .list_num li span {
    font-size: 1.25rem;
  }
}
.top_pt .top_pt_body .list_num li b {
  font-size: 1.5rem;
  font-weight: 600;
}
@media all and (max-width: 639px) {
  .top_pt .top_pt_body .list_num li b {
    font-size: 1.25rem;
  }
}

.feature_ttl {
  font-weight: 600;
  color: #fff;
  text-align: center;
  letter-spacing: 0.25rem;
  line-height: 1;
  position: relative;
  margin-bottom: 30px;
}
.feature_ttl span {
  display: block;
  width: 100%;
  font-size: 2rem;
  color: #f7458e;
  font-weight: 600;
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-shadow: -1px -1px 0 #fff, -1px 0 0 #fff, -1px 1px 0 #fff, 0 -1px 0 #fff, 1px -1px 0 #fff, 1px 0 0 #fff, 1px 1px 0 #fff;
}
.feature_ttl p {
  font-family: "Libre Baskerville", serif;
  letter-spacing: 0.25rem;
  font-weight: 600;
  color: #fff;
  font-size: 6rem;
  font-weight: 600;
  opacity: 0.3;
}
@media all and (max-width: 639px) {
  .feature_ttl span {
    font-size: 1.125rem;
  }
  .feature_ttl p {
    font-size: 3.5rem;
  }
}

.srv_box {
  margin-bottom: 2rem;
}
.srv_box figure {
  margin-bottom: 10px;
}
.srv_box .ttl {
  font-size: 1.25rem;
  font-weight: 600;
}

.marker-y b {
  font-size: 2rem;
  font-weight: 600;
}

.tbl_wrap {
  background: #fbfcfe;
}

.sch_tbl {
  width: 100%;
}
@media all and (max-width: 639px) {
  .sch_tbl {
    margin-top: 1rem;
  }
}
.sch_tbl tr:nth-of-type(1) th {
  border-bottom: 1px solid #f7458e;
}
.sch_tbl tr:nth-of-type(2) {
  border-bottom: 1px solid #eee;
}
.sch_tbl th, .sch_tbl td {
  padding: 1rem;
  text-align: center;
}
@media all and (max-width: 639px) {
  .sch_tbl th, .sch_tbl td {
    padding: 0.5rem;
  }
}
.sch_tbl th {
  background: #ffc5dd;
}
.sch_tbl th:nth-of-type(1) {
  border-right: 1px solid #f7458e;
}
.sch_tbl.type2 {
  border: 1px solid #eee;
}
.sch_tbl.type3 th, .sch_tbl.type3 td {
  border: 1px solid #eee;
  vertical-align: middle;
}

.fixed_btn {
  width: 90px;
  position: fixed;
  top: 92px;
  right: 0;
  z-index: 1;
}
@media all and (max-width: 1080px) {
  .fixed_btn {
    display: none;
  }
}
.fixed_btn li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f976ac;
  color: #fff;
  font-size: 0.875rem;
  width: 100%;
  height: 90px;
}
.fixed_btn li a span {
  font-size: 1.5rem;
}
@media all and (max-width: 639px) {
  .fixed_btn li a {
    height: 60px;
  }
  .fixed_btn li a span {
    font-size: 1.125rem;
  }
}
.fixed_btn li:nth-of-type(1) {
  margin-bottom: 2px;
}

.clinic_main {
  padding-bottom: 200px;
  position: relative;
}
@media all and (max-width: 639px) {
  .clinic_main {
    padding-bottom: 0;
  }
}
.clinic_main figure:nth-of-type(1) {
  width: 70%;
}
.clinic_main figure:nth-of-type(2) {
  width: 45%;
  position: absolute;
  bottom: 100px;
  right: 0;
}
@media all and (max-width: 639px) {
  .clinic_main figure:nth-of-type(2) {
    bottom: -60px;
  }
}
.clinic_main figure img {
  width: 100%;
}

.gallery_list {
  display: flex;
  flex-wrap: wrap;
}
.gallery_list li {
  width: 23%;
  margin-bottom: 2rem;
  margin-right: 2.6666666667%;
}
@media all and (max-width: 639px) {
  .gallery_list li {
    width: 100%;
    margin-right: 0;
  }
}
.gallery_list li:nth-of-type(4n) {
  margin-right: 0;
}
.gallery_list li span {
  display: block;
  width: 100%;
  height: 240px;
  overflow: hidden;
}
.gallery_list li span img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}
.gallery_list li span:hover img {
  transform: scale(1.1);
}
.gallery_list li p {
  margin-top: 1rem;
}
.gallery_list li .bdr {
  display: flex;
  align-items: center;
}
.gallery_list li .bdr::before {
  content: "";
  display: block;
  width: 10px;
  height: 3px;
  background: #9ed591;
  margin-right: 5px;
}

.gallery_list2 {
  display: flex;
  flex-wrap: wrap;
}
@media all and (max-width: 639px) {
  .gallery_list2 {
    justify-content: space-between;
  }
}
.gallery_list2 li {
  width: 31%;
  margin-bottom: 2rem;
  margin-right: 3.5%;
}
@media all and (max-width: 639px) {
  .gallery_list2 li {
    width: 48%;
    margin-right: 0;
  }
}
.gallery_list2 li:nth-of-type(3n) {
  margin-right: 0;
}
.gallery_list2 li span {
  display: block;
  width: 100%;
  height: 240px;
  overflow: hidden;
}
.gallery_list2 li span img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}
.gallery_list2 li span:hover img {
  transform: scale(1.1);
}
.gallery_list2 li p {
  margin-top: 1rem;
}
.gallery_list2 li .bdr {
  display: flex;
  align-items: center;
}
.gallery_list2 li .bdr::before {
  content: "";
  display: block;
  width: 10px;
  height: 3px;
  background: #9ed591;
  margin-right: 5px;
}

.contents_arw {
  margin: 1rem 0 2rem;
}
.contents_arw i {
  font-size: 2rem;
  color: #9ed591;
}

.hr_bdr {
  margin: 20px 0;
  border-top: 1px dashed #ddd;
}

@media all and (max-width: 639px) {
  .top_bnr .flx_in {
    margin-bottom: 2rem;
  }
}

.greet_img, .greet_body {
  width: 48%;
}
@media all and (max-width: 1080px) {
  .greet_img, .greet_body {
    width: 100%;
  }
}

@media all and (max-width: 1080px) {
  .greet_img {
    height: 400px;
    overflow: hidden;
  }
}
@media all and (max-width: 1080px) and (max-width: 639px) {
  .greet_img {
    height: auto;
  }
}

.greet_body {
  padding: 60px;
}
@media all and (max-width: 1080px) {
  .greet_body {
    padding-bottom: 0;
  }
}
@media all and (max-width: 639px) {
  .greet_body {
    padding: 1rem 0;
  }
}

.company_img {
  margin-bottom: 60px;
  height: 360px;
  position: relative;
}
.company_img::before {
  content: "";
  display: block;
  width: calc(100% - 20px);
  height: 360px;
  background: #f7458e;
  position: absolute;
  bottom: -20px;
  right: 0;
  z-index: -1;
}
.company_img figure {
  width: calc(100% - 20px);
  height: 100%;
  overflow: hidden;
}
.company_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.form-contents {
  padding: 0 !important;
}

.form-contents dd:not(.pattern-exclusion) input.textarea {
  height: auto !important;
}

.form-pattern-2 dl dt:not(.pattern-exclusion) span.required::before {
  background: #3a3a3a !important;
}

.form-pattern-2 .submit-btn {
  background: #3a3a3a !important;
  border: 0 !important;
}

.form-pattern-2 :not(.pattern-exclusion) button:hover {
  color: #fff !important;
}

.form-pattern-2 .submit-btn:hover::before {
  background-color: #fff;
}

.select_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px dashed #ddd;
}
@media all and (max-width: 639px) {
  .select_wrap {
    display: block;
  }
}
.select_wrap .select_ttl {
  width: calc(100% - 320px);
}
@media all and (max-width: 639px) {
  .select_wrap .select_ttl {
    width: 100%;
  }
}
.select_wrap .select_body {
  width: 300px;
}
@media all and (max-width: 639px) {
  .select_wrap .select_body {
    width: 100%;
  }
}

.total-box {
  padding: 60px;
  text-align: center;
}
.total-box span {
  display: inline-block;
  font-size: 1.25rem;
}
.total-box input {
  padding: 0.5rem 1rem;
  font-size: 1.5rem;
  border: 0;
}

#sender label {
  display: block;
}
#sender label input {
  margin-top: -3px;
}

.form-pattern-2 dl dt:not(.pattern-exclusion) span.optional::before {
  content: "任意";
  padding: 5px 8px;
  margin-right: 5px;
  font-size: 11px;
  border-radius: 20px;
  position: relative;
  top: -2px;
}

@media all and (max-width: 639px) {
  .form-contents dd:not(.pattern-exclusion) .textarea-date, .form-contents dd:not(.pattern-exclusion) .textarea-time, .form-contents dd:not(.pattern-exclusion) .textarea-datetime, .form-contents dd:not(.pattern-exclusion) .textarea-datetimepicker {
    width: 100% !important;
  }
}