@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Old+Mincho:wght@400;500;600;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&family=Zen+Old+Mincho:wght@400;500;600;700;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 10px;
  width: 100%;
}
@media (max-width: 835px) {
  html {
    font-size: 9.4px;
  }
}

body {
  font-size: 1.6rem;
  width: 100%;
  line-height: 180%;
}

.sp {
  display: none;
}
@media (max-width: 554px) {
  .sp {
    display: block;
  }
}

.sp-none {
  display: block;
}
@media (max-width: 554px) {
  .sp-none {
    display: none !important;
  }
}

.pc {
  display: block;
}
@media (max-width: 554px) {
  .pc {
    display: none;
  }
}

.tb {
  display: none;
}
@media (max-width: 835px) {
  .tb {
    display: block;
  }
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

main {
  width: 100%;
  letter-spacing: 0.08rem;
  max-width: 2200px;
  overflow: hidden;
  background-color: #f4f7f8;
}

h1,
h2,
h3 {
  font-family: "Zen Old Mincho", serif;
}

h1 {
  font-weight: 900;
  font-size: clamp(4rem, 3.5vw, 5.5rem);
  line-height: 180%;
  padding-top: 2rem;
}
@media (max-width: 554px) {
  h1 {
    font-size: 3.6rem;
    letter-spacing: 0;
    text-align: center;
    padding: 3rem 0;
  }
}

h2 {
  font-size: 3rem;
  line-height: 150%;
  padding: 2rem 0;
}
@media (max-width: 554px) {
  h2 {
    font-size: 2.4rem;
  }
}

h3 {
  font-size: 2.6rem;
  line-height: 150%;
}
@media (max-width: 554px) {
  h3 {
    font-size: 2rem !important;
  }
}

strong {
  font-size: 4.5rem;
}
@media (max-width: 554px) {
  strong {
    font-size: 3.1rem;
  }
}

p {
  text-align: justify;
}

p,
a {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
}

a,
button {
  color: #333;
  transition: 0.3s;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  display: inline-block;
}

button {
  border: 0;
}

a:hover,
button:hover {
  opacity: 0.7;
}

picture {
  width: 100%;
}
picture img {
  width: 100%;
}

.button {
  display: block;
  width: 380px;
  color: #f77706;
  font-size: 1.7rem;
  padding: 2px;
  background: linear-gradient(135deg, #faad1f, #f05100);
  border-image-slice: 1;
  border-radius: 5rem;
  margin: 0 auto;
}
@media (max-width: 554px) {
  .button {
    width: 310px;
  }
}
.button .inner {
  display: block;
  padding: 2.3rem 0 2.3rem 0;
  background-color: #fff;
  border-radius: 5rem;
  position: relative;
  text-align: center;
}
.button .inner::before, .button .inner::after {
  content: "";
  display: block;
  position: absolute;
  background: #f77706;
}
.button .inner::before {
  width: 3rem;
  height: 1px;
  top: 50%;
  right: 2.3rem;
}
.button .inner::after {
  width: 1rem;
  height: 1px;
  transform: rotate(55deg);
  right: 2.2rem;
  top: calc(50% - 4px);
}

.c-orange {
  color: #f77706;
}

.b-orange {
  font-family: "Zen Old Mincho", serif;
  background-color: #f77706;
  color: #fff;
}

.bd-orange {
  color: #f77706;
  border-bottom: 2px solid #f77706;
}

.flex {
  display: flex;
  align-items: center;
}

.scroll {
  width: 100%;
  position: relative;
}
@media (max-width: 835px) {
  .scroll {
    display: none;
  }
}

.scrolldown {
  display: block;
  position: absolute;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99;
}
.scrolldown p {
  font-size: 1.3rem;
  display: inline-block;
  margin: 0 auto;
  writing-mode: vertical-rl;
  font-family: "Zen Old Mincho", serif;
  position: relative;
  letter-spacing: 0.11rem;
}
.scrolldown p .arrow::before, .scrolldown p .arrow::after {
  display: block;
  content: "";
  background-color: #b2b2b2;
  position: absolute;
}
.scrolldown p .arrow::before {
  width: 1px;
  height: 45px;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: calc(50% - 2px);
}
.scrolldown p .arrow::after {
  width: 1px;
  height: 8px;
  top: calc(100% + 58px);
  right: calc(50% - 3px);
  transform: translateX(-50%) rotate(55deg);
}
.scrolldown .circle {
  position: absolute;
  display: block;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid #b2b2b2;
  bottom: -50%;
  left: 50%;
  transform: translateX(-50%);
}

header {
  width: 100%;
  height: 90px;
  position: fixed;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 999;
  display: flex;
  align-items: center;
}
@media (max-width: 554px) {
  header {
    height: 50px;
  }
}
header nav {
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header nav a {
  width: 200px;
}
header nav a img {
  height: 38px;
  width: auto;
}
header nav ul {
  display: flex;
  align-items: center;
}
header nav ul li {
  position: relative;
}
header nav ul li a {
  display: block;
  font-family: "Zen Old Mincho", serif;
  width: 100%;
  padding: 0 2rem;
  text-align: center;
}
header nav ul li:last-child {
  margin-right: 0;
  background-color: #ffa706;
  border-radius: 10px;
  font-weight: 700;
  padding: 0.5rem 2rem 0.5rem 4.5rem;
  position: relative;
}
header nav ul li:last-child a {
  color: #fff;
  text-align: center;
}
header nav ul li:last-child::before {
  content: "";
  display: block;
  width: 3rem;
  height: 50%;
  background-image: url("../img/contact.svg");
  background-size: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
}
header nav ul li:nth-child(1)::before, header nav ul li:nth-child(2)::before {
  content: "";
  position: absolute;
  display: block;
  height: 100%;
  width: 1px;
  background-color: #333;
  top: 0;
  right: 0;
}
@media (max-width: 834px) {
  header nav ul {
    position: absolute;
    top: calc(100dvh - 100px);
    height: 100px;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 1rem;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
  }
  header nav ul li {
    width: 50%;
    border: 2px solid #f77706;
    height: 50%;
    display: flex;
    align-items: center;
  }
  header nav ul li:nth-child(1), header nav ul li:nth-child(2) {
    margin-bottom: -3px;
  }
  header nav ul li:nth-child(1)::before, header nav ul li:nth-child(2)::before {
    display: none;
  }
  header nav ul li:nth-child(1), header nav ul li:nth-child(3) {
    border-right: none;
  }
  header nav ul li:nth-child(4) {
    border-radius: 0;
    background-color: #f77706;
  }
  header nav ul li a {
    padding: 0 1rem;
  }
}

.top-word {
  width: 100%;
  height: 100%;
  position: relative;
  padding-top: 90px;
}
@media (max-width: 554px) {
  .top-word {
    padding-top: 50px;
  }
}
.top-word .txt-box {
  background-color: #fff;
  width: 50%;
  height: 85dvh;
  max-height: 700px;
  position: relative;
  background-image: url("../img/top-img3.svg");
  background-size: 100%;
  background-position: 0% 102%;
  background-repeat: no-repeat;
}
@media (min-width: 1800px) {
  .top-word .txt-box {
    width: 60%;
    max-height: none;
  }
}
@media (max-width: 835px) {
  .top-word .txt-box {
    width: 60%;
    height: 500px;
  }
}
@media (max-width: 554px) {
  .top-word .txt-box {
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    text-align: center;
    background-position: 0% 100.5%;
    position: relative;
    z-index: 2;
  }
  .top-word .txt-box::after {
    content: "";
    display: block;
    width: 50%;
    height: 150%;
    background-color: #f4f7f8;
    position: absolute;
    top: -50%;
    left: 0;
    z-index: -1;
    transform: rotate(-45deg);
  }
}
.top-word .txt-box .top-sp {
  padding: 3.7rem 0 0 0;
}
.top-word .txt-box .center {
  width: -moz-max-content;
  width: max-content;
  position: absolute;
  top: calc(50% - 6rem);
  left: calc(50% + 5rem);
  transform: translate(-50%, -50%);
}
@media (max-width: 1200px) {
  .top-word .txt-box .center {
    left: 3rem;
    transform: translate(0%, -50%);
  }
}
@media (max-width: 835px) {
  .top-word .txt-box .center {
    left: 3rem;
    transform: translate(0%, 0%);
    top: 5rem;
  }
}
@media (max-width: 554px) {
  .top-word .txt-box .center {
    width: 100%;
    position: static;
    padding: 3rem 0 5rem 0;
  }
}
.top-word .txt-box::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  right: -99%;
  width: 100%;
  height: 100%;
  background-image: url(../img/top-bg.svg);
  background-size: contain;
  vertical-align: middle;
  background-repeat: no-repeat;
}
@media (max-width: 554px) {
  .top-word .txt-box::before {
    background-size: cover;
  }
}
.top-word .txt-box p {
  line-height: 200%;
  font-size: 3rem;
  font-size: clamp(2.3rem, 2vw, 3.5rem);
  padding-left: 80px;
  position: relative;
  font-family: "Zen Old Mincho", serif;
}
@media (max-width: 554px) {
  .top-word .txt-box p {
    font-size: 2rem;
    padding: 0 3%;
    text-align: center;
  }
}
.top-word .txt-box p::before {
  display: block;
  content: "";
  width: 50px;
  height: 1px;
  border-bottom: 1px dashed #333;
  position: absolute;
  top: 50%;
  left: 0;
}
@media (max-width: 554px) {
  .top-word .txt-box p::before {
    display: none;
  }
}
.top-word .txt-box .b-orange {
  font-size: 3.5rem;
  font-size: clamp(2.3rem, 2vw, 3.5rem);
  font-weight: 700;
  padding: 0 1rem;
}
@media (max-width: 554px) {
  .top-word .txt-box .b-orange {
    font-size: 2rem;
  }
}
.top-word .txt-box ul {
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Zen Old Mincho", serif;
  letter-spacing: 0.15rem;
  font-weight: 700;
  font-size: 2.7rem;
  font-size: clamp(1.5rem, 2vw, 2.7rem);
  padding-top: 5rem;
}
@media (max-width: 554px) {
  .top-word .txt-box ul {
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-evenly;
    padding: 0;
  }
}
.top-word .txt-box ul li {
  padding: 1rem 2.5rem;
  border: 1px dashed #333;
  margin-right: 3rem;
}
@media (max-width: 554px) {
  .top-word .txt-box ul li {
    width: 45%;
    min-width: 130px;
    margin: 0;
    text-align: center;
    font-size: 2rem;
  }
  .top-word .txt-box ul li:nth-child(3) {
    margin-top: 2rem;
  }
}
.top-word .img-box {
  display: flex;
  flex-direction: row-reverse;
  width: 40%;
  height: 750px;
  position: absolute;
  z-index: 1;
  right: 90px;
  top: 14rem;
}
@media (min-width: 1800px) {
  .top-word .img-box {
    height: 90dvh;
    right: 200px;
  }
}
@media (max-width: 1200px) {
  .top-word .img-box {
    width: 25%;
  }
}
@media (max-width: 960px) {
  .top-word .img-box {
    height: 450px;
    width: 30%;
    top: 45rem;
  }
}
@media (max-width: 740px) {
  .top-word .img-box {
    position: static;
    top: 0;
    width: 90%;
    margin-left: auto;
    margin: 0 auto;
  }
}
@media (max-width: 554px) {
  .top-word .img-box {
    height: 350px;
  }
}
.top-word .img-box::before {
  content: "";
  display: block;
  width: 180px;
  height: 700px;
  position: absolute;
  top: 100px;
  right: -150px;
  background: linear-gradient(#fdc70c, #f3903f);
  transform: skewX(23deg);
  mix-blend-mode: multiply;
  z-index: 1;
  border-radius: 7px;
}
@media (max-width: 960px) {
  .top-word .img-box::before {
    width: 50%;
    right: -150px;
    top: 20px;
  }
}
@media (max-width: 740px) {
  .top-word .img-box::before {
    right: -100px;
    width: 30%;
  }
}
@media (max-width: 554px) {
  .top-word .img-box::before {
    width: 20%;
  }
}
.top-word .img-box li {
  overflow: hidden;
  position: relative;
  transform: skewX(23deg);
  border-radius: 7px;
  display: flex;
  justify-content: center;
}
.top-word .img-box li img {
  display: block;
  transform: skewX(-23deg);
  position: absolute;
}
.top-word .img-box li:first-child {
  width: 50%;
  height: 100%;
  position: relative;
  margin-left: -5%;
}
@media (max-width: 1200px) {
  .top-word .img-box li:first-child {
    width: 100%;
    margin-left: -30%;
  }
}
@media (max-width: 960px) {
  .top-word .img-box li:first-child {
    height: 115%;
    width: 100%;
    margin-left: 0;
  }
}
@media (max-width: 740px) {
  .top-word .img-box li:first-child {
    height: 115%;
    width: 40%;
    margin: 0 auto;
    margin-left: -5%;
  }
}
@media (max-width: 554px) {
  .top-word .img-box li:first-child {
    width: 150px;
  }
}
.top-word .img-box li:first-child img {
  height: 115%;
}
.top-word .img-box li:nth-child(2) {
  width: 35%;
  margin-top: 80%;
  height: 65%;
}
@media (max-width: 1200px) {
  .top-word .img-box li:nth-child(2) {
    width: 90%;
    margin-top: 500px;
  }
}
@media (max-width: 960px) {
  .top-word .img-box li:nth-child(2) {
    width: 100%;
    margin-top: 90px;
    height: 65%;
  }
}
@media (max-width: 740px) {
  .top-word .img-box li:nth-child(2) {
    width: 30%;
    margin: 0 auto;
    top: 10%;
    margin-left: 20%;
  }
}
.top-word .img-box li:nth-child(2) img {
  height: 112%;
}
.top-word .bd1,
.top-word .bd2 {
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  transform: skewX(23deg);
}
.top-word .bd1::before, .top-word .bd1::after,
.top-word .bd2::before,
.top-word .bd2::after {
  content: "";
  display: block;
  width: 1px;
  height: 40%;
  border-left: 1px solid #b2b2b2;
  position: absolute;
}
@media (max-width: 1200px) {
  .top-word .bd1,
  .top-word .bd2 {
    width: 143%;
  }
}
@media (max-width: 960px) {
  .top-word .bd1,
  .top-word .bd2 {
    width: 105%;
  }
}
.top-word .bd1::before {
  left: -40px;
  bottom: -20%;
}
@media (max-width: 554px) {
  .top-word .bd1::before {
    bottom: -10px;
  }
}
@media (max-width: 740px) {
  .top-word .bd1::before {
    left: 5%;
  }
}
.top-word .bd1::after {
  border-left: 1px dashed #b2b2b2;
  height: 25%;
  left: -80px;
  bottom: -26%;
}
@media (max-width: 740px) {
  .top-word .bd1::after {
    left: 0;
  }
}
@media (max-width: 554px) {
  .top-word .bd1::after {
    bottom: -50px;
  }
}
.top-word .bd2::before {
  right: -60px;
  top: 30px;
  height: 30%;
}
@media (max-width: 960px) {
  .top-word .bd2::before {
    right: -40px;
    top: 0px;
  }
}
.top-word .bd2::after {
  display: none;
}

/*--section2--*/
.sec2 {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 auto;
  max-width: 1500px;
}
@media (max-width: 554px) {
  .sec2 {
    flex-direction: column-reverse;
  }
}

.business-img {
  width: 50%;
  max-width: 650px;
  margin: 0 auto;
  margin-top: -3rem;
  position: relative;
}
.business-img picture {
  width: 100%;
}
@media (max-width: 835px) {
  .business-img {
    width: 60%;
    margin-left: 0;
    margin-right: auto;
    margin-top: 0;
    padding-top: 8rem;
  }
}
@media (max-width: 740px) {
  .business-img {
    width: 80%;
    margin: 0 auto;
  }
}
@media (max-width: 554px) {
  .business-img {
    padding-top: 5rem;
    width: 90%;
    padding-bottom: 5rem;
  }
}

.business-txt {
  width: 50%;
  padding: 0 3%;
  background-image: url("../img/sec2-bg.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom;
  padding-bottom: 13rem;
  padding-top: 30%;
}
@media (max-width: 554px) {
  .business-txt {
    padding-bottom: 10rem;
    padding-top: 5%;
    padding-bottom: 7rem;
  }
}
.business-txt h2 {
  text-align: center;
  padding-bottom: 7rem;
  position: relative;
}
.business-txt h2::before {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 3rem;
  bottom: 2rem;
  left: 50%;
  background-color: #b2b2b2;
}
.business-txt p {
  padding-bottom: 3.5rem;
}
@media (max-width: 835px) {
  .business-txt {
    margin: 0 auto;
    width: 94%;
    padding-top: 4rem;
    padding-bottom: 10rem;
  }
}
@media (max-width: 554px) {
  .business-txt {
    width: 80%;
    margin: 0 auto;
    width: 94%;
    background: none;
    padding-top: 6rem;
    padding-bottom: 0;
  }
}

/*--sec3 point--*/
.sec3-point {
  background-image: url("../img/bg-orange.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-top-left-radius: 5rem;
  border-bottom-left-radius: 5rem;
  padding: 10% 7%;
  width: 95%;
  margin-left: auto;
  margin-right: 0;
}
@media (max-width: 835px) {
  .sec3-point {
    padding: 15% 7%;
  }
}
@media (max-width: 554px) {
  .sec3-point {
    padding: 20% 7%;
    width: 100%;
  }
}
.sec3-point h2 {
  color: #fff;
  border: 1px solid #fff;
  position: relative;
  padding: 2rem;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 554px) {
  .sec3-point h2 {
    padding: 1rem;
    width: 100%;
  }
}
.sec3-point h2::before {
  content: url(../img/sec3-kazari.svg);
  display: block;
  position: absolute;
  left: -5rem;
  top: -6rem;
  width: 200px;
}
.sec3-point picture {
  overflow: hidden;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.sec3-point .mark {
  background: linear-gradient(transparent 70%, #ffec68 30%);
  font-weight: 700;
}
.sec3-point ul {
  padding-top: 12rem;
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 835px) {
  .sec3-point ul {
    flex-wrap: wrap;
    justify-content: space-around;
    height: 110%;
  }
}
.sec3-point ul li {
  width: 29.5%;
  display: flex;
}
@media (max-width: 554px) {
  .sec3-point ul li {
    padding-top: 14rem;
  }
}
@media (max-width: 835px) {
  .sec3-point ul li {
    width: 45%;
  }
  .sec3-point ul li:first-child {
    margin-right: 8%;
  }
}
@media (max-width: 554px) {
  .sec3-point ul li {
    width: 100%;
  }
  .sec3-point ul li:first-child {
    margin-right: 0;
    padding-top: 0;
  }
}
.sec3-point ul li div {
  width: 100%;
  text-align: center;
  position: relative;
  background-color: #fff;
  border-radius: 10px;
}
.sec3-point ul li div:before {
  content: "";
  background-image: url("../img/sec3-arrow.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  display: block;
  top: 50%;
  right: -18%;
  height: 50px;
  width: 20%;
}
@media (max-width: 554px) {
  .sec3-point ul li div:before {
    right: auto;
    left: 50%;
    top: auto;
    bottom: -10%;
    height: 50px;
    width: 18%;
    transform: translateX(-50%) rotate(-90deg) scale(-1, 1);
  }
}
@media (max-width: 835px) {
  .sec3-point ul li:nth-child(2) div:before {
    right: auto;
    left: -20%;
    top: auto;
    bottom: -10%;
    height: 50px;
    width: 20%;
    transform: rotate(-45deg) scale(-1, 1);
  }
}
@media (max-width: 554px) {
  .sec3-point ul li:nth-child(2) div:before {
    right: auto;
    left: 50%;
    top: auto;
    bottom: -10%;
    height: 50px;
    width: 20%;
    transform: translateX(-50%) rotate(-90deg) scale(-1, 1);
  }
}
.sec3-point ul li:last-child div::before {
  display: none;
}
@media (max-width: 835px) {
  .sec3-point ul li:last-child {
    padding-top: 14rem;
  }
}
.sec3-point ul li .num {
  position: absolute;
  font-family: "minion-3", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2.4rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  top: -8rem;
  left: 1.3rem;
}
.sec3-point ul li .num .fig {
  font-size: 5.2rem;
  padding-top: 0.5rem;
  position: relative;
}
.sec3-point ul li .num .fig::before {
  content: "";
  display: block;
  position: absolute;
  width: 150%;
  height: 1px;
  background-color: #fff;
  right: -100%;
  bottom: -1%;
  transform: rotate(-45deg);
}
.sec3-point ul li h3 {
  padding: 1.5rem 0;
}
.sec3-point ul li p {
  text-align: justify;
  padding: 0 5%;
  padding-bottom: 7%;
}

/*--sec4 business--*/
.sec4-business {
  background-image: url("../img/sec4-bg.svg");
  background-size: 70%;
  background-position: -100% 50%;
  background-repeat: no-repeat;
  padding: 10% 5%;
}
@media (max-width: 835px) {
  .sec4-business {
    padding: 15% 7%;
  }
}
@media (max-width: 554px) {
  .sec4-business {
    padding: 20% 0;
    background-size: cover;
  }
}
.sec4-business h2 {
  text-align: center;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 0;
}
@media (max-width: 554px) {
  .sec4-business h2 {
    padding: 0 30px;
  }
}
.sec4-business h2::before {
  content: url(../img/sec4-fukidashi1.svg);
  left: -50px;
}
@media (max-width: 554px) {
  .sec4-business h2::before {
    left: 0;
  }
}
.sec4-business h2::after {
  content: url(../img/sec4-fukidashi2.svg);
  right: -50px;
}
@media (max-width: 554px) {
  .sec4-business h2::after {
    right: 0;
  }
}
.sec4-business h2::before, .sec4-business h2::after {
  display: block;
  position: absolute;
  bottom: 0;
  width: 30px;
}
.sec4-business h3 {
  width: 100%;
  text-align: center;
  border-radius: 5rem;
  border: 1px dashed #333;
  line-height: 120%;
  font-size: 2.3rem;
  padding: 0.5rem 0;
  position: relative;
  z-index: 2;
}
.sec4-business h3::before {
  content: "";
  display: block;
  position: absolute;
  right: 1rem;
  bottom: -1.5rem;
  width: 60px;
  height: 1px;
  background: #333;
  transform: rotate(-70deg);
}
.sec4-business ul {
  display: flex;
  flex-wrap: wrap;
  width: 90%;
  max-width: 1200px;
  min-width: 1000px;
  margin: 0 auto;
  justify-content: space-between;
}
@media (max-width: 835px) {
  .sec4-business ul {
    min-width: 0px;
  }
}
@media (max-width: 554px) {
  .sec4-business ul {
    width: 83%;
  }
}
.sec4-business ul li {
  width: 30%;
  font-family: "Zen Old Mincho", serif;
  padding-top: 10rem;
}
@media (max-width: 835px) {
  .sec4-business ul li {
    width: 45%;
    padding-top: 5rem;
  }
}
@media (max-width: 554px) {
  .sec4-business ul li {
    width: 100%;
  }
}
.sec4-business ul li .wrap {
  position: relative;
  display: block;
  padding-top: 3rem;
}
.sec4-business ul li .wrap:hover {
  opacity: 0.85;
}
.sec4-business ul li .wrap picture {
  overflow: hidden;
  border-radius: 10px;
  width: 100%;
  height: 280px;
  position: relative;
}
@media (max-width: 554px) {
  .sec4-business ul li .wrap picture {
    height: 250px;
  }
}
.sec4-business ul li .wrap picture img {
  width: 110%;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0%);
}
@media (max-width: 835px) {
  .sec4-business ul li .wrap picture img {
    width: 120%;
  }
}
.sec4-business ul li .wrap h4 {
  position: absolute;
  top: 49%;
  left: 2rem;
  transform: translateY(-50%);
  color: #fff;
  font-family: "Zen Old Mincho", serif;
  filter: drop-shadow(0 0 4px #333);
}
.sec4-business ul li .wrap h4 strong {
  display: block;
  padding-top: 0;
  padding-bottom: 1rem;
  font-size: 3.4rem;
}
.sec4-business ul li:nth-child(1) h4 strong, .sec4-business ul li:nth-child(4) h4 strong, .sec4-business ul li:nth-child(6) h4 strong {
  display: block;
  padding-top: 1rem;
}
.sec4-business ul li:nth-child(6) h4 strong {
  font-size: 3rem;
  letter-spacing: -0.08rem;
}
.sec4-business .view {
  display: block;
  margin: 0 auto;
  font-family: "Zen Old Mincho", serif;
  color: #fff;
  position: absolute;
  bottom: 3rem;
  right: 3rem;
  letter-spacing: 0.11rem;
  display: flex;
  align-items: center;
  z-index: 100;
}
.sec4-business .view .arrow::before, .sec4-business .view .arrow::after {
  display: block;
  content: "";
  background-color: #fff;
  position: absolute;
}
.sec4-business .view .arrow::before {
  width: 25px;
  height: 1px;
  transform: translateY(-50%);
  top: calc(50% + 1px);
  right: 12px;
}
.sec4-business .view .arrow::after {
  width: 8px;
  height: 1px;
  top: calc(50% - 3px);
  right: 7px;
  transform: translateX(-50%) rotate(55deg);
}
.sec4-business .circle2,
.sec4-business .circle3,
.sec4-business .circle4,
.sec4-business .circle5,
.sec4-business .circle6,
.sec4-business .circle7 {
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #fff;
  margin-left: 1rem;
}

/*--sec5 contact--*/
.sec5-contact {
  background-image: url("../img/bg-orange.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-top-right-radius: 5rem;
  border-bottom-right-radius: 5rem;
  padding: 5%;
  width: 100%;
  color: #fff;
}
@media (max-width: 554px) {
  .sec5-contact {
    background-size: cover;
    padding: 7rem 3%;
  }
}
.sec5-contact h2 {
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 3.5rem;
  padding: 0;
  padding-left: 70px;
  padding-bottom: 2.5rem;
  position: relative;
}
@media (max-width: 554px) {
  .sec5-contact h2 {
    font-size: 3rem;
  }
}
.sec5-contact h2::before {
  content: url(../img/sec5-icon-tel.svg);
  width: 50px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.sec5-contact p {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  background-color: #fff;
  padding: 1.5rem 2rem;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-family: "Zen Old Mincho", serif;
}
.sec5-contact p::before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: -23px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 0 15px 20px;
  border-color: transparent transparent transparent #fff;
  transform: translateX(-50%) rotate(90deg);
}
@media (max-width: 554px) {
  .sec5-contact p {
    text-align: center;
  }
}
.sec5-contact ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin: 0 auto;
  width: 100%;
  max-width: 1000px;
  padding: 4rem 0 5rem;
}
.sec5-contact ul li {
  padding-top: 3rem;
}
@media (max-width: 835px) {
  .sec5-contact ul li {
    width: 40%;
  }
}
.sec5-contact ul li h3 {
  border: 1px solid #fff;
  font-size: 2.3rem;
  letter-spacing: 0.5rem;
  text-align: center;
}
.sec5-contact ul li a {
  color: #fff;
  font-size: 2.3rem;
  font-family: "Zen Old Mincho", serif;
  letter-spacing: 0.2rem;
  padding-top: 1rem;
  text-align: center;
  display: block;
}
@media (max-width: 554px) {
  .sec5-contact ul li a {
    font-size: 1.7rem;
  }
}

/*--sec6 address--*/
.sec6-address {
  background-image: url("../img/bg-gray.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-top-right-radius: 5rem;
  border-bottom-right-radius: 5rem;
  padding: 5% 0 10% 5%;
  width: 100%;
}
@media (max-width: 1240px) {
  .sec6-address {
    padding: 5% 0 20rem 0;
  }
}
@media (max-width: 554px) {
  .sec6-address {
    padding: 7rem 0 7rem 5%;
  }
}
.sec6-address h2 {
  font-size: 3.5rem;
  margin-left: 5rem;
  padding: 0;
}
@media (max-width: 554px) {
  .sec6-address h2 {
    font-size: 3rem;
    margin-left: 0;
  }
}
.sec6-address h2::before {
  content: "●";
  color: #f77706;
  margin-right: 0.5rem;
  font-size: 3rem;
}
@media (max-width: 554px) {
  .sec6-address h2::before {
    font-size: 2rem;
  }
}
.sec6-address .word {
  font-size: 2rem;
  font-family: "Zen Old Mincho", serif;
  margin-left: 5rem;
}
@media (max-width: 554px) {
  .sec6-address .word {
    font-size: 1.6rem;
    margin-left: 0;
  }
}
.sec6-address .wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1700px;
  margin-left: auto;
  margin-right: 0;
  padding: 0 7%;
  padding-top: 7rem;
}
@media (max-width: 1240px) {
  .sec6-address .wrap {
    padding: 0 5%;
    padding-top: 7rem;
  }
}
@media (max-width: 554px) {
  .sec6-address .wrap {
    padding: 5% 7% 0 7%;
    padding-top: 7rem;
  }
}
.sec6-address .wrap .bg-white {
  display: block;
  width: 100%;
  height: 76%;
  border-top-left-radius: 5rem;
  border-bottom-left-radius: 5rem;
  background: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 554px) {
  .sec6-address .wrap .bg-white {
    height: 100%;
  }
}
.sec6-address .main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding-top: 7rem;
  padding-bottom: 7%;
}
@media (max-width: 554px) {
  .sec6-address .main {
    padding-top: 10%;
  }
}
.sec6-address .main .main-li {
  display: flex;
  align-items: center;
  width: 48%;
  padding-bottom: 7rem;
}
@media (max-width: 1240px) {
  .sec6-address .main .main-li {
    width: 50%;
  }
}
@media (max-width: 554px) {
  .sec6-address .main .main-li {
    width: 100%;
    padding-bottom: 10%;
  }
}
.sec6-address .main .main-li picture {
  width: 25%;
}
.sec6-address .main .chizu {
  width: 40%;
  max-width: 450px;
  position: absolute;
  bottom: -9rem;
  right: 0;
}
@media (max-width: 554px) {
  .sec6-address .main .chizu {
    max-width: none;
    width: 100%;
    position: static;
    padding-bottom: 10%;
  }
}
.sec6-address .main .txt-box {
  width: 75%;
  padding: 0 2rem;
}
.sec6-address .main .txt-box h3 {
  text-align: center;
  font-size: 2rem;
  border-bottom: 1px solid #333;
  padding-bottom: 0.5rem;
}
.sec6-address .main .txt-box ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 1rem;
}
@media (max-width: 1050px) {
  .sec6-address .main .txt-box ul {
    flex-direction: column;
    justify-content: space-between;
  }
}
.sec6-address .main .txt-box ul li {
  width: 50%;
  padding: 1rem;
  font-size: 1.4rem;
  letter-spacing: 0;
  line-height: 140%;
}
@media (max-width: 1050px) {
  .sec6-address .main .txt-box ul li {
    width: 98%;
    text-align: center;
  }
}
.sec6-address .main .txt-box ul li:first-child {
  border-right: 1px dashed #333;
}
@media (max-width: 1050px) {
  .sec6-address .main .txt-box ul li:first-child {
    border-right: none;
    border-bottom: 1px dashed #333;
  }
}
.sec6-address .main .txt-box ul li:last-child {
  padding-left: 2rem;
}
@media (max-width: 1050px) {
  .sec6-address .main .txt-box ul li:last-child {
    padding-left: 0;
  }
}
.sec6-address .main .txt-box ul li span {
  background-color: #f4f7f8;
  padding: 0.3rem 1rem;
  font-weight: 600;
}
.sec6-address .main .txt-box ul li p {
  padding: 0.5rem 0;
  text-align: left;
  font-size: 1.4rem;
}
@media (max-width: 1050px) {
  .sec6-address .main .txt-box ul li p {
    text-align: center;
  }
}

footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 2rem 0;
}
@media (max-width: 835px) {
  footer {
    padding-bottom: 119px;
  }
}

.sec7-contact {
  background-color: #fff;
  width: 100%;
  padding: 14rem 0;
  background-image: url("../img/bg-dotted.svg");
  background-size: 20px;
}
@media (max-width: 554px) {
  .sec7-contact {
    padding: 7rem 0;
  }
}
.sec7-contact .wrap {
  width: 80%;
  max-width: 900px;
  margin: 0 auto;
  background-color: #f4f7f8;
  border-radius: 10px;
  padding: 5rem;
}
@media (max-width: 554px) {
  .sec7-contact .wrap {
    width: 90%;
    padding: 1.5rem 1.5rem 3rem 1.5rem;
  }
}
.sec7-contact h2 {
  text-align: center;
}
.sec7-contact p {
  font-size: 1.4rem;
  line-height: 170%;
}
.sec7-contact .center {
  width: 100%;
  max-width: 550px;
  text-align: center;
  margin: 0 auto;
  background-color: #fff;
  padding: 1rem;
  border-radius: 10px;
  margin-bottom: 4rem;
  position: relative;
}
.sec7-contact .center::after {
  content: "";
  position: absolute;
  display: block;
  border-top: 15px solid #fff;
  border-right: 15px solid transparent;
  border-left: 15px solid transparent;
  transform: translateX(-50%);
  left: 50%;
  bottom: -15px;
}
@media (max-width: 554px) {
  .sec7-contact .center {
    text-align: justify;
  }
}
.sec7-contact form {
  margin: 2rem 0 0 0;
}
.sec7-contact .bd-top {
  border-top: 1px dashed #b2b2b2;
  padding: 3rem 0 0 0;
  margin: 3rem 0 0 0;
}
.sec7-contact .privacy {
  padding: 2rem;
  font-size: 85%;
  width: 80%;
  margin: 0 auto;
  margin-top: 3rem;
  margin-bottom: 4rem;
  border: 1px solid #b2b2b2;
  background-color: #fff;
  height: 200px;
  overflow-y: scroll;
  line-height: 170%;
}
@media (max-width: 554px) {
  .sec7-contact .privacy {
    width: 100%;
  }
}
.sec7-contact .privacy h3 {
  font-size: 130%;
  text-align: center;
  padding-bottom: 1rem;
}
.sec7-contact .privacy h4 {
  padding-top: 1.5rem;
}
.sec7-contact .privacy li {
  padding-left: 1.5rem;
  position: relative;
}
.sec7-contact .privacy li::after {
  content: "●";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  font-size: 85%;
}
.sec7-contact dl {
  padding-bottom: 2rem;
}
.sec7-contact dl dt {
  font-size: 1.8rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.sec7-contact dl dd {
  width: 100%;
}
.sec7-contact dl dd input,
.sec7-contact dl dd textarea {
  width: 100%;
  font-size: 1.8rem;
  padding: 0.6rem;
  letter-spacing: 0.09rem;
  border: 1px solid #b2b2b2;
  border-radius: 5px;
  margin-top: 0.5rem;
  transition: 0.3s;
}
.sec7-contact dl dd input:focus,
.sec7-contact dl dd textarea:focus {
  outline: none;
  box-shadow: 2px 2px #ffa706, -2px 2px #ffa706, -2px -2px #ffa706, 2px -2px #ffa706, 2px 0px #ffa706, 0px 2px #ffa706, -2px 0px #ffa706, 0px -2px #ffa706;
  border-color: transparent;
}
.sec7-contact dl dd textarea {
  resize: none;
  width: 100%;
}
.sec7-contact .bottom {
  padding-bottom: 0;
}
.sec7-contact label {
  position: relative;
  padding-right: 80px;
}
.sec7-contact label::after {
  content: "任意";
  color: #fff;
  background-color: #b2b2b2;
  font-size: 80%;
  font-weight: 700;
  padding: 0 0.5rem;
  margin-left: 1rem;
}
.sec7-contact .attention::after {
  content: "必須";
  color: #fff;
  background-color: #f06924;
}

.attention2 {
  color: #fff;
  background-color: #f06924;
  font-size: 80%;
  font-weight: 700;
  padding: 0 0.5rem;
  margin: 0.5rem;
}

.error {
  width: -moz-fit-content;
  width: fit-content;
  padding: 0;
  display: block;
  font-size: 90%;
  color: red;
  background-color: #ffd3d1;
  box-sizing: border-box;
  border-radius: 10px;
  padding: 0 0.5rem;
  margin-top: 0.5rem;
  margin-right: 0;
  margin-left: auto;
}

.kakunin table.formTable {
  width: 100%;
  font-size: 1.6rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.kakunin table.formTable tr {
  display: flex;
  flex-wrap: wrap;
}
.kakunin table.formTable th, .kakunin table.formTable td {
  outline: 1px solid #dedede;
  padding: 0.7rem 1rem;
  background-color: #fff;
}
.kakunin table.formTable th {
  text-align: left;
  width: 30%;
  line-height: 150%;
}
.kakunin table.formTable td {
  width: 70%;
}
.kakunin .button-area {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 auto;
  margin-top: 3rem;
  justify-content: center;
}
.kakunin .button-area .back-button, .kakunin .button-area .submit-button {
  border: 3px solid #fff;
  padding: 2rem 0;
  width: 230px;
  font-weight: 700;
  font-size: 2.5rem;
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}
@media (max-width: 735px) {
  .kakunin .button-area .back-button, .kakunin .button-area .submit-button {
    width: 100%;
  }
}
.kakunin .button-area .back-button:hover, .kakunin .button-area .submit-button:hover {
  opacity: 0.5;
}
.kakunin .button-area .back-button {
  background-color: #b2b2b2;
  margin-right: 2rem;
}
@media (max-width: 735px) {
  .kakunin .button-area .back-button {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}
.kakunin .button-area .submit-button {
  background-image: url("../img/bg-orange.jpg");
  background-position: center;
  background-size: cover;
}

.thanks {
  height: calc(100dvh - 68.8px);
  background-image: url("../img/bg-gray.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 554px) {
  .thanks {
    height: auto;
    padding-bottom: 3rem;
  }
}
.thanks .center {
  font-size: 100%;
  padding: 3rem;
  max-width: 721px;
}
.thanks .center::after {
  display: none;
}
.thanks .tel-box {
  display: block;
  width: 90%;
  background-color: #ffdbae;
  margin: 0 auto;
  border-radius: 5px;
  font-size: 2.5rem;
  padding: 1.5rem 0;
  margin-top: 2rem;
  font-weight: 700;
  font-family: "Zen Old Mincho", serif;
  color: #f77706;
  text-align: center;
}/*# sourceMappingURL=style.css.map */