@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;
}

html {
  font-size: 62.5%;
}

body {
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  color: #111;
  line-height: 1.75;
  letter-spacing: 0.12em;
  text-align: left;
  font-weight: 500;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media all and (max-width: 767px) {
  body {
    font-size: 1.3rem;
    line-height: 2;
  }
}

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

li {
  list-style: none;
}

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

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

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

.inner {
  width: 93%;
  max-width: 1080px;
  margin: 0 auto;
}

/*------------------------------------------------------------
header
------------------------------------------------------------*/
.smenu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 12;
  display: block;
  width: 100%;
  padding: 25px 40px 15px 40px;
  box-sizing: border-box;
  background: white;
}
@media all and (max-width: 767px) {
  .smenu {
    padding: 0;
  }
}

.logo {
  padding-left: 30px;
  box-sizing: border-box;
}
.logo img {
  height: 61px;
  width: auto;
}
@media all and (max-width: 1366px) {
  .logo {
    padding-left: 0;
  }
}
@media all and (max-width: 767px) {
  .logo {
    padding-left: 3.5%;
  }
  .logo img {
    height: 32px;
    width: auto;
  }
}

#nav-drawer {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  align-items: center;
}

#nav-open {
  display: none;
  width: 48px;
  height: 48px;
  vertical-align: middle;
  padding: 12px 10.5px;
  box-sizing: border-box;
  z-index: 10000;
  cursor: pointer;
  transition: all 0.5s ease;
}
#nav-open span, #nav-open span:before, #nav-open span:after {
  position: absolute;
  height: 3px; /*線の太さ*/
  width: 28px; /*長さ*/
  border-radius: 10px;
  background: linear-gradient(120deg, #D0C7F4 0%, #CDCBF5 15%, #B6DBE6 48%, #A7C6EE 80%, #A6C3ED 100%);
  display: block;
  content: "";
  cursor: pointer;
  transition: all 0.3s ease;
}
#nav-open span:before {
  bottom: -10px;
}
#nav-open span:after {
  bottom: -20px;
}
@media all and (max-width: 1366px) {
  #nav-open {
    display: inline-block;
  }
}
@media all and (max-width: 767px) {
  #nav-open {
    padding: 15px 10.5px;
  }
  #nav-open span:before {
    bottom: -8px;
  }
  #nav-open span:after {
    bottom: -16px;
  }
}

#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: 73px;
  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 a {
  text-decoration: none;
  font-weight: 500;
  color: #222;
  letter-spacing: 0;
  margin-right: 30px;
  transition: all 0.3s ease;
  white-space: nowrap;
}
#nav-content a:hover {
  opacity: 0.5;
}
#nav-content .entry {
  display: block;
  border-radius: 100px;
  color: white;
  margin-right: 0;
  padding: 10px 18px;
  box-sizing: border-box;
  font-weight: bold;
  background: linear-gradient(120deg, #D0C7F4 0%, #CDCBF5 15%, #B6DBE6 48%, #A7C6EE 80%, #A6C3ED 100%);
}
#nav-content .entry:hover {
  opacity: 0.7;
}
@media all and (max-width: 1366px) {
  #nav-content {
    opacity: 0;
    top: 101px;
    visibility: hidden;
    position: fixed;
    z-index: 100;
    width: 100%;
    background: #F0F3FA;
    display: block;
    padding: 70px 11%;
    box-sizing: border-box;
    text-align: left;
  }
  #nav-content a {
    display: block;
    font-size: 2rem;
    padding: 14px 0;
    font-weight: bold;
  }
  #nav-content .entry {
    margin-top: 30px;
    text-align: center;
  }
}
@media all and (max-width: 767px) {
  #nav-content {
    top: 48px;
    padding: 40px 9%;
  }
  #nav-content a {
    padding: 10px 0;
  }
  #nav-content .entry {
    font-size: 1.7rem;
    text-align: left;
  }
  #nav-content .entry span {
    display: block;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    background: url("../images/arw1.svg") center right 20px no-repeat;
    background-size: auto 3px;
    transition: all 0.3s ease;
  }
  #nav-content .entry:hover {
    opacity: 0.7;
  }
}

#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(45deg);
  top: 28px;
}
#nav-input:checked ~ #nav-open span:before {
  bottom: 0;
  transform: rotate(90deg);
}
#nav-input:checked ~ #nav-open span:after {
  right: -100px;
  opacity: 0;
}
@media all and (max-width: 767px) {
  #nav-input:checked ~ #nav-open span {
    top: 23px;
  }
}

.nav-unshown {
  display: none;
}

.gpt {
  display: block;
  position: fixed;
  right: 25px;
  bottom: 25px;
  z-index: 100;
  transition: all 0.3s ease;
}
.gpt:hover {
  bottom: 30px;
}
.gpt img {
  width: 60px;
  height: auto;
}
@media all and (max-width: 767px) {
  .gpt {
    right: 10px;
    bottom: 10px;
  }
  .gpt:hover {
    bottom: 10px;
  }
  .gpt img {
    width: 48px;
    min-width: 48px;
    height: auto;
  }
}

/*------------------------------------------------------------
footer
------------------------------------------------------------*/
footer {
  margin-top: -200px;
}
footer .ft1 {
  max-width: 1240px;
  width: 90%;
  margin: 0 auto;
  padding: 80px 0;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
footer .ft1 a {
  display: block;
  margin-right: 30px;
}
footer .line {
  font-size: 1.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
footer .line .ttl {
  min-width: 80px;
}
@media all and (max-width: 767px) {
  footer .ft1 {
    display: block;
    padding: 20px 0;
  }
  footer .infos {
    margin-top: 20px;
  }
}

.copyright {
  text-align: center;
  font-size: 1.2rem;
  background: #FAFAFA;
  padding: 10px;
  box-sizing: border-box;
}
@media all and (max-width: 767px) {
  .copyright {
    font-size: 1rem;
    transform-origin: center;
    transform: scale(0.9);
    letter-spacing: 0;
  }
}

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

.trigger {
  opacity: 0;
}
.trigger.up {
  animation: up 0.8s ease 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 */
