/*====従来ページ移植用=====*/
.wrapper__new {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 5px;
}

html {
  /* line-height: 1.15; */
  line-height: 1.7;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  /* font-size: 12px; */
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", Meiryo, sans-serif;
  ;
  color: #333333;
  margin-top: 148px;
}

@media (max-width:768px) {
  body {
    margin-top: 0;
  }
}

.footer {
  color: #333;
  padding-top: 50px;
}

.copyright {
  text-align: center;
  padding: 2%;
}

#top_n #wrapper {
  box-sizing: border-box;
  max-width: 1366px;
  width: 100%;
  margin: 0 auto;
  line-height: 1.2;
}

#top_n a {
  text-decoration: none;
  transition: .3s;
}

#top_n img {
  /* max-width: 100%; */
  display: block;
  width: 100%;
}

/* ヘッダー */
header {
  position: fixed;
}

#top_n .header {
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: inherit;
}

#top_n .header::before,
#top_n .header::after,
#top_n .footer::before,
#top_n .footer::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
  min-width: 0;
}

/* .header p,.footer p ,
.header h1,.footer h1,
.header h2,.footer h2,
.header h3,.footer h3,
.header h4,.footer h4,

{
  margin: 0;
  padding: 0;
} */
#top_n .header__inner-top {
  background-color: #3EB166;
}

#top_n .header__inner-bottom {
  background-color: #fafafa;
  width: 100%;
  font-size: 16px;
  padding: 5px;
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.18);
}

#top_n .header-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 110px;
  box-sizing: border-box;
}

#top_n .header-name {
  max-width: 300px;
  display: flex;
  align-items: center;
  background-color: #FAFAFA;
  padding: 10px;
}

#top_n .header-middle {
  max-width: 250px;
  margin: 0 calc(50% - 400px) 0 0;
  padding: 5px 0;
}

#top_n .header-right {
  width: 100%;
  display: flex;
  align-items: center;
  max-width: 5rem;
  height: 5rem;
}

#top_n .header-right a.link_cor {
  width: 100%;
  max-width: 200px;
  border: 1px solid #fff;
  padding: 15px;
  /* height: 4rem; */
  font-size: 15px;
  border-radius: 10px;
  text-align: center;
  color: #fff;
  font-weight: bold;
  transition: 0.5s;
  letter-spacing: 1px;
  line-height: 1.1;
}

#top_n .header-right a.link_cor:hover {
  background: #fff;
  color: #3EB166;
}

@media screen and (max-width: 768px) {
  header {
    position: unset;
  }

  #top_n .header-middle {
    width: 200px;
    /* margin: 2px auto; */
    margin-right: auto;
    margin-left: 15px;
  }

  #top_n .header-name {
    position: unset;
    top: 20px;
    left: 10px;
    margin-right: 5px;
    padding: 5px;
  }

  #top_n .header-right {
    display: none;
    padding: 0 10px;
    margin-right: 7%;
  }

  #top_n .header-right a.link_cor {
    max-width: 200px;
    padding: 10px;
    font-size: 12px;
  }

  #top_n .header-top {
    padding: 0 20px 0 0;
    position: fixed;
    width: 100%;
    background-color: #3EB166;
    top: 0;
    z-index: 1000;
    box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.18);
  }

  #top_n .header__inner-bottom {
    margin-top: 60px;
  }
}


#top_n .hamburger {
  position: absolute;
  z-index: 9999;
  top: 10px;
  right: 40px;
  width: 55px;
  height: 55px;
  cursor: pointer;
  background: #fff;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#top_n .hamburger.is-active {
  right: 40px;
}

#top_n .humnurger-inner {
  width: 18px;
  height: 14px;
  display: block;
  transition: all .3s;
  box-sizing: border-box;
  position: relative;
}

#top_n .hamburger span {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  height: 3px;
  width: 25px;
  background: #000;
  transition: transform 0.3s;
}

#top_n .hamburger span:first-child {
  top: 0;
}

#top_n .hamburger span:nth-child(2) {
  top: 8px;
}

#top_n .hamburger span:nth-child(3) {
  top: 16px;
}

#top_n .hamburger.is-active span:first-child {
  top: 5px;
  left: -3px;
  transform: rotate(-45deg);
}

