@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Noto+Serif+JP:wght@400;500;700&display=swap");
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  line-height: 1.7em;
  font-size: clamp(12px, 1.6vw, 16px);
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
}

a {
  color: #333;
  text-decoration: none;
}

img {
  width: 100%;
  vertical-align: bottom;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
.wrap {
  max-width: 1052px;
  margin: 0 auto;
  padding: 0 30px;
  padding-bottom: 0;
}
@media screen and (max-width: 768px) {
  .wrap {
    text-align: left;
    padding: 15px;
  }
}

h2.ttl-section {
  text-align: center;
  padding: 140px 0 2.5vw 0;
  font-family: "Noto Serif JP", serif;
  color: #42758E;
  font-size: clamp(30px, 4.8vw, 48px);
  line-height: 1.2em;
  font-weight: 500;
}
@media screen and (max-width: 980px) {
  h2.ttl-section {
    padding-top: 50px;
    border-top: 1px solid #42758E;
  }
}

h3.ttl-block {
  background-image: linear-gradient(180deg, #42758E 1px, transparent 1px);
  background-size: 100% 1px;
  background-position: center;
  position: relative;
  margin: 1.5vw 0 2.5vw 0;
}
h3.ttl-block span {
  display: inline-block;
  padding-right: 0.6em;
  background-color: #fff;
  color: #42758E;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 500;
  line-height: 1.4em;
}

h3.ttl-block-yobi {
  background-image: linear-gradient(180deg, #42758E 1px, transparent 1px);
  background-size: 100% 1px;
  background-position: center;
  position: relative;
  margin: 1.5vw -15% 3.5vw -15%;
}
@media screen and (max-width: 1320px) {
  h3.ttl-block-yobi {
    margin: 1.5vw 0 3.5vw 0;
  }
}
h3.ttl-block-yobi::before, h3.ttl-block-yobi::after {
  content: "";
  position: absolute;
  top: calc(50% - 4px);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #42758E;
}
h3.ttl-block-yobi::before {
  left: 0;
}
h3.ttl-block-yobi::after {
  right: 0;
}
h3.ttl-block-yobi span {
  display: inline-block;
  margin-left: 9%;
  padding: 0 0.7em;
  background-color: #fff;
  color: #42758E;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 500;
  line-height: 1.4em;
}
@media screen and (max-width: 768px) {
  h3.ttl-block-yobi span {
    margin-left: 0%;
  }
}

h4.ttl-col {
  font-size: clamp(20px, 3vw, 30px);
  color: #42758E;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  line-height: 1.2em;
  margin-bottom: 2vw;
}

.anchor-link {
  display: inline-block;
  border: 1px solid #42758E;
  line-height: 1.2em;
  padding: 0.7em 1.2em 0.7em 2.5em;
  color: #42758E;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  -webkit-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}
.anchor-link::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-top: 2px solid;
  border-right: 2px solid;
  border-color: #42758E;
  -webkit-transform: rotate(45deg);
  left: 1.2em;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
.anchor-link:hover {
  background-color: #6D9DB4;
  border: 1px solid #6D9DB4;
  color: #fff;
}
.anchor-link:hover::after {
  border-color: #fff;
}

#header {
  width: 100%;
  margin: 0 auto;
  position: fixed;
  top: 0;
  padding: 0;
  z-index: 99;
  text-align: center;
  background: #fff;
}
#header .header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 1.5em;
  height: 85px;
}
@media screen and (max-width: 980px) {
  #header .header-inner {
    height: 45px;
    padding: 0 10px 0 15px;
    border-bottom: 1px solid #ccc;
  }
}
#header .header-inner .logo {
  display: block;
  width: 280px;
}
@media screen and (max-width: 980px) {
  #header .header-inner .logo {
    width: 100%;
  }
  #header .header-inner .logo img {
    width: 140px;
    display: block;
  }
}
#header .header-inner .btn-to-contact {
  display: block;
  z-index: 99;
  padding: 0.7em 1em;
  font-size: clamp(12px, 1.6vw, 16px);
  color: #fff;
  background-color: #42758E;
  border: 1px solid #fff;
  -webkit-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}
