@charset "UTF-8";
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
}
body {
  margin: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-style: normal;
  line-height: 1;
}
img {
  width: 100%;
  display: inline-block;
  vertical-align: bottom;
}
a {
  color: #000;
  text-decoration: none;
}
a:hover {
  opacity: .9;
}
input,
textarea,
select,
button {
  font: inherit;
  color: inherit;
  background: transparent;
  border: solid 1px #5d5d5d;
  border-radius: 8px;
  padding: 10px 15px;
  margin: 0;
  line-height: inherit;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  vertical-align: middle;
  box-sizing: border-box;
  width: 100%;
  display: block;
}
input::placeholder,
textarea::placeholder,
select::placeholder {
  color: #ababab;
}
input[type="checkbox"]#humtoggle {
  display: none;
}
figure {
  margin: 0;
}
.roboto {
  font-family: "Roboto", sans-serif;
}
.mincho {
  font-family: "Zen Old Mincho", serif;
}



.pc {
  display: none !important;
}
.sp {
  display: block !important;
}

.inner {
  max-width: 1200px;
  padding: 50px min(50px, 5vw);
  margin: 0 auto;
}

.header {
  position: fixed;
  width: 100%;
  z-index: 5;
  top: 0;
  left: 0;
  transition: .3s;
}
.header.scrolled {
  background-color: #0b1a1bcc;
}
.header_copy {
  display: block;
  color: #fff;
  font-size: 10px;
  line-height: 1.2;
  margin-top: 3px;
  width: 100%;
}
.header .inner {
  padding: 10px min(50px, 5vw);
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: none;
}
.header_logo {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.header_logo img {
  width: 25px;
  margin-right: 5px;
}
.header_logo h1 {
  color: #fff;
  font-size: 16px;
  font-weight: 900;
}
.humlabel {
  display: block;
  width: 50px;
  height: 23px;
  position: relative;
  z-index: 11;
}
.btn-trigger {
  position: relative;
  cursor: pointer;
}
.hummenu .btn-trigger{
  margin: 0 0 30px auto;
}
.btn-trigger span {
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #fff;
  border-radius: 4px;
}
.btn-trigger,
.btn-trigger span {
  display: block;
  transition: all .5s;
  box-sizing: border-box;
  width: 100%;
}
.btn-trigger span:nth-of-type(1) {
  top: 0;
}
.btn-trigger span:nth-of-type(2) {
  top: 10px;
  margin: 7px 0px;
}
.btn-trigger span:nth-of-type(3) {
  bottom: 0;
}
.btn-trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(-45deg);
  transform: translateY(10px) rotate(-45deg);
}
.btn-trigger.active span:nth-of-type(2) {
  left: 50%;
  opacity: 0;
  -webkit-animation: active-btn05-bar02 .8s forwards;
  animation: active-btn05-bar02 .8s forwards;
}
@-webkit-keyframes active-btn05-bar02 {
  100% {
    height: 0;
  }
}
@keyframes active-btn05-bar02 {
  100% {
    height: 0;
  }
}
.btn-trigger.active span:nth-of-type(3) {
  -webkit-transform: translateY(0px) rotate(45deg);
  transform: translateY(0px) rotate(45deg);
}
.hummenu {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  width: 0%;
  height: 100vh;
  background-color: rgba(0, 0, 0, .95);
  padding: 70px 0 10px;
  z-index: 10;
  transition: .2s;
}
input[type="checkbox"]#humtoggle:checked ~ .hummenu {
  width: 90%;
}
.humlinks {
  color: #fff;
  display: block;
  width: 100%;
  padding: 15px 20px;
  border-top: solid 1px #666;
}
.humlinks:hover:before {
  width: 45px;
}

