@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700;900&family=Poppins:wght@400;600&display=swap");
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, 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 {
  background: transparent;
  border: 0;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

* {
  min-height: 0vw;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, main {
  display: block;
}

ol, ul {
  list-style: none;
}

em {
  font-style: normal;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input, select {
  vertical-align: middle;
}

img {
  display: block;
  border-style: none;
  font-size: 0;
  line-height: 0;
}

a {
  background: transparent;
  margin: 0;
  padding: 0;
  text-decoration: none;
  vertical-align: baseline;
}

@media screen and (max-width: 767px) {
  .sp_none {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .pc_none {
    display: none;
  }
}
.w100 {
  max-width: 100%;
}

.bold {
  font-weight: bold;
}

.fade {
  opacity: 0;
  transition: all 1s linear 0.2s;
}

.fade_on {
  opacity: 1;
}

.movexl {
  opacity: 0;
  translate: -20px 0;
  transition: all 0.4s ease-out;
}

.movexr {
  opacity: 0;
  translate: 20px 0;
  transition: all 0.4s ease-out;
}

.movexl_on,
.movexr_on {
  opacity: 1;
  translate: 0 0;
}

.movey {
  opacity: 0;
  translate: 0 20px;
  transition: all 0.4s ease-out;
}

.movey_on {
  opacity: 1;
  translate: 0 0;
}

.small {
  scale: 1.5;
  opacity: 0;
  transition: all 0.4s ease-out 0.4s;
}

.small_on {
  scale: 1;
  opacity: 1;
}

.move {
  opacity: 0;
}

.move_on {
  opacity: 1;
}

.bs {
  animation: bigSmall 0.3s infinite alternate;
}

@keyframes bigSmall {
  0% {
    scale: 1;
  }
  100% {
    scale: 0.92;
  }
}
@keyframes f_a {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes m_r {
  0% {
    opacity: 0;
    translate: 20px 0;
  }
  100% {
    opacity: 1;
    translate: 0 0;
  }
}
@keyframes m_t {
  0% {
    opacity: 0;
    translate: 0 -10px;
  }
  100% {
    opacity: 1;
    translate: 0 0;
  }
}
@keyframes m_l {
  0% {
    opacity: 0;
    translate: -20px 0;
  }
  100% {
    opacity: 1;
    translate: 0 0;
  }
}
.container {
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 32px 4%;
    animation: m_t 0.6s linear 0.4s both;
  }
  header .pc_nav ul {
    display: flex;
    padding: 0.5em 0 0;
  }
  header .pc_nav li {
    padding: 0 0 0 2em;
  }
  header .pc_nav a {
    color: #000;
    font-family: "Poppins", sans-serif;
    transition: all 0.4s linear;
  }
  header .pc_nav a:hover {
    color: #ff8b1a;
  }
}
@media screen and (max-width: 767px) {
  header {
    padding: 20px 4%;
  }
  header h1 {
    width: 54%;
  }
}

@media screen and (max-width: 767px) {
  #nav_area {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100svh;
    padding: 80px 20px 20px;
    background: url(../img/sp-nav-bg.png) left center repeat-x;
    background-size: auto 100%;
    overflow: auto;
    z-index: 999;
  }
  #nav_area.open {
    visibility: visible;
    opacity: 1;
  }
  #nav_area nav {
    margin: 30px 0 0;
    opacity: 0;
    transition: all 0.5s linear;
  }
  #nav_area.open nav {
    margin: 0 auto;
    opacity: 1;
  }
  #nav_area li a {
    display: block;
    margin: 20px 0;
    padding: 20px 0;
    text-align: center;
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-weight: bold;
    font-size: 24px;
    transition: all 0.3s linear;
  }
  #navBtn {
    position: absolute;
    top: 16px;
    right: 6%;
    display: block;
    width: 30px;
    height: 40px;
    z-index: 1000;
  }
  #navBtn div {
    position: relative;
    width: 40px;
    height: 40px;
  }
  #navBtn span {
    position: absolute;
    left: 5px;
    width: 30px;
    height: 2px;
    background: #000;
    transition: all 0.3s ease;
  }
  #navBtn span:nth-of-type(1) {
    top: 8px;
  }
  #navBtn span:nth-of-type(2) {
    top: 19px;
  }
  #navBtn span:nth-of-type(3) {
    bottom: 8px;
  }
  #navBtn.btn_close span:nth-of-type(1) {
    transform: translateY(11.5px) rotate(-315deg);
    background: #fff;
  }
  #navBtn.btn_close span:nth-of-type(2) {
    opacity: 0;
    background: #fff;
  }
  #navBtn.btn_close span:nth-of-type(3) {
    transform: translateY(-11.5px) rotate(315deg);
    background: #fff;
  }
  .fixed,
  .fixed body {
    height: 100%;
    overflow: hidden;
  }
}
.fv .box {
  animation: m_l 0.6s linear 1.4s both;
}
.fv h2 {
  font-size: clamp(28px, 20.3846153846px + 2.1153846154vw, 50px);
  font-weight: 800;
  line-height: 1.4;
}
.fv p {
  margin-top: 1em;
  font-size: clamp(16.5px, 15.2884615385px + 0.3365384615vw, 20px);
  line-height: 1.8;
}
.fv .fv-ph {
  animation: m_r 0.6s linear 2s both;
}
@media screen and (max-width: 767px) {
  .fv {
    padding-top: 10%;
  }
  .fv h2,
  .fv p {
    padding: 0 6%;
  }
  .fv .fv-ph {
    margin-top: 5%;
  }
}
@media screen and (min-width: 768px) {
  .fv {
    position: relative;
  }
  .fv .box {
    position: absolute;
    top: 12%;
    left: 4%;
    z-index: 2;
  }
  .fv .fv-ph {
    max-width: 70%;
    margin: 0 0 0 auto;
  }
}
@media screen and (min-width: 1500px) {
  .fv {
    width: 1500px;
    margin: auto;
  }
  .fv .box {
    top: 200px;
  }
}

