* {
  box-sizing: border-box;
  font-family: "Roboto", "Arial", "Yu Gothic", "游ゴシック体", YuGothic,
    ”游ゴシック Medium”, “Yu Gothic Medium”, "Hiragino Kaku Gothic ProN",
    "ヒラギノ角ゴ ProN W3", メイリオ, sans-serif;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: calc(1 / 1920 * 100vw);
}
body {
  width: 100%;
  /* max-width: 1440px; */
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
}
.flex {
  display: flex;
}
.col {
  flex-direction: column;
}
.a-c {
  align-items: center;
}
.a-b {
  align-items: baseline;
}
.j-c {
  justify-content: center;
}
.j-b {
  justify-content: space-between;
}
.j-a {
  justify-content: space-around;
}
.container {
  width: 960px;
}
.sentence-space {
  display: inline-block;
  width: 20px;
}
a {
  text-decoration: none;
  color: #000;
}

/* ==== Header ==== */

/* ==== Hamburger Menu === */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 32px;
  cursor: pointer;
  position: absolute;
  right: 40rem;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 4px;
  background-color: #222;
  border-radius: 2px;
}

/* Sliding menu styles */
.ham_menu {
  position: fixed;
  top: 0;
  right: -600rem;
  width: 265px;
  height: 100%;
  background-color: white;
  border-left: 1px solid #ccc;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
  padding: 20px;
  transition: right 0.3s ease-in-out;
  z-index: 20;
}

.ham_menu.show {
  right: 0;
}

.close-btn {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  position: absolute;
  top: 10px;
  left: 10px;
  color: #000;
}

.menu-items {
  margin-top: 50px;
}

.menu-items a {
  margin: 15px 0;
  font-size: 16px;
  font-weight: bold;
}
/* ========== */
header {
  width: 100%;
}
header .site_name {
  width: 100%;
  /* max-width: 1440px; */
  height: 27px;
  background-color: #000000;
}
header .site_name p {
  font-size: 14px;
  color: #ffffff;
  font-weight: bold;
}
header .menu_part .num {
  gap: 12px;
}
header .menu_part .num_s {
  width: 100%;
  height: 60px;
  background-color: #eee;
}
header .num_s .data {
  gap: 3px;
}
header .num_s .data p {
  font-size: 12px;
  color: #4d4d4d;
}
header .num_s .data p:nth-of-type(2) {
  font-size: 26px;
}
header .search_c {
  gap: 10px;
}
header .search {
  width: 226px;
  height: 40px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  background-color: #ffffff;
}
header .search_c .s_btn {
  height: 40px;
  padding-inline: 8px;
  border: none;
  background-color: #6782ae;
  border-radius: 4px;
  color: #ffffff;
  cursor: pointer;
}
header .search_c input {
  flex: 1;
  padding: 16px 20px;
  border: none;
  font-size: 12px;
  color: #4d4d4d;
  background-color: #ffffff;
  outline: none;
}
header .search_c .search button img {
  width: 20px;
  height: auto;
}
header .search_c .search button {
  background-color: #5b7bb0;
  border: none;
  width: 50px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
  cursor: pointer;
}
header .menuBar .t_part {
  position: relative;
  padding-top: 47px;
  padding-bottom: 22px;
  margin-bottom: 12px;
}
header .menuBar .ribbon {
  background: url("../img/ribbon.png") no-repeat center / cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 91px;
  height: 116px;
  padding-top: 16px;
}
header .menuBar .ribbon .heart {
  font-size: 18px;
  margin-bottom: 4px;
  width: 20px;
  height: auto;
}
header .menuBar .ribbon .count {
  font-size: 16px;
  margin-bottom: 2px;
  color: #ffffff;
}
header .menuBar .ribbon .label {
  font-size: 14px;
  color: #ffffff;
}

