@charset "UTF-8";
/*	com-color
サイト内で主に使用する色の変数
------------------------------------ */
/*	使用フォント一覧
------------------------------------ */
@font-face {
  font-family: "ZenKakuGothicNew-Black";
  src: url(../fonts/ZenKakuGothicNew-Black.ttf);
}
@font-face {
  font-family: "ZenKakuGothicNew-Bold";
  src: url(../fonts/ZenKakuGothicNew-Bold.ttf);
}
@font-face {
  font-family: "ZenKakuGothicNew-Medium";
  src: url(../fonts/ZenKakuGothicNew-Medium.ttf);
}
@font-face {
  font-family: "ZenKakuGothicNew-Regular";
  src: url(../fonts/ZenKakuGothicNew-Regular.ttf);
}
@font-face {
  font-family: "ZenKakuGothicNew-Light";
  src: url(../fonts/ZenKakuGothicNew-Light.ttf);
}
@font-face {
  font-family: "Noto sansCJK Black";
  src: url(../fonts/NotoSansCJKjp-Black.otf);
}
@font-face {
  font-family: "Noto sansCJK Bold";
  src: url(../fonts/NotoSansCJKjp-Bold.otf);
}
@font-face {
  font-family: "Noto sansCJK DemiLight";
  src: url(../fonts/NotoSansCJKjp-DemiLight.otf);
}
@font-face {
  font-family: "Noto sansCJK Light";
  src: url(../fonts/NotoSansCJKjp-Light.otf);
}
@font-face {
  font-family: "Noto sansCJK Medium";
  src: url(../fonts/NotoSansCJKjp-Medium.otf);
}
@font-face {
  font-family: "Noto sansCJK Regular";
  src: url(../fonts/NotoSansCJKjp-Regular.otf);
}
/*	transition,hover
ホバー時のtransition秒数を統一、ホバーアクション
------------------------------------ */
/*	media-screen
画面サイズごとのcss設定に使用
------------------------------------ */
@media screen and (min-width: 768px) {
  .sp-only {
    display: none !important;
  }
}
/*	layout
その他パーツ
------------------------------------ */
/*	com-color
サイト内で主に使用する色の変数
------------------------------------ */
/*	使用フォント一覧
------------------------------------ */
@font-face {
  font-family: "ZenKakuGothicNew-Black";
  src: url(../fonts/ZenKakuGothicNew-Black.ttf);
}
@font-face {
  font-family: "ZenKakuGothicNew-Bold";
  src: url(../fonts/ZenKakuGothicNew-Bold.ttf);
}
@font-face {
  font-family: "ZenKakuGothicNew-Medium";
  src: url(../fonts/ZenKakuGothicNew-Medium.ttf);
}
@font-face {
  font-family: "ZenKakuGothicNew-Regular";
  src: url(../fonts/ZenKakuGothicNew-Regular.ttf);
}
@font-face {
  font-family: "ZenKakuGothicNew-Light";
  src: url(../fonts/ZenKakuGothicNew-Light.ttf);
}
@font-face {
  font-family: "Noto sansCJK Black";
  src: url(../fonts/NotoSansCJKjp-Black.otf);
}
@font-face {
  font-family: "Noto sansCJK Bold";
  src: url(../fonts/NotoSansCJKjp-Bold.otf);
}
@font-face {
  font-family: "Noto sansCJK DemiLight";
  src: url(../fonts/NotoSansCJKjp-DemiLight.otf);
}
@font-face {
  font-family: "Noto sansCJK Light";
  src: url(../fonts/NotoSansCJKjp-Light.otf);
}
@font-face {
  font-family: "Noto sansCJK Medium";
  src: url(../fonts/NotoSansCJKjp-Medium.otf);
}
@font-face {
  font-family: "Noto sansCJK Regular";
  src: url(../fonts/NotoSansCJKjp-Regular.otf);
}
/*	transition,hover
ホバー時のtransition秒数を統一、ホバーアクション
------------------------------------ */
/*	media-screen
画面サイズごとのcss設定に使用
------------------------------------ */
@media screen and (min-width: 768px) {
  .sp-only {
    display: none !important;
  }
}
/*	layout
その他パーツ
------------------------------------ */
/*	font-size
スマホ時にフォントサイズを自動で変更
※13px以下は文字が読めないためPC/SP同じサイズ
------------------------------------ */
/* =========================================
  base  PC
  ページ全体に付与するcss
  header/footer/フォームなど共通箇所
========================================= */
body {
  /* fontはcom-txtに合わせる */
  width: 100%;
  min-width: 1100px;
  margin: 0 auto;
  color: #2a2e30;
  font-family: "Noto sansCJK Medium", sans-serif;
  font-size: 19px;
  font-size: 1.9rem;
  letter-spacing: 0.06em;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

/* safariの自動CSSを打ち消す */
* {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.disable-auto-tel a {
  color: inherit;
  text-decoration: none;
}

a[href^="tel:"] {
  pointer-events: none;
}

a[href^="fax:"] {
  -webkit-tap-highlight-color: transparent !important;
  pointer-events: none !important;
  -webkit-touch-callout: none !important;
  -webkit-user-select: none !important;
  text-decoration: none !important;
}

/*	parts  PC
共通パーツの設定
------------------------------------ */
a {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  a {
    transition: all 0.3s ease;
  }
  a:hover {
    opacity: 0.7;
  }
}

/* 横幅480px以内で改行したくないときにspanにクラスをつけて使う */
.br {
  display: inline-block;
}

.over {
  overflow: hidden;
}

.fle {
  display: flex;
}

.fle-between {
  justify-content: space-between;
}

.fle-around {
  justify-content: space-around;
}

.fle-center {
  justify-content: center;
}

/* =========================================
  header  PC
  ヘッダー部分（MV含む）のcss
========================================= */
/*	headline  PC
ロゴ、ヘッダーナビ、ヘッダーリンク等
------------------------------------ */
#header {
  width: 100%;
}
#header .headline {
  position: absolute;
  z-index: 99;
  width: 100%;
  top: 40px;
  left: 0;
  padding: 0 5.2vw;
}
@media screen and (max-width: 1200px) {
  #header .headline {
    padding: 0 25px;
  }
}
#header .logo {
  display: inline-block;
  transition: all 0.3s ease;
}
#header .logo:hover {
  opacity: 0.7;
}
#header .logo a,
#header .logo img {
  display: block;
}
#header .current {
  color: #099fe5 !important;
}

