/* =================================
Reset
================================= */
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Remove default padding */
ul[class],
ol[class] {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul[class],
ol[class] {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    -webkit-animation-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
    -o-transition-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* =================================
Base
================================= */
html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP",sans-serif;
  color: #231815;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.71;
}

@media only screen and (max-width: 767px) {
  body {
    -webkit-text-size-adjust: 100%;
  }
}

/* content */
.container {
  max-width: 1030px;
  margin: 0 auto;
  padding: 0 15px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  background: #fff;
}

header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  min-height: 99px;
  padding: 11px 15px 15px;
}

@media only screen and (max-width: 767px) {
  header .container {
    min-height: 65px;
    padding: 3px 10px 0;
  }
}

header .logo {
  max-width: 187px;
  margin-left: -9px;
}

@media only screen and (max-width: 767px) {
  header .logo {
    max-width: 151px;
    margin-left: 0;
  }
}

header .logo img {
  width: 100%;
}

header .nav-toggle {
  display: none;
}

@media only screen and (max-width: 767px) {
  header .nav-toggle {
    display: block;
    position: absolute;
    top: 50%;
    right: 15px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    padding: 9px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
  }
}

@media only screen and (max-width: 767px) {
  header .nav-toggle > span {
    display: block;
    width: 22px;
    height: 2px;
    background: #006557;
    border-radius: 1px;
  }
}

header .nav-toggle > span + span {
  margin-top: 4px;
}

header .gnav {
  margin: auto 0 0 auto;
}

@media only screen and (max-width: 767px) {
  header .gnav {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: -100;
    width: 100%;
    height: 0;
    margin: 0;
    background: #fff;
    border-top: 1px solid #e7e7ea;
    opacity: 0;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
  }
}

@media only screen and (max-width: 767px) {
  header .gnav.active {
    z-index: 1;
    height: auto;
    opacity: 1;
  }
}

@media only screen and (max-width: 767px) {
  header .gnav.active .gnav-list {
    display: block;
  }
}

header .gnav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 767px) {
  header .gnav-list {
    display: none;
  }
}

header .gnav-list > li + li {
  margin-left: 3em;
}

@media only screen and (max-width: 767px) {
  header .gnav-list > li + li {
    margin: 0;
  }
}

header .gnav-list > li > a {
  color: #231815;
  font-size: 1.7rem;
  font-weight: 700;
  text-decoration: none;
}

@media only screen and (max-width: 767px) {
  header .gnav-list > li > a {
    display: block;
    padding: 21px 15px;
    font-size: 1.4rem;
  }
}

footer {
  padding: 30px 0 60px;
  background: url(../images/bg_footer_pc.png) no-repeat top center;
  background-size: cover;
}

@media only screen and (max-width: 767px) {
  footer {
    padding: 20px 0 30px;
    background-image: url(../images/bg_footer_sp.png);
  }
}

footer h3 {
  color: #fff;
  font-size: 2.5rem;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  footer h3 {
    font-size: 2.4rem;
  }
}

footer .address {
  margin-top: 25px;
}

footer .address > p {
  color: #fff;
  font-size: 1.5rem;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  footer .address > p {
    font-size: 1.4rem;
  }
}

footer .address > p + p {
  margin-top: 10px;
}

footer .address > p > a {
  color: #fff;
  text-decoration: none;
}

footer .copyright {
  margin-top: 220px;
  color: #e6e6e6;
  font-size: 1.5rem;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  footer .copyright {
    margin-top: 100px;
    font-size: 1rem;
  }
}

/* contents */
.commentagram-content {
  padding-top: 99px;
}

@media only screen and (max-width: 767px) {
  .commentagram-content {
    padding-top: 65px;
  }
}

.content-in {
  max-width: 1030px;
  margin: 0 auto;
  padding: 0 15px;
}

.btn-area {
  padding-top: 70px;
  padding-bottom: 80px;
}

@media only screen and (max-width: 767px) {
  .btn-area {
    padding-top: 25px;
    padding-bottom: 30px;
  }
}

.btn-commentagram {
  max-width: 640px;
  margin: 0 auto;
}

.btn-commentagram + .btn-commentagram {
  margin-top: 23px;
}

@media only screen and (max-width: 767px) {
  .btn-commentagram + .btn-commentagram {
    margin-top: 10px;
  }
}

.btn-commentagram.pamphlet > a {
  background: #f26b7a;
}

.btn-commentagram.commentagram > a {
  background: #33bab1;
}

