@charset "UTF-8";
/*----------------------------------------------------
　レスポンシブ設定768以下
----------------------------------------------------*/
@media screen and (max-width: 768px) {
  /*--画像のサイズを自動調整--*/
  img {
    max-width: 100%;
    height: auto;
  }
  /* body 
----------------------------------------------*/
  body {
    text-align: center;
    *font-size: small;
    *font: x-small;
    min-height: 100%;
    font-size: 13px;
  }
  .contents {
    margin-right: auto;
    margin-left: auto;
    text-align: left;
    width: 92%;
  }
  /* ----------------------------------------------
非表示
----------------------------------------------*/
  #pankuzu {
    display: none;
  }
  /*----------------------------------------------------
　サイト共通設定
----------------------------------------------------*/
  .no-sp {
    display: none !important;
  }
  .no-pc {
    display: block !important;
  }
  .line {
    width: 100%;
  }
  html {
    height: 100%;
    text-align: center;
  }
  /*========= ナビゲーションのためのCSS ===============*/
  nav {
    margin-top: 0px;
  }
  #g-nav {
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position: fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
    top: -120%;
    left: 0;
    width: 100%;
    height: 100vh; /*ナビの高さ*/
    background: #E0DEDA;
    /*動き*/
    transition: all 0.6s;
  }
  /*アクティブクラスがついたら位置を0に*/
  #g-nav.panelactive {
    top: 0;
  }
  /*ナビゲーションの縦スクロール*/
  #g-nav.panelactive #g-nav-list {
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh; /*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  /*ナビゲーション*/
  #g-nav > ul {
    /*ナビゲーション天地中央揃え*/
        position: absolute;
        z-index: 999;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: block;
        width: 70%;
  }
  /*リストのレイアウト設定*/
  #g-nav li {
    list-style: none;
    text-align: center;
  }
  #g-nav > ul > li {
    position: relative;
    border-bottom: none;
  }
  #g-nav > ul > li::after {
    content: '';
    display: block;
    width: 40px;
    height: 0;
    margin: 0 auto;
    border-top: 1px solid #c4c1bc;
  }
  #g-nav > ul > li:last-of-type::after {
    display: none;
  }
  #g-nav li a,
  #g-nav li .nav_label {
    text-decoration: none;
    padding-top: 12px;
    padding-right: 2px;
    padding-left: 2px;
    padding-bottom: 12px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 18px;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
    color: #525050;
    border-bottom: none;
  }
  #g-nav li .nav_label {
    cursor: default;
  }
  #g-nav li a::after {
    display: none;
  }
  /* 2階層メニュー：1列表示・小さめ文字 */
  #g-nav .sub-menu {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0 0 6px;
    background: none;
    box-shadow: none;
    border-radius: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    position: static;
    transform: none;
    min-width: 0;
  }
  #g-nav .sub-menu li {
    display: block;
    width: 100%;
    border-bottom: none;
  }
  #g-nav .sub-menu li a {
    font-size: 16px;
    letter-spacing: 0.08em;
    color: #726c66;
    margin-bottom: 0;
    padding-top: 8px;
    padding-bottom: 8px;
    border-bottom: none;
  }
  #g-nav .sub-menu li a::after {
    display: none;
  }
  #sp_menu_bot {
    margin-top: 20px;
  }
  #sp_menu_bot a {
    color: #FFFFFF;
    font-size: 100%;
    background-color: #A6A4A7;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 15px;
    width: 100%;
    display: block;
    text-align: center;
    margin-bottom: 10px;
    margin-top: 10px;
  }
  /*========= ボタンのためのCSS ===============*/
  .openbtn {
    position: fixed;
    z-index: 9999; /*ボタンを最前面に*/
    top: 5px;
    right: 10px;
    cursor: pointer;
    width: 50px;
    height: 50px;
  }
  /*×に変化*/
  .openbtn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 5px;
    height: 2px;
    border-radius: 2px;
    background-color: #645863;
    width: 70%;
  }
  .openbtn span:nth-of-type(1) {
    top: 15px;
  }
  .openbtn span:nth-of-type(2) {
    top: 23px;
    width: 50%;
  }
  .openbtn span:nth-of-type(3) {
    top: 31px;
    width: 30%;
  }
  .openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
  }
  .openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
  }
  /* テキスト
----------------------------------------------*/
  h2 {
    font-size: 50px;
    margin-bottom: 20px;
    line-height: 1.2em;
    text-align: center;
    font-family: 'Jost', sans-serif;
    letter-spacing: 0.1em;
	  opacity: 0.6;
  }
  h3 {
    font-size: 26px;
    text-align: center;
	  opacity: 0.8;
  }
  h4 {
	font-size: 30px;
	color: #FFFFFF;
	letter-spacing: 0.1em;
	line-height: 1.2em;
	margin-bottom: 15px;
	text-align: center;
  }
  h5 {
	font-size: 16px;
	color: #FFFFFF;
	background-color: #cb8e7f;
	display: block;
	padding-top: 8px;
	padding-bottom: 8px;
	padding-left: 10px;
	font-weight: 500;
	margin-bottom: 5px;
	text-align: center;
  }
  h6 {
	color: #FFFFFF;
	font-size: 24px;
	line-height: 1.6em;
	margin-bottom: 20px;
	letter-spacing: 0em;
	text-align: center;
  }
  .font_s {
    font-size: 80%;
  }
  .font_red {
    color: #FF0004;
  }
  a {
    text-decoration: none;
  }
  a:hover {}
  /*==矢印の設定*/
  .link_bot a {
    color: #FFFFFF;
    padding-left: 10px;
    padding-right: 10px;
    margin-left: 15px;
    padding-top: 3px;
    padding-bottom: 5px;
    transition: 0.3s;
  }
  .link_bot a:hover {
    opacity: 0.7;
    z-index: auto;
  }
  hr {
    border-bottom: 1px solid #C8C8C8;
    margin-bottom: 120px;
    border-top-width: 0;
    width: 100%;
  }
  /* 配置
----------------------------------------------*/
  main {
    font-size: 14px;
    margin-right: auto;
    margin-left: auto;
    display: block;
  }
  .contents {
    width: 80%;
    margin-right: auto;
    margin-left: auto;
    display: block;
  }
  /* レイアウト
----------------------------------------------*/
  .col_2, .col_2_27, .col_2_72, .col_2_37, .col_2_73, .col_2_46, .col_2_64, .col_3, .col_4, .col_6 {
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    font-size: 15px;
    line-height: 2em;
  }
  .col_2 > div {
    width: 47%;
    margin-bottom: 2em;
  }
  /*----------------------------------------------------
テーブル
----------------------------------------------------*/
  table {
	font-size: 14px;
	width: 100%;
  }
  table th {
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  table tr td {
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
  }
  /*----------------------------------------------------
　ヘッダー
----------------------------------------------------*/
  header {
    padding-top: 15px;
    padding-bottom: 15px;
  }
#header_top{
    display: flex;
    justify-content: flex-start;
}
  #logo {
    width: 80%;
    z-index: 999;
  }
  .head_bot a {
    display: none;
  }
  /*----------------------------------------------------
　トライアルボタン
----------------------------------------------------*/
  #trial {
    display: none;
  }
  /*----------------------------------------------------
　ページトップ
----------------------------------------------------*/
  /*リンクの形状*/
  #page-top {
    display: none;
  }
  /*---------------------------------------------
フッター
----------------------------------------------*/
  footer {
    padding-top: 35px;
    color: #FFF;
    padding-bottom: 320px;
    font-weight: 330;
    font-size: 90%;
  }
  footer .contents {
    display: inherit;
    position: relative;
  }
  footer #footer_logo_mark {
    width: 20%;
    margin-right: auto;
    text-align: center;
    margin-left: auto;
    margin-bottom: 20px;
  }
  footer #footer_info {
    text-align: center;
    font-size: 14px;
    margin-bottom: 25px;
  }
    footer #footer_info ul {
    display: inherit;
    border-left: none;
    line-height: 2em;
}
footer #footer_info ul li a{
    display: inline;
    border-left: 1px solid #FFFFFF;
}
    
  footer #footer_info img {
    width: 80%;
    margin-top: 5px;
    margin-bottom: 10px;
  }
  #footer_link .footer_basi {
    margin-top: 24px;
  }
  #footer_link .footer_basi img {
    width: 100px;
    margin: 0;
  }
  footer #footer_add {
    font-size: 100%;
    line-height: 2em;
  }
  #footer_link {
    font-size: 100%;
    text-align: center;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-top: 0px;
    margin-bottom: 4em;
    display: block;
  }
  #footer_link ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  #footer_link ul li a {
    color: #FFFFFF;
    vertical-align: middle;
    transition: 0.3s;
    font-size: 13px;
    line-height: 2em;
    border-style: none;
  }
  #footer_link ul li a:hover {
    opacity: 0.5;
  }
  #footer_link ul:nth-child(1) li:nth-child(1) a,  #footer_link ul:nth-child(1) li:nth-child(3) a  {
    width: 60%;
    text-align: center;
    margin-bottom: 20px;
  }
  #footer_link ul:nth-child(1) li:nth-child(2) a {
    width: 40%;
    text-align: center;
    margin-bottom: 20px;
    border-left-style: none;
  }
  #footer_link ul li img {
    width: 30px;
  }
  /*---------------------------------------------
スマホフッター
----------------------------------------------*/
  /*メニューをページ下部に固定*/
  #sp-fixed-menu {
    position: fixed;
    width: 100%;
    bottom: 0px;
    font-size: 0;
    opacity: 0.9;
    z-index: 99;
  }
  /*メニューを横並びにする*/
  #sp-fixed-menu ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    flex-wrap: wrap;
    border-top: 1px solid #FFFFFF;
  }
  #sp-fixed-menu li {
    justify-content: center;
    align-items: center;
    width: 50%;
    padding: 0;
    margin: 0;
    font-size: 14px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #FFFFFF;
  }
  /*ボタンを調整*/
  #sp-fixed-menu li a {
    color: #fff;
    text-align: center;
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #D0A48A;
  }
    
	
	
/*---------------------------------------------
中フォーマット
----------------------------------------------*/
#mv{
    background-size: contain;
}
    
    
}