.mvarea {
  position: relative;
}
.mv_main {
      color: #fff;
    position: absolute;
    bottom: 0vh;
    left: 0%;
    width: 100%;
    padding: 15px;
    background: linear-gradient(0deg, #0f191a, transparent);
}
.mv_main .large {
  font-size: 40px;
  font-weight: 900;
  padding: 15px 0;
  display: block;
}
.mv_main .small {
  font-size: 14px;
  line-height: 1.8;
  padding: 15px 0;
}
.mv_point {
  width: 100%;
  margin: 3px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}
.mv_point li {
  position: relative;
}
.mv_point li img {
    filter: brightness(.8);
    height: 90px;
    object-fit: cover;
}
.mv_point li p {
  font-size: 14px;
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  color: #fff;
  padding: 10px;
  width: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, .5), transparent);
}
.mv_catch {
  color: #fff;
}
.mv_catch p {
  font-size: 10vw;
  font-weight: 900;
  line-height: 1.2;
}
.mv_catch p span {
  display: block;
  font-size: 52%;
  font-weight: 500;
  padding-left: 1%;
}
.mvimage {
  height: 100vh;
  object-fit: cover;
}

@media screen and (min-width:769px) {

.pc {
  display: block !important;
}
.sp {
  display: none !important;
}
.header_copy {
  font-size: 12px;
}
.header_logo img {
  width: 30px;
}
.header_logo h1 {
  font-size: 18px;
}
.mvarea {
  background-position: 35% center;
}
.mv_main {
  text-align: left;
  top: 50%;
  left: 50%;
  bottom: inherit;
  transform: translate(-80%, -50%);
  width: auto;
  padding: 0;
  background: none;
}
.mv_main .large {
  font-size: 60px;
}
.mv_main .midium {
  font-size: 24px;
}
.mv_main .small {
  font-size: 16px;
}
.mv_point {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.mv_catch p {
  font-size: 4vw;
  letter-spacing: 5px;
}
.mv_catch p span {
  letter-spacing: 0px;
}
.mv_point li img {
    height: 150px;
}
.mv_point li p {
    font-size: 1.4vw;
    padding: 1vw;
}
input[type="checkbox"]#humtoggle:checked ~ .hummenu {
    width: 350px;
    padding: 5em 1.5em 20px;
}
}




.section_ttl {
  margin-bottom: 30px;
  text-align: center;
}
.section_ttl.ver2 {
  background-color: #242424;
  color: #fff;
  text-align: center;
  padding: 30px 0;
  margin: 0;
}
.section_ttl span {
  font-size: 30px;
  font-weight: 900;
  display: block;
}
.section_ttl h2 {
  font-size: 16px;
  font-weight: 300;
  display: block;
  letter-spacing: 10%;
  margin-top: 10px;
  line-height: 1.4;
}
.section_ttl p {
  font-size: 12px;
  line-height: 1.4;
  color: #5D5D5D;
  margin-top: 10px;
}
.orderform_child label {
  display: flex;
  font-weight: 700;
  margin-bottom: 8px;
  align-items: center;
}
.orderform_child label.required:before {
  content: "※";
  color: #d60000;
  font-size: 10px;
  margin-right: 3px;
}
.orderform_child input,
.orderform_child textarea {
  margin-bottom: 15px;
}
.orderform_child textarea {
  min-height: 120px;
}
button,
input[type="submit"],
input[type="button"] {
  background-color: #00B7B4;
  color: #fff;
  border: none;
  font-weight: 700;
  padding: 20px 0;
  margin: 0 auto;
  display: block;
  border-radius: 10000px;
}
.cresit_list {
  display: block;
  width: 215px;
  margin: 15px auto 0;
}




