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

css変数定義

 */
/*@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.3rem;
  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.6rem;
  }
}

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
   ========================================================================== */
/*@import "libs/slick";
@import "libs/slick-theme";*/
/* ==========================================================================
   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;
  background-color: #fff;
  top: 0;
  left: 0;
  width: 100%;
}

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

@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: 0;
  top: 0;
  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: #333;
  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;
}

.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 only screen and (min-width: 0px) and (max-width: 768px) {
  .header__trigger.is-active {
    background: none;
  }
}

@media print, screen and (min-width: 769px) {
  .header__trigger {
    display: none;
  }
}

@media print, screen and (min-width: 769px) {
  .header-container {
    height: 12rem;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center;
  }
}

.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 {
    width: 56vw;
    height: 5rem;
    padding-left: 2rem;
  }
  .header__ci img,
  .header-menu__ci img {
    width: 56vw;
  }
}

@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;
  }
}

@media print, screen and (min-width: 769px) {
  .header-menu__ci {
    display: none;
  }
}

/**
  ドロワーコンテナ（SP時メニューのボディ）
 */
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .header-menu {
    display: none;
    position: fixed;
    z-index: 108;
    height: 100%;
    background: #EDF4E5;
    top: 0;
    left: 0;
    width: 100vw;
  }
  .header-menu.is-beforeEnter {
    display: block;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
  .header-menu.is-active {
    display: block;
    transition: 0.5s opacity;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  }
  .header-menu.is-fadeOut {
    display: block;
    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 {
  background-color: #EDF4E5;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .header-gnav {
    margin: 2rem 7vw 0;
  }
}

@media print, screen and (min-width: 769px) {
  .header-gnav {
    height: 6.5rem;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center;
  }
}

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

.header-gnav__item > a, .header-gnav__item > span {
  display: block;
  padding: 2.4rem 0;
  font-size: 1.8rem;
  text-align: center;
  letter-spacing: .15em;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .header-gnav__item {
    border-bottom: 1px solid #969696;
  }
  .header-gnav__item:last-child {
    border: none;
  }
}

@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-gnav__item.is-current > a, .header-gnav__item.is-current > span {
    background-color: #007A59;
    color: #fff;
  }
}

/**
  スクロール時スリムヘッダ設定
 */
.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;
}

@media print, screen and (min-width: 769px) {
  .header {
    transition: .3s top;
  }
  .header.is-slim .header-container {
    height: 7rem;
  }
  .header.is-slim .header__ci {
    width: 30rem;
  }
  .header.is-slim .header__ci img {
    width: 30rem;
  }
  .header.is-slim .header-gnav {
    height: 5rem;
  }
  .header.is-slim .header-gnav__item > a {
    height: 5rem;
    font-size: 1.6rem;
  }
  .header.is-scrollup {
    top: 0 !important;
  }
  .header.is-fixed {
    position: fixed;
    top: -7rem;
  }
}

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

  #フッタ

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

.footer__copyright {
  text-align: center;
  font-size: .8rem;
}

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

.table-wrap {
  margin-bottom: 80px;
  /*  @include mq-sp {
    overflow: auto;
  }*/
}

@media print, screen and (min-width: 769px) {
  .table-wrap {
    margin-bottom: 120px;
  }
}

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

	#アコーディオンモジュール

 */
.prg-accr-trigger {
  cursor: pointer;
}

.prg-accr-content {
  display: none;
}

.prg-sp-accr-trigger {
  cursor: pointer;
}

.prg-sp-accr-trigger .icon-arrow {
  transition-duration: .3s;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .prg-sp-accr-content {
    display: none;
  }
}

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

  #見出しモジュール

 */
/* --------------------------------------------------------------------
  # セクション見出し
 */
.heading1 {
  position: relative;
  z-index: 1;
  background-color: #007A59;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  border-radius: .6rem;
  color: #fff;
  font-weight: bold;
  font-size: 2.2rem;
  height: 4rem;
  letter-spacing: .1em;
  margin-bottom: 2rem;
}

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

.article-wrap {
  border-top: 1px solid #969696;
  border-bottom: 1px solid #969696;
  padding: 2rem 0;
  margin-bottom: 3rem;
}

@media print, screen and (min-width: 769px) {
  .article-wrap {
    padding: 3rem 0 8rem;
    margin-bottom: 6rem;
  }
}

.article-head {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  margin-bottom: 1.5rem;
}

@media print, screen and (min-width: 769px) {
  .article-head {
    margin-bottom: 2rem;
  }
}

