@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul[role=list], ol[role=list] {
  list-style: none;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img, picture {
  max-width: 100%;
  display: block;
}

input, button, textarea, select {
  font: inherit;
}

@font-face {
  font-family: "pref";
  font-display: swap;
  src: url("../fonts/pres.woff2") format("woff2");
}
html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  color: #111;
  line-height: 1.8;
  text-align: left;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media all and (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
}

img {
  vertical-align: bottom;
  border: none;
}

li {
  list-style: none;
}

input {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

i, em {
  font-style: normal;
}

@media all and (max-width: 750px) {
  .pcbr {
    display: none;
  }
}

.mid1br {
  display: none;
}
@media all and (max-width: 1000px) {
  .mid1br {
    display: block;
  }
}

.spbr {
  display: none;
}
@media all and (max-width: 750px) {
  .spbr {
    display: block;
  }
}

/*------------------------------------------------------------
ラッパー
------------------------------------------------------------*/
#wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.inner {
  width: 88%;
  max-width: 1200px;
  margin: 0 auto;
}

/*------------------------------------------------------------
header
------------------------------------------------------------*/
.smenu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 12;
  display: block;
  width: 100%;
}

#nav-drawer {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background: white;
}
@media all and (max-width: 767px) {
  #nav-drawer {
    align-items: center;
  }
}

.logo2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  align-items: center;
  gap: 0 34px;
  padding-left: 35px;
  box-sizing: border-box;
}
.logo2 .lg1 {
  width: 147px;
  transition: all 0.3s ease;
}
.logo2 .lg1:hover {
  opacity: 0.5;
}
.logo2 .lg2 {
  width: 270px;
  transition: all 0.3s ease;
}
.logo2 .lg2:hover {
  opacity: 0.5;
}
@media all and (max-width: 1000px) {
  .logo2 {
    gap: 0 24px;
  }
  .logo2 .lg1 {
    width: 100px;
    transition: all 0.3s ease;
  }
  .logo2 .lg1:hover {
    opacity: 0.5;
  }
  .logo2 .lg2 {
    width: 220px;
    transition: all 0.3s ease;
  }
  .logo2 .lg2:hover {
    opacity: 0.5;
  }
}
@media all and (max-width: 767px) {
  .logo2 {
    gap: 0 5px;
    padding: 23.5px 0 23.5px 15px;
  }
  .logo2 .lg1 {
    width: 95px;
  }
  .logo2 .lg2 {
    width: 190px;
  }
}

#nav-close {
  display: block;
  position: fixed;
  z-index: 99;
  top: 0; /*全体に広がるように*/
  left: 0;
  width: 50%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease-in-out;
}

#nav-content {
  overflow: auto;
  top: 0;
  right: 0;
  z-index: 9999; /*最前面に*/
  width: auto; /*右側に隙間を作る（閉じるカバーを表示）*/
  max-width: none; /*最大幅（調整してください）*/
  height: 100%;
  transition: 0.3s ease-in-out; /*滑らかに表示*/
  -webkit-overflow-scrolling: touch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  align-items: center;
}
#nav-content .contact {
  text-decoration: none;
  font-weight: bold;
  font-size: 1.6rem;
  transition: all 0.3s ease;
  display: block;
  text-align: center;
  padding: 27px 0;
  width: 276px;
  color: white;
  background: #E76B2B;
  cursor: pointer;
}
#nav-content .contact:hover {
  opacity: 0.8;
}
@media all and (max-width: 1000px) {
  #nav-content .contact {
    padding: 20px 0;
    width: 240px;
  }
}
@media all and (max-width: 767px) {
  #nav-content .contact {
    display: none;
  }
}

#nav-input:checked ~ #nav-close {
  visibility: visible;
  opacity: 1;
}
#nav-input:checked ~ #nav-content {
  opacity: 1;
  visibility: visible;
}
#nav-input:checked ~ #nav-open span {
  transform: rotate(40deg);
  top: 41px;
}
@media all and (max-width: 767px) {
  #nav-input:checked ~ #nav-open span {
    top: 24px;
  }
}
#nav-input:checked ~ #nav-open span:before {
  bottom: 0;
  transform: rotate(100deg);
}
#nav-input:checked ~ #nav-open span:after {
  right: -100px;
  opacity: 0;
}

.nav-unshown {
  display: none;
}

/*------------------------------------------------------------
footer
------------------------------------------------------------*/
footer {
  position: relative;
}
footer .ft1, footer .ft2 {
  position: relative;
  z-index: 2;
}

