@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
/* reset:start */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

img {
  width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  appearance: none;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

[hidden] {
  display: none;
}

.cmn-header__contact, .cmn-header__menu, .cont__center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cmn-header__contact > *, .cmn-header__menu > *, .cont__center > * {
  min-height: 0%;
}

.cmn-footer__container, .nav__links, .cont__container {
  box-sizing: content-box !important;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (max-width: 768px) {
  .cmn-footer__container, .nav__links, .cont__container {
    max-width: 89.3333333333vw;
    padding-left: 0;
    padding-right: 0;
  }
}

.cmn-footer__logo, .cmn-footer__shinoken-logo, .nav__link, .nav__sub-link, .nav__bottom-link, .cmn-header__title, .cmn-header__link, .cmn-header__link--blank, .cmn-header__contact, .cmn-header__menu {
  color: inherit;
  transition: opacity 0.3s;
  cursor: pointer;
}
@media (hover: hover) {
  .cmn-footer__logo:hover, .cmn-footer__shinoken-logo:hover, .nav__link:hover, .nav__sub-link:hover, .nav__bottom-link:hover, .cmn-header__title:hover, .cmn-header__link:hover, .cmn-header__link--blank:hover, .cmn-header__contact:hover, .cmn-header__menu:hover {
    opacity: 0.7;
  }
}

/* common:start */
[v-cloak] {
  opacity: 0;
}

@media screen and (max-width: 768px) {
  .pcOnly {
    display: none !important;
  }
}

@media screen and (min-width: 769px) {
  .spOnly {
    display: none !important;
  }
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
@media screen and (max-width: 768px) {
  html {
    scroll-padding-top: 60px;
  }
}

body {
  color: #102b5d;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-feature-settings: "palt";
  min-width: 1160px;
}
@media screen and (max-width: 768px) {
  body {
    overflow-x: hidden;
    min-width: 0;
  }
}

.cont__header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 90px;
  margin-bottom: -90px;
}
@media screen and (max-width: 768px) {
  .cont__header {
    position: fixed;
    height: 60px;
    margin-bottom: 0;
  }
}

/* common:end */
/* js-fade:start */
:root {
  --fade-translate-x: 0px;
  --fade-translate-y: 0px;
  --fade-duration: 500ms;
}

/* 表示方向 */
.up {
  --fade-translate-y: 100px;
}

.down {
  --fade-translate-y: -100px;
}

.fromLeft {
  --fade-translate-x: -100px;
}

.fromRight {
  --fade-translate-x: 100px;
}

.jsScroll {
  opacity: 0;
  transition-duration: 500ms;
  transition-property: opacity, transform;
  transition-delay: 0ms;
  transition-timing-function: ease;
  transform: translate(var(--fade-translate-x), var(--fade-translate-y));
}

.jsScrollIn {
  opacity: 1;
  transform: translate(0, 0);
}

.jsFvHide {
  opacity: 0;
  transition-duration: 1.5s;
  transition-property: opacity, transform;
  transition-delay: 0s;
}
.jsFvHide.jsFvShow {
  opacity: 1;
}

.fade-enter-active {
  transition: opacity 1s;
}
.fade-leave-active {
  transition: opacity 1s;
}
.fade-enter, .fade-leave-to {
  opacity: 0;
}

/* js-fade:end */
.cmn-header__link--blank, .cmn-header__link {
  display: inline-block;
  padding: 20px;
  padding-left: 15px;
  padding-right: 15px;
  font-weight: 500;
}

/* cmn-header:start */
.cmn-header__container {
  width: 100%;
  height: 90px;
  background-color: rgba(238, 129, 0, 0.9);
}
@media screen and (max-width: 768px) {
  .cmn-header__container {
    height: 60px;
  }
}
.cmn-header__contents {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  max-width: 1366px;
  min-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1002;
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .cmn-header__contents {
    min-width: 0;
  }
}
.cmn-header__nav {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 1001;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 40px;
  padding-left: 5.3333333333vw;
  padding-right: 5.3333333333vw;
  max-width: 480px;
  max-height: calc(100vh - 60px);
  max-height: calc(100dvh - 60px);
  overflow-y: auto;
  background-color: #665b3d;
  color: #ffffff;
  transition: transform 0.5s;
  transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: translateX(100%);
  pointer-events: none;
}
.cmn-header__nav.isOpenedMenu {
  transform: translateX(0);
  pointer-events: unset;
}
.cmn-header__bg {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: calc(100vh - 60px);
  height: calc(100dvh - 60px);
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
  transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cmn-header__bg.isOpenedMenu {
  opacity: 1;
  pointer-events: unset;
}
.cmn-header__title {
  max-width: 306px;
  width: 22.4011713031%;
  margin-left: 2.9282576867%;
  margin-right: 2.9282576867%;
}
@media screen and (max-width: 768px) {
  .cmn-header__title {
    width: 198px;
    margin-left: 15px;
  }
}
.cmn-header__title-logo {
  margin-bottom: 5.2287581699%;
}
@media screen and (max-width: 768px) {
  .cmn-header__title-logo {
    margin-bottom: 12px;
  }
}
.cmn-header__links {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
  margin-left: auto;
  flex-shrink: 0;
}
.cmn-header__link--blank::after {
  display: inline-block;
  margin-left: 10px;
  width: 15px;
  height: 15px;
  background-image: url(/common/images/pc/icon_blank_nav.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  vertical-align: -0.11em;
  content: "";
}
.cmn-header__contact {
  flex-direction: row;
  margin-left: 1.2445095168%;
  margin-right: 3.074670571%;
  padding-left: 0.8052708638%;
  padding-right: 0.7320644217%;
  height: 60px;
  border-radius: 10px;
  background-image: url(/common/images/pc/btn_contact.jpg);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% 100%;
  color: #ffffff;
  white-space: nowrap;
  font-weight: 500;
}
.cmn-header__contact::after {
  display: inline-block;
  width: 15px;
  height: 100%;
  margin-left: 15px;
  background-image: url(/common/images/pc/icon_arrow-right-small.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  content: "";
}
.cmn-header__menu {
  width: 60px;
  height: 100%;
  background-color: #ffffff;
  position: relative;
}
.cmn-header__menu-icon, .cmn-header__menu-icon--close, .cmn-header__menu-icon--open {
  position: absolute;
  width: 100%;
  transition: opacity 0.3s, visibility 0.3s;
}
.cmn-header__menu-icon--close {
  opacity: 0;
  visibility: hidden;
}
.cmn-header__menu.isOpenedMenu .cmn-header__menu-icon--open {
  opacity: 0;
  visibility: hidden;
}
.cmn-header__menu.isOpenedMenu .cmn-header__menu-icon--close {
  opacity: 1;
  visibility: visible;
}

/* cmn-header:end */
@media screen and (max-width: 768px) {
  .nav__bottom-list > li, .nav__sub-links > li {
    margin-left: 20px;
    border-bottom: rgba(255, 255, 255, 0.3) solid 1.5px;
  }
}

/* cmn-nav:start */
.nav__links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  row-gap: 35px;
}
@media screen and (max-width: 768px) {
  .nav__links {
    row-gap: 0;
  }
}
@media screen and (max-width: 768px) {
  .nav__links {
    flex-direction: column;
  }
}
.nav__links > li {
  width: 31%;
}
@media screen and (max-width: 768px) {
  .nav__links > li {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .nav__has-sublink {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
.nav__link {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  border-bottom: 2px solid #ffffff;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .nav__link {
    border-bottom-width: 1.5px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.nav__link::after {
  display: block;
  width: 25px;
  aspect-ratio: 1/1;
  margin-right: 10px;
  background-image: url(/common/images/pc/icon_arrow-right.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  content: "";
}
@media screen and (max-width: 768px) {
  .nav__link::after {
    width: 18px;
    margin-right: 0;
    background-image: url(/common/images/sp/icon_arrow-right.png);
  }
}
.nav__link-blank::after {
  display: inline-block;
  margin-bottom: -1px;
  margin-left: 10px;
  width: 15px;
  aspect-ratio: 1/1;
  background-image: url(/common/images/icon_blank.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  content: "";
}
@media screen and (max-width: 768px) {
  .nav__link-blank::after {
    width: 14px;
    margin-right: 0;
  }
}
.nav__sub-links {
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .nav__sub-links {
    margin-top: 5px;
  }
}
.nav__sub-links > li:not(:first-child) {
  margin-top: 5px;
}
@media screen and (max-width: 768px) {
  .nav__sub-links > li:not(:first-child) {
    margin-top: 0;
  }
}
.nav__sub-link {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .nav__sub-link {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
.nav__bottom-list {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  height: 100%;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .nav__bottom-list {
    flex-direction: column;
    margin-top: 5px;
  }
}
@media screen and (min-width: 769px) {
  .nav__bottom-list > li:not(:first-child) {
    margin-left: 20px;
  }
}
@media screen and (max-width: 768px) {
  .nav__bottom-list > li:not(:first-child) {
    margin-top: 5px;
  }
}
.nav__bottom-link {
  display: block;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .nav__bottom-link {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

/* cmn-nav:end */
.cmn-footer__caution, .cmn-footer__note {
  padding-left: 1em;
  text-indent: -1em;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6071428571;
}
@media screen and (max-width: 768px) {
  .cmn-footer__caution, .cmn-footer__note {
    font-size: 1.2rem;
  }
}

/* cmn-footer:start */
.cmn-footer {
  padding-top: 50px;
  padding-bottom: 30px;
  background-color: #665b3d;
  color: #ffffff;
}
@media screen and (max-width: 768px) {
  .cmn-footer {
    padding-top: 20px;
  }
}
.cmn-footer__logo {
  display: block;
  width: 305px;
}
@media screen and (max-width: 768px) {
  .cmn-footer__logo {
    width: 260px;
  }
}
.cmn-footer__nav {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .cmn-footer__nav {
    margin-top: 20px;
  }
}
.cmn-footer__infos {
  margin-top: 50px;
  border-top: 1px solid #ffffff;
  padding-top: 30px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  column-gap: 20px;
}
@media screen and (max-width: 768px) {
  .cmn-footer__infos {
    margin-top: 40px;
    padding-top: 20px;
    justify-content: flex-start;
    column-gap: 10px;
    row-gap: 5px;
  }
}
.cmn-footer__shinoken-logo {
  width: 98px;
}
@media screen and (max-width: 768px) {
  .cmn-footer__shinoken-logo {
    width: 75px;
  }
}
@media screen and (max-width: 768px) {
  .cmn-footer__note {
    margin-top: 10px;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .cmn-footer__caution {
    width: 100%;
  }
}
.cmn-footer__copyright {
  margin-top: 20px;
  font-size: 1.4rem;
  font-weight: 500;
  text-align: center;
}

/* cmn-footer:end */