.t_1 {
  font-size: clamp(50px, 32.6923076923px + 4.8076923077vw, 100px);
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}

#news {
  padding: min(10%, 83px) 4% min(16%, 120px);
}
#news h2 {
  text-align: center;
}
#news ul {
  max-width: 1000px;
  margin: 2em auto 0;
  border-bottom: 1px solid #e0e0e0;
}
#news ul a {
  display: block;
  background: url(../img/news-arrow.png) right 0.5em center no-repeat;
  background-size: 24px auto;
  color: #000;
  transition: all 0.3s linear;
}
#news dl {
  padding: 1em;
  border-top: 1px solid #e0e0e0;
  line-height: 1.4;
}
#news dt {
  color: #888;
}
#news dd {
  padding-right: 2em;
}
@media screen and (max-width: 767px) {
  #news dd {
    margin-top: 0.5em;
  }
}
@media screen and (min-width: 768px) {
  #news dl {
    padding: 2em;
    display: flex;
    align-items: center;
  }
  #news dt {
    width: 8em;
  }
  #news ul a:hover {
    transform: translateX(10px);
  }
}
#news .btn {
  display: block;
  width: 8em;
  margin: 1em auto 0;
  padding: 0.8em 1em;
  border-radius: 10px;
  background: #00a483;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  text-align: center;
  color: #fff;
  transition: all 0.4s linear;
}
#news .btn:hover {
  background: #00a2a4;
}

