@charset "utf-8";

/*////////////////////////////////////////////////
common
////////////////////////////////////////////////*/

/* アンカーリンク調整*/

:root { --sticky-h: 80px; }
@media (max-width: 960px) {
  :root { --sticky-h: 70px; }
}

html {
  scroll-padding-top: var(--sticky-h);
}

body {
  height: 100vh;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, "Helvetica Neue", Arial, sans-serif, -apple-system BlinkMacSystemFont;
  color: #343434;
  display: flex;
  flex-direction: column;
}

@media all and (-ms-high-contrast:none) {
  body {
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, "Helvetica Neue", Arial, sans-serif, system-ui, -apple-system BlinkMacSystemFont;
    letter-spacing: 0px;
  }
}

a {
  text-decoration: none;
}

a:hover {
  opacity: .7;
  -webkit-opacity: .7;
  -moz-opacity: .7;
  filter: alpha(opacity=70);
  /* IE lt 8 */
  -ms-filter: "alpha(opacity=70)";
  /* IE 8 */
  color: #017D79;
  transition: all 0.3s ease 0s;
}

a:visited {
  color: inherit;
}

a img {
  -webkit-transition: opacity 1s ease-out;
  -moz-transition: opacity 1s ease-out;
  -ms-transition: opacity 1s ease-out;
  transition: opacity 1s ease-out;
}

ul {
  list-style: none;
  padding-inline-start: 0;
}

/* font size*/

.t-sm {
  font-size: 0.875rem;
}

.t-l {
  font-size: 1.125rem;
}

.t-2l {
  font-size: 1.25rem;
}

/* PC onry*/

.pc {
  display: flex !important;
}

.sp {
  display: none !important;
}

.sp-mini {
  display: none !important;
}


/* SP onry */

@media only screen and (max-width: 960px) {
  .pc {
    display: none !important;
    height: 0;
  }

  .sp {
    display: block !important;
  }

  .sp-mini {
    display: none !important;
  }

  img {
    max-width: 100%;
  }
}

/* 961px －1000px で見たときは"short"のclassがついた要素が表示される */

@media only screen and (max-width: 961px) {
  .short {
    display: none !important;
  }
}


/* 非表示 */

.hide {
  display: none;
}

/*////////////////////////////////////////////////
head
////////////////////////////////////////////////*/

#top_user {
  width: 100%;
  height: fit-content;
  min-height: 48px;
  background-color: white;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.2);
  text-align: right;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

#logo_tokyo,
#logo_tokyo_sp {
  height: 24px;
  position: absolute;
  top: 11px;
  left: 25px;
}

#logo_tokyo img,
#logo_tokyo_sp img {
  height: 100%;
}

#user_info {
  width: fit-content;
  min-width: 150px;
  height: fit-content;
  border-radius: 5px;
  padding: 7px 0;
  margin: 6px 0;
  font-weight: bold;
  color: white;
  background-color: #006563;
  text-align: center;
}

#user_info a {
  vertical-align: middle;
  display: flex;
}

#user_info a p {
  width: fit-content;
  min-width: 64px;
}

#user_info img {
  margin: 0 15px 0 21px;
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(248deg) brightness(106%) contrast(106%);
}

.account_ad ul {
  border-radius: 0 0 10px 10px;
  overflow: hidden;
}

.account_ad ul,
.account_ad_sp ul {
  width: 245px;
  background-color: white;
  box-shadow: -1px 2px 10px #00000080;
  padding-bottom: 24px;
  margin: 0;
  text-align: center;
  right: 0;
  z-index: 1000;
}

.account_ad_sp ul {
  position: absolute;
}

.account_ad ul p {
  width: 245px;
}

.account_ad ul p,
.account_ad_sp ul p {
  padding: 6px 0 3px;
  margin: -4px 0 4px -18px;
  color: white;
  text-align: center;
  background-color: #224D77;
}

.account_ad ul li,
.account_ad_sp ul li {
  padding: 4px 0;
  margin: 0 18px;
  position: relative;
  text-align: left;
  word-break: break-all;
}

.account_ad ul li.logout img,
.account_ad_sp ul li.logout img {
  margin: 4px 9px -4px 0;
  position: static;
}

.account_ad ul li.name img,
.account_ad ul li.mail img,
.account_ad_sp ul li.name img,
.account_ad_sp ul li.mail img {
  margin: 4px 9px -1px 0;
  position: static;
}

.user_name {
  color: #117C77;
}

.account_ad ul li.mail,
.account_ad_sp ul li.mail {
  margin-bottom: 8px;
  border-bottom: 2px solid #117C77;
}

.account_ad ul li.mail img,
.account_ad_sp ul li.mail img {
  width: 15px;
  filter: invert(16%) sepia(66%) saturate(5896%) hue-rotate(172deg) brightness(81%) contrast(104%);
}

.mail i {
  margin: 0 8px 0 0;
}

.account_ad ul li.name,
.account_ad ul li.mail {
  text-indent: -24px;
  padding-left: 24px;
  line-height: 1.4375rem;
}

.account_ad ul li.logout,
.account_ad_sp ul li.logout {
  width: 209px;
  height: 41px;
  padding: 8px 0;
  margin: 8px auto;
  background-color: #B9B9B9;
  border-radius: 24px;
  text-align: center;
}

.account_ad ul li.edit_account,
.account_ad_sp ul li.edit_account {
  text-decoration: underline;
  font-size: 0.875rem;
  color: #006563;
  text-align: center;
  -webkit-text-decoration: underline #006563;
}

.account_ad ul li i,
.account_ad_sp ul li i {
  font-size: 1rem;
  color: #006563;
}

.account_label {
  width: fit-content;
  padding: 13px 45px 13px 17px;
  margin: 0 0 0 18px;
  background-color: white;
  color: #006563;
  border-top: none;
  border-right: none;
  border-bottom: none;
  border-left: 1px solid #006563;
  display: block;
  position: relative;
}

.account_label img {
  padding: 0 12px 0 12px;
}

.account_label:after {
  box-sizing: border-box;
  content: ' ';
  -webkit-mask-image: url("../images/icon_arrow_down_wh.svg");
  mask-image: url("../images/icon_arrow_down_wh.svg");
  background-color: #006563;
  background-size: 17px;
  mask-repeat: no-repeat;
  display: block;
  padding: 5px 10px;
  position: absolute;
  right: 12px;
  top: 24px;
}

.account_label:first-of-type:focus {
  outline: solid 2px #454545 !important;
  outline-offset: -5px;
  border-radius: 10px;
}

.account_ad__closed {
  display: none;
}

.account_list {
  display: none;
}

.account_list:checked+.account_label:after {
  content: ' ';
  -webkit-mask-image: url("../images/icon_arrow_up_wh.svg");
  mask-image: url("../images/icon_arrow_up_wh.svg");
  background-color: #006563;
  mask-size: contain;
  mask-repeat: no-repeat;
}

.account_ad_sp {
  height: 0;
  opacity: 0;
  transition: .5s;
  visibility: hidden;
  margin: -21px auto 21px;
  text-align: left;
  display: block;
  position: relative;
  z-index: 1000;
}

