@charset "UTF-8";
/*!
	Theme Name: kibou-fudosan
*/
/**/
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/

*,
*::before,
*::after {
  box-sizing: border-box;
}
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  list-style: none;
}

html {
  font-size: 62.5%;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  color: #333;
  background-color: #f8f8f8;
  line-height: 2;
  font-size: 1.8rem;
}

img {
  max-width: 100%;
  height: auto;
}

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

h1,h2,h3,h4,h5,h6 {
  font-weight: 400;
  line-height: 1.5;
}

.f-bold {
  font-weight: 600;
}

.container {
  width: min(95%, 100% - 40px);
  margin: 0 auto;
}

/* text align */
.txtL {
  text-align: left !important;
}

.txtC {
  text-align: center !important;
}

.txtR {
  text-align: right !important;
}


/* fade up */
.fadeUp {
  -webkit-animation: fadeUpAnime 0.8s forwards ease-in-out;
  animation: fadeUpAnime 0.8s forwards ease-in-out;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  opacity: 0;
}
@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

/* button */
.button,
.submit-button {
  width: 270px;
  margin: auto;
}
.button a,
.submit-button {
  background-color: #173a71;
  color: #fff;
  text-align: center;
  font-weight: 600;
  font-size: 2rem;
  transition: 0.3s ease-in-out;
  padding: 0.5em 0;
  border-radius: 50px;
  display: block;
}
.submit-button {
  border: 1px solid #173a71;
  margin: auto;
  cursor: pointer;
}
.button a:hover,
.submit-button:hover {
  opacity: 0.7;
}
.button a .btn-ico {
  width: 24px;
  vertical-align: middle;
}
@media (max-width: 1023px) {
  .button a,
  .submit-button {
    font-size: 1.8rem;
  }
  .button a .btn-ico {
    width: 20px;
  }
}
@media (max-width: 768px) {
  .button a,
  .submit-button {
    font-size: 2vw;
  }
  .section02 .button a {
    font-size: 3.5vw;
  }
  .button a .btn-ico {
    width: 16px;
  }
}

/* Sections */
.section {
  padding: 5em 0;
}
.section02 {
  margin-bottom: 3em;
}
.section02 p {
  margin-bottom: 2em;
}
.section-title {
  color: #173a71;
  line-height: 1;
  margin-bottom: 2em;
}
.section-title .ttl-en {
  font-family: "Roboto", sans-serif;
  font-size: 7.2rem;
  font-style: italic;
  display: block;
}
.section-title .ttl-jp {
  font-size: 3rem;
  display: block;
}
@media (max-width: 768px) {
  .section {
    padding: 3em 0;
  }
  .section-title .ttl-en {
    font-size: 4.8rem;
  }
  .section-title .ttl-jp {
    font-size: 2rem;
  }
}

/* Hero */
.hero {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hero .logo {
  width: 356px;
  line-height: 1;
}
.hero .button-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1em;
}
.hero-inner .hero-content .hero-lead {
  margin-bottom: 1em;
  font-size: 1.5vw;
  font-weight: 500;
  text-align: center;
  padding: 0.25em 0;
  color: #173a71;
  letter-spacing: 0.5em;
  background-color: #fff;
  border-top: 1px solid #173a71;
  border-bottom: 1px solid #173a71;
}
.hero-inner .hero-content .hero-title {
  color: #173a71;
  font-size: 4vw;
  line-height: 1.5;
  margin-bottom: 0.5em;
}
.hero-inner .hero-content .hero-title .text-yellow-line {
  font-weight: 600;
  background-color: #fcfdaf;
  color: #ee5789;
}
.hero-inner .hero-content .hero-text {
  font-size: 1.5vw;
}
@media (min-width: 1024px) {
  .hero-inner {
    display: flex;
    justify-content: space-between;
  }
  .hero-inner .hero-content {
    width: 50%;
  }
  .hero-inner .hero-illust {
    width: 38%;
    margin-top: 10em;
  }
}
@media (max-width: 1023px) {
  .hero .logo {
    max-width: 280px;
  }
  .hero .button-box {
    gap: 0.25em;
    width: 45%;
  }
  .hero .button-box .button {
    width: 100%;
  }
  .hero-inner {
    margin-top: 2em;
  }
  .hero-inner .hero-content {
    margin-bottom: 3em;
  }
  .hero-inner .hero-content .hero-lead {
    font-size: 2vw;
  }
  .hero-inner .hero-content .hero-title {
    font-size: 5.5vw;
    text-align: center;
  }
  .hero-inner .hero-content .hero-text {
    font-size: 2vw;
    text-align: center;
  }
  .hero-inner .hero-illust {
    width: 70%;
    margin-left: auto;
  }
}
@media (max-width: 768px) {
  .hero .logo {
    max-width: none;
    width: 40%;
  }
  .hero .button-box {
    width: 50%;
  }
  .hero-inner {
    margin-top: 1em;
  }
  .hero-inner .hero-content .hero-lead {
    font-size: 3vw;
  }
  .hero-inner .hero-content .hero-title {
    font-size: 6.5vw;
  }
  .hero-inner .hero-content .hero-text {
    font-size: 3vw;
  }
}

