/* -------------------------------------------------- */
/* global */

html {
  font-size: 62.5%;
  overflow-y: scroll;
}
body {
  background-color: #fff;
  color: var(--text-color1);
  font-family: 'Roboto', 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'YuGothic', 'Meiryo', sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
}
p {
  line-height: 1.5;
}
#container {
  align-items: stretch;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  min-height: 100svh;
  min-width: calc(1140px + 30px);
  position: relative;
}
.wrapper {
  margin: auto;
  max-width: calc(1140px + 30px);
  min-width: calc(1140px + 30px);
  padding: 0 15px;
  width: 100%;
}
.pc {
  display: block;
}
.sp {
  display: none;
}

/* -------------------------------------------------- */
/* header */

#header {
  background: #fff;
  border-top: 5px solid var(--gradient1);
  border-image: linear-gradient(90deg, var(--gradient1), var(--gradient2)) 1;
  height: 150px;
  position: fixed;
  width: 100%;
  z-index: 1000;
}
.header {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: space-between;
  margin: auto;
  max-width: 1680px;
  max-width: calc(1680px + 30px);
  padding: 3px 15px 7px;
}
.header-logo {
  align-items: center;
  border-right: 1px solid #ccc;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  padding: 0 15px;
  width: 240px;
}
.header-logo a {
  display: block;
  margin-bottom: 5px;
  transition: opacity .2s;
}
.header-logo a:hover {
  opacity: .5;
}
.header-logo a img {
  width: 140px;
}
.header-logo p {
  color: var(--main-color1);
  font-size: 1.1rem;
}
.header-nav {
  flex-grow: 1;
}
.header-nav ul {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding: 0 20px;
}
.header-nav ul li {
  margin: 5px 20px;
  position: relative;
}
.header-nav ul li a {
  align-items: center;
  color: var(--text-color1);
  display: flex;
  font-weight: 700;
  justify-content: flex-start;
  position: relative;
  transition: color .2s;
  z-index: 1200;
}
.header-nav ul li a img {
  margin-left: 5px;
  width: 9.5px;
}
.header-nav ul li a:hover {
  color: var(--main-color2);
}
.header-nav ul li div {
  display: none;
  left: 0;
  padding-top: 30px;
  position: absolute;
  top: 0;
  z-index: 1100;
}
.header-nav ul li div.header-nav-sub1 {
  width: 200px;
}
.header-nav ul li div.header-nav-sub2 {
  width: 557px;
}
.header-nav ul li div ul {
  background: #fff;
  box-shadow: 0 5px 10px rgba(0,0,0,.16);
  display: block;
  padding: 10px;
}
.header-nav ul li div ul li {
  border-bottom: 1px dotted #ccc;
  margin: 0;
}
.header-nav ul li div ul li:last-child {
  border-bottom: 0;
}
.header-nav ul li div ul li a {
  display: block;
  font-weight: 400;
  padding: .75em .5em;
}
.header-nav ul li div.header-nav-sub2 ul {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.header-nav ul li div.header-nav-sub2 ul li {
  width: 32%;
}
.header-contact {
  width: 391px;
}
.header-tel {
  align-items: center;
  color: var(--main-color2);
  display: flex;
  font-size: 3.4rem;
  font-weight: 700;
  justify-content: flex-start;
  margin-bottom: 10px;
}
.header-tel img {
  margin-right: 5px;
  width: 47px;
}
.header-tel p {
  color: #444;
  font-size: 1.2rem;
  font-weight: 400;
  margin-left: 10px;
}
.header-button {
  align-items: stretch;
  display: flex;
  justify-content: space-between;
}
.header-button a {
  background: transparent url(../images/arrow-right-white.webp) no-repeat center right 10px / 6.5px 9.5px;
  color: #fff;
  display: block;
  font-weight: 700;
  padding: .7em;
  position: relative;
  text-align: center;
  transition: color .2s;
  width: 188px;
}
.header-button a::before,
.header-button a::after {
  content: '';
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -2;
}
.header-button a:nth-child(1)::before {
  background-color: var(--main-color2);
}
.header-button a:nth-child(2)::before {
  background-color: var(--line-color);
}
.header-button a::after {
  background: #fff700;
  transition: width .2s;
  width: 0;
  z-index: -1;
}
.header-button a:nth-child(1):hover {
  background-image: url(../images/arrow-right-blue.webp);
  color: var(--main-color2);
}
.header-button a:nth-child(2):hover {
  background-image: url(../images/arrow-right-green.webp);
  color: var(--line-color);
}
.header-button a:hover::after {
  width: 100%;
}
.header-alert {
  background: var(--bg-color2);
  color: #c00;
}
.header-alert p {
  padding: .75em 0;
}

/* -------------------------------------------------- */
/* main */

main {
  flex-grow: 2;
  padding-top: 145px;
}
section {
  padding: 80px 0;
  position: relative;
}
h1.global {
  color: var(--main-color2);
  font-size: 3.6rem;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(255,255,255,1);
}
h2.global,
h3.global {
  color: var(--main-color2);
  font-size: 3.6rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 60px;
  text-align: center;
}
h2.global span,
h3.global span {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 15px;
}
.title {
  color: var(--bg-color2);
  font-size: 14rem;
  font-style: italic;
  font-weight: bold;
}
.button {
  align-items: center;
  display: flex;
  justify-content: center;
}
.button a {
  background: #fff url(../images/arrow-right-button.webp) no-repeat center right 20px / 6.5px 9.5px;
  border: 1px solid var(--main-color1);
  border-radius: 9999px;
  color: var(--main-color1);
  display: block;
  font-weight: 700;
  padding: .85em;
  text-align: center;
  transition: background .2s, border-color .2s;
  width: 360px;
}
.button a:hover {
  background-color: var(--hover-color);
  border-color: #c1c1c1;
}

/* -------------------------------------------------- */
/* headimage */

.headimage {
  background: transparent no-repeat center center / cover;
  background-blend-mode: lighten;
  background-color: rgba(255,255,255,.8);
  height: 200px;
}
.headimage .wrapper {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: flex-start;
}

/* -------------------------------------------------- */
/* breadcrumb */

.breadcrumb {
  padding: 0;
  position: relative;
}
.breadcrumb .wrapper {
  left: 50%;
  position: absolute;
  padding-bottom: 30px;
  padding-top: 30px;
  top: 0;
  transform: translateX(-50%);
  z-index: 1;
}
.breadcrumb ul {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.breadcrumb ul li,
.breadcrumb ul li a {
  color: var(--text-color1);
  font-size: 1.1rem;
}
.breadcrumb ul li {
  background: url(../images/arrow-right-gray.webp) no-repeat center left 5.5px / 6.5px 9.5px;
  padding-left: 15px;
}
.breadcrumb ul li:first-child {
  background: none;
  padding-left: 0;
}
.breadcrumb ul li a {
  display: block;
}
.breadcrumb ul li a:hover {
  text-decoration: underline;
}

/* -------------------------------------------------- */
/* cta */

.cta {
  background: rgba(13,94,245,.85);
  background: linear-gradient(180deg, rgba(13,94,245,.85), rgba(19,149,212,.85));
  box-shadow: 5px 5px 15px rgba(0,0,0,.3);
  min-height: 278px;
  min-width: calc(1140px + 30px);
  padding: 0;
  position: relative;
  z-index: 10;
}
.cta .wrapper {
  padding-bottom: 30px;
  padding-top: 40px;
  position: relative;
}
.cta .wrapper::after {
  background: url(../images/cta-bg.webp) no-repeat 0 0 / 282px 221.5px;
  content: '';
  display: block;
  height: 221.5px;
  position: absolute;
  right: 0;
  top: -44px;
  width: 282px;
}
.cta-head {
  align-items: center;
  color: #fff;
  display: flex;
  font-size: 3.6rem;
  font-weight: 700;
  justify-content: center;
  margin-bottom: 20px;
}
.cta-head img {
  margin-left: -2em;
  margin-right: 25px;
  width: 88px;
}
.cta-body {
  align-items: flex-end;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
}
.cta-select {
  align-items: stretch;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 546px;
}
.cta-select select {
  background: var(--bg-color2) url(../images/arrow-down-gray.webp) no-repeat center right 20px / 9.5px 6.5px;
  border: 1px solid #cdd6dd;
  margin: 10px 0;
  padding: .95em;
  width: 264px;
}
.cta-contact {
  width: 507px;
}
.cta-tel {
  align-items: center;
  color: #fff700;
  display: flex;
  flex-wrap: wrap;
  font-size: 3.5rem;
  font-weight: 700;
  justify-content: center;
  margin-bottom: 10px;
  width: 300px;
}
.cta-tel img {
  margin-right: 5px;
  width: 47px;
}
.cta-tel p {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 400;
  text-align: center;
  width: 100%;
}
.cta-tel p:last-of-type {
  font-size: 1.2rem;
}
.cta-button {
  margin-bottom: 10px;
  position: relative;
}
.cta-button::before,
.cta-button::after {
  content: '';
  display: block;
  height: calc(100% - 4px);
  left: 2px;
  position: absolute;
  top: 2px;
  width: calc(100% - 4px);
  z-index: -2;
}
.cta-button::before {
  background: #fff700;
}
.cta-button::after {
  background: #2b62ec;
  transition: width .2s;
  width: 0%;
}
.cta-button a,
.cta-button input[type='submit'] {
  background: transparent url(../images/arrow-right-blue.webp) no-repeat center right 20px / 6.5px 9.5px;
  border: 2px solid #fff;
  color: var(--main-color2);
  cursor: pointer;
  display: block;
  font-size: 2rem;
  font-weight: 700;
  padding: .5em;
  text-align: center;
  transition: border-color .2s, color .2s;
  width: 100%;
}
.cta-button:hover::after {
  width: calc(100% - 4px);
}
.cta-button a:hover,
.cta-button input[type='submit']:hover {
  background-image: url(../images/arrow-right-white.webp);
  border-color: #fff700;
  color: #fff;
}

/* -------------------------------------------------- */
/* intro */

.intro {
  background: var(--bg-color2);
  padding-bottom: 40px;
  padding-top: 70px;
}
.intro .wrapper {
  position: relative;
}
.intro h2.global,
.intro h3.global {
  margin-bottom: 15px;
  padding-left: 15px;
  text-align: left;
}
.intro p {
  font-size: 1.8rem;
  line-height: 1.65;
  margin-bottom: 10px;
  padding-left: 20px;
}
.intro-content {
  margin-bottom: 5px;
}
.intro-content ul {
  justify-content: flex-start;
}
.intro-content ul li {
  margin-right: 20px;
  padding: 15px;
}
.intro-image img {
  border-radius: 50%;
  display: block;
  margin: 0 auto 20px;
  width: 130px;
}
.intro-name {
  color: var(--main-color2);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;
}
.intro-text p {
  font-size: 1.4rem;
  margin-bottom: 0;
  padding-left: 0;
}
.intro-button {
  justify-content: flex-start;
}
.intro-button a {
  background: transparent url(../images/arrow-right-black.webp) no-repeat center right 20px / 6.5px 9.5px;
  border: 1px solid var(--text-color1);
  color: var(--text-color1);
}
.intro-bg {
  bottom: -41px;
  height: 729px;
  position: absolute;
  right: -70px;
  width: 486px;
}
.intro-bg p {
  bottom: 20px;
  color: #fff;
  font-size: 1.2rem;
  margin: 0;
  padding: 0;
  position: absolute;
  right: 90px;
}

/* -------------------------------------------------- */
/* list */

.list .wrapper {
  position: relative;
}
.list .title {
  color: var(--bg-color2);
  left: -150px;
  position: absolute;
  top: -40px;
  writing-mode: vertical-rl;
}
.list-filter {
  border-bottom: 1px solid #ccc;
  margin-bottom: 30px;
}
.list-filter-title {
  color: #999;
  font-weight: 700;
  margin-bottom: 20px;
}
.list-filter-select {
  align-items: center;
  display: flex;
  font-size: 1.6rem;
  justify-content: space-between;
  margin-bottom: 25px;
}
.list-filter-select select {
  background: var(--bg-color2) url(../images/arrow-down-gray.webp) no-repeat center right 20px / 9.5px 6.5px;
  border: 1px solid #cdd6dd;
  padding: .95em;
  width: 23.2%;
}
.list-filter-decide {
  display: none;
}
.list-filter-ctrl {
  align-items: center;
  display: flex;
  font-size: 1.4rem;
  font-weight: 700;
  justify-content: space-between;
  margin-bottom: 25px;
}
.list-filter-ctrl a,
.list-filter-ctrl button {
  color: var(--main-color2);
  font-weight: 700;
}
.list-filter-ctrl a:hover,
.list-filter-ctrl button:hover {
  text-decoration: underline;
}
.list-filter-tag,
.list-filter-tag ul {
  align-items: center;
  display: flex;
  justify-content: flex-start;
}
.list-filter-tag ul li {
  align-items: center;
  background: var(--bg-color1);
  border: 1px solid #98a6b5;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  margin-right: 10px;
  padding: .4em .6em;
}
.list-filter-tag ul li span {
  background: transparent url(../images/filter-delete.webp) no-repeat center center / 12px 12px;
  cursor: pointer;
  height: 12px;
  margin-left: 5px;
  width: 12px;
}
.list-filter-tag button {
  margin-left: 10px;
}
.list-filter-button {
  display: none;
}
.list-content ul {
  margin-bottom: 50px;
}
.list-content ul li {
  align-items: flex-start;
  border-bottom: 1px solid #ccc;
  display: flex;
  justify-content: flex-start;
  padding: 40px 0;
  position: relative;
}
.list-left {
  width: 390px;
}
.list-image {
  background: var(--bg-color2);
  height: 270px;
  width: 360px;
}
.list-image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.list-image a {
  display: block;
  transition: opacity .2s;
}
.list-image a:hover {
  opacity: .5;
}
.list-button {
  position: absolute;
  right: 0;
  top: 80px;
  width: 263px;
}
.list-button p {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 2px;
  text-align: center;
}
.list-button p::before,
.list-button p::after {
  content: '/';
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 400;
  margin: 0 5px;
  position: relative;
  top: 2px;
}
.list-button p::before {
  transform: scale(-1, 1);
}
.list-button a {
  background: transparent url(../images/arrow-right-blue.webp) no-repeat center right 22px / 6.5px 9.5px;
  border: 1px solid var(--main-color2);
  color: var(--main-color2);
  display: block;
  font-weight: 700;
  margin-bottom: 12px;
  padding: .5em;
  text-align: center;
  transition: background-color .2s, border-color .2s;
  width: 100%;
}
.list-button a:first-of-type {
  background-color: #fff700;
}
.list-button a:hover {
  background-color: var(--hover-color);
}
.list-right {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: calc(100% - 390px);
}
.list-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 35px;
  width: 100%;
}
.list-title a {
  color: var(--text-color1);
  transition: color .2s;
}
.list-title a:hover {
  color: var(--main-color2);
}
.list-table {
  margin-right: 30px;
  padding-bottom: 10px;
  width: 215px;
}
.list-table table {
  width: 100%;
}
.list-table table tr th {
  border-bottom: 1px solid #ccc;
  color: var(--main-color2);
  font-size: 1.2rem;
  font-weight: 400;
}
.list-table table tr td {
  border-bottom: 1px solid #ccc;
  font-size: 1.4rem;
  padding: .75em 0;
}
.list-price {
  border-bottom: 2px solid var(--main-color2);
  flex-grow: 2;
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: auto;
  padding-bottom: .5em;
}
.list-price span {
  color: var(--main-color2);
  margin-right: 10px;
}
.list-price strong {
  font-size: 3rem;
  margin-right: 5px;
}
.list-pager {
  margin-bottom: 20px;
}

/* -------------------------------------------------- */
/* type */

.type {
  padding-bottom: 20px;
}
.type-content .grid {
  align-items: stretch;
}
.type-item {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,.16);
  padding: 0 20px 40px 20px;
}
.type-name {
  border: 2px solid var(--main-color2);
  border-radius: 9999px;
  color: var(--main-color2);
  font-size: 2.4rem;
  font-weight: 700;
  margin: 0 auto 20px;
  padding: .35em;
  text-align: center;
  width: 200px;
}
.type-item p {
  line-height: 1.8;
}

