@charset "UTF-8";
/*-------------------------------
WEBフォント読み込み
---------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Outfit:wght@100..900&display=swap");
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

/*-------------------------------
変数
---------------------------------*/
:root {
  --main-color: #2074b5;
  --main-color-dark: #6395bb;
  --sub-color-light: #ccdde6;
  --current-color-dark: #265f8b;
}

/*-------------------------------
ディフォルト設定
---------------------------------*/
html {
  width: 100%;
}

body {
  background: #fff;
  margin: 0px;
  padding: 0px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.4rem;
  color: #222222;
  font-family: "Outfit", "Noto Sans JP", sans-serif;
  font-weight: normal;
  text-size-adjust: none;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 0.9rem;
    line-height: 1.5rem;
  }
}

#wrap {
  height: 100%;
}
#wrap.hfull .layout_main {
  height: calc(100vh - 64px);
}

/*text link（サイト全体のメイン文字カラー）
-------------------------------- */
a:link {
  color: #000;
}

a:visited {
  color: #000;
}

a:hover {
  color: #000;
}

a:active {
  color: #000;
}

/*img
------------------------*/
* img {
  border: none;
  margin: 0px;
  padding: 0px;
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

* {
  box-sizing: border-box;
}

.content_title h1 {
  width: 100%;
  max-width: 880px;
  color: #2e5572;
  font-size: 1.6rem;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #7d9eb4;
}
@media screen and (max-width: 767px) {
  .content_title h1 {
    font-size: 1.2rem;
  }
}
.content_title.ln h1 {
  border: none;
  padding-bottom: 0;
}

@media screen and (max-width: 767px) {
  .sp_menu {
    background-color: var(--main-color);
    width: 56px;
    height: 56px;
    top: 0;
    right: 0;
    display: block;
    position: fixed;
    z-index: 1000;
  }
  .sp_menu span {
    width: 50%;
    height: 2px;
    line-height: 1;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
  }
  .sp_menu span:nth-of-type(1) {
    top: 30%;
  }
  .sp_menu span:nth-of-type(2) {
    top: 50%;
  }
  .sp_menu span:nth-of-type(3) {
    top: 70%;
  }
}

.pt {
  width: 50px;
  height: 50px;
  display: block;
  position: fixed;
  bottom: 4rem;
  right: 2rem;
  border-radius: 3px;
  background-color: var(--main-color-dark);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}
@media screen and (max-width: 767px) {
  .pt {
    bottom: 0.7rem;
    right: 1rem;
    width: 40px;
    height: 40px;
  }
}
.pt::after {
  content: "▲";
  color: #fff;
}

.is-fixed {
  width: 260px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

/*-------------------------------
footer
---------------------------------*/
footer {
  margin-top: -50px;
}
@media screen and (max-width: 767px) {
  footer {
    margin: 0;
  }
}
footer .inner {
  padding: 0.7rem 2rem 1rem 1rem;
  background-color: var(--sub-color-light);
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  color: #295476;
}
@media screen and (max-width: 767px) {
  footer .inner {
    display: block;
    padding-bottom: 5rem;
  }
}
footer .inner .fnav ul {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 10px 10px;
  list-style: none;
}
@media screen and (max-width: 767px) {
  footer .inner .fnav ul {
    justify-content: center;
    margin-bottom: 1rem;
  }
}
footer .inner .fnav ul li a {
  color: #295476;
}
@media screen and (max-width: 767px) {
  footer .inner .fnav ul li a {
    font-size: 0.8rem;
  }
}

/*-------------------------------
header
---------------------------------*/
header .inner {
  background-color: #fff;
  display: grid;
  grid-template-columns: 300px 1fr;
  grid-gap: 0;
  justify-items: flex-start;
  align-items: center;
  padding: 0.5rem 1rem;
}
@media screen and (max-width: 767px) {
  header .inner {
    grid-template-columns: 30% 1fr;
    padding: 1rem 1rem;
  }
}
header .inner img {
  width: 160px;
  height: auto;
}
@media screen and (max-width: 767px) {
  header .inner img {
    width: 100%;
  }
}
header .inner .menu {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}
header .inner .menu .user {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  header .inner .menu .user {
    display: none;
  }
}
header .inner .menu .user .icon {
  width: 30px;
  height: 30px;
  border-radius: 100px;
  border: 1px solid #222;
  display: block;
  overflow: hidden;
}
header .inner .menu .user p {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}
header .inner .menu .user p::after {
  content: " さん";
  display: block;
  font-size: 0.8rem;
}
header .inner .menu ul {
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
  gap: 15px;
}
@media screen and (max-width: 767px) {
  header .inner .menu ul {
    position: fixed;
    bottom: 0;
    left: 0;
    background-color: #fff;
    padding: 10px 1rem;
    border-radius: 0px;
    width: 100%;
    justify-content: flex-start;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
    z-index: 999;
  }
}
header .inner .menu ul li {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
header .inner .menu ul li a {
  font-size: 0.6rem;
  text-decoration: none;
  line-height: 1;
}
header .inner .menu ul li a::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
  background-position: center center;
  border: 1px solid #222;
  border-radius: 100px;
  margin: auto;
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  header .inner .menu ul li a::before {
    width: 25px;
    height: 25px;
  }
}
header .inner .menu ul li a.account::before {
  background-image: url(../img/common/icon_account.svg);
  background-size: 35%;
  background-position: center bottom;
}
header .inner .menu ul li a.logout::before {
  background-image: url(../img/common/icon_logout.svg);
  background-size: 50%;
}

/*-------------------------------
main
---------------------------------*/
.layout_main {
  overflow-y: auto;
  display: grid;
  grid-template-columns: 260px 880px;
  grid-column-gap: 0px;
  justify-items: flex-start;
  align-items: flex-start;
  background-color: var(--sub-color-light);
  text-align: left;
}
@media screen and (max-width: 767px) {
  .layout_main {
    display: block;
  }
}
.layout_main.hfull {
  height: 100vh;
}
.layout_main .gnav {
  background-color: #fff;
  width: 100%;
  height: 100%;
  transition: 0.5s;
  -webkit-transition: 0.5s;
}
@media screen and (max-width: 767px) {
  .layout_main .gnav {
    position: fixed;
    top: 0;
    left: 100%;
    z-index: 999;
  }
  .layout_main .gnav.open {
    left: 0;
    z-index: 999;
  }
}
.layout_main .gnav ul {
  list-style: none;
}
.layout_main .gnav ul li.btn_db {
  background-color: var(--main-color-dark);
}
.layout_main .gnav ul li.btn_db a {
  color: #fff;
  padding-left: 1rem;
}
@media screen and (max-width: 767px) {
  .layout_main .gnav ul li.btn_db a {
    height: 56px;
  }
}
.layout_main .gnav ul li.btn_top {
  background-color: #eee;
}
.layout_main .gnav ul li.btn_top a {
  padding-left: 1rem;
}
.layout_main .gnav ul li a {
  display: block;
  padding: 0.8rem 1rem;
  padding-left: 3.5rem;
  text-decoration: none;
  background-repeat: no-repeat;
  background-size: auto 50%;
  background-position: top 50% left 1rem;
  background-blend-mode: multiply;
}
.layout_main .gnav ul li a:hover {
  background-color: var(--sub-color-light);
  color: #fff;
}
.layout_main .gnav ul li a.i_keyword {
  background-image: url(../img/common/icon_keyword.svg);
}
.layout_main .gnav ul li a.i_url {
  background-image: url(../img/common/icon_url.svg);
}
.layout_main .gnav ul li a.i_case {
  background-image: url(../img/common/icon_case.svg);
}
.layout_main .gnav ul li a.i_history {
  background-image: url(../img/common/icon_history.svg);
}
.layout_main .gnav ul li a.i_measurement {
  background-image: url(../img/common/icon_measurement.svg);
}
.layout_main .gnav ul li a.i_setting {
  background-image: url(../img/common/icon_setting.svg);
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.layout_main .gnav ul li.btn_current {
  background-color: var(--current-color-dark);
}
.layout_main .gnav ul li.btn_current a {
  color: #fff;
}
.layout_main .gnav ul li.btn_current a.i_keyword {
  background-image: url(../img/common/icon_keyword_current.svg);
}
.layout_main .gnav ul li.btn_current a.i_url {
  background-image: url(../img/common/icon_url_current.svg);
}
.layout_main .gnav ul li.btn_current a.i_case {
  background-image: url(../img/common/icon_case_current.svg);
}
.layout_main .gnav ul li.btn_current a.i_history {
  background-image: url(../img/common/icon_history_current.svg);
}
.layout_main .gnav ul li.btn_current a.i_measurement {
  background-image: url(../img/common/icon_measurement_current.svg);
}
.layout_main .gnav ul li.btn_current a.i_setting {
  background-image: url(../img/common/icon_setting_current.svg);
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.layout_main .content {
  width: 100%;
  height: 100%;
  padding: 3rem;
  padding-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .layout_main .content {
    padding: 1rem;
  }
}

/*-------------------------------
box
---------------------------------*/
.box {
  width: 100%;
  background-color: #fff;
  margin-top: 2rem;
  border-radius: 3px;
  overflow: hidden;
}
.box:first-child {
  margin-top: 0;
}
.box h2 {
  background-color: var(--main-color-dark);
  color: #fff;
  font-size: 1.2rem;
  padding: 1rem;
}
@media screen and (max-width: 767px) {
  .box h2 {
    font-size: 1rem;
  }
}
.box h2:first-child {
  margin-top: 0;
}
.box h2.none {
  background-color: transparent;
  color: #252525;
  padding: 0;
  margin-bottom: 1.5rem;
}
.box h2.bar {
  background-color: transparent;
  color: #252525;
  padding: 0;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #ccc;
}
.box .inner {
  padding: 2rem 2rem;
}
@media screen and (max-width: 767px) {
  .box .inner {
    padding: 2rem 1rem;
  }
}

/*-------------------------------
case
---------------------------------*/
.case .row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 15px;
  justify-items: flex-start;
  align-items: flex-start;
}
@media screen and (max-width: 1200px) and (min-width: 901px) {
  .case .row {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 900px) and (min-width: 768px) {
  .case .row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .case .row {
    grid-template-columns: 1fr;
  }
}
.case .row .col {
  border: 1px solid #ccc;
  position: relative;
  border-radius: 3px;
  overflow: hidden;
}
.case .row .col .img {
  position: relative;
  overflow: hidden;
}
.case .row .col .img img {
  width: 100%;
  transition: 0.3s;
  -webkit-transition: 0.3s;
}
.case .row .col .img span {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background-color: #333;
  line-height: 1;
  color: #fff;
  padding: 3px 5px;
  border-radius: 100px;
  font-size: 0.7rem;
}
.case .row .col .txt {
  padding: 1rem;
}
.case .row .col .txt .info {
  display: grid;
  grid-template-columns: 30% 1fr;
  grid-gap: 10px;
  justify-items: flex-start;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.case .row .col .txt .info .icon img {
  width: auto;
  height: 20px;
}
.case .row .col .txt .info .icon span {
  height: 20px;
  display: block;
  background-color: var(--main-color);
  font-size: 0.6rem;
  padding: 0 5px;
  border-radius: 3px;
  color: #fff;
  line-height: 20px;
}
.case .row .col .txt .info .date {
  width: 100%;
  font-size: 0.8rem;
  text-align: right;
}
.case .row .col .txt h3 {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}
.case .row .col .txt p {
  font-size: 0.7rem;
  line-height: 1.3;
  color: #555;
  height: 60px;
  overflow: hidden;
}
.case .row .col a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.case .row .col::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
}
.case .row .col:hover .img img {
  transform: scale(1.1);
}
.case .row .col.type_youtube::before {
  background-color: red;
}
.case .row .col.type_instagram::before {
  background-image: linear-gradient(150deg, rgb(247, 166, 12) 10%, rgb(255, 34, 87) 40%, rgb(154, 39, 238) 68%, rgb(35, 102, 247) 90%);
}
.case .row .col.type_unlink::before {
  background-color: var(--main-color);
}

.case_detail .box .inner .case_txt {
  width: 100%;
}
.case_detail .box .inner .case_txt h3 {
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: normal;
}
.case_detail .box .inner .case_txt .row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  justify-items: flex-start;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 767px) {
  .case_detail .box .inner .case_txt .row {
    grid-template-columns: 1fr;
  }
}
.case_detail .box .inner .case_txt .row .case_img {
  width: 100%;
}
.case_detail .box .inner .case_txt .row .case_img img {
  width: 100%;
}
.case_detail .box .inner .case_txt .row .info {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  justify-items: flex-start;
  align-items: flex-start;
  padding-top: 1rem;
}
@media screen and (max-width: 767px) {
  .case_detail .box .inner .case_txt .row .info {
    grid-template-columns: 1fr;
    padding-top: 0;
  }
}
.case_detail .box .inner .case_txt .row .info .col {
  width: 100%;
}
.case_detail .box .inner .case_txt .row .info .col:nth-of-type(1) {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
}
.case_detail .box .inner .case_txt .row .info .col:nth-of-type(1) span {
  display: block;
  line-height: 1;
  background-color: #333;
  border-radius: 100px;
  padding: 5px 10px;
  color: #fff;
  font-size: 0.8rem;
}
.case_detail .box .inner .case_txt .row .info .col:nth-of-type(2) .sns_link {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .case_detail .box .inner .case_txt .row .info .col:nth-of-type(2) .sns_link {
    justify-content: flex-start;
  }
}
.case_detail .box .inner .case_txt .row .info .col:nth-of-type(2) .sns_link .icon {
  display: block;
  border-radius: 100px;
  line-height: 1;
  width: 20px;
  height: 20px;
  color: #fff;
  text-align: center;
  line-height: 20px;
}
.case_detail .box .inner .case_txt .row .info .col:nth-of-type(2) .sns_link .icon.linked {
  background-color: #2fa55d;
  background-image: url(../img/common/icon_sns_comp.svg);
  background-position: top 50% left 50%;
  background-size: auto 40%;
  background-repeat: no-repeat;
}
.case_detail .box .inner .case_txt .row .info .col:nth-of-type(2) .sns_link .icon.unlinked {
  background-color: var(--main-color);
}
.case_detail .box .inner .case_txt .row .info .col:nth-of-type(2) .sns_link a {
  color: var(--main-color);
}
.case_detail .box .inner .case_txt .txt h2 {
  background-color: transparent;
  color: #333;
  padding: 0;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .case_detail .box .inner .case_txt .txt h2 {
    font-size: 1.1rem;
  }
}
.case_detail .box .inner .case_txt .txt .description {
  line-height: 2;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .case_detail .box .inner .case_txt .txt .description {
    line-height: 1.6;
    font-size: 0.8rem;
  }
}
.case_detail .box .inner .case_txt .target {
  margin-bottom: 2rem;
}
.case_detail .box .inner .case_txt .target dl {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 2fr;
  gap: 0px;
  justify-items: flex-start;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .case_detail .box .inner .case_txt .target dl {
    grid-template-columns: 1fr;
  }
}
.case_detail .box .inner .case_txt .target dl > div {
  width: 100%;
  border: 1px solid #ccc;
  border-right: none;
  font-size: 0.8rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .case_detail .box .inner .case_txt .target dl > div {
    border-right: 1px solid #ccc;
    border-bottom: none;
    text-align: left;
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 10px;
    justify-items: flex-start;
    align-items: flex-start;
  }
}
.case_detail .box .inner .case_txt .target dl > div:last-child {
  border-right: 1px solid #ccc;
}
@media screen and (max-width: 767px) {
  .case_detail .box .inner .case_txt .target dl > div:last-child {
    border-bottom: 1px solid #ccc;
  }
}
.case_detail .box .inner .case_txt .target dl > div dt {
  border-bottom: 1px solid #ccc;
  padding: 0.3rem 0.5rem;
  background-color: #eee;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .case_detail .box .inner .case_txt .target dl > div dt {
    border-bottom: none;
  }
}
.case_detail .box .inner .case_txt .target dl > div dd {
  padding: 0.3rem 0.5rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .case_detail .box .inner .case_txt .effect ul {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    justify-items: flex-start;
    align-items: flex-start;
  }
}
.case_detail .box .inner .case_txt .effect ul li {
  background-color: var(--main-color);
  font-size: 0.8rem;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .case_detail .box .inner .case_txt .effect ul li {
    padding: 0.3rem 0.5rem;
  }
}
.case_detail .box .inner .btn {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #ccc;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .case_detail .box .inner .btn {
    gap: 10px;
    padding-top: 1rem;
    margin-bottom: 1rem;
  }
}
.case_detail .box .inner .btn a {
  width: 100%;
  max-width: 220px;
  background-color: #999;
  color: #fff;
  border-radius: 100px;
  display: block;
  padding: 0.5rem 1rem;
  text-decoration: none;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .case_detail .box .inner .btn a {
    font-size: 0.8rem;
    padding: 0.5rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 360px) {
  .case_detail .box .inner .btn a {
    font-size: 0.6rem;
  }
}
.case_detail .box .inner .btn a.create {
  background-color: var(--main-color);
  background-image: url(../img/common/icon_script_create.svg);
  background-repeat: no-repeat;
  background-position: top 50% left 20px;
  background-size: 10%;
  padding-left: 2rem;
}
@media screen and (max-width: 767px) {
  .case_detail .box .inner .btn a.create {
    padding-left: 1rem;
    background-image: none;
  }
}

/*-------------------------------
flow
---------------------------------*/
.flow ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
  justify-items: flex-start;
  align-items: flex-start;
  position: relative;
}
.flow ul:after {
  width: 100%;
  height: 2px;
  line-height: 1;
  background-color: #eee;
  content: "";
  display: block;
  position: absolute;
  top: 25px;
  left: 0;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .flow ul:after {
    top: 35px;
  }
}
.flow ul li {
  width: 100%;
  background-color: #eaeaea;
  color: #969696;
  display: grid;
  grid-template-columns: 20% 1fr;
  grid-gap: 10px;
  justify-items: flex-start;
  align-items: center;
  border-radius: 5px;
  position: relative;
  z-index: 1;
  padding: 0.5rem 1rem;
}
@media screen and (max-width: 767px) {
  .flow ul li {
    grid-template-columns: 1fr;
    justify-items: center;
    grid-gap: 5px;
    padding: 0.5rem 0;
  }
}
.flow ul li .num {
  background-color: #fff;
  border-radius: 100px;
  line-height: 1;
  width: 40px;
  height: 40px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .flow ul li .num {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }
}
.flow ul li .num > span {
  font-size: 6px;
}
.flow ul li > p {
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .flow ul li > p {
    font-size: 0.6rem;
  }
}
.flow ul li.current {
  background-color: #2074b5;
}
.flow ul li.current .num {
  color: #2074b5;
}
.flow ul li.current > p {
  color: #fff;
}

/*-------------------------------
input
---------------------------------*/
.input .set {
  display: grid;
  grid-template-columns: 1fr 150px;
  grid-gap: 20px;
  justify-items: flex-start;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .input .set {
    grid-template-columns: 1fr;
  }
}
.input .set input {
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%;
  background-color: #f6f6f6;
  padding: 1rem;
  line-height: 1;
}
.input .set button {
  width: 100%;
  background-color: var(--main-color);
  background-image: url(../img/common/icon_script_create.svg);
  background-repeat: no-repeat;
  background-position: top 50% left 20px;
  background-size: auto 40%;
  color: #fff;
  border-radius: 100px;
  border: none;
  padding: 1rem;
  padding-left: 3rem;
  line-height: 1;
  cursor: pointer;
}
.input .option {
  margin-top: 1rem;
}
.input .option span {
  display: block;
  margin-bottom: 5px;
}
.input .option select {
  padding: 0.5rem;
  border: 1px solid #999;
  border-radius: 3px;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .input .option select {
    width: 100%;
    margin-bottom: 5px;
  }
}
/* generate-keyword.html の candidate セクションに追加された要素のスタイル */

/* テキストエリアと参考候補を囲むコンテナのスタイル */
.keyword .candidate .reference_container {
  width: 100%; /* 親要素の幅いっぱいに */
  margin-top: 0; /* 元のpタグがなくなるためマージンをリセット */
  padding: 2rem; /* .box .inner と同じパディング */
  /* グリッドコンテナとして設定 */
  display: grid;
  /* 2列にまたがるようにする（グリッドシステムの子要素として幅を制御） */
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 15px; /* .candidate .row のグリッドギャップと合わせる */
  padding-bottom: 2rem; /* 下に線を入れるためにパディングを追加 */
  margin-bottom: 2rem; /* 下の要素との間に余白 */
  border-bottom: 1px solid #7d9eb4; /* ここに線を追加 */
}
@media screen and (max-width: 767px) {
  .keyword .candidate .reference_container {
    grid-template-columns: 1fr; /* モバイルでは1列にする */
    padding: 1rem; /* モバイルでのパディング調整 */
    grid-gap: 20px; /* モバイルでのグリッドギャップ調整 */
    padding-bottom: 1rem; /* モバイルでのパディング調整 */
    margin-bottom: 1rem; /* モバイルでのマージン調整 */
  }
}

/* 全体構成と流れの説明 の文字サイズとスタイル - 元の見た目に戻す（content_title h1 スタイル） */
.keyword .candidate .text_area_description {
  width: auto; /* グリッド列で幅を制御するためautoに */
  grid-column: span 2; /* 2列にまたがるようにする */
  color: #2e5572; /* .content_title h1 と同じ色 */
  font-size: 1.6rem; /* .content_title h1 と同じサイズ */
  padding-bottom: 0; /* 線を削除 */
  margin-bottom: 2rem; /* .content_title h1 と同じマージン */
  border-bottom: none; /* 線を削除 */
  text-align: center; /* 以前の指示通り中央に配置 */
  background-color: transparent; /* 背景色を透明に */
  padding-left: 0; /* 追加のパディングをリセット */
  padding-right: 0; /* 追加のパディングをリセット */
}

@media screen and (max-width: 767px) {
  .keyword .candidate .text_area_description {
    font-size: 1.2rem; /* .content_title h1 (モバイル) と同じサイズ */
    grid-column: span 1; /* モバイルでは1列に */
    padding-bottom: 1rem; /* モバイルでのパディング調整 */
    margin-bottom: 1rem; /* モバイルでのマージン調整 */
  }
}

/* div要素として再定義されたテキストエリアのスタイル */
.keyword .candidate .script_textarea {
  width: auto; /* グリッド列で幅を制御するためautoに */
  grid-column: span 2; /* 2列にまたがるようにする */
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #f6f6f6;
  margin-bottom: 2rem; /* 参考候補との間に余白 */
  /* テキストエリアのように見せるための高さを設定 */
  min-height: 150px; /* 少なくとも数行分の高さを確保 */
  overflow-y: auto; /* 内容が溢れた場合にスクロールバーを表示 */
  box-sizing: border-box; /* パディングとボーダーを幅に含める */
  text-align: left; /* テキストが左寄せになるように */
  line-height: 1.5; /* 行の高さを調整 */
  color: #555; /* テキストの色を調整 */
}
/* div内のpタグも調整 */
.keyword .candidate .script_textarea p {
  margin: 0; /* pタグのデフォルトマージンをリセット */
  padding: 0; /* pタグのデフォルトパディングをリセット */
}

@media screen and (max-width: 767px) {
  .keyword .candidate .script_textarea {
    grid-column: span 1; /* モバイルでは1列に */
    margin-bottom: 1rem; /* モバイルでのマージン調整 */
  }
}

/* 移動した「台本の参考にしたい候補を選択してください。」のスタイル - 「キーワードから生成する」と同じ見た目に */
.keyword .candidate .reference_container .reference_prompt {
  grid-column: span 2; /* 2列にまたがるようにする */
  color: #252525; /* .box h2.none と同じ色 */
  font-size: 1.2rem; /* .box h2.none と同じサイズ */
  padding: 0; /* .box h2.none と同じパディング */
  margin-top: 1rem; /* テキストエリアとの間にマージンを追加 */
  margin-bottom: 1.5rem; /* .box h2.none と同じマージン */
  text-align: left; /* .box h2.none と同じ左寄せ */
  background-color: transparent; /* 背景色を透明に */
  border-bottom: none; /* 線を削除 */
  font-weight: bold; /* .box h2.none (太字) と同じ太さ */
}
@media screen and (max-width: 767px) {
  .keyword .candidate .reference_container .reference_prompt {
    grid-column: span 1; /* モバイルでは1列に */
    font-size: 1rem; /* .box h2.none (モバイル) と同じサイズ */
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
  }
}

/* 参考候補の行の調整 - .reference_container のグリッドの子になるため、既存の .row のスタイルを維持 */
.keyword .candidate .reference_container .row {
  grid-column: span 2; /* .row 自体も2列にまたがるように設定 */
  display: grid; /* .row 自身がグリッドを持つことを明示 */
  grid-template-columns: repeat(2, 1fr); /* 既存のグリッド定義 */
  grid-gap: 15px; /* 既存のグリッドギャップ */
  width: 100%; /* 親グリッドアイテムとしての幅 */
}
@media screen and (max-width: 767px) {
  .keyword .candidate .reference_container .row {
    grid-template-columns: 1fr; /* モバイルでは1列にする */
    grid-gap: 20px; /* モバイルでのグリッドギャップ調整 */
  }
}


/*-------------------------------
effect
---------------------------------*/
.effect ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 10px;
  justify-items: flex-start;
  align-items: flex-start;
  list-style: none;
}
.effect ul li {
  width: 100%;
  background-color: #dddddd;
  padding: 0.5rem;
  border-radius: 5px;
  color: #999;
  font-size: 0.8rem;
}
.effect ul li.current {
  background-color: var(--main-color);
  color: #fff;
}

