/* --------------------------------------- */
/*　　Office KOHANA Style CSS　　　　　　　*/
/* --------------------------------------- */

@charset "utf-8";

/**
 * ***************************************
 * ページ全体に関わるCSSの設定
 * ***************************************
 */
html *,
::before,
::after {
  box-sizing: border-box;
}
/* --------------------------------------- */
/* フォント */
html {
  font-size: 14px;
}
@media (min-width: 768px) {
  html {
    font-size: 16px;
/*    max-width: 1040px;
    margin: 0 auto;
    padding: 0 20px; */
  }
}
body {
  color: #666;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400; /* Noto Sans JPのレギュラーウェイトを指定 */
columns}
/* --------------------------------------- */
/* おもな太字タグのフォントウェイト設定 */
h1, h2, h3, h4, h5, h6, th, strong {
  font-weight: bold;
}

/* ---------------------------------------- */
/* レスポンシブイメージと画像下スペース防止 */
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;/* 画像下のスペースを消す */
}

/**
 * ***************************************
 * ヘッダー
 * ***************************************
 *
 * ---------------------------------------
 * ヘッダーコンテナ
 * ---------------------------------------
 */
.page-header {
}
.header-containe {
  border-bottom: 1px solid #d8d8d8;
}
@media (min-width: 768px) {
  .header-container {
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1040px;
  }
}

/**
 * ---------------------------------------
 * ヘッダーモジュール
 * ---------------------------------------
 */

/* --------------------------------------- */
/* ヘッダーロゴとモバイルナビボタン        */
.sitetitle {
  background-image : url(../images/cloudwalk.jpg);
  border:solid thin gray;
  border-radius: 5px 5px 5px 5px;
  display: flex;
  color: white;
  justify-content: space-between;
  align-items: center;
}

@media (min-width: 768px) {
  .sitetitle {
    display: block;
  }
}
/* --------------------------------------- */
/* ヘッダーロゴ                            */
.header-logo {
  margin: 4px 10px ;/* h1のデフォルト設定オフ */
  padding-left: 15px;
  font-size: 2.2rem;
  line-height: 3.2rem;
}
.header-logo img {
  width: 130px;
}
@media (min-width: 768px) {
  .header-logo {
    padding: 0;
  }
}
/* --------------------------------------- */
/* モバイル向けボタン                      */
.navbtn {
  display: block;
  width: 60px;
  height: 60px;
  background-image: url(../images/nav-mobile-open.svg);
  background-repeat: no-repeat;
  background-position: center center;
}
.navbtn.close {
  background-image: url(../images/nav-mobile-close.svg);
}
@media (min-width: 768px) {
  .navbtn {
    display: none;
  }
}
/* --------------------------------------- */
/* ヘッダーナビゲーション                  */
.header-nav {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style: none;
}
.header-nav.collapse {
  display: none;
}
.header-nav li a {
  display: block;
  padding: 0px 12px;
  background: #efefef;
  color: #cc0000;
  line-height: 1.8rem;
  text-decoration: none;
}
.header-nav li a:hover {
    background: #ffff99; 
}
@media (min-width: 768px) {
  /* PC向けレイアウト */
  .header-nav {
    display: flex !important;
    flex-direction: row;
    justify-content: flex-end;
  }
  .header-nav li a {
    color: #cc0000; 
    background-color: transparent; 
    display: block ; 
  }
  .header-nav li a:hover {
    background: #ffff99; 
    color: #cc0000; 
  }
}

/**
 * ***************************************
 * パンくずリスト
 * ***************************************
 *
 * ---------------------------------------
 * パンくずリストコンテナ
 * ---------------------------------------
 */