.lineup {
  background-image: url(../img/lineup-bk.jpg);
  background-size: cover;
}
.lineup .section_ttl {
  color: #fff;
  text-align: left;
}
.lineup .item_list li,
.lineup .item_list a {
  margin: 0 10px;
}
.item_list li .item_list_child,
.item_list a .item_list_child {
  position: relative;
  margin-bottom: 20px;
}
.item_list a p.abso_num {
  content: "";
  font-family: roboto;
  content: "01";
  line-height: 1;
  position: absolute;
  bottom: 0px;
  right: 5px;
  font-size: 110px;
  font-weight: 700;
  color: #fff;
  opacity:.9;
}
.voice_src .item_list li .item_list_child:after,
.voice_src .item_list a .item_list_child:after {
  display: none;
}
.item_list li .item_list_child img,
.item_list a .item_list_child img {
  border-radius: 20px;
  max-height: 400px;
  min-height: 270px;
  object-fit: cover;
}
.lineup .item_list li .item_list_child img,
.lineup .item_list a .item_list_child img,
.works .item_list li .item_list_child img,
.works .item_list a .item_list_child img {
  height: 350px;
  object-fit: cover;
}
.item_list li h3,
.item_list a h3 {
  color: #fff;
  font-size: 24px;
  display: block;
  margin-bottom: 10px;
}
.item_list li p,
.item_list a p {
  color: #fff;
  font-size: 12px;
  line-height: 1.8;
}



