@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: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1.6rem;
  color: #111;
  line-height: 1.6;
  text-align: left;
  font-weight: 400;
  -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;
}

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

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

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

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

.inner {
  width: 89%;
  max-width: 1100px;
  margin: 0 auto;
}

/*------------------------------------------------------------
header
------------------------------------------------------------*/
.fixed_body {
  height: 100%;
  overflow: hidden;
}

.smenu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 12;
  display: block;
  width: 100%;
  background: white;
  transition: all 0.3s ease;
}
@media all and (max-width: 880px) {
  .smenu {
    padding: 0;
    background: none;
  }
}

@media all and (max-width: 880px) {
  .smenu.fixed {
    background: white;
  }
  .smenu.fixed .logo_ins {
    padding-left: 20px;
    opacity: 1;
    visibility: visible;
  }
  .smenu.fixed #nav-open span, .smenu.fixed #nav-open span:before, .smenu.fixed #nav-open span:after {
    background: #000;
  }
}

@media all and (max-width: 880px) {
  .smenu.fixed2 {
    background: white;
  }
  .smenu.fixed2 .logo_ins {
    padding-left: 20px;
    opacity: 1;
    visibility: visible;
  }
}

#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;
}
@media all and (max-width: 767px) {
  #nav-drawer {
    align-items: center;
  }
}

.logo_ins {
  padding-left: 40px;
}
.logo_ins img {
  width: 38px;
  height: auto;
}
@media all and (max-width: 880px) {
  .logo_ins {
    opacity: 0;
    visibility: hidden;
    padding: 12.5px;
  }
}

.logo {
  position: absolute;
  left: 0;
  top: 0;
}
.logo img {
  height: 180px;
  width: auto;
}
@media all and (max-width: 880px) {
  .logo img {
    height: 90px;
  }
}

.logo_fx {
  position: absolute;
  z-index: 15;
  top: 0;
  left: 0;
}
@media all and (max-width: 880px) {
  .logo_fx.dis2 {
    opacity: 0;
    visibility: hidden;
  }
}

#nav-open {
  display: none;
  width: 58px;
  height: 58px;
  vertical-align: middle;
  padding: 46px 31.5px;
  box-sizing: border-box;
  z-index: 10000;
  cursor: pointer;
  transition: all 0.5s ease;
  margin-left: 50px;
}
#nav-open span, #nav-open span:before, #nav-open span:after {
  position: absolute;
  height: 2px; /*線の太さ*/
  width: 20px; /*長さ*/
  border-radius: 10px;
  background: white;
  display: block;
  content: "";
  cursor: pointer;
  transition: all 0.3s ease;
}
#nav-open span:before {
  bottom: -7px;
}
#nav-open span:after {
  bottom: -14px;
}
@media all and (max-width: 880px) {
  #nav-open {
    position: absolute;
    right: 0;
    top: 0;
    display: inline-block;
    padding: 20px 19.5px;
    margin-left: 8px;
  }
}
@media all and (max-width: 767px) {
  #nav-open {
    margin-left: 0;
    width: 60px;
    height: 60px;
    padding: 22px 20px;
  }
}

#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: 0px;
  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: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  align-items: center;
  background: white;
}
#nav-content .nv_in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 40px;
  box-sizing: border-box;
}
#nav-content a {
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
  color: #222;
  margin-left: 40px;
  transition: all 0.3s ease;
  white-space: nowrap;
  position: relative;
}
#nav-content a:hover {
  opacity: 0.7;
}
#nav-content .contact {
  border-radius: 5px;
  border: 1px solid #333;
  box-sizing: border-box;
  padding: 5.5px 10px;
}
#nav-content .contact:hover {
  color: white;
  background: #333;
  opacity: 1;
}
@media all and (max-width: 880px) {
  #nav-content {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    z-index: 100;
    width: 100%;
    top: 59px;
    background: white;
    display: block;
    text-align: center;
  }
  #nav-content a {
    display: block;
    font-size: 1.4rem;
    padding: 10px 0;
    box-sizing: border-box;
    margin: 0;
    border-top: 1px solid #000000;
  }
  #nav-content .last {
    border-bottom: 1px solid #000000;
  }
  #nav-content .contact {
    display: none;
  }
  #nav-content .nv_in {
    display: block;
    padding: 10px 20px;
  }
}
@media all and (max-width: 767px) {
  #nav-content {
    padding-top: 0;
  }
}

