@charset "UTF-8";
/*
  フォントサイズのclamp()
 */
/* ==========================================================================
   Base
   リセットcssとhtml要素の定義
   ========================================================================== */
/**

css変数定義

 */
/*@import url('https://fonts.googleapis.com/css2?family=Fira+Sans+Condensed&family=Noto+Sans+JP:wght@400;500;700&display=swap');*/
/*@font-face {
  !*フォントの名前*!
  font-family: 'mamelon';
  font-display: swap;
  !*フォントファイルへのパス（複数指定の場合、上から順に読み込まれる）*!
  src: url(../fonts/mameh_woff/mamelon5.woff2) format('woff2'), url(../fonts/mameh_woff/mamelon5.eot) format('eot');
}*/
/*
@mixin font-mamelon {
  font-family: "mamelon", sans-serif;
}*/
/*
@mixin font-kinuta-min {
  font-family: kinuta-mincho-stdn, sans-serif;
  font-weight: 400;
  font-style: normal;
}

*/
*, *: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;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input, button, textarea, select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *, *:before, *:after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

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

   preset.scss
   プリミティブ要素の設定

 */
*, *:before, *:after {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

@media only screen and (max-width: 340px) {
  html {
    font-size: 2.85714vw;
  }
}

@media screen and (min-width: 769px) and (max-width: 1240px) {
  html {
    font-size: 0.80645vw;
  }
}

body {
  font-size: 1.2rem;
  color: #000;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "palt";
  letter-spacing: .05em;
  overscroll-behavior: none;
  font-family: 'Noto Sans JP', sans-serif;
}

@media print, screen and (min-width: 769px) {
  body {
    font-size: 1.4rem;
  }
}

body.is-fixed {
  position: fixed;
  height: 100%;
}

@media all and (-ms-high-contrast: none) {
  body {
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  }
}

body.is-fixed {
  /*position: fixed;
    width: 100%;
    height: 100vh;
    left: 0;*/
  overflow: hidden;
}

main {
  display: block;
}

a {
  color: #000;
  text-decoration: none;
  outline: none;
}

a:active, a:hover, a.touchstart {
  text-decoration: none;
}

@media print, screen and (min-width: 769px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

p, h1, h2, h3, h4, h5, h6, li, dt, dd, th, td {
  line-height: 1;
  font-weight: normal;
  font-feature-settings: "palt";
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style-type: none;
}

img {
  vertical-align: bottom;
}

/* 画像のぼやけをなくす（chrome opera） */
@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: 0.001dpcm) {
  img {
    image-rendering: -webkit-optimize-contrast;
  }
}

sup {
  font-size: .4em;
  vertical-align: top;
}

hr {
  height: 0;
  margin: 0;
  border: none;
  border-top: 1px solid #ddd;
}

/* reset form elements */
input, button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  color: #000;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

.svg-assets {
  display: none;
}

/* ==========================================================================
    libs
   ========================================================================== */
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-slide {
  outline: none;
}

/* Slider */
/* Icons */
@font-face {
  font-family: "slick";
  src: url("fonts/slick.eot");
  src: url("fonts/slick.eot?#iefix") format("embedded-opentype"), url("fonts/slick.woff") format("woff"), url("fonts/slick.ttf") format("truetype"), url("fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}

.slick-controll {
  position: relative;
}

@media print, screen and (min-width: 769px) {
  .slick-controll {
    width: 40%;
    margin: 0 0 0 auto;
  }
}

/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  right: 0;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  z-index: 11;
  width: 15px;
  height: 30px;
  top: calc(50% - 10px);
  padding: 0;
  border: none;
  outline: none;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=25)";
}

.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=75)";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media print, screen and (min-width: 769px) {
  .slick-prev:hover,
  .slick-next:hover {
    opacity: .8;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  }
}

.slick-prev {
  background: url(/common/img/ic_slide_prev.svg) no-repeat center center/contain;
  left: 10px;
}

.slick-next {
  background: url(/common/img/ic_slide_next.svg) no-repeat center center/contain;
  right: 10px;
}

/* Dots */
.slick-dots {
  position: relative;
  z-index: 10;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  height: 22px;
  width: 22px;
  margin: 0;
  padding: 0;
  cursor: pointer;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .slick-dots li {
    margin: 0 3px;
  }
}

.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  outline: none;
  line-height: 0;
  font-size: 0;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}

.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.slick-dots li button:before {
  position: absolute;
  display: block;
  top: 3px;
  left: 3px;
  content: "";
  width: 8px;
  height: 8px;
  background: #e2e2e2;
  border-radius: 50%;
  transition-duration: .3s;
}

.slick-dots li.slick-active button:before {
  background: #007A59;
  border: none;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .slick-dots {
    margin: 0 !important;
    width: auto;
    margin-left: -20vw;
  }
}

/* ==========================================================================
   Layout
   ========================================================================== */