.account_list:checked+.account_label+.account_ad {
  height: auto;
  opacity: 1;
  visibility: visible;
}

#company {
  width: 100%;
  max-width: 1000px;
  padding: 15px 142px 5px 0;
  margin: 0 auto;
  text-align: left;
  position: relative;
}

#company a {
  width: fit-content;
  padding: 30px 30px 0 0;
  display: inline-block;
}

#company_name {
  width: 606px;
  height: 80px;
  padding: 12px 32px 12px 36px;
  margin-bottom: 11px;
  vertical-align: middle;
  font-size: 1.2rem;
  line-height: 1.75rem;
  font-weight: bold;
  color: #3C465B;
  display: inline-block;
  position: absolute;
  border-left: 12px solid;
  border-image: linear-gradient(to bottom, #01F4BB, #00B2A1) 1;
}

#company_name p {
  width: 485px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  border-right: 0;
}

@media(min-width:961px) {
  #company_name p.sp_account {
    display: none;
  }
}

@media(max-width:960px) {
  #company_name p:not(.sp_account) {
    max-width: 160px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    border-right: 0;
  }

  #company_name p.sp_account {
    width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
  }
}

#sp_user_info {
  display: none;
}


/* 追従ヘッダー */

body:has(#header.fixed-header) {
  padding-top: 260px;
}

#header.fixed-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10001;
  background-color: #ffffff;
  transition: top .3s;
}

#header.fixed-header #top_user {
  box-shadow: none;
}

#header.fixed-header #top_user .logoArea #logo_tdpf,
#header.fixed-header #top_user .logoArea #logo_tdpf_sp {
  display: block;
}

#header.fixed-header #company {
  display: none;
}

#header.fixed-header nav.pc {
  margin-top: 0;
}

#top_user .logoArea #logo_tdpf,
#top_user .logoArea #logo_tdpf_sp {
  display: none;
  height: 26px;
  position: absolute;
  top: 12px;
  left: 136px;
}

#top_user .logoArea #logo_tdpf img,
#top_user .logoArea #logo_tdpf_sp img {
  height: 100%;
}

@media (max-width: 960px) {
  #header {
    width: 100%;
    display: block;
    /*overflow: hidden;*/
  }

  /*追従ヘッダー*/
  body:has(#header.fixed-headersp) {
    padding-top: 110px;
  }

  #header.fixed-headersp {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1100;
    transition: top .3s;
  }

  #top_user {
    display: none;
  }

  #company {
    width: 100%;
    height: fit-content;
    padding: 0;
    position: relative;
    background: #fff;
  }

  #tokyo {
    width: 100%;
    height: fit-content;
    min-height: 1.5rem;
    background-color: white;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.2);
  }

  #company a#logo_tokyo,
  #company a#logo_tokyo_sp {
    padding: 0;
    top: 0;
    left: 0;
    position: absolute;
  }

  #company a#logo_tokyo img,
  #company a#logo_tokyo_sp img {
    margin-left: 8px;
    height: 15px;
  }

  #company a#logo_tdpf,
  #company a#logo_tdpf_sp {
    padding: 24px 9px 22px 8px;
  }

  #company a#logo_tdpf img,
  #company a#logo_tdpf_sp img {
    height: 27px;
  }

  #company_name {
    width: calc(100% - 156px);
    height: auto;
    padding: 4px 0 0 6px;
    margin: 8px 0 11px 0;
    font-size: 0.8125rem;
    line-height: 1.0625rem;
    overflow: hidden;
    border-left: 8px solid;
  }

  .sp_account {
    font-size: 0.625rem;
    font-weight: normal;
    margin-top: 4px;
  }

  #sp_user_info {
    width: fit-content;
    height: fit-content;
    width: 150px;
    border-radius: 5px;
    padding: 7px 0;
    margin: 6px 12px;
    font-weight: bold;
    color: white;
    background-color: #006563;
    text-align: center;
    display: block;
  }

  #sp_user_info a {
    display: flex;
    align-items: center;
    align-content: center;
  }

  #sp_user_info a p {
    height: fit-content;
    border-radius: 5px;
  }

  #sp_user_info img {
    margin: 0 15px 0 21px;
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(248deg) brightness(106%) contrast(106%);
  }
}

header nav {
  margin: 0 auto;
  background-color: #224D77;
}

header nav.pc {
  margin: 18px auto 0;
}

header nav ul {
  width: fit-content;
  min-width: 62.5rem;
  margin: 0 auto;
  padding: 3px 0 5px;
  text-align: center;
}

header nav ul li {
  height: 30px;
  padding: 0 10px 0 12px;
  margin: 9px auto;
  display: inline-block;
  vertical-align: middle;
  font-size: 1.125rem;
  line-height: 1.375rem;
  color: white;
  border-left: 1px solid white;
}

header nav ul li a {
  height: 48px;
  margin: -9px auto 9px;
  display: -webkit-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

header nav ul li a:hover,
#user_info a:hover {
  color: #8effe5;
  opacity: 1 !important;
}

header nav ul li:last-child {
  border-right: 1px solid white;
}

.short {
  display: none !important;
}


/*////////////////////////////////////////////////
main
////////////////////////////////////////////////*/

#index main {
  margin-top: 22px;
  text-align: center;
}

#index .freeword,
#index .period,
#index .like {
  text-align: center;
}

main {
  flex: auto;
}

main#main-index {
  margin-top: 22px;
  text-align: center;
}

section.news {
  height: fit-content;
  min-height: 25.8125rem;
  padding: 21px 42px;
  margin-top: -23px;
  background: linear-gradient(rgba(16, 152, 148, 0.5), rgba(5, 125, 121, 0.5)), url(../images/bg_kv_trim.png);
  background-size: cover;
  position: relative;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.4);
}

#index section.data {
  background-color: #F5F5F5;
}

#index section.case_study {
  background-color: #D0EFEE;
}

#index section.faq {
  background-color: #F5F5F5;
}

h3 img {
  margin-right: 12px;
}

main section {
  padding: 32px;
}

@media (max-width: 960px) {
  main section {
    padding: 0 16px;
    overflow: hidden;
  }

  #index section {
    padding: 24px 16px;
  }
}

.inner {
  width: 1000px;
  margin: 0 auto;
}

.inner-1200 {
  width: 1200px;
  margin: 0 auto;
}

@media (min-width: 961px) and (max-width: 1063px) {
  .inner {
    width: 100%;
  }
}

@media (max-width: 960px) {
  .inner {
    width: 100%;
  }

  .inner-1200 {
    width: 100%;
  }

  section.news {
    height: fit-content;
    min-height: 430px;
    margin-top: 0;
    overflow: visible;
  }

  section.case_study {
    padding-top: 32px;
  }
}

section.news h3 {
  height: 36px;
  font-size: 2rem;
  color: white;
  letter-spacing: 0.58px;
  display: flex;
  align-items: center;
  justify-content: center;
}

section.news h3 p {
  display: flex;
  align-items: center;
  justify-content: center;
}

section.news .news_window {
  width: 100%;
  max-width: 964px;
  padding: 18px;
  margin: 21px auto 0;
  border-radius: 10px;
  background-color: white;
  position: relative;
  z-index: 999;
}