.prompt {
  margin-top: 2rem;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0px;
}
.prompt span {
  display: block;
  background-color: #333;
  color: #fff;
  line-height: 1;
  padding: 1rem 0.5rem;
  font-size: 0.7rem;
  width: 140px;
  text-align: center;
  border-radius: 3px 0 0 3px;
}
.prompt input {
  border: 1px solid #ccc;
  padding: 0.8rem;
  width: 100%;
  line-height: 1;
  border-radius: 0 3px 3px 0;
}

/*-------------------------------
pager
---------------------------------*/
.pager {
  margin-top: 3rem;
}
.pager ul {
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.pager ul li span,
.pager ul li a {
  padding: 0.5rem 0.8rem;
  line-height: 1;
}
.pager ul li span {
  background-color: var(--main-color);
  border: 1px solid var(--main-color);
  border-radius: 5px;
  color: #fff;
}
.pager ul li a {
  border: 1px solid #ccc;
  border-radius: 5px;
  text-decoration: none;
}

/*-------------------------------
login
---------------------------------*/
.login {
  background-image: url(../img/login/login_bg.webp);
  background-size: cover;
  background-position: center top;
  padding-top: 200px;
  padding-bottom: 200px;
  height: 100vh;
  position: relative;
}
@media screen and (max-width: 767px) {
  .login {
    padding: 4rem 10% 3rem 10%;
    padding-top: 8rem;
  }
}
.login::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAAG0lEQVQYV2NkYGD4z8DAwMgABXAGNgGwSgwVAFbmAgXQdISfAAAAAElFTkSuQmCC);
  top: 0;
  left: 0;
  z-index: 0;
}
.login .login_box {
  width: 500px;
  margin: auto;
  padding: 3rem;
  border-radius: 10px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .login .login_box {
    width: 100%;
    padding: 1.5rem;
  }
}
.login .login_box .logo {
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .login .login_box .logo {
    margin-bottom: 1rem;
  }
}
.login .login_box .logo img {
  width: 50%;
}
.login .login_box dl > div {
  border-bottom: 1px solid #ccc;
  display: grid;
  grid-template-columns: 35% 1fr;
  grid-gap: 10px;
  padding: 1.5rem 0;
}
@media screen and (max-width: 767px) {
  .login .login_box dl > div {
    grid-template-columns: 1fr;
    padding: 0.5rem 0;
    border: none;
  }
}
.login .login_box dl > div dt {
  text-align: left;
}
.login .login_box dl > div dd {
  width: 100%;
}
.login .login_box dl > div dd input {
  width: 100%;
  padding: 0.5rem;
  background-color: #fafafa;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.login .login_box .btn {
  margin-top: 2rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .login .login_box .btn {
    margin-top: 1rem;
  }
}
.login .login_box .btn input[type=submit] {
  background-color: var(--main-color);
  color: #fff;
  border-radius: 100px;
  line-height: 1;
  padding: 1rem;
  border: none;
  display: block;
  width: 100%;
  max-width: 70%;
  margin: auto;
  cursor: pointer;
}
.login .login_box .note {
  margin-top: 1rem;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .login .login_box .note {
    flex-direction: column;
    gap: 2px;
    font-size: 0.8rem;
  }
}