#top_n .hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

#top_n .hamburger.is-active span:nth-child(3) {
  top: 5px;
  left: -3px;
  transform: rotate(45deg);
}

@media screen and (max-width: 768px) {
  #top_n .hamburger span {
    width: 20px;
    height: 2px;
  }

  #top_n .hamburger {
    top: 5px;
    right: 10px;
    width: 50px;
    height: 50px;
  }

  #top_n .hamburger.is-active span:nth-child(1) {
    top: 6px;
    left: -1px;
    transform: rotate(-45deg);
  }

  #top_n .hamburger.is-active span:nth-child(2) {
    opacity: 0;
  }

  #top_n .hamburger.is-active span:nth-child(3) {
    top: 6px;
    left: -1px;
    transform: rotate(45deg);
  }

  #top_n .hamburger.is-active {
    right: 10px;
  }
}

#top_n .drawer-menu {
  position: absolute;
  z-index: 5000;
  top: 80px;
  left: 0;
  display: none;
  width: 100%;
  height: inherit;
  background: #fff;
}

#top_n .drawer-menu-inner {
  width: 100%;
  padding: 100px 3% 60px;
  box-sizing: border-box;
}

.drawer-menu.js-drawer {
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.18);
}

/*========ハンバーガー===========*/
.header__menu {
  max-width: 1100px;
  margin: 0 auto;
  margin-bottom: 50px;
  padding: 0 3%;
}

.header__section-list {
  display: none;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.header__section.active .header__section-list {
  display: block;
}

.header__section {
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 0;
}

.header__section-item,
.header__section-item-1 {
  border-right: none;
  margin: 0.5em 40px 0.5em 0;
  position: relative;
}

.header__section-item-1 {
  padding-right: 10px;
  padding-left: 10px;
  margin-bottom: 10px;
}

.header__section-item:last-child {
  border-right: none;
}

.header__section-item::before,
.header__section-item-1::before {
  content: "ー";
  font-size: 17px;
  position: absolute;
  left: -25px;
  top: 50%;
  transform: translateY(-50%);
}

.header__section-title {
  border-bottom: 1px solid #707070;
  width: 97%;
  margin: 0 auto;
  position: relative;
  font-size: 19px;
  font-weight: bold;
  padding: 25px 0;
}

.header__section-title::before {
  content: '';
  position: absolute;
  width: 2px;
  height: 10px;
  background-color: #009C94;
  transform: rotate(45deg);
  right: 20px;
  top: 50%;
  transition: 0.3s;
}

.header__section-title::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 10px;
  background-color: #009C94;
  transform: rotate(-45deg);
  right: 26px;
  top: 50%;
  transition: 0.3s;
}

.header__section-title.open::after {
  /* ラベルアイコンの縦棒を横向きに回転 */
  transform: rotate(45deg);
}

.header__section-title.open::before {
  /* ラベルアイコンの縦棒を横向きに回転 */
  transform: rotate(-45deg);
}

.header__section-ul {
  width: 100%;
  margin: 15px auto 25px;
  font-size: 17px;
  display: flex;
  align-items: center;
  margin-left: 45px;
  list-style: none;
  padding-left: 0;
}

/* add 20250819 */
ul.header__section-ul-area {
  display: flex;
  flex-wrap: nowrap;
  padding: 0;
}

ul.header__section-ul-area:first-of-type {
  margin-bottom: 10px;
}

.header-item__outer {
  display: flex;
  flex-direction: column;
  /* gap: 10px; */
}

.header-item__outer ul.header__section-ul {
  margin-bottom: 0;
}

.header-item__outer ul.header__section-ul:nth-of-type(2),
.header-item__outer ul.header__section-ul:nth-of-type(3) {
  margin-top: 0px;
}

/* add 20250819 end */
.header__submenu {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 50px;
}

.header__submenu-list {
  flex-direction: column;
}

.header__submenu-item {
  padding-left: 20px;
  flex-direction: column;
  position: relative;
  margin: 13px 0;
  font-size: 15px;
}

.header__submenu-item a {
  color: #333;
}

