@import "https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,500&display=swap";
@import "https://use.fontawesome.com/releases/v5.10.2/css/all.css";

:root {
  --c-red: #e0481d;
  /* 右サイド新規登録ボタン  #0060b4 */
  --c-main: #0A375F;
  /* メインカラーブルー */
  --c-btn-contact: #00489d;
  /* お問い合わせボタン */
  --c-input: #;
  /* 全体の背景の色を設定する場合に設置する */
}

html,
body {
  font-size: 16px;
}

html,
body,
div,
span,
applet,
object,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-weight: 400;
  line-height: inherit;
  vertical-align: baseline;
  border: 0;
}

p {
  font-size: 16px;
  color: #353535;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
  display: block;
}

html {
  overflow-y: scroll;
  scroll-behavior: smooth;
}

img {
  box-sizing: border-box;
  vertical-align: middle;
}

blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
  content: none;
}

input,
textarea {
  padding: 0;
  margin: 0;
}

ol,
ul {
  list-style: none;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

caption,
th {
  text-align: left;
}

a {
  text-decoration: none;
}

button {
  cursor: pointer;
  background-color: inherit;
  border: none;
  border-radius: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body * {
  text-size-adjust: 100%;
}

a img {
  transition-duration: 0.2s;
  transition-property: opacity;
  backface-visibility: hidden;
}

a:hover img {
  opacity: 0.8;
}

html {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3",
    "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}

body {
  font-size: 16px;
  font-size: 1.7rem;
  line-height: 1.8;
  color: #000;
  background: var(--c-input);
}

.pc {
  display: block;
}

.sp,
.tb {
  display: none;
}

a {
  color: #000;
}

img {
  max-width: 100%;
  height: auto;
}

.inner {
  max-width: 1200px;
  margin: auto;
}

.btn a {
  position: relative;
  display: block;
  max-width: 330px;
  padding: 12px;
  margin: auto;
  color: #fff;
  text-align: center;
  background-color: var(--c-red);
  border-radius: calc(1px / 0);
  transition: background-color 0.3s ease-out;
}

.btn a:hover {
  color: #fff;
  background-color: #000;
}

@media screen and (width <=1000px) {
  .pc {
    display: none;
  }

  .tb {
    display: block;
  }

  .sp {
    display: none;
  }
}

@media screen and (width <=767px) {

  html,
  body {
    font-size: 14px;
  }

  p {
    font-size: 14px;
  }

  .btn a {
    font-size: 14px;
  }

  .pc {
    display: none;
  }

  .tb {
    display: none;
  }

  .sp {
    display: block;
  }
}

/* MAIN VS----------------------- */
.mainvisual {/* kobe より移植 overflow: hidden; */
    position: relative;
    display: grid;
    grid-template-rows: auto 1fr;
    grid-template-columns: repeat(12, 1fr);
    justify-content: space-between;
    min-height: 660px;
    padding: 20px 50px 40px;
    /* overflow: auto; */
    /* bg_main WebP画像を優先指定 */
    background: 
      url(../images/line.png) repeat-x left top / 750px,
      url(../images/line.png) repeat-x left bottom / 750px,
      image-set(
        url(../images/bg_main.webp) type("image/webp"),
        url(../images/bg_main.jpg) type("image/jpeg")
      ) no-repeat left center / cover;
    /* background: url(../images/line.png) repeat-x left top / 750px, url(../images/line.png) repeat-x left bottom / 750px, url(../images/bg_main.jpg) no-repeat left center / cover; *//* WebP前のコード */
}

/* 
.mainvisual {
  min-height: 500px;
  margin-top: -1px;
  overflow: hidden;
  background-image: url("../images/bg_mv_left.png"),
    url("../images/bg_mv_right.png");
  background-repeat: no-repeat, no-repeat;
  background-position: left bottom, right bottom;
  background-blend-mode: soft-light, normal;
  border-top: 10px solid var(--c-main);
  border-right: 20px solid var(--c-main);
  border-bottom: 20px solid var(--c-main);
  border-left: 20px solid var(--c-main);
}
 */

.mainvisual-box {
  display: flex;
  flex-direction: column;
  grid-row-start: 2;
  grid-column: span 8;
  justify-content: center;
  padding: 10px;
}

/* HEADER----------------------- */
.mainvisual-header {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  align-items: center;
  align-items: stretch;
  justify-content: space-between;
  padding: 15px 20px 0;
  background: var(--c-main);
}

.mainvisual-logo {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  max-width: 250px;
  background: #fff;
  border-radius: 5px;
}

.mainvisual-logo a {
  display: block;
  padding: 5px 20px;
}

.mainvisual-nav {
  margin-left: auto;
}

.mainvisual-nav ul {
  display: flex;
  align-self: flex-start;
}

.mainvisual-nav a {
  display: grid;
  place-content: center;
  place-items: center;
  height: 100%;
  padding: 14px 20px;
  line-height: 1em;
  text-align: center;
  transition: all ease 0.3s;
}

.mainvisual-nav a:hover {
  opacity: 0.8;
}

.mainvisual-nav a span {
  display: block;
  margin-bottom: 3px;
  font-size: 10px;
  color: #fff;
  letter-spacing: 0.2em;
}

.mainvisual-list a {
  min-width: 140px;
  font-size: 15px;
}

.mainvisual-list a img {
  max-width: 80px;
}

@media screen and (width <=600px) {
  .mainvisual-list a {
    min-width: initial;
  }
}

.mainvisual-signup a {
  color: #fff;
  background: var(--c-red);
  border-radius: 5px;
}

.mainvisual-signup a:hover {
  background: #000;
  opacity: 1;
}

.mainvisual-link a {
  padding: 12px 10px;
  margin-left: 5px;
  background: #fff;
  border-radius: 5px;
}

.mainvisual-link a:hover {
  opacity: 1;
}

.mainvisual-link a:hover img {
  opacity: 0.7;
}

.mainvisual-title {
  margin: 10px 0;
  text-align: center;
}

.mainvisual-title img {
  padding: 15px;
  background: #fff;
  border-radius: 5px;
}

.mainvisual-chiikimirai {
  width: fit-content;
  padding: 10px;
  margin: auto;
  margin-bottom: 10px;
  text-align: center;
  background: #fff;
  border-radius: 5px;
}

.mainvisual-jgoodtech {
  max-width: 165px;
  padding: 10px;
  margin: auto;
  text-align: center;
  background: #fff;
  border-radius: 5px;
}

.mainvisual-meti p {
  padding: 8px 10px;
  margin-right: 5px;
  background: #fff;
  border-radius: 5px;
}

.mainvisual-meti p img {
  max-width: 100%;
}

.mainvisual-meti-line1 {
  display: flex;
}

.mainvisual-meti-line2 {
  display: flex;
  margin-left: 55px;
}

.mainvisual-annoounce {
  padding: 30px 20px 50px;
  margin-top: -1px;
  color: #fff;
  text-align: center;
  background: #2db1d2;/* var(--c-main) */
}

.mainvisual-annoounce p {
  max-width: 1200px;
  margin: auto;
  font-size: clamp(0.875rem, 0.784rem + 0.45vw, 1.125rem);
  color: #fff;
}

.mainvisual-annoounce p span {
  display: inline-block;
  padding: 0 10px;
  font-size: clamp(1rem, 0.818rem + 0.91vw, 1.5rem);
  color: #fff600;
  border: 1px solid #fff600;
  border-radius: 5px;
}

@media screen and (width <=767px) {
  .mainvisual-header {
    padding: 15px 15px 0;
  }

/* 
  .mainvisual {
    grid-template-rows: 70px auto 1fr auto;
    width: 100%;
    padding: 0;
    background-size: 50%, 50%;
    border-top: 10px solid var(--c-main);
    border-right: 15px solid var(--c-main);
    border-bottom: 15px solid var(--c-main);
    border-left: 15px solid var(--c-main);
  }
 */

    .mainvisual {/* from kobe */
        grid-template-rows: 20px auto 1fr auto;
        gap: 0;
        width: 100%;
        min-height: 300px;
        padding: 0;
        padding: 15px 0 0;
        text-align: center;
        /* bg_main_sp WebP画像優先 */
        background: 
          image-set(
          url(../images/bg_main_sp.webp) type("image/webp"),
          url(../images/bg_main_sp.jpg) type("image/jpeg")
          ) no-repeat left center / cover;
        /* background: url(../images/bg_main_sp.jpg) no-repeat center / cover; *//* WebP前のコード */
    }

  .mainvisual::after {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 230px;
    background: url("../images/img_main_sp.png") no-repeat bottom center / contain;
  }

  .mainvisual-nav {
    justify-content: end;
    padding: 0 5px;
  }

  .mainvisual-list a {
    padding-right: 8px;
    padding-left: 8px;
    font-size: 12px;
    letter-spacing: 0.05em;
  }

  .mainvisual-list a span {
    font-size: 10px;
    letter-spacing: 0;
    transform: scale(80%);
  }

  .mainvisual-link a {
    padding: 0;
  }

  .mainvisual-link a img {
    width: 60%;
  }

  .mainvisual-title {
    justify-content: center;
    margin-top: 50px;
    text-align: center;
  }

  .mainvisual-chiikimirai img {
    max-width: 50%;
  }

  .mainvisual-title img {
    max-width: 275px;
  }

  .mainvisual-annoounce {
    padding: 0 15px 20px;
  }

  .mainvisual-meti p {
    padding: 8px 10px 0;
  }

  .mainvisual-meti-line2 {
    margin-left: 0;
  }
}

@media screen and (width <=767px) {
  .mainvisual-annoounce {
    padding: 15px 15px 20px;
  }
}

/* News----------------------- */
.news {
  padding: 60px 40px 100px;
}

.news-title {
  margin-bottom: 25px;
  font-size: clamp(1.125rem, 0.989rem + 0.68vw, 1.5rem);
  font-weight: bold;
  text-align: center;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.news-list li {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.news-list a:hover {
  text-decoration: underline;
}

.news-time {
  width: 100px;
}

.news-category {
  width: 7rem;
  padding: 2px 5px;
  font-size: 12px;
  color: #fff;
  text-align: center;
  background: #000;
  border-radius: calc(1px / 0);
  border-radius: 50px;
}

.news-category1 {
  width: 7rem;
  padding: 2px 5px;
  font-size: 12px;
  color: #fff;
  text-align: center;
  background: #0000ff;
  border-radius: calc(1px / 0);
  border-radius: 50px;
}

.news-category2 {
  width: 7rem;
  padding: 2px 5px;
  font-size: 12px;
  color: #fff;
  text-align: center;
  background: #ff0000;
  border-radius: calc(1px / 0);
  border-radius: 50px;
}

.news-text {
  width: calc(100% - 220px);
  font-size: 15px;
}

@media screen and (width <=767px) {
  .news {
    padding: 30px 15px;
  }

  .news-list {
    gap: 30px 0;
  }

  .news-list li {
    flex-wrap: wrap;
    gap: 5px;
  }

  .news-title {
    margin-bottom: 15px;
  }

  .news-time {
    width: 100px;
  }

  .news-text {
    width: 100%;
    line-height: 1.3;
  }

  .news-text a {
    font-size: 13px;
    line-height: 1.3;
  }
}

/* NEEDS----------------------- */
.needs {
  padding: 60px 0 80px;
  margin: 0px;
  background: #2db1d2;
  border-radius: 0px;
}

.needs-title {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3em;
  font-size: clamp(1.25rem, 1.023rem + 1.14vw, 1.875rem);
  font-weight: bold;
  line-height: 1.5em;
  color: #fff;
}

.needs-title img {
  margin-right: 5px;
}

.needs-text {
  margin-bottom: 30px;
  color: #fff;
  text-align: center;
}

.needs-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  padding: 60px 40px;
}

.needs-item {
  position: relative;
  padding: 5px 5px 50px;
  text-align: center;
  background: #fff;
  border-radius: 10px;
}

.needs-category {
  display: flex;
  gap: 5px;
}

.needs-category-tag {
  padding: 5px 7px;
  font-size: 15px;
  /*font-weight: bold;*/
  line-height: 1.7;
  color: #fff;
  background: #2b5273;
  border: 1px solid #2b5273;
  border-radius: 5px;
}

.needs-category-number {
  color: #000;
  background: #fff;
}

.needs-name {
  margin: 50px 30px 0;
  font-size: clamp(1.125rem, 0.989rem + 0.68vw, 1.5rem);
  font-weight: bold;
  line-height: 1.3;
}

.needs-description {
  margin: 20px;
  text-align: left;
  /*font-weight: bold;*/
}

.category_new {
  padding: 6px 6px 6px 6px;
  margin-left: auto;
  margin-right: 10px;
  line-height: 1em;
  color: #666;
  border: 1px solid #bfbfbf;
  border-radius: 3px;
}

.needs-area {
  display: flex;
  gap: 3px;
  justify-content: end;
  padding: 10px 30px;
}

.needs-area p {
  padding: 5px 10px;
  font-size: 13px;
  line-height: 1.3;
  color: #666;
  border: 1px solid #bfbfbf;
  border-radius: 3px;
}

.needs-area p::before {
  position: relative;
  bottom: -2px;
  display: inline-block;
  width: 10px;
  height: 13px;
  margin: 0 5px 0 0;
  content: "";
  background: url("../images/icon_pin.svg") no-repeat center / contain;
}

.needs-company {
  width: fit-content;
  padding: 0 10px;
  margin: 5px 30px 30px auto;
  font-size: 12px;
  border: 1px solid #ccc;
  border-radius: 3px;
}

.needs-company::before {
  display: inline-block;
  margin-right: 5px;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f1ad";
}

.needs-btn,
.needs-btn-company {
  padding: 0 30px;
}

.needs-btn a {
  position: relative;
  display: block;
  max-width: 430px;
  padding: 12px;
  margin: auto;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: calc(1px / 0);
  transition: background-color 0.3s ease-out;
}

.needs-btn a:hover {
  color: #fff;
  background-color: #666;
}

.needs-btn-company a {
  position: relative;
  display: block;
  max-width: 430px;
  padding: 10px;
  margin: auto;
  color: #fff;
  text-align: center;
  background-color: var(--c-main);
  border-radius: calc(1px / 0);
  transition: background-color 0.3s ease-out;
}

.needs-btn+.needs-btn {
  margin-top: 10px;
}
/*
.needs-id {
  padding: 10px;
  margin: 0 30px;
  font-size: 14px;
  color: #767676;
  background: #f2f2f2;
  border-radius: calc(1px / 0);
}*/

@media screen and (width <=1140px) {
  .needs-list {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media screen and (width <=767px) {
  .needs {
    padding: 30px 20px;
    margin: 0px;
  }

  .needs-title {
    font-size: 18px;
  }

  .needs-list {
    gap: 10px;
    padding: 30px 0;
  }

  .needs-name {
    margin: 20px 10px 10px;
  }

  .needs-description {
    margin: 20px;
    ;
    font-size: 12px;
    line-height: 1.5;
  }

  .needs-area {
    justify-content: center;
  }

  .needs-area p {
    font-size: 12px;
  }

  .needs-id {
    margin: 0 10px;
    font-size: 11px;
    line-height: 1.3;
  }

  .needs-company {
    margin: 10px auto 30px;
  }

  .needs-btn a {
    padding: 8px 15px;
  }

  .needs-btn+.needs-btn {
    margin-top: 5px;
  }

  .needs-category-tag {
    padding: 2px 7px;
    font-size: 12px;
  }
}

/* RESIGTRATION----------------------- */
.registration {
  padding: 60px 40px 100px;
  margin: 40px;
  background: #efefef;
  border-radius: 10px;
}

.registration-title {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 60px;
  font-size: clamp(1.25rem, 1.023rem + 1.14vw, 1.875rem);
  font-weight: bold;
  color: var(--c-main);
  ;
  text-align: center;
}

.registration-title::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 52px;
  height: 4px;
  padding-left: -26px;
  margin: auto;
  content: "";
  background: #2db1d2;
  border-right: 26px solid var(--c-main);
}

.registration-subtitle {
  position: relative;
  max-width: 724px;
  padding: 5px 10px;
  margin: auto;
  margin-bottom: 60px;
  font-size: clamp(1rem, 0.818rem + 0.91vw, 1.5rem);
  font-weight: bold;
  color: #fff;
  text-align: center;
  background: var(--c-main);
  border-radius: 5px;
}

.registration-subtitle::after {
  position: absolute;
  right: 0;
  bottom: -20px;
  left: 0;
  display: inline-block;
  width: 0;
  height: 0;
  margin: auto;
  content: "";
  border: 10px transparent solid;
  border-top: 10px solid var(--c-main);
}

.registration-box-unregistered .registration-subtitle {
  background: var(--c-red);
}

.registration-box-unregistered .registration-subtitle::after {
  border-top: 10px solid var(--c-red);
}

.registration-box-support .registration-subtitle {
  background: #000;
}

.registration-box-support .registration-subtitle::after {
  border-top: 10px solid #000;
}

.registration-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.registration-box-unregistered {
  margin-top: 100px;
}

.registration-box-support {
  margin-top: 100px;
}

.registration-step {
  position: relative;
  padding: 40px;
  background: #fff;
  border: 1px solid var(--c-main);
}

.registration-box-unregistered .registration-step {
  border: 1px solid var(--c-red);
}

.registration-box-support .registration-step {
  border: 1px solid #000;
}

.registration-step:last-of-type::after,
.registration-step:last-of-type::before {
  display: none;
}

.registration-step::before {
  position: absolute;
  top: 50%;
  right: -33px;
  z-index: 2;
  margin-top: -15px;
  content: "";
  border: 15px solid transparent;
  border-left: 19px solid #FFF;
}

.registration-step::after {
  position: absolute;
  top: 50%;
  right: -36px;
  z-index: 1;
  margin-top: -16px;
  content: "";
  border: 16px solid transparent;
  border-left: 20px solid var(--c-main);
}

.registration-box-unregistered .registration-step::after {
  border-left: 20px solid var(--c-red);
}

.registration-box-support .registration-step::after {
  border-left: 20px solid #000;
}

.registration-step figure {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  text-align: center;
}

.registration-step-title {
  font-size: clamp(1rem, 0.909rem + 0.45vw, 1.25rem);
  font-weight: bold;
  text-align: center;
}

.registration-step-bubble {
  position: absolute;
  top: -40px;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

.registration-step-btn a {
  position: relative;
  display: block;
  max-width: 430px;
  padding: 10px;
  margin: 20px auto 0;
  color: #fff;
  text-align: center;
  background-color: var(--c-red);
  border-radius: calc(1px / 0);
  transition: background-color 0.3s ease-out;
}

.registration-step-btn a:hover {
  background-color: #000;
}

.registration-box-support .registration-step-btn a {
  background-color: #000;
}

.registration-box-support .registration-step-btn a:hover {
  background-color: #666;
}

@media screen and (width <=1000px) {
  .registration-steps {
    gap: 20px;
  }

  .registration-step {
    padding: 40px 20px 30px;
  }

  .registration-step-btn a {
    font-size: 13px;
  }
}

@media screen and (width <=767px) {
  .registration {
    padding: 30px 20px;
    margin: 20px 15px;
    background: #efefef;
    border-radius: 10px;
  }

  .registration-title {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.5;
  }

  .registration-subtitle {
    margin-bottom: 30px;
    font-size: 14px;
  }

  .registration-steps {
    grid-template-columns: repeat(1, 1fr);
  }

  .registration-step::before {
    top: auto;
    right: auto;
    bottom: -34px;
    margin-top: -17px;
    border: 16px solid transparent;
    border-top: 19px solid #FFF;
  }

  .registration-step::after {
    top: auto;
    right: auto;
    bottom: -36px;
    margin-top: -16px;
    border: 16px solid transparent;
    border-top: 20px solid var(--c-main);
  }

  .registration-box-unregistered .registration-step::after {
    border: 16px solid transparent;
    border-top: 20px solid var(--c-red);
  }

  .registration-box-support .registration-step::after {
    border: 16px solid transparent;
    border-top: 20px solid #000;
  }

  .registration-step-bubble {
    top: -20px;
    right: 20px;
    left: auto;
    margin-left: auto;
  }

  .registration-step-bubble img[width="40"] {
    width: 20px;
  }

  .registration-step-bubble img[width="48"] {
    width: 24px;
  }

  .registration-step-bubble img[width="50"] {
    width: 25px;
  }

  .registration-box-unregistered,
  .registration-box-support {
    margin-top: 40px;
  }

  .registration-step-title {
    font-size: 18px;
  }

}

/* DOWNLOAD----------------------- */
.download {
  padding: 60px 40px;
  text-align: center;
  background-color: var(--c-main);
}

.download p {
  color: #fff;
}

.download-text {
  font-size: clamp(1rem, 0.909rem + 0.45vw, 1.25rem);
}

.download-btn {
  margin: 20px 0 30px;
}

.download-btn a {
  position: relative;
  display: block;
  width: fit-content;
  padding: 12px 30px;
  margin: auto;
  font-size: 16px;
  color: #fff;
  text-align: center;
  background-color: var(--c-red);
  border-radius: calc(1px / 0);
  transition: background-color 0.3s ease-out;
}

.download-btn a:hover {
  color: #fff;
  background-color: #000;
}

.download-btn a::after {
  display: inline-block;
  width: 19px;
  height: 19px;
  margin: 0 0 -3px 10px;
  content: "";
  background: url("../images/icon_downloads@2x.png") no-repeat center / contain;
}

.download-btn a:hover {
  background-color: #000;
}

.download-about {
  max-width: 900px;
  padding-top: 30px;
  margin: auto;
  border-top: 1px dotted #fff;
}

.download-about-title {
  font-size: clamp(1rem, 0.909rem + 0.45vw, 1.25rem);
}

.download-about-text {
  margin-bottom: 20px;
  font-size: 14px;
}

.download-btn-detil a {
  position: relative;
  display: block;
  max-width: 330px;
  padding: 12px;
  margin: auto;
  font-size: 16px;
  color: #fff;
  text-align: center;
  background-color: #fff;
  border-radius: calc(1px / 0);
  transition: background-color 0.3s ease-out,
    color 0.3s ease-out;
}

.download-btn-detil a {
  color: var(--c-main);
  background-color: #fff;
}

.download-btn-detil a:hover {
  color: #fff;
  background-color: #000;
}

@media screen and (width <=767px) {
  .download {
    padding: 40px 15px;
  }

  .download-btn a {
    font-size: 12px;
  }

  .download-btn-detil a {
    padding: 8px 15px;
    font-size: 14px;
  }

  .download-about-title {
    font-size: 18px;
    font-weight: bold;
  }
}

/* SIDE SIGNUP----------------------- */
.side_signup {
  position: fixed;
  right: 0;
  bottom: 180px;
  z-index: 10;
  display: none;
}

.side_signup a {
  display: block;
  width: 58px;
  padding: 20px 15px;
  font-size: 16px;
  color: #fff;
  background: var(--c-red);
  border-radius: 5px 0 0 5px;
  writing-mode: vertical-rl;
  transition: all ease 0.3s;
}

.side_signup a:hover {
  /* 新規登録はこちらボタンhoverカラー */
  background: #000;
}

.side_signup a img {
  width: 22px;
  margin: 5px 0 0 -5px;
}

@media screen and (width <=767px) {
  .side_signup {
    bottom: 140px;
  }

  .side_signup a {
    width: 43px;
    padding: 20px 10px;
    font-size: 12px;
  }
}

/* CONTACT----------------------- */
.contact {
  padding: 80px 40px;
}

.contact-title {
  display: block;
  width: fit-content;
  padding: 5px 20px;
  margin: 0 auto 30px;
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
  text-align: center;
  border: 1px solid #000;
}

.contact-list {
  display: grid;
  grid-template-columns: 260px auto;
  gap: 40px;
  align-items: center;
  padding: 20px;
  margin-top: 3px;
  line-height: 1.6;
  background: #efefef;
}

.contact-list dt {
  padding: 10px 20px;
  background: #fff;
}

.contact-list dd {
  font-size: 14px;
}

.contact-sme {
  text-align: center;
}

@media screen and (width <=767px) {
  .contact {
    padding: 40px 15px;
  }

  .contact-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 15px;
  }

  .contact-list dt {
    text-align: center;
  }

  .contact-list dd {
    font-size: 12px;
  }
}

/* FOOTER----------------------- */
.f-go-top {
  position: fixed;
  right: 10px;
  bottom: 20px;
  z-index: 9;
  display: none;
}

.f-footer {
  padding: 50px;
  margin: 0 40px 5px;
  color: #fff;
  text-align: center;
  background: var(--c-main);
  border-radius: 10px;
}

.f-footer p {
  color: #fff;
}

.f-logo img {
  width: 250px;
  margin: auto;
}

.f-ttl {
  margin-bottom: 10px;
  font-size: 14px;
}

.f-name {
  margin: 10px;
  font-size: 16px;
}

.f-add {
  font-size: 14px;
}

.f-add img {
  width: 15px;
  margin-right: 5px;
}

.copy {
  padding: 0 10px;
  margin-bottom: 10px;
  font-size: 10px;
  text-align: center;
}

@media screen and (width <=767px) {
  .f-footer {
    padding: 20px;
    margin: 0 15px;
  }

  .f-footer p {
    font-size: 12px;
  }

  .f-footer img {
    max-width: 150px;
  }

  .f-go-top {
    width: 60px;
  }

}