/* --------------------------------------------------------------------
  #基本幅レイアウト用wrapper
 */
.l-width-std {
  margin-left: 7vw;
  margin-right: 7vw;
}

@media only screen and (max-width: 340px) {
  .l-width-std {
    margin-left: 3.5vw;
    margin-right: 3.5vw;
  }
}

@media print, screen and (min-width: 769px) {
  .l-width-std {
    margin-left: auto;
    margin-right: auto;
    max-width: 1400px;
    padding-left: 8.5vw;
    padding-right: 8.5vw;
  }
}

@media screen and (min-width: 1400px) {
  .l-width-std {
    padding-left: 12rem;
    padding-right: 12rem;
  }
}

/* --------------------------------------------------------------------
  #ページ全体のwrapper
 */
.l-page-wrapper {
  position: relative;
  overflow-x: hidden;
}

.l-page-wrapper img {
  width: 100%;
  height: auto;
}

/* --------------------------------------------------------------------
  #メインエリアwrapper
 */
.l-main {
  position: relative;
  overflow: hidden;
}

/* --------------------------------------------------------------------
  #セカンドユーティリティページレイアウト
 */
/*.l-second {
  padding-top: 100px;
  @include mq-pc {
    padding-top: 140px;
    padding-bottom: 140px;
  }
}*/
/* --------------------------------------------------------------------
  #汎用セクションフォーマット
 */
.l-section {
  position: relative;
  margin-bottom: 6rem;
}

@media print, screen and (min-width: 769px) {
  .l-section {
    margin-bottom: 10rem;
  }
}

/* -------------------------------------------------------------------------
	サイズ
*/
.l-w10 {
  width: 10px !important;
}

.l-w20 {
  width: 20px !important;
}

.l-w30 {
  width: 30px !important;
}

.l-w40 {
  width: 40px !important;
}

.l-w50 {
  width: 50px !important;
}

.l-w60 {
  width: 60px !important;
}

.l-w70 {
  width: 70px !important;
}

.l-w80 {
  width: 80px !important;
}

.l-w90 {
  width: 90px !important;
}

.l-w100 {
  width: 100px !important;
}

.l-w120 {
  width: 120px !important;
}

.l-w140 {
  width: 140px !important;
}

.l-w160 {
  width: 160px !important;
}

.l-w180 {
  width: 180px !important;
}

.l-w200 {
  width: 200px !important;
}

.l-w220 {
  width: 220px !important;
}

.l-w240 {
  width: 240px !important;
}

.l-w260 {
  width: 260px !important;
}

.l-w280 {
  width: 280px !important;
}

.l-w300 {
  width: 300px !important;
}

.l-w320 {
  width: 320px !important;
}

.l-w340 {
  width: 340px !important;
}

.l-w360 {
  width: 360px !important;
}

.l-w380 {
  width: 380px !important;
}

.l-w400 {
  width: 400px !important;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .l-sp-w-auto {
    width: auto !important;
  }
  .l-sp-w10 {
    width: 10px !important;
  }
  .l-sp-w20 {
    width: 20px !important;
  }
  .l-sp-w30 {
    width: 30px !important;
  }
  .l-sp-w40 {
    width: 40px !important;
  }
  .l-sp-w50 {
    width: 50px !important;
  }
  .l-sp-w60 {
    width: 60px !important;
  }
  .l-sp-w70 {
    width: 70px !important;
  }
  .l-sp-w80 {
    width: 80px !important;
  }
  .l-sp-w90 {
    width: 90px !important;
  }
  .l-sp-w100 {
    width: 100px !important;
  }
}

/* -------------------------------------------------------------------------
	マージン
*/
.l-mb0 {
  margin-bottom: 0px !important;
}

@media print, screen and (min-width: 769px) {
  .l-mb0 {
    margin-bottom: 0px !important;
  }
}

.l-mb5 {
  margin-bottom: 4px !important;
}

@media print, screen and (min-width: 769px) {
  .l-mb5 {
    margin-bottom: 5px !important;
  }
}

.l-mb10 {
  margin-bottom: 8px !important;
}

@media print, screen and (min-width: 769px) {
  .l-mb10 {
    margin-bottom: 10px !important;
  }
}

.l-mb15 {
  margin-bottom: 12px !important;
}

@media print, screen and (min-width: 769px) {
  .l-mb15 {
    margin-bottom: 15px !important;
  }
}

.l-mb20 {
  margin-bottom: 16px !important;
}

@media print, screen and (min-width: 769px) {
  .l-mb20 {
    margin-bottom: 20px !important;
  }
}

.l-mb25 {
  margin-bottom: 20px !important;
}

@media print, screen and (min-width: 769px) {
  .l-mb25 {
    margin-bottom: 25px !important;
  }
}

.l-mb30 {
  margin-bottom: 24px !important;
}

@media print, screen and (min-width: 769px) {
  .l-mb30 {
    margin-bottom: 30px !important;
  }
}