/* About us */
.section-aboutus {
  background: url(img/top/bg-right.png) no-repeat top right,url(img/top/bg-left.png) no-repeat bottom left;
  background-size: 30%,30%;
}
@media (min-width: 1024px) {
  .section-aboutus .flex-box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
  }
  .section-aboutus .flex-box .text-box {
    width: 45%;
  }
  .section-aboutus .flex-box .pict-box {
    width: 45%;
  }
}
@media (max-width: 768px) {
  .section-aboutus .flex-box .text-box {
    margin-bottom: 3em;
  }
}

/* Service */
.section-service .flex-box .service-box ol li {
  padding: 2em;
  background: #E8E7E7;
  background: linear-gradient(0deg, rgba(232, 231, 231, 1) 100%, rgba(247, 246, 246, 1) 0%);
}
.section-service .flex-box .service-box ol li:not(:last-child) {
  margin-bottom: 2em;
}
.section-service .flex-box .service-box ol li h3 {
  font-size: 2.4rem;
  font-weight: 600;
  border-bottom: 1px solid #333;
  margin-bottom: 0.5em;
  padding-bottom: 0.5em;
}
.section-service .flex-box .service-box ol li .title-num {
  font-family: "Roboto", sans-serif;
  font-style: italic;
  margin-right: 0.5em;
}
@media (min-width: 1024px) {
  .section-service .flex-box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .section-service .flex-box .text-box {
    width: 20%;
  }
  .section-service .flex-box .service-box {
    width: 75%;
  }
}
@media (min-width: 769px) {
  .section-service .flex-box .service-box ol li {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .section-service .flex-box .service-box ol li .service-ico {
    width: 180px;
  }
  .section-service .flex-box .service-box ol li .service-text {
    width: calc(100% - 220px);
  }
}
@media (max-width: 768px) {
  .section-service .flex-box .service-box ol li .service-ico {
    width: 150px;
    margin: 0 auto 1em;
  }
}

/* Case */
.section-case {
  padding-bottom: 8em;
}
.section-case .case-slider {
  padding-left: 2%;
}
.section-case .case-slider .slick-prev,
.section-case .case-slider .slick-next {
  border: 1px solid #333;
  background-color: #fff;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  top: 110%;
}
.section-case .case-slider .slick-prev {
  left: 2.5%;
}
.section-case .case-slider .slick-next {
  left: 120px;
}
.section-case .case-slider .slick-prev:hover,
.section-case .case-slider .slick-next:hover {
  opacity: 0.7;
}
.section-case .case-slider .slick-prev:before,
.section-case .case-slider .slick-next:before {
  color: #333;
  opacity: 1;
  font-family: inherit;
  font-size: 2.4rem;
}
.section-case .case-slider .slider-item-wrap {
  margin: 0 0.5em;
}
.section-case .case-slider .case-image {
  margin-bottom: 0.5em;
}
.section-case .case-slider .case-title {
  font-weight: 600;
  font-size: 2.4rem;
}
.section-case .case-slider .case-address {
  color: #173a71;
  font-weight: 600;
  font-size: 2rem;
}
@media (max-width: 1023px) {
  .section-case .case-slider .slick-next {
    left: 110px;
  }
}
@media (max-width: 768px) {
  .section-case {
    padding-bottom: 6em;
  }
  .section-case .case-slider .slick-prev,
  .section-case .case-slider .slick-next {
    width: 60px;
    height: 60px;
  }
  .section-case .case-slider .slick-next {
    left: 90px;
  }
}

/* Voice */
.section-voice {
  background: url(img/top/bg-right.png) no-repeat top right,url(img/top/bg-left.png) no-repeat bottom left;
  background-size: 30%,30%;
}
.section-voice .voice-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
.section-voice .voice-list:not(:last-child) {
  margin-bottom: 2em;
}
.section-voice .voice-list dt {
  width: 200px;
}
.section-voice .voice-list dd {
  width: calc(100% - 260px);
  background-color: #fff;
  box-shadow: 2px 2px 5px #ccc;
  padding: 1.5em;
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 1.5;
  position: relative;
}
.section-voice .voice-list dd:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -20px;
  margin: auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-right: 20px solid #ffffff;
  border-left: 0;
}
.section-voice .voice-list dd .text-yellow-line {
  background-color: #fcfdaf;
}
.section-voice .voice-list dd .position-ttl {
  font-size: 1.8rem;
  color: #173a71;
  display: block;
  margin-top: 0.5em;
}
@media (max-width: 768px) {
  .section-voice .voice-list dt {
    width: 120px;
  }
  .section-voice .voice-list dd {
    width: calc(100% - 150px);
    padding: 1em;
    font-size: 1.8rem;
  }
  .section-voice .voice-list dd .position-ttl {
    font-size: 1.6rem;
  }
}
@media (max-width: 568px) {
  .section-voice .voice-list dt {
    width: 90px;
  }
  .section-voice .voice-list dd {
    width: calc(100% - 120px);
    font-size: 1.6rem;
  }
  .section-voice .voice-list dd .position-ttl {
    font-size: 1.4rem;
  }
}