section.news ul {
  position: relative;
}

.recent_news {
  max-height: 205px;
  overflow-y: auto;
}

.past_news {
  max-height: 405px;
  overflow-y: scroll;
}

.recent_news::-webkit-scrollbar,
.past_news::-webkit-scrollbar {
  width: 15px;
  background-color: white;
  border: 1px solid #707070;
}

.recent_news::-webkit-scrollbar-thumb,
.past_news::-webkit-scrollbar-thumb {
  background-color: #117C77;
}


/*固定のニュース*/

div.fixed-pinIcon {
  display: block;
  width: 27px;
  height: 25px;
  margin-right: 0.5rem;
}

div.fixed-pinIcon img {
  display: block;
  width: 23px;
  height: 27px;
}

section.news li {
  display: flex;
  text-align: left;
  margin-bottom: 1rem;
  flex-direction: row;
  line-break: anywhere;
}

section.news li a {
  display: flex;
  width: 100%;
}

section.news li .date {
  width: 110px;
  color: #03736F;
}

section.news li p.new_txt {
  width: calc(100% - 160px);
}

section.news li a p.new_txt {
  width: calc(100% - 125px);
  color: #006563;
  text-decoration: underline;
  text-decoration-color: #006563;
  -webkit-text-decoration: underline #006563;
}

.news_window .btn {
  width: 900px;
  height: fit-content;
  min-height: 2.1875rem;
  padding: 3px 0;
  background-color: #F5F5F5;
  border: 2px solid #017D79;
  border-radius: 18px;
  color: #006563;
  position: relative;
  display: flex;
  justify-content: center;
  font-weight: bold;
  font-size: 1.125rem;
  align-items: center;
}

.triangle:after {
  width: 25px;
  height: 25px;
  position: absolute;
  top: 3px;
  left: 565px;
  content: ' ';
  background-image: url("../images/arrow_circle.svg");
  filter: invert(37%) sepia(68%) saturate(707%) hue-rotate(132deg) brightness(88%) contrast(99%);
  background-size: contain;
  background-repeat: no-repeat;
}

.triangle.is-active:after {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

@media (max-width: 960px) {
  section.news h3 {
    font-size: 1.5rem;
  }

  section.news .news_window {
    width: calc(100% - 60px);
    padding: 12px;
    margin: 21px auto 8px;
    overflow: auto;
  }

  div.fixed-pinIcon {
    height: fit-content;
  }

  div.fixed-pinIcon>img {
    display: block;
    width: 20px;
    height: fit-content;
    max-height: 27px;
  }

  section.news li {
    display: flex;
    text-align: left;
    margin-bottom: 0.5rem;
    flex-direction: column;
    line-break: anywhere;
  }

  section.news li a {
    display: flex;
    width: 100%;
    flex-direction: column;
  }

  section.news li .date {
    width: 100%;
    color: #03736F;
  }

  section.news li p.new_txt {
    width: 100%;
  }

  section.news li a p.new_txt {
    width: 100%;
  }

  section.news ul {
    margin: 0 auto;
  }

  section.news li .date {
    width: 100%;
    padding: 0 12px;
    position: static;
  }

  section.news li p {
    width: 100%;
    padding: 6px 6px 12px 12px;
  }

  .news_window .btn {
    width: calc(100% - 20px);
    margin: 0 0 0 5px;
    font-size: 0.9rem;
  }

  .triangle:after {
    left: 85%;
  }
}

section.data h2 {
  width: fit-content;
  height: auto;
  margin: 0 auto;
  padding: 6px 150px 8px;
  border-top: 2px solid #189A94;
  border-bottom: 2px solid #189A94;
  font-size: 2.125rem;
  font-weight: bold;
  color: #017D79;
}

section.data ul li {
  width: fit-content;
  min-width: 13.75rem;
  height: fit-content;
  min-height: 15rem;
  display: inline-block;
  margin: 32px 12px;
  box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  position: relative;
  transition-duration: 0.5s;
}

@media (min-width: 961px) and (max-width: 1063px) {
  .data .inner {
    width: 90vw;
  }

  section.data ul {
    margin: 0 auto;
    width: 90vw;
    transition-duration: 0.5s;
  }

  section.data ul li {
    min-width: 12.75rem;
    margin: 32px 6px;
    transition-duration: 0.5s;
    font-size: 1rem;
  }

  section.data ul li p {
    letter-spacing: -0.05rem;
  }
}

@media (min-width: 961px) {
  section.data ul.view_all {
    width: 850px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
    padding-bottom: 64px;
  }

  section.data ul.view_all.is-under5 {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
  }
}

section.data ul li:hover {
  border: 2px solid #189A94;
  color: #189A94;
  box-shadow: 0px 3px 10px white;
}

section.data ul li a {
  width: 100%;
  margin: 0 auto;
  opacity: 1;
  display: block;
  position: absolute;
  padding: 12px 22px 22px;
  text-align: center;
}

section.data ul li p {
  font-size: 1.3rem;
  line-height: 1.875rem;
  padding-top: 9.125rem;
}

section.data ul li p.short_menutext {
  line-height: 1.875rem;
  padding-top: 10.25rem;
}


section.data ul li.view_idea a {
  display: block;
  height: fit-content;
  min-height: 9.125rem;
  background: url("../images/icon_view_idea.svg") center top / 60% no-repeat;
  background-position-y: 15px;
}

section.data ul li.view_idea a:after {
  content: '';
  margin: 0;
}

section.data ul li.view_date a {
  display: block;
  height: fit-content;
  min-height: 9.125rem;
  background: url("../images/icon_view_date.svg") center top / 60% no-repeat;
  background-position-y: 15px;
}

section.data ul li.view_date a:after {
  content: '';
  margin: 0;
}

section.data ul li.view_casestudy a {
  background: url("../images/icon_view_casestudy.svg") center top / 60% no-repeat;
  background-position-y: 15px;
}

section.data ul li.view_memberlist a {
  background: url("../images/icon_view_memberlist.svg") center top / 60% no-repeat;
  background-position-y: 15px;
}

section.data ul li.view_postlist a {
  background: url("../images/icon_view_postlist.svg") center top / 60% no-repeat;
  background-position-y: 15px;
}

section.data ul li.input_data a {
  background: url("../images/icon_input_data.svg") center top / 60% no-repeat;
  background-position-y: 15px;
}

section.data ul li.input_casestudy a {
  background: url("../images/icon_input_casestudy.svg") center top / 60% no-repeat;
  background-position-y: 15px;
}

section.data ul li.input_post a {
  background: url("../images/icon_input_post.svg") center top / 60% no-repeat;
  background-position-y: 15px;
}

@media(min-width:961px) {
  section.data ul li.view_idea a:hover {
    background: url("../images/icon_view_idea_on.svg") center top / 60% no-repeat;
    background-position-y: 15px;
  }

  section.data ul li.view_date a:hover {
    background: url("../images/icon_view_date_on.svg") center top / 60% no-repeat;
    background-position-y: 15px;
  }

  section.data ul li.view_casestudy a:hover {
    background: url("../images/icon_view_casestudy_on.svg") center top / 60% no-repeat;
    background-position-y: 15px;
  }

  section.data ul li.view_memberlist a:hover {
    background: url("../images/icon_view_memberlist_on.svg") center top / 60% no-repeat;
    background-position-y: 15px;
  }

  section.data ul li.view_postlist a:hover {
    background: url("../images/icon_view_postlist_on.svg") center top / 60% no-repeat;
    background-position-y: 15px;
  }

  section.data ul li.input_data a:hover {
    background: url("../images/icon_input_data_on.svg") center top / 60% no-repeat;
    background-position-y: 15px;
  }

  section.data ul li.input_casestudy a:hover {
    background: url("../images/icon_input_casestudy_on.svg") center top / 60% no-repeat;
    background-position-y: 15px;
  }

  section.data ul li.input_post a:hover {
    background: url("../images/icon_input_post_on.svg") center top / 60% no-repeat;
    background-position-y: 15px;
  }
}

@media (max-width: 960px) {
  .data_tri {
    background: #189A94;
    height: calc(tan(60deg) * 17px / 2);
    width: 15px;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    display: inline-block;
    position: absolute;
    top: 30%;
    right: 0;
  }
}

#index h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #006563;
}