.support,
.tips_sec1 {
  background-color: #020201;
}
.support {
  background-image: url(../img/support-bk.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.support .section_ttl,
.tips_sec1 .section_ttl {
  color: #fff;
}
.support .inner,
.tips_sec1 .inner {
  padding: 50px 0 10px;
}
.service_info .inner,
.guide_list .inner{
  padding: 0;
}



.item_list2 li .item_list_info {
  padding: 40px min(50px, 5vw);
  color: #fff;
}
.tips_sec2 .item_list2 li .item_list_info {
  padding: 40px 0;
}
.item_list2 li .item_list_info h3 {
  margin-bottom: 15px;
  font-size: 24px;
}
.item_list2 li .item_list_info p {
  color: #ddd;
  font-size: 14px;
  line-height: 1.4;
}
.item_list2 li .item_list_info p.subtxt {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  margin-bottom: 5px;
}
.item_list2 li .item_list_info .price {
  display: flex;
  align-items: center;
  padding: 20px 0;
  gap: 10px;
}
.item_list2 li .item_list_info .price b {
  background-color: #00B7B4;
  color: #fff;
  font-size: 10px;
  line-height: 1.1;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.item_list2 li .item_list_info .price p {
  font-size: 24px;
  font-weight: 700;
  color: #000 !important;
}
.item_list2 li .item_list_info .price p span {
  font-weight: 500;
  font-size: 12px;
}
.mintxt {
  font-size: 10px;
  line-height: 1.2;
  display: block;
}


.item_list2.white li .item_list_info {
  color: #000;
}
.item_list2.white li .item_list_info p {
  color: #5D5D5D;
}
.item_list2.white li .item_list_info b.chip {
  background-color: #00B7B4;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  width: 80px;
  text-align: center;
  padding: 5px 0;
  display: block;
  margin: 10px 0 5px;
  border-radius: 5px;
}

@media screen and (min-width:769px) {
.item_list2 li .item_list_info .price b {
  font-size: 16px;
  width: 50px;
  height: 50px;
}
.lineup .item_list li .item_list_child img,
.lineup .item_list a .item_list_child img,
.works .item_list li .item_list_child img,
.works .item_list a .item_list_child img {
    height: 550px;
}
}



.servicelist .section_ttl,
.labellist .section_ttl,
.tips_sec2 .section_ttl {
  text-align: left;
}
.servicelist_child a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: solid 1px #dedede;
  padding: 25px 15px;
}
.labellist_child label {
  border-top: solid 1px #dedede;
  padding: 25px 15px;
  display: block;
}
.servicelist_child a:last-child,
.labellist_child label:last-child {
  border-bottom: solid 1px #dedede;
}
.servicelist_child .servicelist_child_info,
.faq .labellist_child_info_ttl {
  width: calc(100% - 30px - 10px);
}
.servicelist_child .servicelist_child_info h3,
.labellist_child .labellist_child_info h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
.servicelist_child .servicelist_child_info p,
.labellist_child .labellist_child_info p {
  font-size: 12px;
  color: #5d5d5d;
  line-height: 1.4;
}
.servicelist_child img,
.labellist_child img {
  width: 30px;
}
.section_linkbtn {
  display: block;
  width: 250px;
  background-color: #242424;
  color: #fff;
  text-align: center;
  padding: 18px 0;
  border-radius: 10000px;
  margin: 30px auto 0;
  font-weight: 500;
}
.lineup .section_linkbtn {
  background-color: rgba(0,0,0,0);
  color: #fff;
  border: solid 1px #fff;
}
.lineup .section_linkbtn:hover {
  background-color: #fff;
  color: #242424;
}


.offcomment b {
  color: #00B7B4;
  font-size: 22px;
  display: block;
  text-align: center;
  margin-bottom: 20px;
}
.offcomment p {
  background-color: #00B7B4;
  padding: 20px;
  color: #fff;
  border-radius: 5px;
  line-height: 1.8;
  font-weight: bold;
}
.offcomment p span {
  display: block;
  font-weight: 300;
  font-size: 12px;
  margin-top: 15px;
}

.plan {
  background-color: #fcfcfc;
}
.item_list3 li {
  margin-top: 20px;
  border-radius: 20px;
  overflow: hidden;
  border:solid 1px #E5E5E5;
  background-color: #fff;
}
.item_list3 .item_list_info {
  padding: 30px min(50px, 5vw);
}
.item_list3 .item_list_info .plan_name {
  font-size: 28px;
  font-weight: 900;
  display: block;
}
.item_list3 .item_list_info h3 {
  font-size: 14px;
  font-weight: 500;
  padding: 12px 0;
}
.item_list3 .item_list_info p {
  font-size: 12px;
  color: #5d5d5d;
  line-height: 160%;
}
.item_list3 .item_list_info .plan_price {
  font-size: 12px;
  font-weight: 500;
  margin-top: 20px;
  display: block;
}
.item_list3 .item_list_info .plan_price span {
  font-weight: 700;
  font-size: 24px;
}


.labellist_child .labellist_child_info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.labellist_child .labellist_child_info .labellist_child_info_ttl_child h3 {
  margin-bottom: 0;
}
.servicelist_child a:hover,
.labellist_child label:hover {
  background-color: #f9f9f9;
}
.servicelist_child a:hover h3,
.labellist_child label:hover h3 {
  color: #00B7B4;
}
.labellist_child .labellist_child_info .labellist_child_info_ttl_child span {
  color: #454545;
  font-size: 12px;
}
.labellist_child .labellist_child_info_ttl {
  display: flex;
  align-items: center;
}
.labellist_child .labellist_child_info_ttl p {
  color: #00B7B4;
  font-size: 30px;
  font-weight: 700;
  margin-right: 10px;
}
.labellist_child_info .labellist_child_info_txt {
  margin-top: 15px;
  display: none;
  transition: .3s;
}
input[type="checkbox"]#order01:checked ~ .labellist_child_info .labellist_child_info_txt,
input[type="checkbox"]#order02:checked ~ .labellist_child_info .labellist_child_info_txt,
input[type="checkbox"]#order03:checked ~ .labellist_child_info .labellist_child_info_txt,
input[type="checkbox"]#order04:checked ~ .labellist_child_info .labellist_child_info_txt,
input[type="checkbox"]#order05:checked ~ .labellist_child_info .labellist_child_info_txt {
  display: block;
}
input[type="checkbox"]#order01:checked ~ .labellist_child_info img,
input[type="checkbox"]#order02:checked ~ .labellist_child_info img,
input[type="checkbox"]#order03:checked ~ .labellist_child_info img, 
input[type="checkbox"]#order04:checked ~ .labellist_child_info img,
input[type="checkbox"]#order05:checked ~ .labellist_child_info img {
  transform: rotate(180deg);
}