/*	gnav  PC
ヘッダーナビ（PC時）
------------------------------------ */
#gnav .list-item:nth-of-type(n + 2) {
  margin-left: 2.3vw;
}
#gnav .list-link {
  font-size: 21px;
  font-size: 2.1rem;
  color: #2a2e30;
  position: relative;
}
@media screen and (max-width: 767px) {
  #gnav .list-link {
    font-size: 20px;
    font-size: 2rem;
  }
}
#gnav .list-link::before {
  background: #099fe5;
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: auto;
  transform-origin: center top;
  transform: scale(0, 1);
  transition: transform 0.3s;
}
#gnav .list-link:hover::before {
  transform-origin: center top;
  transform: scale(1, 1);
}

/*	mv  PC
メインビジュアル（トップ用）
------------------------------------ */
#top-mv .mv {
  position: relative;
  background: url(/img/all/mv-deco.png) no-repeat right top/35vw;
}
#top-mv .mv-ttl {
  position: absolute;
  width: 32.1vw;
  min-width: 400px;
  top: 18vw;
  right: 11.2vw;
}
@media screen and (max-width: 1600px) {
  #top-mv .mv-ttl {
    top: 22vw;
    right: 8.2vw;
  }
}
@media screen and (max-width: 1200px) {
  #top-mv .mv-ttl {
    top: 280px;
  }
}
#top-mv .mv-img {
  width: 43.75vw;
  min-width: 500px;
  margin-top: 170px;
  margin-left: 5.2vw;
  box-shadow: 0 0 50px rgba(42, 46, 48, 0.15);
  border-radius: 5.2vw;
}
@media screen and (max-width: 767px) {
  #top-mv .mv-img {
    box-shadow: 0 0 25px rgba(42, 46, 48, 0.15);
  }
}