#about {
  padding: 20% 6%;
  background: url(../img/about-bg.png) center center no-repeat;
  background-size: 100% 100%;
}
#about h2 {
  margin: 0 auto min(6%, 90px);
}
#about dl {
  border-top: 1px solid #000;
}
#about dl:last-child {
  border-bottom: 1px solid #000;
}
#about dt {
  font-size: clamp(40px, 31.6923076923px + 2.3076923077vw, 64px);
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}
#about dt span {
  display: block;
  font-size: 20px;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
}
#about dd {
  line-height: 1.8;
}
#about p {
  margin: 3em auto 0;
  font-weight: 700;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  #about .ph {
    margin-bottom: 4%;
    width: 100%;
  }
  #about dl {
    padding: 2em 0;
  }
  #about dd {
    margin-top: 1em;
  }
}
@media screen and (min-width: 768px) {
  #about {
    padding: 150px 0;
  }
  #about h2 {
    max-width: 1000px;
  }
  #about .box {
    position: relative;
    padding-left: 25%;
  }
  #about .ph {
    position: absolute;
    top: 0;
    left: 0;
    width: 20%;
    height: 100%;
    overflow: hidden;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 50% 50%;
       object-position: 50% 50%;
  }
  #about dl {
    display: flex;
    padding: 5em 0;
  }
  #about dt {
    width: 8.5em;
  }
  #about dd {
    width: calc(100% - 8.5em);
    padding-right: 4%;
  }
  #about p {
    max-width: 1000px;
    font-size: 18px;
  }
}

#service {
  padding: 20% 6%;
  background: url(../img/serviece-bg-sp.png) center bottom no-repeat;
  background-size: 100% auto;
}
#service h2 {
  text-align: center;
}
#service h3 {
  margin: 2em auto;
  font-size: clamp(24px, 21.2307692308px + 0.7692307692vw, 32px);
  line-height: 1.4;
}
#service p {
  max-width: 710px;
  margin: auto;
  line-height: 1.8;
}
#service .bnr {
  display: block;
  width: min(100%, 764px);
  margin: min(6%, 30px) auto 0;
}
@media screen and (min-width: 768px) {
  #service {
    padding: 150px 4%;
    background: url(../img/serviece-bg-pc.png) center bottom no-repeat;
    background-size: 100% auto;
  }
  #service h3 {
    text-align: center;
  }
}

.jao {
  padding: 20% 6%;
  background: url(../img/about-bg.png) center center no-repeat;
  background-size: 100% 100%;
}
.jao h2 {
  margin-bottom: 1em;
  font-size: clamp(24px, 21.9230769231px + 0.5769230769vw, 30px);
  line-height: 1.5;
}
.jao p {
  max-width: 500px;
  line-height: 1.8;
}
.jao .bnr {
  display: block;
  margin-top: min(6%, 30px);
  width: min(100%, 466px);
}
@media screen and (min-width: 768px) {
  .jao {
    padding: 150px 4%;
  }
  .jao .inr {
    display: flex;
    justify-content: space-between;
    max-width: 1000px;
    margin: auto;
  }
}

#profile {
  padding: 26% 6%;
  margin: auto;
}
#profile dl {
  margin-top: 3em;
  border-bottom: 1px solid #e0e0e0;
  line-height: 2;
}
#profile dt {
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  #profile dt {
    border-top: 1px solid #e0e0e0;
    padding-top: 1em;
  }
  #profile dd {
    padding-bottom: 1em;
  }
}
@media screen and (min-width: 768px) {
  #profile {
    padding: 170px 4%;
  }
  #profile .inr {
    max-width: 1000px;
    margin: auto;
  }
  #profile dl {
    position: relative;
  }
  #profile dl:after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 14em;
    height: 1px;
    content: "";
    background: #757575;
  }
  #profile dt {
    position: absolute;
    width: 14em;
    padding: 2em;
    border-top: 1px solid #757575;
    font-weight: bold;
  }
  #profile dd {
    border-top: 1px solid #e0e0e0;
    padding: 2em 2em 2em 16em;
  }
}

.map {
  width: 100%;
  height: 500px;
  filter: grayscale(100%);
}
@media screen and (max-width: 767px) {
  .map {
    height: 360px;
  }
}