/* -------------------------------------------------- */
/* category */

.category-model {
  margin-bottom: 40px;
}
.category-model ul.grid {
  align-items: stretch;
}
.category-model ul li {
  margin: 20px 0;
  width: 204px;
}
.category-model ul li a {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,.16);
  color: var(--main-color2);
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  height: 100%;
  padding: 20px;
  text-align: center;
  transition: box-shadow .2s;
}
.category-model ul li a:hover {
  box-shadow: 0 0 10px rgba(0,124,208,.9);
}
.category-model ul li a img {
  margin-bottom: 20px;
}
.category-maker ul.grid {
  align-items: stretch;
}
.category-maker ul li {
  width: 150px;
}
.category-maker ul li a {
  background: var(--bg-color1);
  color: var(--main-color2);
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  height: 100%;
  padding: 8.5px;
  text-align: center;
  transition: background .2s;
}
.category-maker ul li a:hover {
  background: var(--bg-color2);
}
.category-maker ul li a img {
  margin-bottom: 10px;
}
.category-maker ul li a span {
  color: var(--text-color1);
  display: block;
  font-size: 1rem;
  font-weight: 400;
  margin-top: 5px;
  text-align: center;
  text-transform: uppercase;
}

/* -------------------------------------------------- */
/* area */

.area {
  background: var(--bg-color2);
  min-width: calc(1140px + 30px);
}
.area .wrapper {
  position: relative;
}
.area .title {
  color: #fff;
  position: absolute;
  right: -80px;
  top: -80px;
}
.area-body {
  align-items: center;
}
.area h2.global {
  margin-bottom: 30px;
  text-align: left;
}
.area-content p {
  line-height: 1.875;
  margin-bottom: 40px;
}
.area-content ul {
  margin-left: 0;
}
.area-content ul li {
  align-items: center;
  display: flex;
  font-weight: 700;
  justify-content: flex-start;
  margin-bottom: 10px;
}
.area-content ul li:last-child {
  margin-bottom: 0;
}
.area-content ul li span {
  border-radius: 4px;
  color: #fff;
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  margin-right: 25px;
  padding: .6em;
  text-align: center;
  transition: background .2s;
  width: 108px;
}
.area-content ul li span.area1 {
  background: #007bff;
}
.area-content ul li span.area2 {
  background: #17a2b8;
}
.area-content ul li span.area3 {
  background: #29a745;
}
.area-content ul li span.area4 {
  background: #ffc108;
}
.area-content ul li span.area5 {
  background: #dc3545;
}
.area-content ul li span.area6 {
  background: #fd588B;
}
.area-content ul li span.area7 {
  background: #7e308d;
}
.area-content ul li span.area8 {
  background: #6c757d;
}
.area-content ul li a {
  color: var(--text-color1);
  margin-right: 1em;
}
.area-content ul li a:last-child {
  margin-right: 0;
}
.area-content ul li a:hover {
  text-decoration: underline;
}
.area-map {
  background: url(../images/area-map.webp) no-repeat top left / 548px 620px;
  height: 620px;
  pointer-events: none;
  position: relative;
}
.area-map ul li span {
  background: #fff;
  border: 1px solid #707070;
  border-radius: 4px;
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  padding: .5em;
  position: absolute;
  text-align: center;
  transition: background .2s, border-color .2s, color .2s;
  width: 108px;
}
.area-map ul li:nth-child(1) span {
  color: #007bff;
  left: 234px;
  top: 150px;
}
.area-map ul li:nth-child(2) span {
  color: #17a2b8;
  left: 184px;
  top: 317px;
}
.area-map ul li:nth-child(3) span {
  color: #29a745;
  left: 388px;
  top: 400px;
}
.area-map ul li:nth-child(4) span {
  color: #ffc108;
  left: 276px;
  top: 484px;
}
.area-map ul li:nth-child(5) span {
  color: #dc3545;
  left: 111px;
  top: 386px;
}
.area-map ul li:nth-child(6) span {
  color: #fd588B;
  left: 22px;
  top: 438px;
}
.area-map ul li:nth-child(7) span {
  color: #7e308d;
  left: 130px;
  top: 530px;
}
.area-map ul li:nth-child(8) span {
  color: #6c757d;
  left: 76px;
  top: 582px;
}

