@charset "utf-8";

* {
  margin: 0;
  padding: 0;
  font-family: 'ヒラギノ角ゴ Pro W3', Hiragino Kaku Gothic Pro, "メイリオ", Meiryo, Osaka, 'ＭＳ Ｐゴシック', MS PGothic, sans-serif;
  box-sizing: border-box;
}

.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;

  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;

  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;

  /* Support for IE. */
  font-feature-settings: 'liga';
}

html,
body {
  width: 100%;
  height: 100%;
  font-size: 16px;
  color: #333333;
  background-color: #ffffff;
  line-height: 1.6;
}

@media screen and (max-width: 500px) {

  html,
  body {
    font-size: 13px;
  }
}

body {
  display: flex;
  flex-direction: column;
}

a {
  color: currentColor;
  text-decoration: none;
}

a:hover {
  opacity: 0.6;
}

ul,
ol {
  padding-left: 1.5rem;
}

.header_logo {
  height: 60px;
  display: flex;
  justify-content: center;

}

.header_logo a {
  height: 100%;
  display: flex;
  align-items: center;
}

.header_logo a img {
  max-width: 100%;
}

.menu {
  display: flex;
  list-style: none;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1);
  padding-left: 0;
}

.menu li {
  flex: 1;
}

.menu li:hover {
  opacity: 0.9;
}

.menu li a {
  display: flex;
  flex-direction: column;
  padding: 8px 20px;
  text-align: center;
  font-size: 0.75rem;
  line-height: 1;
}

.menu li a:hover {
  opacity: 1;
}

@media screen and (max-width: 500px) {
  .menu li a {
    padding: 8px;
  }
}

.menu li a span {
  font-family: 'Material Icons Round';
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
}

.top-img img {
  width: 100%;
  height: auto;
}

.top-img,
.contents {
  width: 100%;
  max-width: 800px;
}

@media screen and (max-width: 800px) {
  .contents {
    padding: 0 20px;
  }
}

.news {
  border-bottom: 1px dashed #b9b9b9;
}

.news a {
  display: block;
  padding: 16px 8px;
}

.news a:hover {
  opacity: 1;
  background-color: #f9f9f9;
}

.news-top {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.news-top .tag {
  color: #ffffff;
  font-size: 0.75rem;
  padding: 2px 6px;
  margin-right: 8px;
  border-radius: 4px;
}

.news-top .date {
  display: flex;
  align-items: center;
  font-size: 0.75rem;
  font-weight: bold;
  margin-right: 8px;
}

.news .title {
  padding: 4px 0 0 1.2rem;
  position: relative;
}

.news .title::before {
  content: "\e5df";
  font-family: 'Material Icons Round';
  position: absolute;
  top: 2px;
  left: 0;
  font-size: 1.2rem;
  color: #c3c3c3;
}

.faq_box {
  margin-bottom: 24px;
}

.accordion {
  border: 1px solid #e9e9e9;
  border-bottom: 0px;
}

.accordion dt,
.accordion dd {
  position: relative;
  padding: 24px 24px 24px 60px;
}

.accordion dt {
  border-bottom: 1px solid #e9e9e9;
}

.accordion dt .material-icons-round {
  width: 16px;
  height: 16px;
  position: absolute;
  left: 32px;
}

.accordion dd {
  display: none;
  background-color: #f9f9f9;
  border-bottom: 1px solid #e9e9e9;
}

.tag_q,
.tag_a {
  position: absolute;
  top: 26px;
  left: 20px;
  width: 30px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  font-size: 0.8em;
}

.tag_q {
  background-color: #43a7ce;
}

.tag_a {
  background-color: #d13d3d;
}

footer {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.download_box {
  width: 100%;
  max-width: 800px;
  padding: 60px 0 32px 0;
}

@media screen and (max-width: 800px) {
  .download_box {
    padding: 48px 20px 32px 20px;
  }
}

.download_box ul {
  padding-left: 0;
  list-style: none;
}

.download_box li {
  font-size: 0.7rem;
  padding-left: 0.75rem;
  position: relative;
}

.download_box li::before {
  content: '※';
  position: absolute;
  top: 0;
  left: 0;
}

.download_link {
  width: 100%;
  text-align: center;
}

.download_link td {
  width: 50%;
  text-align: center;
}

.download_link img {
  width: auto;
  height: 60px;
  margin: 4px 8px;
}

@media screen and (max-width: 500px) {
  .download_link img {
    height: 45px;
  }
}

.copy {
  width: 100%;
  padding: 20px;
  text-align: center;
  font-size: 0.8rem;
}

.nocontents {
  color: #bababa;
  padding: 24px;
  background-color: #f9f9f9;
  border-radius: 8px;
  text-align: center;
}

.button_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

input[type="submit"],
.button_box .button,
.wp-block-button__link {
  font-size: 1.125em;
  border: none;
  text-decoration: none;
  color: #ffffff;
  padding: 16px 40px;
  border-radius: 40px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1);
}


/* ここから */
/*==================MailForm==================*/
.mail_form {
  width: 100%;
  float: left;
  margin-bottom: 32px;
}

.mail_form h4:first-child {
  margin-top: 0;
}

.mail_form h4 {
  font-weight: bold;
  margin-top: 24px;
  line-height: 1.7em;
}

.mail_form h4 span {
  font-size: 0.5em;
  padding: 5px;
  margin-left: 1%;
  background-color: #e14a2f;
  color: #fff;
  font-weight: normal;
}

.mail_form p {
  font-size: 0.8em;
}

.mail_form p.caution {
  font-size: 0.7em;
  text-decoration: underline;
  margin-bottom: 1%;
}

/*select css reset*/
.mail_form input[type="text"],
select,
textarea,
input[type="button"],
input[type="submit"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
}

.mail_form input[type="text"],
select,
textarea {
  border: 1px solid #e4e1e1;
  padding: 16px;
  font-size: 1em;
  background-color: #ffffff;
}

.mail_form input[type="text"] {
  width: 100%;
}

.mail_form select {
  width: 100%;
}

.mail_form select.yyyy,
select.mm,
select.dd,
select.hour {
  width: 20%;
  margin-bottom: 3%;
}

.mail_form textarea {
  width: 100%;
  height: 200px;
  font-size: 16px;
}

.mail_form .device_categories {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1%;
}

.mail_form .device_categories label {
  flex: 1 0 30%;
  max-width: 30%;
  border: 1px solid #e4e1e1;
  padding: 1%;
  font-size: 14px;
}

.mail_form .device_categories label>input {
  margin-right: 1ch;
}