.btn-commentagram.contact > a {
  background: #44af35;
}

.btn-commentagram > a {
  display: block;
  padding: 11.5px;
  border-radius: 10px;
  color: #fff;
  font-size: 2.8rem;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
}

@media only screen and (max-width: 767px) {
  .btn-commentagram > a {
    font-size: 1.6rem;
  }
}

.btn-commentagram > a.btn-arrow:after {
  display: inline-block;
  content: "";
  width: 0;
  height: 0;
  margin-left: 15px;
  border-style: solid;
  border-width: 12px 0 12px 18px;
  border-color: transparent transparent transparent #fff;
}

@media only screen and (max-width: 767px) {
  .btn-commentagram > a.btn-arrow:after {
    border-width: 7px 0 7px 12px;
  }
}

.kv > h1 {
  padding: 13px 15px;
  background: #44af35;
  text-align: center;
}

.kv > h1 > span {
  display: block;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.kv > h1 .catch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  top: 32px;
  left: -26px;
  -webkit-transform: rotate(-17deg);
  -ms-transform: rotate(-17deg);
  transform: rotate(-17deg);
  width: 143px;
  height: 143px;
  background: url(../commentagram/images/bg_bomb.png) no-repeat 0 0;
  background-size: contain;
  color: #fff;
  font-size: 1.7rem;
  line-height: 1.3;
}

@media only screen and (max-width: 767px) {
  .kv > h1 .catch {
    top: 55px;
    left: auto;
    right: -5px;
    width: 100px;
    height: 100px;
    font-size: 1.1rem;
  }
}

.kv > h1 small {
  display: block;
  color: #fff;
  font-size: 2.2rem;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .kv > h1 small {
    font-size: 1.4rem;
  }
}

.kv > h1 strong {
  display: block;
  font-size: 2.8rem;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .kv > h1 strong {
    font-size: 1.8rem;
  }
}

.kv > h1 strong br {
  display: none;
}

@media only screen and (max-width: 767px) {
  .kv > h1 strong br {
    display: block;
  }
}

.kv-wrap {
  min-height: 640px;
  padding: 30px 0 0;
  background: url(../commentagram/images/kv_pc.png) no-repeat center bottom;
  background-size: cover;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .kv-wrap {
    min-height: auto;
    padding: 40px 0 140px;
    background-image: url(../commentagram/images/kv_sp.png);
  }
}

.kv-wrap .logo {
  max-width: 495px;
  margin: 0 auto;
}

@media only screen and (max-width: 767px) {
  .kv-wrap .logo {
    max-width: calc(495 / 610 * 100vw);
  }
}

.kv-wrap .logo img {
  width: 100%;
}

.kv-wrap h2 {
  margin-top: 20px;
  font-size: 2.2rem;
}

@media only screen and (max-width: 767px) {
  .kv-wrap h2 {
    font-size: 1.4rem;
  }
}

.kv-wrap .read {
  margin-top: 20px;
  font-size: 1.6rem;
  line-height: 2;
}

@media only screen and (max-width: 767px) {
  .kv-wrap .read {
    font-size: 1rem;
  }
}

.movie {
  padding: 50px 0;
  background: #f1f2f2;
}

@media only screen and (max-width: 767px) {
  .movie {
    padding: 25px 0;
  }
}

.movie h2 small {
  display: block;
  font-size: 2rem;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .movie h2 small {
    font-size: 1.6rem;
  }
}

.movie h2 strong {
  display: block;
  font-size: 2.9rem;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .movie h2 strong {
    font-size: 2rem;
  }
}

.movie-box {
  max-width: 640px;
  margin: 10px auto;
}

.movie-box video {
  width: 100%;
}

.movie-box .notes {
  font-size: 1.4rem;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .movie-box .notes {
    font-size: 1rem;
  }
}

.merit h2 {
  position: relative;
  padding: 31.5px 15px;
  color: #fff;
  font-size: 2.8rem;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .merit h2 {
    padding: 10.5px 15px;
    font-size: 2rem;
  }
}

.merit h2.participant {
  background: #e98b76;
}

.merit h2.participant:after {
  display: block;
  content: "";
  position: absolute;
  top: 16px;
  right: calc(236 / 1400 * 100vw);
  width: 152px;
  height: 147px;
  background: url(../commentagram/images/illust_merit01.png) no-repeat 0 0;
  background-size: contain;
}

@media only screen and (max-width: 767px) {
  .merit h2.participant:after {
    top: -10px;
    right: 15px;
    width: 76px;
    height: 73px;
  }
}

