.@charset "UTF-8";

/**
 * ラッパー
**/
[id="wrapper"] {
  overflow: hidden;
}

@media (max-width: 767px) {
  [id="wrapper"] {
    overflow: hidden;
  }
}

/**
 * header
 * NOTE: height, paddingは変数で制御
**/
[id="header"] {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-end;
  align-content: center;
  align-items: center;
  background: #fff;
  text-align: left;
  width: 100%;
  height: auto;
  /*padding-block: var(--header-padding-block);*/
  /*padding-inline: var(--header-padding-inline);*/
  /*gap: 0;*/
  position: relative;
  transition: all 0.3s ease;
}

[id="header"]>.base_wrap {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-end;
  align-content: center;
  align-items: center;
  padding-block: var(--header-padding-block);
  padding-inline: var(--header-padding-inline);
  gap: 0;
  position: relative;
  transition: all 0.3s ease;
}

@media (max-width: 1300px) {
  [id="header"]>.base_wrap {
    padding-inline: var(--header-padding-inline) 0;
  }
}

@media (max-width: 959px) {
  [id="header"]>.base_wrap {
    padding-inline: var(--header-padding-inline) 0;
  }
}

@media (max-width: 767px) {
  [id="header"]>.base_wrap {
    padding-inline: var(--header-padding-inline) 0;
  }
}


.header_logo {
  display: flex;
  flex-flow: column nowrap;
  /* justify-content: center; */
  align-items: stretch;
  padding: 10px 0 0;
  font-size: 11px;
  font-weight: 400;
  min-width: var(--header-logo-width);
  width: var(--header-logo-width);
  height: var(--header-height);
  margin: 0 auto 0 0;
  gap: 8px;
}

.header_logo span {
  display: block;
  font-size: inherit;
  font-weight: inherit;
}

.header_logo a {
  display: block;
}

@media (max-width: 767px) {
  .header_logo {
    gap: 3px;
    padding: 5px 0 0;
  }

  .header_logo span {
    display: none;
  }
}

.header_logo img {
  width: 100%;
  height: auto;
  vertical-align: top;
}


.header_link {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  height: var(--header-height);
  position: relative;
  padding: 0 var(--header-gap) 0 0;
}

@media (max-width: 767px) {
  .header_link {
    display: none;
  }
}

.header_link ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--header-gap);
}

.header_link ul>li {
  padding: 0;
}

.header_link ul>li a {
  display: block;
  font-size: 12px;
  line-height: 16px;
  white-space: nowrap;
}

@media (max-width: 1300px) {
  .header_link ul>li a {
    display: block;
    font-size: 12px;
    line-height: 16px;
  }
}

@media (max-width: 959px) {
  .header_link ul>li a {
    display: block;
    font-size: 11px;
    line-height: 16px;
  }
}


.header_icon {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  height: var(--header-height);
  position: relative;
  padding: 0 var(--header-gap) 0 0;
}

.header_icon ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--header-gap);
}

.header_icon ul>li {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: stretch;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.125;
  padding: 0;
}

@media (max-width: 1300px) {
  .header_icon ul>li a {
    display: block;
    font-size: 12px;
    line-height: 14px;
  }
}

@media (max-width: 959px) {
  .header_icon ul>li a {
    display: block;
    font-size: 11px;
    line-height: 12px;
  }
}

@media (max-width: 767px) {
  .header_icon ul>li a {
    display: block;
    font-size: 11px;
    line-height: 12px;
  }
}

/* icon image */
.header_icon i {
  display: block;
  text-align: center;
}

