@charset "utf-8";
/*##################################################
 *HTMLreset(参考：Eric Mayer's Reset CSS 2.0) */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-style: normal;
  font-weight: normal;
  font-size: 100%; /* 16px */
  vertical-align: baseline;
}
/*パディングとボーダーを幅と高さに含める設定*/
*, *::before, *::after {
  box-sizing: border-box;
}
/*##################################################
 *common*/
body {
  /*基本設定*/
  -webkit-text-size-adjust: 100%; /*スマホの縦横に関わらず文字サイズ固定*/
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 2;
  text-align: center;
  width: 100%;
  text-shadow: none;
  /* 個別設定 */
  color: #333;
  min-width: 1024px; /*レスポンシブ時の右側の余白を解消*/
  overflow-x: hidden;
  animation: common-fadein 3s ease 0s 1 normal; /*ページ全体のフェードイン*/
  -webkit-animation: common-fadein 3s ease 0s 1 normal; /*ページ全体のフェードイン*/
}
@keyframes common-fadein { /*ページ全体のフェードイン*/
  0% {
    opacity: 0
  }
  100% {
    opacity: 1
  }
}
img {
  margin: 0;
  padding: 0;
  vertical-align: bottom;
}
p {
  word-wrap: break-word;
  overflow-wrap: break-word;
}
a {
  text-decoration: none;
  color: #e93300;
  transition: all 0.3s;
}
a:hover {
  text-decoration: underline;
  color: #e93300;
}
a img {
  transition: opacity 0.3s;
}
a:hover img {
  opacity: 0.7;
}
a[target=_blank] {
  padding-right: 24px;
  background-image: url("../../image/common_icon-target_blank.png");
  background-repeat: no-repeat;
  background-position: right 2px top 1px;
  background-size: 20px;
}
a.t_b-icon-none[target=_blank] {
  padding-right: 0;
  background-image: none;
}
ol, ul {
  list-style: none;
  font-size: 0;
}
li {
  word-wrap: break-word;
  overflow-wrap: break-word;
}
blockquote, q {
  quotes: none;
}
blockquote::before, blockquote::after, q::before, q::after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
}
table tr th, table tr td {
  padding: 0px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
form ::placeholder {
  color: #bbb;
}
input {
  margin: 0;
  padding: 0;
  font-family: inherit;
  font-size: 1em;
  background: transparent;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  vertical-align: middle;
}
input[type="checkbox"] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  appearance: checkbox;
  height: 16px;
  width: 16px;
  position: relative;
  top: -1px;
  margin-right: 16px;
  border: none;
  cursor: pointer;
}
input[type="checkbox"]::before, input[type="checkbox"]::after {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.2s ease-in-out;
}
input[type="checkbox"]::before {
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid #bbb;
  width: 24px; /*チェックボックスの横幅*/
  height: 24px; /*チェックボックスの縦幅*/
  transform: translateY(-50%);
  top: 50%;
  left: 0;
}
input[type="checkbox"]::after {
  border-bottom: 2px solid #fff; /*チェックの太さ*/
  border-left: 2px solid #fff; /*チェックの太さ*/
  opacity: 0; /*チェック前は非表示*/
  height: 8px; /*チェックの高さ*/
  width: 16px; /*チェックの横幅*/
  transform: rotate(-45deg);
  top: -4px; /*チェック時の位置調整*/
  bottom: 0; /*チェック時の位置調整*/
  left: 4px; /*チェック時の位置調整*/
  margin: auto; /*チェック時の位置調整*/
}
input[type="checkbox"]:checked::before {
  border-color: #a08c4f; /*チェック後表示*/
  background-color: #a08c4f; /*チェック後表示*/
}
input[type="checkbox"]:checked::after {
  opacity: 1; /*チェック後表示*/
}
input[type="checkbox"]:checked + span {
  color: #a08c4f;
}
input[type="radio"] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
  appearance: radio;
  height: 16px;
  width: 16px;
  position: relative;
  top: -1px;
  margin-right: 16px;
  border: none;
  cursor: pointer;
}
input[type="radio"]::before, input[type="radio"]::after {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.2s;
}
input[type="radio"]::before {
  background-color: #fff;
  border-radius: 50%;
  border: 1px solid #bbb;
  width: 24px; /*ラジオボタンの横幅*/
  height: 24px; /*ラジオボタンの縦幅*/
  transform: translateY(-50%);
  top: 50%;
  left: 0;
}
input[type="radio"]::after {
  background: #a08c4f; /*中丸の色*/
  border-radius: 50%;
  opacity: 0; /*チェック前は非表示*/
  height: 16px; /*中丸の高さ*/
  width: 16px; /*中丸の横幅*/
  transform: translateY(-50%); /*チェック時の位置調整*/
  top: 50%; /*チェック時の位置調整*/
  left: 4px; /*チェック時の位置調整*/
}
input[type="radio"]:checked::before {
  border-color: #a08c4f; /*チェック後表示*/
  background-color: #fff; /*チェック後表示*/
}
input[type="radio"]:checked::after {
  opacity: 1; /*チェック後表示*/
}
input[type="radio"]:checked + span {
  color: #a08c4f;
}
input[type="submit"] {
  cursor: pointer;
  color: #333;
}
input[type="button"] {
  cursor: pointer;
}
input[type="reset"] {
  cursor: pointer;
}
input[type="text"], input[type="email"], input[type="tel"] {
  background-color: #f8f8f8;
  border: 1px solid #e2e2e2;
}
input[type="text"]:focus, input[type="email"]:focus, input[type="tel"]:focus {
  border: 1px solid #a08c4f;
  background-color: #f8f7f3;
}
textarea {
  margin: 0;
  padding: 0;
  font-family: inherit;
  font-size: 1em;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  vertical-align: middle;
  background-color: #f8f8f8;
  border: 1px solid #e2e2e2;
}
textarea:focus {
  border: 1px solid #a08c4f;
  background-color: #f8f7f3;
}
button {
  margin: 0;
  padding: 0;
  font-family: inherit;
  font-size: 1em;
  background: transparent;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  vertical-align: middle;
  cursor: pointer;
}
button:active, button:focus, button:active > span, button:focus > span {
  position: relative;
}
select {
  margin: 0;
  padding: 0;
  font-family: inherit;
  font-size: 1em;
  color: #333;
  background: transparent;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  vertical-align: middle;
  border: 1px solid #e2e2e2;
}
label {
  cursor: pointer;
}
iframe {
  vertical-align: bottom;
}
hr {
  display: block;
  margin: 0;
  padding: 0;
  border: 0; /*念のため*/
}
hr.hr1 {
  height: 1px;
  background-color: #e4e4e4;
}
sup {
  font-size: 60%;
  vertical-align: top;
}
sub {
  font-size: 60%;
  vertical-align: bottom;
}
.clearfix {
  overflow: hidden;
  zoom: 1;
}
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}
.pc {
  display: inline;
}
.sp {
  display: none;
}
.br {
  display: inline;
}
.br_sp {
  display: none;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.note {
  font-size: 14px !important;
  line-height: 24px !important;
}
.anchor-point {
  margin-top: -112px;
  padding-top: 112px;
}
.select-wrap {
  position: relative;
}
.select-wrap:after {
  content: "";
  position: absolute;
  right: 22px;
  top: 30px;
  width: 16px;
  height: 16px;
  border-top: 2px solid #666;
  border-left: 2px solid #666;
  transform: translateY(-50%) rotate(-135deg);
  pointer-events: none;
}
/* 1280px未満 */
@media screen and (max-width: 1279px) {}
/*1025px未満*/
@media screen and (max-width: 1024px) {
  body {
    min-width: initial; /* レスポンシブ時の右側の余白を解消するbodyのmin-widthをリセット */
    min-width: auto; /* レスポンシブ時の右側の余白を解消するbodyのmin-widthをリセット（IE用） */
  }
}
/*980px未満*/
@media screen and (max-width: 979px) {
  a:hover {
    text-decoration: none;
    color: #a08c4f;
  }
  a:hover img {
    opacity: 1;
  }
  .anchor-point {
    margin-top: -96px;
    padding-top: 96px;
  }
}
/*768px未満*/
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
  .sp {
    display: inline;
  }
  .br {
    display: none;
  }
  .br_sp {
    display: inline;
  }
  .kutoten {
    display: inline;
  }
  .anchor-point {
    margin-top: -72px;
    padding-top: 72px;
  }
}
/*560px未満*/
@media screen and (max-width: 559px) {
  p {
    text-align: left;
  }
}
/*##################################################
 *font*/