/* -------------------------------------------------- */
/* results */

.results {
  background: var(--bg-color2);
  padding-top: 65px;
}
.results .wrapper {
  position: relative;
}
.results .wrapper::before {
  background: url(../images/results-bg.webp) no-repeat 0 0 / 269px 213px;
  content: '';
  display: block;
  height: 213px;
  position: absolute;
  right: 10px;
  top: -82px;
  width: 269px;
  z-index: 0;
}
.results .title {
  color: #fff;
  left: -150px;
  position: absolute;
  top: 0;
  writing-mode: vertical-rl;
}
.results h2.local {
  background: url(../images/results-local.webp) no-repeat top 12px left / 30px 30px;
  border-bottom: 1px solid var(--main-color2);
  color: var(--main-color2);
  font-size: 2.4rem;
  line-height: 1.5;
  margin-bottom: 60px;
  padding: .4em 300px .4em 40px;
}
.results-content {
  margin-bottom: 0;
  position: relative;
}
.results-content ul {
  align-items: stretch;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.results-content ul::before,
.results-content ul::after {
  content: '';
  display: block;
  order: 1;
  width: calc(25% - 30px);
}
.results-content ul li {
  background: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,.16);
  margin: 15px;
  padding: 10px;
  width: calc(25% - 30px);
}
.results-image {
  background: var(--bg-color2);
  height: 180px;
  margin-bottom: 10px;
}
.results-image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.results-name {
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 10px;
  text-align: center;
}
.results-price {
  color: var(--main-color2);
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;
}
.results-price span {
  background: linear-gradient(180deg, var(--gradient1), var(--gradient2));
  border-radius: 5px;
  color: #fff;
  display: block;
  font-size: 1.2rem;
  font-weight: 400;
  margin: 0 auto 10px;
  padding: .7em;
  width: 117px;
}
.results-price strong {
  font-size: 3rem;
}
.results-text table {
  border-top: 1px solid #cdd6dd;
  font-size: 1.2rem;
  margin-bottom: 28px;
  width: 100%;
}
.results-text table tr th {
  border-bottom: 1px solid #cdd6dd;
  font-weight: 400;
  padding: .6em 1em .5em;
}
.results-text table tr td {
  border-bottom: 1px solid #cdd6dd;
  font-weight: 700;
}
.results-link a {
  background: var(--hover-color) url(../images/arrow-right-gray.webp) no-repeat center right 10px / 6.5px 9.5px;
  border: 1px solid var(--hover-color);
  color: var(--text-color1);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 15px;
  padding: .75em;
  width: 170px;
}