.l-mb35 {
  margin-bottom: 28px !important;
}

@media print, screen and (min-width: 769px) {
  .l-mb35 {
    margin-bottom: 35px !important;
  }
}

.l-mb40 {
  margin-bottom: 32px !important;
}

@media print, screen and (min-width: 769px) {
  .l-mb40 {
    margin-bottom: 40px !important;
  }
}

.l-mb45 {
  margin-bottom: 36px !important;
}

@media print, screen and (min-width: 769px) {
  .l-mb45 {
    margin-bottom: 45px !important;
  }
}

.l-mb50 {
  margin-bottom: 40px !important;
}

@media print, screen and (min-width: 769px) {
  .l-mb50 {
    margin-bottom: 50px !important;
  }
}

.l-mb55 {
  margin-bottom: 44px !important;
}

@media print, screen and (min-width: 769px) {
  .l-mb55 {
    margin-bottom: 55px !important;
  }
}

.l-mb60 {
  margin-bottom: 48px !important;
}

@media print, screen and (min-width: 769px) {
  .l-mb60 {
    margin-bottom: 60px !important;
  }
}

.l-mb65 {
  margin-bottom: 52px !important;
}

@media print, screen and (min-width: 769px) {
  .l-mb65 {
    margin-bottom: 65px !important;
  }
}

.l-mb70 {
  margin-bottom: 56px !important;
}

@media print, screen and (min-width: 769px) {
  .l-mb70 {
    margin-bottom: 70px !important;
  }
}

.l-mb75 {
  margin-bottom: 60px !important;
}

@media print, screen and (min-width: 769px) {
  .l-mb75 {
    margin-bottom: 75px !important;
  }
}

.l-mb80 {
  margin-bottom: 64px !important;
}

@media print, screen and (min-width: 769px) {
  .l-mb80 {
    margin-bottom: 80px !important;
  }
}

.l-mb85 {
  margin-bottom: 68px !important;
}

@media print, screen and (min-width: 769px) {
  .l-mb85 {
    margin-bottom: 85px !important;
  }
}

.l-mb90 {
  margin-bottom: 72px !important;
}

@media print, screen and (min-width: 769px) {
  .l-mb90 {
    margin-bottom: 90px !important;
  }
}

.l-mb95 {
  margin-bottom: 76px !important;
}

@media print, screen and (min-width: 769px) {
  .l-mb95 {
    margin-bottom: 95px !important;
  }
}

.l-mb100 {
  margin-bottom: 80px !important;
}

@media print, screen and (min-width: 769px) {
  .l-mb100 {
    margin-bottom: 100px !important;
  }
}

.l-mt0 {
  margin-top: 0px !important;
}

@media print, screen and (min-width: 769px) {
  .l-mt0 {
    margin-top: 0px !important;
  }
}

.l-mt5 {
  margin-top: 4px !important;
}

@media print, screen and (min-width: 769px) {
  .l-mt5 {
    margin-top: 5px !important;
  }
}

.l-mt10 {
  margin-top: 8px !important;
}

@media print, screen and (min-width: 769px) {
  .l-mt10 {
    margin-top: 10px !important;
  }
}

.l-mt15 {
  margin-top: 12px !important;
}

@media print, screen and (min-width: 769px) {
  .l-mt15 {
    margin-top: 15px !important;
  }
}

.l-mt20 {
  margin-top: 16px !important;
}

@media print, screen and (min-width: 769px) {
  .l-mt20 {
    margin-top: 20px !important;
  }
}

.l-mt25 {
  margin-top: 20px !important;
}

@media print, screen and (min-width: 769px) {
  .l-mt25 {
    margin-top: 25px !important;
  }
}

.l-mt30 {
  margin-top: 24px !important;
}

@media print, screen and (min-width: 769px) {
  .l-mt30 {
    margin-top: 30px !important;
  }
}

.l-mt35 {
  margin-top: 28px !important;
}

@media print, screen and (min-width: 769px) {
  .l-mt35 {
    margin-top: 35px !important;
  }
}

.l-mt40 {
  margin-top: 32px !important;
}

@media print, screen and (min-width: 769px) {
  .l-mt40 {
    margin-top: 40px !important;
  }
}

.l-mt45 {
  margin-top: 36px !important;
}

@media print, screen and (min-width: 769px) {
  .l-mt45 {
    margin-top: 45px !important;
  }
}

.l-mt50 {
  margin-top: 40px !important;
}

@media print, screen and (min-width: 769px) {
  .l-mt50 {
    margin-top: 50px !important;
  }
}

.l-mt55 {
  margin-top: 44px !important;
}

@media print, screen and (min-width: 769px) {
  .l-mt55 {
    margin-top: 55px !important;
  }
}

.l-mt60 {
  margin-top: 48px !important;
}

@media print, screen and (min-width: 769px) {
  .l-mt60 {
    margin-top: 60px !important;
  }
}