.font-serif {
  font-family: 'Noto Serif JP', "Noto Serif SC", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
}
.font-serif ruby {
  font-weight: 400;
  ruby-align: center;
}
.font-serif ruby rt {
  letter-spacing: 0;
  position: relative;
  left: 0.2em;
  top: -0.4em;
}
/*##################################################
 *wrap*/
#wrap {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  background-color: #fff;
}
/*##################################################
 *header*/
#header {
  width: 100%;
  min-width: 1024px;
  position: fixed;
  z-index: 1000;
}
#header .hbox_fix {
  width: 100%;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.92);
}
#header .hbox_fix .sitename {
  width: 300px;
  margin: 16px 0 0 40px;
  float: left;
}
#header .hbox_fix .sitename .logo {
  width: 300px;
}
#header .hbox_fix .sitename .logo img {
  width: 100%;
  height: auto;
}
#header .hbox_fix .sitename .logo a:hover img {
  opacity: 1;
}
#header .hbox_fix .btn_menu_sp {
  display: none;
}
#header .hbox_fix .gnav {
  float: right;
  padding: 16px 40px 16px 0;
}
#header .hbox_fix .gnav a {
  font-weight: 800;
  color: #333;
  display: block;
}
#header .hbox_fix .gnav a:hover {
  text-decoration: none;
  color: #e93300;
}
#header .hbox_fix .gnav .primarynav {
  float: right;
}
#header .hbox_fix .gnav .primarynav ul {
  width: auto;
}
#header .hbox_fix .gnav .primarynav ul li {
  display: inline-block;
  font-size: 18px;
  line-height: 80px;
  margin: 0 0 0 40px;
}
/* 1280px未満 */
@media screen and (max-width: 1279px) {
  #header .hbox_fix .sitename {
    margin: 24px 0 0 40px;
    width: 240px;
  }
  #header .hbox_fix .sitename .logo {
    width: 240px;
  }
  #header .hbox_fix .gnav .primarynav ul li {
    font-size: 16px;
    margin: 0 0 0 16px;
  }
}
/* 1025px未満 */
@media screen and (max-width: 1024px) {
  #header .hbox_fix .sitename {
    margin: 24px 0 0 24px;
  }
  #header .hbox_fix .gnav {
    padding: 16px 24px 16px 0;
  }
}
/* 980px未満 */
@media screen and (max-width: 979px) {
  #header {
    min-width: initial;
    min-width: auto;
  }
  #header .hbox_fix .sitename {
    margin: 16px 0 0 24px;
  }
  #header .hbox_fix .btn_menu_sp {
    display: block;
    float: right;
  }
  #header .hbox_fix .btn_menu_sp a {
    display: block;
    width: 96px;
    height: 96px;
    font-size: 10px;
    font-weight: bold;
    line-height: 18px;
    color: #333;
    padding: 54px 0 0 0;
    background-image: url("../../image/common_icon-menu.png");
    background-repeat: no-repeat;
    background-position: top 32px center;
    background-size: 20px;
  }
  #header .hbox_fix .gnav {
    display: none;
    width: 100%;
    padding: 0;
    border-top: 1px solid #e4e4e4;
    overflow-y: scroll;
    -ms-overflow-style: none; /* IE,Edgeでスクロールバーを消す */
    scrollbar-width: none; /* Firefoxでスクロールバーを消す */
    height: calc(100vh - 96px); /* メニュー部分の高さを決める */
    /* -webkit-overflow-scrolling: touch; SP（iOS）で慣性スクロールを有効にする iOS13からいらない */
  }
  #header .hbox_fix .gnav::-webkit-scrollbar { /* Chrome,Safariでスクロールバーを消す */
    display: none;
  }
  #header .hbox_fix .gnav a:hover {
    color: #333;
  }
  #header .hbox_fix .gnav .primarynav {
    width: 100%;
    position: static;
    border-bottom: solid 1px #e4e4e4;
  }
  #header .hbox_fix .gnav .primarynav ul {
    width: auto;
  }
  #header .hbox_fix .gnav .primarynav ul li {
    display: block;
    line-height: 64px;
    text-align: left;
    margin: 0;
    border-bottom: solid 1px #e4e4e4;
  }
  #header .hbox_fix .gnav .primarynav ul li:last-child {
    border-bottom: none;
  }
  #header .hbox_fix .gnav .primarynav ul li a {
    padding: 0 0 0 24px;
    background-image: url("../../image/common_icon-arw-r.png");
    background-repeat: no-repeat;
    background-position: right 38px center;
    background-size: 20px;
  }
}
/* 768px未満 */
@media screen and (max-width: 767px) {
  #header .hbox_fix .sitename {
    width: 150px;
    margin: 16px 0 0 16px;
  }
  #header .hbox_fix .sitename .logo {
    width: 150px;
  }
  #header .hbox_fix .btn_menu_sp a {
    width: 72px;
    height: 72px;
    padding: 40px 0 0 0;
    background-position: top 20px center;
  }
  #header .hbox_fix .gnav {
    height: calc(100vh - 72px); /* メニュー部分の高さを決める */
  }
  #header .hbox_fix .gnav .primarynav ul li {
    line-height: 56px;
  }
  #header .hbox_fix .gnav .primarynav ul li a {
    padding: 0 0 0 16px;
    background-position: right 26px center;
  }
}
/*560px未満*/
@media screen and (max-width: 559px) {
  #header .hbox_fix .btn_menu_sp a {
    width: 64px;
  }
  #header .hbox_fix .gnav .primarynav ul li a {
    padding: 0 0 0 16px;
    background-position: right 22px center;
  }
}
/*##################################################
 *content */