.header__submenu-item::before {
  display: block;
  position: absolute;
  left: 0;
  content: "\025b6";
  color: #009C94;
}

.header__section-list,
.header__submenu-list {
  list-style: none;
  padding-left: 0;
}

@media (max-width: 768px) {
  .header__section-list {
    display: none;
    transition: max-height 0.3s ease;
    overflow: hidden;
  }

  .header__section.active .header__section-list {
    display: block;
  }

  .header__section {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 0;
  }

  .header__section-ul {
    margin: 5px 0 5px;
    margin-left: 25px;
    font-size: 14px;
    flex-direction: column;
    align-items: flex-start;
  }

  .header__section-item,
  .header__section-item-1 {
    border-right: none;
    margin: 0.5em;
  }

  .header__section-title {
    border-bottom: 1px solid #707070;
    width: 97%;
    margin: 0 auto;
    position: relative;
    font-size: 15px;
    padding: 12px 0;
  }

  .header__section-title::before {
    right: 10px;
  }

  .header__section-title::after {
    right: 16px;
  }

  ul.header__section-list {
    width: 94%;
    margin: 0 auto;
    font-size: 14px;
  }

  .header__menu {
    flex-direction: column;
    margin-bottom: 0;
    padding: 0;
  }

  .header__submenu {
    width: 97%;
    flex-wrap: wrap;
    padding-top: 15px;
  }

  .header__submenu-section {
    flex: 1 1 50%;
  }

  .header__section-list,
  .header__submenu-list {
    margin-bottom: 0;
  }

  .header__section--active .header__section-list,
  .header__submenu-section--active .header__submenu-list {
    display: block;
  }

  .header__submenu-item {
    margin-top: 0;
    margin-bottom: 11px;
    font-size: 11px;
  }
}

@media screen and (max-width: 768px) {
  #top_n .drawer-menu {
    top: 64px;
  }

  #top_n .drawer-menu-inner {
    padding: 15px 3%;
  }

  #top_n .drawer-menu__items_wrap {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }

  #top_n .drawer-menu__item_box {
    width: 45%;
  }

  #top_n .drawer-menu__item_tit {
    font-size: 15px;
    padding-bottom: 15px;
    margin-bottom: 10px;
  }

  #top_n .drawer-menu__item {
    padding: 1px 0;
    font-size: 12px;
  }

  #top_n .drawer-menu__item_tit small {
    font-size: 10px;
  }

  #top_n .drawer-menu__item_box_full {
    width: 100%;
  }

  #top_n .drawer-menu__items_half {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
  }

  #top_n .drawer-menu__item_half {
    width: 50%;
  }

  #top_n .drawer-menu__items_wrap-sub {
    flex-wrap: wrap;
    gap: 20px;
  }

  #top_n .drawer-menu__items_links {
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
  }

  #top_n .drawer-menu__items_link {
    width: 45%;
  }

  #top_n .drawer-menu__item_box_item-sub {
    margin-bottom: 5px;
  }

  #top_n .drawer-menu__item_box_item-a-sub {
    font-size: 10px;
    letter-spacing: 1px;
  }
}

/*=======ヘッダー下部========*/
.header-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo-n {
  /* width: 250px; */
  max-width: 250px;
}

.header-bottom-li {
  /* margin-left: 30px; */
  margin-left: 25px;
}

.header-bottom-corporate {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-decoration: none;
  color: #333333;
  font-size: 15px;
  border-radius: 20px;
  width: 160px;
  height: 40px;
  border: 1px solid #333333;
  position: relative;
  transition: 0.3s;
  background-color: #ffffff00;
  text-align: center;
  line-height: 36px;
}

.header-bottom-corporate::after {
  position: absolute;
  content: "\025b6";
  font-size: 15px;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  transition: 0.3s;
}

.header-bottom-corporate:hover::after {
  right: 10px;
}

.header-bottom-corporate a:visited {
  color: inherit;
}

#top_n .header-bottom-ul {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  /* padding: 20px 25px; */
  padding: 20px 25px 20px 10px;
  margin: 0;
  list-style: none;
}

#top_n .header-bottom-a {
  margin-left: 70px;
  font-weight: bold;
  color: #333;
}