header .menuBar .title {
  width: 225px;
  height: auto;
}
header .menu_list {
  width: 100%;
  margin-bottom: 20px;
}
header .menu_list .menu {
  border: 1px solid #000;
  width: 111px;
  height: 67px;
  color: #000;
  font-size: 13px;
  text-align: center;
}
header .menu_list .menu:hover {
  background-color: #000;
  color: #ffffff;
}
header .menuBar .ad {
  width: 100%;
  font-size: 12px;
}
header .menuBar .ad .ad_img {
  width: 100%;
  height: auto;
}
header .menuBar .ad p {
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
}
header .menuBar .ad .ad_more {
  width: 100%;
  height: fit-content;
  margin-top: -3px;
  justify-content: right;
  padding-right: 40rem;
  background-color: #86a9c0;
}
header .menuBar .ad .ad_more img {
  height: 25px;
}
header .adSp {
  width: 100%;
  height: auto;
  display: none;
}
/* ===== Main ========== */
main {
  width: 100%;
  margin-top: 54px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
main .container {
  margin-bottom: 80px;
}
main .container .signCom {
  width: 100%;
  position: relative;
  margin-bottom: 38px;
}
main .container .signCom p {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 8px;
  max-width: 550px;
}
main .container .ring p {
  font-size: 12px;
}
main .tipG p:nth-of-type(1) {
  font-size: 15px;
  font-weight: normal;
  margin-right: 5px;
}
main .tipG p:nth-of-type(2) {
  font-size: 20px;
  font-weight: 600;
}
main .container .signCom .bookBtn {
  position: absolute;
  bottom: 0;
  right: 0;
  border-radius: 4px;
  border: none;
  color: #ffffff;
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
  gap: 17px;
}
main .container .signCom .bookBtn button:nth-of-type(1) {
  background-color: #ff7c00;
  border-radius: 4px;
  border: none;
  color: #ffffff;
  padding-inline: 42px;
  padding-block: 16px;
  font-weight: 600;
}
main .container .signCom .bookBtn button:nth-of-type(2) {
  background-color: #ffffff;
  border-radius: 4px;
  border: 1px solid #cccccc;
  color: #333333;
  padding-inline: 42px;
  padding-block: 16px;
  font-weight: 600;
}
main .container .slideG {
  width: 100%;
  margin-bottom: 34px;
  gap: 24px;
}
main .container .intro {
  width: 60%;
  font-size: 16px;
}
main .container .introT {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 30px;
}
main .container .intro .context {
  gap: 35px;
}
main .container .intro .context p {
  font-size: 16px;
}
main .container .slideBar {
  width: 40%;
}
.slider-container {
  width: 100%;
  height: 384px;
  position: relative;
  background: #fff;
  border-radius: 0px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.main-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 25px;
  background: rgba(0, 0, 0, 0.4);
  color: white;
  padding: 5px 10px;
  cursor: pointer;
  z-index: 10;
  border-radius: 4px;
}

.arrow.left {
  left: 10px;
}

.arrow.right {
  right: 10px;
}

.image-count {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 3px 6px;
  border-radius: 3px;
  font-size: 12px;
}

.thumbnail-wrapper {
  overflow: hidden;
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
}

.thumbnail-row {
  display: flex;
  transition: transform 0.3s ease;
  will-change: transform;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 13px;
}

.thumbnail {
  flex: 0 0 auto;
  width: 101px;
  height: 62px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border 0.2s;
}

.thumbnail.active {
  border: 2px solid #007bff;
}
main .container .content {
  width: 100%;
}
main .infoG {
  width: 58%;
}
main .event_info {
  margin-bottom: 30px;
  width: 100%;
}
main .container .event_infoT {
  font-size: 20px;
  font-weight: bold;
  border-bottom: 1px solid #b3b3b3;
  margin-bottom: 20px;
}
main .container .e_data p {
  font-size: 14px;
}
main .container .e_data {
  padding-block: 12px;
  border-bottom: 1px solid #b3b3b3;
}
main .container .e_data p:nth-of-type(1) {
  width: 17%;
}
main .container .e_data p:nth-of-type(2) {
  width: 83%;
}
main .intro_info {
  width: 37%;
}
.btnG {
  padding-top: 30px;
}
.btnG button {
  width: 47%;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  border-radius: 4px;
  color: #ffffff;
  font-weight: bold;
  font-size: 12px;
  cursor: pointer;
}
.btnG button:nth-of-type(1) {
  background-color: #175fff;
}
.btnG button:nth-of-type(2) {
  background-color: #ff7c00;
}
main .eventDetail {
  width: 100%;
  padding-top: 40px;
  margin-bottom: 30px;
}
main .eventDetail .eventDetailT {
  font-size: 14px;
  font-weight: bold;
  padding-bottom: 16px;
  border-bottom: 1px solid #b3b3b3;
  margin-bottom: 24px;
}
main .eventDetail img {
  width: 100%;
  height: auto;
  margin-bottom: 16px;
}
main .eventDetail .imgE {
  margin-bottom: 30px;
}
main .eventDetail .imgE p:nth-of-type(1) {
  font-size: 18px;
  font-weight: bold;
}
main .eventDetail .imgE p:nth-of-type(2) {
  font-size: 16px;
}
main .map {
  width: 100%;
  padding-bottom: 34px;
}
main .map .mapT {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 30px;
  border-bottom: 1px solid #b3b3b3;
}
main .map img {
  width: 100%;
  height: auto;
}
main .blogG {
  width: 100%;
  margin-bottom: 34px;
}
main .blog {
  margin-bottom: 20px;
}
main .blog .imgS {
  width: 30%;
}
main .blog .imgS img {
  width: 100%;
}
main .blog .blogE {
  position: relative;
  width: 70%;
  padding-left: 20px;
}
main .blog .blogName {
  margin-bottom: 5px;
}
main .blog .bName {
  font-size: 12px;
  padding-inline: 19px;
  padding-block: 7px;
  border: 1px solid #b3b3b3;
}
main .blog .bDate {
  font-size: 12px;
  margin-left: 19px;
}
main .blog .hStyle {
  color: #6782ae;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}
main .blog .bTxt {
  font-size: 15px;
  margin-bottom: 15px;
}
main .blog .bTxt p:nth-of-type(1) {
  margin-bottom: 9px;
}
main .blog .bStateG {
  gap: 4px;
}
main .bState {
  background-color: #6782ae;
  font-size: 10px;
  color: #ffffff;
  font-weight: bold;
  padding-inline: 16px;
  padding-block: 6px;
  border-radius: 20px;
}
main .blog .blogE a {
  position: absolute;
  top: 0;
  right: 0;
  padding-inline: 34px;
  border: 1px solid #6782ae;
}
main .blog .blogE a p {
  font-size: 13px;
  color: #6782ae;
  font-weight: bold;
}
main .blog .blogE a img {
  width: 11px;
  height: auto;
  margin-left: 13px;
}
main .blogSort {
  padding-top: 20px;
  padding-bottom: 64px;
}
main .bLeft {
  gap: 8px;
}
main .blogSort .sortRect {
  width: 97px;
  height: 52px;
  background-color: #ffffff;
  font-size: 10px;
  border: 1px solid #b3b3b3;
  display: inline;
}
main .b_history {
  width: 100%;
}
main .b_history .b_historyT {
  font-size: 14px;
  font-weight: bold;
  padding-left: 18px;
  padding-block: 7px;
  border-left: 3px solid #2f689d;
}
main .b_history .h_slide {
  padding-block: 12px;
  margin-bottom: 34px;
  gap: 12px;
  overflow-x: scroll;
}
main .b_history .slideBlock {
  padding: 8px;
  font-size: 10px;
  font-weight: bold;
  box-shadow: 1px 1px 5px 0 rgba(0, 0, 0, 0.25);
  border-radius: 4px;
}
main .b_history .slideBlock img {
  width: 120px;
  height: auto;
  margin-bottom: 4px;
}
main .footer_txt {
  width: 100%;
  font-size: 12px;
  color: #696652;
  padding-left: 15px;
}
footer {
  width: 100%;
}
footer .container {
  width: 100%;
  background-color: #f2f2f2;
  padding-top: 119px;
  padding-inline: 64px;
}
footer .top {
  margin-bottom: 50px;
}
footer .top img {
  width: 250px;
  height: auto;
}
footer .snsG {
  gap: 15px;
}
footer .snsG img {
  width: 50px;
  height: auto;
}
footer .menuG {
  gap: 15px;
  padding-bottom: 42px;
}
footer .sectionG {
  width: 20%;
}
footer .section .sectionT {
  font-size: 16px;
  color: #737373;
  font-weight: bold;
  margin-bottom: 14px;
}
footer .section .sContents {
  padding-left: 5px;
}
footer .section .sContent:nth-of-type(1) {
  margin-bottom: 14px;
}
footer .section .sContent .contentT {
  font-size: 15px;
  color: #737373;
  font-weight: bold;
  margin-bottom: 3px;
}
footer .section .sContent p:nth-of-type(2) {
  font-size: 13px;
  color: #737373;
}
footer .guide {
  width: 200px;
}
footer .guide_list {
  margin-bottom: 40px;
}
footer .guide_list p {
  font-size: 16px;
  font-weight: bold;
  color: #737373;
}
footer .map_lists {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
footer .maplist {
  gap: 5px;
}
footer .maplist p {
  font-size: 15px;
  font-weight: bold;
  color: #737373;
}
footer .bottom {
  width: 100%;
  height: 66px;
  padding-inline: 72rem;
  justify-content: space-between;
  background-color: #262626;
}
footer .bottom p {
  font-size: 12px;
  color: #ffffff;
}
footer .bottom .btm_list {
  gap: 16px;
}
/* -------------------- */
.blog-event {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 48px;
    margin: 40px auto;
    max-width: 1100px;
}

.blog-section,
.event-section {
  width: 50%;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.section-title {
  font-size: 20px;
  font-weight: 600;
  border-bottom: 2px solid #bfc8db;
  padding-bottom: 2px;
}

.view-all-btn {
  background: #111;
  color: #fff;
  border: none;
  padding: 6px 18px;
  font-size: 13px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
}

.view-all-btn:hover {
  background: #444;
}

.blog-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-list li {
  border-bottom: 1px solid #e0e4ef;
  padding: 12px 0;
}

.blog-date {
  color: #333333;
  font-size: 14px;
  margin-bottom: 2px;
  font-weight: 600;
}

.blog-title {
  color: #6782ae;
  font-size: 18px;
  font-weight: 600;
  margin-left: 0;
}

.event-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.event-card {
  display: flex;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  padding: 12px 16px;
  align-items: flex-start;
  gap: 16px;
}

.event-img {
  width: 125px;
  height: 125px;
  object-fit: cover;
  flex-shrink: 0;
}

.event-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.event-title {
  font-size: 16px;
  font-weight: bold;
  color: #2b618f;
  margin-bottom: 4px;
}

.event-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 4px;
}

.tag {
  font-size: 8px;
  color: #fff;
  border-radius: 4px;
  padding: 1px 5px;
  font-weight: 500;
}

.tag.online {
  background: #6782ae;
}

.tag.reserve {
  background: #6782ae;
}

.event-detail {
  font-size: 13px;
  color: #333;
}
main .personal_info p {
  font-size: 13px;
}
main .p_data p:nth-of-type(1) {
  font-weight: 600;
}
main .p_data p:nth-of-type(2) {
  font-size: 10px;
}
main .p_data p:nth-of-type(3) {
  font-size: 15px;
  font-weight: 600;
}
main .p_photo {
  width: 120px;
}
main .intro_info .e_data p:nth-of-type(1) {
  width: 35%;
}
main .intro_info .event_infoT {
  margin-bottom: 0;
}
main .p_dataG {
  padding-top: 20px;
}

/* ======== New arising components at SP ========== */
header .ribbonSp {
  display: none;
}
header .ribbonSpimg {
  position: relative;
  background: url("../img/ribbon.png") no-repeat center / cover;
  width: 40px;
  height: 50px;
}
header .ribbonSp p {
  font-size: 8px;
  color: #424031;
  font-weight: bold;
}
header .noti {
  background-color: #ffffff;
  position: absolute;
  top: 10px;
  right: -40px;
  padding-inline: 8px;
  padding-block: 3px;
  border: 1px solid #6782ae;
  border-radius: 10px;
  z-index: 10;
  color: #1c1a10;
  font-size: 20px;
}
main .signComSp {
  display: none;
  padding-block: 24px 12px;
  flex-direction: column;
  gap: 15px;
  background-color: #fafaf5;
}
main .signComSp p:nth-of-type(1) {
  font-size: 14px;
  font-weight: bold;
  color: #333333;
}
main .signComSp p:nth-of-type(2) {
  font-size: 18px;
  font-weight: bold;
  color: #333333;
}
main .houseE {
  width: 100%;
  display: none;
  padding-inline: 19px;
}
main .houseET {
  font-size: 18px;
  font-weight: bold;
  color: #424031;
  margin-bottom: 30px;
}
main .houseE p:nth-of-type(2) {
    font-size: 16px;
    color: #1c1a10;
    margin-bottom: 30px;
    overflow-wrap: break-word;
}
main .houseE button {
  border: 1px solid #989483;
  background-color: #ffffff;
  font-size: 12px;
  font-weight: bold;
  color: #1c1a10;
  padding-block: 5.5px;
}
main .map .mapBtn {
  display: none;
  width: 100%;
  height: 44px;
  font-size: 12px;
  font-weight: bold;
  color: #696652;
  border: 1px solid #989483;
  border-radius: 4px;
}
main .blogG .blogT {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 12px;
  color: #424031;
}
main .blogG_sp {
  padding-inline: 19px;
  padding-top: 20px;
  background-color: #fafaf5;
  display: none;
}
main .blogG_sp .blogG_spT {
  color: #424031;
  font-size: 14px;
  font-weight: bold;
  padding-bottom: 12px;
}
main .blogList_sp {
  gap: 12px;
}
main .blogSp {
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.1);
  padding-inline: 45px;
  padding-block: 20px;
  gap: 15px;
  border-radius: 4px;
}
main .bImg_sp {
  width: 160px;
}
main .bImg_sp img {
  width: 100%;
  height: auto;
}
main .blogSp .blogSp_E {
  width: 63%;
  height: auto;
}
main .blogSp .blogSp_E .blogSp_ET {
  font-size: 12px;
  font-weight: bold;
  color: #175fff;
}
main .blogG_sp .bState_sp {
  background-color: #dddbd6;
  color: #424031;
  font-size: 10px;
  font-weight: bold;
  padding: 4px;
  border-radius: 4px;
  width: fit-content;
  margin-block: 8px;
}
main .blogSp .b_infoG {
  gap: 4px;
}
main .blogSp .b_infoG p {
  font-size: 10px;
}
main .blogSp .b_info:nth-of-type(1) {
  font-weight: bold;
}
main .blogSp .b_info p:nth-of-type(1) {
  margin-right: 12px;
  font-weight: bold;
}
main .sideBar_sp {
  display: none;
  font-size: 10px;
  padding-inline: 19px;
  padding-block: 12px;
  background-color: #fafaf5;
}
footer .guideListG {
  display: none;
}
footer .guideList {
  width: 45%;
}
footer .guideList p {
  font-size: 12px;
  color: #737373;
}
/* ----------- sectionG_sp (dropdown) ------------  */
.sectionG_sp {
  display: none;
  width: 100%;
  margin: auto;
  background-color: #f2f2f2;
}

.section_sp {
  border-bottom: 1px solid #cccccc;
}

.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0px;
  cursor: pointer;
}

.menu-header:hover {
  background-color: #f0f0f0;
}

.menu-header span {
  font-size: 16px;
  color: #737373;
  font-weight: bold;
}

.f_arrow {
  transition: transform 0.3s ease;
}

.f_arrow.rotate {
  transform: rotate(90deg);
}

.menu-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #fafafa;
  padding: 0 20px;
}