.merit h2.management {
  margin-top: 75px;
  background: #34c8d6;
}

@media only screen and (max-width: 767px) {
  .merit h2.management {
    margin-top: 20px;
  }
}

.merit h2.management:after {
  display: block;
  content: "";
  position: absolute;
  top: 21px;
  left: calc(235 / 1400 * 100vw);
  width: 63px;
  height: 126px;
  background: url(../commentagram/images/illust_merit02.png) no-repeat 0 0;
  background-size: contain;
}

@media only screen and (max-width: 767px) {
  .merit h2.management:after {
    top: -10px;
    left: 25px;
    width: 31px;
    height: 63px;
  }
}

.merit .merit-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 75px;
}

@media only screen and (max-width: 767px) {
  .merit .merit-list {
    display: block;
    margin-top: 17px;
  }
}

.merit .merit-list.participant > dl {
  width: calc(100% / 4 - (30px / 4));
  background: #fbe8e4;
}

@media only screen and (max-width: 767px) {
  .merit .merit-list.participant > dl {
    width: 100%;
  }
}

.merit .merit-list.management > dl {
  width: calc(100% / 3 - (20px / 3));
  background: #d6f4f7;
}

@media only screen and (max-width: 767px) {
  .merit .merit-list.management > dl {
    width: 100%;
  }
}

.merit .merit-list > dl {
  padding: 15px;
}

@media only screen and (max-width: 767px) {
  .merit .merit-list > dl + dl {
    margin-top: 10px;
  }
}

.merit .merit-list > dl dt {
  font-size: 1.8rem;
  font-weight: bold;
}

.merit .merit-list > dl dd {
  margin-top: 5px;
}

.case-list .content-in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .case-list .content-in {
    display: block;
  }
}

.case-list > li {
  padding-top: 30px;
}

.case-list > li .text-wrap {
  max-width: 655px;
  padding: 70px 15px 0;
}

@media only screen and (max-width: 767px) {
  .case-list > li .text-wrap {
    max-width: none;
    padding: 0;
  }
}

.case-list > li .case-num {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  color: #808080;
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .case-list > li .case-num {
    position: static;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    font-size: 2rem;
  }
}

.case-list > li h2 {
  font-size: 1.8rem;
}

@media only screen and (max-width: 767px) {
  .case-list > li h2 {
    margin-top: 15px;
    font-size: 1.6rem;
  }
}

.case-list > li h2 > span {
  color: #44af35;
}

.case-list > li h2 + p {
  margin-top: 10px;
}

.case-list > li figure {
  margin: auto;
}

@media only screen and (max-width: 767px) {
  .case-list > li figure {
    margin-top: 10px;
  }
}

.case-list > li figure img {
  width: 100%;
}

.case-list > li:nth-child(odd) {
  background: #f1f2f2;
}