/*	page-top  PC
page-top リンク
------------------------------------ */
.fixed {
  position: fixed;
  right: 20px;
  bottom: 50px;
  z-index: 99;
  border-radius: 40px 40px;
}
.fixed-contact {
  font-size: 23px;
  font-size: 2.3rem;
  display: flex;
  align-items: center;
  width: 80px;
  height: 270px;
  padding-top: 70px;
  writing-mode: vertical-rl;
  color: #fff;
  background-color: #099fe5;
  border-radius: 40px 40px 8px 40px;
  border: 1px solid #fff;
  position: relative;
}
@media screen and (max-width: 767px) {
  .fixed-contact {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.fixed-contact::after {
  position: absolute;
  content: "";
}
.fixed-contact::after {
  width: 25px;
  height: 31px;
  transform: translateX(-50%);
  left: 50%;
  top: 30px;
  background: url(/img/all/fixed-ico.png) no-repeat;
  background-size: 100%;
  transition: all 0.5s ease;
}
.fixed-contact:hover::after {
  transform: translateX(-50%) scale(0.95);
}
.fixed-page {
  margin-top: 30px;
  transition: 0.3s ease;
}
.fixed-page:hover {
  transform: translate(0px, -5px);
}

/* =========================================
  footer  PC
  フッター
========================================= */
#footer .current {
  border-bottom: 1px solid #fff !important;
}
#footer .bg {
  background-color: #099fe5;
  border-radius: 160px 160px 0 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
#footer .primary {
  position: absolute;
  font-family: "ZenKakuGothicNew-Regular", sans-serif;
  font-size: clamp(96px, 15.3vw, 400px);
  line-height: 1;
  letter-spacing: 0.06em;
  white-space: nowrap;
  transform: translateX(-50%);
  left: 50%;
  bottom: 0;
  color: rgba(245, 250, 252, 0.05);
  z-index: -1;
}
@media screen and (max-width: 1350px) {
  #footer .box {
    padding-right: 110px;
  }
}
#footer .list:nth-of-type(n + 2) {
  margin-left: 60px;
}
#footer .list-item {
  font-family: "ZenKakuGothicNew-Medium", sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  #footer .list-item {
    font-size: 17px;
    font-size: 1.7rem;
  }
}
#footer .list-item:nth-of-type(n + 2) {
  margin-top: 20px;
}
#footer .list-link {
  color: #fff;
  display: inline-block;
  position: relative;
  transition: 0.3s ease;
}
#footer .list-link::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 0;
  height: 1px;
  background-color: #fff;
  transition: 0.3s ease;
}
#footer .list-link:hover::after {
  width: 100%;
}
#footer .youtube {
  display: block;
  width: 150px;
  line-height: 48px;
  text-align: center;
  margin: 75px 0 0 auto;
  border: 1px solid #fff;
  border-radius: 25px;
  color: #fff;
}
#footer .copy {
  font-family: "ZenKakuGothicNew-Medium", sans-serif;
  font-size: 13px;
  font-size: 1.3rem;
  margin-top: 150px;
  color: #fff;
}
#footer .copy-link {
  color: #fff;
}

/* =========================================
  sub  PC
  sv 共通部分
========================================= */
#top-mv .sv {
  padding: 170px 10px 0;
  background: url(/img/all/mv-deco.png) no-repeat right top/35vw;
}
#top-mv .sv-box {
  width: 100%;
  max-width: 1720px;
  height: 580px;
  min-height: 450px;
  margin: 0 auto;
  border-radius: 120px;
  box-shadow: 0 0 50px rgba(42, 46, 48, 0.15);
  position: relative;
}
#top-mv .sv-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  #top-mv .sv-box {
    box-shadow: 0 0 25px rgba(42, 46, 48, 0.15);
  }
}
@media screen and (max-width: 1740px) {
  #top-mv .sv-box {
    height: 33.3vw;
    border-radius: 6.9vw;
  }
}
#top-mv .sv-img {
  border-radius: 120px;
}
@media screen and (max-width: 1740px) {
  #top-mv .sv-img {
    border-radius: 6.9vw;
  }
}
#top-mv .sv-ttl {
  position: absolute;
  font-family: "ZenKakuGothicNew-Medium", sans-serif;
  font-size: 46px;
  font-size: 4.6rem;
  min-width: 720px;
  text-align: center;
  padding: 11px 30px;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  color: #099fe5;
  background-color: #fff;
  border-radius: 47.5px;
}
@media screen and (max-width: 767px) {
  #top-mv .sv-ttl {
    font-size: 28px;
    font-size: 2.8rem;
  }
}

/* =========================================
    sub  PC
    sv
========================================= */
#sv .sv-company {
  background: url(/img/sv/sv-company.jpg) no-repeat center/cover;
}
#sv .sv-news {
  background: url(/img/sv/sv-news.jpg) no-repeat center/cover;
}
#sv .sv-site {
  background: url(/img/sv/sv-site.jpg) no-repeat center/cover;
}
#sv .sv-privacy {
  background: url(/img/sv/sv-privacy.jpg) no-repeat center/cover;
}
#sv .sv-error {
  background: url(/img/sv/sv-error.jpg) no-repeat center/cover;
}
#sv .sv-contact {
  background: url(/img/sv/sv-contact.jpg) no-repeat center/cover;
}
#sv .sv-complete {
  background: url(/img/sv/sv-complete.jpg) no-repeat center/cover;
}

