@charset "UTF-8";
/* Scss Document
*****************************************************************/
/* mixin
*********************************************************************/
/* カラー */
/* 薄いブルー */
/* グレー背景 */
/* タイトル背景 */
/* media query */
/* 5th_temple_name
*****************************************************************/
.tab_menu {
  display: none;
}
@media all and (max-width: 896px) {
  .tab_menu {
    display: block;
  }
}

.flex_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.flex_box .img {
  width: 200px;
}
@media all and (max-width: 480px) {
  .flex_box .img {
    width: 100%;
    text-align: center;
  }
}
.flex_box .img img {
  max-width: 100%;
}
.flex_box .txt {
  width: calc(100% - 230px);
}
@media all and (max-width: 480px) {
  .flex_box .txt {
    width: 100%;
    margin-top: 10px;
  }
}
.flex_box .txt ul.col2 {
  display: flex;
  flex-wrap: wrap;
}
.flex_box .txt ul.col2 li {
  width: 50%;
  box-sizing: border-box;
}
.flex_box .txt ul li {
  padding-bottom: 0;
}

.border_box {
  padding: 15px;
  box-sizing: border-box;
  border: #CECECE solid 1px;
  margin-top: 30px;
}