.case-list > li:nth-child(odd) .text-wrap {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

.case-list > li:nth-child(odd) figure {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

.case-list > li:nth-child(1) {
  padding-bottom: 59px;
}

@media only screen and (max-width: 767px) {
  .case-list > li:nth-child(1) {
    padding-bottom: 30px;
  }
}

.case-list > li:nth-child(1) figure {
  width: 166px;
  height: 151px;
}

.case-list > li:nth-child(2) {
  padding-bottom: 19px;
}

@media only screen and (max-width: 767px) {
  .case-list > li:nth-child(2) {
    padding-bottom: 30px;
  }
}

.case-list > li:nth-child(2) figure {
  width: 178px;
  height: 198px;
}

.case-list > li:nth-child(3) {
  padding-bottom: 24px;
}

@media only screen and (max-width: 767px) {
  .case-list > li:nth-child(3) {
    padding-bottom: 30px;
  }
}

.case-list > li:nth-child(3) figure {
  width: 174px;
  height: 192px;
}

.case-list > li:nth-child(4) {
  padding-bottom: 65px;
}

@media only screen and (max-width: 767px) {
  .case-list > li:nth-child(4) {
    padding-bottom: 30px;
  }
}

.case-list > li:nth-child(4) figure {
  width: 185px;
  height: 172px;
}

.webiner {
  padding: 30px 0 40px;
  background: #ebf5e6;
}

@media only screen and (max-width: 767px) {
  .webiner {
    padding: 25px 0;
  }
}

.webiner h2 {
  font-size: 2.5rem;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .webiner h2 {
    font-size: 2rem;
  }
}

.webiner-read {
  margin-top: 30px;
}

.webiner-read:after {
  content: "";
  display: table;
  clear: both;
}

.webiner-read h3 {
  font-size: 1.8rem;
}

@media only screen and (max-width: 767px) {
  .webiner-read h3 {
    font-size: 1.4rem;
  }
}

.webiner-read .image {
  float: right;
  width: 375px;
}

@media only screen and (max-width: 767px) {
  .webiner-read .image {
    width: 100px;
  }
}

@media only screen and (max-width: 767px) {
  .webiner-read .image.only-pc {
    display: none;
  }
}

.webiner-read .image.only-sp {
  display: none;
}

@media only screen and (max-width: 767px) {
  .webiner-read .image.only-sp {
    display: block;
  }
}

.webiner-read .image img {
  margin: 0 auto;
}

.webiner-read p {
  margin-top: 10px;
}

@media only screen and (max-width: 767px) {
  .webiner-read p {
    font-size: 1.1rem;
  }
}

.function {
  padding: 55px 0 70px;
  background: #d1d5d7;
}

@media only screen and (max-width: 767px) {
  .function {
    padding: 30px 0;
  }
}

.function h2 {
  color: #3e3a39;
  font-size: 2.4rem;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .function h2 {
    font-size: 2rem;
  }
}

.function-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 35px;
}

@media only screen and (max-width: 767px) {
  .function-wrap {
    display: block;
    margin-top: 30px;
  }
}

.function-item {
  width: calc(100% / 2 - 12.5px);
  padding: 0 15px;
}

@media only screen and (max-width: 767px) {
  .function-item {
    width: 100%;
    padding: 0;
  }
}

@media only screen and (max-width: 767px) {
  .function-item + .function-item {
    margin-top: 30px;
  }
}

.function-item h3 {
  font-size: 1.6rem;
}

.function-item table {
  width: calc(100% - 1em);
  margin: 15px 0 0 1em;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 1.2rem;
}

.function-item table th, .function-item table td {
  border: 1px solid #fff;
}

.function-item table thead th {
  padding: 7.5px 0;
  font-weight: bold;
  text-align: center;
}

.function-item table thead th:nth-child(1) {
  width: 250px;
  background: #9bcc82;
}

@media only screen and (max-width: 767px) {
  .function-item table thead th:nth-child(1) {
    width: 150px;
  }
}

.function-item table thead th:nth-child(2) {
  background: #9acaed;
}

.function-item table thead th:nth-child(3) {
  background: #f8c170;
}

.function-item table tbody tr th {
  padding: 4px 10px;
  background: #9bcc82;
  font-weight: normal;
  text-align: left;
}

.function-item table tbody tr td {
  padding: 4px 0;
  background: #9acaed;
  text-align: center;
}

.function-item table tbody tr td + td {
  background: #f8c170;
}

.function-item table tbody tr:nth-child(odd) th {
  background: #d7ebcd;
}

.function-item table tbody tr:nth-child(odd) td {
  background: #d7eaf8;
}

.function-item table tbody tr:nth-child(odd) td + td {
  background: #fce6c6;
}

.function-item dl {
  margin: 10px 0 0 1em;
}

.function-item dl dt {
  font-weight: bold;
}

.function-item dl dd {
  margin-top: 5px;
  padding-left: 1em;
  font-size: 1.2rem;
}

.function-item dl dd + dt {
  margin-top: 10px;
}

.contact-area {
  padding: 50px 0 70px;
  background: #f1f2f2;
}

@media only screen and (max-width: 767px) {
  .contact-area {
    padding: 30px 0;
  }
}

.contact-area .contact-in {
  max-width: 700px;
  margin: 0 auto;
}

@media only screen and (max-width: 767px) {
  .contact-area .contact-in {
    padding: 0 15px;
  }
}

.contact-area h2 {
  margin-bottom: 20px;
  font-size: 2.4rem;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .contact-area h2 {
    font-size: 2rem;
  }
}

.contact-area iframe {
  width: 100%;
  margin: 0;
  border: none;
}

.contact-form-title {
  font-size: 24px;
  font-weight: bold;
}

@media only screen and (max-width: 345px) {
  .contact-form-title {
    font-size: 20px;
  }
}

.contact-form-title.error {
  color: #ff0000;
}

.contact-form-notes {
  margin-bottom: 2em;
}

.contact-form-finish p + p {
  margin-top: 1em;
}

.contact-form-finish p.top-link {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}

@media only screen and (max-width: 345px) {
  .contact-form-finish p.top-link {
    text-align: left;
  }
}

.contact-form-finish p.top-link > a {
  color: #1a1a1a;
  text-decoration: none;
}

.contact-form-error {
  color: #ff0000;
}

.contact-form-error + p {
  margin-top: 1em;
}

.contact-form-content {
  max-width: 700px;
  margin: 20px auto;
}

.contact-form-item {
  display: table;
  width: 100%;
  border-bottom: 1px dotted #666;
}

@media only screen and (max-width: 345px) {
  .contact-form-item {
    display: block;
    padding: 15px 0;
  }
}

.contact-form-item > div {
  display: table-cell;
  vertical-align: middle;
  padding: 20px 0;
}

@media only screen and (max-width: 345px) {
  .contact-form-item > div {
    display: block;
    padding: 0;
  }
}

.contact-form-item .label {
  padding-right: 10px;
  font-size: 16px;
  font-weight: bold;
}

@media only screen and (max-width: 345px) {
  .contact-form-item .label {
    margin-bottom: 10px;
    padding-right: 0;
  }
}

.contact-form-item .label.indent {
  padding-left: 1em;
}

@media only screen and (max-width: 345px) {
  .contact-form-item .label.indent {
    padding-left: 0;
  }
}

.contact-form-item .label.textarea {
  vertical-align: top;
}

.contact-form-item .label .required {
  margin-left: 1em;
  color: #ff0000;
}

.contact-form-item .input {
  width: 440px;
}

@media only screen and (max-width: 345px) {
  .contact-form-item .input {
    width: 100%;
  }
}

.contact-form-item .input input[type="text"], .contact-form-item .input input[type="email"], .contact-form-item .input textarea {
  width: 100%;
  padding: 5px;
  background: #fff;
  border: 1px solid #666;
}

.contact-form-item .input textarea {
  height: 140px;
}

@media only screen and (max-width: 345px) {
  .contact-form-item .input label {
    display: block;
  }
}

.contact-form-item .input label + label {
  margin-left: 1em;
}

@media only screen and (max-width: 345px) {
  .contact-form-item .input label + label {
    margin: 1em 0 0;
  }
}

.contact-form-wrap {
  padding: 20px 0 15px;
  border-bottom: 1px dotted #666;
}

@media only screen and (max-width: 345px) {
  .contact-form-wrap {
    padding: 0;
  }
}

.contact-form-wrap .label-ex {
  font-size: 16px;
  font-weight: bold;
}

@media only screen and (max-width: 345px) {
  .contact-form-wrap .label-ex {
    padding-top: 15px;
  }
}

.contact-form-wrap .contact-form-item {
  border-bottom: none;
}

.contact-form-wrap .contact-form-item > div {
  padding: 5px 0;
}

@media only screen and (max-width: 345px) {
  .contact-form-wrap .contact-form-item > div {
    padding: 0;
  }
}

.contact-form-wrap .contact-form-item .label.indent {
  padding: 0 10px 0 1em;
}

@media only screen and (max-width: 345px) {
  .contact-form-wrap .contact-form-item .label.indent {
    padding: 0;
  }
}

.contact-error-list {
  margin: 1em 0;
}

.contact-error-list > li {
  color: #ff0000;
}

input.btn-main {
  width: 100%;
  padding: 10px;
  background: #24292e;
  border: none;
  border-radius: 10px;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
}

@media only screen and (max-width: 345px) {
  input.btn-main {
    font-size: 20px;
  }
}

input.back {
  width: 100%;
  padding: 10px;
  background: #aaa;
  border: none;
  border-radius: 10px;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
}

@media only screen and (max-width: 345px) {
  input.back {
    font-size: 20px;
  }
}

.contact-submit {
  max-width: 270px;
  margin: 60px auto 0;
}

@media only screen and (max-width: 345px) {
  .contact-submit {
    max-width: none;
    margin-top: 30px;
  }
}

.confirm-submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 60px;
}

@media only screen and (max-width: 345px) {
  .confirm-submit {
    display: block;
    margin-top: 30px;
  }
}

.confirm-submit form {
  display: block;
  width: 100%;
  max-width: 270px;
}

@media only screen and (max-width: 345px) {
  .confirm-submit form {
    max-width: none;
  }
}

.confirm-submit form + form {
  margin-left: 20px;
}

@media only screen and (max-width: 345px) {
  .confirm-submit form + form {
    margin: 20px 0 0;
  }
}