#content {
  width: 100%;
  padding: 112px 0 120px 0;
}
#content .breadcrumb {
  width: 100%;
  height: 48px;
  margin: -48px 0 0 0;
  padding: 0 40px 0 40px;
}
#content .breadcrumb ul {
  width: 100%;
  text-align: left;
}
#content .breadcrumb ul li {
  font-size: 12px;
  line-height: 48px;
  text-align: left;
  margin: 0 14px 0 0;
  padding: 0 20px 0 0;
  display: inline-block;
  background-image: url("../../image/common_icon-arw-breadcrumb.png");
  background-repeat: no-repeat;
  background-position: right center;
}
#content .breadcrumb ul li:last-child {
  margin: 0;
  padding: 0;
  background-image: none;
}
#content .cbox_pagehead {
  width: 100%;
  margin: 0 0 48px 0;
  padding: 34px 0 32px 0;
  background-color: #f8f7f3;
}
#content .cbox_pagehead .pagetitle {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  text-indent: 0.1em;
  letter-spacing: 0.1em;
}
#content .cbox_wrap1 {
  width: 100%;
  padding: 0 0 120px 0;
}
#content .cbox_wrap2 {
  width: 100%;
  margin: 0 0 40px 0;
  padding: 80px 0 80px 0;
  background-color: #f8f7f3;
}
#content .cbox_layout1 {
  width: 1024px;
  margin: 0 auto 0 auto;
}
#content .cbox_layout2 {
  width: 880px;
  margin: 0 auto 0 auto;
}
#content .page_content {
  width: 100%;
}
#content .cate-list {
  width: calc((100% - 160px) / 4 - 20px);
  margin: 0 0 0 40px;
  padding: 48px 0 0 0;
  float: left;
  border-top: 1px solid #e4e4e4;
}
#content .cate-list .swipe {
  display: none;
}
#content .cate-list ul li {
  font-size: 16px;
  line-height: 48px;
  text-align: left;
}
#content .cate-list ul li a {
  display: block;
  color: #333;
}
#content .cate-list ul li a:hover {
  text-decoration: none;
  color: #a08c4f;
  background-color: #faf9f6;
}
#content .cate-list ul.parents li a {
  font-weight: bold;
  padding: 0 0 0 16px;
}
#content .cate-list ul.parents li.current-cat a {
  color: #a08c4f;
  background-color: #f6f5f0;
}
#content .cate-list ul.parents li.current-cat ul.children li a {
  color: #333;
  background-color: transparent;
}
#content .cate-list ul.parents li.current-cat ul.children li a:hover {
  color: #a08c4f;
  background-color: #faf9f6;
}
#content .cate-list ul.parents li ul.children {
  margin: 0 0 24px 0;
  padding: 0 0 24px 0;
}
#content .cate-list ul.parents li ul.children li a {
  font-weight: normal;
  padding: 0 0 0 32px;
}
#content .cols4 {
  width: calc(100% - 80px);
  margin: 0 auto 0 auto;
}
#content .cols4 .block-col {
  width: calc((100% - 160px) / 4);
}
#content .cols4::after {
  display: block;
  content: "";
  width: calc((100% - 106px) / 4);
}
#content .cols3 {
  width: calc(100% - ((100% - 160px) / 4 + 113px));
  margin: 0 40px 0 0;
  float: right;
}
#content .cols3 .block-col {
  width: calc((100% - 106px) / 3);
}
#content .cols3::after {
  display: block;
  content: "";
  width: calc((100% - 106px) / 3);
}
#content .block-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#content .block-items .block-col {
  position: relative;
  padding: 16px;
  margin: 0 0 40px 0;
  border-top: 1px solid #e4e4e4;
}
#content .block-items .block-col a {
  color: #333;
}
#content .block-items .block-col a:hover {
  text-decoration: none;
  color: #a08c4f;
}
#content .block-items .block-col .thumbnail {
  width: 100%;
  padding-top: 100%;
  position: relative;
}
#content .block-items .block-col .thumbnail .image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#content .block-items .block-col .thumbnail .image img {
  position: absolute;
  width: auto;
  height: auto;
  top: 50%;
  left: 50%;
  max-width: 100%;
  max-height: 100%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