section.case_study h2,
section.ranking h2,
section.faq h2 {
  display: flex;
  display: flex;
  align-items: center;
  justify-content: center;
}

h2 img {
  margin-right: 18px;
}

.ranking_period {
  width: 532px;
  margin: 21px auto 56px;
  padding: 8px 0;
  border-top: 2px solid #189A94;
  border-bottom: 2px solid #189A94;
}

@media (max-width: 960px) {
  h2 {
    font-size: 1.25rem;
  }

  #index h2 {
    position: relative;
    font-size: 1.375rem;
  }

  #index section.faq h2 img {
    top: 0;
    left: 40px;
    position: absolute;
  }

  section.data {
    padding-top: 33px;
  }

  section.data h2 {
    width: 100%;
    padding: 10px 0;
    border-top: 2px solid #189A94;
    border-bottom: 2px solid #189A94;
    font-size: 1.5rem;
  }

  section.data ul {
    height: fit-content;
    margin: 16px auto 40px;
  }

  section.data ul li {
    width: 100%;
    height: fit-content;
    min-height: 3.625rem !important;
    padding: 10px 13px 10px 24px;
    margin: 8px auto;
    box-shadow: 0px 3px 10px #00000066;
    font-size: 1.25rem;
    position: relative;
    display: flex;
    align-items: center;
  }

  section.data ul li a {
    width: calc(100% - 37px);
    padding: 0;
  }

  section.data ul li.view_idea a{
    display: block;
    height: fit-content;
    min-height: 2.25rem;
    background: url("../images/icon_view_idea.svg") left top / auto 100% no-repeat;
  }

  section.data ul li.view_date a {
    display: block;
    height: fit-content;
    min-height: 2.25rem;
    background: url("../images/icon_view_date.svg") left top / auto 100% no-repeat;
  }

  section.data ul li.view_casestudy a {
    display: block;
    height: fit-content;
    min-height: 2.25rem;
    background: url("../images/icon_view_casestudy.svg") left top / auto 100% no-repeat;
  }

  section.data ul li.view_memberlist a {
    display: block;
    height: fit-content;
    min-height: 2.25rem;
    background: url("../images/icon_view_memberlist.svg") left top / auto 100% no-repeat;
  }

  section.data ul li.view_postlist a {
    display: block;
    height: fit-content;
    min-height: 2.25rem;
    background: url("../images/icon_view_postlist.svg") left top / auto 100% no-repeat;
  }

  section.data ul li.input_data a {
    display: block;
    height: fit-content;
    min-height: 2.25rem;
    background: url("../images/icon_input_data.svg") left top / auto 100% no-repeat;
  }

  section.data ul li.input_casestudy a {
    display: block;
    height: fit-content;
    min-height: 2.25rem;
    background: url("../images/icon_input_casestudy.svg") left top / auto 100% no-repeat;
  }

  section.data ul li.input_post a {
    display: block;
    height: fit-content;
    min-height: 2.25rem;
    background: url("../images/icon_input_post.svg") left top / auto 100% no-repeat;
  }

  section.data ul li.view_idea a:active {
    background: url("../images/icon_view_idea_on.svg") left top / auto 100% no-repeat;
  }

  section.data ul li.view_date a:active {
    background: url("../images/icon_view_date_on.svg") left top / auto 100% no-repeat;
  }

  section.data ul li.view_casestudy a:active {
    background: url("../images/icon_view_casestudy_on.svg") left top / auto 100% no-repeat;
  }

  section.data ul li.view_memberlist a:active {
    background: url("../images/icon_view_memberlist_on.svg") left top / auto 100% no-repeat;
  }

  section.data ul li.view_postlist a:active {
    background: url("../images/icon_view_postlist_on.svg") left top / auto 100% no-repeat;
  }

  section.data ul li.input_idea a:active {
    background: url("../images/icon_input_data_on.svg") left top / auto 100% no-repeat;
  }

  section.data ul li.input_data a:active {
    background: url("../images/icon_input_data_on.svg") left top / auto 100% no-repeat;
  }

  section.data ul li.input_casestudy a:active {
    background: url("../images/icon_input_casestudy_on.svg") left top / auto 100% no-repeat;
  }

  section.data ul li.input_post a:active {
    background: url("../images/icon_input_post_on.svg") left top / auto 100% no-repeat;
  }

  section.data ul li p {
    width: fit-content;
    margin: 3px auto;
    padding-top: 0;
    font-size: 1.25rem;
  }

    section.data ul li p.short_menutext {
    width: fit-content;
    margin: 3px auto;
    padding-top: 0;
    font-size: 1.25rem;
  }

}

#index .ranking_period h3,
.ranking_period h4 {
  font-size: 1.5rem;
  color: #006563;
  margin-bottom: 8px;
}

@media (max-width: 960px) {
  .ranking_period {
    margin: 21px 0 56px;
    width: 100%;
  }

  #index .ranking_period h3,
  .ranking_period h4 {
    font-size: 1.25rem;
  }

  .period {
    font-size: 0.875rem;
    padding-top: 8px;
  }
}

section.case_study h2 {
  display: flex;
  align-items: center;
  justify-content: center;
}

section.case_study ul li {
  width: 248px;
  height: fit-content;
  min-height: 25rem;
  background-color: white;
  margin: 0 24px 32px;
  box-shadow: 0px 3px 10px #00000080;
  border-radius: 15px;
  display: inline-block;
}

section.case_study ul li a {
  display: block;
  width: 100%;
  padding: 32px 12px 38px;
  border-radius: 15px;
  position: relative;
}

section.case_study ul li .rank {
  margin: -30px 0 0 -30px;
  position: absolute;
  z-index: 1;
}


/*////////// スクロール表示 //////////*/