/* Company */
.section-company .section-title .ttl-en {
  margin-bottom: 0.2em;
}
.section-company .company-info {
  width: 100%;
  font-size: 2rem;
}
.section-company .company-info th,
.section-company .company-info td {
  padding: 1em 0;
}
.section-company .company-info th {
  width: 10em;
  text-align: left;
}
.section-company .flex-box .map-box iframe {
  width: 100%;
  height: 100%;
}
@media (min-width: 1024px) {
  .section-company .flex-box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .section-company .flex-box .text-box {
    width: 48%;
  }
  .section-company .flex-box .map-box {
    width: 50%;
  }
}
@media (max-width: 1023px) {
  .section-company .company-info {
    margin-bottom: 2em;
  }
  .section-company .flex-box .map-box iframe { 
    height: 400px;
  }
}
@media (max-width: 768px) {
  .section-company .company-info {
    display: block;
  }
  .section-company .company-info th,
  .section-company .company-info td {
    display: block;
    width: 100%;
  }
  .section-company .company-info th {
    padding-bottom: 0;
  }
  .section-company .company-info td {
    padding-top: 0;
  }
}

/* Contact */
.section-contact {
  background-color: #9a9a9a;
}
.section-contact .flex-box {
  margin-bottom: 4em;
}
.section-contact .section-title,
.section-contact .flex-box p {
  color: #fff;
}
.contact-table dt {
  color: #fff;
  margin-bottom: 0.5em;
}
.contact-table dt .required {
  background-color: #173a71;
  color: #fff;
  text-align: center;
  margin-left: 0.5em;
  padding: 0 0.5em;
}
.contact-table dd {
  margin-bottom: 2em;
}
.contact-table dd input,
.contact-table dd textarea {
  width: 100%;
  font-size: 2rem;
  padding: 0.5em;
}
.contact-table dd input {
  height: 40px;
}
.contact-table dd .mwform-radio-field {
  margin: 0 2em 0 0;
  color: #fff;
  display: inline-block;
}
.contact-table dd .mwform-radio-field input {
  width: auto;
  height: auto;
  margin: 0;
  vertical-align: middle;
}
.privacy-text {
  background-color: #fff;
  padding: 2em;
  max-height: 200px;
  overflow-y: scroll;
  margin-bottom: 2em;
}
.privacy-text p {
  font-size: 1.4rem;
}
.privacy-text p:not(:last-child) {
  margin-bottom: 1em;
}
.agree-btn {
  text-align: center;
  color: #fff;
  margin-bottom: 2em;
}
.confirm .contact-table dt,
.confirm .contact-table dd .mwform-radio-field,
.confirm .agree-btn,
.error .contact-table dt,
.error .contact-table dd .mwform-radio-field,
.error .agree-btn {
  color: #333;
}
@media (min-width: 1024px) {
  .section-contact .flex-box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
  }
  .section-contact .flex-box .section-title {
    width: 16em;
    margin-bottom: 0;
  }
  .section-contact .flex-box p {
    width: calc(100% - 18em);
  }
}

/* main-visual-title */
.main-visual-title {
  position: relative;
  padding: 5em 0;
}
.main-visual-title .wrapper {
  width: 96%;
  margin: 0 auto;
}
.main-visual-title .mv-ttl {
  text-align: center;
}
.main-visual-title .mv-ttl .mv-ttl-en {
  font-size: 7.2rem;
  font-family: "Roboto", sans-serif;
  font-style: italic;
  display: block;
  line-height: 1;
  text-transform: capitalize;
  color: #173a71;
}
.main-visual-title .mv-ttl .mv-ttl-jp {
  font-size: 3rem;
}
@media screen and (max-width:768px) {
  .main-visual-title {
    padding: 4em 0;
  }
  .main-visual-title .mv-ttl .mv-ttl-en {
    font-size: 4.8rem;
  }
  .main-visual-title .mv-ttl .mv-ttl-jp {
    font-size: 2rem;
  }
}
@media screen and (max-width:575px) { 
  .main-visual-title {
    padding: 3em 0;
  }
}

/* Footer */
.footer {
  padding: 1em 0;
}

.footer-copy {
  font-size: 1.4rem;
  text-align: center;
}