.menu-content p {
  padding: 10px 0;
  margin: 0;
  color: #666;
  font-size: 14px;
}

.section_sp.open .menu-content {
  max-height: 500px;
  height: fit-content; /* Adjust depending on content */
}
footer .bottom_btn {
  display: none;
  background-color: rgba(0, 0, 0, 0.2);
  width: 100%;
  padding-inline: 21px;
  padding-block: 15px;
}
footer .bottom_btn a {
  width: 351px;
  height: 48px;
  background-color: #ff7c00;
  padding-inline: 26px;
  padding-block: 10px;
  color: #ffffff;
  font-size: 12px;
  font-weight: bold;
  border-radius: 4px;
}
/* ------------------- */
main .feature {
  padding-top: 30px;
  padding-bottom: 10px;
}
main .featureT {
  font-size: 20px;
  font-weight: 600;
  width: 100%;
}
.toggle-wrapper {
  border-top: 1px solid #ccc;
  padding-top: 12px;
  max-width: 100%;
  margin: 0 auto 30px;
  position: relative;
}
main .toggle-wrapper::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 2px;
  background-color: #6782ae;
  top: 0;
  left: 0;
}

.toggle-header {
  width: 100%;
  display: flex;
  gap: 12px;
  align-items: center;
}
.toggle-header p {
  font-size: 16px;
  font-weight: bold;
}
.toggle-header img {
  width: 30%;
  height: auto;
  flex-shrink: 0;
}
main .featureC_gp {
  width: 100%;
  gap: 20px;
}
main .featureTxt {
  width: 100%;
}
main .featureImg {
  width: 60%;
}
main .featureImg img {
  width: 100%;
  height: auto;
}
main .featureTxt p {
  font-size: 16px;
}
main .featureTxt p:nth-of-type(1) {
  font-weight: bold;
  margin-bottom: 20px;
}
.toggle-content-wrapper {
  overflow: hidden;
  transition: height 0.4s ease;
  height: 0;
}