section.case_study ul li .campany_name {
  height: fit-content;
  min-height: 5rem !important;
  height: 5rem;
  text-align: left;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  overflow: hidden;
  overflow-y: auto;
  text-overflow: clip !important;
  -webkit-line-clamp: 100;
  /* 行数指定 */
  line-break: anywhere;
}

section.case_study ul li .campany_name::-webkit-scrollbar {
  width: 8px;
  background-color: white;
  border: 1px solid #707070;
}

section.case_study ul li .campany_name::-webkit-scrollbar-thumb {
  background-color: #189A94;
}

section.case_study .more {
  padding-right: 78px;
}

.more {
  text-align: right;
  color: #006563;
  width: calc(100% - 29px);
}

.more img {
  width: 23px;
  margin-left: 6px;
  position: absolute;
  transform: rotate(-90deg);
}

.noimage {
  width: 224px;
  height: 148px;
  padding: 57px 69px 52px;
  background: #D0EFEE;
  border: 1px solid #189A94;
  color: #006563;
}

section.case_study ul li a img {
  width: 212px;
  height: 133px;
  object-fit: cover;
  inset: 0;
  object-position: 50% 50%;
}

section.case_study ul li .case_title {
  width: 212px;
  height: fit-content;
  min-height: 4.0625rem !important;
  max-height: 24px;
  padding: 0 !important;
  margin: 0 auto;
  text-align: left;
  font-size: 1.125rem;
  line-height: 2rem;
  font-weight: bold;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-break: anywhere;
}

@media (max-width: 960px) {
  section.case_study ul li .case_title {
    width: 100%;
  }
}

section.case_study ul li .case_date {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  height: 40px;
  font-size: 0.875rem;
}

section.ranking .period {
  margin: 21px auto 0;
}

#index section.ranking h3,
section.ranking h4 {
  font-size: 1.375rem;
  color: #006563;
  display: -webkit-box;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

#index section.ranking h4.view,
section.ranking h4.view {
  margin-top: 1px;
}

#index section.ranking h3.view img,
section.ranking h4.view img {
  margin: -1px 32px 1px -32px;
}

#index section.ranking h3.dl,
section.ranking h4.dl {
  margin-top: -16px;
}

#index section.ranking h3.dl img,
section.ranking h4.dl img {
  margin: 16px 32px 1px -32px;
}

.border_tb {
  width: 550px;
  padding: 10px;
  margin: 56px auto 48px;
  border-top: 2px solid #189A94;
  border-bottom: 2px solid #189A94;
}

section.ranking .border_tb p {
  margin: -31px -79px 7px 0;
}

section.ranking .border_tb span {
  display: block;
  margin-top: 16px;
  color: #03736F;
  font-size: 0.875rem;
}

section.ranking ul {
  margin-bottom: 78px;
}

section.ranking ul li {
  padding: 24px 0;
  border-bottom: 1px solid #A4A5B5;
  text-align: left;
}

section.ranking ul li .rank {
  position: absolute;
  margin-top: -3px;
}

section.ranking .view_rank ul li .rank {
  position: absolute;
}

section.ranking ul li div:nth-of-type(n+4) {
  background-color: #C4F6F4;
}

section.ranking ul li p {
  width: 978px;
  padding: 0 0 0 80px;
  font-size: 1.125rem;
  overflow-wrap: anywhere;
}

section.ranking ul li p a {
  min-height: 43px;
}

section.ranking ul li p.rank_text {
  text-decoration: underline;
  color: #006563;
  font-weight: bold;
  -webkit-text-decoration: underline #006563;
  line-break: anywhere;
}

section.ranking ul li p.catalog_title,
section.ranking ul li p.campany_name {
  color: #343434;
  font-size: 1rem;
}

@media (max-width: 960px) {
  section.case_study ul li {
    width: 100%;
    margin: 25px auto;
    padding: 22px 22px 16px;
  }

  section.case_study ul li a img {
    width: 100%;
    margin: 0 auto;
  }

  .case_title {
    width: 100%;
    min-height: fit-content;
    margin: 8px auto 14px;
    padding: 0;
  }

  .border_tb {
    width: 100%;
    margin: 40px auto 24px;
  }

  section.ranking .border_tb p {
    margin: 0;
  }

  section.ranking ul li {
    padding: 24px 8px 24px 0;
  }

  section.ranking ul li p {
    width: 100%;
    font-size: 1rem;
  }

  section.case_study ul li .rank {
    margin: -51px 0 0 -30px;
  }

  section.ranking ul li p.catalog_title {
    font-size: 0.875rem;
  }

  .noimage {
    width: 100%;
    height: 214px;
    padding: 91px 0;
  }

  section.case_study .more {
    padding: 0;
  }

  section.ranking .period {
    width: fit-content;
    margin-top: 0;
    padding: 11.5px 8px 4px;
    border-bottom: 1px solid #006563;
    font-size: 1rem;
  }

  section.ranking h2 {
    height: fit-content;
    font-size: 1.5rem;
    margin: 16px 0 0 -16px;
  }

  section.ranking .border_tb img {
    position: absolute;
  }

  section.ranking .border_tb .view img {
    width: 40px;
    margin: -45px 0 0 16px;
    left: 0;
  }

  section.ranking .border_tb .dl img {
    width: 40px;
    margin: -65px 0 0 16px;
    left: 0;
  }

  #index section.ranking h3.dl,
  section.ranking h4.dl {
    margin-top: 0;
  }

  h2 img {
    width: 28.5px;
    margin-right: 12px;
  }

  #index section.ranking h3,
  section.ranking h4 {
    font-size: 1.25rem;
  }

  section.ranking ul {
    margin-bottom: 69px;
  }

  section.ranking .border_tb span {
    font-size: 0.75rem;
  }
}

.faq_cell {
  margin: 32px auto;
  padding: 28px 28px 0 28px;
  background: white;
  box-shadow: 0px 3px 10px #00000066;
  border-radius: 22px;
  position: relative;
}

.faq .faq_label,
#faq .faq_label {
  width: calc(100% + 56px);
  margin: -28px 0 0 -28px;
  padding: 28px 0 28px 28px;
  text-align: left;
  font-size: 1.25rem;
  background: none;
  border: none;
  border-radius: 22px;
  display: block;
  position: relative;
  cursor: pointer;
  transition: 0.3s;
}

.faq .faq_label:hover,
#faq .faq_label:hover {
  opacity: .5;
  -webkit-opacity: .5;
  -moz-opacity: .5;
  filter: alpha(opacity=50);
  /* IE lt 8 */
  -ms-filter: "alpha(opacity=50);"
}

.faq_ad.__close,
#user_account .faq_ad.__close ul {
  height: 0;
  padding: 0;
  transition: height 0.5s ease;
  overflow: hidden;
}

#user_account .faq_ad.__close ul {
  transition: max-height 0.5s, padding 0.5s;
}

#user_account .faq_ad ul {
  position: absolute;
  max-height: 100vh;
  transition: max-height 0.5s, padding 0.5s;
}

.faq_ad {
  height: auto;
  height: calc-size(auto, size);
  transition: height 0.5s ease;
  overflow: hidden;
}