.voice,.voice_src_result {
  background-color: #242424;
}
.voice .section_ttl {
  color: #fff;
  text-align: left;
}
.voice .item_list a .item_list_child:after {
  display: none;
}
.voice .item_list a h3 {
  font-size: 20px;
  line-height: 1.4;
}
.voice .item_list a p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.voice .section_linkbtn {
  border:solid 1px #fff;
}
.item_list_tags {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
  flex-wrap: wrap;
}
.item_list li .item_list_tags,
.item_list a .item_list_tags {
  margin-bottom: 10px;
}
.item_list li .item_list_tags p,
.item_list a .item_list_tags p {
  display: inline-block;
  background-color: #00B7B4;
  color: #fff;
  font-size: 10px;
  line-height: 1;
  padding: 5px 10px;
  border-radius: 3px;
}
.voice .item_list,
.works .item_list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media screen and (min-width:769px) {
  .item_list a p.abso_num {
    font-size: 140px;
  }
  .voice .item_list,
  .works .item_list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
  }
  .voice .item_list li .item_list_child img,
  .voice .item_list a .item_list_child img {
    height: 200px;
    object-fit: cover;
  }
}

.works {
  background-color: #fff;
  background-image: url(../img/works-bk.png);
  background-size: cover;
  background-repeat: no-repeat;
}
.works .section_ttl {
  text-align: left;
}
.works .item_list li h3,
.works .item_list li p,
.works .item_list a h3,
.works .item_list a p {
  color: #000;
}
.works .section_linkbtn {
    background-color: #f6f6f6;
    color: #000000;
    border:solid 1px #000;
}
.works .item_list li .item_list_tags p,
.works .item_list a .item_list_tags p {
  color: #fff;
}

input[type="checkbox"]#faq01:checked ~ .labellist_child_info .labellist_child_info_txt,
input[type="checkbox"]#faq02:checked ~ .labellist_child_info .labellist_child_info_txt,
input[type="checkbox"]#faq03:checked ~ .labellist_child_info .labellist_child_info_txt,
input[type="checkbox"]#faq04:checked ~ .labellist_child_info .labellist_child_info_txt,
input[type="checkbox"]#faq05:checked ~ .labellist_child_info .labellist_child_info_txt,
input[type="checkbox"]#faq06:checked ~ .labellist_child_info .labellist_child_info_txt,
input[type="checkbox"]#faq07:checked ~ .labellist_child_info .labellist_child_info_txt,
input[type="checkbox"]#faq08:checked ~ .labellist_child_info .labellist_child_info_txt,
input[type="checkbox"]#faq09:checked ~ .labellist_child_info .labellist_child_info_txt,
input[type="checkbox"]#faq10:checked ~ .labellist_child_info .labellist_child_info_txt,
input[type="checkbox"]#faq11:checked ~ .labellist_child_info .labellist_child_info_txt,
input[type="checkbox"]#faq12:checked ~ .labellist_child_info .labellist_child_info_txt,
input[type="checkbox"]#faq13:checked ~ .labellist_child_info .labellist_child_info_txt {
  display: block;
}
input[type="checkbox"]#faq01:checked ~ .labellist_child_info img,
input[type="checkbox"]#faq02:checked ~ .labellist_child_info img,
input[type="checkbox"]#faq03:checked ~ .labellist_child_info img, 
input[type="checkbox"]#faq04:checked ~ .labellist_child_info img,
input[type="checkbox"]#faq05:checked ~ .labellist_child_info img,
input[type="checkbox"]#faq06:checked ~ .labellist_child_info img,
input[type="checkbox"]#faq07:checked ~ .labellist_child_info img,
input[type="checkbox"]#faq08:checked ~ .labellist_child_info img, 
input[type="checkbox"]#faq09:checked ~ .labellist_child_info img,
input[type="checkbox"]#faq10:checked ~ .labellist_child_info img,
input[type="checkbox"]#faq11:checked ~ .labellist_child_info img,
input[type="checkbox"]#faq12:checked ~ .labellist_child_info img,
input[type="checkbox"]#faq13:checked ~ .labellist_child_info img {
  transform: rotate(180deg);
}

.faq .labellist_child .labellist_child_info .labellist_child_info_ttl_child h3 {
  font-size: 16px;
  display: flex;
}
.faq .labellist_child .labellist_child_info .labellist_child_info_ttl_child h3:before {
  content:"Q.";
  color: #00B7B4;
}