.article__date {
  font-weight: bold;
  display: -ms-flexbox;
  display: flex;
  margin-right: 1rem;
  -ms-flex-align: center;
      align-items: center;
  height: 2.5rem;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .article__date {
    -ms-flex-pack: center;
        justify-content: center;
  }
}

@media print, screen and (min-width: 769px) {
  .article__date {
    text-align: left;
    margin-right: 2rem;
  }
}

.article__category > a, .article__category > span {
  height: 2rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  background-color: #969696;
  border-radius: .3rem;
  color: #fff;
  font-weight: bold;
  padding: 0 1rem;
}

@media print, screen and (min-width: 769px) {
  .article__category > a, .article__category > span {
    transition: 0.15s;
    height: 2.5rem;
    padding: 0 2rem;
  }
  .article__category:hover > a {
    background-color: #007A59;
  }
}

.article__heading {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 2rem;
}

@media print, screen and (min-width: 769px) {
  .article__heading {
    font-size: 2.4rem;
    margin-bottom: 6rem;
  }
}

.article,
.wp-editor {
  /*  a:not([class]) {
    color: var(--mycol);
    display: inline;
    text-decoration: underline;
    &:hover {
      text-decoration: none;
    }
  }*/
  /**
  pタグ設定ープラグイン考慮
   */
}

.article h2, .article h3, .article h4, .article h5, .article h6,
.wp-editor h2,
.wp-editor h3,
.wp-editor h4,
.wp-editor h5,
.wp-editor h6 {
  margin-bottom: 1em;
  line-height: 1.5;
  /*font-weight: bold;*/
  font-family: "FP-こぶりなゴシック StdN W6", 'こぶりなゴシック StdN W6', "FP-KoburinaGoStdN-W6", sans-serif;
  font-style: normal;
  font-size: 1.4rem;
}

@media print, screen and (min-width: 769px) {
  .article h2, .article h3, .article h4, .article h5, .article h6,
  .wp-editor h2,
  .wp-editor h3,
  .wp-editor h4,
  .wp-editor h5,
  .wp-editor h6 {
    font-size: 1.8rem;
  }
}

.article p,
.wp-editor p {
  line-height: 2;
  font-size: 1.4rem;
  margin-bottom: 1.5em;
}

@media print, screen and (min-width: 769px) {
  .article p,
  .wp-editor p {
    font-size: 1.8rem;
  }
}

.article figcaption,
.wp-editor figcaption {
  line-height: 1.75;
}

.article .wp-block-image,
.wp-editor .wp-block-image {
  margin-top: 2em;
  margin-bottom: 2em;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .article .wp-block-image,
  .wp-editor .wp-block-image {
    /*    margin-left: -20px;
      margin-right: -20px;*/
  }
}

.article .wp-block-image figcaption,
.wp-editor .wp-block-image figcaption {
  font-size: 1.2rem;
  text-align: center;
  margin-top: 20px;
}

@media screen and (min-width: 640px) and (max-width: 768px) {
  .article .wp-block-image figcaption,
  .wp-editor .wp-block-image figcaption {
    font-size: clamp(1.2rem, 1.875vw, 1.4rem);
  }
}

@media screen and (min-width: 769px) and (max-width: 1440px) {
  .article .wp-block-image figcaption,
  .wp-editor .wp-block-image figcaption {
    font-size: 1.3rem;
    font-size: clamp(1.144rem, 0.993vw, 1.4rem);
  }
}

@media screen and (min-width: 1441px) {
  .article .wp-block-image figcaption,
  .wp-editor .wp-block-image figcaption {
    font-size: 1.495rem;
  }
}

.article-single-nav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  margin-bottom: 4rem;
}

@media print, screen and (min-width: 769px) {
  .article-single-nav {
    margin-bottom: 8rem;
  }
}

.article-single__prev,
.article-single__next {
  margin: 0 1rem;
}

.article-single__prev > a,
.article-single__prev > span,
.article-single__next > a,
.article-single__next > span {
  width: 3rem;
  height: 3.5rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}

.article-single__prev img,
.article-single__next img {
  height: 80%;
}

@media print, screen and (min-width: 769px) {
  .article-single__prev,
  .article-single__next {
    margin: 0 3rem;
    transition: 0.15s opacity;
  }
  .article-single__prev:hover,
  .article-single__next:hover {
    opacity: 0.75;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=75)";
  }
  .article-single__prev > a,
  .article-single__prev > span,
  .article-single__next > a,
  .article-single__next > span {
    width: 4.5rem;
    height: 4.5rem;
  }
}

.article-single__index {
  width: 10rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  /*font-weight: bold;*/
  font-family: "FP-こぶりなゴシック StdN W6", 'こぶりなゴシック StdN W6', "FP-KoburinaGoStdN-W6", sans-serif;
  font-style: normal;
  height: 3.5rem;
  color: #007A59;
  font-size: 1.8rem;
  letter-spacing: .15em;
}

