@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;600;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+Antique:wght@400;500&display=swap");
* {
  box-sizing: border-box; /*余白や線を幅や高さに含める*/
}

body {
  width: 100%;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #222;
  font-weight: 400;
  font-size: 4.2vw;
  font-feature-settings: "palt";
  line-height: 1.8em;
  letter-spacing: 0.1em;
  overflow-x: hidden;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 18px;
    width: 100%;
    position: relative;
  }
}

.serif {
  font-family: "Noto Serif JP", serif;
}

.zenkaku {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}

@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
.smp-block {
  display: block;
}
@media screen and (min-width: 768px) {
  .smp-block {
    display: none;
  }
}

.pc-block {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc-block {
    display: block;
  }
}

.pc-middle02-block {
  display: none;
}
@media screen and (min-width: 1100px) {
  .pc-middle02-block {
    display: block;
  }
}

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

a {
  color: #000;
  text-decoration: none;
  transition: all 0.6s;
}

a:link, a:visited, a:hover, a:active {
  text-decoration: none;
}

span.inline-block {
  display: inline-block;
}

/*======================================================================================*/
body::after {
  content: "";
  display: block;
  width: 100vw;
  height: 100vh;
  position: fixed;
  background-color: #f3a222;
  z-index: -1;
  top: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  body {
    position: relative;
  }
  body::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 100vw;
    height: 70vw;
    transform-origin: top left;
    background-image: url(../myimg/hero-bg2.png);
    background-size: 100%;
    background-repeat: no-repeat;
    /*@include mq(pc-middle02) {
    	width: calc(100% - 490px);
    	right: calc(50% - 350px);
    }*/
  }
}
@media screen and (min-width: 768px) and (min-width: 1100px) {
  body::before {
    width: calc(100% - 310px);
    right: calc(50% - 232px);
  }
}
@media screen and (min-width: 768px) and (min-width: 1280px) {
  body::before {
    width: calc(100% - 407px);
  }
}

div.hero-bg2 {
  position: absolute;
  top: 0;
  left: 0;
}

div.all-wrap {
  position: relative;
}
div.all-wrap div.pc-leftbox {
  width: calc(100% - 490px);
  position: fixed;
  top: 100px;
  left: 10px;
}
@media screen and (min-width: 768px) {
  div.all-wrap div.pc-leftbox {
    width: calc(50% - 200px);
    left: 5px;
  }
}
div.all-wrap div.pc-leftbox p.fix-txt {
  width: 12px;
  top: 50%;
  left: 10px;
  transform: translate(0, -50%);
  position: fixed;
}
div.all-wrap div.pc-leftbox div.pc-leftbox-inner {
  width: 85%;
  margin: auto;
}
@media screen and (min-width: 1100px) {
  div.all-wrap div.pc-leftbox div.pc-leftbox-inner {
    max-width: 390px;
    margin: 0 20px 0 auto;
  }
}
@media screen and (min-width: 1280px) {
  div.all-wrap div.pc-leftbox div.pc-leftbox-inner {
    margin: 0 35px 0 auto;
  }
}
@media screen and (min-width: 1500px) {
  div.all-wrap div.pc-leftbox div.pc-leftbox-inner {
    margin: 0 55px 0 auto;
  }
}
div.all-wrap div.pc-rightbox {
  position: fixed;
  top: 0;
  right: 0;
  width: calc(50% - 210px);
  height: 100vh;
  background-image: url(../myimg/rightbox-bg.png);
  background-size: cover;
}
div.all-wrap div.pc-rightbox img {
  display: block;
  max-width: 390px;
  margin-left: 10%;
  margin-top: 100px;
  width: 85%;
}

div.sp-area {
  position: relative;
}
@media screen and (min-width: 768px) {
  div.sp-area {
    width: 420px;
    margin: auto;
  }
}

header.header01 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 2;
}
header.header01 img {
  width: 55%;
  padding: 4% 0;
  margin: auto;
}

header.header02 {
  width: 18%;
  position: fixed;
  top: 20px;
  left: 27px;
  z-index: 1;
  max-width: 254px;
}

a.top-btn {
  display: block;
  width: 30%;
  margin: 0 auto 10%;
  text-align: center;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  a.top-btn {
    transition: all 0.3s;
  }
  a.top-btn span.arrow {
    transition: all 0.3s;
  }
  a.top-btn svg {
    transition: all 0.3s;
  }
  a.top-btn:hover {
    color: #0075c1;
  }
  a.top-btn:hover span.arrow {
    transform: translate(0, -18%);
  }
  a.top-btn:hover svg {
    fill: #0075c1;
  }
}
a.top-btn span {
  display: block;
  width: 20%;
  margin: auto;
}