@media screen and (max-width: 767px) {
  footer.login_footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
  }
}
footer.login_footer .inner {
  background-color: transparent;
  color: #fff !important;
}
@media screen and (max-width: 767px) {
  footer.login_footer .inner {
    padding: 1rem;
  }
}
footer.login_footer .inner a {
  color: #fff !important;
}

/*-------------------------------
top
---------------------------------*/
.news .inner {
  padding: 1rem 2rem;
}
.news .inner dl div {
  display: grid;
  grid-template-columns: 120px 1fr;
  grid-gap: 0px;
  justify-items: flex-start;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid #ccc;
  position: relative;
}
.news .inner dl div:last-child {
  border-bottom: none;
}
.news .inner dl div:hover {
  background-color: #eee;
}
.news .inner dl div a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.news .inner dl div dt {
  padding-left: 0.5rem;
}
.news .inner .btn {
  width: 100%;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 10px 10px;
}
.news .inner .btn a {
  display: block;
}
.news.detail .inner .head {
  margin-top: 2rem;
  line-height: 1;
}
.news.detail .inner .head span {
  font-weight: normal;
  display: block;
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  .news.detail .inner .head span {
    font-size: 1rem;
  }
}
.news.detail .inner .head h1 {
  font-size: 1.8rem;
  font-weight: normal;
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .news.detail .inner .head h1 {
    font-size: 1.3rem;
  }
}
.news.detail .inner .txt {
  margin-top: 3rem;
  line-height: 2;
}
.news.detail .inner .btn {
  border-top: 1px solid #ccc;
  padding-top: 1rem;
  justify-content: center;
  margin-top: 3rem;
}
.news.detail .inner img {
  max-width: 100%;
  margin: 0.5rem 0;
}