.l-mt65 {
  margin-top: 52px !important;
}

@media print, screen and (min-width: 769px) {
  .l-mt65 {
    margin-top: 65px !important;
  }
}

.l-mt70 {
  margin-top: 56px !important;
}

@media print, screen and (min-width: 769px) {
  .l-mt70 {
    margin-top: 70px !important;
  }
}

.l-mt75 {
  margin-top: 60px !important;
}

@media print, screen and (min-width: 769px) {
  .l-mt75 {
    margin-top: 75px !important;
  }
}

.l-mt80 {
  margin-top: 64px !important;
}

@media print, screen and (min-width: 769px) {
  .l-mt80 {
    margin-top: 80px !important;
  }
}

.l-mt85 {
  margin-top: 68px !important;
}

@media print, screen and (min-width: 769px) {
  .l-mt85 {
    margin-top: 85px !important;
  }
}

.l-mt90 {
  margin-top: 72px !important;
}

@media print, screen and (min-width: 769px) {
  .l-mt90 {
    margin-top: 90px !important;
  }
}

.l-mt95 {
  margin-top: 76px !important;
}

@media print, screen and (min-width: 769px) {
  .l-mt95 {
    margin-top: 95px !important;
  }
}

.l-mt100 {
  margin-top: 80px !important;
}

@media print, screen and (min-width: 769px) {
  .l-mt100 {
    margin-top: 100px !important;
  }
}

.l-mr0 {
  margin-right: 0px !important;
}

@media print, screen and (min-width: 769px) {
  .l-mr0 {
    margin-right: 0px !important;
  }
}

.l-mr5 {
  margin-right: 2.5px !important;
}

@media print, screen and (min-width: 769px) {
  .l-mr5 {
    margin-right: 5px !important;
  }
}

.l-mr10 {
  margin-right: 5px !important;
}

@media print, screen and (min-width: 769px) {
  .l-mr10 {
    margin-right: 10px !important;
  }
}

.l-mr15 {
  margin-right: 7.5px !important;
}

@media print, screen and (min-width: 769px) {
  .l-mr15 {
    margin-right: 15px !important;
  }
}

.l-mr20 {
  margin-right: 10px !important;
}

@media print, screen and (min-width: 769px) {
  .l-mr20 {
    margin-right: 20px !important;
  }
}

.l-mr25 {
  margin-right: 12.5px !important;
}

@media print, screen and (min-width: 769px) {
  .l-mr25 {
    margin-right: 25px !important;
  }
}

.l-mr30 {
  margin-right: 15px !important;
}

@media print, screen and (min-width: 769px) {
  .l-mr30 {
    margin-right: 30px !important;
  }
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .l-ml0-sp {
    margin-left: 0 !important;
  }
  .l-mr0-sp {
    margin-right: 0 !important;
  }
  .l-mr5-sp {
    margin-right: 5px !important;
  }
  .l-mb0-sp {
    margin-bottom: 0 !important;
  }
  .l-mt0-sp {
    margin-top: 0 !important;
  }
  .l-mb5-sp {
    margin-bottom: 5px !important;
  }
  .l-mb10-sp {
    margin-bottom: 10px !important;
  }
  .l-mb20-sp {
    margin-bottom: 20px !important;
  }
  .l-mb30-sp {
    margin-bottom: 30px !important;
  }
  .l-mb40-sp {
    margin-bottom: 40px !important;
  }
  .l-mb50-sp {
    margin-bottom: 50px !important;
  }
}

.l-pd5 {
  padding: 5px;
}

.l-pd10 {
  padding: 10px;
}

.l-pd15 {
  padding: 15px;
}

.l-pd20 {
  padding: 20px;
}

.l-pd30 {
  padding: 30px;
}

.l-pd40 {
  padding: 40px;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .l-pd5 {
    padding: 3px;
  }
  .l-pd10 {
    padding: 5px;
  }
  .l-pd15 {
    padding: 7px;
  }
  .l-pd20 {
    padding: 10px;
  }
  .l-pd30 {
    padding: 15px;
  }
  .l-pd40 {
    padding: 20px;
  }
}

/* -------------------------------------------------------------------------
	テキスト揃え
*/
.l-alignL {
  text-align: left;
}

.l-alignR {
  text-align: right;
}

.l-alignC {
  text-align: center;
}

.l-block-alignC {
  margin-left: auto;
  margin-right: auto;
}

.l-valign-m {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .l-sp-alignL {
    text-align: left;
  }
  .l-sp-alignR {
    text-align: right;
  }
  .l-sp-alignC {
    text-align: center;
  }
}

/* ==========================================================================
   Module
   ========================================================================== */
/* ====================================================================

#コンテンツヘッダ

*/
/* --------------------------------------------------------------------
  #ヘッダ
 */
.header {
  z-index: 110;
  top: 0;
  left: 0;
  width: 100%;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .header {
    position: fixed;
  }
}