footer {
  padding: 10% 0 10%;
  background: #fff;
}
footer .ft-logo {
  display: block;
  width: 64.8%;
  margin: auto;
}
footer ul {
  text-align: center;
  font-weight: 300;
  margin: 7% 0;
}
footer ul li {
  margin-bottom: 3%;
}
footer p {
  text-align: center;
  font-size: 0.8em;
  font-weight: 300;
}

a.btn01 {
  display: block;
  margin: 8% auto 0;
  width: 80%;
}

section.sec01 {
  background: #fff;
  position: relative;
}
section.sec01 a {
  display: block;
  position: absolute;
  width: 100%;
  height: 27%;
  top: 36%;
  left: 0;
}

section.sec02 {
  background: #f9d2b4;
  box-sizing: border-box;
  padding: 7% 7% 10% 7%;
}

section.sec03 {
  background: #c0e3e7;
  padding: 0 0 10% 0;
}
section.sec03 .btn01 {
  width: 70%;
}
section.sec03 div.sec03-cont01 {
  width: 90%;
  margin: 20% auto 5%;
  background: #fff;
  border-radius: 1em;
  padding: 10% 7% 2%;
  box-sizing: border-box;
  position: relative;
}
section.sec03 div.sec03-cont01 div.kaijo {
  position: absolute;
  width: 15%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  transform: translate(0, -50%);
  margin: auto;
}
section.sec03 div.sec03-cont01 .sec03-cont01-txt01 {
  text-align: center;
  color: #006bb5;
  margin-bottom: 2em;
  font-size: 0.81em;
  font-weight: 500;
}
section.sec03 div.sec03-cont01 div.sec03-box01 {
  margin-bottom: 20%;
}
section.sec03 div.sec03-cont01 div.sec03-box01 h2 {
  text-align: center;
  margin-bottom: 1em;
}
section.sec03 div.sec03-cont01 div.sec03-box01 h2 span {
  display: block;
}
section.sec03 div.sec03-cont01 div.sec03-box01 h2 span.txt01 {
  border: 1px #006bb5 dotted;
  width: 60%;
  border-radius: 50em;
  margin: auto;
  margin-bottom: 1em;
  font-size: 0.8em;
}
@media screen and (min-width: 768px) {
  section.sec03 div.sec03-cont01 div.sec03-box01 h2 span.txt01 {
    font-size: 15px;
  }
}
section.sec03 div.sec03-cont01 div.sec03-box01 h2 span.txt02 {
  color: #006bb5;
  font-weight: 500;
  font-size: 5.6vw;
}
@media screen and (min-width: 768px) {
  section.sec03 div.sec03-cont01 div.sec03-box01 h2 span.txt02 {
    font-size: 22px;
  }
}
section.sec03 div.sec03-cont01 div.sec03-box01 div.sec03-box01-img01 {
  margin-bottom: 8%;
}
section.sec03 div.sec03-cont01 div.sec03-box01 .sec03-box01-txt01 {
  text-align: center;
  color: #006bb5;
  font-weight: 500;
  margin-bottom: 1em;
}
@media screen and (min-width: 768px) {
  section.sec03 div.sec03-cont01 div.sec03-box01 .sec03-box01-txt01 {
    font-size: 1.2em;
  }
}
section.sec03 div.sec03-cont01 div.sec03-box01 .sec03-box01-img02-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
section.sec03 div.sec03-cont01 div.sec03-box01 .sec03-box01-img02-wrap .sec03-box01-img02 {
  display: block;
  width: 48%;
  margin-bottom: 4%;
}
section.sec03 div.sec03-cont01 div.sec03-box01 div.map-wrap {
  position: relative;
  width: 100%;
  margin-top: 5%;
  height: 50vw;
}
@media screen and (min-width: 768px) {
  section.sec03 div.sec03-cont01 div.sec03-box01 div.map-wrap {
    height: 250px;
  }
}
section.sec03 div.sec03-cont01 div.sec03-box01 div.map-wrap iframe {
  position: absolute;
  width: 100%;
  height: 100%;
}/*# sourceMappingURL=style.css.map */