#header .header-inner .btn-to-contact:hover {
  background-color: #6D9DB4;
}
@media screen and (max-width: 980px) {
  #header .header-inner .btn-to-contact {
    display: none;
  }
}
#header .header-inner .hamburger {
  display: none;
}
@media screen and (max-width: 980px) {
  #header .header-inner .hamburger {
    display: block;
    z-index: 100;
    background-color: transparent;
  }
}
#header .header-inner .hamburger .c-hamburger {
  position: relative;
  background: transparent;
  border: none;
  cursor: pointer;
}
#header .header-inner .hamburger .c-hamburger span {
  display: block;
  position: relative;
  left: 50%;
  width: 30px;
  height: 2px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #42758E;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#header .header-inner .hamburger .c-hamburger span:nth-of-type(1) {
  top: -4px;
}
#header .header-inner .hamburger .c-hamburger span:nth-of-type(2) {
  top: 1px;
}
#header .header-inner .hamburger .c-hamburger span:nth-of-type(3) {
  top: 6px;
}
#header .header-inner .hamburger .c-hamburger.is-active span {
  background: #fff;
}
#header .header-inner .hamburger .c-hamburger.is-active span:nth-of-type(1) {
  top: 0;
  -webkit-transform: translateX(-50%) rotate(225deg);
          transform: translateX(-50%) rotate(225deg);
}
#header .header-inner .hamburger .c-hamburger.is-active span:nth-of-type(2) {
  opacity: 0;
}
#header .header-inner .hamburger .c-hamburger.is-active span:nth-of-type(3) {
  top: -4px;
  -webkit-transform: translateX(-50%) rotate(-225deg);
          transform: translateX(-50%) rotate(-225deg);
}
#header #nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #42758E;
  border-bottom: 1px solid #fff;
  list-style: none;
  padding: 0;
  margin: 0;
  height: 40px;
  font-size: clamp(12px, 1.6vw, 16px);
}
@media screen and (max-width: 980px) {
  #header #nav {
    display: block;
    z-index: 10;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: transparent;
    opacity: 0;
    font-size: clamp(16.5px, 2.2vw, 22px);
    -webkit-transition: 0.6s;
    transition: 0.6s;
    pointer-events: none;
  }
}
#header #nav li {
  padding: 0;
}
#header #nav li.to-contact {
  display: none;
}
@media screen and (max-width: 980px) {
  #header #nav li.to-contact {
    display: block;
  }
}
#header #nav li a {
  display: block;
  padding: 0.7em 1em;
  line-height: 1em;
  color: #fff;
  text-decoration: none;
  -webkit-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}
#header #nav li a:hover {
  background-color: #6D9DB4;
}
#header #nav.is-active {
  position: fixed;
  top: 0;
  right: 0;
  background: #42758E;
  opacity: 1;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  padding: 20% 10% 10% 10%;
  pointer-events: auto;
}