.article-single__index a {
  color: #007A59;
}

@media print, screen and (min-width: 769px) {
  .article-single__index {
    height: 4.5rem;
    width: 20rem;
    font-size: 2rem;
    transition: 0.15s opacity;
  }
  .article-single__index:hover {
    opacity: 0.75;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=75)";
  }
}

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

  #ボタンモジュール
  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;
  /*font-weight: bold;*/
  font-family: "FP-こぶりなゴシック StdN W6", 'こぶりなゴシック StdN W6', "FP-KoburinaGoStdN-W6", sans-serif;
  font-style: normal;
  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);
  }
}

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

.top-container {
  width: 60%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-direction: column;
      flex-direction: column;
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .top-container {
    margin-bottom: 7vw;
  }
}

@media print, screen and (min-width: 769px) {
  .top-container {
    max-width: 1400px;
  }
}

.top__face {
  position: relative;
  width: 22vw;
  margin-bottom: 10vw;
  z-index: 3;
}

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

.top__face-cs {
  position: absolute;
  top: 17px;
  right: -90px;
}

.top__face-cs img {
  width: 90px;
}

.top__face-cs.is-intro {
  display: none;
}

@media print, screen and (min-width: 769px) {
  .top__face-cs {
    right: -100%;
    top: 50px;
  }
  .top__face-cs img {
    width: 200px;
  }
}

.top-nav {
  display: -ms-flexbox;
  display: flex;
}

@media print, screen and (min-width: 769px) {
  .top-nav {
    -ms-flex-pack: justify;
        justify-content: space-between;
  }
}

.top-nav__item {
  position: relative;
  width: 22vw;
  display: block;
  text-align: center;
  transition: .8s;
}

.top-nav__item img {
  display: inline-block;
}

@media print, screen and (min-width: 769px) {
  .top-nav__item {
    width: 22%;
  }
  .top-nav__item > a, .top-nav__item > span {
    cursor: url(/assets/img/hand.png), pointer;
  }
  .top-nav__item img {
    transition-duration: 0.15s;
  }
  .top-nav__item:hover img {
    transform: scale3d(1.1, 1.1, 1);
  }
}

.top-nav__item:nth-child(1).is-intro {
  transform: scale3d(0, 0, 1) translate3d(100px, -200px, 0);
}

.top-nav__item:nth-child(2).is-intro {
  transform: scale3d(0, 0, 1) translate3d(0, -200px, 0);
}

.top-nav__item:nth-child(3).is-intro {
  transform: scale3d(0, 0, 1) translate3d(0, -200px, 0);
}

.top-nav__item:nth-child(4).is-intro {
  transform: scale3d(0, 0, 1) translate3d(-100px, -200px, 0);
}

.top-nav__item.--duonghai img {
  width: 60%;
}

.top-nav__item.--gallery img {
  width: 70%;
}

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

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

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

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

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

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

.txt-intro {
  font-size: 1.5rem;
  /*font-weight: bold;*/
  font-family: "FP-こぶりなゴシック StdN W6", 'こぶりなゴシック StdN W6', "FP-KoburinaGoStdN-W6", sans-serif;
  font-style: normal;
  line-height: 2;
}

@media screen and (min-width: 640px) and (max-width: 768px) {
  .txt-intro {
    font-size: clamp(1.5rem, 2.344vw, 1.8rem);
  }
}

@media screen and (min-width: 769px) and (max-width: 1440px) {
  .txt-intro {
    font-size: 1.8rem;
    font-size: clamp(1.584rem, 1.375vw, 2rem);
  }
}

@media screen and (min-width: 1441px) {
  .txt-intro {
    font-size: 2.07rem;
  }
}

@media print, screen and (min-width: 769px) {
  .txt-intro {
    text-align: center;
  }
}

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

.font-bold {
  /*font-weight: bold;*/
  font-family: "FP-こぶりなゴシック StdN W6", 'こぶりなゴシック StdN W6', "FP-KoburinaGoStdN-W6", sans-serif;
  font-style: normal;
}

.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 {
    background-color: #007A59;
    color: #fff;
  }
  /**
    news list
   */
  .news-list > li .news-list__date,
  .news-list > li .news-list__text,
  .news-list > li .news-list__category span {
    transition-duration: .3s;
  }
  .news-list > li:hover .news-list__date,
  .news-list > li:hover .news-list__text {
    opacity: 0.75;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=75)";
  }
  .news-list > li:hover .news-list__category span {
    background-color: #007A59;
  }
}