.bottom_fixed_btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: solid 1.5px #000;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 5;
}
.bottom_fixed_btns a {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  padding: 12px 0;
}
.bottom_fixed_btns a.form {
  background-color: #fff;
}
.bottom_fixed_btns a.tel {
  background-color: #00B7B4;
  color: #fff;
}
.bottom_fixed_btns a img {
  margin-right: 5px;
}
.bottom_fixed_btns a.form img {
  width: 18px;
}
.bottom_fixed_btns a.tel img {
  width: 15px;
}
.bottom_fixed_btns a b {
  font-size: 14px;
  display: block;
}
.bottom_fixed_btns a p {
  font-size: 12px;
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 5px;
}

@media screen and (min-width:769px) {
.works {
  background-size: contain;
}
.servicelist_child .servicelist_child_info p, .labellist_child .labellist_child_info p {
    font-size: 16px;
}
.faq .labellist_child .labellist_child_info .labellist_child_info_ttl_child h3 {
    font-size: 22px;
    line-height: 1.2;
}
.bottom_fixed_btns {
    display: flex;
    justify-content: center;
    background-color: rgba(0, 0, 0, .8);
    padding: 10px 0;
    gap: 10px;
}
.bottom_fixed_btns a {
    padding: 15px 0;
    border-radius: 10000px;
}
.bottom_fixed_btns a b {
    font-size: 20px;
}
.bottom_fixed_btns a p {
    font-size: 14px;
}
.bottom_fixed_btns a.form img {
    width: 23px;
}
.bottom_fixed_btns a.tel img {
    width: 18px;
}
}


.top_anchor {
  display: block;
  position: fixed;
  bottom: 70px;
  right: min(50px, 5vw);
  width: 50px;
}

.footer {
  background-color: #000;
}
.footer_logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.footer_logo img {
  width: 25px;
  margin-right: 5px;
}
.footer_logo h1 {
  color: #fff;
  font-size: 22px;
  font-weight: 900;
}

.footer .inner {
  padding-bottom: 70px;
}
.copy {
  color: #fff;
  display: block;
  text-align: center;
  font-size: 10px;
  margin-top: 50px;
}


.bottom_mv {
  position: relative;
  background-size: cover;
  background-position: center;
}
.bottom_mv .inner {
  background-color: rgba(0,0,0,0.75);
  padding: 100px min(50px, 5vw) 50px;
}
.bottom_mv .ttl {
  color: #fff;
}
.bottom_mv .ttl span {
  text-transform: uppercase;
  display: block;
  font-weight: 900;
  font-size: 38px;
  text-align: center;
}
.bottom_mv .ttl h1{
  font-size: 16px;
  text-align: center;
  padding: 20px 0;
}
.bottom_mv .ttl p {
  font-size: 12px;
  color: #DEDEDE;
  line-height: 1.8;
}

.item_list4 li h3 {
  background-color: #242424;
  color: #fff;
  text-align: center;
  padding: 15px 0;
  margin: 0;
}
.guide_list_child_info {
  padding: 30px min(50px, 5vw);
}
.guide_list_child_info dl {
  font-size: 14px;
}
.guide_list_child_info dl dd {
  padding: 7px 0 20px;
  line-height: 1.4;
}
.guide_list_child_info dl dd:last-child {
  padding: 7px 0 0;
}
.guide_list_child_examples {
  margin-top: 20px;
  border-bottom: solid 1px #ddd;
}
.guide_list_child_examples_child {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  border-top: solid 1px #ddd;
  padding: 20px 10px;
  align-items: center;
}
.guide_list_child_examples_child img {
  border-radius: 5px;
}
.guide_list_child_examples_child_info h4 {
  font-size: 16px;
}
.guide_list_child_examples_child_info p {
  color: #5d5d5d;
  font-size: 12px;
  margin-top: 5px;
  line-height: 1.2;
}





