#main {
  margin-top: 125px;
  margin-bottom: 14vh;
  position: relative;
}
@media screen and (max-width: 980px) {
  #main {
    margin-top: 40px;
    margin-bottom: 0vh;
  }
}
#main picture {
  margin-left: 25vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 40vw;
  overflow: hidden;
}
@media screen and (max-width: 980px) {
  #main picture {
    margin-left: 0;
    height: 40vw;
  }
}
@media screen and (max-width: 768px) {
  #main picture {
    margin-left: 0;
    height: 80vw;
  }
}
#main .txt {
  position: absolute;
  top: 7vw;
  left: 7vw;
  width: 50vw;
}
@media screen and (max-width: 980px) {
  #main .txt {
    width: 60vw;
  }
}
@media screen and (max-width: 768px) {
  #main .txt {
    position: relative;
    top: 0;
    left: 0;
    padding: 20px;
    width: 100%;
  }
}
#main .txt h1 {
  font-size: clamp(28px, 4.17vw, 60px);
  color: #42758E;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  line-height: 1.4em;
  margin: 0 0 0.4em 0;
}
#main .txt p {
  font-size: clamp(12px, 1.6vw, 16px);
  line-height: 1.7em;
  width: 80%;
}
@media screen and (max-width: 980px) {
  #main .txt p {
    width: 100%;
  }
}
#main .download {
  position: absolute;
  top: 32vw;
  left: 0;
  width: 38vw;
  padding: 0.5vw 3vw 1.5vw 3vw;
  background-color: #42758E;
  color: #fff;
}
@media screen and (max-width: 1280px) {
  #main .download {
    width: 60vw;
  }
}
@media screen and (max-width: 980px) {
  #main .download {
    position: relative;
    top: -5vw;
    left: 0;
    width: 50vw;
  }
}
@media screen and (max-width: 768px) {
  #main .download {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px;
  }
}
#main .download h2 {
  font-size: clamp(18px, 2.4vw, 24px);
  font-family: "Noto Serif JP", serif;
  line-height: 1.4em;
}
#main .download p {
  margin-bottom: 1em;
}
#main .download .bt-download {
  display: inline-block;
  color: #42758E;
  font-size: clamp(13.5px, 1.8vw, 18px);
  background-color: #fff;
  border: 1px solid #fff;
  padding: 0.6em 3em;
  -webkit-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}
@media screen and (max-width: 768px) {
  #main .download .bt-download {
    display: block;
    text-align: center;
  }
}
#main .download .bt-download:hover {
  background-color: #6D9DB4;
  color: #fff;
}
#main .download .bt-download span {
  vertical-align: middle;
}

.cv {
  background-color: #42758E;
  color: #fff;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  padding: 50px 0;
}
@media screen and (max-width: 768px) {
  .cv {
    padding: 0 0 20px 0;
  }
}
.cv h2 {
  font-weight: 400;
  line-height: 1.2em;
  margin-bottom: 1.2em;
}
.cv .col-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 5%;
}
@media screen and (max-width: 768px) {
  .cv .col-2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
  .cv .col-2 a:first-child {
    margin-bottom: 15px;
  }
}
.cv .col-2 a {
  width: 100%;
  border: 1px solid #fff;
  padding: 0.5em;
  color: #fff;
  -webkit-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}
.cv .col-2 a:hover {
  background-color: #6D9DB4;
  color: #fff;
  border-color: #6D9DB4;
}
.cv .col-2 p {
  margin: 0.4em 0;
}
.cv .col-2 .name {
  font-size: clamp(18px, 2.4vw, 24px);
}
.cv .col-2 .btn {
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 500;
}
.cv .col-2 .btn span {
  vertical-align: middle;
}
.cv .col-2 .memo {
  font-size: clamp(12px, 1.6vw, 16px);
}
.cv .col-2 .col-2-form {
  background-color: #fff;
  color: #42758E;
}

#charm .overwidth {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 30px 8vh 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 3%;
}
@media screen and (max-width: 768px) {
  #charm .overwidth {
    display: block;
    padding: 0 15px 6vh 15px;
  }
}
#charm .overwidth > div * {
  margin-top: 0;
}
#charm .overwidth .txt {
  width: 50%;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  margin: 0 60px 0 0;
}
@media screen and (max-width: 768px) {
  #charm .overwidth .txt {
    width: 100%;
    margin: 0 0 30px 0;
  }
}
#charm .overwidth .txt h3 {
  font-size: clamp(24px, 4vw, 40px);
  font-family: "Noto Serif JP", serif;
  line-height: 1.4em;
  font-weight: 400;
  color: #42758E;
  margin-bottom: 0.5em;
}
#charm .overwidth .img {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 2%;
}
@media screen and (max-width: 768px) {
  #charm .overwidth .img {
    width: 100%;
  }
}
#charm .overwidth:nth-child(odd) .txt {
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
  margin: 0 0 0 60px;
}
@media screen and (max-width: 768px) {
  #charm .overwidth:nth-child(odd) .txt {
    margin: 0 0 30px 0;
  }
}

