@charset "UTF-8";

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Hiragino Kaku Gothic ProN", "Noto Sans CJK JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #303233;
  font-size: 14px;
  line-height: 1.6rem;
}

.pcnon {
  display: none !important;
}

a {
  text-decoration: none;
}

/* 視覚的に示すための枠線 */
*:focus {
  outline: none;
}

img {
  max-width: 100%;
  vertical-align: bottom;
  height: auto;
}
li {
  list-style: none;
}

.mb0 {
  margin-bottom: 0px !important;
}
.mb10 {
  margin-bottom: 1vh !important;
}
.mb20 {
  margin-bottom: 2vh !important;
}
.mb30 {
  margin-bottom: 3vh !important;
}
.mb40 {
  margin-bottom: 4vh !important;
}
.mb50 {
  margin-bottom: 5vh !important;
}
.mb60 {
  margin-bottom: 6vh !important;
}
.mb70 {
  margin-bottom: 7vh !important;
}
.mb80 {
  margin-bottom: 8vh !important;
}
.mb90 {
  margin-bottom: 9vh !important;
}
.mb100 {
  margin-bottom: 10vh !important;
}
.mb150 {
  margin-bottom: 15vh !important;
}
.mb200 {
  margin-bottom: 20vh !important;
}
.mb300 {
  margin-bottom: 30vh !important;
}
.mb400 {
  margin-bottom: 40vh !important;
}

.mt0 {
  margin-top: 0px !important;
}
.mt10 {
  margin-top: 1vh !important;
}
.mt20 {
  margin-top: 2vh !important;
}
.mt30 {
  margin-top: 3vh !important;
}
.mt40 {
  margin-top: 4vh !important;
}
.mt50 {
  margin-top: 5vh !important;
}
.mt60 {
  margin-top: 6vh !important;
}
.mt70 {
  margin-top: 7vh !important;
}
.mt80 {
  margin-top: 8vh !important;
}
.mt90 {
  margin-top: 9vh !important;
}
.mt100 {
  margin-top: 10vh !important;
}
.mt150 {
  margin-top: 15vh !important;
}
.mt200 {
  margin-top: 20vh !important;
}
.mt300 {
  margin-top: 30vh !important;
}
.mt400 {
  margin-top: 40vh !important;
}

@media screen and (max-width: 1024px) {
  .Menupcnon {
    display: block !important;
  }
}

@media screen and (max-width: 780px) {
  html {
    font-size: 50%;
  }

  .pcnon {
    display: block !important;
  }

  .spnon {
    display: none !important;
  }
}

/*-------------------------------
  headerここから 
--------------------------------*/

header {
  position: fixed;
  width: 140px;
  height: 100dvh;
  right: 30px;
  z-index: 100;
  padding-block: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.Hlogo {
  width: 65%;
}

header ul.Hmenu {
  display: grid;
}

header ul li a {
  font-size: 14px;
  line-height: 2.4rem;
  position: relative;
}

header ul li a::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 1px;
  background-color: #303233;
  margin-right: 15px;
  position: absolute;
  left: 80px;
  top: 50%;
  transition: 0.2s;
}

header ul li a:hover::after {
  left: 90px;
  top: 50%;
  transition: 0.2s;
}

header ul li:last-child a:after {
  content: none;
}

/* お問い合わせボタンアニメーション */

.button {
  width: 140px;
}
.button-cube {
  height: 4dvh;
  margin-top: 15px;
}

.button-cube .button-link {
  transform-style: preserve-3d;
  perspective: 300px;
  height: 100%;
  position: relative;
}

.button-link {
  display: block;
  text-align: center;
  text-decoration: none;
  color: #fff;
  transition: 0.2s;
}

.button-cube .button-link span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.2s;
}