@media screen and (min-width:769px) {
.inner {
    padding: 100px min(50px, 5vw);
}
.section_ttl span {
    font-size: 3.8em;
}
.section_ttl h2 {
    font-size: 20px;
    margin-top: 5px;
}

.support .section_ttl h2 br {
  display: none;
}
.support .inner,
.tips_sec1 .inner {
  padding: 100px min(50px, 5vw);
}
.support .inner {
  display: grid;
  grid-template-columns: 420px 1fr;
}
.support .section_ttl{
  text-align: left;
}
.item_list2,
.item_list3 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.support .item_list2 {
  grid-template-columns: 1fr 1fr;
}
.item_list2 li .item_list_info {
  padding: 20px 0px;
}
.item_list2 li .item_list_info h3 {
  margin-bottom: 10px;
  font-size: 22px;
}
.item_list3 .item_list_info {
    padding: 30px 20px;
}
.plan .inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.plan .item_list3 {
  grid-template-columns: 1fr;
}
.offcomment b {
  font-size: 32px;
}
.offcomment p {
    font-size: 24px;
    padding: 30px;
    border-radius: 10px;
    line-height: 1.4;
    text-align: center;
    position: sticky;
    top: 30vh;
}
.section_ttl.ver2 {
    padding: 50px 0;
}
.orderform_child {
  max-width: 700px;
  margin: 0 auto;
}

}

@media screen and (min-width:1120px) {
/*.item_list2,
.item_list3 {
  grid-template-columns: 1fr 1fr 1fr;
}*/
.labellist_child {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 20px;
}
.servicelist_child .servicelist_child_info h3,
.labellist_child .labellist_child_info h3 {
  font-size: 24px;
  margin-bottom: 10px;
}
.labellist_child label {
  padding: 20px 10px;
}
.labellist_child .labellist_child_info .labellist_child_info_ttl_child span {
  font-size: 14px;
  margin-top: 5px;
  display: block;
}
.labellist_child .labellist_child_info_ttl p {
  font-size: 50px;
}
}


@media screen and (min-width:769px) {
.service_info .inner,
.guide_list .inner {
  padding: 100px min(50px, 5vw);
}
.bottom_mv .ttl span {
  font-size: 5em;
  text-align: left;
}
.bottom_mv .ttl h1 {
  font-size: 24px;
  text-align: left;
}
.bottom_mv .ttl p {
  font-size: 16px;
  color: #DEDEDE;
  line-height: 1.8;
  width: 50%;
}
.bottom_mv .inner {
  padding: 150px 5vw 50px;
  max-width: none;
}
.bottom_mv .ttl {
  max-width: 1200px;
  margin: 0 auto;
}
.item_list4 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 50px;
}
.guide_list_child_info {
    padding: 30px 10px;
}
.item_list4 li h3 {
    font-size: 22px;
}
.guide_list_child_examples_child_info h4 {
    font-size: 20px;
}
.guide_list_child_examples_child_info p {
    font-size: 14px;
    margin-top: 7px;
    line-height: 1.3;
}

}