#reason .col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 5%;
}
@media screen and (max-width: 768px) {
  #reason .col {
    display: block;
    margin-bottom: 4vh;
  }
}
#reason .col > div * {
  margin-top: 0;
}
#reason .col:nth-child(odd) .txt {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
#reason .col .txt {
  width: 50%;
  margin-bottom: 3.5vw;
}
@media screen and (max-width: 768px) {
  #reason .col .txt {
    width: 100%;
    margin-bottom: 4vh;
  }
}
#reason .col .img {
  width: 45%;
  margin-bottom: 3.5vw;
}
@media screen and (max-width: 768px) {
  #reason .col .img {
    width: 100%;
  }
}

#staff .col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 5%;
}
@media screen and (max-width: 768px) {
  #staff .col {
    display: block;
  }
}
#staff .col > div * {
  margin-top: 0;
}
#staff .col .img,
#staff .col .txt {
  width: 50%;
  margin-bottom: 3vw;
}
@media screen and (max-width: 768px) {
  #staff .col .img,
  #staff .col .txt {
    width: 100%;
    margin-bottom: 9vw;
  }
}
#staff .col .txt h3 {
  font-size: clamp(20px, 3vw, 30px);
  color: #42758E;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  line-height: 1.4em;
}
#staff .col .txt .name {
  font-size: clamp(12px, 1.6vw, 16px);
  font-weight: 400;
}
#staff .col .txt .name span {
  font-size: clamp(16.5px, 2.2vw, 22px);
}
#staff .exp {
  border: 1px solid #42758E;
  position: relative;
  padding: 1.5vh 3vh 2.5vh 3vh;
  margin: 2vw 0 4vw 0;
}
#staff .exp h5 {
  position: absolute;
  top: -0.7em;
  left: 2vw;
  background-color: #fff;
  font-size: clamp(18px, 2.4vw, 24px);
  color: #42758E;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  line-height: 1.2em;
  padding: 0 0.7em;
  margin: 0 0 2vw 0;
}
#staff .exp .exp-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 4vw;
  margin: 2.5vh 0 0 0;
}
@media screen and (max-width: 768px) {
  #staff .exp .exp-col {
    display: block;
  }
}
#staff .exp .exp-col > div * {
  margin-top: 0;
}
#staff .exp .exp-col .img {
  width: 20%;
}
@media screen and (max-width: 768px) {
  #staff .exp .exp-col .img {
    width: 100%;
  }
  #staff .exp .exp-col .img img {
    display: block;
    width: 70%;
    margin: 0 auto 1.5em auto;
  }
}
#staff .exp .exp-col .txt {
  width: 80%;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media screen and (max-width: 768px) {
  #staff .exp .exp-col .txt {
    width: 100%;
  }
}
#staff .exp .exp-col .txt table {
  margin: 0 0 1em 0;
  padding: 0;
}
#staff .exp .exp-col .txt table th,
#staff .exp .exp-col .txt table td {
  text-align: left;
  padding: 0 1em 0.8em 0;
  line-height: 1.4em;
  font-weight: 400;
  vertical-align: top;
}
#staff .exp .exp-col .txt table th {
  white-space: nowrap;
}

#voice .voice-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding: 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  #voice .voice-list {
    display: block;
  }
}
#voice .voice-list li {
  width: 48%;
  border: 1px solid #42758E;
  padding: 0.6em 1em;
  margin-bottom: 1.4em;
  font-size: clamp(20px, 3vw, 30px);
  font-family: "Noto Serif JP", serif;
  line-height: 1.4em;
}
@media screen and (max-width: 768px) {
  #voice .voice-list li {
    width: 100%;
  }
}
#voice .voice-list li span {
  color: #42758E;
}