#nav-input:checked ~ #nav-close {
  visibility: visible;
  opacity: 1;
}
#nav-input:checked ~ #nav-content {
  opacity: 1;
  visibility: visible;
}
#nav-input:checked ~ #nav-open {
  background: #FFFFFF;
}
#nav-input:checked ~ #nav-open span {
  transform: rotate(40deg);
  top: 28px;
  background: #111;
}
#nav-input:checked ~ #nav-open span:before {
  bottom: 0;
  transform: rotate(100deg);
  background: #111;
}
#nav-input:checked ~ #nav-open span:after {
  right: -100px;
  opacity: 0;
}

.logo_sp {
  display: none;
}
@media all and (max-width: 880px) {
  .logo_sp {
    display: block;
  }
  .logo_sp a {
    display: block;
    padding: 12.5px 20px !important;
    box-sizing: border-box !important;
    border: none !important;
  }
  .logo_sp img {
    width: 38px;
  }
}

.bnr_navsp {
  display: none;
}
@media all and (max-width: 880px) {
  .bnr_navsp {
    display: block;
    max-width: 50%;
    min-width: 290px;
    margin: 10px auto 0 auto;
  }
  .bnr_navsp a {
    border: none !important;
    padding: 0 20px !important;
  }
  .bnr_navsp a img {
    width: 100%;
  }
}
@media all and (max-width: 767px) {
  .bnr_navsp a {
    padding: 0 !important;
  }
}

.sns_sp {
  display: none;
}
@media all and (max-width: 880px) {
  .sns_sp {
    display: block;
    text-align: center;
    margin-top: 20px;
  }
  .sns_sp .in {
    display: inline-block;
  }
  .sns_sp .sns {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 0 24px;
  }
  .sns_sp a {
    border: none !important;
    padding: 0 !important;
  }
  .sns_sp a img {
    width: 18px;
  }
}

.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: 45px;
  height: auto;
}
@media all and (max-width: 767px) {
  .gpt {
    right: 5px;
    bottom: 5px;
  }
  .gpt:hover {
    bottom: 10px;
  }
  .gpt img {
    width: 55px;
    min-width: 55px;
    height: auto;
  }
}

/*------------------------------------------------------------
footer
------------------------------------------------------------*/
footer {
  position: relative;
  margin-top: -3px;
}

.ft1 {
  background: #3C0000;
  padding: 60px 0;
  box-sizing: border-box;
}
@media all and (max-width: 767px) {
  .ft1 {
    padding: 50px 0;
  }
}

.bnrs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 50px;
}
.bnrs a {
  transition: all 0.3s ease;
}
.bnrs a:hover {
  opacity: 0.7;
}
@media all and (max-width: 767px) {
  .bnrs {
    grid-template-columns: 1fr;
    gap: 20px 0;
  }
}

.infos {
  margin: 60px 0 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  color: white;
}
.infos a {
  color: white;
  text-decoration: none;
}
.infos .tel_w {
  order: 2;
}
.infos .tel_w .cap, .infos .tel_w .mini {
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  line-height: 1.8;
}
.infos .tel {
  display: block;
  font-size: 2.8rem;
  font-family: "Cinzel", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.06em;
  margin: 10px 0;
}
.infos .ads {
  order: 1;
}
.infos .ads .ftl {
  display: block;
  width: 275px;
  height: auto;
  transition: all 0.3s ease;
}
.infos .ads .ftl:hover {
  opacity: 0.7;
}
.infos .ads .ftl img {
  width: 100%;
}
.infos .ads .ad {
  margin: 20px 0;
  font-size: 1.3rem;
  letter-spacing: 0.06em;
}
.infos .sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  align-items: center;
}
.infos .sns a {
  display: block;
  margin-right: 15px;
  transition: all 0.3s ease;
}
.infos .sns a:hover {
  opacity: 0.7;
}
.infos .sns a img {
  width: 16px;
}
@media all and (max-width: 1000px) {
  .infos {
    display: block;
    text-align: center;
  }
  .infos .ads {
    margin-top: 40px;
  }
  .infos .ads .ftl {
    margin: 0 auto;
  }
  .infos .sns {
    max-width: 110px;
    margin: 0 auto;
  }
}
@media all and (max-width: 767px) {
  .infos .tel {
    margin: 0 0 10px 0;
  }
  .infos .tel_w .cap, .infos .tel_w .mini {
    letter-spacing: 0;
  }
}