.header-nav__item {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.hb_drawer-menu_a {
  position: relative;
  color: #333;
}

.header-nav__item::after,
.hb_drawer-menu_a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  right: 0;
  height: 2px;
  background: #333;
  transition: all .3s;
  transform: scale(0, 1);
  /*X方向0、Y方向1*/
  transform-origin: left top;
  /*左上基点*/
}

.header-nav__item::after {
  width: calc(100% - 34px);
}

.hb_drawer-menu_a::after {
  width: 100%;
}

.header-nav__item:hover::after,
.hb_drawer-menu_a:hover::after {
  transform: scale(1, 1);
  /*X方向にスケール拡大*/
}

.hb_drawer-menu_a :visited {
  color: inherit;
}

.header-nav__img {
  width: 24px;
}

.header-nav__txt {
  font-size: 15px;
  font-size: clamp(11px, 1.0vw, 15px);
  word-break: keep-all;
  white-space: nowrap;
  font-weight: bold;
  color: #333;
}

#top_n .link-gray,
#top_n .link-gray a {
  color: #9f9f9f;
}

/* #top_n .link-gray,#top_n .link-gray a {color: #C9C9C9;} */
/*
#top_n .swiper__box {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
*/
#top_n .hb_drawer-menu_inner {
  padding: 30px 0 25px;
  background: #fafafa;
  width: 270px;
  text-align: center;
  margin-left: auto;
  border-radius: 20px;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.18);
}

#top_n .hb_drawer-menu_tit {
  width: 40%;
  border-right: 1px solid #333;
  margin-right: 30px;
}

#top_n .hb_drawer-menu_links {}

#top_n .hb_drawer-menu_links_inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 15px;
}

#top_n .hb_drawer-menu_03 .hb_drawer-menu_link {
  width: 100%;
  font-weight: bold;
  padding: 5px 0;
}

#top_n .hb_drawer-menu_03 .hb_drawer-menu_link a {
  position: relative;
}

#top_n .hb_drawer-menu_03 .hb_drawer-menu_link a.non-member::before {
  position: absolute;
  display: inline-block;
  content: "";
  background: url(../../image/common/non-member.webp);
  width: 20px;
  height: 20px;
  left: -30px;
  background-size: contain;
  top: 50%;
  transform: translateY(-50%);
}

#top_n .hb_drawer-menu_03 .hb_drawer-menu_link a.member:before {
  position: absolute;
  display: inline-block;
  content: "";
  background: url(../../image/common/member.webp);
  width: 20px;
  height: 20px;
  left: -30px;
  background-size: contain;
  top: 50%;
  transform: translateY(-50%);
}

#top_n .hb_drawer-menu_link {
  width: 48%;
  font-weight: bold;
  /* add 20250820 */
  text-align: center;
  /* add 20250820 end */
}
  /* add 20250820 */
#top_n .hb_drawer-menu_link a:hover {
  color: inherit;
}
  /* add 20250820 end */
#top_n .hb_drawer-menu.hb_drawer-menu_05 {
  position: absolute;
  z-index: 999;
  top: 80px;
  right: 48%;
  /* width: 100%; */
  height: inherit;
  visibility: hidden;
  opacity: 0;
  transition: all .3s;
}

#top_n .hb_drawer-menu.hb_drawer-menu_04 {
  position: absolute;
  z-index: 999;
  top: 80px;
  /* right: 8em; */
  right: 0;
  /* width: 100%; */
  height: inherit;
  visibility: hidden;
  opacity: 0;
  transition: all .3s;
}

#top_n .hb_drawer-menu.hb_drawer-menu_03 {
  position: absolute;
  z-index: 999;
  top: 80px;
  right: 6.5em;
  /* width: 100%; */
  height: inherit;
  visibility: hidden;
  opacity: 0;
  transition: all .3s;
  font-size: 16px;
}

#top_n .hb_drawer-menu_03.open,
#top_n .hb_drawer-menu_04.open,
#top_n .hb_drawer-menu_05.open {
  visibility: visible;
  opacity: 1;
}

#top_n .hb_drawer-menu_link_gift {
  width: 17%;
  text-align: center;
}