@media print, screen and (min-width: 769px) {
  .header {
    position: absolute;
    /*position: relative;*/
    /*height: 12rem;*/
  }
}

/**
  SP時の固定ヘッダ要素
 */
.header-wrap {
  position: relative;
  background: #fff;
  width: 100%;
  z-index: 110;
}

/**
  メニュートリガーボタン
 */
.header__trigger {
  position: fixed;
  z-index: 111;
  cursor: pointer;
  right: 1rem;
  top: 1rem;
  width: 60px;
  height: 50px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  font-size: 0;
}

.header__trigger .line1,
.header__trigger .line2,
.header__trigger .line3 {
  display: block;
  width: 28px;
  height: 2px;
  background-color: #fff;
  transform-origin: 50% 50%;
  transition-duration: .2s;
}

.header__trigger .line1 {
  transform: translate3d(0, -5px, 0);
}

.header__trigger .line3 {
  transform: translate3d(0, 5px, 0);
}

.header__trigger.is-active .line1,
.header__trigger.is-active .line2,
.header__trigger.is-active .line3 {
  transition-duration: .4s;
  background-color: #000;
}

.header__trigger.is-active .line1 {
  transform: translate3d(0, 2px, 0) rotate(45deg);
}

.header__trigger.is-active .line2 {
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

.header__trigger.is-active .line3 {
  transform: translate3d(0, -2px, 0) rotate(-45deg);
}

@media print, screen and (min-width: 769px) {
  .header__trigger {
    top: 5rem;
    right: 5rem;
  }
}

.header__ci,
.header-menu__ci {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .header__ci,
  .header-menu__ci {
    margin-bottom: 3rem;
  }
  .header__ci img,
  .header-menu__ci img {
    width: 44vw;
  }
}

@media print, screen and (min-width: 769px) {
  .header__ci,
  .header-menu__ci {
    width: 46.8rem;
  }
  .header__ci img,
  .header-menu__ci img {
    width: 46.8rem;
  }
}

.header-menu__ci {
  width: 14rem;
  margin-bottom: 5rem;
}

@media print, screen and (min-width: 769px) {
  .header-menu__ci {
    width: 22rem;
    margin-bottom: 6rem;
  }
}

/**
  ドロワーコンテナ（SP時メニューのボディ）
 */
.header-menu {
  display: none;
  position: fixed;
  z-index: 108;
  height: 100%;
  background: #fff;
  top: 0;
  left: 0;
  width: 100vw;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}

.header-menu.is-beforeEnter {
  display: -ms-flexbox;
  display: flex;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

.header-menu.is-enter {
  display: -ms-flexbox;
  display: flex;
  transition: 0.5s opacity;
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.header-menu.is-active {
  display: -ms-flexbox;
  display: flex;
}

.header-menu.is-leave {
  display: -ms-flexbox;
  display: flex;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  transition: 0.3s opacity;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .header-menu-inner {
    /*overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    height: 100%;*/
  }
}

.header-gnav__item {
  font-family: 'Fjalla One', sans-serif;
  font-size: 1.5rem;
}

.header-gnav__item > a, .header-gnav__item > span {
  display: block;
  padding: 1rem 0;
  margin-bottom: 1rem;
  text-align: center;
  letter-spacing: .15em;
}

.header-gnav__item:last-child {
  margin-bottom: 0;
}

@media print, screen and (min-width: 769px) {
  .header-gnav__item {
    font-size: 2rem;
  }
  .header-gnav__item > a, .header-gnav__item > span {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center;
    padding: 1.2rem 3vw;
    letter-spacing: .05em;
    height: 6.5rem;
  }
}

/**
  スクロール時スリムヘッダ設定
 */
.header .header-container {
  transition: height 0.3s;
}

.header .header__ci {
  transition: width 0.3s;
}

.header .header__ci img {
  transition: width 0.3s;
}

.header .header-gnav {
  transition: height 0.3s;
}

.header-sns {
  position: relative;
  margin-top: 4rem;
  padding-top: 3rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}

.header-sns:before {
  position: absolute;
  content: "";
  width: 2rem;
  height: 1px;
  top: 0;
  background-color: #000;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1rem;
}

.header-sns__item {
  margin: 0 1rem;
}

.header-sns__item > a {
  width: 2rem;
  height: 2rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}

@media print, screen and (min-width: 769px) {
  .header-sns__item {
    margin-bottom: .7rem;
  }
  .header-sns__item > a {
    width: 5.2rem;
    height: 5.2rem;
  }
  .header-sns__item img {
    width: 1.8rem;
    height: auto;
  }
}

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

  #フッタ

 */
.footer {
  position: relative;
  z-index: 3;
  width: 100%;
  bottom: 1rem;
  text-align: center;
  padding: 1.6rem 0;
}

.footer__copyright {
  text-align: center;
  font-size: 1rem;
  color: #fff;
}

@media print, screen and (min-width: 769px) {
  .footer__copyright {
    font-size: 1.4rem;
  }
}

/*
@import "modules/table";
@import "modules/accordion";
*/
/* ====================================================================

  #見出しモジュール

 */
/* --------------------------------------------------------------------
  # セクション見出し
 */
.heading1 {
  position: relative;
  z-index: 1;
  text-align: center;
  font-family: 'Fjalla One', sans-serif;
  color: #fff;
  font-size: 2.2rem;
  margin-bottom: 4rem;
}

@media print, screen and (min-width: 769px) {
  .heading1 {
    font-size: 3.6rem;
    margin-bottom: 7.5rem;
  }
}

.heading2 {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 2rem;
  font-family: 'Fjalla One', sans-serif;
  color: #fff;
  font-size: 1.6rem;
}

.heading2:after {
  position: relative;
  content: "";
  display: block;
  width: 2rem;
  height: 1px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1.5rem;
  background-color: rgba(255, 255, 255, 0.4);
}

@media print, screen and (min-width: 769px) {
  .heading2 {
    font-size: 2rem;
    margin-bottom: 4.5rem;
  }
}

/*@import "modules/article";*/
/* ====================================================================

  #ボタンモジュール
  style設定クラスは > .btn-inner を内包する
  ex)
  <div class="some-btn">
  <p class="btn-style-a">
    <a class="btn-inner" href="hoge">ボタン</a>
  </p>
  </div>

 */
.btn-inner {
  position: relative;
  width: 100%;
  display: block;
  cursor: pointer;
}

/* --------------------------------------------------------------------
  #ボタン A - 緑ボーダー　右矢印
 */
.btn-a .btn-inner {
  overflow: hidden;
}

.btn-a .btn-inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  border-radius: .3rem;
  height: 3.5rem;
  border: 2px solid #007A59;
  color: #007A59;
  background-color: #fff;
  font-size: 1.8rem;
  letter-spacing: .15em;
}

.btn-a .btn-inner .icon-arrow {
  position: absolute;
  right: .8rem;
  fill: none;
  top: calc(50% - .35rem);
  width: 2.4rem;
  height: .7rem;
  stroke: #007A59;
}

@media print, screen and (min-width: 769px) {
  .btn-a .btn-inner {
    height: 4.5rem;
    font-size: 2rem;
    border-radius: .6rem;
  }
  .btn-a .btn-inner .icon-arrow {
    right: 1.5rem;
    width: 3rem;
    height: .8rem;
    top: calc(50% - .4rem);
  }
}

.l-section {
  margin-bottom: 60vw;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .l-section {
    padding: 6rem 0;
  }
}

@media print, screen and (min-width: 769px) {
  .l-section {
    margin-bottom: 20vw;
  }
}

/* ==========================================================================
   project Module
   ========================================================================== */
.mv {
  width: 100%;
  height: 100vh;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}

.mv-content {
  position: relative;
  z-index: 5;
}

.mv__heading {
  width: 12rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
}

@media print, screen and (min-width: 769px) {
  .mv__heading {
    width: 22rem;
    margin-bottom: 5rem;
  }
}

.mv-nav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}

.mv-nav__item {
  margin: 0 1.2rem;
}

.mv-nav__item > a {
  color: #fff;
  font-family: 'Fjalla One', sans-serif;
  font-size: 1.3rem;
}

@media print, screen and (min-width: 769px) {
  .mv-nav__item {
    /* a:hover {
      cursor: url(../img/hand.png), pointer;
    }*/
  }
  .mv-nav__item > a {
    font-size: 1.7rem;
    transition: 0.15s opacity;
  }
  .mv-nav__item > a:hover {
    opacity: 0.75;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=75)";
  }
}