/*------------------------------------------------------------
parts
------------------------------------------------------------*/
/*-----accordion-------*/
.acd_wrap {
  margin-top: 100px;
}

.acd_bx {
  border: 1px solid #ccc;
  margin-top: 20px;
}
.acd_bx:first-of-type {
  margin-top: 0;
}
.acd_bx .q {
  cursor: pointer;
  padding: 20px;
  position: relative;
}
.acd_bx .a {
  padding: 20px;
  box-sizing: border-box;
  border-top: 1px solid #ccc;
}
.acd_bx .plus {
  position: absolute;
  width: 20px;
  height: 20px;
  right: 20px;
  top: 50%;
  margin-top: -10px;
  transition: all 0.3s ease;
}
.acd_bx .plus:after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -1px;
  width: 2px;
  height: 100%;
  background: #ccc;
}
.acd_bx .plus:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -1px;
  width: 100%;
  height: 2px;
  background: #ccc;
  transition: all 0.3s ease;
}
.acd_bx .open .plus {
  transform: rotate(90deg);
}
.acd_bx .open .plus:before {
  opacity: 0;
  bottom: -30px;
}

/*-----layout-------*/
.photo_text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.photo_text .img {
  width: 50%;
  margin-left: calc(42% - 50vw);
  flex: 1;
}
.photo_text .img img {
  width: 100%;
  object-fit: cover;
}
.photo_text .txt {
  width: 50%;
}
@media all and (max-width: 767px) {
  .photo_text {
    flex-wrap: wrap;
  }
  .photo_text .img {
    width: 100%;
    margin-left: 0;
    flex: unset;
  }
  .photo_text .txt {
    width: 100%;
  }
}

.photo_text_rev {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.photo_text_rev .img {
  width: 50%;
  margin-right: calc(42% - 50vw);
  flex: 1;
}
.photo_text_rev .img img {
  width: 100%;
  object-fit: cover;
}
.photo_text_rev .txt {
  width: 50%;
}
@media all and (max-width: 767px) {
  .photo_text_rev {
    flex-wrap: wrap;
  }
  .photo_text_rev .img {
    width: 100%;
    margin-right: 0;
    flex: unset;
  }
  .photo_text_rev .txt {
    width: 100%;
  }
}

.list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px 20px;
}
.list .img:nth-of-type(1) {
  grid-row: 1/3;
  grid-column: 1/4;
}

/*-----btns-------*/
.under_btn {
  position: relative;
}
.under_btn:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #0481A2;
  transition: all 0.3s;
  transform: scale(0, 1);
  transform-origin: left top;
}
.under_btn:hover:after {
  transform: scale(1, 1);
}
@media all and (max-width: 767px) {
  .under_btn:after {
    content: none;
  }
}

.grad_btn {
  display: block;
  color: #fff;
  padding: 18px 60px;
  border-radius: 30px;
  text-decoration: none;
  outline: none;
  background: linear-gradient(270deg, #3bade3 0%, #576fe6 25%, #9844b7 51%, #ff357f 100%);
  background-position: 1% 50%;
  background-size: 200% auto;
  transition: all 0.3s ease-out;
}

.grad_btn:hover {
  color: #fff;
  background-position: 99% 50%;
}

/*------------------------------------------------------------
inview css
------------------------------------------------------------*/
.anm {
  opacity: 0;
}

.anm_all.trigger {
  opacity: 1;
}
.anm_all .item {
  opacity: 0;
}
.anm_all .item.up {
  animation: up 0.7s cubic-bezier(0.33, 1, 0.68, 1) 0.1s 1 normal forwards;
}

.trigger {
  opacity: 0;
}
.trigger.up {
  animation: up 0.7s cubic-bezier(0.33, 1, 0.68, 1) 0.1s 1 normal forwards;
}
.trigger.delay0 {
  animation-delay: 0ms;
}
.trigger.delay1 {
  animation-delay: 100ms;
}
.trigger.delay2 {
  animation-delay: 200ms;
}
.trigger.delay3 {
  animation-delay: 300ms;
}
.trigger.delay4 {
  animation-delay: 400ms;
}
.trigger.delay5 {
  animation-delay: 500ms;
}
.trigger.delay6 {
  animation-delay: 600ms;
}
.trigger.delay7 {
  animation-delay: 700ms;
}
.trigger.delay8 {
  animation-delay: 800ms;
}
.trigger.delay9 {
  animation-delay: 900ms;
}
.trigger.delay10 {
  animation-delay: 1000ms;
}

@keyframes up {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

/*# sourceMappingURL=base.css.map */
