:root {
  --spacing: 0.05em;
}

* {
  letter-spacing: var(--spacing);
}

html {
  font-size: 4.2vw;
  color-scheme: light;
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1vw;
  }
}
@media screen and (min-width: 1024px) {
  html {
    font-size: 10px;
  }
}
@media screen and (min-width: 1200px) {
  html {
    font-size: 10px;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.3rem;
  font-style: normal;
  font-weight: 400;
  font-optical-sizing: auto;
  line-height: 2;
  color: #000;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1024px) {
  body {
    font-size: 1.6rem;
  }
}

:where(a) {
  text-decoration: none;
}

:where(img) {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

[type=text],
[type=tel],
textarea {
  width: 100%;
  padding: 0.5rem;
  font-size: max(16px, 1rem);
  vertical-align: top;
  border: 0.1rem solid #8e8e8e;
  border-radius: 0.2rem;
  outline: none;
  box-shadow: none;
}

textarea {
  height: 10rem;
}

[type=submit],
[type=reset],
[type=button],
button {
  padding: 0.5rem 1.5rem;
  font-size: 1rem;
  line-height: 1;
  color: #000;
  background-color: #fff;
  border: 0.2rem solid #2dadd6;
  border-radius: 0.4rem;
}
@media screen and (min-width: 768px) {
  [type=submit],
  [type=reset],
  [type=button],
  button {
    padding: 0.7rem 1.5rem;
    font-size: 1.6rem;
  }
}
[type=submit].reset,
[type=reset].reset,
[type=button].reset,
button.reset {
  color: #fff;
  background-color: #bbb;
  border-color: #aaa;
}

[type=file] {
  max-width: 100%;
}

[type=checkbox] {
  margin-right: 0.3em;
}

.marker {
  background: linear-gradient(transparent 50%, #fff200 50%);
}

.d-block {
  display: block !important;
}
.d-inline {
  display: inline !important;
}
.d-none {
  display: none !important;
}
.d-inline-flex {
  display: inline-flex !important;
}
.d-inline-block {
  display: inline-block !important;
}
.d-flex {
  display: flex !important;
}
.d-grid {
  display: grid !important;
}
.d-inline-grid {
  display: inline-grid !important;
}
@media screen and (min-width: 320px) {
  .d-xs-block {
    display: block !important;
  }
  .d-xs-inline {
    display: inline !important;
  }
  .d-xs-none {
    display: none !important;
  }
  .d-xs-inline-flex {
    display: inline-flex !important;
  }
  .d-xs-inline-block {
    display: inline-block !important;
  }
  .d-xs-flex {
    display: flex !important;
  }
  .d-xs-grid {
    display: grid !important;
  }
  .d-xs-inline-grid {
    display: inline-grid !important;
  }
}
@media screen and (min-width: 544px) {
  .d-sm-block {
    display: block !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-grid {
    display: grid !important;
  }
  .d-sm-inline-grid {
    display: inline-grid !important;
  }
}
@media screen and (min-width: 768px) {
  .d-md-block {
    display: block !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-none {
    display: none !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-grid {
    display: grid !important;
  }
  .d-md-inline-grid {
    display: inline-grid !important;
  }
}
@media screen and (min-width: 1024px) {
  .d-lg-block {
    display: block !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-grid {
    display: grid !important;
  }
  .d-lg-inline-grid {
    display: inline-grid !important;
  }
}
@media screen and (min-width: 1200px) {
  .d-xl-block {
    display: block !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-grid {
    display: grid !important;
  }
  .d-xl-inline-grid {
    display: inline-grid !important;
  }
}

.bg {
  background-color: #fff;
}
.bg-primary {
  background-color: #2dadd6;
}

.box {
  position: relative;
  z-index: 2;
  padding-bottom: 0.5rem;
  background-color: #2dadd6;
}
@media screen and (min-width: 768px) {
  .box {
    padding-bottom: 1rem;
  }
}
.box::after, .box::before {
  position: absolute;
  top: 0;
  bottom: 0.5rem;
  left: 0;
  z-index: 2;
  display: block;
  width: 100%;
  content: "";
  background-color: #fff;
  border-radius: 0.5rem;
}
@media screen and (min-width: 768px) {
  .box::after, .box::before {
    bottom: 1rem;
  }
}
.box::after {
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background-color: #f08218;
  mix-blend-mode: multiply;
  opacity: 0.4;
}
.box .inner {
  position: relative;
  z-index: 3;
}

.container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.container-fluid {
  max-width: none;
}

.icon {
  width: 1.2em;
}

.brand {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .brand {
    gap: 1rem;
    margin: 0 1rem;
  }
}
@media screen and (min-width: 1024px) {
  .brand {
    margin: 0;
  }
}
.brand-item:nth-child(1) {
  order: 1;
}
.brand-item:nth-child(2) {
  order: 2;
}
@media screen and (min-width: 768px) {
  .brand-item:nth-child(2) {
    order: 2;
  }
}
.brand-item:nth-child(3) {
  order: 3;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .brand-item:nth-child(3) {
    order: 3;
    width: auto;
  }
}
.brand-item :where(img) {
  width: auto;
  height: 100%;
  margin: 0 auto;
}
.brand-item .kyocera {
  height: 3rem;
}
@media screen and (min-width: 768px) {
  .brand-item .kyocera {
    height: 6rem;
  }
}
.brand-item .housmile_e {
  height: 1.5rem;
  margin-right: 1rem;
}
@media screen and (min-width: 768px) {
  .brand-item .housmile_e {
    height: 3rem;
  }
}
.brand-item :where(.logo) {
  height: 2.5rem;
}
@media screen and (min-width: 768px) {
  .brand-item :where(.logo) {
    height: 4rem;
    margin: 0;
  }
}

.info {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
  justify-content: center;
}
.info img {
  width: auto;
  height: 1.3rem;
}
@media screen and (min-width: 768px) {
  .info img {
    height: 2rem;
  }
}
.info-wrapper {
  display: grid;
  gap: 0.5rem;
  margin: 1rem 0 1.5rem;
  font-size: 0.9rem;
  line-height: 1.2;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .info-wrapper {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    margin: 0 0 2rem;
    font-size: 1.6rem;
    line-height: 1;
  }
}
.info-inner:nth-child(1) {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .info-inner:nth-child(1) {
    width: auto;
  }
}
.info .tel {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mv-image {
  position: relative;
  z-index: 1;
}
.mv-catch {
  position: relative;
  z-index: 2;
  margin: -7rem 0 -2.8rem;
}
@media screen and (min-width: 768px) {
  .mv-catch {
    margin: -30rem 0 -11rem;
  }
}

.service {
  position: relative;
  z-index: 2;
  min-height: 100rem;
  margin-top: -1rem;
  border-radius: 1rem 1rem 0 0;
}
@media screen and (min-width: 768px) {
  .service {
    margin-top: -4.8rem;
    border-radius: 2rem 2rem 0 0;
  }
}
.service :where(h1) {
  display: flex;
  align-items: center;
  width: 10rem;
  height: 7.5rem;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .service :where(h1) {
    width: 68rem;
    height: 9.5rem;
  }
}
.service :where(h1) picture {
  width: 100%;
}
.service :where(h1) :where(img) {
  width: 100%;
}
.service :where(h2) {
  padding: 1rem 0;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
  color: #2dadd6;
  text-align: center;
  white-space: nowrap;
  border-color: #2dadd6;
  border-style: solid;
  border-width: 0.3rem 0;
}
@media screen and (min-width: 768px) {
  .service :where(h2) {
    font-size: 1.8rem;
  }
}
.service-logo {
  margin: 1rem 0;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .service-logo {
    margin: 2rem 0;
  }
}
.service-logo :where(img) {
  width: 100%;
}
.service-logo-text {
  margin: 1rem 0 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .service-logo-text {
    margin: 2rem 0 0;
  }
}
.service-box {
  --spacing: 0;
  margin: 0 1rem 2rem;
  font-size: 0.85rem;
  font-feature-settings: "palt";
}
@media screen and (min-width: 768px) {
  .service-box {
    margin: 0 2.5rem 2rem;
    font-size: 1.8rem;
  }
}
.service-box-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 5.5rem;
  padding: 1rem;
}
@media screen and (min-width: 768px) {
  .service-box-inner {
    padding: 3rem 3rem 1rem;
  }
}
@media screen and (min-width: 768px) {
  .service-box-left {
    width: 30rem;
  }
}
.service-box-right {
  flex: 1;
}
.service-box-bottom {
  width: 100%;
  font-size: 0.7rem;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .service-box-bottom {
    font-size: 1rem;
  }
}
.service-box-bottom :where(span) {
  color: #aaa;
}
.service-description {
  line-height: 1.6;
  text-align: justify;
}
.service-description :where(span) {
  display: inline-block;
}
.service-description :where(strong) {
  color: #2dadd6;
}
.service-illust {
  position: absolute;
  top: 0;
  height: 7.5rem;
}
@media screen and (min-width: 768px) {
  .service-illust {
    top: -5.5rem;
    height: 15rem;
  }
}
.service-illust :where(img) {
  width: auto;
  height: 100%;
}
.service-illust-left {
  left: 1.5rem;
}
@media screen and (min-width: 768px) {
  .service-illust-left {
    left: 4.5rem;
  }
}
.service-illust-right {
  right: 1.5rem;
}
@media screen and (min-width: 768px) {
  .service-illust-right {
    right: 3.5rem;
  }
}

.service2 {
  padding: 0 0 2rem;
  margin: 0 1rem;
}
@media screen and (min-width: 768px) {
  .service2 {
    padding: 0 0 5rem;
    margin: 0 5.5rem;
  }
}
.service2 :where(h1) {
  width: 100%;
  height: auto;
  padding: 1rem 1rem 1.8rem;
}
@media screen and (min-width: 768px) {
  .service2 :where(h1) {
    padding: 3rem 0 4rem;
  }
}
.service2 :where(h1).box::after, .service2 :where(h1).box::before {
  border-radius: 1.5rem;
}
@media screen and (min-width: 768px) {
  .service2 :where(h1).box::after, .service2 :where(h1).box::before {
    border-radius: 3rem;
  }
}
.service2 :where(h1) .inner {
  display: flex;
  flex-flow: column wrap;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0;
  font-size: 1.8rem;
  font-weight: 400;
  font-feature-settings: "palt";
  line-height: 1.4;
  color: #2dadd6;
  border-radius: 1.5rem;
}
@media screen and (min-width: 768px) {
  .service2 :where(h1) .inner {
    flex-direction: row;
    gap: 1rem;
    padding: 0;
    font-size: 3rem;
    line-height: 1;
    border-radius: 3rem;
  }
}
.service2 :where(h1) .inner :where(div) {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  text-align: center;
}
.service2 :where(h1) :where(img) {
  width: 30rem;
}
.service2-description {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 0.5rem 0 3rem;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .service2-description {
    gap: 0;
    align-items: flex-start;
    margin: 2rem 4rem 3rem;
    text-align: left;
  }
}
.service2-description-left {
  font-size: 1rem;
  line-height: 1.5;
  color: #fff;
  --spacing: 0;
}
@media screen and (min-width: 768px) {
  .service2-description-left {
    width: 47rem;
    font-size: 2rem;
    line-height: 1.8;
  }
}
.service2-description-left :where(strong) {
  font-size: 1.6rem;
  font-weight: 400;
  font-feature-settings: "palt";
  line-height: 1.5;
  color: #ffec51;
  text-decoration: underline;
  text-underline-offset: 0.6rem;
}
@media screen and (min-width: 768px) {
  .service2-description-left :where(strong) {
    font-size: 3.5rem;
  }
}
.service2-description-right {
  width: 80%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .service2-description-right {
    flex: 1;
    width: auto;
  }
}
.service2-box::before {
  background-color: #fffad5;
}
.service2-box-left {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .service2-box-left {
    width: 36rem;
  }
}
.service2-box-right {
  margin-top: 1rem;
  overflow: hidden;
  background-color: #fff;
  background-image: url("../img/illust4@4x.png");
  background-repeat: no-repeat;
  background-position: top 2rem right 0.5rem;
  background-size: 6rem auto;
  border-radius: 0.5rem;
}
@media screen and (min-width: 768px) {
  .service2-box-right {
    flex: 1;
    margin-top: 0;
    background-position: top 2rem right 2rem;
    background-size: 10rem auto;
    border-radius: 1rem;
  }
}
.service2-box .prepare {
  margin-bottom: 1rem;
  font-size: 1.7rem;
  font-feature-settings: "palt";
  line-height: 1.2;
  color: #2dadd6;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .service2-box .prepare {
    font-size: 3.4rem;
  }
}
.service2-box .merit {
  --spacing: 0;
  font-size: 1.1rem;
  font-feature-settings: "palt";
  line-height: 1.5;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .service2-box .merit {
    font-size: 1.5rem;
  }
}
.service2-box .merit :where(strong) {
  font-weight: inherit;
  color: #2dadd6;
}
.service2-box .problem {
  width: fit-content;
  padding: 0 1rem;
  font-size: 1.2rem;
  color: #fff;
  background-color: #2dadd6;
  border-radius: 0.5rem 0;
}
@media screen and (min-width: 768px) {
  .service2-box .problem {
    padding: 0 2rem;
    font-size: 2rem;
    border-radius: 1rem 0;
  }
}
.service2-box .problem-description {
  --spacing: 0;
  padding: 1.5rem 1rem 1rem;
  font-size: 1.1rem;
  font-feature-settings: "palt";
  line-height: 1.5;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .service2-box .problem-description {
    padding: 1rem 2rem;
    font-size: 1.4rem;
    line-height: 1.5;
  }
}
.service2-box .problem-case {
  padding: 0 1rem 1rem;
}
@media screen and (min-width: 768px) {
  .service2-box .problem-case {
    padding: 0 2rem 1rem;
  }
}
.service2-inner {
  position: relative;
  padding: 2rem 1rem 1rem;
}
@media screen and (min-width: 768px) {
  .service2-inner {
    display: flex;
    gap: 1.5rem;
    padding: 3rem;
  }
}
.service2-inner .more {
  position: absolute;
  top: 0;
  left: 0;
  width: 10rem;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .service2-inner .more {
    width: 17rem;
  }
}

.flow {
  position: relative;
  z-index: 3;
  padding: 0 1rem;
  margin-top: -0.8rem;
}
@media screen and (min-width: 768px) {
  .flow {
    padding: 0 2rem;
    margin-top: -3.8rem;
  }
}
.flow-catch {
  display: flex;
  align-items: flex-end;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .flow-catch {
    padding: 0 3.5rem;
  }
}
.flow-catch-left {
  width: 3.5rem;
}
@media screen and (min-width: 768px) {
  .flow-catch-left {
    width: 10rem;
  }
}
.flow-catch-center {
  flex: 1;
}
.flow-catch-right {
  width: 3.5rem;
}
@media screen and (min-width: 768px) {
  .flow-catch-right {
    width: 10rem;
  }
}
.flow-title {
  --spacing: 0;
  display: grid;
  gap: 0.5rem;
  margin: 1rem 0;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .flow-title {
    font-size: 4rem;
  }
}
.flow-title-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .flow-title-item {
    flex-direction: row;
    gap: 0;
  }
}
.flow-title-item-text {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.flow-title :where(strong) {
  font-size: 2.5rem;
  font-weight: inherit;
  color: #2dadd6;
}
@media screen and (min-width: 768px) {
  .flow-title :where(strong) {
    font-size: 6rem;
  }
}
.flow-title .icon {
  width: auto;
  height: 2.5rem;
  margin-right: 0.5rem;
}
@media screen and (min-width: 768px) {
  .flow-title .icon {
    height: 6rem;
  }
}
.flow-step {
  margin: 1rem 0;
}
@media screen and (min-width: 768px) {
  .flow-step {
    margin: 3rem 0 2rem;
  }
}
.flow-step :where(ul) {
  display: grid;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .flow-step :where(ul) {
    display: flex;
    gap: 2rem;
  }
}
.flow-step :where(ul) :where(li) {
  position: relative;
  flex: 1;
  border: 0.2rem solid #2dadd6;
  border-radius: 0.7rem;
}
@media screen and (min-width: 768px) {
  .flow-step :where(ul) :where(li) {
    border-radius: 1rem;
  }
}
.flow-step :where(ul) :where(li) :where(span) {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  padding: 0 1rem;
  line-height: 1;
  color: #2dadd6;
  background-color: #fff;
  transform: translate(-50%, -50%);
}
.flow-step :where(ul) :where(li) :where(span) :where(img) {
  width: 6rem;
}
.flow-step :where(ul) :where(li)::after {
  position: absolute;
  bottom: -0.65rem;
  left: 50%;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
  background-color: #fff;
  border-color: #2dadd6;
  border-style: solid;
  border-width: 0.2rem 0.2rem 0 0;
  transform: translateX(-50%) rotate(135deg);
}
@media screen and (min-width: 768px) {
  .flow-step :where(ul) :where(li)::after {
    top: 50%;
    right: -0.65rem;
    bottom: unset;
    left: unset;
    transform: translateY(-50%) rotate(45deg);
  }
}
.flow-step :where(ul) :where(li):last-child::after {
  display: none;
}
.flow-step :where(ul) :where(li):first-child {
  --spacing: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 0;
  font-size: 1.8rem;
  line-height: 1;
  color: #fff;
  text-align: center;
  background-color: #2dadd6;
}
@media screen and (min-width: 768px) {
  .flow-step :where(ul) :where(li):first-child {
    padding: 0;
    font-size: 2.2rem;
    line-height: 1.2;
  }
}
.flow-step :where(ul) :where(li):first-child::after {
  display: none;
}
.flow-step :where(ul) :where(li):first-child :where(span) {
  position: static;
  top: unset;
  left: unset;
  padding: 0.4rem 0;
  margin-bottom: 1rem;
  line-height: 1;
  color: #fff;
  background-color: transparent;
  border-color: #fff;
  border-style: solid;
  border-width: 0.1rem 0;
  transform: unset;
}
.flow-step :where(ul) :where(li):first-child :where(span) :where(img) {
  width: 3rem;
}
@media screen and (min-width: 768px) {
  .flow-step :where(ul) :where(li):first-child :where(span) :where(img) {
    width: 3.5rem;
  }
}
.flow-step-title {
  --spacing: 0;
  margin: 2rem 0 1rem;
  font-size: 1.4rem;
  line-height: 1;
  color: #2dadd6;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .flow-step-title {
    font-size: 1.6rem;
  }
}
.flow-step-caption {
  --spacing: 0;
  padding: 0 1rem 0.5rem;
  font-size: 0.9rem;
  font-feature-settings: "palt";
  line-height: 1.4;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .flow-step-caption {
    padding: 0 0.8rem 0.5rem;
    font-size: 1.2rem;
  }
}
.flow-step-caption .caution {
  margin: 0.7rem 0 0;
  font-size: 0.8rem;
}
@media screen and (min-width: 768px) {
  .flow-step-caption .caution {
    margin: 1rem -0.3rem 0;
    font-size: 1rem;
  }
}
.flow-step-caption .caution.center {
  text-align: center;
}
.flow-step-caution {
  margin-top: 0.3rem;
  font-size: 0.65rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .flow-step-caution {
    margin-top: 0;
    font-size: 1rem;
    text-align: right;
  }
}

.contact {
  margin: 0 1rem 3rem;
}
@media screen and (min-width: 768px) {
  .contact {
    margin: 0 2rem 5rem;
  }
}
@media screen and (min-width: 1024px) {
  .contact {
    margin: 0 0 5rem;
  }
}
.contact :where(h1) {
  padding: 1rem 0;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.2;
  color: #fff;
  text-align: center;
  background-color: #aaa;
  border-radius: 0.3rem;
}
@media screen and (min-width: 768px) {
  .contact :where(h1) {
    margin-bottom: 2rem;
    font-size: 2rem;
    line-height: 1;
  }
}
.contact :where(dl) {
  background-color: #f1f1f1;
}
@media screen and (min-width: 768px) {
  .contact :where(dl) {
    display: grid;
    grid-template-columns: 25% 1fr;
    margin-top: 0.2rem;
  }
}
.contact :where(dl) :where(dt) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  background-color: #2dadd6;
}
@media screen and (min-width: 768px) {
  .contact :where(dl) :where(dt) {
    padding: 1rem;
    font-size: 1.6rem;
  }
}
.contact :where(dl) :where(dd) {
  padding: 1rem;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .contact :where(dl) :where(dd) {
    padding: 1rem;
    font-size: 1.6rem;
  }
}
.contact :where(dl) :where(dd) :where(a) {
  color: #2dadd6;
  text-decoration: underline;
}
.contact :where(dl) :where(dd) .file-info {
  color: #06b300;
}
.contact :where(dl) :where(dd) .file-info:empty {
  display: none;
}
.contact :where(dl) :where(dd) .file-info#file-error-message {
  color: #ff2e2e;
}
.contact :where(dl) :where(dd) .file-desc {
  line-height: 1.3;
}
.contact-checkbox {
  display: grid;
  gap: 0 1em;
}
@media screen and (min-width: 768px) {
  .contact-checkbox {
    display: flex;
    flex-wrap: wrap;
  }
}
.contact-thanks {
  padding: 1rem;
  margin: 1rem 0;
  font-size: 0.8rem;
  line-height: 1.5;
  text-align: center;
  border: 0.2rem solid #2dadd6;
  border-radius: 0.5rem;
}
@media screen and (min-width: 768px) {
  .contact-thanks {
    padding: 2rem;
    margin: 2rem 0;
    font-size: 1.6rem;
  }
}
.contact-thanks :where(h3) {
  margin: 0 0 1rem;
  font-size: 1.3rem;
  line-height: 1;
  color: #ea5e90;
}
@media screen and (min-width: 768px) {
  .contact-thanks :where(h3) {
    font-size: 1.8rem;
  }
}
.contact-thanks :where(p) {
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .contact-thanks :where(p) {
    margin-top: 1rem;
  }
}
.contact-back {
  display: flex;
  justify-content: center;
  margin: 1rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact-back {
    margin: 2rem;
  }
}
.contact-back :where(a) {
  padding: 0.7rem 2rem;
  font-size: 1rem;
  line-height: 1;
  border: 0.2rem solid #ea5e90;
  border-radius: 100vw;
}
@media screen and (min-width: 768px) {
  .contact-back :where(a) {
    padding: 1rem 2rem;
    font-size: 1.6rem;
  }
}
.contact .address-item {
  display: grid;
}
@media screen and (min-width: 768px) {
  .contact .address-item {
    display: flex;
    gap: 2rem;
    align-items: center;
  }
}
.contact .address-item:nth-child(n+2) {
  margin-top: 0.5rem;
}
.contact .address-item :where(span) {
  min-width: 10rem;
}
.contact .address-item :where(input) {
  flex: 1;
}
.contact .address-item :where(small) {
  margin-top: 0.3rem;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .contact .address-item :where(small) {
    margin-top: 0;
    line-height: 1;
  }
}
.contact-kyocera {
  display: grid;
  margin-top: 4rem;
}
@media screen and (min-width: 768px) {
  .contact-kyocera {
    grid-template-columns: 2fr 1fr;
  }
}
.contact-kyocera-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .contact-kyocera-right {
    display: block;
  }
}
.contact-kyocera-right > :where(div) {
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact-kyocera-item {
    display: flex;
    margin-top: 1rem;
  }
}
.contact-kyocera-title {
  --spacing: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  background-color: #2dadd6;
}
@media screen and (min-width: 768px) {
  .contact-kyocera-title {
    width: 15rem;
    font-size: 1.6rem;
  }
}
.contact-kyocera-body {
  padding: 1rem 1.5rem;
  font-size: 1rem;
  line-height: 1.4;
  word-break: break-all;
}
@media screen and (min-width: 768px) {
  .contact-kyocera-body {
    font-size: 1.6rem;
  }
}
.contact-kyocera-body a {
  color: #2dadd6;
}

.submit {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin: 2rem 0;
  text-align: center;
}

.must {
  padding: 0.3rem 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  background-color: #ea5e90;
  border-radius: 0.3rem;
}
@media screen and (min-width: 768px) {
  .must {
    font-size: 1.2rem;
  }
}

:where(footer) {
  padding: 0;
}
@media screen and (min-width: 768px) {
  :where(footer) {
    padding: 0 0 1rem;
    margin: auto 0 0;
  }
}
:where(footer) .container {
  padding: 1rem 0 0;
  border-top: 0.2rem solid #2dadd6;
}
@media screen and (min-width: 768px) {
  :where(footer) .container {
    padding: 2rem 0 0;
  }
}
:where(footer) .logo {
  width: 14rem;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  :where(footer) .logo {
    width: 22rem;
    margin: 0;
  }
}
:where(footer) .recaco {
  width: 15rem;
  margin: 1rem auto 0;
}
@media screen and (min-width: 768px) {
  :where(footer) .recaco {
    width: 20rem;
    margin: 0;
  }
}

@media screen and (min-width: 768px) {
  .footer-brand {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    margin: 0 0 1rem;
  }
}

.contact_line {
  padding: 0;
  margin: 1rem;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .contact_line {
    max-width: 1000px;
    margin: 0 auto;
  }
}
.contact_line :where(a) {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 1rem;
  border: 0.1rem solid #0ac755;
}
@media screen and (min-width: 768px) {
  .contact_line :where(a) {
    padding: 2rem;
    margin: 0 0 2rem;
  }
}
.contact_line_item:nth-child(1) {
  width: 30%;
}
@media screen and (min-width: 768px) {
  .contact_line_item:nth-child(1) {
    width: 6rem;
  }
}
.contact_line_item:nth-child(2) {
  width: 70%;
  font-size: 1.6rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact_line_item:nth-child(2) {
    width: 15rem;
    margin: 0 2rem;
    font-size: 2rem;
    text-align: left;
  }
}
.contact_line_item:nth-child(3) {
  position: relative;
  width: 100%;
  padding: 1rem 0;
  margin: 1rem auto;
  font-size: 1.4rem;
  line-height: 1;
  color: #fff;
  text-align: center;
  background: #0ac755;
  border-radius: 1rem;
}
@media screen and (min-width: 768px) {
  .contact_line_item:nth-child(3) {
    width: 12rem;
    padding: 0;
    margin: 0;
    font-size: 1.2rem;
    color: #000;
    white-space: nowrap;
    background: none;
    border-radius: 0;
  }
}
.contact_line_item:nth-child(3) .icon {
  position: absolute;
  top: 50%;
  right: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2rem;
  margin-top: -1rem;
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .contact_line_item:nth-child(3) .icon {
    display: none;
  }
}
.contact_line_item:nth-child(3) :where(img) {
  display: none;
  margin-bottom: 0.3rem;
}
@media screen and (min-width: 768px) {
  .contact_line_item:nth-child(3) :where(img) {
    display: inline-block;
    width: 80%;
    margin-bottom: 0.3rem;
  }
}
.contact_line_item:nth-child(4) {
  width: 100%;
  font-size: 0.8rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .contact_line_item:nth-child(4) {
    flex: 1;
    margin: 0 0 0 2rem;
    font-size: 1.5rem;
    line-height: 2;
  }
}

.search {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  line-height: 1;
  border: 0.2rem solid #2dadd6;
  border-radius: 100vw;
}
@media screen and (min-width: 768px) {
  .search {
    width: 20rem;
  }
}
.search-text {
  flex: 1;
  font-size: 1.2rem;
  font-weight: bold;
  color: #2dadd6;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .search-text {
    font-size: 1.8rem;
  }
}
.search-icon {
  display: flex;
  align-items: center;
  height: 2.4rem;
  padding: 0 0.5rem;
  border-left: 0.2rem solid #2dadd6;
}
@media screen and (min-width: 768px) {
  .search-icon {
    height: 3rem;
  }
}
.search-icon img {
  width: 1.4rem;
}
@media screen and (min-width: 768px) {
  .search-icon img {
    width: 2rem;
  }
}

/*# sourceMappingURL=style.css.map */
