@charset "UTF-8";
/*=============================================
 * body
 *=============================================*/
body {
  font-size: 13px;
  line-height: 2;
  color: #231815;
  letter-spacing: 0;
  font-family: "Zen Old Mincho", serif;
  min-width: inherit;
  min-height: inherit;
  max-height: 100%;
  text-align: justify;
  background: #EAE4D1;
}
@media only screen and (min-width: 768px) {
  body {
    font-size: 22px;
    line-height: 48px;
    text-align: left;
  }
}
.nav--opened {
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}
body.nav--opened, body.nav--opened *, body.nav--opened *:hover, body.nav--opened *:focus, body.nav--opened *:active {
  pointer-events: none !important;
  -ms-touch-action: none !important;
  touch-action: none !important;
}
body.nav--opened .hamburger, body.nav--opened #menu_toggle, body.nav--opened #menu_toggle *, body.nav--opened header, body.nav--opened header *, body.nav--opened header .logo a, body.nav--opened header .logo a:hover, body.nav--opened header .logo a:focus, body.nav--opened header .logo a:active  {
  pointer-events: visible !important;
  -ms-touch-action: auto !important;
  touch-action: auto !important;
}
/*=============================================
 * fonts - DON'T EDIT
 *=============================================*/
.fnt-mincho {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "メイリオ", Meiryo, "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
.fnt-meiryo {
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴシックPro", "ＭＳ ゴシック", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.fnt-gothic {
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.fnt-zenold {
  font-family: 'Zen Old Mincho';
}
.fnt-notosan {
  font-family: "Noto Sans JP" !important;
}
/*=============================================
 * main
 *=============================================*/
main {
  padding-top: 80px;
  position: relative;
}
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
a[href^="tel:"]:hover {
  text-decoration: none;
}
.dis-flex {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
}
em {
  font-style: normal;
}
.txt-center {
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .wrap {
    padding: 0 25px;
    position: relative;
  }
  .dis-flex-sp {
    display: flex !important;
    justify-content: space-between;
  }
  .txt {
    padding: 0 5%;
  }
}
i {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  line-height: 1;
  position: relative;
}
.btn-link a {
  position: relative;
  text-decoration: none;
  outline: none;
  box-sizing: border-box;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  font-size: 24px;
  color: #1F2A66;
  height: 40px;
  font-family: "Times New Roman", Cambria, "Hoefler Text", "Liberation Serif", Times, "serif";
  letter-spacing: 0;
  z-index: 0;
  background: #fff;
  padding: 0 12px 0 17px;
  transition: ease 0.3s;
}
.btn-link a:after {
  content: "";
  position: absolute;
  top: 0;
  right: -19px;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 20px 0 20px 20px;
  border-color: transparent transparent transparent #fff;
  transform: rotate(0deg);
  transition: ease 0.3s;
}
.btn-link a:hover {
  text-decoration: none;
  background: #1F2A66;
  color: #fff;
}
.btn-link a:hover:after {
  border-color: transparent transparent transparent #1F2A66;
}
/*=============================================
 * header
 *=============================================*/
header {
  position: fixed;
  box-sizing: border-box;
  z-index: 100;
  background: #fff;
  top: 0;
  left: 0;
  height: 80px;
  width: 100%;
}
header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0;
}
header .logo {
  width: 175px;
  margin-left: 9px;
  position: relative;
  z-index: 1000;
}
header .logo a{
  display: block;
}
@media only screen and (min-width: 768px) and (max-width: 780px) {
  header .logo {
    width: 150px;
  }
}
/*=============================================
 * animation
 *=============================================*/
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 50px, 0);
    transform: translate3d(0, 50px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 50px, 0);
    transform: translate3d(0, 50px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  opacity: 0;
  -webkit-transform: translate3d(0, 50px, 0);
  transform: translate3d(0, 50px, 0);
}
.fadeInUp[style*="visible"]{
  opacity: 1;
    -webkit-transform: none;
    transform: none;
}
.animated {
  -webkit-animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-duration: 1s;
  animation-fill-mode: both;
}
@media (prefers-reduced-motion) {
  .animated {
    -webkit-animation: unset !important;
    -webkit-transition: none !important;
    animation: unset !important;
    transition: none !important;
  }
}
#menu_toggle {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
  overflow-y: auto;
  z-index: 999;
  padding: 80px 30px;
  background: #fff;
  transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -webkit-transition: all 0.5s ease 0s;
  font-family: "Noto Sans JP", system-ui;
  font-weight: 700;
}
#menu_toggle li {
  margin-bottom: 10px;
}
#menu_toggle .nav-sub {
  margin-left: 0;
}
#menu_toggle .nav-sub li {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
@media only screen and (max-width: 767px) {
  #menu_toggle {
    padding-top: 120px;
    font-size: 17px;
  }
  #menu_toggle li {
    margin-bottom: 12px;
  }
  #menu_toggle .nav-sub {
    display: none;
    margin-left: 20px;
    font-size: 90%;
  }
  #menu_toggle .nav-parent p {
    display: flex;
    align-items: center;
  }
  #menu_toggle .nav-parent p:after {
    content: "";
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 14px 8px 0 8px;
    border-color: #231815 transparent transparent transparent;
    transform: rotate(0deg);
    display: block;
    margin-left: 2px;
    margin-top: 3px;
    transition: ease 0.3s;
  }
  #menu_toggle .nav-parent.active .nav-sub {
    display: block;
  }
  #menu_toggle .nav-parent.active p:after {
    transform: rotate(180deg);
  }
}
@media only screen and (min-width: 768px) {
  #menu_toggle {
    opacity: 1;
    visibility: visible;
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    background: none;
    color: #3F3F3F;
    font-size: 14px;
    overflow: inherit;
    margin-right: 10px;
    letter-spacing: 0.5px;
  }
  #menu_toggle .gnav {
    display: flex;
  }
  #menu_toggle li {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
    position: relative;
    margin-left: 15px;
  }
  #menu_toggle .nav-sub {
    margin-left: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 48px;
    left: -30px;
    transition: ease 0.3s;
    background: #1F2A66;
    color: #fff;
    width: 305px;
    line-height: 35px;
    padding: 10px 0;
  }
  #menu_toggle .nav-parent p {
    cursor: pointer;
  }
  #menu_toggle .nav-parent:hover .nav-sub {
    opacity: 1;
    pointer-events: visible;
  }
  #menu_toggle a, #menu_toggle p {
    display: block;
    transition: ease 0.3s;
  }
  #menu_toggle a:hover, #menu_toggle p:hover {
    opacity: 0.8;
    text-decoration: none;
  }
}
.navOpen #menu_toggle {
  opacity: 1;
  visibility: visible;
  pointer-events: visible;
}
/*=============================================
 * hamburger
 *=============================================*/