#products .items-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 6vh;
}
#products .items-list .item {
  width: 48%;
  border: 1px solid #ccc;
  margin-bottom: 4vh;
}
@media screen and (max-width: 768px) {
  #products .items-list .item {
    width: 100%;
  }
}
#products .items-list .item h4 {
  font-size: clamp(16.5px, 2.2vw, 22px);
  font-weight: 400;
  line-height: 1em;
  margin: 0 2.2vh 0.8em 2.8vh;
}
#products .items-list .item .img {
  margin-bottom: 1.4em;
}
#products .items-list .item .txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 3%;
  margin: 0 2.2vh 1.8vh 2.8vh;
}
#products .items-list .item .txt ul {
  padding: 0 0 0 1em;
  margin: 0;
}
#products .items-list .item .txt ul li {
  margin-bottom: 0.3em;
}
#products .items-list .item .txt figure {
  display: block;
  margin: 0;
  padding: 0;
  width: 100%;
}
#products .items-list .item .txt figure figcaption {
  margin-top: 0.5em;
  line-height: 1.4em;
}
#products .mockup-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem 4rem;
}
#products .mockup-col figure {
  margin: 0;
  padding: 0;
  width: 100%;
}
#products .mockup-col figure figcaption {
  margin-top: 0.5rem;
}
#products .spring-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6.66%;
  margin-bottom: 6vh;
}
#products .spring-list .item {
  width: 20%;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #products .spring-list .item {
    width: 46%;
  }
}
#products .spring-list .item img {
  border-radius: 50%;
}
#products .colors-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  #products .colors-list {
    display: block;
  }
}
#products .colors-list > div {
  width: 31%;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  #products .colors-list > div {
    width: 100%;
  }
}
#products .colors-list > div img {
  display: block;
  margin-bottom: 0.8em;
}

#d3-order .d3-order-col {
  display: grid;
  grid-template-columns: 3fr 5fr;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  #d3-order .d3-order-col {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  #d3-order .d3-order-col .d3-order-img {
    width: 70%;
    margin: 0 auto;
  }
}
#d3-order .d3-order-col .d3-order-txt h3 {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 500;
  line-height: 1.4em;
}
#d3-order .d3-order-col .d3-order-txt h4 {
  font-size: clamp(13.5px, 1.8vw, 18px);
  font-weight: 500;
  line-height: 1.4em;
}
#d3-order .d3-order-col .d3-order-txt ul {
  margin-left: 0;
  padding-left: 1.5rem;
}
#d3-order .d3-order-col .d3-order-txt .note-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}
#d3-order .d3-order-col .d3-order-txt .note-col figure {
  margin: 0;
  padding: 0;
  width: 100%;
}
#d3-order .d3-order-col .d3-order-txt .note-col figure figcaption {
  margin-top: 0.5rem;
  font-size: clamp(10.5px, 1.4vw, 14px);
  line-height: 1.4em;
}
#d3-order .d3-order-col .d3-order-txt .orderform-btn a {
  display: inline-block;
  margin: 0 1rem 0.5rem 0;
  padding: 1.2rem 2rem 1.2rem 3rem;
  border: 1px solid #42758E;
  color: #42758E;
  line-height: 1em;
  font-size: clamp(13.5px, 1.8vw, 18px);
  font-weight: 500;
  border-radius: 0.5rem;
  -webkit-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
  position: relative;
}
#d3-order .d3-order-col .d3-order-txt .orderform-btn a::before {
  position: absolute;
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  top: 50%;
  left: 1.4rem;
  -webkit-transform: translateY(-50%) rotate(135deg);
          transform: translateY(-50%) rotate(135deg);
  border-top: 2px solid #42758E;
  border-left: 2px solid #42758E;
}
#d3-order .d3-order-col .d3-order-txt .orderform-btn a:hover {
  background-color: #42758E;
  color: #fff;
}
#d3-order .d3-order-col .d3-order-txt .orderform-btn a:hover::before {
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
}
#d3-order .d3-order-col .d3-order-txt .orderform-memo a {
  color: #42758E;
  text-decoration: underline;
}