#content .block-items .block-col .title {
  text-align: center;
  margin: 16px 0 0 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; /* 任意の行数を指定 */
}
#content .block-items .box-last {
  padding: 0 !important;
  margin: 0 !important;
  border-top: none !important;
  height: 0 !important;
}
#content .conttitle-cate {
  display: none;
}
#content .conttitle1 {
  font-size: 40px;
  line-height: 56px;
  font-weight: bold;
  text-align: start;
  writing-mode: vertical-rl;
  text-orientation: upright;
  margin: 0 auto 0 auto;
  letter-spacing: 0.2em;
}
#content .conttitle1 span.conttitle1_en {
  font-family: "Times New Roman", Times, serif;
  font-size: 12px;
  line-height: 28px;
  font-weight: bold;
  color: #e93300;
  text-align: start;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  margin: 56px auto 0 auto;
  letter-spacing: 0.2em;
  display: block;
}
#content .conttitle2 {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}
#content .conttitle3 {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}
#content .conttitle4 {
  font-family: "Arial", "Helvetica", sans-serif;
  font-size: 28px;
  font-weight: bold;
  line-height: 48px;
  color: #a08c4f;
  text-align: center;
  text-indent: 0.1em;
  letter-spacing: 0.1em;
}
#content .btn {
  font-size: 0;
  margin: 40px 0 0 0;
}
#content .btn .btn_view-detail1 {
  width: auto;
  display: inline-block;
  font-size: 16px;
  margin: 0 20px 0 20px;
}
#content .btn .btn_view-detail1 a {
  width: 100%;
  display: block;
  font-weight: bold;
  line-height: 32px;
  color: #333;
  text-align: left;
  padding: 0 20px 0 4px;
  background-image: url("../../image/common_icon-arw-r.png");
  background-repeat: no-repeat;
  background-position: right -2px center;
  background-size: 20px;
  border-bottom: 6px solid #333;
}
#content .btn .btn_view-detail1 a:hover {
  text-decoration: none;
  color: #a08c4f;
  background-image: url("../../image/common_icon-arw-r-g.png");
  border-color: #a08c4f;
}
/* 1281px未満 */
@media screen and (max-width: 1280px) {
  #content .cate-list {
    width: calc((100% - 160px) / 4);
  }
  #content .cols4 .block-col {
    width: calc((100% - 80px) / 4);
  }
  #content .cols3 {
    width: calc(100% - ((100% - 160px) / 4 + 107px));
  }
  #content .cols3 .block-col {
    width: calc((100% - 54px) / 3);
  }
}
/* 1025px未満 */
@media screen and (max-width: 1024px) {
  #content .breadcrumb {
    padding: 0 24px 0 24px;
  }
  #content .cbox_layout1 {
    width: 960px;
  }
  #content .cate-list {
    width: calc((100% - 160px) / 4 + 16px);
    margin: 0 0 0 24px;
  }
  #content .cols4 {
    width: calc(100% - 48px);
  }
  #content .cols4 .block-col {
    width: calc((100% - 48px) / 4);
  }
  #content .cols3 {
    width: calc(100% - ((100% - 160px) / 4 + 80px));
    margin: 0 24px 0 0;
  }
  #content .cols3 .block-col {
    width: calc((100% - 32px) / 3);
  }
}
/* 980px未満 */
@media screen and (max-width: 979px) {
  #content {
    padding: 96px 0 0 0;
  }
  #content .breadcrumb {
    display: none;
  }
  #content .cbox_pagehead {
    margin: -32px 0 48px 0;
  }
  #content .cbox_wrap1 {
    padding: 0 0 80px 0;
  }
  #content .cbox_wrap2 {
    margin: 0 0 40px 0;
  }
  #content .cbox_layout1 {
    width: 720px;
  }
  #content .cbox_layout2 {
    width: 720px;
  }
  #content .cate-list {
    width: calc(100% - 48px);
    margin: 0 auto 24px auto;
    padding: 0;
    float: none;
    border-top: none;
  }
  #content .cate-list ul li {
    font-size: 14px;
    line-height: 40px;
  }
  #content .cate-list ul li a {
    display: inline-block;
  }
  #content .cate-list ul li a:hover {
    color: #333;
    background-color: transparent;
  }
  #content .cate-list ul.parents li a {
    font-weight: bold;
    margin: 0 0 4px 0;
    padding: 0 16px 0 16px;
  }
  #content .cate-list ul.parents li.current-cat a {
    border-radius: 4px;
  }
  #content .cate-list ul.parents li.current-cat ul.children li a:hover {
    color: #333;
    background-color: transparent;
  }
  #content .cate-list ul.parents li ul.children {
    margin: 0 0 8px 0;
    padding: 0 0 8px 0;
  }
  #content .cate-list ul.parents li ul.children li {
    margin: 0;
    padding: 0;
    display: inline-block;
  }
  #content .cate-list ul.parents li ul.children li a {
    padding: 0 16px 0 16px;
  }
  #content .cols4 .block-col {
    width: calc((100% - 48px) / 3);
  }
  #content .cols3 {
    width: calc(100% - 48px);
    margin: 0 auto 0 auto;
    float: none;
  }
  #content .cols3 .block-col {
    width: calc((100% - 48px) / 3);
  }
  #content .conttitle-cate {
    display: block;
    font-size: 18px;
    font-weight: bold;
    margin: 0 16px 0 16px;
    padding: 32px 0 32px 0;
    border-top: 1px solid #e4e4e4;
  }
}
/* 768px未満 */
@media screen and (max-width: 767px) {
  #content {
    padding: 72px 0 0 0;
  }
  #content .cbox_pagehead {
    margin: -16px 0 48px 0;
    padding: 16px 0 16px 0;
  }
  #content .cbox_pagehead .pagetitle {
    font-size: 20px;
  }
  #content .cbox_wrap1 {
    padding: 0 0 60px 0;
  }
  #content .cbox_wrap2 {
    margin: 0 0 24px 0;
    padding: 24px 0 24px 0;
  }
  #content .cbox_layout1 {
    width: auto;
    margin: 0 16px 0 16px;
  }
  #content .cbox_layout2 {
    width: auto;
    margin: 0 16px 0 16px;
  }
  #content .page_content {
    margin: -40px 0 0 0;
  }
  #content .cate-list {
    width: calc(100% - 24px);
  }
  #content .cate-list .swipe {
    display: block;
    font-size: 12px;
    line-height: 14px;
    color: #888;
    text-align: right;
    padding: 0 20px 0 0;
    background-image: url("../../image/common_icon-arw-swipe.png");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 20px;
  }
  #content .cate-list ul li {
    line-height: 32px;
  }
  #content .cate-list ul.parents li {
    position: relative;
  }
  #content .cate-list ul.parents li::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 80px;
    background-image: url("../../image/common_swipe_linear-gradient.png");
    background-repeat: repeat-y;
    background-position: right center;
    background-size: 40px 1px;
  }
  #content .cate-list ul.parents li a {
    font-weight: bold;
    padding: 0 12px 0 12px;
  }
  #content .cate-list ul.parents li ul.children {
    margin: 0 0 4px 0;
    padding: 0 64px 4px 0;
    overflow-y: hidden;
    overflow-x: auto;
    white-space: nowrap;
  }
  #content .cate-list ul.parents li ul.children::-webkit-scrollbar {
    display: none;
  }
  #content .cate-list ul.parents li ul.children li {
    position: initial;
  }
  #content .cate-list ul.parents li ul.children li a {
    padding: 0 12px 0 12px;
  }
  #content .cols4 {
    width: calc(100% - 32px);
  }
  #content .cols4 .block-col {
    width: calc((100% - 16px) / 2);
  }
  #content .cols3 {
    width: calc(100% - 32px);
  }
  #content .cols3 .block-col {
    width: calc((100% - 16px) / 2);
  }
  #content .block-items .block-col .title {
    -webkit-line-clamp: 3; /* 任意の行数を指定 */
  }
  #content .conttitle1 {
    font-size: 28px;
    line-height: 40px;
  }
  #content .conttitle1 span.conttitle1_en {
  margin: 38px auto 0 auto;
}
  #content .conttitle4 {
    font-size: 24px;
    line-height: 40px;
  }
  #content .btn {
    font-size: 0;
    margin: 40px auto 0 auto;
    width: 216px;
  }
  #content .btn .btn_view-detail1 {
    width: 100%;
    display: block;
    margin: 0 0 16px 0;
  }
  #content .btn .btn_view-detail1 a {
    border-bottom-width: 4px;
  }
  #content .btn .btn_view-detail1 a:hover {
    color: #333;
    background-image: url("../../image/common_icon-arw-r.png");
    border-color: #333;
  }
}
/*560px未満*/
@media screen and (max-width: 559px) {
  #content .block-items .block-col {
    padding: 16px 8px 0 8px;
    margin: 0 0 16px 0;
  }
  #content .block-items .block-col .title {
    margin: 16px 8px 0 8px;
    font-size: 14px;
  }
}
/*##################################################
 *footer*/