.hamburger {
  z-index: 9999;
  position: fixed;
  top: 18px;
  right: 10px;
  color: #000;
  border-right: none;
  width: 40px;
  height: 40px;
}
.hamburger span {
  width: 27px;
  height: 3px;
  position: absolute;
  top: 19px;
  right: 0;
  left: 0;
  background-color: #000;
  margin: auto;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger span:before, .hamburger span:after {
  content: "";
  background: #000;
  height: 3px;
  position: absolute;
  right: 0;
  left: 0;
  transition: 0.15s ease;
}
.hamburger span:before {
  top: -10px;
  transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}
.hamburger span:after {
  bottom: -10px;
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger.is-active {
  background: transparent;
  border-color: transparent;
  top: 7px;
  right: 14px;
}
.hamburger.is-active:after {
  display: none;
}
.hamburger.is-active span {
  top: 25px;
  width: 35px;
  height: 2px;
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger.is-active span:before {
  top: 0;
  opacity: 0;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}
.hamburger.is-active span:after {
  bottom: 0 !important;
  transform: rotate(-90deg);
  height: 2px;
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}
/*=============================================
 * footer
 *=============================================*/
footer {
  background: #EAE5E3;
  padding: 120px 20px 30px;  
}

footer .wrap {
  max-width: 759px;
}
footer .footer-logo {
  width: 175px;
  margin-bottom: 60px;
}
footer .footer-txt {
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: 0.5px;
}
footer .footer-menu{
  width: 470px;
}
footer .gnav {
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 14px;
  font-weight: 700;
}
footer .gnav li {
  margin-bottom: 13px;
}
footer .toggle-link {
  display: flex;
  align-items: center;
}
footer .toggle-link:after {
  content: "";
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 14px 8px 0 8px;
  border-color: #231815 transparent transparent transparent;
  transform: rotate(0deg);
  display: block;
  margin-left: 2px;
  margin-top: 3px;
  transition: ease 0.3s;
}
footer .toggle.active .toggle-link:after {
  transform: rotate(180deg);
}
footer .toggle-main {
  margin: 15px 0 0 19px;
  font-size: 18px;
  font-weight: 500;
}
footer address {
  font-family: "Noto Sans JP";
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 0.5px;
  margin-top: 20px;
}
@media only screen and (min-width: 768px) {
  footer .toggle-link{
    pointer-events: none;
  }
  footer .toggle-link:after{
    display: none;
  }
  footer .toggle-main{
    display: block !important;
  }
  
}
@media only screen and (max-width: 767px) {
  footer {
    text-align: center;
    padding: 50px 0 20px;
  }
  footer .footer-logo {
    margin: 0 auto;
  }
  footer .footer-txt {
    margin: 32px 0;
    font-size: 14px;
    line-height: 20px;
  }
  footer .footer-menu{
    width: 100%;
  }
  footer .gnav {
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
  }
  footer .toggle-link {
    justify-content: center;
  }
  footer .toggle-main{
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    margin-top: 5px;
    margin-left: 0;
  }
  footer .toggle-main li{
    margin-bottom: 5px;
  }
  footer address {
    font-size: 13px;
    margin-top: 25px;
  }
}
iframe {
  width: 100%;
  height: 100%;
}
/*=============================================
 * general
 *=============================================*/
.align-bottom {
  align-items: flex-end;
}
.slick-slide > div {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}
.slick-dots {
  font-size: 0;
  line-height: 0;
  text-align: center;
  display: flex;
  justify-content: center;
  margin-top: 5vw;
}
.slick-dots li {
  display: block;
  line-height: 0;
  margin: 0 3px;
  cursor: pointer;
  width: 34px;
  height: 5px;
}
.slick-dots li button {
  border: none;
  position: relative;
  cursor: pointer;
  outline: none;
  background: none;
  width: 100%;
  height: 100%;
  background: none;
  border: 1px solid #fff;
  box-sizing: border-box;
}
.slick-dots .slick-active button {
  background: #fff;
}
.slick-arrow {
  top: 50%;
  z-index: 2;
  border: none;
  outline: none;
  color: transparent;
  position: absolute;
  cursor: pointer;
  background: transparent;
  width: 13px;
  height: 26px;
  margin-top: -12px;
}
.slick-arrow.slick-prev {
  left: -30px;
  background: url("../img/shared/arrow_left.png") no-repeat center/100% auto;
}
.slick-arrow.slick-next {
  right: -30px;
  background: url("../img/shared/arrow_right.png") no-repeat center/100% auto;
}
img {
  max-width: 100%;
  height: auto;
}
.bg_parallax {
  position: relative;
}
.img_parallax {
  clip: rect(0, auto, auto, 0);
  margin-bottom: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.img_parallax img {
  width: 100% !important;
  height: 100vh !important;
  position: fixed;
  top: 0;
  left: 0;
  padding: 0;
  margin: 0;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transform: translateZ(0) !important;
  transform: translateZ(0) !important;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .img_parallax img {
    height: auto !important;
    object-fit: unset;
    top: 50%;
    transform: translateY(-50%) !important;
  }
}
@supports (-ms-accelerator: true) {
  .img_parallax img {
    height: auto !important;
    object-fit: unset;
    top: 50%;
    transform: translateY(-50%) !important;
  }
}
@media only screen and (min-width: 768px) {
  #ft_fixed {
    display: none;
  }
  .hamburger, .sp {
    display: none !important;
  }
  #pagetop {
    width: auto;
    bottom: 20px;
    right: 20px;
  }
  img {
    width: auto;
  }
  .slick-dots {
    margin-top: 16px;
    justify-content: flex-end;
  }
  .slick-dots li {
    transition: 0.2s;
    width: 34px;
    height: 5px;
    margin: 0 0 0 6px;
  }
  .slick-arrow {
    width: 20px;
    height: 35px;
    top: 193px;
  }
  .slick-arrow.slick-prev {
    left: -173px;
  }
  .slick-arrow.slick-next {
    right: -5px;
  }
  .slick-arrow:hover {
    opacity: 0.8;
  }
  .wrap {
    margin: auto;
    max-width: 800px;
    width: 100%;
    padding: 0;
    position: relative;
    z-index: 0;
  }
  .df-pc {
    display: flex !important;
    justify-content: space-between;
  }
}
.df {
  display: flex;
  justify-content: space-between;
}
@font-face {
  font-display: swap;
  font-family: 'Tiffany';
  font-style: normal;
  font-weight: 400;
  src: url("../font/Tiffany-Normal.woff2");
}
.fnt-tiffany {
  font-family: 'Tiffany';
}
#kv {
  height: 250px;
  background-image: url("../img/service/kv.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50%;
}
#kv .wrap {
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
#kv .kv-ttl {
  display: table;
  font-size: 27px;
  line-height: 42px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #1F2A66;
  text-align: left;
}
#kv .kv-ttl small {
  display: block;
  border-top: 1px solid #1F2A66;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 26px;
}
#kv .kv-ttl small span{
    display: inline-block;
    width: 10px;
  }