.toggle-content {
  opacity: 0;
  transition: opacity 0.4s ease;
  padding-top: 10px;
}

.toggle-content.visible {
  opacity: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.toggle-button {
  color: blue;
  font-size: 14px;
  cursor: pointer;
  text-decoration: underline;
  width: 100%;
  justify-content: end;
  margin-top: 12px;
}
main .featureBtn {
  width: 100%;
  height: 48px;
  background-color: #ff7c00;
  border-radius: 4px;
  margin-bottom: 12px;
}
main .featureBtn a {
  font-size: 12px;
  font-weight: bold;
  color: #ffffff;
}
main .f_Btn {
  width: 100%;
}
main .f_btnB a {
  width: 48%;
  height: 48px;
  background-color: #ffffff;
  border-radius: 4px;
  color: #333333;
  border: 1px solid #cccccc;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
}
/* ------------------- */
.btnG {
  display: none;
  padding-block: 30px;
  padding-inline: 19px;
  background-color: #fafaf5;
}
.btnG button {
  width: 47%;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  border-radius: 4px;
  color: #ffffff;
  font-weight: bold;
  font-size: 12px;
  cursor: pointer;
}
.btnG button:nth-of-type(1) {
  background-color: #175fff;
}
.btnG button:nth-of-type(2) {
  background-color: #ff7c00;
}
.f_BtnG {
  width: 100%;
  padding-inline: 230px;
}
.btnG button:nth-of-type(3),
.btnG button:nth-of-type(4) {
  color: #333333;
  border: 1px solid #cccccc;
  background-color: #fafaf5;
}
main .container .content .btnG {
  padding-inline: 0;
}
.sp {
  width: 100%;
  display: none;
}
/* ================== Responsive ============================= */
@media (max-width: 1024px) {
  html {
    scroll-behavior: smooth;
    font-size: calc(1 / 1024 * 100vw);
  }
  header .menu_list {
    display: none;
  }
  header .search_c {
    display: none;
  }
  header .menu_part .num {
    gap: 40rem;
    width: 100%;
    justify-content: center;
  }
  .hamburger {
    display: flex;
  }
}
@media (max-width: 965px) {
  html {
    font-size: calc(1 / 965 * 100vw);
  }
  .slider-container {
    height: 300px;
  }
  .container {
    width: 750px;
  }
  .thumbnail {
    width: 75px;
    height: 50px;
  }
  main .blogSort .bLeft button:nth-last-of-type(1) {
    margin: 0;
  }
  main .blogSort .bLeft {
    flex-wrap: wrap;
    align-items: center;
    width: 95%;
    margin: 0 auto;
  }
  main .blogSort .sortRect {
    width: 25%;
    font-size: 12px;
    height: 60px;
  }
  main .bLeft {
    gap: 0;
  }
  main .blogSort {
    padding-block: 20px;
  }
  footer .top {
    flex-direction: column;
    gap: 25px;
  }
  footer .bottom {
    flex-direction: column;
    justify-content: center;
  }
  footer .menuG {
    flex-wrap: wrap;
    justify-content: center;
  }
  footer .sectionG {
    width: 90%;
  }
  footer .guide {
    width: 90%;
  }
  footer .map_lists {
    padding-top: 20px;
    padding-bottom: 40px;
  }
  footer .guideListG {
    display: flex;
  }
  footer .guide_list {
    display: none;
  }
  main .container .signCom .bookBtn button:nth-of-type(1),
  main .container .signCom .bookBtn button:nth-of-type(2) {
    padding-inline: 35px;
  }
  .f_BtnG {
    padding-inline: 130px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: calc(1 / 768 * 100vw);
  }
  .container {
    width: 100%;
  }
  header .topBar {
    display: none;
  }
  header .menuBar .t_part {
    padding-inline: 19px;
    justify-content: space-between;
  }
  .hamburger {
    position: unset;
  }
  header .ribbon {
    display: none;
  }
  header .ribbonSp {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  header .ad {
    display: none;
  }
  header .adSp {
    display: block;
  }
  main {
    margin-top: 0;
  }
  main .signCom {
    display: block;
    padding: 5% 5% 0px;
    background: #fafaf5;
    margin-bottom: 0px !important;
  }
  main .signComSp {
    display: flex;
    padding-inline: 19px;
  }
  main .container {
    margin-bottom: 0;
  }
  main .container .slideG {
    background-color: #fafaf5;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin: 0;
    padding-bottom: 10px;
  }
  main .container .intro {
    display: none;
  }
  .slider-container {
    height: 480px;
  }
  main .container .slideBar {
    width: 480px;
    margin-bottom: 0px;
  }
  .thumbnail {
    width: 135px;
    height: 90px;
  }
  main .houseE {
    display: flex;
    margin-bottom: 10px;
  }
  main .container .content {
    background-color: #fafaf5;
    width: 100%;
    padding-top: 20px;
    padding-inline: 19px;
    flex-direction: column-reverse;
  }
  main .infoG {
    width: 100%;
  }
  main .event_info {
    background-color: #fafaf5;
    width: 100%;
  }
  main .intro_info {
    width: 100%;
  }
  main .personal {
    width: 100%;
    justify-content: space-between;
  }
  main .p_photo {
    width: 46%;
  }
  main .map {
    background-color: #fafaf5;
    padding-top: 30px;
    padding-inline: 19px;
    padding-bottom: 10px;
  }
  main .map .mapT {
    display: none;
  }
  main .map img {
    margin-bottom: 24px;
  }
  main .map .mapBtn {
    display: flex;
  }
  main .blogG {
    padding-inline: 19px;
    display: none;
  }
  main .blogG_sp {
    display: block;
  }
  main .b_history {
    padding-inline: 19px;
    background-color: #fafaf5;
  }
  main .blogSort {
    background-color: #fafaf5;
  }
  main .footer_txt {
    background-color: #fafaf5;
    padding-left: 34px;
    padding-right: 19px;
    padding-top: 40px;
    padding-bottom: 60px;
  }
  main .b_history .h_slide {
    margin: 0;
  }
  main .sideBar_sp {
    display: block;
  }
  footer .container {
    padding-inline: 49px;
  }
  footer .sectionG {
    display: none;
  }
  footer .guide {
    width: 100%;
  }
  footer .snsG img {
    width: 40px;
  }
  footer .bottom .btm_list {
    display: none;
  }
  footer .sectionG_sp {
    display: block;
  }
  footer .bottom p {
    width: 245px;
    text-align: center;
  }
  footer .bottom_btn {
    display: flex;
  }
  /* ---New Page --- */
  main .blog-event {
    display: none;
  }
  .f_BtnG {
    display: none;
  }
  .btnG {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    gap: 8px;
  }
  main .feature {
    padding-inline: 19px;
    background-color: #fafaf5;
  }
  main .pc {
    display: none;
  }
  main .sp {
    display: block;
  }
}
@media (max-width: 500px) {
  header .menuBar .title {
    width: 117px;
  }
  header .hamburger {
    width: 24px;
    height: 24px;
  }
  header .menuBar .t_part {
    padding: 16px;
    margin: 0;
  }
  header .ribbonSpimg {
    width: 20px;
    height: 25px;
  }
  header .noti {
    top: 3px;
    right: -25px;
    padding-inline: 5px;
    padding-block: 2px;
    border-radius: 3px;
    font-size: 10px;
  }
  .slider-container {
      height: 265px;
  }
  main .container .slideG {
    padding: 0;
    margin-bottom: 0;
  }
  main .container .slideBar {
    width: 100%;
  }
  .thumbnail {
    width: 130px;
    height: 80px;
  }
  .thumbnail-row {
    gap: 8px;
  }
  main .bImg_sp {
    width: 45%;
  }
  main .blogSp .blogSp_E {
    width: 63%;
    height: auto;
  }
  main .blogSp .blogSp_E .blogSp_ET {
    font-size: 12px;
    font-weight: bold;
    color: #175fff;
  }
  main .blogG_sp .bState_sp {
    background-color: #dddbd6;
    color: #424031;
    font-size: 10px;
    font-weight: bold;
    padding: 4px;
    border-radius: 4px;
    width: fit-content;
    margin-block: 8px;
  }
  main .blogSp .b_infoG {
    gap: 4px;
  }
  main .blogSp .b_infoG p {
    font-size: 10px;
  }
  main .blogSp .b_info:nth-of-type(1) {
    font-weight: bold;
  }
  main .blogSp .b_info p:nth-of-type(1) {
    margin-right: 12px;
    font-weight: bold;
  }
  main .blogSp {
    padding: 8px;
    gap: 8px;
  }
  footer .snsG {
    flex-wrap: wrap;
    width: 300px;
    justify-content: center;
  }
}
@media (max-width: 390px) {
  .thumbnail {
    width: 97px;
    height: 60px;
  }
}
@media (max-width: 768px) {
    main .container .signCom p {
        font-size: 20px;
    }
    main .tipG p:nth-of-type(1) {
        font-size: 12px;
    }
    main .tipG p:nth-of-type(2) {
        font-size: 16px;
        font-weight: 600;
    }
    main .container .signCom .bookBtn{
        display:none;
    }
}
@media (max-width: 500px) {
    main .container .slideBar {
        width: 95%;
    }
}