#footer {
  width: 100%;
  background-color: #f8f7f3;
  background-image: url("../../image/common_pattern01.jpg");
  background-repeat: repeat;
  background-position: left top;
  position: absolute;
}
#footer .fbox_menu a {
  color: #333;
}
#footer .fbox_location {
  width: 100%;
}
#footer .fbox_location .googlemap {
  margin: 0 0 64px 0;
}
#footer .fbox_location .googlemap iframe {
  width: 100% !important;
  height: 480px;
  margin: 0 0 32px 0;
  border-top: 1px solid #ccc !important;
  border-bottom: 1px solid #ccc !important;
}
#footer .fbox_location .googlemap .address {
  display: inline-block;
  width: auto;
  padding: 8px 40px 6px 40px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 40px;
}
#footer .fbox_location .logo {
  width: 256px;
  margin: 0 auto 64px auto;
}
#footer .fbox_location .logo img {
  width: 100%;
  height: auto;
}
#footer .fbox_menu {
  width: 100%;
  overflow: hidden;
}
#footer .fbox_menu a {
  display: block;
}
#footer .fbox_menu a:hover {
  text-decoration: none;
  color: #e93300;
}
#footer .fbox_menu .subpage {
  float: right;
  margin: 0 40px 0 0;
}
#footer .fbox_menu .subpage ul {
  width: auto;
}
#footer .fbox_menu .subpage ul li {
  display: inline-block;
  font-size: 14px;
  line-height: 80px;
  text-align: left;
  margin: 0 0 0 32px;
}
#footer .fbox_menu .copyright {
  float: left;
  margin: 0 0 0 40px;
}
#footer .fbox_menu .copyright p {
  width: auto;
  font-size: 14px;
  line-height: 80px;
  text-align: left;
}
#footer .fbox_fix {
  position: fixed;
  width: auto;
  right: 0px;
  z-index: 900;
}
#footer .fbox_fix .btn_return-top {
  width: 72px;
  background-color: #333;
  border-radius: 36px;
  position: absolute;
  bottom: 72px;
  right: 36px;
}
#footer .fbox_fix .btn_return-top a {
  width: 100%;
  height: 72px;
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  display: block;
  padding: 32px 0 0 0;
  background-image: url("../../image/common_icon-arw-u-w.png");
  background-repeat: no-repeat;
  background-position: center 16px;
  background-size: 20px;
  border-radius: 36px;
}
#footer .fbox_fix .btn_return-top a:hover {
  background-color: #e93300;
}
/* 1280px未満 */
@media screen and (max-width: 1279px) {}
/* 1025px未満 */
@media screen and (max-width: 1024px) {
  #footer .fbox_menu .subpage {
    float: right;
    margin: 0 24px 0 0;
  }
  #footer .fbox_menu .subpage ul li {
    line-height: 40px;
  }
  #footer .fbox_menu .copyright {
    float: left;
    margin: 0 0 0 24px;
  }
  #footer .fbox_menu .copyright p {
    line-height: 40px;
  }
  #footer .fbox_fix .btn_return-top {
    bottom: 48px;
    right: 20px;
  }
}
/* 980px未満 */
@media screen and (max-width: 979px) {
  #footer {
    padding: 0;
  }
  #footer .fbox_menu a:hover {
    color: #333;
  }
  #footer .fbox_menu .subpage {
    float: none;
    margin: 24px 24px 0 24px;
  }
  #footer .fbox_menu .subpage ul li {
    display: block;
    font-size: 14px;
    line-height: 24px;
    margin: 0;
  }
  #footer .fbox_menu .copyright {
    float: none;
  }
}
/* 768px未満 */
@media screen and (max-width: 767px) {
  #footer .fbox_location .googlemap {
    margin: 0 0 32px 0;
  }
  #footer .fbox_location .googlemap iframe {
    height: 400px;
    margin: 0 0 24px 0;
  }
  #footer .fbox_location .googlemap .address {
    padding: 8px 24px 8px 24px;
    margin: 0 16px 0 16px;
  }
  #footer .fbox_location .logo {
    width: 184px;
    margin: 0 auto 32px auto;
  }
  #footer .fbox_menu .subpage {
    margin: 24px 16px 0 16px;
  }
  #footer .fbox_menu .copyright {
    margin: 0 0 0 16px;
  }
  #footer .fbox_fix {
    width: 100%;
  }
  #footer .fbox_fix .btn_return-top {
    width: 56px;
    border-radius: 28px;
    bottom: 14px;
    right: 16px;
  }
  #footer .fbox_fix .btn_return-top a {
    height: 56px;
    font-size: 12px;
    padding: 24px 0 0 0;
    background-position: center 8px;
    border-radius: 28px;
  }
  #footer .fbox_fix .btn_return-top a:hover {
    background-color: #333;
  }
}
/*560px未満*/
@media screen and (max-width: 559px) {}
/*##################################################
 *コンテンツ*/
.xxxxx_xxxxx {}
/* 1280px未満 */
@media screen and (max-width: 1279px) {}
/* 1025px未満 */
@media screen and (max-width: 1024px) {}
/* 980px未満 */
@media screen and (max-width: 979px) {}
/* 768px未満 */
@media screen and (max-width: 767px) {}
/*560px未満*/
@media screen and (max-width: 559px) {}
/*360px未満*/
@media screen and (max-width: 359px) {}