.header_icon img {
  width: var(--header-menu-btn-size);
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.header_icon [src*="icon_home_magnify.svg"] {
  transform: scale(0.7);
}

.header_icon [src*="icon_head_login.svg"] {
  transform: scale(0.9);
}

.header_icon [src*="icon_head_beginer.svg"] {
  transform: scale(0.9);
}

.header_icon [src*="icon_head_faq.svg"] {
  transform: scale(1);
}

.header_icon [src*="icon_head_contact.svg"] {
  transform: scale(1.125);
}

@media (max-width: 767px) {
  .header_icon [src*="icon_head_login.svg"] {
    transform: scale(0.8) translate(0, 7%);
  }
}

/* icon name */
.header_icon span {
  display: block;
  text-align: center;
}

.header_icon i+span {
  margin-top: 1ex;
}

@media (max-width: 767px) {
  .header_icon i+span {
    margin-top: 0.3333ex;
  }
}

.header_icon ul .login_name {
  border: solid 1px var(--main_c);
  padding: 1rem;
}

.login_name span {
  color: var(--main_c);
  font-weight: bold;
  font-size: 12px;
}

@media (max-width: 767px) {
  .header_icon ul .login_name {
    padding: .5rem;
  }
}


/**
 * ヘッダーローカルナビ
**/
.header_lnav {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  background: var(--main_c);
  color: #fff;
  width: 100%;
  height: 56px;
}

.header_lnav ul {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
}

.header_lnav ul>li {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.125;
  padding: 0 1em;
}

.header_lnav ul>li>a {}

@media (max-width: 1300px) {
  .header_lnav ul>li {
    padding: 0 1em;
  }
}

@media (min-width: 960px) {
  .header_lnav ul>li+li {
    border-left: solid 1px;
  }
}

@media (max-width: 959px) {
  .header_lnav ul>li {
    padding: 0 1em;
  }
}

@media (max-width: 767px) {
  .header_lnav {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-content: flex-end;
    align-items: flex-end;
    /*background: var(--header-search-c-bg);*/
    width: 100%;
    height: 40px;
  }

  .header_lnav .base_wrap {
    padding-inline: var(--header-padding-inline);
    height: 100%;
    overflow-x: auto;
    overflow-y: visible;
    white-space: nowrap;
  }

  .header_lnav ul {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-content: flex-end;
    align-items: flex-end;
    height: 100%;
  }

  .header_lnav ul>li {
    font-weight: 700;
    font-size: 12px;
    line-height: 1.125;
    padding: 0 2px;
    height: calc(100% - 6px);
  }

  .header_lnav ul>li>a {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    border-radius: var(--btn-radius) var(--btn-radius) 0 0;
    background: #fff;
    color: var(--main_c);
    text-align: center;
    height: 100%;
    padding: 0 1em;
  }
}


/**
 * ヘッダー 検索窓（一部コンテンツ部分でも共有）
**/
.word_search_wrap {
  width: 100%;
}

@media (max-width: 767px) {
  .word_search_wrap {
    width: 100%;
    overflow: hidden;
    border-radius: 6px;
  }
}

.word_search {
  width: 300px;
  position: relative;
}

@media (max-width: 1300px) {
  .word_search {
    width: 256px;
  }
}

@media (max-width: 959px) {
  .word_search {
    width: 200px;
  }
}

@media (max-width: 767px) {
  .word_search {
    width: 100%;
  }
}

.word_search .search-field[type="search"],
.word_search .search-field {
  border: 1px solid #fff;
  border-radius: 3em;
  background: #fff;
  font-size: inherit;
  line-height: 1;
  width: 100%;
  height: 40px;
  margin: 0;
  padding: 0 1em 0 3em;
  position: relative;
  z-index: 1;
}

@media (max-width: 959px) {

  .word_search .search-field[type="search"],
  .word_search .search-field {
    font-size: 12px;
    height: 32px;
  }
}

@media (max-width: 767px) {

  .word_search .search-field[type="search"],
  .word_search .search-field {
    font-size: 12px;
    height: 40px;
  }
}

.word_search .search-field::placeholder {
  color: var(--font_c_gray);
}

.word_search .search-submit {
  border: none;
  background: transparent;
  color: #fff;
  font-size: inherit;
  line-height: 1;
  border-radius: 0;
  width: 20px;
  height: auto;
  position: absolute;
  left: 1em;
  top: 50%;
  z-index: 5;
  transform: translate(0, -50%);
  float: none;
  cursor: pointer;
}

.word_search .search-submit img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

@media (max-width: 959px) {
  .word_search .search-submit {
    width: 20px;
  }
}

@media (max-width: 767px) {
  .word_search .search-submit {
    width: 16px;
  }
}

.word_search .search-submit i {
  color: #fff;
  font-size: 20px;
}

@media (max-width: 959px) {
  .word_search .search-submit i {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .word_search .search-submit i {
    font-size: 20px;
  }
}


[id="header"] .word_search_wrap {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.16);
  background: var(--header-search-c-bg);
  height: 72px;
}

[id="header"] .word_search_wrap .base_wrap {
  padding-inline: var(--header-padding-inline);
}

[id="header"] .word_search {
  max-width: var(--basewrap-width-tight);
  width: 100%;
  margin-inline: auto;
}

@media (max-width: 767px) {
  [id="header"] .word_search_wrap {
    height: 52px;
  }
}



/**
 * ヘッダー ログインボタン
**/
.header_btn_reg,
.header_btn_login {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  height: var(--header-height);
}

.header_btn_reg>*,
.header_btn_login>* {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  border: none;
  background: linear-gradient(-331deg, #fac739 0%, #fac739 0%, #fb0d6a 100%, #fb0d6a 100%);
  background-size: 112% 112%;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.125;
  height: var(--header-btn-height);
  height: 100%;
  padding: 0 1em;
  transition: background-color 0.2s ease 0.3s;
}

.header_btn_reg>* {
  border: none;
  background: linear-gradient(-331deg, #fac739 0%, #fac739 0%, #fb0d6a 100%, #fb0d6a 100%);
  color: #fff;
}

.header_btn_login>* {
  border: none;
  background: #e8f6f4;
  color: var(--main_c);
}

@media (max-width: 767px) {

  .header_btn_reg>*,
  .header_btn_login>* {
    font-size: 12px;
  }
}

.header_wrap {
  position: fixed;
  top: 0;
  z-index: 1000;
  width: 100%;
}

.header_lead {
  display: block;
  font-size: 1.15rem;
  position: absolute;
  left: 40px;
  bottom: 15px;
  width: 50em;
  line-height: 1.25;
  color: #646464;
}

@media (max-width: 1300px) {
  .header_txt {
    display: none !important;
  }

  .header_lead {
    left: 20px;
    width: 26em;
    bottom: 10px;
    line-height: 1;
    font-size: .85rem;
  }
}

@media (max-width: 959px) {}

@media (max-width: 767px) {
  .header_lead {
    width: 20em;
    left: 10px;
    bottom: 5px;
  }
}

/**
 * ドロワーメニュー
**/
.sp_navi {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--header-menu-c-bg);
  height: var(--header-height);
  position: relative;
}

@media (min-width: 1301px) {
  .sp_navi {
    width: 104px;
  }
}

@media (max-width: 1300px) {
  .sp_navi {
    width: 104px;
  }
}

@media (max-width: 959px) {
  .sp_navi {
    width: 104px;
  }
}

@media (max-width: 767px) {
  .sp_navi {
    width: var(--header-height);
  }
}

/**
 * ドロワーメニュー スイッチ
**/
[id="open_switch"] {
  position: absolute;
  opacity: 0 !important;
}

/**
 * ドロワーメニュー スイッチ
**/
[id="close_overlay"] {
  display: block;
  background: rgba(0, 0, 0, 0.13);
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1.2s ease;
}

[id="open_switch"]:checked~[id="close_overlay"] {
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.6s ease;
}

/**
 * ドロワーメニュー ハンバーガーアイコン
**/

[id="open"].btn {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
  background: inherit;
  border-radius: 0;
  font-weight: 300;
  text-decoration: none;
}

[id="open"] label,
[id="open"] a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

[id="open_icon"] {
  display: block;
  border-radius: 0;
  background: var(--header-menu-c-bg);
  width: var(--header-menu-btn-size);
  height: auto;
  aspect-ratio: 1 / 1;
  position: relative;
  z-index: 1;
}

[id="open_icon"] div {
  display: block;
  background-color: var(--main_c);
  width: calc(var(--header-menu-btn-size) * 0.5);
  height: 2px;
  position: absolute;
  left: calc(var(--header-menu-btn-size) * 0.25);
  transform: translate(0, -50%);
  z-index: 1;
}

[id="open_icon"] div:nth-of-type(1) {
  top: 33.33%;
}

[id="open_icon"] div:nth-of-type(2) {
  top: 50%;
}

[id="open_icon"] div:nth-of-type(3) {
  top: 66.66%;
}


/**
 * ドロワーメニュー 本体
**/

[id="g_menu"] {
  /*
  box-shadow:
    -6px 0 24px 0 rgba(0, 0, 0, 0.2),
    -20px 0 0 0 var(--main_c),
    -6px 0 24px 0 rgba(0, 0, 0, 0.33);
*/
  background: var(--main_c);
  color: #fff;
  text-align: left;
  max-width: var(--header-menu-width);
  width: 90svw;
  height: 100%;
  padding: 0;
  position: fixed;
  top: 0;
  right: -100%;
  z-index: 10000;
  transition: right 1.2s ease;
}

[id="open_switch"]:checked~[id="g_menu"] {
  right: 0;
  transition: right 0.6s ease;
}


/**
 * ドロワーメニュー ×アイコン
**/
[id="close"].btn {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  border: none;
  background: inherit;
  border-radius: 0;
  font-weight: 400;
  font-size: var(--header-menu-fs);
  text-decoration: none;
  width: 100%;
  height: 56px;
  padding: 6px 0 6px 20px;
  cursor: pointer;
}

[id="close"].btn::before {
  content: '';
  display: block;
  background-image: url('images/logo_w.svg');
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 100% auto;
  width: 120px;
  height: 100%;
}

[id="close"] label,
[id="close"] a {
  display: block;
  color: #ccc;
  font-size: 28px;
  font-weight: 400;
  text-align: center;
  width: 44px;
  height: 100%;
}


/**
 * ドロワーメニュー リスト
**/
[id="g_menu"] ul {
  /*border-top: 2px solid var(--header-menu-c-border);*/
  font-size: var(--header-menu-fs);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.1ex;
  padding: 0;
}

[id="g_menu"] ul>li {
  border-top: 2px solid var(--header-menu-c-border);
  font-size: inherit;
  font-weight: 700;
  line-height: inherit;
  letter-spacing: inherit;
  min-height: var(--header-menu-li-height);
  position: relative;
}

[id="g_menu"] ul>.item--child {
  font-weight: inherit;
  margin-left: 20px;
}

[id="g_menu"] ul>.item--small {
  font-weight: inherit;
  font-size: 0.8em;
  font-feature-settings: 'palt';
  padding-left: 20px;
}

[id="g_menu"] ul>li:not([class])+.item--child,
[id="g_menu"] ul>li:not([class])+.item--small {
  margin-left: 0;
}

[id="g_menu"] ul>li>a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-height: var(--header-menu-li-height);
  padding: 0 20px;
}

[id="g_menu"] ul>li>a::before {
  content: '';
  display: block;
  background-image: url("/common/images/arrow_kodawari_right_w.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  width: 1.25em;
  height: 1.25em;
  position: absolute;
  right: 0.5em;
  top: 50%;
  transform: translate(0, -50%);
}

[id="g_menu"] ul>.item--child>a,
[id="g_menu"] ul>.item--small>a {
  padding-left: 0;
}

[id="g_menu"] ul>li:not([class])+.item--child>a,
[id="g_menu"] ul>li:not([class])+.item--small>a {
  padding-left: 20px;
}

.g_menu__func {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-content: center;
  align-items: center;
  padding: 8px 20px 0;
  gap: 8px;
}

.g_menu__func>a {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  border-radius: var(--btn-radius-l);
  background: #e8f6f4;
  color: var(--font_c);
  font-weight: 700;
  font-size: var(--header-menu-fs);
  line-height: 1.25;
  letter-spacing: 0.1ex;
  min-width: calc((100% - 8px) / 2);
  height: 48px;
  gap: 2px;
  padding: 0 1em;
}

.g_menu__func>a>i {
  display: block;
  opacity: 0.66;
  text-align: center;
}

.g_menu__func>a>i img {
  width: 1.25em;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.g_menu__func>a>i [src*="icon_home_magnify"] {
  transform: scale(0.7);
}

.g_menu__func>a>i [src*="icon_head_login"] {
  transform: scale(0.9);
}

.g_menu__func>a>i [src*="icon_head_beginer"] {
  transform: scale(0.9);
}

.g_menu__func>a>i [src*="icon_head_faq"] {
  transform: scale(1);
}

.g_menu__func>a>i [src*="icon_head_contact"] {
  transform: scale(1.125);
}

.g_menu__func>[href*="/login"] {
  background: #fff;
  color: var(--main_c);
  height: 64px;
}

.g_menu__func>[href*="/register"] {
  background: linear-gradient(-331deg, #fac739 0%, #fac739 0%, #fb0d6a 100%, #fb0d6a 100%);
  background-size: 112% 112%;
  color: #fff;
  height: 64px;
}

.g_menu__func>[href*="/contact"] {
  background: #e8f6f4;
  color: var(--font_c);
  width: 100%;
}



/**
 * パンくず
 * NOTE: 不使用
**/
.bc_nav {
  /* display: none; */
  background: var(--bg_bc_nav);
  padding: 12px 0;
  font-size: 12px;
  font-weight: 600;
  line-height: 12px;
  margin-top: 210px;
}

@media (max-width: 1300px) {
  .bc_nav {
    /* margin-top: 250px; */
  }
}

@media (max-width: 767px) {
  .bc_nav {
    background: var(--bg_bc_nav_sp);
    font-size: 10px;
    font-weight: 400;
    line-height: 12px;
    margin: 160px 0 0;
    padding: 8px 0;
    overflow: hidden;
    position: relative;
  }
}

.bc_nav ol,
.bc_nav ul {
  margin: 0;
  padding: 0;
  overflow: hidden;
}

@media (max-width: 767px) {

  .bc_nav ol,
  .bc_nav ul {
    margin: 0;
    padding: 0;
    overflow-x: auto;
    overflow-y: visible;
    white-space: nowrap;
    opacity: 0.33;
  }
}

@media (max-width: 767px) {

  .bc_nav ol::after,
  .bc_nav ul::after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 5;
    width: 3em;
    pointer-events: none;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
  }
}

.bc_nav li {
  display: inline-block;
}

@media (max-width: 767px) {
  .bc_nav li {
    color: var(--font_c);
    display: inline;
    line-height: 14px;
  }
}

.bc_nav li+li::before {
  content: "\f125";
  display: inline-block;
  font-family: "Ionicons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-rendering: auto;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-left: 8px;
  margin-right: 8px;
}

.bc_nav li a {
  color: var(--font_c);
}

@media (max-width: 767px) {
  .bc_nav li a {
    color: inherit;
  }
}

@media (max-width: 767px) {
  [id="main_image_sub"]+.bc_nav {
    padding: 8px 0;
  }
}



[id="main_image_sub"] {
  width: 100%;
  height: auto;
  background: url("images/main_image.jpg") no-repeat center top;
  background-size: cover;
  overflow: hidden;
  position: relative;
  padding: 120px 0;
}

@media (max-width: 767px) {
  [id="main_image_sub"] {
    background-size: cover;
    background-position: left 40% top 50%;
    padding: 64px 0;
  }
}

[id="main_image_sub"] h2 {
  margin: 0 auto;
  padding: 0;
  width: 90%;
  max-width: 1200px;
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 8px;
  text-align: right;
}

@media (max-width: 767px) {
  [id="main_image_sub"] h2 {
    font-size: 24px;
  }
}

[id="main_image_sub"] h2 em {
  color: var(--main_c);
}


/**
 * コンテンツ
**/
[id="content"] {
  padding: 0;
}

.bc_nav+[id="content"] {
  padding-top: 0;
}

@media (max-width: 959px) {
  .bc_nav+[id="content"] {
    padding-top: 0;
  }
}

@media (max-width: 767px) {
  .bc_nav+[id="content"] {
    padding-top: 0;
  }
}


/**
 * [id="main"], [id="side"]
**/
[id="main"] {
  padding: 0 0 25px;
  width: 75%;
}

@media (max-width: 767px) {
  [id="main"] {
    padding: 16px 0 0;
    width: 100%;
  }
}

[id="main"]:only-child {
  margin-left: auto;
  margin-right: auto;
}

[id="side"] {
  width: 25%;
  max-width: 300px;
}

@media (max-width: 767px) {
  [id="side"] {
    padding: 16px 0;
    width: 100%;
  }
}


/**
 * フッター
**/
[id="footer"] {
  border-top: 0 solid var(--main_c_foot_border);
  background: var(--main_c);
  color: #fff;
  font-size: 16px;
  text-align: left;
  width: 100%;
}

@media (max-width: 959px) {
  [id="footer"] {
    font-size: 13px;
  }
}

[id="footer"] .wrap {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  width: 100%;
  max-width: var(--footer-width);
  margin: 0 auto;
  padding: 40px var(--footer-padding-inline);
}

[id="footer_logo"] {
  max-width: var(--footer-logo-width);
  width: 100%;
  text-align: left;
}

@media (max-width: 767px) {
  [id="footer_logo"] {
    max-width: none;
    text-align: center;
  }
}

[id="footer_logo"] a {
  display: block;
}

[id="footer_logo"] img {
  max-width: var(--footer-logo-width);
  width: 100%;
  height: auto;
}

[id="footer_logo"] span {
  display: block;
  font-size: 11px;
  margin-top: 1em;
}

[id="footer_func"] {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  gap: 1em;
}

[id="footer_func"] [href*="/login"] {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  border-radius: 2em;
  background: #e8f6f4;
  color: var(--main_c);
  font-weight: 700;
  min-width: 220px;
  height: 48px;
  padding: 0 2em;
}

[id="footer_func"] [href*="/register"] {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  border-radius: 2em;
  background: linear-gradient(-331deg, #fac739 0%, #fac739 0%, #fb0d6a 100%, #fb0d6a 100%);
  background-size: 112% 112%;
  color: #fff;
  font-weight: 700;
  min-width: 220px;
  height: 48px;
  padding: 0 2em;
}

@media (max-width: 767px) {
  [id="footer_func"] {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    width: 100%;
    padding: 1em 0 0;
    gap: 1em;
  }

  [id="footer_func"] [href*="/login"] {
    min-width: 160px;
    height: 48px;
  }

  [id="footer_func"] [href*="/register"] {
    min-width: 160px;
    height: 48px;
  }
}


[id="footer_navi"] {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  gap: 0.5em;
}

*+[id="footer_navi"] {
  margin-top: 40px;
}

.footer_links,
[id="footer"] .link_box {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  margin: 0;
  gap: 1em;
}

[id="footer"] .info_links_list {
  display: grid;
  width: fit-content;
  column-gap: 2em;
  grid-template-columns: repeat(2, auto);
}

[id="footer"] .footer_links {
  font-size: small;
}

[id="footer"] .link_box a {
  font-weight: 700;
}

@media (max-width: 767px) {
  [id="footer"] .link_box {}

  [id="footer"] .info_links_list {
    grid-template-columns: none;
  }
}

.footer_address {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  width: 100%;
  gap: 0.5em 1em;
}

*+.footer_address {
  margin-top: 2em;
}

.footer_address>.footer_address__name {
  display: block;
  font-weight: 700;
}

.footer_address>.footer_address__add {
  display: block;
}

.footer_address>.footer_address__tel {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  width: 100%;
  gap: 1em;
}

.footer_address>.footer_address__tel>a {}


[id="copyright"] {
  font-size: 14px;
  letter-spacing: 0.05ex;
  text-align: center;
  padding: 16px;
}

@media (max-width: 767px) {
  [id="copyright"] {
    font-size: 10px;
    padding: 10px;
  }
}


[id="page_top"] {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #646464;
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  width: 144px;
  height: 48px;
  gap: 1ex;
  position: fixed;
  bottom: 0;
  right: 40px;
  z-index: 2000;
}

[id="page_top"].fm-on {
  display: none;
}

[id="page_top"].bbb-on {
  display: none;
}

@media (max-width: 959px) {
  [id="page_top"] {
    right: 16px;
  }
}

@media (max-width: 767px) {
  [id="page_top"] {
    right: 8px;
  }

  [id="page_top"]:focus,
  [id="page_top"]:hover {
    bottom: 0;
  }

  [id="page_top"]:nth-of-type(2) {
    display: none;
  }

  [id="page_top"].fm-on {
    bottom: 80px;
  }

  [id="page_top"].fm-on:focus,
  [id="page_top"].fm-on:hover {
    bottom: 80px;
  }

  [id="page_top"].bbb-on {
    bottom: 110px;
  }

  [id="page_top"].bbb-on:focus,
  [id="page_top"].bbb-on:hover {
    bottom: 110px;
  }
}

.footer_regist_wrap {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  width: 100%;
  /* max-width: var(--footer-width); */
  margin: 0 auto;
  background-image: linear-gradient(90deg, #ff8c00 40%, #646464 60%);
}

.footer_regist_wrap div {
  width: calc(var(--footer-width) / 2);
  text-align: center;
  padding: 40px var(--footer-padding-inline);
}

.footer_regist {
  background-color: #ff8c00;
}

.footer_detail {
  background-color: #646464;
}

.footer_ttl {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.footer_regist_wrap div p {
  line-height: 1.6;
}

.footer_btn {
  font-size: 2.5rem;
  font-weight: 900;
  border: solid 1px #fff;
  background-color: #fff;
  display: block;
  width: 32rem;
  margin: 2rem auto;
  border-radius: 2em;
  padding: .5rem;
}

.footer_btn.regist {
  color: #ff8c00;
}

.footer_btn.detail {
  color: #646464;
}

.footer_list>li:nth-child(n+2)::before {
  content: "｜";
  margin-right: 1em;
}

@media screen and (max-width: 767px) {
  .footer_regist_wrap {
    display: block;
  }

  .footer_regist_wrap div {
    width: 100% !important;
  }

}

@media screen and (max-width: 959px) {
  .footer_ttl {
    font-size: 3rem;
  }
}

@media screen and (max-width: 1340px) {
  .footer_regist_wrap div {
    width: 50%;
  }
}