@media screen and (min-width: 768px) {
  #kv {
    height: 400px;
  }
  #kv .kv-ttl {
    width: 360px;
    font-size: 40px;
    line-height: 50px;
    margin-left: 30px;
  }
  #kv .kv-ttl small {
    font-size: 30px;
    line-height: 36px;
    margin-top: 10px;
  }
  
}
@media screen and (min-width: 980px) {
  #kv .kv-ttl {
    margin-left: 0;
  }
}
.nav-target, footer {
  position: relative;
}
.nav-target:before, footer:before {
  content: "";
  position: absolute;
  z-index: 5;
  top: 0;
  left: calc(50% + 428px);
  background: url("../img/shared/line.png") repeat-y top center;
  width: 22px;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  .nav-target:before, footer:before {
    left: calc(50% + 200px);
  }
}
.bg-deco {
  position: relative;
}
.bg-deco:after {
  content: '';
  height: 20px;
  clip-path: polygon(50% 0%, 100% 0, 50% 100%, 0 0);
  position: absolute;
  left: 0;
  right: 0;
  bottom: -19px;
  z-index: 1;
}
@media only screen and (min-width: 768px) {
  .bg-deco:after {
    height: 70px;
    bottom: -69px;
  }
}
.bg_blue {
  background: #202a67;
  color: #fff;
}
.bg_blue.bg-deco:after {
  background: #202a67;
}
.bg_yellow {
  background: #F8D042;
  color: #231815;
}
.bg_yellow.bg-deco:after {
  background: #F8D042;
}
.bg_yellow2 {
  background: #947F28;
  color: #fff;
}
.bg_yellow2.bg-deco:after {
  background: #947F28;
}
.bg_skin {
  background: #EAE4D1;
}
.bg_skin.bg-deco:after {
  background: #EAE4D1;
}
.bg_blue2 {
  background: #EAEFF9;
}
.bg_blue2.bg-deco:after {
  background: #EAEFF9;
}
.ttl {
  font-size: 40px;
  font-weight: 900;
  line-height: 60px;
  letter-spacing: 0.5px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .ttl {
    font-size: 23px;
    line-height: 35px;
  }
}