#tool .tool-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  gap: 0.7%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  padding-bottom: 8vh;
  margin-bottom: 4vh;
}
@media screen and (max-width: 768px) {
  #tool .tool-img {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0%;
  }
}
@media screen and (max-width: 768px) {
  #tool .tool-img > div {
    width: 50%;
  }
}
#tool .tool-img .tool-ttl {
  display: block;
  padding: 1em 2em;
  text-align: center;
  background-color: #42758E;
  color: #fff;
  font-size: clamp(20px, 3vw, 30px);
  font-family: "Noto Serif JP", serif;
  line-height: 1.4em;
  position: absolute;
  left: 50%;
  bottom: 0%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  #tool .tool-img .tool-ttl {
    width: 80%;
  }
}
#tool .room {
  margin-bottom: 2vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 5%;
}
@media screen and (max-width: 768px) {
  #tool .room {
    display: block;
  }
}
#tool .room > div * {
  margin-top: 0;
}
#tool .room > div {
  width: 50%;
}
@media screen and (max-width: 768px) {
  #tool .room > div {
    width: 100%;
  }
}
#tool .room > div h3 {
  font-size: clamp(18px, 2.4vw, 24px);
  font-family: "Noto Serif JP", serif;
  line-height: 1.4em;
  font-weight: 400;
}
#tool .process {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2.5%;
  margin-bottom: 6vh;
}
@media screen and (max-width: 768px) {
  #tool .process {
    gap: 6%;
  }
}
#tool .process h3 {
  width: 100%;
  font-size: clamp(18px, 2.4vw, 24px);
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
}
#tool .process figure {
  width: 23%;
  margin: 0 0 20px 0;
  padding: 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  #tool .process figure {
    width: 45%;
  }
}
#tool .process figure figcaption {
  font-size: clamp(10.5px, 1.4vw, 14px);
  line-height: 1.4em;
  margin-top: 8px;
}
#tool .process figure > div {
  position: absolute;
  top: 0;
  left: 0;
  width: 46px;
  height: 46px;
  background-color: #333;
  clip-path: polygon(0% 0, 100% 0%, 0 100%);
  color: #fff;
  font-size: clamp(13.5px, 1.8vw, 18px);
  font-weight: 500;
  line-height: 1.7em;
  text-align: center;
  padding-right: 0.9em;
}
#tool .process figure::after {
  content: "";
  position: absolute;
  top: 42%;
  right: -1.2em;
  width: 0.8em;
  height: 0.8em;
  color: #42758E;
  line-height: 1em;
  border: 2px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  -webkit-transform: translateX(-25%) rotate(45deg);
          transform: translateX(-25%) rotate(45deg);
}
#tool .process figure img {
  display: block;
  width: 100%;
}
#tool .process :last-child::after {
  display: none;
}

#flow dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#flow dl dt {
  width: 10%;
  text-align: center;
  margin-bottom: 4vw;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(18px, 2.4vw, 24px);
  line-height: 1.2em;
  color: #42758E;
  letter-spacing: 0.15em;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  #flow dl dt {
    width: 13%;
    font-size: clamp(12px, 1.6vw, 16px);
  }
}
#flow dl dt span {
  display: block;
  margin-top: 0.3em;
  font-size: 270%;
  font-weight: 700;
}
#flow dl dd {
  width: 80%;
  margin-bottom: 4vw;
}
#flow dl dd a {
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  #flow dl dd {
    width: 73%;
  }
}
#flow dl dd h3 {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(20px, 3vw, 30px);
  line-height: 1.2em;
  font-weight: 500;
  margin: 0;
}
#flow .follow-up {
  border: 1px solid #42758E;
  position: relative;
  padding: 1.5vh 3vh;
  margin: 6vh 0 4vh 0;
}
#flow .follow-up h5 {
  position: absolute;
  top: -0.7em;
  left: 2vw;
  background-color: #fff;
  font-size: clamp(18px, 2.4vw, 24px);
  color: #42758E;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  line-height: 1.2em;
  padding: 0 0.7em;
  margin: 0 0 2vw 0;
}
#flow .follow-up .exp-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5%;
  margin: 1em auto;
}
@media screen and (max-width: 768px) {
  #flow .follow-up .exp-col {
    display: block;
  }
}
#flow .follow-up .exp-col > div * {
  margin-top: 0;
}
#flow .follow-up .exp-col .txt {
  width: 60%;
}
@media screen and (max-width: 768px) {
  #flow .follow-up .exp-col .txt {
    width: 100%;
    margin-bottom: 3vh;
  }
}
#flow .follow-up .exp-col .img {
  width: 40%;
}
@media screen and (max-width: 768px) {
  #flow .follow-up .exp-col .img {
    width: 100%;
  }
}