.links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  align-items: center;
  margin: 50px 0 0 0;
}
.links .gn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.links .gn a {
  display: block;
  font-size: 1.2rem;
  margin-right: 36px;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}
.links .gn a:hover {
  opacity: 0.7;
}
.links .gn2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.links .gn2 a {
  display: block;
  font-size: 1.2rem;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}
.links .gn2 a:hover {
  opacity: 0.7;
}
.links .gn2 a:nth-of-type(2) {
  border-left: 1px solid white;
  border-right: 1px solid white;
  padding: 0 10px;
  margin: 0 10px;
}
@media all and (max-width: 1000px) {
  .links {
    display: block;
  }
  .links .gn {
    margin-bottom: 40px;
    display: block;
    text-align: center;
  }
  .links .gn a {
    margin-right: 0;
    padding: 12px 0;
    box-sizing: border-box;
    border-top: 1px solid white;
  }
  .links .gn a:last-of-type {
    border-bottom: 1px solid white;
  }
  .links .gn2 {
    width: 260px;
    margin: 0 auto;
  }
}
@media all and (max-width: 767px) {
  .links .gn a {
    font-size: 1.4rem;
  }
}

.ft2 {
  padding: 30px 0;
  box-sizing: border-box;
}
.ft2 .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  align-items: center;
}
.ft2 .comps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  align-items: center;
}
.ft2 .comps .names {
  font-size: 12px;
  color: #736357;
  padding-right: 30px;
  margin-right: 30px;
  border-right: 1px solid #736357;
  box-sizing: border-box;
}
.ft2 .links2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  align-items: center;
}
.ft2 .links2 a {
  display: block;
  margin-right: 20px;
  transition: all 0.3s ease;
}
.ft2 .links2 a:hover {
  opacity: 0.7;
}
.ft2 .links2 a img {
  height: 16px;
  width: auto;
}
.ft2 .copyright {
  width: auto;
  text-align: right;
  color: #736357;
  font-size: 10px;
}
@media all and (max-width: 1000px) {
  .ft2 .inner {
    display: block;
    text-align: center;
  }
  .ft2 .inner .comps {
    display: block;
  }
  .ft2 .inner .comps .names {
    font-size: 12px;
    padding-right: 0;
    margin-right: 0;
    border-right: none;
  }
  .ft2 .inner .links2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    align-items: center;
    width: 365px;
    margin: 20px auto;
  }
  .ft2 .inner .links2 a {
    display: block;
    margin-right: 20px;
    transition: all 0.3s ease;
  }
  .ft2 .inner .links2 a:hover {
    opacity: 0.7;
  }
  .ft2 .inner .links2 a img {
    height: 16px;
    width: auto;
  }
  .ft2 .inner .copyright {
    text-align: center;
  }
}
@media all and (max-width: 767px) {
  .ft2 .inner .links2 {
    width: 344px;
    margin: 15px auto;
  }
}

/*------------------------------------------------------------
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: lef 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.fade {
  animation: fade 0.7s cubic-bezier(0.33, 1, 0.68, 1) 0.1s 1 normal forwards;
}
.trigger.lef {
  animation: lef 0.5s cubic-bezier(0.8, 0, 0.5, 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;
  }
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes lef {
  0% {
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  100% {
    clip-path: inset(0 0 0 0); /*クリップマスクを広げる*/
    opacity: 1;
  }
}

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