@charset "UTF-8";
@import url("https://use.fontawesome.com/releases/v6.5.2/css/all.css");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap");
@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes zoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
}

body, html {
  height: 100%;
}

body {
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 400;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.01em;
  color: #000;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
    line-height: 1.7;
    letter-spacing: 0.005em;
  }
}

img {
  vertical-align: bottom;
  width: 100%;
  height: auto;
}

/*============================
commingsoon
============================*/
.comingsoon {
  opacity: 0.3;
  pointer-events: none;
}

/*============================
#main
============================*/
#main {
  overflow: hidden;
}

/*============================
Responsive
============================*/
.sp {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block !important;
  }
}

@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

/*============================
BOX Models
============================*/
.w1000 {
  max-width: 1000px;
  margin: auto;
}

/*============================
.flex
============================*/
.flex {
  display: flex;
  justify-content: space-between;
}

/*============================
.sec
============================*/
.sec {
  padding: 100px 30px;
}
@media screen and (max-width: 767px) {
  .sec {
    padding: 50px 20px;
  }
}

/*============================
a
============================*/
a {
  transition: 0.3s;
}

a:hover {
  opacity: 0.85;
}

a[href*="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  a[href*="tel:"] {
    pointer-events: auto;
  }
}

/*============================
.btn
============================*/
.btn {
  display: inline-block;
  padding: 1em 3em 1em 3em;
  background-color: #0F5BA7;
  color: #fff;
  text-decoration: none;
  position: relative;
}
.btn .fa-angle-right {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.btn .fa-angle-left {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}

/*============================
table
============================*/
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/*============================
Headlines
============================*/
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 0.5em;
}

h1 {
  font-size: 2.5em;
}

h2 {
  font-size: 2em;
  border-left: 0.4em solid #0F5BA7;
  padding-left: 0.5em;
}
h2 small {
  font-size: 60%;
}

h3 {
  font-size: 1.5em;
}

h4 {
  font-size: 1.2em;
}

h5 {
  font-size: 1em;
}

h6 {
  font-size: 0.9em;
}

/*============================
list
============================*/
.maruList, .komeList {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.maruList *, .komeList * {
  margin: 0;
  padding: 0;
}
.maruList li, .komeList li {
  margin-left: 1em;
  list-style: none !important;
}
.maruList li::before, .komeList li::before {
  content: "●";
  margin-left: -1em;
}

.maruList li::before {
  content: "●";
}

.komeList li::before {
  content: "※";
}

.jisageList li {
  text-indent: -1em;
  margin-left: 1em;
}

/*============================
margin
============================*/
.mgt1em {
  margin-top: 1em;
}

.mgt2em {
  margin-top: 2em;
}

.mgt3em {
  margin-top: 3em;
}

.mgt4em {
  margin-top: 4em;
}

.mgt5em {
  margin-top: 5em;
}

.mgb1em {
  margin-bottom: 1em;
}

.mgb2em {
  margin-bottom: 2em;
}

.mgb3em {
  margin-bottom: 3em;
}

.mgb4em {
  margin-bottom: 4em;
}

.mgb5em {
  margin-bottom: 5em;
}

/*============================
padding
============================*/
.pdt1em {
  padding-top: 1em;
}

.pdt2em {
  padding-top: 2em;
}

.pdt3em {
  padding-top: 3em;
}

.pdt4em {
  padding-top: 4em;
}

.pdt5em {
  padding-top: 5em;
}

.pdb1em {
  padding-bottom: 1em;
}

.pdb2em {
  padding-bottom: 2em;
}

.pdb3em {
  padding-bottom: 3em;
}

.pdb4em {
  padding-bottom: 4em;
}

.pdb5em {
  padding-bottom: 5em;
}

/*============================
align
============================*/
.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

/*============================
Swiper button
============================*/
div.swiper-button-prev, div.swiper-button-next {
  position: absolute;
  margin: 0;
  top: 50%;
  width: 43px;
  height: 85px;
  background-size: 43px 85px;
  outline: none;
}

div.swiper-button-prev {
  left: 0;
}

div.swiper-button-next {
  right: 0;
}

div.swiper-button-disabled {
  opacity: 0 !important;
}