/*	breadcrumb  PC
パンくずリスト
------------------------------------ */
.breadcrumb {
  display: flex;
  align-items: center;
  margin-top: 30px;
  padding: 15px 0;
}
@media screen and (max-width: 767px) {
  .breadcrumb {
    height: 25px;
    padding: 0 2%;
  }
}
.breadcrumb .bread-inner {
  width: 100%;
  max-width: 1080px;
  padding-right: 20px;
  margin: auto;
}
.breadcrumb ul {
  display: flex;
  align-items: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.breadcrumb ul li {
  display: inline;
}
.breadcrumb ul li:nth-of-type(3) {
  display: inline;
  max-width: 70%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.breadcrumb ul li:last-child::after {
  content: none;
}
.breadcrumb li,
.breadcrumb a {
  color: #2a2e30;
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .breadcrumb li,
  .breadcrumb a {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 767px) {
  .breadcrumb li,
  .breadcrumb a {
    font-size: 12px;
  }
}
.breadcrumb li {
  color: #2a2e30;
}
.breadcrumb li::after {
  content: ">";
  display: inline-block;
  padding: 0 15px;
  color: #2a2e30;
}

/* =========================================

  layout  SP
  共通パーツのスマホ時css
========================================= */
@media screen and (max-width: 767px) {
  /* =========================================
    base  SP
  ========================================= */
  body {
    min-width: 350px;
    font-size: 16px;
    font-size: 1.6rem;
  }
  body.active {
    /* スクロール禁止 */
    overflow: hidden;
  }
  .pc-only {
    display: none !important;
  }
  .sp-only {
    display: inherit !important;
  }
  a[href^="tel:"] {
    pointer-events: all;
  }
  /*	parts  SP
  ------------------------------------ */
  .com-inner,
  .bread-inner {
    width: 100% !important;
  }
  .breadcrumb {
    display: none;
  }
  /* =========================================
  header  SP
  ========================================= */
  /*	headline  SP
  ------------------------------------ */
  #header .logo {
    width: 200px;
  }
  #header .headline {
    top: 0;
    left: 0;
    padding: 5px;
  }
  /*	mv  SP
  ------------------------------------ */
  #top-mv .mv {
    height: 125vw;
    max-height: 530px;
    min-height: 450px;
  }
  /*	fixed  SP
  ページトップへのリンク
  ------------------------------------ */
  /*	gnav  SP
  ハンバーガーメニュー、メニュー内のcss
  ------------------------------------ */
  /*	gnav-add  SP
  ------------------------------------ */
  /* --- info系 --- */
  /*	ggmap  SP
  ------------------------------------ */
  /* =========================================
  footer  SP
  ========================================= */
  /* =========================================
    sub  SP
    下層（サブビジュアル）のcss
  ========================================= */
  /*	sub headline  SP
  ------------------------------------ */
  /* =========================================
    sub  SP
    sv 共通部分
  ========================================= */
  /*	------- */
}
@media screen and (max-width: 767px) and (min-width: 385px) {
  #top-mv .mv {
    height: 120vw;
  }
}
@media screen and (max-width: 767px) and (min-width: 421px) {
  #top-mv .mv {
    height: 115vw;
  }
}
@media screen and (max-width: 767px) {
  #top-mv .mv-img {
    width: 80%;
    min-width: unset;
    margin: 0;
    position: absolute;
    top: 60px;
    transform: translateX(-50%);
    left: 50%;
  }
  #top-mv .mv-ttl {
    width: 300px;
    min-width: unset;
    top: unset;
    transform: translateX(-50%);
    left: 50%;
    bottom: 20px;
  }
  .fixed {
    display: flex;
    width: 100%;
    bottom: 0;
    right: 0;
  }
  .fixed-item01 {
    width: 100%;
  }
  .fixed-contact {
    width: 100%;
    height: 70px;
    justify-content: center;
    writing-mode: unset;
    padding-top: 0;
    padding-left: 25px;
    border: 1px solid #fff;
    border-radius: 0;
  }
  .fixed-contact::after {
    transform: translateY(-50%);
    top: 50%;
    left: calc(50% - 90px);
  }
  .fixed-contact:hover::after {
    transform: translateY(-50%);
    top: 50%;
    left: calc(50% - 90px);
  }
  .fixed-page {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    margin-top: 0;
    background-color: #ecf8fd;
  }
  .fixed-page:hover {
    transform: unset;
  }
  .sp-menu-btn-wrp {
    width: 50px;
    height: 50px;
    padding-top: 16px;
    background-color: #099fe5;
    top: 0;
    right: 0;
  }
  .sp-menu-btn-wrp .sp-menu-btn {
    width: 47%;
    height: 18px;
    margin: auto;
  }
  .sp-menu-btn-wrp .sp-menu-btn span {
    width: 100%;
    height: 2px;
    background: #fff;
  }
  .sp-menu-btn-wrp .sp-menu-btn .top {
    top: 0;
  }
  .sp-menu-btn-wrp .sp-menu-btn .middle {
    top: 0;
    bottom: 0;
  }
  .sp-menu-btn-wrp .sp-menu-btn .bottom {
    top: auto;
    bottom: 0;
  }
  .sp-menu-btn-wrp .sp-menu-btn-txt {
    display: block;
    margin: 8px auto 0;
    font-size: 11px;
    font-size: 1.1rem;
    letter-spacing: 0;
    line-height: 1;
    top: auto;
  }
  .sp-menu-btn-wrp .sp-menu-btn-txt img {
    height: 10px;
  }
  .sp-menu-btn-wrp .sp-menu-btn.active span {
    width: 28px;
  }
  .sp-menu-btn-wrp .sp-menu-btn.active .top {
    transform: translateY(9px) translateX(-3px) rotate(45deg);
  }
  .sp-menu-btn-wrp .sp-menu-btn.active .bottom {
    bottom: 10px;
    transform: translateY(3px) translateX(-3px) rotate(-45deg);
  }
  #drawer-nav.active {
    z-index: 1001;
  }
  #drawer-nav {
    padding: 15px 15px 30px;
    background: url(/img/all/mv-deco.png) no-repeat right top/35vw, #fff;
  }
  #drawer-nav .ttl {
    text-align: center;
    margin-bottom: 20px;
  }
  #drawer-nav .mail {
    margin-top: 25px;
  }
  #drawer-nav .current::after {
    display: none;
  }
  #drawer-nav .drawer-logo {
    width: 73%;
    margin-bottom: 15px;
  }
  #drawer-nav #nav {
    padding: 0;
  }
  #drawer-nav #nav .list-link {
    display: block;
    border-bottom: 1px solid #099fe5;
    padding: 6% 0;
    font-size: clamp(18px, 4.8vw, 36px);
    letter-spacing: 0.1em;
    color: #2a2e30;
    line-height: 1.22;
  }
  .drawer-info {
    display: flex;
    margin: 8% auto 0;
    flex-direction: column;
    align-items: center;
  }
  .drawer-info .pcnav-info-txt {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .drawer-info .shop-btn {
    margin-left: 0px;
    line-height: 50px;
    display: flex;
    justify-content: center;
    background-color: #ff957d;
    position: relative;
    color: #ffffff;
  }
  .ggmap {
    padding-top: 250px;
  }
  #footer .bg {
    border-radius: 50px 50px 0 0;
  }
  #footer .container {
    display: block;
    padding-bottom: 100px;
    position: relative;
  }
  #footer .logo {
    display: block;
    width: 240px;
    margin: 0 auto;
  }
  #footer .box {
    margin-top: 35px;
    padding-right: 0;
  }
  #footer .nav {
    width: 100%;
    display: block;
  }
  #footer .list {
    text-align: center;
  }
  #footer .list:nth-of-type(n + 2) {
    margin-left: auto;
    margin-top: 20px;
  }
  #footer .youtube {
    margin: 50px auto 0;
  }
  #footer .copy {
    position: absolute;
    width: 100%;
    text-align: center;
    margin-top: 0;
    transform: translateX(-50%);
    left: 50%;
    bottom: 30px;
  }
  #top-mv .sv {
    padding: 60px 10px 0;
  }
  #top-mv .sv-box {
    height: 300px;
    min-height: unset;
  }
  #top-mv .sv-ttl {
    width: 320px;
    min-width: unset;
    padding: 8px 20px;
    border-radius: 37.5px;
  }
}
/*	------- */
/* =========================================
  breakpoint
========================================= */