#top_n .hb_drawer-menu_link_gift img {
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .header__logo-n {
    max-width: 190px;
  }

  #top_n .header-bottom-ul {
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 10px 20px;
  }

  #top_n .header-bottom-li a {
    margin-left: 0;
  }

  #top_n .hb_drawer-menu_inner {
    flex-wrap: wrap;
    padding: 15px 0;
  }

  #top_n .hb_drawer-menu_tit {
    display: none;
  }

  #top_n .hb_drawer-menu_links {
    width: 85%;
  }

  #top_n .header-bottom-li {
    font-size: 85%;
  }

  #top_n .hb_drawer-menu_link {
    width: 49%;
  }

  #top_n .hb_drawer-menu_links_inner {
    gap: 5px;
  }
}

/* フッター 共通 */
#top_n #footer {
  background: #fff;
}

#top_n footer a {
  color: #333;
}


/* フッター リンク */
.footer {
  background-color: #fff;
  color: black;
}

.footer__menu {
  max-width: 1000px;
  margin: 0 auto;
  margin-bottom: 40px;
  padding: 0 20px;
}

ul.footer__section-ul {
  display: flex;
  list-style: none;
  margin: 0;
}

/* add 20250819 */
ul.footer__section-ul-area {
  display: flex;
  flex-wrap: nowrap;
  padding: 0;
}

ul.footer__section-ul-area:first-of-type {
  margin-bottom: 10px;
}

/* add 20250819 end */

.footer__submenu {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 20px;
}

.footer__section {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}

.footer__section-title {
  cursor: pointer;
  font-size: 16px;
  width: 220px;
  font-weight: bold;
  margin: 0 25px 0 0;
  padding-top: 7px;
}

.footer__section-list {
  display: flex;
  margin: 5px 0;
  font-size: 15px;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}

.footer__submenu-list {
  flex-direction: column;
  margin-bottom: 58px;
  list-style: none;
}

.footer__submenu-item {
  padding-left: 20px;
  flex-direction: column;
  position: relative;
  margin: 13px 0;
  font-size: 15px;
}

.footer__submenu-item::before {
  display: block;
  position: absolute;
  left: 0;
  content: "\025b6";
  color: #009C94;
}

.footer__section-item {
  border-right: 1px solid #000;
  padding-right: 10px;
  padding-left: 10px;
}

.footer__section-item-1 {
  border-right: 1px solid #000;
  padding-right: 10px;
  padding-left: 10px;
}

/* add 20240819 */
.section-item__outer {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* add 20240819 end */
.footer__section-item:last-child {
  border-right: none;
}

.footer__link {
  color: black;
  text-decoration: none;
}

.footer__section-list,
.footer__submenu-list {
  padding-left: 0;
}

@media (max-width: 768px) {
  .footer__section-list {
    display: none;
    transition: max-height 0.3s ease-out;
    overflow: hidden;
  }

  .footer__section.active .footer__section-list {
    display: block;
  }

  .footer__section {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 0;
  }

  .footer__section-item,
  .footer__section-item-1 {
    border-right: none;
    margin: 0.5em;
  }

  .footer__section-title {
    border-bottom: 1px solid #707070;
    width: 97%;
    margin: 0 auto;
    position: relative;
    font-size: 15px;
    padding: 11px 0;
  }

  .footer__section-title::before {
    content: '';
    position: absolute;
    width: 2px;
    height: 10px;
    background-color: #009C94;
    transform: rotate(45deg);
    right: 7%;
    top: 40%;
    transition: 0.3s;
  }

  .footer__section-title::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 10px;
    background-color: #009C94;
    transform: rotate(-45deg);
    right: calc(7% + 6px);
    top: 40%;
    transition: 0.3s;
  }

  .footer__section-title.open::after {
    /* ラベルアイコンの縦棒を横向きに回転 */
    transform: rotate(45deg);
  }

  .footer__section-title.open::before {
    /* ラベルアイコンの縦棒を横向きに回転 */
    transform: rotate(-45deg);
  }

  .footer__section-ul {
    display: flex;
    flex-direction: column;
  }

  .footer__submenu {
    width: 97%;
  }

  ul.footer__section-list {
    width: 94%;
    margin: 0 auto;
    font-size: 14px;
  }

  .section-item__outer {
    gap: unset;
  }
}