.faq .faq_label:after,
#faq .faq_label:after {
  box-sizing: border-box;
  content: ' ';
  background-image: url("../images/arrow_circle.svg");
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  padding: 18px;
  position: absolute;
  width: 1em;
  height: 1em;
  right: 28px;
  top: 0;
  bottom: 0;
  margin: auto;
}

ul .faq_label {
  width: 320px;
  background: #0e2665;
  margin-bottom: 30px;
  padding: 20px;
}

.faq_label.__open:after {
  content: ' ';
  background-image: url("../images/arrow_circle.svg");
  transform: rotate(-180deg);
  background-size: contain;
  background-repeat: no-repeat;
}

.faq_ad ul {
  margin-bottom: 0;
}

.faq_label span {
  display: inline-block;
}

.faq_label span.qtext {
  width: 775px;
  position: relative;
  color: #141414;
}

.faq_label span.qtext::before {
  content: "";
  display: block;
  position: absolute;
  width: 1em;
  height: 1em;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.question {
  vertical-align: middle;
}

section.faq .answer .answer_textBox,
#faq .answer_textBox {
  width: 100%;
  display: flex;
}

.answer .answer_textBox div:not([class]) {
  width: 100%;
  max-width: 836px;
}

.answer p {
  font-size: 1.25rem;
  margin: 0 auto 1.5rem;
  text-align: left;
  line-height: 1.5;
  word-break: break-all;
  line-break: anywhere;
}

.faq_label p {
  margin: 0 auto;
  text-align: left;
  line-height: 1.5;
  word-break: break-all;
}

a.btn_inquiryform {
  display: block;
  width: 490px;
  height: 60px;
  margin: 0 auto;
}

.answer div.inquiry {
  width: 490px;
  height: 60px;
  margin: 24px auto 0;
  padding: 12px 0;
  background-color: #F5F5F5;
  border-radius: 10px;
  border: 1px solid #006563;
  color: #006563;
  font-size: 1.125rem;
  line-height: 1.125rem;
  display: block;
  position: relative;
}


/*お問い合わせフォームボタン*/

.answer div.inquiry p {
  width: 100%;
  text-align: center;
  line-height: 1rem;
  margin: 0;
}

.answer div.inquiry span {
  font-size: 0.875rem;
  color: #141414;
}

.answer div.inquiry .round_arrow,
#inquiry .inquiry .round_arrow {
  width: 28px;
  height: 28px;
  padding: 2px 7px;
  right: 16px;
  border-radius: 16px;
  border: 1px solid #017D79;
  background-color: white;
  position: absolute;
}

.answer div.inquiry .round_arrow {
  display: none;
}

.inquiry img {
  filter: invert(27%) sepia(72%) saturate(1876%) hue-rotate(155deg) brightness(95%) contrast(99%);
}

.fa-envelope {
  font-size: 2.125rem;
  margin-right: 67px;
  margin-left: 47px;
}

.round {
  margin-right: 35px;
  vertical-align: top;
}

.round img {
  max-width: 32px;
}

section.faq ul li .answer,
#faq ul li .answer {
  padding: 30px 0 49px;
  border-top: 1px solid #707070;
  color: #141414;
  text-align: left;
}

section.faq ul li .answer a,
ul li .answer a {
  color: #006563;
}

section.faq ul li .answer a:first-child:hover,
section.faq ul li .answer a p:not(.inquiry p),
ul li .answer a:first-child:hover,
#faq .answer p a {
  text-decoration: underline;
  opacity: 1;
  text-decoration-color: #006563;
  text-decoration-thickness: 1px;
  -webkit-text-decoration: underline #006563;
}

section.faq .answer .round {
  background-color: white;
}

.faq_img {
  width: 100%;
  margin-top: 12px;
}

.faq_img a {
  width: 213px;
  height: 213px;
  margin-right: 28px;
  background-color: #2D2D2D;
  position: relative;
}

@media(min-width:961px) {

  .faq_img a:last-child,
  .faq_img img:last-child {
    margin-right: 0;
  }
}

.faq_img a .zoom {
  width: 44px;
  height: 44px;
  background-image: url(../images/icon_zoom.svg);
  position: absolute;
  top: 12px;
  right: 16px;
}

.faq_img img {
  width: 213px;
  height: 213px;
  opacity: 0.3;
  margin-right: 28px;
  object-fit: cover;
}


/*サムネイル*/

.answer div.img_thumbnail {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
}

@media (max-width: 960px) {

  .faq .faq_label,
  #faq .faq_label {
    width: 100%;
    margin: 0 auto;
    padding: 0;
    text-align: left;
    font-size: 1.25rem;
    display: flex;
    position: relative;
    background: none;
  }

  .faq_label span.qtext {
    width: calc(100% - 110px);
    margin: 0;
    font-size: 1.125rem;
  }

  .faq .faq_label:after,
  #faq .faq_label:after {
    top: 0;
    right: 0;
  }

  .faq_cell {
    width: 100%;
    padding: 23px 16px;
    position: relative;
  }
}

@media (max-width: 960px) {

  section.faq ul li .answer p,
  #faq ul li .answer p {
    font-size: 1.125rem;
  }

  section.faq .answer .answer_textBox,
  #faq .answer_textBox {
    width: 100%;
    display: flex;
  }

  section.faq .round,
  section.faq .answer .round,
  #faq .answer .round,
  #faq .round {
    text-align: left;
    width: 32px;
    height: fit-content;
    display: block;
    margin-right: 16px;
  }

  .answer .answer_textBox div:not([class]) {
    display: block !important;
    width: 100%;
    max-width: 839px;
    margin: 0 0 1.5rem;
    font-size: 1.25rem;
  }

  a.btn_inquiryform {
    display: block;
    width: 100%;
    height: fit-content;
    margin: 0 auto;
  }

  /*サムネイル*/
  .answer div.img_thumbnail {
    display: block;
    margin-left: -3rem;
  }

  .answer div.faq_img {
    text-align: center;
    display: block;
  }

  /*お問い合わせフォームボタン*/
  .answer div.inquiry {
    width: 100%;
    height: fit-content;
    margin: 24px auto;
  }

  .answer div.inquiry p {
    line-height: 1.4375rem;
    font-size: 1.125rem;
  }

  .answer div.inquiry .round_arrow {
    display: none;
  }
}


/*////////////////////////////////////////////////
to top
////////////////////////////////////////////////*/

#page-top {
  width: 120px;
  right: 0;
  bottom: 5vh;
  position: fixed;
  z-index: 999;
}

@media (max-width: 960px) {
  #page-top {
    width: 78px;
    right: 0;
    bottom: 3vh;
  }
}


/*////////////////////////////////////////////////
footer
////////////////////////////////////////////////*/

footer {
  width: 100%;
  margin: 0 auto;
  padding: 30px 16px 16px;
  background: linear-gradient(rgba(16, 152, 148, 0.5), rgba(5, 125, 121, 0.5)), url(../images/bg_kv_trim.png);
  background-size: cover;
  background-position: bottom center;
  color: white;
  text-align: left;
  font-size: 0.875rem;
  background-color: #006563;
}

#myanalyze footer {
  position: relative;
  bottom: -60px;
}

footer ul li {
  display: inline-block;
  margin-right: 24px;
}