.visual {
  position: fixed;
  /*width: calc(100% - 8rem);
  height: calc(100vh - 8rem);*/
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #000;
  pointer-events: none;
}

.visual:after {
  content: "";
  display: block;
  position: absolute;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.75);
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  transition: opacity .6s;
}

.visual:before {
  content: "";
  display: block;
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  border: 1rem solid rgba(255, 255, 255, 0.95);
  transition: border .6s;
}

.visual.is-active:after {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.visual.is-active:before {
  border: 0 solid #fff;
}

@media print, screen and (min-width: 769px) {
  .visual:before {
    border: 1.2vw solid rgba(255, 255, 255, 0.95);
  }
}

.visual-slide {
  position: relative;
  width: 100%;
}

.visual-slide__item {
  position: absolute;
  visibility: hidden;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  transition-timing-function: linear;
}

.visual-slide__item img {
  display: block;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 2s, transform 10s linear;
}

.visual-slide__item.is-enter {
  visibility: visible;
  z-index: 1;
}

.visual-slide__item.is-enter img {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.visual-slide__item.is-active {
  visibility: visible;
  /*transition: transform 10s linear;*/
}

.visual-slide__item.is-active img {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  transform: scale3d(1.1, 1.1, 1);
}

.concept {
  position: relative;
  z-index: 3;
}

@media print, screen and (min-width: 769px) {
  .concept {
    width: 100%;
    height: 100vh;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center;
  }
}

.concept-content {
  color: #fff;
  letter-spacing: .1em;
}

.concept-content p {
  line-height: 2;
  text-align: justify;
  text-justify: inter-ideograph;
  word-break: break-all;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .concept-content {
    margin-left: auto;
    margin-right: auto;
    width: 70%;
  }
}

@media print, screen and (min-width: 769px) {
  .concept-content {
    width: 60rem;
  }
}

@media print, screen and (min-width: 769px) {
  .system {
    width: 100%;
    height: 100vh;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center;
  }
}

.system-container {
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .system-container {
    width: 70%;
  }
}

@media print, screen and (min-width: 769px) {
  .system-container {
    width: 80rem;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
  }
}

.system-box {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 2rem;
  color: #fff;
}

.system-box a {
  display: inline-block;
  background-color: #fff;
  color: #000;
}

@media print, screen and (min-width: 769px) {
  .system-box a:hover {
    opacity: 0.75;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=75)";
  }
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .system-box {
    margin-bottom: 5rem;
  }
}

@media print, screen and (min-width: 769px) {
  .system-box {
    padding-top: 3rem;
    width: 45%;
  }
}

.system-list > li {
  margin-bottom: .6rem;
  line-height: 1.5;
}

@media print, screen and (min-width: 769px) {
  .info {
    width: 100%;
    height: 100vh;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center;
  }
}

.info-inner {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 8rem 0 10rem;
  width: 100%;
}

.info-content {
  margin-left: auto;
  margin-right: auto;
}

.info-content .heading1 {
  color: #000;
}

@media print, screen and (min-width: 769px) {
  .info-content {
    width: 72rem;
  }
}

.info__heading {
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  padding-bottom: 1.5rem;
  margin: 0 7vw 20px;
}

@media print, screen and (min-width: 769px) {
  .info__heading {
    font-size: 1.6rem;
    margin: 50px 0;
    padding-bottom: 2rem;
  }
}

.info__map {
  margin-bottom: 1.5rem;
}

.info__map iframe {
  width: 100%;
  height: 50vw;
}

@media print, screen and (min-width: 769px) {
  .info__map {
    margin-bottom: 2rem;
  }
  .info__map iframe {
    height: 36rem;
  }
}

.info-table > dt, .info-table > dd {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.info-table > dt {
  font-weight: bold;
}

.info-table .table-sns {
  display: -ms-flexbox;
  display: flex;
}

.info-table .table-sns > a {
  display: block;
  width: 30px;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .info-table {
    margin: 0 7vw 40px;
  }
}

@media print, screen and (min-width: 769px) {
  .info-table {
    margin-bottom: 40px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .info-table > dt, .info-table > dd {
    font-size: 1.4rem;
    margin-bottom: 2rem;
  }
  .info-table > dt {
    width: 20%;
  }
  .info-table > dd {
    width: 80%;
  }
}

@media print, screen and (min-width: 769px) {
  .insta {
    height: 100vh;
  }
}

.insta-embed {
  margin-left: auto;
  margin-right: auto;
  width: 90%;
  max-width: 900px;
}

.insta-embed img {
  width: 100%;
}

.sns-list {
  position: fixed;
  height: 100vh;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  z-index: 5;
  top: 0;
  right: 0;
  transform: translate3d(100%, 0, 0);
  transition: .6s transform;
}

@media print, screen and (min-width: 769px) {
  .sns-list.is-active {
    transform: translate3d(0, 0, 0);
  }
}

.sns-list__item {
  margin-bottom: .5rem;
}

.sns-list__item > a {
  width: 4rem;
  height: 4rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  background-color: rgba(255, 255, 255, 0.95);
}

@media print, screen and (min-width: 769px) {
  .sns-list__item {
    margin-bottom: .7rem;
  }
  .sns-list__item > a {
    width: 5.2rem;
    height: 5.2rem;
    border-radius: .4rem 0 0 .4rem;
  }
  .sns-list__item img {
    width: 1.8rem;
    height: auto;
  }
}

/* ==========================================================================
   Utilities
   ========================================================================== */
/* ==========================================================================

	#テキストモジュールとユーティリティ

	36　コピー
	27　 H1相当　ページタイトル
	25　 H2相当　コピー・見出しおよびラベル
	24　 H3相当　見出しおよびラベル
	20　コピー・中見出し・ラベル
	18　本文：大・ラベル
	16　本文：中
	14　本文：小を使用しています。
	12　最小（注文など一部のみ）

 */
/* -------------------------------------------------------------------------
	本文指定
*/
.txt-ll,
.txt-l,
.txt-m,
.txt-s,
.txt-ss {
  line-height: 1.75;
  margin-bottom: 2rem;
}

.txt-ll {
  font-size: 2.2rem;
}

.txt-l {
  font-size: 1.3rem;
}

@media print, screen and (min-width: 769px) {
  .txt-l {
    font-size: 1.6rem;
  }
}

.txt-m {
  font-size: 1.2rem;
}

@media print, screen and (min-width: 769px) {
  .txt-m {
    font-size: 1.4rem;
  }
}

.txt-s {
  font-size: 1.1rem;
}

@media print, screen and (min-width: 769px) {
  .txt-s {
    font-size: 1.2rem;
  }
}

/* -------------------------------------------------------------------------
	ユーティリティmisc
*/
/*一字下げ*/
.indent-head {
  padding-left: 1.2em;
  text-indent: -1.2em;
}

.font-bold {
  font-weight: bold;
}

.font-normal {
  font-weight: normal;
}

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

   ユーティリティモジュール

 */
/* -------------------------------------------------------------------------
	画像を100%に/100%を解除
	<img class="u-fit" src="xxx.jpg" />
*/
.u-fit {
  width: 100%;
  height: auto;
}

.u-free {
  width: auto;
}

/* -------------------------------------------------------------------------
	SPのみ、PCのみで改行させる
	<br class="u-spbr" />
	<br class="u-pcbr" />
*/
.u-spbr {
  display: none;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .u-spbr {
    display: inline;
  }
}

.u-pcbr {
  display: none;
}

@media print, screen and (min-width: 769px) {
  .u-pcbr {
    display: inline;
  }
}

.u-tdbr {
  display: none;
}

@media only screen and (max-width: 768px) {
  .u-tdbr {
    display: inline;
  }
}

/* -------------------------------------------------------------------------
	フロート
*/
@media print, screen and (min-width: 769px) {
  .u-floatL {
    float: left;
  }
}

@media print, screen and (min-width: 769px) {
  .u-floatR {
    float: right;
  }
}

/* -------------------------------------------------------------------------
	position:relative
*/
.u-relative {
  position: relative;
}

/* -------------------------------------------------------------------------
	インラインテキストリンク
*/
.u-textLink:link, .u-textLink:visited {
  color: #007A59;
  background-color: #f3f4f6;
  transition-duration: 0.15s;
}

@media print, screen and (min-width: 769px) {
  .u-textLink:hover {
    color: #fff;
    background-color: #007A59;
  }
}

.u-textLink--effect {
  padding-bottom: .1em;
}

/* -------------------------------------------------------------------------
	縦書きテキスト
*/
.u-vertical-text {
  font-feature-settings: 'pkna';
  -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
  text-orientation: mixed;
  -ms-text-combine-horizontal: all;
}

/* -------------------------------------------------------------------------
	ブロック指定
*/
.u-inlineBlock {
  display: inline-block;
}

.u-block {
  display: block;
}

/* -------------------------------------------------------------------------
	リスト要素のスタイル
*/
.u-listIndent li {
  font-size: 1.6rem;
  padding-left: 1.2em;
  text-indent: -1.2em;
  line-height: 1.75em;
  margin-bottom: 1.2em;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .u-listIndent li {
    font-size: 1.1rem;
    margin-bottom: .5em;
  }
}

.u-listDisc li {
  list-style-type: disc;
  margin-bottom: 1em;
  margin-left: 1.2em;
}

/* -------------------------------------------------------------------------
	PCレイアウト時に非表示
*/
.u-sp-only {
  display: none !important;
}

.u-pc-only {
  display: block !important;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .u-sp-only {
    display: block !important;
  }
  .u-pc-only {
    display: none !important;
  }
}

.u-noWrap {
  white-space: nowrap;
}

@media print, screen and (min-width: 769px) {
  .u-pc-pdng {
    display: inline-block;
    width: 20px;
  }
}

/* ==========================================================================
   animation
   ========================================================================== */
/***
  ホバー処理（PCのみに適用）
 */
@media print, screen and (min-width: 769px) {
  /**
    button
   */
  .btn-a .btn-inner {
    transition-duration: 0.15s;
  }
  .btn-a .icon-arrow {
    transition: 0.15s transform;
  }
  .btn-a:hover .btn-inner {
    background-color: #007A59;
    color: #fff;
  }
  .btn-a:hover .icon-arrow {
    transform: translate3d(15%, 0, 0);
    stroke: #fff;
  }
  .btn-a.--downicon:hover .icon-arrow {
    transform: none;
  }
  /**
  group accordiong
   */
  .group__trigger {
    transition: 0.15s;
  }
  .group__trigger:hover {
    background-color: #007A59;
  }
  .header-gnav__item > a, .header-gnav__item > span {
    transition: 0.15s;
  }
  .header-gnav__item:hover > a, .header-gnav__item:hover > span {
    opacity: 0.75;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=75)";
  }
}