@media (max-width: 768px) {
  .footer__menu {
    flex-direction: column;
    padding: 0 10px;
  }

  .footer__submenu {
    flex-wrap: wrap;
    padding: 0 10px;
  }

  .footer__submenu-section {
    flex: 1 1 50%;
  }

  .footer__section-list,
  .footer__submenu-list {
    margin-bottom: 0;
  }

  .footer__section--active .footer__section-list,
  .footer__submenu-section--active .footer__submenu-list {
    display: block;
  }

}

@media screen and (max-width: 768px) {
  .footer__submenu-item {
    margin-top: 0;
    margin-bottom: 11px;
    font-size: 11px;
  }
}

/* フッター ロゴリンク */
.footer__logo {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  border-top: 1px solid #707070;
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  flex-wrap: wrap;
}

.footer__logo-list {
  width: 430px;
}

.footer__logo-list-sns {
  display: flex;
  width: 420px;
  justify-content: center;
  border: 1px solid #707070;
  border-radius: 5px;
  align-items: center;
  gap: 25px;
  box-sizing: border-box;
}

.footer__logo-item-sns p {
  font-size: 16px;
  margin-bottom: 20px;
}

.footer__logo-item-mark {
  display: flex;
  max-width: 150px;
  gap: 10px;
  margin-left: 15px;
}

.footer__logo-item-jata {
  width: 50%;
}

.footer__logo-item-sns {
  width: 180px;
  text-align: center;
}

.footer__logo-item-sns-image {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.footer__logo-item-fureai {
  width: 130px;
}

.footer__logo-item-ntour {
  margin-bottom: 10px;
}

.footer__logo-item-x {
  width: 55px;
}

.footer__logo-item-instagram {
  width: 60px;
}

@media screen and (max-width: 768px) {
  .footer__logo {
    padding-top: 30px;
    flex-direction: column-reverse;
    border-top: none;
  }

  .footer__logo-list {
    width: 100%;
  }

  .footer__logo-list-sns {
    width: 100%;
    padding: 15px;
  }

  .footer__logo-item-mark {
    margin: 0 auto;
  }

  .footer__logo-item-sns p {
    font-size: 14px;
  }

  .footer__logo-item-mark {
    max-width: 150px;
    gap: 10px;
  }
}

/* フッター　コピー */
#top_n .copy__inner {
  background: #3EB166;
}

#top_n .footer-copy {
  color: #fff;
  padding: 25px 0;
  text-align: center;
  margin-top: 20px;
}

#top_n #page_top {
  position: fixed;
  width: 60px;
  height: 60px;
  right: 2rem;
  bottom: 2rem;
  z-index: 1000;
}

@media screen and (max-width: 768px) {
  #top_n .footer-copy {
    margin-top: 30px;
  }
}

@media (max-width:768px) {
  .pc-only {
    display: none;
  }
}

@media (min-width:769px) {
  .sp-only {
    display: none;
  }
}

/* add 20250219 */
#top_n .mypage {
  width: 100%;
  display: flex;
  align-items: center;
  max-width: 5rem;
  margin-right: 10px;
}

#top_n .mypage__txt {
  text-align: center;
}

#top_n .header-right.mypage a.link_cor {
  font-size: 10.8px;
  padding: 5px;
  /* height: 4rem; */
}

#top_n .header-right.mypage a.link_cor img {
  width: 35px;
  margin: 0 auto;
  padding-bottom: 0.5em;
}

@media (max-width:768px) {
  #top_n .mypage .mypage__txt {
    /* display: none; */
  }

  #top_n .header-right a.link_cor {
    border: none;
  }

  #top_n .mypage {
    max-width: 5.5rem;
    margin-right: 7%;
    height: unset;
  }

  #top_n .hb_drawer-menu_inner {
    width: 100%;
    border-radius: 0;
  }

  #top_n .hb_drawer-menu.hb_drawer-menu_03 {
    right: 0;
    left: 0;
    top: 64px;
  }

  #top_n .hb_drawer-menu_03 .hb_drawer-menu_links {
    width: 100%;
  }

  #top_n .header-right.mypage a.link_cor {
    font-size: 9px;
  }
}