#contact {
  padding: 26% 6%;
  background: url(../img/about-bg.png) center center no-repeat;
  background-size: 100% 100%;
}
#contact dl {
  margin: 6% auto 0;
}
#contact dt {
  margin: 1.6em 0 0.8em;
  font-weight: bold;
}
#contact dt .hissu {
  color: #fe6f6f;
  font-weight: bold;
}
#contact dt .nini {
  color: #8e8e8e;
  font-weight: bold;
}
#contact .form_btn {
  display: block;
  width: 90%;
  max-width: 460px;
  margin: 8% auto 0;
  padding: 1.2em;
  background: #ff8b1a;
  border-radius: 10px;
  color: #fff;
  font-size: 126%;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  cursor: pointer;
  transition: all 0.3s linear;
}
#contact .form_btn:hover {
  background: #ffc11a;
}
@media screen and (min-width: 768px) {
  #contact {
    padding: 130px 0;
  }
  #contact .inr {
    max-width: 1000px;
    margin: auto;
  }
  #contact dl {
    margin: 70px auto 0;
  }
  #contact .form_btn {
    margin: 58px auto 0;
  }
}

/* ===================================
フォーム
------------------------------------*/
button, textarea, select, input {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

select::-ms-expand {
  display: none;
}

button {
  box-shadow: none;
  outline: none;
}

input,
textarea {
  width: 100%;
  padding: 1.4em 1em;
  background: #fff;
  border-radius: 5px;
  font-size: 112.5%;
}

textarea {
  height: 300px;
  line-height: 1.8;
}

.form_under {
  padding: 26% 6%;
}
.form_under .t_1 {
  text-align: center;
}
.form_under dl {
  margin: auto;
}
.form_under dt {
  margin: 10% 0 3%;
  font-weight: bold;
}
.form_under dd {
  line-height: 2;
}
.form_under .btn_next {
  display: block;
  width: 90%;
  max-width: 460px;
  margin: 8% auto 0;
  padding: 1.2em;
  background: #ff8b1a;
  border-radius: 10px;
  color: #fff;
  font-size: 126%;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  cursor: pointer;
  transition: all 0.3s linear;
}
.form_under .btn_next:hover {
  background: #ffc11a;
}
.form_under .btn_prev {
  display: block;
  width: 50%;
  max-width: 200px;
  margin: 2em auto 0;
  padding: 0.8em;
  border-radius: 10px;
  background: #f1f1f1;
  color: #000;
  font-size: 126%;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  cursor: pointer;
  transition: all 0.3s linear;
}
.form_under .btn_prev:hover {
  background: #bdbdbd;
  color: #fff;
}
.form_under p {
  max-width: 680px;
  margin: 15% auto;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .form_under {
    padding: 130px 0;
  }
  .form_under .inr {
    max-width: 1000px;
    margin: auto;
  }
  .form_under p {
    margin: 50px auto 200px;
  }
}

.news_under {
  padding: min(10%, 83px) 6% min(16%, 120px);
}
.news_under h2 {
  text-align: center;
}
.news_under h3 {
  margin: 2em 0 1em;
  font-size: clamp(20px, 18.6153846154px + 0.3846153846vw, 24px);
  line-height: 1.4;
}
.news_under p {
  line-height: 1.8;
}
.news_under ul {
  margin: 2em auto 0;
  border-bottom: 1px solid #e0e0e0;
}
.news_under ul a {
  display: block;
  background: url(../img/news-arrow.png) right 0.5em center no-repeat;
  background-size: 24px auto;
  color: #000;
  transition: all 0.3s linear;
}
.news_under dl {
  padding: 1em;
  border-top: 1px solid #e0e0e0;
  line-height: 1.4;
}
.news_under dt {
  color: #888;
}
.news_under dd {
  padding-right: 2em;
}
@media screen and (max-width: 767px) {
  .news_under dd {
    margin-top: 0.5em;
  }
}
@media screen and (min-width: 768px) {
  .news_under dl {
    padding: 2em;
    display: flex;
    align-items: center;
  }
  .news_under dt {
    width: 8em;
  }
  .news_under ul a:hover {
    transform: translateX(10px);
  }
  .news_under .inr {
    max-width: 1000px;
    margin: auto;
  }
}

/* ===================================
フッター
------------------------------------*/
footer {
  padding: 28.115942029% 4% 15px;
}
footer .f_logo {
  display: block;
  width: 24.6376811594%;
  max-width: 100px;
  margin: auto;
}
footer small {
  margin-top: 2em;
  display: block;
  font-size: 10px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  footer {
    padding: 146px 4% 30px;
  }
}