#faq .accordion {
  border-bottom: 1px solid #666;
  margin-bottom: 10vh;
}
#faq .accordion .Label,
#faq .accordion .content {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}
#faq .accordion .Label {
  padding: 1em;
  display: block;
  padding: 1em 1.5em 0.7em 1.5em;
  border-top: 1px solid #666;
  font-size: clamp(18px, 2.4vw, 24px);
  font-family: "Noto Serif JP", serif;
  line-height: 1.4em;
}
#faq .accordion .Label::before {
  content: "Q";
  position: absolute;
  color: #333;
  left: 0;
  top: 0.7em;
  font-size: clamp(20px, 3vw, 30px);
}
#faq .accordion .Label::after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #42758E;
  border-right: 2px solid #42758E;
  -webkit-transform: rotate(45deg);
  position: absolute;
  top: 1.4em;
  right: 10px;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
#faq .accordion .content {
  height: 0;
  margin-bottom: 10px;
  padding: 0 20px 0 2.4em;
  overflow: hidden;
  color: #42758E;
}
#faq .accordion .content::before {
  content: "A";
  position: absolute;
  color: #42758E;
  left: 0;
  top: 0%;
  font-size: clamp(20px, 3vw, 30px);
  font-family: "Noto Serif JP", serif;
}
#faq .accordion .content p {
  margin: 0;
}
#faq .accordion .toggle {
  display: none;
}
#faq .accordion .toggle:checked + .Label + .content {
  height: auto;
  padding: 0 20px 1.5em 2.4em;
  -webkit-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}
#faq .accordion .toggle:checked + .Label::after {
  -webkit-transform: rotate(-45deg) !important;
          transform: rotate(-45deg) !important;
}

#contact {
  margin-bottom: 100px;
}
#contact p.read {
  margin-bottom: 2em;
  line-height: 2em;
}
#contact p.read span {
  font-size: clamp(20px, 3vw, 30px);
  font-family: "Noto Serif JP", serif;
}
#contact form > div {
  margin: 2em 0;
}
#contact form .col-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 3%;
}
#contact form .col-2 div {
  width: 100%;
  margin: 0.5em 0;
}
#contact form .col-2 div p {
  margin: 0 0 0.5em 0;
}
#contact .name {
  font-size: clamp(18px, 2.4vw, 24px);
  line-height: 1.4em;
  font-family: "Noto Serif JP", serif;
  color: #42758E;
  margin: 0.4em 0;
}
#contact .required {
  display: inline-block;
  background-color: #42758E;
  color: #fff;
  line-height: 1em;
  padding: 0.3em 0.6em;
  margin-left: 0.8em;
  border-radius: 3px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(10.5px, 1.4vw, 14px);
  vertical-align: middle;
}
#contact .radio-name,
#contact .checkbox-name {
  line-height: 1em;
  font-size: clamp(15px, 2vw, 20px);
  vertical-align: middle;
  margin-left: 0.3em;
  margin-right: 1em;
}
#contact input[type=radio],
#contact input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  width: 30px;
  height: 30px;
  vertical-align: middle;
}
#contact input[type=radio]::before,
#contact input[type=checkbox]::before {
  font-family: "Material Symbols Outlined";
  display: block;
  line-height: 34px;
  text-align: center;
  color: #ccc;
  font-size: 30px;
}
#contact input[type=radio]:checked::before,
#contact input[type=checkbox]:checked::before {
  color: #42758E;
}
#contact input[type=radio]::before {
  content: "radio_button_unchecked";
}
#contact input[type=radio]:checked::before {
  content: "radio_button_checked";
}
#contact input[type=checkbox]::before {
  content: "check_box_outline_blank";
}
#contact input[type=checkbox]:checked::before {
  content: "check_box";
}
#contact input[type=text],
#contact input[type=email],
#contact input[type=tel] {
  width: 100%;
  height: 3em;
  border: 1px solid #42758E;
  border-radius: 4px;
  padding: 0.3em 0.6em;
  font-size: clamp(15px, 2vw, 20px);
  line-height: 1.4em;
}
#contact input[type=text]::-webkit-input-placeholder, #contact input[type=email]::-webkit-input-placeholder, #contact input[type=tel]::-webkit-input-placeholder {
  color: #999;
}
#contact input[type=text]::-moz-placeholder, #contact input[type=email]::-moz-placeholder, #contact input[type=tel]::-moz-placeholder {
  color: #999;
}
#contact input[type=text]:-ms-input-placeholder, #contact input[type=email]:-ms-input-placeholder, #contact input[type=tel]:-ms-input-placeholder {
  color: #999;
}
#contact input[type=text]::-ms-input-placeholder, #contact input[type=email]::-ms-input-placeholder, #contact input[type=tel]::-ms-input-placeholder {
  color: #999;
}
#contact input[type=text]::placeholder,
#contact input[type=email]::placeholder,
#contact input[type=tel]::placeholder {
  color: #999;
}
#contact select {
  width: 100%;
  border: 1px solid #42758E;
  height: 3em;
  border-radius: 4px;
  padding: 0.3em 0.6em;
  font-size: clamp(15px, 2vw, 20px);
  line-height: 1.4em;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