/* -------------------------------------------------- */
/* voice */

.voice {
  background: linear-gradient(225deg, #107DE3, #1395D4 170px, #fff 170px);
}
.voice .wrapper {
  position: relative;
}
.voice .title {
  left: -100px;
  position: absolute;
  top: -80px;
}
.voice h2.global {
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
.voice-content {
  margin-bottom: 60px;
}
.voice dl {
  border-bottom: 1px solid #707070;
  padding: 30px 0;
}
.voice dl dt {
  margin-bottom: 15px;
}
.voice-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
}
.voice-info {
  align-items: center;
  display: flex;
  justify-content: flex-start;
}
.voice-rate {
  color: var(--main-color1);
  font-size: 1.8rem;
  font-weight: 700;
  margin-right: 24px;
}
.voice-rate span {
  margin-left: 15px;
}
.voice-pref,
.voice-name {
  font-size: 1.2rem;
}
.voice-pref {
  margin-right: 24px;
  text-decoration: underline;
}
.voice-pref a {
  color: var(--text-color1);
  text-decoration: underline;
  transition: color .2s;
}
.voice-pref a:hover {
  color: var(--main-color2);
}
.voice dd p {
  line-height: 1.8;
}
.voice dd p a {
  color: var(--text-color1);
  font-weight: 700;
  margin-left: 15px;
  text-decoration: underline;
  transition: color .2s;
}
.voice dd p a:hover {
  color: var(--main-color2);
}

/* -------------------------------------------------- */
/* faq */

.faq {
  padding-top: 120px;
}
.faq .title {
  left: 50%;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
}
.faq h2.global {
  margin-bottom: 30px;
  position: relative;
}
.faq p {
  line-height: 1.8;
  margin-bottom: 80px;
  text-align: center;
}
.faq-content {
  border: 1px solid #ccc;
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
  margin-bottom: 60px;
  overflow: hidden;
}
.faq dl {
  border-bottom: 1px solid #ccc;
}
.faq dl dt,
.faq dl dd {
  align-items: flex-start;
  display: flex;
  justify-content: flex-start;
  line-height: 1.8;
  padding: 12px 40px;
}
.faq dl dt {
  background: #fff url(../images/arrow-down-gray.webp) no-repeat center right 20px / 12px 8px;
  border-bottom: 1px solid #ccc;
  cursor: pointer;
  font-weight: 700;
  transition: background .2s, color .2s;
}
.faq dl dt.show {
  background-color: var(--bg-color2);
  background-image: url(../images/arrow-up-blue.webp);
  color: var(--main-color2);
}
.faq dl dt span,
.faq dl dd span {
  align-items: center;
  border-radius: 50%;
  display: flex;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  height: 36px;
  justify-content: center;
  margin-right: 16px;
  min-width: 36px;
  width: 36px;
}
.faq dl dt p,
.faq dl dd p {
  margin-bottom: 0;
  margin-top: 4px;
  text-align: left;
}
.faq dl dt span {
  background: var(--main-color1);
  color: #fff;
  padding-bottom: 4px;
}
.faq dl dd span {
  background: var(--hover-color);
  color: var(--main-color1);
}

/* -------------------------------------------------- */
/* pager */

.pager {
  align-items: center;
  display: flex;
  justify-content: center;
}
.pager ul {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 15px;
}
.pager ul li {
  margin: 0 5px;
}
.pager ul li a,
.pager ul li span {
  display: block;
  font-size: 1.8rem;
  padding: .5em;
  transition: color .2s;
}
.pager ul li a,
.pager ul li span {
  color: #98a6b5;
}
.pager ul li a:hover,
.pager ul li span strong {
  color: var(--main-color1);
  font-weight: 500;
}
.pager-arrow a {
  background: #fafafa no-repeat center center / 16px 16px;
  border: 1px solid var(--bg-color2);
  border-radius: 10px;
  display: block;
  height: 50px;
  transition: background .2s, border-color .2s;
  width: 50px;
}
.pager-arrow a:hover {
  background-color: var(--hover-color);
  border-color: #c1c1c1;
}
.pager-prev a {
  background-image: url(../images/pager-prev.webp);
}
.pager-next a {
  background-image: url(../images/pager-next.webp);
}

/* -------------------------------------------------- */
/* footer */

#footer {
  background: var(--gradient1);
  background: linear-gradient(180deg, var(--gradient1), var(--gradient2));
  min-width: calc(1140px + 30px);
  padding: 40px 0;
}
.footer {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer-logo {
  align-items: center;
  border-right: 1px solid #fff;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  padding: 10px 25px 0 0;
  width: 305px;
}
.footer-logo a {
  display: block;
  margin-bottom: 10px;
  transition: opacity .2s;
}
.footer-logo a:hover {
  opacity: .5;
}
.footer-logo a img {
  width: 168px;
}
.footer-logo p {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.footer-logo p:nth-of-type(2) {
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.footer-nav {
  align-items: flex-start;
  display: flex;
  flex-grow: 1;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 10px 40px 0;
}
.footer-nav ul {
  width: 35%;
}
.footer-nav > ul:nth-of-type(3) {
  width: 30%;
}
.footer-nav > ul:last-of-type {
  margin-left: 35%;
  margin-top: -20px;
  width: 100%;
}
.footer-nav ul li {
  line-height: 1.65;
}
.footer-nav ul li a,
.footer-nav ul li span {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
}
.footer-nav ul li a:hover {
  text-decoration: underline;
}
.footer-nav ul ul {
  margin-bottom: 10px;
  width: 100%;
}
.footer-nav ul ul li a {
  background: url(../images/arrow-right-yellow.webp) no-repeat left center / 6.5px 9.5px;
  font-size: 1.2rem;
  font-weight: 400;
  padding-left: 12px;
}
.footer-contact {
  width: 263px;
}
.footer-tel {
  align-items: center;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  font-size: 3rem;
  font-weight: 700;
  justify-content: center;
  margin-bottom: 15px;
}
.footer-tel img {
  margin-right: 5px;
  width: 47px;
}
.footer-tel p {
  font-size: 1.2rem;
  font-weight: 400;
  text-align: center;
  width: 100%
}
.footer-button a {
  background: transparent url(../images/arrow-right-white.webp) no-repeat center right 10px / 6.5px 9.5px;
  color: #fff;
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  padding: .7em;
  text-align: center;
  transition: background .2s;
  width: 100%;
}
.footer-button a:nth-child(1) {
  background-color: #fff700;
  background-image: url(../images/arrow-right-blue.webp);
  color: var(--main-color2);
  margin-bottom: 10px;
}
.footer-button a:nth-child(2) {
  background-color: var(--line-color);
}
.footer-button a:nth-child(1):hover {
  background-color: var(--hover-color);
}
.footer-button a:nth-child(2):hover {
  background-color: var(--text-color1);
}
.footer-small {
  margin-top: 40px;
  padding: 1em;
  text-align: center;
  width: 100%;
}
.footer-small small {
  color: #fff;
  font-size: 1.2rem;
}
.footer-cta {
  bottom: -60px;
  position: fixed;
  right: 10px;
  transition: bottom .3s;
  z-index: 900;
}
.footer-cta.show {
  bottom: 10px;
}
.footer-cta-head,
.footer-cta-net,
.footer-cta-line {
  display: none;
}
.footer-cta-totop button {
  align-items: center;
  background: var(--main-color2);
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  height: 50px;
  justify-content: center;
  transition: background .2s;
  width: 50px;
}
.footer-cta-totop button:hover {
  background: var(--text-color1);
}