.src_form {
  background-color: #f9f9f9;
}
.src_form input[type="text"],
.src_form select {
  background-color: #fff;
}
.src_form_child {
  margin-bottom: 20px;
}
.src_form_child b {
  margin-bottom: 5px;
  display: block;
}
.src_result_list a {
  display: grid;
  grid-template-columns: 70px 1fr 10px;
  gap: 15px;
  padding: 25px 0;
  border-top: solid 1px #ddd;
  align-items: center;
}
.src_result_list a:after {
  content:"▶︎";
  color: #00B7B4;
  font-size: 10px;
}
.src_result_list a img {
  border-radius: 5px;
  height: 100%;
  object-fit: cover;
}
.plamitem_category {
  display: block;
  width: 160px;
  background-color: #00B7B4;
  color: #fff;
  text-align: center;
  font-size: 10px;
  padding: 4px 0;
  border-radius: 3px;
  margin-bottom: 2px;
}
.src_result_list a .info h3 {
  padding: 7px 0;
  line-height: 1;
}
.src_result_list a .info p {
  font-size: 12px;
  line-height: 1.2;
}
.search_result_info {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  justify-content: space-between;
}
.voice_src_result .search_result_info{
  color: #fff;
}
.search_result_info b {
  font-size: 16px;
  font-weight: 500;
  color: #696969;
}
.voice_src_result .search_result_info b {
  color: #dddddd;
}
.search_result_info_child strong {
  font-size: 130%;
  color: #e63c00;
}
.voice_src .src_result {
  background-color: #000;
}
.voice_src .search_result_info {
  color: #fff;
}
.voice_src .search_result_info b {
  color: #cfcfcf;
}
.works_src .item_list a h3,
.works_src .item_list a p {
  color: #000;
}
.works_src .item_list a p,
.works .item_list a p {
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  display: -webkit-box;
  line-clamp: 5;
}
.works_src .item_list .item_list_tags p {
  color: #fff;
}
.voice_src .item_list,
.works_src .item_list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.voice_src .item_list img {
  height: 200px;
  object-fit: cover;
}
.voice_src .item_list a p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.inner.gaiyo {
  display: grid;
  gap: 15px;
}
.inner.gaiyo p {
  font-weight: 500;
  line-height: 1.2;
  white-space: pre-wrap;
}
.inner.privacy p {
  line-height: 1.4;
}
.inner.privacy p span {
  display: block;
  font-weight: 500;
  font-size: 110%;
  margin: 30px 0 10px;
  border-bottom: solid 1px #888;
  padding-bottom: 5px;
}

@media screen and (min-width:769px) {
.src_form .inner {
  padding: 50px min(50px, 5vw);
}
.src_form form {
  display: grid;
  grid-template-columns: 250px 1fr 170px;
  align-items: center;
  gap: 10px;
}
.voice_src .src_form form,
.works_src .src_form form {
  grid-template-columns: 200px 200px 1fr 170px;
}
.src_form input[type="text"], .src_form select {
  height: 50px;
}
.src_result_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 20px;
}
.src_result_list a {
  grid-template-columns: 100px 1fr 16px;
  gap: 20px;
  padding: 25px;
}
.src_result_list a:after {
  font-size: 16px;
}
.plamitem_category {
  width: 170px;
  font-size: 11px;
  padding: 5px 0;
  margin-bottom: 2px;
}
.src_result_list a .info h3 {
  padding: 10px 0;
  line-height: 1;
  font-size: 24px;
}
.src_result_list a .info p {
  font-size: 14px;
}
.search_result_info {
  justify-content: flex-start;
  gap: 15px;
  font-size: 20px;
}
.voice_src .item_list,
.works_src .item_list {
  grid-template-columns: 1fr 1fr 1fr;
}

}



.single_layout .inner {
  display: grid;
  gap: 20px;
}
.single_layout .upper .name {
  font-size: 22px;
  text-align: center;
  margin-bottom: 20px;
  border-bottom: solid 1px #00B7B4;
  border-top: solid 1px #00B7B4;
  padding: 10px 0;
  color: #00B7B4;
}

.single_layout .lower .txt {
  font-size: 16px;
  line-height: 1.4;
  background-color: #f8f8f8;
  padding: 20px;
  white-space: pre-wrap;
}
.single_layout.voiceset .lower .txt {
  background-color: #fff;
  padding: 20px 0px;
}

.single_layout .lower .minttl {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-top: 30px;
  border-bottom: solid 1px #d3d3d3;
  padding-bottom: 5px;
  margin-bottom: 5px;
  color: #00B7B4;
}

.single_layout .lower .mintxt {
  font-size: 14px;
  line-height: 1.6;
}

.thanks_txt{
  text-align: center;
    line-height: 1.4;
    font-size: 14px;
}

@media screen and (min-width:769px) {
.single_layout .inner {
    gap: 40px;
    grid-template-columns: 400px 1fr;
}
.thanks_txt{
  font-size: 18px;
}
.single_layout .lower .name {
  font-size: 30px;
  text-align: left;
  margin-bottom: 20px;
  padding: 0;
  color: #00B7B4;
}
.single_layout .lower .mintxt {
    font-size: 16px;
    line-height: 1.6;
}


}

.grecaptcha-badge {
  bottom: 140px!important;
}