.button-cube .button-link .button-text {
  background: linear-gradient(70deg, #0a2341, #1d4373);
  color: #fff;
  transform-origin: center center;
  transition: 0.2s;
  border-radius: 10px;
}

.button-cube .button-link .button-text--hover {
  transform: rotateX(-90deg);
  transform-origin: center center;
  background: linear-gradient(70deg, #f0f75d, #02b9b0);
  color: #303233;
  transition: 0.2s;
  border-radius: 10px;
}

.button-cube .button-link:hover .button-text {
  transform: rotateX(90deg);
}

.button-cube .button-link:hover .button-text--hover {
  transform: rotateX(0deg);
}

/* お問い合わせボタンアニメーション */

@media screen and (max-width: 1024px) {
}

@media screen and (max-width: 780px) {
  header {
    position: fixed;
    width: 100%;
    height: auto;
    right: 0;
    z-index: 100;
    padding-block: 0px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }

  .Hlogo {
    position: fixed;
    width: 20%;
    left: 20px;
    top: 20px;
  }

  /*　ハンバーガーメニューボタン　*/
  .hamburger {
    display: block;
    position: fixed;
    z-index: 999;
    right: 20px;
    top: 20px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    text-align: center;
  }
  .hamburger span {
    display: block;
    position: absolute;
    width: 30px;
    height: 2px;
    left: 6px;
    background: #0a2341;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .hamburger span:nth-child(1) {
    top: 10px;
  }
  .hamburger span:nth-child(2) {
    top: 20px;
  }
  .hamburger span:nth-child(3) {
    top: 30px;
  }

  /* スマホメニューを開いてる時のボタン */
  .hamburger.active span:nth-child(1) {
    top: 16px;
    left: 6px;
    background: #fff;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  .hamburger.active span:nth-child(2),
  .hamburger.active span:nth-child(3) {
    top: 16px;
    background: #fff;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  /* メニュー背景　*/
  nav.globalMenuSp {
    position: fixed;
    z-index: 200;
    top: 0;
    left: 0;
    color: #fff;
    background: #0a2341;
    text-align: center;
    width: 100%;
    height: 100dvh;
    transform: translateX(100%);
    transition: all 0.6s;
    padding: 20vw;
  }

  nav.globalMenuSp ul {
    margin: 0 auto;
    padding: 0;
    width: 100%;
  }

  nav.globalMenuSp ul li {
    list-style-type: none;
    padding: 0;
    width: 100%;
    transition: 0.4s all;
  }
  nav.globalMenuSp ul li:last-child {
    padding-bottom: 0;
  }

  nav.globalMenuSp ul li a {
    display: block;
    color: #fff;
    padding: 1em 0;
    text-decoration: none;
  }

  /* クリックでjQueryで追加・削除 */
  nav.globalMenuSp.active {
    opacity: 100;
    display: block;
    transform: translateX(0%);
  }

  .button-cube {
    position: fixed;
    bottom: 20px;
    right: 20px;
    height: 7dvh;
    width: 110px;
    margin-top: 0px;
    z-index: 100;
  }

  header ul li a::after {
    background-color: #fff;
    left: inherit;
    right: 40px;
  }

  header ul li:last-child a:after {
    content: "";
  }
}
/*-------------------------------
  headerここまで 
--------------------------------*/

/*-------------------------------------------
お問い合わせ枠
-------------------------------------------*/
.ContactBox {
  padding: 15vh 0 20vh;
}

.ContactBox h2 {
  font-size: 4.16vw;
  color: #0a2341;
  margin-left: 10vw;
  margin-bottom: 10vh;
  display: flex;
  align-items: center;
  position: relative;
}

.ContactBox h2::after {
  content: "";
  display: inline-block;
  width: 30vw;
  height: 1px;
  background-color: #0a2341;
  margin-right: 15px;
  position: absolute;
  right: 14vw;
  top: 50%;
  transition: 0.3s;
}

.ContactBox h2 span {
  font-size: 1.38vw;
  margin-left: 3.47vw;
  font-weight: 400;
}

.ConBTBox {
  display: flex;
  justify-content: space-between;
  margin-left: 10vw;
  align-items: flex-start;
  width: 100%;
  gap: 7vw;
}

.ConBTBox p {
  width: 30%;
}

.Btn {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  width: 60vw;
  height: auto;
  display: flex;
  background: linear-gradient(70deg, #0a2341, #1d4373);
  z-index: 10;
}

.Btn-Text {
  width: 100%;
  height: 100%;
  color: #fff;
  z-index: 10;
  font-size: 4.16vw;
  line-height: 5rem;
  padding: 2rem 0 2rem 2rem;
  position: relative;
}

.Btn-Text span {
  font-size: 1.38vw;
  font-weight: 400;
  display: block;
  line-height: 3rem;
}

.Btn::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 0;
  display: block;
  background: linear-gradient(70deg, #f0f75d, #02b9b0);
  z-index: -1;
  transition: 0.2s;
}

.Btn-Text::before {
  content: "";
  display: block;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  position: absolute;
  top: calc(40% - 5px);
  right: 15vw;
  border: 1px solid #fff;
}

.Btn-Text::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 5px);
  right: 16vw;
  width: 40px;
  height: 12px;
  border: none;
  border-right: 2px solid #fff;
  border-bottom: 1px solid #fff;
  transform: skew(45deg);
  transition: 0.3s;
}

.Btn:hover {
  color: #fff;
}

.Btn:hover:before {
  width: 100%;
}

.Btn:hover .Btn-Text::after {
  right: 14vw;
}

@media only screen and (max-width: 780px) {
  .ContactBox {
    padding: 15vh 0 10vh;
  }

  .ConBTBox {
    display: block;
    margin: 0;
    padding: 0 10vw;
  }

  .ContactBox h2 {
    font-size: 7.16vw;
    display: block;
    margin-bottom: 5vh;
  }

  .ContactBox h2 span {
    font-size: 4.38vw;
    display: block;
    margin-left: 0;
    margin-top: 2vh;
  }

  .ContactBox h2::after {
    content: "";
    display: inline-block;
    width: 25vw;
    height: 1px;
    background-color: #0a2341;
    margin-right: 0px;
    position: absolute;
    right: 10vw;
    top: 50%;
    transition: 0.3s;
  }

  .ConBTBox p {
    width: 100%;
    font-size: 1.8rem;
    line-height: 3rem;
    margin-bottom: 2vh;
  }

  .Btn {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    height: auto;
    display: flex;
    background: linear-gradient(70deg, #0a2341, #1d4373);
    z-index: 10;
  }

  .Btn-Text span {
    font-size: 3vw;
    font-weight: 400;
    display: block;
    line-height: 3rem;
  }

  .Btn-Text::before {
    width: 50px;
    height: 50px;
    top: calc(35% - 5px);
    right: 5vw;
  }

  .Btn-Text::after {
    content: "";
    display: block;
    position: absolute;
    top: calc(50% - 5px);
    right: 9vw;
    width: 30px;
    height: 10px;
    border: none;
    border-right: 2px solid #fff;
    border-bottom: 1px solid #fff;
    transform: skew(45deg);
    transition: 0.3s;
  }

  .Btn:hover .Btn-Text::after {
    right: 3vw;
  }
}

/*-------------------------------
  footerここから 
--------------------------------*/
footer {
  background-color: #0a2341;
  color: #fff;
  z-index: 999;
  position: relative;
}

.Footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding: 3vw 10vw;
}

.Flogo {
  width: 50%;
  margin-bottom: 1rem;
}

.FLinkBox ul.Fmenu {
  display: grid;
}

.FLinkBox ul li a {
  font-size: 14px;
  line-height: 2.4rem;
  position: relative;
  padding-left: 2rem;
}

.FLinkBox ul li a::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 1px;
  background-color: #fff;
  margin-right: 15px;
  position: absolute;
  left: 0px;
  top: 50%;
  transition: 0.2s;
}

.FLinkBox ul li a:hover::before {
  left: 10px;
  top: 50%;
  transition: 0.2s;
}

p.copy {
  text-align: center;
  font-size: 0.8rem;
}

@media only screen and (max-width: 1024px) {
}

@media only screen and (max-width: 780px) {
  .Footer {
    padding: 5vw;
    gap: 0;
  }

  .Flogo {
    width: 20%;
    margin-bottom: 1rem;
  }

  .FlogoBox ul,
  .FLinkBox ul {
    font-size: 3vw;
    line-height: 3rem;
  }

  .FLinkBox ul li a {
    line-height: 4.4rem;
  }

  .FLinkBox ul li a::before {
    left: -5px;
  }

  .FLinkBox ul li a:hover::before {
    left: 0px;
  }
}
/*-------------------------------
  footerここまで 
--------------------------------*/

/*-------------------------------
  ページネーションここから
--------------------------------*/

section.cp_navi {
  margin: 2rem 0;
  text-align: center;
}

.cp_pagination {
  text-align: center;
  margin-top: 20px;
}

section.cp_navi *,
section.cp_navi *:after,
section.cp_navi *:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.cp_navi .cp_pagination {
  display: inline-block;
  margin-top: 2rem;
  padding: 0 0.5em;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cp_navi .page-numbers {
  font-size: 1em;
  font-weight: bold;
  display: block;
  float: left;
  transition: 400ms ease;
  letter-spacing: 0.1em;
  margin: auto 1.5rem;
  padding: 0 5px;
  line-height: 30px;
}

.cp_navi .page-numbers:hover,
.cp_navi .page-numbers.current {
  font-weight: bold;
  color: #333333;
  border-bottom: 2px solid #333333;
}

.cp_navi .page-numbers.prev,
.cp_navi .page-numbers.next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #f7f7f7;
  color: #333333;
  box-shadow: 5px 5px 5px #dedede, -5px -5px 5px #ffffff,
    inset 5px 5px 5px #f7f7f7, inset -5px -5px 5px #f7f7f7;
  line-height: 50px;
}

.cp_navi .page-numbers.prev:hover,
.cp_navi .page-numbers.next:hover {
  color: #333333;
  background-color: transparent;
  border-radius: 50%;
  box-shadow: 5px 5px 5px #f7f7f7, -5px -5px 5px #f7f7f7,
    inset 5px 5px 5px #dedede, inset -5px -5px 5px #ffffff;
  border-bottom: none;
}

@media only screen and (max-width: 780px) {
  .cp_navi .page-numbers {
    line-height: 30px;
    margin: auto 0.5rem;
  }
}
/*-------------------------------
  ページネーションここまで
--------------------------------*/
.FixBtn {
  opacity: 0; /* 初期状態は透明 */
  transition: opacity 600ms ease; /* フェード用のトランジション */
  position: fixed; /* 固定位置 */
  justify-content: center;
  align-items: center;
  bottom: 0;
  left: 0;
  background-color: #333333;
  padding: 1rem 0;
  width: 100%;
  gap: 50px;
  z-index: 100;
}

.FixTel {
  width: 15%;
  border-radius: 10px;
  padding: 0.8rem 0.8rem 0.8rem 1.8rem;
  color: #f7f7f7;
  transition: 400ms;
  box-shadow: 5px 5px 5px #242424, -5px -5px 5px #424242,
    inset 5px 5px 5px #333333, inset -5px -5px 5px #333333;
  position: relative;
  line-height: 1.4rem;
}

.FixRe {
  width: 15%;
  border-radius: 10px;
  padding: 0.8rem 0.8rem 0.8rem 2.8rem;
  color: #f7f7f7;
  transition: 400ms;
  box-shadow: 5px 5px 5px #242424, -5px -5px 5px #424242,
    inset 5px 5px 5px #333333, inset -5px -5px 5px #333333;
  position: relative;
  line-height: 1.4rem;
}

.FixTel:hover,
.FixRe:hover {
  box-shadow: 5px 5px 8px #333333, -5px -5px 8px #333333,
    inset 5px 5px 8px #262626, inset -5px -5px 8px #404040;
  transition: 400ms;
  transform: translateY(3px);
}

.FixTel::after {
  content: "";
  display: inline-block;
  background-image: url(../img/icon_tel.webp);
  background-repeat: no-repeat;
  background-size: contain;
  width: 25px;
  height: 20px;
  position: absolute;
  top: 13px;
  right: 20px;
}

.FixRe::after {
  content: "";
  display: inline-block;
  background-image: url(../img/icon_re.webp);
  background-repeat: no-repeat;
  background-size: contain;
  width: 25px;
  height: 20px;
  position: absolute;
  top: 13px;
  right: 20px;
}

@media only screen and (max-width: 1024px) {
  .FixTel,
  .FixRe {
    width: 20%;
  }
}

@media only screen and (max-width: 780px) {
  .FixBtn {
    gap: 20px;
  }

  .FixTel {
    width: 45%;
    padding: 0.4rem 0.4rem 0.4rem 0.8rem;
    line-height: 2rem;
    font-size: 0.8rem;
  }

  .FixRe {
    width: 45%;
    padding: 0.4rem 0.4rem 0.4rem 1rem;
    line-height: 2rem;
    font-size: 0.8rem;
  }

  .FixTel::after,
  .FixRe::after {
    right: 10px;
  }
}
/*-------------------------------------------
Cookie使用同意
-------------------------------------------*/

/* .cookie-consent {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  bottom: 0;
  width: 100%;
  font-size: 12px;
  color: #fff;
  background: rgba(0, 0, 0, 0.7);
  padding: 1.2em;
  box-sizing: border-box;
  z-index: 100;
  visibility: hidden;
}
.cookie-consent.is-show {
  visibility: visible;
}
.cookie-consent a {
  color: #fff !important;
}
.cookie-agree {
  color: #fff;
  background: dodgerblue;
  padding: 0.5em 1.5em;
}
.cookie-agree:hover {
  cursor: pointer;
}
パッと消える
.cc-hide1 {
  display: none;
}
ゆっくり消える
.cc-hide2 {
  animation: hide 1s linear 0s;
  animation-fill-mode: forwards;
}
@keyframes hide {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    visibility: hidden;
  }
}
メディアクエリ
@media screen and (max-width: 600px) {
  .cookie-consent {
    flex-direction: column;
  }
  .cookie-text {
    margin-bottom: 1em;
  }
} */