footer ul li a:hover {
  color: white;
  text-decoration: underline;
  opacity: 1;
  -webkit-text-decoration: underline #fff;
}

.ft_tri {
  background: #ffffff;
  height: calc(tan(60deg) * 18px / 2);
  width: 9px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  margin-right: 12px;
  display: inline-block;
}

@media (max-width: 960px) {
  .ft_tri {
    background: #ffffff;
    height: calc(tan(60deg) * 14px / 2);
    width: 7px;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    margin-right: 8px;
    display: inline-block;
  }
}

#copy {
  font-size: 0.875rem;
  margin-bottom: 16px;
  text-align: right;
}

@media (max-width: 960px) {
  #copy {
    font-size: 0.75rem;
    margin-top: 64px;
    text-align: center;
  }
}


/*////////////////////////////////////////////////
sub page
////////////////////////////////////////////////*/

#heading {
  padding: 0 0 32px;
  padding-bottom: 0;
  text-align: left;
  background-color: white;
}

#heading .inner {
  padding: 0 12px;
}

#heading h1 {
  font-size: 2.125rem;
  font-weight: bold;
  color: #006563;
  text-align: center;
}

#breadcrumb {
  padding: 16px 0 32px;
}

#breadcrumb .arrow {
  color: #343434;
  margin: 0 12px 0 18px;
}

#breadcrumb a {
  color: #117C77;
  text-decoration: underline;
  -webkit-text-decoration: underline #117C77;
}

#breadcrumb .here {
  color: #343434;
}

.in-page_link {
  padding: 36px 0 4px;
  text-align: center;
}

.in-page_link li {
  width: fit-content;
  margin: 0 14px;
  border-radius: 10px;
  border: 1px solid #339996;
  background-color: white;
  font-size: 1.25rem;
  display: inline-block;
  line-break: anywhere;
}

.in-page_link li a {
  display: block;
  width: 100%;
  padding: 9px 48px;
  border-radius: 10px;
  position: relative;
  color: inherit;
}

.in-page_link li a:after {
  content: "▼";
  color: #117C77;
  top: 9px;
  left: 20px;
  position: absolute;
}

h2 {
  margin-top: 12px;
  font-size: 2.125rem;
  font-weight: bold;
  color: #006563;
}

.caption {
  margin-top: 16px;
  font-size: 1.5rem;
}

@media (max-width: 960px) {
  #breadcrumb {
    font-size: 0.875rem;
  }

  #heading {
    padding-bottom: 0;
  }

  #heading h1 {
    font-size: 1.5rem;
  }

  .caption {
    font-size: 1.125rem;
    line-height: 1.6875rem;
  }

  .in-page_link {
    padding-top: 9px;
  }

  .in-page_link li {
    width: 100%;
    margin: 7px auto;
  }

  .faq_img a {
    margin: 0 auto 16px;
    display: block;
  }
}

.page_turn {
  text-align: center;
  font-size: 1.4375rem;
  color: #017D79;
  position: relative;
}

.page_turn ul {
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: center;
}

.page_turn li.now a:hover {
  color: #fff;
}

.page_turn li {
  display: inline-block;
  margin: 0 6px;
}

.page_turn li.now {
  width: 40px;
  height: 40px;
  color: white;
  background-color: #017D79;
  border-radius: 23px;
  padding-top: 1px;
}

.page_turn .next_page_arrow {
  height: 24px;
  width: 22px;
  background: url(../images/arrow_pagenation.svg);
}

.page_turn .previous_page_arrow {
  height: 24px;
  width: 22px;
  background: url(../images/arrow_pagenation.svg);
  transform: scale(-1, 1);
}

#return {
  text-align: left;
  font-size: 1.125rem;
  color: #006563;
}

#return img {
  width: 26px;
  margin: 0px 6px -6px 0;
  transform: rotate(90deg);
}

@media (max-width:960px) {
  #index .answer div.inquiry {
    margin-bottom: 0;
  }
}


/*////////////////////////////////////////////////
smartphone nav
////////////////////////////////////////////////*/

.slidemenu_hidden {
  display: none;
}

@media (max-width: 960px) {
  .slidemenu_open {
    display: flex;
    width: fit-content;
    min-width: 3.0625rem;
    height: fit-content;
    min-height: 3.0625rem;
    margin: 13px;
    background-color: #006563;
    border-radius: 5px;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 999;
    cursor: pointer;
  }

  #slidemenu_input:checked~.slidemenu_open::before {
    position: absolute;
    right: 99%;
    bottom: 8%;
    width: 42px;
    height: 42px;
    content: "";
    background: url(../images/bg_curve_spmenu.svg) no-repeat bottom right / contain;
  }

  .slidemenu_open span,
  .slidemenu_open span:before,
  .slidemenu_open span:after {
    content: '';
    display: block;
    height: 3px;
    width: 36px;
    border-radius: 3px;
    background: white;
    transition: 0.5s;
    position: absolute;
  }

  .slidemenu_open span:before {
    bottom: 7px;
  }

  .slidemenu_open span:after {
    top: 7px;
  }

  #slidemenu_input:checked~.slidemenu_open {
    width: 110px;
    height: 90px;
    margin: 0;
    background-color: #D0EFEE;
    border-radius: 40px 0 0 0;
    position: fixed;
    right: 0;
    z-index: 9999;
  }

  #slidemenu_input:checked~.slidemenu_open span {
    background: rgba(255, 255, 255, 0);
  }

  #slidemenu_input:checked~.slidemenu_open span::before {
    width: 60px;
    bottom: 0;
    transform: rotate(25deg);
    background-color: #006563;
  }

  #slidemenu_input:checked~.slidemenu_open span::after {
    width: 60px;
    top: 0;
    transform: rotate(-25deg);
    background-color: #006563;
  }

  #sp_nav {
    top: 23px;
    right: 0;
    position: absolute;
  }

  #sp_nav nav {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    flex-wrap: nowrap;
    width: 100%;
    height: 100%;
    position: fixed;
    overflow-y: scroll;
    top: 0;
    left: 100%;
    margin-top: 101px;
    margin-bottom: 50px;
    padding-bottom: 31.25rem;
    z-index: 9999;
    background-color: #D0EFEE;
    transition: .5s;
    border-radius: 40px 0 0 0;
    -webkit-overflow-scrolling: touch;
  }

  header #sp_nav nav ul.sp_main_menu {
    margin-right: 0;
    width: fit-content;
    height: fit-content;
    min-width: 20rem;
    max-width: 100%;
  }

  #sp_nav nav ul.sp_main_menu li {
    height: auto;
    padding: 12px 12px 8px;
    margin: 0;
    border-bottom: #117C77 1px solid;
    border-left: none;
    border-right: 0;
    text-align: right;
    display: block;
    color: #343434;
    font-weight: bold;
  }

  #sp_nav nav ul.sp_main_menu li a {
    height: auto;
    margin: 0;
    display: block;
  }

  #slidemenu_input:checked~nav {
    left: 0;
  }

  header #sp_nav .account_ad_sp {
    height: auto;
    opacity: 1;
    visibility: visible;
    position: static;
    display: block;
  }

  header nav .account_ad_sp ul {
    display: flex;
    flex-direction: column;
    width: fit-content;
    height: fit-content;
    min-width: 19.1875rem;
    min-height: 16.5rem;
    padding: 0;
    border-radius: 5px;
    right: 0;
    top: 411px;
  }

  header nav .account_ad_sp ul li {
    border: none;
    font-size: 1rem;
    height: auto;
    color: #343434;
  }

  header nav .account_ad_sp ul li.user_name {
    display: block;
    color: #117C77;
    text-align: center;
  }

  header nav .account_ad_sp ul li.edit_account {
    color: #006563;
  }

  header nav .account_ad_sp ul li a {
    display: block;
    height: auto;
  }

  header nav .account_ad_sp ul li.edit_account {
    font-size: 0.875rem;
  }

  .account_ad_sp ul li.mail {
    border: none;
  }

  .account_ad_sp ul li.logout {
    margin: 14px auto;
  }

  .account_ad_sp ul li.logout a {
    margin-top: 0;
  }

  .account_ad_sp ul p {
    width: 100%;
    margin: 0;
    border-radius: 5px 0 0 0;
  }
}