/*-------------------------------
tool
---------------------------------*/
.select .inner p {
  font-size: 1.4rem;
  text-align: center;
  margin-bottom: 1.5rem;
}
.select .inner ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
  justify-items: flex-start;
  align-items: flex-start;
}
.select .inner ul li {
  width: 100%;
}
.select .inner ul li a {
  display: block;
  background-color: #3b82b8;
  color: #fff;
  padding: 1.5rem 1rem;
  border-radius: 5px;
  padding-left: 80px;
  text-align: center;
  text-decoration: none;
  background-repeat: no-repeat;
  background-position: top 40% left 30px;
  background-size: 15%;
}
.select .inner ul li a:hover {
  background-color: #006bbe;
}
.select .inner ul li:nth-of-type(1) a {
  background-image: url(../img/common/icon_keyword_wh.svg);
}
.select .inner ul li:nth-of-type(2) a {
  background-image: url(../img/common/icon_url_wh.svg);
  background-size: 20%;
}

/*-------------------------------
keyword
---------------------------------*/
.keyword .input .set {
  display: grid;
  grid-template-columns: 1fr 150px;
  grid-gap: 20px;
  justify-items: flex-start;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .keyword .input .set {
    grid-template-columns: 1fr;
  }
}
.keyword .input .set input {
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%;
  background-color: #f6f6f6;
  padding: 1rem;
  line-height: 1;
}
.keyword .input .set button {
  width: 100%;
  background-color: var(--main-color);
  background-image: url(../img/common/icon_script_create.svg);
  background-repeat: no-repeat;
  background-position: top 50% left 20px;
  background-size: auto 40%;
  color: #fff;
  border-radius: 100px;
  border: none;
  padding: 1rem;
  padding-left: 3rem;
  line-height: 1;
  cursor: pointer;
}
.keyword .input .option {
  margin-top: 1rem;
}
.keyword .input .option span {
  display: block;
  margin-bottom: 5px;
}
.keyword .input .option select {
  padding: 0.5rem;
  border: 1px solid #999;
  border-radius: 3px;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .keyword .input .option select {
    width: 100%;
    margin-bottom: 5px;
  }
}
.keyword .input .prompt {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
}
.keyword .input .prompt span {
  display: block;
  background-color: #333;
  color: #fff;
  line-height: 1;
  padding: 0.6rem 0.5rem;
  font-size: 0.7rem;
  width: 140px;
  text-align: center;
}
.keyword .input .prompt input {
  border: 1px solid #ccc;
  padding: 0.5rem;
  width: 100%;
  line-height: 1;
}
.keyword .candidate {
  margin-top: 2rem;
}
.keyword .candidate > p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  text-align: center;
}
.keyword .candidate .row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
  justify-items: flex-start;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .keyword .candidate .row {
    grid-template-columns: 1fr;
  }
}
.keyword .candidate .row .col {
  background-color: #f6f6f6;
  padding: 1.5rem;
  border-radius: 3px;
}
.keyword .candidate .row .col .head {
  margin-bottom: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 10px;
  justify-items: flex-start;
  align-items: flex-start;
}
.keyword .candidate .row .col .head p {
  font-size: 1.2rem;
  width: 100%;
  font-weight: bold;
}
.keyword .candidate .row .col .head .btn {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.keyword .candidate .row .col .head .btn a {
  background-color: var(--main-color);
  color: #fff;
  border-radius: 100px;
  text-decoration: none;
  padding: 5px 10px;
  font-size: 0.8rem;
}

.url .result .inner .txt {
  margin-top: 2rem;
  border: 1px solid #ccc;
  padding: 2rem;
  background-color: #eee;
  height: 200px;
  overflow-x: auto;
  line-height: 2;
}
.url .result .inner .btn {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px;
  justify-items: flex-start;
  align-items: flex-start;
  margin-top: 2rem;
}
.url .result .inner .btn a {
  width: 100%;
  background-color: var(--main-color);
  background-repeat: no-repeat;
  background-size: auto 40%;
  background-position: top 50% left 30px;
  color: #fff;
  display: block;
  text-decoration: none;
  text-align: center;
  border-radius: 100px;
  line-height: 1;
  padding: 1.5rem 1rem;
  padding-left: 2.5rem;
}
.url .result .inner .btn a.btn_url_search {
  background-image: url(../img/common/icon_url_search.svg);
}
.url .result .inner .btn a.btn_create_ref {
  background-image: url(../img/common/icon_script_create.svg);
}

/*-------------------------------
history
---------------------------------*/
.history .inner h2 {
  display: grid;
  grid-template-columns: 1fr 70%;
  grid-gap: 10px;
  justify-items: flex-start;
  align-items: flex-start;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .history .inner h2 {
    grid-template-columns: 1fr;
  }
}
.history .inner h2 p {
  width: 100%;
  font-size: 0.8rem;
  font-weight: normal;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}
.history .inner h2 p span {
  display: block;
  background-color: var(--main-color);
  line-height: 1;
  color: #fff;
  padding: 5px;
  border-radius: 100px;
  width: 20px;
  height: 20px;
  text-align: center;
}
.history .inner h2 p a {
  color: var(--main-color);
}
.history .inner .head {
  display: grid;
  grid-template-columns: 1fr 30%;
  grid-gap: 10px;
  justify-items: flex-start;
  align-items: flex-start;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .history .inner .head {
    grid-template-columns: 1fr;
  }
}
.history .inner .head ul {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px 10px;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .history .inner .head ul {
    flex-wrap: wrap;
  }
}
.history .inner .head ul li a {
  padding: 5px 5px;
  color: #999;
  font-weight: normal;
}
.history .inner .head ul li.current a {
  background-color: #333;
  border-radius: 5px;
  color: #fff;
  padding: 5px 10px;
  text-decoration: none;
}
.history .inner .head .input {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 30%;
  grid-gap: 10px;
  justify-items: flex-start;
  align-items: flex-start;
}
.history .inner .head .input input {
  width: 100%;
  padding: 0.3rem;
  box-sizing: border-box;
}
.history .inner .head .input button {
  width: 100%;
  background-color: var(--main-color);
  color: #fff;
  padding: 5px 10px;
  border: none;
  border-radius: 100px;
}

/*-------------------------------
create
---------------------------------*/
.create .input .inner h2 {
  margin-top: 2rem !important;
}
.create .input .inner h2:first-child {
  margin-top: 0;
}
.create .input .inner .txt {
  position: relative;
  border: 1px solid #ccc;
  padding: 1rem 1rem;
}
.create .input .inner .txt .count {
  background-color: #fff;
  text-align: right;
  margin-top: 1rem;
}
.create .input .inner .txt .count span {
  background-color: #999;
  color: #fff;
  line-height: 1;
  border-radius: 100px;
  padding: 5px 10px;
  font-size: 0.8rem;
}
.create .input .inner .w_style {
  margin-top: 2rem;
}
.create .input .inner .w_style h2 {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
}
.create .input .inner .w_style h2 p {
  font-size: 0.8rem;
  font-weight: normal;
}
.create .input .inner .w_style ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 10px;
  justify-items: flex-start;
  align-items: flex-start;
}
.create .input .inner .w_style ul li {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.create .input .inner .w_style ul li a {
  display: block;
  text-decoration: none;
  padding: 0.3rem 0.5rem;
  text-align: left;
}
.create .input .inner .btn {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px;
  justify-items: flex-start;
  align-items: flex-end;
  margin-top: 2rem;
}
.create .input .inner .btn .col {
  width: 100%;
}
.create .input .inner .btn .col p {
  width: 100%;
  margin-bottom: 1rem;
  text-align: center;
}
.create .input .inner .btn .col a {
  display: block;
  width: 100%;
  background-color: var(--main-color);
  color: #fff;
  border-radius: 100px;
  line-height: 1;
  padding: 1.5rem 1rem;
  text-decoration: none;
  text-align: center;
  background-repeat: no-repeat;
  background-position: top 50% left 20px;
  background-size: auto 50%;
}
.create .input .inner .btn .col:nth-of-type(1) a {
  background-image: url(../img/common/icon_reference.svg);
}
.create .input .inner .btn .col:nth-of-type(2) a {
  background-image: url(../img/common/icon_save.svg);
}
/* ma-20250605 */
.create .input .inner .btn .col button {
  display: block;
  width: 100%;
  background-color: var(--main-color);
  color: #fff;
  border-radius: 100px;
  line-height: 1;
  padding: 1.5rem 1rem;
  text-decoration: none;
  text-align: center;
  background-repeat: no-repeat;
  background-position: top 50% left 20px;
  background-size: auto 50%;
}
.create .input .inner .btn .col:nth-of-type(1) button {
  background-image: url(../img/common/icon_reference.svg);
}
/* textarea用のスタイル */
.create .input .inner .textarea-wrapper {
  position: relative; /* 文字数カウンターを絶対配置するための基準点 */
}
.create .input .inner .txt-area {
  width: 100%;                  /* 横幅を親要素に合わせる */
  min-height: 180px;            /* テキストエリアの初期の高さ */
  padding: 1rem;
  padding-bottom: 30px;         /* カウンターと重ならないように下の余白を確保 */
  border: 1px solid #ccc;
  border-radius: 3px;
  resize: vertical;             /* 縦方向のみリサイズ可能にする */
  box-sizing: border-box;
  font-size: 1rem;
  line-height: 1.6;
  font-family: inherit;         /* 親要素のフォントを継承 */
}
.create .input .inner .textarea-wrapper .count {
  position: absolute;           /* 絶対配置で */
  bottom: 10px;                 /* 下からの位置を指定 */
  right: 15px;                  /* 右からの位置を指定 */
  text-align: right;
}
.create .input .inner .textarea-wrapper .count span {
  background-color: #999;
  color: #fff;
  line-height: 1;
  border-radius: 100px;
  padding: 5px 10px;
  font-size: 0.8rem;
}
/* textarea用のスタイル */


/*-------------------------------
measurement
---------------------------------*/
.measurement .sns_history dl > div {
  border-bottom: 1px solid #ccc;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
  padding: 1rem 0;
  background-image: url(../img/common/icon_sns_history.svg);
  background-repeat: no-repeat;
  background-position: top 50% left 0;
  background-size: auto 50%;
  padding-left: 50px;
}
@media screen and (max-width: 767px) {
  .measurement .sns_history dl > div {
    grid-template-columns: 1fr;
  }
}
.measurement .sns_history dl > div dd {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 10px;
}
.measurement .sns_history dl > div dd span {
  width: 90px;
  font-size: 0.8rem;
  background-color: #999;
  color: #fff;
  border-radius: 100px;
  display: block;
  padding: 5px 10px;
  text-align: center;
  line-height: 1;
}
.measurement .sns_history dl > div dd span.comp {
  background-color: #2fa55d;
  background-image: url(../img/common/icon_sns_comp.svg);
  background-repeat: no-repeat;
  background-position: top 50% left 10px;
  background-size: auto 40%;
  padding-left: 18px;
}
.measurement .sns_history dl > div dd a {
  width: 90px;
  font-size: 0.8rem;
  background-color: #333;
  color: #fff;
  border-radius: 100px;
  display: block;
  padding: 5px 10px;
  text-align: center;
  line-height: 1;
  text-decoration: none;
}
.measurement .sns_history .btn {
  margin-top: 2rem;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
}
.measurement .sns_history .btn a {
  background-color: var(--main-color);
  color: #fff;
  border-radius: 100px;
  line-height: 1;
  padding: 1rem 2rem;
  display: block;
  text-decoration: none;
}
.measurement .sns_history .month_list ul {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px 10px;
}
.measurement .sns_history .month_list ul li a {
  line-height: 1;
  padding: 5px;
  text-decoration: none;
}
.measurement .sns_history .month_list ul li.current a {
  background-color: var(--main-color);
  color: #fff;
}
.measurement .sns_history h3.month_title {
  font-size: 1rem;
  margin-top: 1rem;
  background-color: #eee;
  line-height: 1;
  padding: 10px;
}
.measurement .sns_history h3:first-child {
  margin-top: 0;
}
.measurement .sns_alignment .inner .status {
  margin-bottom: 0.5rem;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px 10px;
}
.measurement .sns_alignment .inner .status span {
  width: 80px;
  font-size: 0.8rem;
  background-color: #999;
  color: #fff;
  border-radius: 100px;
  display: block;
  padding: 5px 10px;
  text-align: center;
  line-height: 1;
}
.measurement .sns_alignment .inner .status span.comp {
  background-color: #2fa55d;
  background-image: url(../img/common/icon_sns_comp.svg);
  background-repeat: no-repeat;
  background-position: top 50% left 10px;
  background-size: auto 40%;
}
.measurement .sns_alignment .inner .date {
  margin-bottom: 1rem;
}
.measurement .sns_alignment .inner > p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.measurement .sns_alignment .inner .input_url {
  display: grid;
  grid-template-columns: 1fr 20%;
  grid-gap: 20px;
  justify-items: flex-start;
  align-items: flex-start;
}
.measurement .sns_alignment .inner .input_url input[type=text] {
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%;
  background-color: #f6f6f6;
  padding: 1rem;
  line-height: 1;
}
.measurement .sns_alignment .inner .input_url input[type=submit] {
  width: 100%;
  background-color: var(--main-color);
  background-image: url(../img/common/icon_script_create.svg);
  background-repeat: no-repeat;
  background-position: top 50% left 20px;
  background-size: auto 40%;
  color: #fff;
  border-radius: 100px;
  border: none;
  padding: 1rem;
  padding-left: 3rem;
  line-height: 1;
  cursor: pointer;
}

/*-------------------------------
account
---------------------------------*/
.account .profile .inner {
  text-align: left;
}
.account .profile .inner .user {
  display: grid;
  grid-template-columns: 140px 1fr;
  grid-gap: 50px;
  justify-items: flex-start;
  align-items: flex-start;
}
.account .profile .inner .user .img {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 5px;
  overflow: hidden;
}
.account .profile .inner .user .txt {
  width: 100%;
}
.account .profile .inner .user .txt span {
  color: #333;
}
.account .profile .inner .user .txt p {
  margin-top: 1.5rem;
  font-size: 1.2rem;
}
.account .profile .inner dl {
  margin-top: 3rem;
}
.account .profile .inner dl div {
  display: grid;
  grid-template-columns: 200px 1fr;
  grid-gap: 10px;
  justify-items: flex-start;
  align-items: center;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 767px) {
  .account .profile .inner dl div {
    grid-template-columns: 1fr;
  }
}
.account .profile .inner dl div dd {
  width: 100%;
}
.account .profile .inner dl div dd input {
  padding: 0.7rem;
  box-sizing: border-box;
  width: 100%;
  background-color: #eef2f5;
  border: 1px solid #999;
}
.account .profile .inner dl div dd a {
  color: var(--main-color);
  display: inline-block;
  margin-left: 20px;
}
.account .profile .inner .btn {
  text-align: center;
  margin-top: 2rem;
}
.account .profile .inner .btn a {
  /*display: block;*/
  max-width: 200px;
  background: var(--main-color);
  color: #fff;
  border-radius: 100px;
  margin: auto;
  padding: 0.5rem;
  text-decoration: none;
}

/*-------------------------------
setting
---------------------------------*/
.setting .pay .inner .type {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-columns: 1fr;
  grid-gap: 20px;
  justify-items: flex-start;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .setting .pay .inner .type {
    grid-template-columns: 1fr;
  }
}
.setting .pay .inner .type .col {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 1.5rem 2rem;
}
.setting .pay .inner .type .col h3 {
  font-size: 1.2rem;
  font-weight: normal;
  margin-bottom: 1rem;
}
.setting .pay .inner .type .col .status {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
}
.setting .pay .inner .type .col .status span {
  border: 1px solid var(--main-color);
  border-radius: 100px;
  display: block;
  font-size: 0.8rem;
  padding: 5px 10px;
  line-height: 1;
}
.setting .pay .inner .type .col .status span.comp {
  background-color: var(--main-color);
  color: #fff;
}
.setting .pay .inner .type .col .btn {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 1rem;
}
.setting .pay .inner .type .col .btn a {
  background-color: var(--main-color);
  color: #fff;
  border-radius: 100px;
  text-decoration: none;
  padding: 5px 20px;
}
.setting .pay .inner .history_list {
  margin-top: 2rem;
}
.setting .pay .inner .history_list a {
  color: var(--main-color);
  padding-left: 30px;
  background-image: url(../img/common/icon_history_list.svg);
  background-repeat: no-repeat;
  background-position: top 20% left 0;
  background-size: auto 100%;
}
.setting .pay .inner .pro {
  margin-top: 2rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 2rem;
  display: grid;
  grid-template-columns: 40% 1fr;
  grid-gap: 10px;
  justify-items: flex-start;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .setting .pay .inner .pro {
    grid-template-columns: 1fr;
  }
}
.setting .pay .inner .pro .txt {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .setting .pay .inner .pro .txt {
    text-align: center;
  }
}
.setting .pay .inner .pro .txt p {
  font-size: 1.2rem;
  font-weight: normal;
}
.setting .pay .inner .pro .btn {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 10px 10px;
}
@media screen and (max-width: 767px) {
  .setting .pay .inner .pro .btn {
    justify-content: center;
  }
}
.setting .pay .inner .pro .btn a {
  display: block;
  border: 1px solid #ccc;
  border-radius: 100px;
  line-height: 1;
  padding: 0.5rem 1rem;
  text-decoration: none;
}
.setting .pay .inner .pro .btn a:hover {
  border: 1px solid var(--main-color);
  background-color: var(--main-color);
  color: #fff;
}