#contact textarea {
  width: 100%;
  border: 1px solid #42758E;
  border-radius: 4px;
  padding: 0.3em 0.6em;
  font-size: clamp(15px, 2vw, 20px);
  line-height: 1.4em;
}
#contact textarea::-webkit-input-placeholder {
  color: #999;
}
#contact textarea::-moz-placeholder {
  color: #999;
}
#contact textarea:-ms-input-placeholder {
  color: #999;
}
#contact textarea::-ms-input-placeholder {
  color: #999;
}
#contact textarea::placeholder {
  color: #999;
}
#contact input[type=submit] {
  display: block;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 5px;
  width: 15em;
  padding: 0.6em 1.8em;
  background-color: #42758E;
  font-size: clamp(16.5px, 2.2vw, 22px);
  color: #fff;
  font-weight: 500;
  margin: 0 auto;
  -webkit-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}
#contact input[type=submit]:hover {
  background-color: #6D9DB4;
  cursor: pointer;
}
#contact .privacy-policy {
  height: 250px;
  overflow-y: scroll;
  border: 1px solid #999;
  border-radius: 3px;
  padding: 1em;
}
#contact .privacy-policy h3 {
  text-align: center;
}
#contact .agree {
  text-align: center;
}

footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #42758E;
  color: #fff;
  padding: 40px 10%;
}
@media screen and (max-width: 768px) {
  footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
footer .txt {
  line-height: 1.4em;
}
@media screen and (max-width: 768px) {
  footer .txt {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    text-align: center;
  }
}
footer .txt .logo {
  display: block;
  width: 18vw;
}
@media screen and (max-width: 768px) {
  footer .txt .logo {
    width: 60vw;
    margin: 20px auto 0 auto;
  }
}
footer .txt .copyright {
  font-size: clamp(10.5px, 1.4vw, 14px);
}
footer #nav-f ul {
  border-left: 1px solid #fff;
  padding: 0 0 0 2.5em;
  margin: 0;
}
@media screen and (max-width: 768px) {
  footer #nav-f ul {
    border-left: none;
    padding: 0 0 2.5em 0;
    border-bottom: 1px solid #fff;
    text-align: center;
  }
}
footer #nav-f ul li {
  margin-bottom: 0.5em;
}
footer #nav-f ul li a {
  color: #fff;
}

.gotop {
  background-color: #42758E;
  color: #fff;
  position: fixed;
  right: 10px;
  bottom: 10px;
  width: 40px;
  height: 40px;
  -webkit-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
}
.gotop span {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-top: 2px solid;
  border-right: 2px solid;
  border-color: #fff;
  top: 16px;
  left: 16px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.gotop:hover {
  background-color: #6D9DB4;
}
.gotop.is-active {
  opacity: 1;
  visibility: visible;
}/*# sourceMappingURL=style.css.map */