.breadcrumb {
  display: none;/* モバイルで非表示 */
}
@media (min-width: 768px) {
  /* PCだけスタイル適用 */
  .breadcrumb {
    display: block;/* display:noneの解除 */
    background: #efefef;
    border-radius: 5px 5px 5px 5px;
  }
  .bc-container {
    margin: 0 auto;
    padding: 6px 20px;
    max-width: 1040px;
  }

  /**
   * ---------------------------------------
   * パンくずリストモジュール
 * ---------------------------------------
   */
  .bc-nav {
    display: flex;
    flex-direction: row;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .bc-nav li {
    font-size: .75rem;
    color:  #747474;
  }
  .bc-nav li::after {
    padding: 0 5px;
    font-family: "Font Awesome 5 Free";
    font-weight: bold;
    content: "\f054";
  }
  .bc-nav li:last-child::after {
    content: "";
  }
  .bc-nav li a {
    color:  #747474;
  }
  .bc-nav li a:hover {
    opacity: .8;
  }
}

/**
 * ***************************************
 * ページ下部
 * ***************************************
 *
 * ---------------------------------------
 * ページ下部コンテナ
 * ---------------------------------------
 */
.page-bottom {
  background: url(../images/bottom-bg.svg);
  border-radius: 5px 5px 5px 5px;
}
.bottom-container {
  padding: 60px 4% 0 4%;
}
@media (min-width: 768px) {
  .bottom-container {
      margin: 0 auto;
      padding: 60px 20px 0 20px;
      max-width: 1040px;
  }
}

/**
 * ---------------------------------------
 * ページ下部モジュール
 * ---------------------------------------
 */
/* ------------------------ */
/* 複数のバナーを並べる     */
.banner {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}
.banner div {
  margin: 0 10px;
  text-align: center;
}
.banner a:hover {
  opacity: .8;
}
@media (min-width: 768px) {
  .banner {
    flex-direction: row;
  }
  .banner div {
    margin: 0 10px;
  }
}
/* ------------------------ */
/* ボタンを横に並べる       */
.followus {
  margin: 0 0 15px 0;
  font-family: 'Croissant One', cursive;
  font-weight: bold;
  font-size: 1.875rem;
  text-align: center;
}
/* ------------------------ */
/* SNS 表示                 */
.sns {
  display: flex;
  justify-content: center;
  margin-bottom :30px;
}
.sns div {
  margin: 0 10px;
}
.sns div a {
  display: block;
  width: 70px;
  height:70px;
  background: #73cbd6;
  border-radius: 50%;
  font-size: 30px;
  line-height: 70px;
  text-align:center;
  color: #ffffff;
}
.sns div a:hover {
  opacity: .8;
}
/* ------------------------ */
/* ページトップへ戻るボタン */
.gotop {
  text-align: center;
}
.gotop a {
  display: inline-block;
  padding: 1rem 4rem;
  background: #000000;
  border-radius: 20px 20px 0 0;
  font-size: 1.25rem;
  text-align:center;
  color: #ffffff;
  opacity: .6;
}
.gotop a:hover {
  opacity: .8;
}


/**
 * ***************************************
 * フッター
 * ***************************************
 *
 * フッターコンテナ
 */
.page-footer {
}
.footer-container {
  padding: 20px 4%;
}
@media (min-width: 768px) {
  .footer-container {
      margin: 0 auto;
      padding: 10px 20px;
      max-width: 1040px;
  }
}

/**
 * ---------------------------------------
 * フッターモジュール
 */
/* ------------------------ */
/* ロゴ */
.footer-logo {
  color: white;
  justify-content: space-between;
  margin: 4px 10px ;
  align-items: center;

}
.footer-logo img {
  width: 160px;
}
/* ------------------------ */
/* フッターのナビゲーション１ */
.footer-nav1 {
  flex-direction: column;
  margin: 4px 10px;
  padding: 0;
  list-style: none;
}
.footer-nav1.collapse {
  display: none;
}
.footer-nav1 li a {
  display: block;
  padding: 0px 12px;
  background: #efefef;
  color: #cc0000;
  line-height: 1.8rem;
  text-decoration: none;
}
.footer-nav1 li a:hover {
    background: #ffff99; 
    color: #cc0000; 
}
@media (min-width: 768px) {
/* ------------------------ */
  /* PC向けレイアウト */
  .footer-nav1 {
    display: flex !important;
    flex-direction: row;
    justify-content: flex-end;
  }
  .footer-nav1 li a {
    color: #cc0000; 
   
    background-color: transparent; 
    display: block ; 
  }
  .footer-nav1 li a:hover {
    background: #ffff99; 
    color: #cc0000; 
  }
}
/* ------------------------ */
/* フッターのナビゲーション２ */
.footer-nav2 {
  display: flex;
  justify-content: flex-end;
  margin: 0 10px 10px 10px; /* ulのデフォルト設定オフ */
  padding: 0; /* ulのデフォルト設定オフ */
  list-style: none; /* ulのデフォルト設定オフ */
}
.footer-nav2 li {
  margin: 10px 12px;
  padding: 10; 
  font-size: 1rem;
}
.footer-nav2 li a {
  color: #cc0000; 
  text-decoration: none;
}
.footer-nav2 li a:hover {
  background: #ffff99; 
}


/**
 * ***************************************
 * フッター　と　クレジット
 * ***************************************
 */
/* -------------------------------- */
/* ----- フッター ボックス表示 -----*/
.footer-box {
  position: relative;
  list-style: none;
  margin: 5px 0px 5px 0px;
  padding: 0px;
  border:solid thin gray;
  border-radius: 5px 5px 5px 5px;
  overflow:hidden;
  text-align: center;
  background-image : url(../images/sky1-1.jpg);
}
/* -------------------------------------------- */
/******** フッター グローバルナビゲーション******/
.GNav-footer     {
  position: relative;
  top: 0px; left: 160px; width: 820px; height: 24px ;
  background-image : url(../images/sky2.jpg);
  border:solid thin gray;
  border-radius: 5px 5px 5px 5px;
  margin: 0px;
  padding: 0px;
  text-align: center;
  vertical-align: middle;
  list-style: none;
}

/* -------------------------------------------- */
/******** フッター グローバルナビゲーション******/
.footer-credit {
  margin: 0 0 0 0;
  height:1.5rem;
  position:  relative; 
  text-align: right;
  list-style: none;
  vertical-align: bottom;
  font-size: 1rem;
  background-color: #b0c4de ;
  padding: 0px 20px;
  border:solid thin gray;  
  border-radius: 5px 5px 5px 5px;  
}


/**
 * ***************************************
 * メインコンテナ
 * ***************************************
 */
/* ------------------------ */
/*   メインコンテナ         */
.page-main {
}
.main-container {
  padding: 30px 2%;
}
@media (min-width: 768px) {
.main-container {
    max-width: 1040px;
    margin: 0 auto;
    padding: 30px 20px;
  }
}

/**
 * ---------------------------------------
 * サブタイトル ヘッダー ボックス表示
 */
.main-header {
  margin-bottom: 20px;
  position: relative;
  list-style: none;
  padding: 0px;
  border:solid thin gray;
  border-radius: 5px 5px 5px 5px;
  overflow:hidden;
  text-align: center;
  background-image : url(../images/sky1-1.jpg);
}
.main-header h1 {
  margin: 0 0 20px 0;/* h1のデフォルト設定オフ */
  font-size: 1.875rem;
  line-height: 1.5;
}

/* ------------------------ */
/*    タグ                  */
.main-tag {
  margin-bottom: 5px;
  font-size: 0.75rem;
  line-height: 2;
}
.main-tag span {
  margin: 0 3px 0 0;
  padding: 2px 10px;
  background: #73cbd6;
  border-radius: 100px;
}
.main-tag span a {
  color: #fff;
  text-decoration: none;
}
/* ------------------------ */
/* テキストの先頭にアイコン */
.main-info {
  margin-bottom: 3px;
  padding-bottom: 15px;
  font-size: 0.75rem;
  text-align: right;
}
.main-info span {
  margin: 0 10px 0 0;
}
.main-info i {
  padding-right: 5px;
  color: #73cbd6;
}

/**
 * ---------------------------------------
 * メインコンテンツ
 */
.main-contents {
  margin: 0 0 20px 0;
}
@media (min-width: 768px) {
  .main-contents {
    max-width: 750px; 
    margin: 0 0 20px 0;
  }
}
/* ----------------------------------------------- */
/* main-contentsの1つ目の要素の上マージンを0にする */
.main-contents > *:first-child {
  margin-top: 0;
}
/* ------------------------- */
/*   h2                      */
.main-contents h2 {
  margin: 30px 0 10px 0;
  padding: 1rem 0;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  font-size: 1.25rem;
}
/* ------------------------- */
/*   p                       */
.main-contents p {
  margin: 10px 0;
  line-height: 1.9;
  text-align: justify;
}
/* ------------------------- */
/*   p mark                  */
.main-contents mark {
  background: linear-gradient(transparent 50%,#ffff7c 50%);
}
/* ------------------------- */
/* ----- ボックス枠表示 -----*/
.main-contents-box {
  position: relative;
  list-style: none;
  margin: 0px 0px 0px 0px;
  padding: 0px;
  border:solid thin gray;
  border-radius: 5px 5px 5px 5px;
  overflow:hidden;
}
/* ------------------------ */
/* リストの基本形           */
.list {
  margin: 10px 0;
}
.list li {
  margin-bottom: 1rem;
  line-height: 1.5;
}
/* ------------------------ */
/* ボックスを囲む           */
.info-box {
  margin: 10px 0;
  padding: 2rem;
  border: 4px solid #b8e5ea;
}
.info-box p {
  margin: 0;
}
/* ------------------------ */
/* キャプション付きの画像   */
.photo-caption {
  margin: 10px 6px 0px 6px;
}
.photo-caption figcaption {
  margin: 5px 0px 5px 0px;
  font-size: 1rem;
  color: #747474;
}
/* ------------------------ */
/* float                    */
.float-box {
  display: flow-root;
  margin: 10px 0;
}
.float-left { /* 使用していない */
  float: left;
  margin: 0 1rem 1rem 0;
  width: 30%;
}
.float-right {
  float: right;
  margin: 0 0 1rem 1rem;
  width: 30%;
}
.float-box p { /* 上下マージンをOFF */
  margin: 0;
}


/**
 * ***************************************
 * 　メイン　記事 (右サイドバーあり)
 * 　　　2カラムレイアウトのコントロール 
 * ***************************************
 */
.columns-side {
    max-width:  300px;
    margin: 0 auto ;
    padding: 0px 0px 0px 0px;

}
@media (min-width: 768px) {
  .columns-side {
    max-width: auto 200px;
    margin: 0 ;
    padding: 0px 0px 0px 0px;
  }
}



.sidebar-post .main-container {
  padding: 80 4% 0 4%;
  background-position: 0 10px;
}
@media (min-width: 768px) {
  .sidebar-post .main-container {
    max-width: 1040px;
    margin: 0 auto;
    padding: 30px 20px 0 20px;
  }
}
/* ------------------------------- */
/* 2カラムレイアウトのコントロール */
@media (min-width: 768px) {
  .columns {
    display: grid;
    grid-template-columns: 1fr 300px;   
  /*  grid-template-columns: 75% max-content 1fr auto ;   */
  /*  grid-template-columns: 75% max-content 1fr auto ;   */
    grid-gap: 20px;
  }
}

/* --------------------------- */
/* ----- ボックス内明細１ -----*/
.main-meisai1 {
  top:5px;
  text-align: center;
  list-style: none;
  margin: 5px;
  padding: 5px;
}
/* --------------------------- */
/* ----- ボックス内明細２ -----*/
.main-meisai2 {
  top:5px;
  text-align: center;
  list-style: none;
  margin: 5px;
  padding: 5px;
}
/* --------------------------------- */
/* ----- ボックス内　左寄せ明細 -----*/
.main-meisai-left {
  top:5px;
  text-align: left;
  list-style: none;
  margin: 5px;
  padding: 5px;
}
/* --------------------------------- */
/* ----- ボックス内　右寄せ明細 -----*/
.main-meisai-right {
  top:5px;
  text-align: right;
  list-style: none;
  margin: 5px;
  padding: 5px;
}
/* ----------------------------------- */
/* ----- ボックス内　中央寄せ明細 -----*/
.main-meisai-center {
  top:5px;
  text-align: center;
  list-style: none;
  margin: 5px;
  padding: 5px;
}
/* ----------------------------------- */
/* ----- ボックス内　１画像明細 -----*/
.main-meisai-1img {
  display: grid;
  grid-template-columns: 1fr  ;   
  grid-auto-rows: minmax(225px)  ;   
  row-gap: 6px;
  text-align: center;
}
.main-meisai-1img > img{
  margin: auto;
}

/* ----------------------------------- */
/* ----- ボックス内　複数画像明細 -----*/
.main-meisai-9img {
  display: grid;
  grid-template-columns: 1fr  ;   
  grid-auto-rows: minmax(225px)  ;   
  text-align: center;
  /*  column-gap: 6px;  */
  /*  row-gap: 6px; */
  /*  margin: 5px;  */
}

@media (min-width: 768px) {
  .main-meisai-9img {
    display: grid;
    grid-template-columns: 1fr 1fr ;   
  /*  column-gap: 6px;  */
  /*  row-gap: 6px; */
  /*  margin: 5px;  */
  }
}






/**
 * ***************************************
 * 右サイド　サブメニュー用
 * ***************************************
 */
/* -------------------------------------------- */
/*---------右サイド　サブメニュー用ボックス-----*/
.sub_menu {
  left:0px;  top:0px;
  height: auto !important;
}
/* ------------------------------------------------------ */
/*---------右サイド　サブメニュー用ボックス内メニュー-----*/
.sub_menu_box1 {
  top: 0px;
  list-style: none;
  background-image : url(../images/sky1-1.jpg);
  margin: 0 0 0 0;
  padding: 0px;
  text-align: center;
  font-size: 14px;
  border:solid thin gray;
  border-radius: 5px 5px 5px 5px;
}
.item1    { color: #cc0000;  font-size: 14px;  Line-height: 40px; }
.item1:first-child { margin-top: 30px;}
.item1:last-child  { margin-bottom: 30px;}
.item1 a  { color: #cc0000;background-color: transparent; display: block ;}
.item1 a:hover{background: #ffff99; color: #cc0000;}

/* ------------------------------------------------------------ */
/*---------右サイド　サブメニュー用ボックス内　尾瀬メニュー-----*/
.sub_menu_oze1 {
  top: 15px;
  list-style: none;
  margin: 0 0 10 0;
  padding: 0px;
  text-align: center;
  font-size: 14px;
  border:solid thin gray;
  border-radius: 5px 5px 5px 5px;
}
.sub_menu_oze1 img {  margin: 4px 0px 4px 0px; }
.sub_menu_oze1 img:first-child { margin-top: 30px; }
.sub_menu_oze1 img:last-child { margin-bottom: 30px; }

/* ---------------------------------------------------------------- */
/*---------右サイド　サブメニュー用ボックス内　バンブーメニュー-----*/
.sub_menu_bamboo1 {
  top: 15px;
  list-style: none;
  margin: 0 0 10 0;
  padding: 0px;
  text-align: center;
  font-size: 14px;
  border:solid thin gray;
  border-radius: 5px 5px 5px 5px;
}
.sub_menu_bamboo1 img {  margin: 20px 0px 20px 0px; }

/* --------------------------------------------------------------- */
/*---------右サイド　サブメニュー用ボックス内　potitto　kohana-----*/
.sub_menu_potitto {
  top: 15px;
  list-style: none;
  margin: 0 0 10 0;
  padding: 0px;
  text-align: center;
  font-size: 14px;
  border:solid thin gray;
  border-radius: 5px 5px 5px 5px;
}
.sub_menu_potitto img {  margin: 20px 0px 20px 0px; }

/* ---------------------------------------------------------------------- */
/*---------右サイド　サブメニュー用ボックス内　お薦め　ダイヤモンド社-----*/
.sub_osusume_diamondo {
  top:15px;
  text-align: center;
  list-style: none;
  margin: 0 0 10 0;
  padding: 0px;
  border:solid thin gray;
  border-radius: 5px 5px 5px 5px;
}
.sub_osusume_diamondo img {  margin: 20px 0px 20px 0px; }
/* -------------------------------------------------------- */
/*---------右サイド　サブメニュー用ボックス内　お薦め２-----*/
.sub_osusume_2 {
  top:15px;
  text-align: center;
  list-style: none;
  margin: 0 0 10 0;
  padding: 0px;
  border:solid thin gray;
  border-radius: 5px 5px 5px 5px;
}
.sub_osusume_2 img {  margin: 20px 0px 20px 0px; }
/* -------------------------------------------------------- */
/*---------右サイド　サブメニュー用ボックス内　お薦め３-----*/
.sub_osusume_3 {
  top:15px;
  text-align: center;
  list-style: none;
  margin: 0 0 10 0;
  padding: 0px;
  border:solid thin gray;
  border-radius: 5px 5px 5px 5px;
}
.sub_osusume_3 img {  margin: 20px 0px 20px 0px; }







/* -------------------------------------------------------- */
/*   スライド　カルーセルをCSSのみで実装    */
/* -------------------------------------------------------- */

.slider {
/*  -------------------- */
/*  width: 300px;        */
/*  -------------------- */
  max-width: 400px;  
  margin: 0 auto;   
/*  -------------------- */
  text-align: center;
  overflow: hidden;
}

.slides {
  display: flex;
  
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  
  
  
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  
  /*
  scroll-snap-points-x: repeat(300px);
  scroll-snap-type: mandatory;
  */
}
.slides::-webkit-scrollbar {
  width: 20px;
  height: 20px;
}
.slides::-webkit-scrollbar-thumb {
  background: black;
  border-radius: 10px;
}
.slides::-webkit-scrollbar-track {
  background: transparent;
}
.slides > div {
  scroll-snap-align: start;
  flex-shrink: 0; 

  width: 400px;
  height: 310px;
  margin-right: 50px;
/*  ------------
  max-width: 400px;   
 -------------------- */
  border-radius: 10px;
  background: #eee;
  transform-origin: center center;
  transform: scale(1);
  transition: transform 0.5s;
  position: relative;
  
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 100px;
}
.slides > div:target {
/*   transform: scale(0.8); */
}
.author-info {
  background: rgba(0, 0, 0, 0.75);
  color: white;
  padding: 0.75rem;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  margin: 0;
}
.author-info a {
  color: white;
}


.slider > img {
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
  

.slider > a {
  display: inline-flex;
  width: 3rem;
  height: 3rem;
  background: white;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 0 0.5rem 0;
  position: relative;
}
.slider > a:active {
  top: 1px;
}
.slider > a:focus {
  background: #000;
}

/* Don't need button navigation */
@supports (scroll-snap-type) {
  .slider > a {
    display: none;
  }
}

@media (min-width: 768px) {
 .slider {
   max-width: 400px; 
     margin: 0 auto;
   text-align: center;
   overflow: hidden;
 }

 .slides > div {
   scroll-snap-align: start;
   flex-shrink: 0;
   max-width: 400px; 
   border-radius: 10px;
   background: #eee;
   transform-origin: center center;
   transform: scale(1);
   transition: transform 0.5s;
   position: relative;
   
   display: flex;
   justify-content: center;
   align-items: center;
   font-size: 100px;
 }
 
}