/*////////////////////////////////////////////////
共有コンテンツブロック
////////////////////////////////////////////////*/

@media (max-width: 960px) {
  .inner {
    width: 100%;
  }
}

@media (min-width: 961px) {
  .content_detail {
    text-align: right;
  }

  .content_detail a.btn {
    padding: 1rem 5rem;
  }
}

#member_list .list_content_block {
  border-top: 1px solid #717171;
}

.list_content_block:nth-of-type(1) {
  border-top: none;
}

.list_content_block img {
  width: 213px;
  height: 213px;
  inset: 0;
  object-fit: scale-down;
  object-position: 50% 50%;
  flex-shrink: 0;
}

.mypage_return_top {
  padding-bottom: 80px;
}

@media (max-width: 960px) {
  .mypage_return_top {
    padding-bottom: 60px;
    padding-left: 16px;
  }
}

.space {
  height: 20px;
}

.space-lg {
  height: 40px;
}

.space-xl {
  height: 80px;
}


/*////////////////////////////////////////////////
activarion _ landingpage
////////////////////////////////////////////////*/

#auth0login,
#landingpage {
  background: url(../images/bg_overall.jpg) no-repeat fixed;
  background-position: 50%;
  background-size: cover;
}

#auth0login main,
#landingpage main {
  display: grid;
  align-items: center;
  justify-content: end;
  padding-right: 260px;
}

@media (max-width: 1279px) {

  #auth0login main,
  #landingpage main {
    padding: 0 80px;
  }
}

@media (max-width: 960px) {

  #auth0login,
  #landingpage {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #auth0login main,
  #landingpage main {
    padding: 0;
  }
}

div.login_operationArea {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: auto;
  width: 400px;
  height: 575px !important;
  height: auto;
  background: #fff;
  border-radius: 5px;
  padding: 2.5rem;
  text-align: center;
}

@media (max-width: 960px) {
  div.login_operationArea {
    width: 100%;
    max-width: 400px;
    height: auto;
    background: #fff;
    border-radius: 10px;
    padding: 2.5rem;
  }
}

div.login_titleArea {
  color: #006563;
  font-size: 1.5rem;
  font-weight: bold;
}

div.login_titleArea_cautionred {
  color: #BA273B;
  font-size: 1.5rem;
  font-weight: bold;
}

div.login_info {
  margin: 16px 0;
}

div.login_info span {
  display: block;
  font-size: 0.8rem;
  text-align: left;
  margin-bottom: 16px;
}

div.login_info ul {
  width: 220px;
  margin: 16px auto;
  text-align: left;
  font-weight: bold;
}

#auth0login button,
#landingpage button {
  width: 215px;
  border: 2px solid;
  border-radius: 10px;
  border-color: #006563;
  background-color: #006563;
  padding: 10px 4px;
  color: white;
  text-align: center;
  cursor: pointer;
}

#auth0login button:hover,
#landingpage button:hover {
  opacity: 0.7;
  transition: 0.5s;
}

div.login_operationArea .inquiry {
  margin: 16px;
  color: #006563;
  font-size: 1.125rem;
  font-weight: bold;
  text-decoration: underline;
}

#landingpage header {
  display: block;
  background: #ffffff;
  width: 100%;
  height: 48px;
}

#landingpage #guest #logo_tokyo,
#landingpage #guest #logo_tokyo_sp {
  height: 24px;
  display: block;
  text-align: left;
}

#landingpage #guest #logo_tokyo a,
#landingpage #guest #logo_tokyo_sp a {
  position: relative;
  margin-right: 10px;
  padding-top: 5px;
}

#landingpage #logo_tokyo a:nth-child(2),
#landingpage #logo_tokyo_sp a:nth-child(2) {
  position: absolute;
  top: 2px;
}

@media (max-width: 960px) {
  header#guest {
    top: 0;
  }
}


/*////////////////////////////////////////////////
Warning page
////////////////////////////////////////////////*/


/* header */

#page-400 #guest #logo_tokyo a,
#page-403 #guest #logo_tokyo a,
#page-404 #guest #logo_tokyo a,
#page-500 #guest #logo_tokyo a {
  position: relative;
  margin-right: 10px;
  padding-top: 5px;
}

#page-400 #logo_tokyo a:nth-child(2),
#page-403 #logo_tokyo a:nth-child(2),
#page-404 #logo_tokyo a:nth-child(2),
#page-500 #logo_tokyo a:nth-child(2) {
  position: absolute;
  top: 2px;
}

header#guest {
  display: block;
  position: fixed;
  z-index: 999;
  background: #ffffff;
  width: 100%;
  height: 54px;
}

header#guest nav {
  height: 12px;
  margin: 18px auto;
  background-color: #224D77;
  display: block;
}

#guest #logo_tokyo {
  height: 24px;
  display: block;
  position: relative;
  text-align: left;
}

#guest #logo_tokyo a {
  margin-right: 10px;
}

header#guest+#app {
  padding-top: 76px;
}

#warningPage {
  margin-top: 80px;
}

#warningPage h1 {
  text-align: center;
  font-size: 5rem;
  margin-bottom: 24px;
  color: #017D79;
}

#warningPage .warning_info {
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
  padding-bottom: 24px;
  margin-bottom: 80px;
  border-bottom: 1px solid #707070;
}


/*////////////////////////////////////////////////
Warning page
////////////////////////////////////////////////*/

.result_list_zero {
  display: block;
  width: 100%;
  max-width: 1000px;
  text-align: left;
  font-size: 1.125rem;
  font-weight: bold;
  margin: 24px auto 88px;
}

@media (max-width: 960px) {
  .result_list_zero {
    width: 100%;
    padding: 0 16px;
    margin: 24px 0 48px 0;
  }
}


/*////////////////////////////////////////////////
スクリーンリーダー用
////////////////////////////////////////////////*/

.visuallyhidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(0px 0px 99.9% 99.9%);
  clip-path: inset(0px 0px 99.9% 99.9%);
  border: 0;
}
