<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/* common
====================================================================================================================================== */
.body.cms-plugin {
  display: inline;
}

#main_column {
  font-size: 1.0625rem;
  line-height: 1.7em;
}

/*非表示*/
.none {
  display: none !important;
}

.visible-off {
  display: none;
}

.hide {
  display: none;
}

img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

/*取り消し線を引く*/
.deleted {
  text-decoration: line-through;
}

/*左寄せ・右寄せ対策*/
img.left_align_img {
  margin-right: 15px;
}

img.right_align_img {
  margin-left: 15px;
}

iframe {
  max-width: 100%;
}

.flex {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.fs {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* スクロールして画面に入ったらフェードイン */
.scroll_fadein {
  opacity: 0;
  transform: translateY(50px);
  transition: 1s ease-out;
}

.scroll_fadein.window_in {
  opacity: 1;
  transform: translateY(0);
}

.scroll_opacity {
  opacity: 0;
  transition: 1s ease-out;
}

.scroll_opacity.window_in {
  opacity: 1;
}

/*画像背景のボタン*/
.bg_img_btn a,
a.bg_img_btn {
  display: block;
  background: no-repeat;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

/*center button list*/
.btn_center_box {
  clear: both;
  overflow: hidden;
  width: 100%;
  margin: 0 0 10px;
}

.btn_center_box:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

.btn_center_box ul {
  position: relative;
  left: 50%;
  float: left;
  margin: 0;
  overflow: visible;
  list-style: none;
  list-style-position: inside;
}

.btn_center_box ul:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

.btn_center_box li {
  position: relative;
  left: -50%;
  float: left;
  list-style: none;
  display: inline;
}

.btn_center_box li:first-child {
  margin: 0;
}

.btn_center_box li a {
  margin: 0 10px 10px;
}

.button_area {
  margin-bottom: 1.2em;
  text-align: center;
}

.button_area a {
  display: inline-block;
  width: auto;
  min-width: 235px;
  margin: 0 auto;
  text-align: center;
  transition: 0.3s;
  padding: 1em 3em 1em 1.5em;
  font-size: 1.0625rem;
  font-weight: bold;
  line-height: 1.3;
  border: 1px solid #D3BFA1;
  border-radius: 6px;
  position: relative;
}

.button_area a:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 2em;
  transform: translateY(-50%) rotate(45deg);
  width: 0.5em;
  height: 0.5em;
  border-top: 1px solid #D3BFA1;
  border-right: 1px solid #D3BFA1;
}

.button_area a.reverse {
  padding-left: 2.2em;
  padding-right: 1em;
}

.button_area a.reverse:after {
  right: auto;
  left: 2em;
  border: none;
  border-left: 1px solid #D3BFA1;
  border-bottom: 1px solid #D3BFA1;
}

.button_area a, .button_area a:link {
  color: #5A3C32;
  text-decoration: none;
}

.button_area a:hover {
  color: #fff;
  background-color: #D3BFA1;
}

.button_area a:hover:after {
  border-color: #fff;
}

.button_area a.gold {
  min-width: 340px;
  background-color: #E8AE5E;
  border-color: #E8AE5E;
  font-size: 1.375rem;
  color: #fff;
}

.button_area a.gold:after {
  border-color: #fff;
}

.button_area a.gold:hover {
  background-color: #5A3C32;
  border-color: #5A3C32;
}

/*list*/
#conts ul, #main_column ul {
  list-style-type: none;
  margin-bottom: 1.5em;
}

#conts ul &gt; li, #main_column ul &gt; li {
  line-height: 1.5em;
  margin-bottom: 1em;
  padding-left: 0.8em;
  text-indent: -0.8em;
}

#conts ul &gt; li:before, #main_column ul &gt; li:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background-color: #E8AE5E;
  width: 0.5em;
  height: 0.5em;
  border-radius: 50%;
  margin-right: 0.3em;
}

#conts ol, #main_column ol {
  counter-reset: orderd_num;
  background: none;
  margin-bottom: 1.5em;
}

#conts ol li, #main_column ol li {
  position: relative;
  margin-bottom: 0.7em;
  line-height: 1.5;
  padding-left: 1.7em;
}

#conts ol li:before, #main_column ol li:before {
  position: absolute;
  top: 0;
  left: 0;
  counter-increment: orderd_num;
  content: counter(orderd_num);
  font-weight: normal;
  background-color: #503200;
  display: block;
  color: #fff;
  width: 1.5em;
  height: 1.5em;
  line-height: 1.5em;
  border-radius: 50%;
  text-indent: 0;
  text-align: center;
}

#conts ul.caution {
  margin-bottom: 2.5em;
}

#conts ul.caution li {
  margin-bottom: 0;
}

#conts ul.caution li:before {
  content: "※";
}

#conts ul.plane,
#conts ol.plane,
#conts ul.plane li,
#conts ol.plane li {
  list-style-type: none !important;
  padding: 0;
  text-indent: 0;
}

#conts ul.plane li:before,
#conts ol.plane li:before {
  display: none;
}

/*news list*/
#conts .article_list {
  padding: 0;
}

#conts .article_list li {
  padding: 1.2em 0;
  border-bottom: 1px dashed #D3BFA1;
  margin-bottom: 0;
  line-height: 1.5;
  text-indent: 0;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

#conts .article_list li.no_news {
  letter-spacing: normal;
}

#conts .article_list li:before {
  display: none;
}

#conts .article_list li .new, #conts .article_list li time, #conts .article_list li a {
  display: block;
}

#conts .article_list li .new {
  font-size: 0.8125rem;
  font-weight: bold;
  color: #fff;
  line-height: 1;
  padding: 0.3em 2em;
  background-color: #E8AE5E;
  border-radius: 1.5em;
  white-space: nowrap;
  margin-right: 1em;
}

#conts .article_list li time {
  font-size: 0.9375rem;
  color: #A0826E;
  white-space: nowrap;
  margin-right: 1.8em;
}

#conts .article_list li a {
  font-size: 1rem;
  font-weight: bold;
  color: #5A3C32;
  text-decoration: none;
}

#conts .article_list li a:hover {
  color: #D6893C;
  text-decoration: underline;
}

/*default heading*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  margin: 0 0 0.8em;
  line-height: 1.3;
}

h1.page_title {
  font-size: 2.375rem;
  font-weight: normal;
  text-align: center;
  color: #5A3C32;
  line-height: 1.5;
  margin-bottom: 0;
  font-family: "Times New Roman", Times, "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", 'Noto Serif JP', serif;
}

h2 {
  font-size: 1.75rem;
  font-weight: normal;
  color: #5A3C32;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.05em;
  padding-top: 1.5em;
  margin-bottom: 1.2em;
  position: relative;
  font-family: "Times New Roman", Times, "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", 'Noto Serif JP', serif;
}

h2 .copy {
  display: block;
  margin: 0.75em 0 0;
  line-height: 1.8;
  font-size: 1.1rem;
}

h2 .num {
  display: block;
  margin: -0.5em 0 0.2em;
  font-size: 0.65em;
  font-weight: normal;
  color: #D6893C;
}

h2:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 58px;
  height: 33px;
  background-image: url(../images/splash.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
}

h2.en {
  font-size: 2.375rem;
  padding-top: 0.9em;
}

h2.line {
  font-family: "-apple-system", "Arial", "Yu Gothic", YuGothic,'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', Verdana, "M+ 1p", sans-serif;
  font-size: 1.25rem;
  font-weight: bold;
  text-align: center;
  background-color: #F1E8DF;
  padding: 0.6em 0.5em;
  margin-bottom: 1.5em;
  position: static;
}

h2.line:before {
  display: none;
}

h2.simple_line {
  border: double 6px #D3BFA1;
  border-left: 0;
  border-right: 0;
  padding: 1.35em 0;
  margin: 2em 0;
}

h2.simple_line:before {
  display: none;
}

h3 {
  font-size: 1.5rem;
  font-weight: bold;
  text-align: left;
  color: #5A3C32;
  line-height: 1.5;
  margin-bottom: 1em;
}

h3.line {
  border-bottom: solid 1px #5A3C32;
  padding-bottom: 0.25em;
}

h4 {
  font-size: 1.25rem;
  font-weight: bold;
  text-align: left;
  line-height: 1.5;
  color: #5A3C32;
  padding-left: 0.8em;
  text-indent: -0.8em;
  margin-bottom: 1em;
}

h4:before {
  content: "";
  background-color: #E8AE5E;
  display: inline-block;
  vertical-align: middle;
  width: 0.5em;
  height: 0.5em;
  border-radius: 50%;
  margin-right: 0.2em;
}

h5 {
  font-size: 1.2rem;
  font-weight: bold;
  color: #5A3C32;
  text-align: left;
  line-height: 1.5;
  margin-bottom: 0.8em;
}

/*hr*/
hr {
  height: 1px;
  background: none;
  border-top: 1px dashed #c6b294;
  margin: 2em 0;
  overflow: hidden;
}

/*段落*/
table p {
  margin-bottom: 0;
}

/*カラー*/
.gold {
  color: #D6893C;
}

.red {
  color: #d00;
}

.orange {
  color: #c46b00;
}

.purple {
  color: #9a0a14;
}

.flaxen {
  color: #c6b294;
}

.font_mincho {
  font-family: "Times New Roman", Times, "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", 'Noto Serif JP', serif;
}

/*画像*/
.wide_photo_image {
  position: relative;
  margin: 4.3em 0 0;
}

.wide_photo_image.in {
  margin: 3em 0 4em;
}

.wide_photo_image img {
  width: 100%;
  margin: 0;
}

.wide_photo_image .caption {
  color: #fff;
  position: absolute;
  right: 2.5%;
  bottom: 2%;
  font-size: 0.78em;
}

.full_width_image {
  margin-bottom: 2.5em;
  margin-left: calc((1200px - 100%) / -2);
  margin-right: calc((1200px - 100%) / -2);
}

.full_width_image img {
  width: 100%;
  height: auto;
}

.full_width_image h2:before {
  display: none;
}

.full_width_image.img_tit {
  position: relative;
  margin-bottom: 3.5em;
}

.full_width_image.img_tit img {
  height: 480px;
  object-fit: cover;
  font-family: 'object-fit: cover;';
}

.full_width_image.img_tit h2 {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16em;
  margin: -2.5em 0 0 -8em;
  background: rgba(255, 255, 255, 0.9);
  border: double 6px #5A3C32;
  padding: 1.25em 0.8em;
  font-weight: bold;
  line-height: 1.3;
}

@media screen and (min-width: 1200px) {
  .full_width_image {
    margin-left: calc((100vw - 100%) / -2);
    margin-right: calc((100vw - 100%) / -2);
  }
}

/*container*/
.section_box {
  clear: both;
  padding: 0;
  margin-bottom: 3em;
}

.section_box .img_box {
  text-align: center;
}

.section_box .img_box img {
  border-radius: 4px;
}

.section_box figure {
  margin-bottom: 1em;
}

.section_box.border_bottom {
  padding-bottom: 1.5em;
  margin-bottom: 2.5em;
  border-bottom: 1px dashed #D3BFA1;
}

.section_box:after {
  content: "";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

/*3列ボックス*/
.box_3_column {
  overflow: hidden;
  margin: 0 -1.5% 1.5em;
}

.box_3_column .box {
  float: left;
  width: 33.3333333%;
  padding: 0 1.5%;
  margin-bottom: 2em;
}

/*2列ボックス*/
.box_2_column {
  overflow: hidden;
  margin: 0 -1.5% 1.5em;
}

.box_2_column .box {
  float: left;
  width: 50%;
  padding: 0 1.5%;
  margin-bottom: 3%;
}

/*索引*/
.list_box {
  border-bottom: 1px dashed #D3BFA1;
  padding-bottom: 1.7em;
  margin-bottom: 1.5em;
}

.list_box a, .list_box .nolink_inner {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}

.list_box .nolink_inner .title {
  padding-left: 0;
  text-indent: 0;
}

.list_box .nolink_inner .title:before {
  display: none;
}

.list_box a, .list_box a:link {
  text-decoration: none;
}

.list_box a:hover {
  opacity: 0.7;
}

.list_box a:hover .title {
  color: #D6893C;
  text-decoration: underline;
}

.list_box .icon_image {
  width: 120px;
  margin-right: 1em;
  margin-bottom: 0;
  overflow: hidden;
}

.list_box .icon_image img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.list_box .main_area {
  width: calc(100% - 120px - 1em);
}

.list_box .time {
  line-height: 1;
  margin-bottom: 0.5em;
}

.list_box time {
  font-size: 0.9375rem;
  color: #A0826E;
}

.list_box .title {
  font-family: "-apple-system", "Arial", "Yu Gothic", YuGothic,'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', Verdana, "M+ 1p", sans-serif;
  font-size: 1.125rem;
  font-weight: bold;
  color: #5A3C32;
  line-height: 1.4em;
  margin-bottom: 0;
  padding-left: 0.8em;
  text-indent: -0.8em;
  transition: .3s;
  position: relative;
}

.list_box .title:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 0.5em;
  height: 0.5em;
  border-top: 2px solid #E8AE5E;
  border-right: 2px solid #E8AE5E;
  transform: rotate(45deg);
  margin-right: 0.2em;
}

.list_box .comment_text {
  margin-top: 0.4em;
}

.list_box .comment_text,
.list_box .comment_text p {
  font-size: 0.9375rem;
  font-weight: normal;
  color: #5A3C32;
  line-height: 1.75;
}

.list_box .comment_text p {
  margin-bottom: 0;
}

.list_box .comment_text font {
  font-size: 0.9375rem !important;
}

.list_box.noimage .main_area {
  width: auto;
}

.listbox_3_col,
.listbox_2_col {
  display: inline-block;
  vertical-align: top;
  padding: 0;
  width: 30.82%;
  margin: 0 0.9% 2em;
}

.listbox_3_col a,
.listbox_2_col a {
  display: block;
}

.listbox_3_col a, .listbox_3_col a:link,
.listbox_2_col a,
.listbox_2_col a:link {
  text-decoration: none;
}

.listbox_3_col a .title_area .text_area,
.listbox_2_col a .title_area .text_area {
  position: relative;
}

.listbox_3_col a .title_area .text_area:after,
.listbox_2_col a .title_area .text_area:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0.8em;
  width: 0.5em;
  height: 0.5em;
  border-top: 2px solid #E8AE5E;
  border-right: 2px solid #E8AE5E;
  transform: translateY(-50%) rotate(45deg);
}

.listbox_3_col a:hover,
.listbox_2_col a:hover {
  opacity: 0.7;
}

.listbox_3_col a:hover .image_area img,
.listbox_2_col a:hover .image_area img {
  transform: scale(1.1);
}

.listbox_3_col a:hover .title,
.listbox_2_col a:hover .title {
  text-decoration: none;
}

.listbox_3_col .title_area,
.listbox_2_col .title_area {
  background-color: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 3px rgba(211, 191, 161, 0.3);
  overflow: hidden;
  transition: .3s;
}

.listbox_3_col .title_area p,
.listbox_2_col .title_area p {
  margin-bottom: 0;
}

.listbox_3_col .image_area,
.listbox_2_col .image_area {
  overflow: hidden;
}

.listbox_3_col .image_area img,
.listbox_2_col .image_area img {
  width: 100%;
  height: auto;
  transition: .5s;
}

.listbox_3_col .text_area,
.listbox_2_col .text_area {
  padding: 1.1em 1em 1.1em 2em;
}

.listbox_3_col .text_area .title,
.listbox_2_col .text_area .title {
  font-size: 1.1875rem;
  font-weight: bold;
  line-height: 1.5;
  color: #5A3C32;
}

.listbox_3_col .comment,
.listbox_2_col .comment {
  margin-top: 0.6em;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #5A3C32;
}

.listbox_3_col .comment p,
.listbox_2_col .comment p {
  margin-bottom: 0.2em;
}

.listbox_3_col.noimage .text_area,
.listbox_2_col.noimage .text_area {
  padding: 1.4em 1em 1.4em 2em;
}

.listbox_3_col.circle_image_box .title_area,
.listbox_2_col.circle_image_box .title_area {
  border-radius: 0;
  background: none;
  box-shadow: none;
}

.listbox_3_col.circle_image_box .title_area .image_area,
.listbox_2_col.circle_image_box .title_area .image_area {
  width: 260px;
  height: 260px;
  margin: 0 auto 1em;
  position: relative;
  overflow: visible;
}

.listbox_3_col.circle_image_box .title_area .image_area .image_wrap,
.listbox_2_col.circle_image_box .title_area .image_area .image_wrap {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.listbox_3_col.circle_image_box .title_area .image_area img,
.listbox_2_col.circle_image_box .title_area .image_area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  font-family: 'object-fit: cover;object-position: center center;';
}

.listbox_3_col.circle_image_box .title_area .image_area .num,
.listbox_2_col.circle_image_box .title_area .image_area .num {
  font-family: "Times New Roman", Times, "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", 'Noto Serif JP', serif;
  font-size: 3.125rem;
  font-weight: normal;
  font-style: italic;
  color: #D3BFA1;
  line-height: 1;
  position: absolute;
  top: 10px;
  left: 5px;
}

.listbox_3_col.circle_image_box .title_area .image_area.with_white_title,
.listbox_2_col.circle_image_box .title_area .image_area.with_white_title {
  margin-bottom: 2.6em;
}

.listbox_3_col.circle_image_box .title_area .image_area.with_white_title .white_title,
.listbox_2_col.circle_image_box .title_area .image_area.with_white_title .white_title {
  font-size: 5.625rem;
  color: #fff;
  text-align: center;
  line-height: 1;
  margin-bottom: 0;
  position: absolute;
  bottom: -0.4em;
  left: 0;
  width: 100%;
}

.listbox_3_col.circle_image_box .title_area .text_area,
.listbox_2_col.circle_image_box .title_area .text_area {
  padding: 0;
}

.listbox_3_col.circle_image_box .title_area .text_area .title,
.listbox_2_col.circle_image_box .title_area .text_area .title {
  font-family: "Times New Roman", Times, "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", 'Noto Serif JP', serif;
  font-size: 1.375rem;
  font-weight: bold;
  text-align: center;
}

.listbox_3_col.circle_image_box .title_area .text_area:after,
.listbox_2_col.circle_image_box .title_area .text_area:after {
  display: none;
}

.listbox_3_col.circle_image_box .comment,
.listbox_2_col.circle_image_box .comment {
  margin-top: 0.8em;
}

.listbox_3_col.products_list,
.listbox_2_col.products_list {
  margin-bottom: 3em;
}

.listbox_3_col.products_list a:hover,
.listbox_2_col.products_list a:hover {
  border-color: #D6893C;
}

.listbox_3_col.products_list a:hover .text_area .link_more,
.listbox_2_col.products_list a:hover .text_area .link_more {
  border-color: #D6893C;
}

.listbox_3_col.products_list .image_area,
.listbox_2_col.products_list .image_area {
  margin-bottom: 0.8em;
  position: relative;
  overflow: visible;
}

.listbox_3_col.products_list .image_area &gt; img,
.listbox_2_col.products_list .image_area &gt; img {
  border-radius: 10px;
}

.listbox_3_col.products_list .image_area .icon,
.listbox_2_col.products_list .image_area .icon {
  position: absolute;
  top: 0;
  left: 10px;
  display: block;
}

.listbox_3_col.products_list .text_area,
.listbox_2_col.products_list .text_area {
  padding: 0;
  text-align: center;
}

.listbox_3_col.products_list .text_area .title,
.listbox_2_col.products_list .text_area .title {
  margin-bottom: 0.2em;
}

.listbox_3_col.products_list .text_area .link_more,
.listbox_2_col.products_list .text_area .link_more {
  font-size: 0.875rem;
  border-bottom: solid 1px #503200;
  display: inline-block;
  padding: 0 0.3em;
  letter-spacing: 0.08em;
}

.listbox_2_col,
.link_bg_photo,
.lineup_box {
  display: inline-block;
  vertical-align: top;
  padding: 0;
  width: 46%;
  margin: 0 1.7% 3em;
}

.listbox_2_col {
  margin-bottom: 2em;
}

.listbox_2_col .title_area {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.listbox_2_col .image_area {
  width: 110px;
  height: 110px;
}

.listbox_2_col .image_area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: 'object-fit: cover;';
}

.listbox_2_col .text_area {
  width: calc(100% - 110px);
}

.listbox_2_col.noimage .title_area {
  display: block;
}

.listbox_2_col.noimage .text_area {
  width: auto;
}

.link_bg_photo {
  margin-bottom: 2.5em;
}

.link_bg_photo.link_big_btn {
  width: 96%;
  text-align: center;
}

.link_bg_photo.link_big_btn .title_area {
  min-height: 15em;
}

.link_bg_photo.link_big_btn .title_area:before {
  display: none;
}

.link_bg_photo.link_big_btn .text_area .title {
  display: block;
  position: relative;
  color: #5A3C32;
  font-size: 2em;
  letter-spacing: 0.05em;
  text-shadow: 0 0 10px #fff;
}

.link_bg_photo.link_big_btn .text_area .title:after {
  content: "";
  display: block;
  width: 60%;
  height: 5em;
  background: url(../images/page_title_shadow_w.png) no-repeat center center;
  background-size: 100% 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  transform: translate(-50%, -50%);
}

.link_bg_photo.link_big_btn a .text_area:after {
  display: none;
}

.link_bg_photo.link_big_btn a:hover {
  color: #5A3C32;
}

.link_bg_photo.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.link_bg_photo .bnr_btn {
  display: inline-block;
  background: #E8AE5E;
  text-shadow: none;
  padding: 0.5em 1em 0.3em;
  border-radius: 2.5em;
  font-size: 1.1rem;
  line-height: 1.4;
  margin-top: 1em;
  color: #fff;
}

.link_bg_photo a {
  display: block;
}

.link_bg_photo a, .link_bg_photo a:link {
  text-decoration: none;
}

.link_bg_photo a .text_area {
  padding-right: 2.1em;
}

.link_bg_photo a .text_area:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 1.3em;
  width: 0.7em;
  height: 0.7em;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}

.link_bg_photo a:hover {
  opacity: 0.7;
}

.link_bg_photo a:hover .title_area .image_area img {
  transform: scale(1.1);
}

.link_bg_photo .title_area {
  position: relative;
  z-index: 1;
  border-radius: 14px;
  overflow: hidden;
  min-height: 10.5em;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.link_bg_photo .title_area:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background-color: rgba(90, 60, 50, 0.35);
}

.link_bg_photo .image_area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  margin-bottom: 0;
}

.link_bg_photo .image_area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  font-family: 'object-fit: cover;object-position: center center;';
  transition: .5s;
}

.link_bg_photo .text_area {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  padding: 1.3em;
}

.link_bg_photo .text_area .title {
  font-family: "Times New Roman", Times, "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", 'Noto Serif JP', serif;
  font-size: 1.75rem;
  font-weight: bold;
  line-height: 1.5;
  color: #fff;
  margin-bottom: 0;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.link_bg_photo .comment {
  margin-top: 0.8em;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #5A3C32;
}

.link_bg_photo .comment p {
  margin-bottom: 0;
}

.lineup_box .title_area {
  position: relative;
  height: 235px;
  margin-bottom: 1.3em;
}

.lineup_box .title_area .image_area {
  overflow: hidden;
  height: 100%;
  border-radius: 14px;
  margin-bottom: 0;
}

.lineup_box .title_area .image_area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  font-family: 'object-fit: cover;object-position: center;';
  transition: .3s;
}

.lineup_box .title_area .title {
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 1.5rem;
  line-height: 1;
  font-weight: bold;
  background-color: #FFFAF3;
  margin-bottom: -0.5em;
  padding: 0.8em 2em 0.5em 0;
  border-top-right-radius: 0.875rem;
}

.lineup_box .title_area .title:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 1em;
  width: 0.4em;
  height: 0.4em;
  border-top: 2px solid #E8AE5E;
  border-right: 2px solid #E8AE5E;
  transform: translateY(-50%) rotate(45deg);
}

.lineup_box .title_area a {
  display: block;
  height: 100%;
}

.lineup_box .title_area a, .lineup_box .title_area a:link {
  text-decoration: none;
}

.lineup_box .title_area a:hover img {
  transform: scale(1.06);
}

.lineup_box ul li {
  font-size: 1rem;
}

.lineup_box ul li a, .lineup_box ul li a:link {
  text-decoration: none;
  color: #D6893C;
}

.lineup_box ul li a:hover {
  text-decoration: underline;
}

.lineup_box ul.two_columns {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  height: 21.5em;
}

.lineup_box ul.two_columns &gt; li {
  width: 50%;
}

#conts .lineup_box ul {
  margin: 0;
}

#conts .lineup_box ul li {
  padding-left: 1em;
  text-indent: -1em;
  margin-bottom: 0.8em;
}

#conts .lineup_box ul li:last-child {
  margin-bottom: 0;
}

#conts .lineup_box ul li:before {
  content: "";
  border-radius: 0;
  width: 0.63em;
  height: 1px;
  margin-right: 0.37em;
}

/*image背景ボタンリスト*/
.bg_img_btn a {
  display: block;
  background: no-repeat;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

/*image100%*/
.img_wide {
  width: 100%;
}

/*button design*/
/*ボタン*/
form input.submit_btn {
  display: inline-block;
  position: relative;
  display: inline-block;
  background: #ddc06e url(../images/icon.png) no-repeat 50px center;
  border: 0;
  min-width: 300px;
  padding: 0.9em 20px 0.9em 40px;
  margin: 0 auto;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
  vertical-align: middle;
  letter-spacing: 0.2em;
  border-radius: 0;
}

form input.submit_btn:hover {
  opacity: 0.8;
}

a.btn,
button.btn,
.btn a,
#myreset,
form input.submit_btn {
  display: inline-block;
  position: relative;
  display: inline-block;
  background: #000 url(../images/icon_arrow_white_r.png) no-repeat right 20px center;
  border: solid 2px #fff;
  width: 48%;
  padding: 0.9em 1em 0.9em 0.9em;
  margin: 0 0.9% 0.5em;
  text-align: center;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.4;
  vertical-align: middle;
  letter-spacing: 0.2em;
  border-radius: 0;
  color: #fff;
}

a.btn:hover,
button.btn:hover,
.btn a:hover,
#myreset:hover,
form input.submit_btn:hover {
  background: #fff url(../images/icon_arrow_black_r.png) no-repeat right 20px center;
  border: solid 2px #000;
  color: #000;
}

a.btn:link,
.btn a:link {
  color: #fff;
}

/* ２列ボタン */
.button_2_column {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 2em;
}

.button_2_column .btn {
  display: block;
  width: 48%;
  margin-bottom: 1.1em;
}

.button_2_column .btn a {
  display: block;
  margin: 0;
  width: 100%;
}

a.btn.btn_simple {
  background: #000;
  color: #fff;
  border: none;
  font-size: 1em;
  padding: 0.5em 3em;
  min-width: 0;
}

a.btn.btn_simple:hover {
  color: #fff;
}

/*戻る*/
a.btn.back,
button.btn.back,
.btn.back a,
button.btn.back:hover {
  margin-right: 20px;
  background: url(../images/icon_back.png) no-repeat 20px center;
  color: #7b6737;
  padding-left: 40px;
  padding-right: 20px;
  border: 0;
}

/*icon*/
.btn_icon {
  display: inline-block;
  background: url(../images/icon.png) no-repeat left center;
  padding: 2px 0 2px 30px;
  margin-top: 1.5em;
}

.btn_icon.btn_dl {
  background-image: url(../images/icon_dl.png);
}

/*wide*/
a.btn_wide {
  display: block;
  background: #000;
  color: #fff;
  width: 100%;
  margin: 0;
  padding: 0.8em 10px;
  font-size: 1.9em;
  letter-spacing: 0.2em;
}

a.btn:hover,
button:hover,
.btn a:hover,
#myreset:hover,
.btn_icon:hover,
a.btn_wide:hover,
form input.submit_btn:hover {
  opacity: 0.8;
}

a.btn:hover,
.btn a:hover,
button:hover {
  color: #333;
}

/*table*/
/* テーブル */
table {
  width: 100%;
  padding: 0;
  margin-bottom: 2.5em;
  border-collapse: collapse;
  vertical-align: top;
  border: 1px solid #D3BFA1;
}

table img {
  max-width: 100% !important;
}

table caption {
  font-size: 1.125rem;
  font-weight: bold;
  background-color: transparent;
  text-align: center;
  padding: 0.7em 0.7em;
}

table th, table td {
  border: 1px dashed #D3BFA1;
}

table th {
  width: auto;
  padding: 0.6em 0.7em;
  white-space: nowrap;
  text-align: left;
}

table td {
  padding: 0.7em 0.5em;
  text-align: left;
}

table thead th {
  background-color: #5A3C32;
  font-weight: bold;
  border-bottom: none;
  color: #fff;
}

table tbody th {
  background-color: rgba(241, 232, 223, 0.7);
}

table tbody tr:first-of-type th, table tbody tr:first-of-type td {
  border-top-style: solid;
}

.table_line {
  width: 100%;
  border: none;
}

.table_line.line_top {
  border-top: 1px dashed #c6b294;
}

.table_line th, .table_line td {
  border: none;
  border-top: 1px dashed #c6b294;
  border-bottom: 1px dashed #c6b294;
}

.table_line th {
  padding: 0.7em 0.5em 0.7em 0.7em;
  background: none;
  text-align: left;
  vertical-align: top;
  font-weight: bold;
}

.table_line td {
  padding: 0.7em 0.7em 0.7em 0.5em;
  vertical-align: top;
}

.table_line tbody tr:first-of-type th, .table_line tbody tr:first-of-type td {
  border-top: none;
}

/* フォーム画面
====================================================================================================================================== */
form#inputForm {
  text-align: center;
}

table.table_form th, table.table_form td {
  display: block;
  width: 100%;
}

table.table_form th {
  border-bottom: none;
  padding-bottom: 0;
}

table.table_form td {
  border-top: none;
}

form input,
form button {
  font-size: 14px;
}

form button {
  font-size: 18px;
}

form input[type="text"],
form input[type="email"],
form textarea {
  background: #e6e6e6;
  border: solid 2px #e6e6e6;
  color: #333;
  box-shadow: none !important;
  outline: none;
  padding: 13px 18px;
  font-size: 16px;
  font-weight: normal;
  border-radius: 0;
  transition: background-color 0.3s, color 0.3s;
}

form input[type="text"],
form input[type="email"] {
  width: 100%;
}

form textarea {
  width: 100%;
  height: 220px;
  line-height: 1.6;
}

form select {
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  width: calc(100% - 2em);
  border: 1px solid #ccc;
  background: #fff;
  border-radius: 0;
  font-size: 1rem;
  height: 2.9em;
  padding-left: 0.8em;
  padding-right: 0.8em;
}

input[type="radio"] {
  margin-right: 2px;
}

label {
  display: inline-block;
  margin-right: 1em;
}

form.assisted_form table td .input_alert {
  display: none;
}

#conts .table_form td ul[id^="formtools_qa"] {
  overflow: visible;
  margin-bottom: 0;
  letter-spacing: -.4em;
}

#conts .table_form td ul[id^="formtools_qa"] li {
  display: inline-block;
  letter-spacing: normal;
  padding-left: 0;
  margin-bottom: 0.4em;
  margin-right: 1em;
  white-space: nowrap;
}

#conts .table_form td ul[id^="formtools_qa"] li:before {
  display: none;
}

#conts .table_form td ul[id^="formtools_qa"] li:last-child {
  margin-bottom: 0;
}

#conts .table_form ul li {
  text-indent: 0;
}

form .button_area {
  margin-bottom: 2em;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
}

.form_btn {
  display: block;
  width: 350px;
  text-align: center;
  transition: 0.3s;
  padding: 1em 0 1em 0.5em;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.35em;
  border: 1px solid #af9b80;
  background-color: transparent;
  background-image: url(../images/icon_arrow_brown_l.png);
  background-repeat: no-repeat;
  background-position: left 32px center;
  font-family: "Times New Roman", Times, "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", 'Noto Serif JP', serif;
  color: #5A3C32;
}

.form_btn:hover {
  color: #fff;
  background-image: url(../images/icon_arrow_white_l.png);
  background-color: #5A3C32;
}

.form_btn + input.form_btn {
  margin-left: 1em;
}

input.form_btn.btn_submit,
a.form_btn.go_home {
  background-color: #503714;
  background-image: url(../images/icon_arrow_white_r.png);
  color: #fff;
  background-position: right 32px center;
  padding-right: 0.5em;
  padding-left: 0;
}

input.form_btn.btn_submit:hover,
a.form_btn.go_home:hover {
  background-color: transparent;
  background-image: url(../images/icon_arrow_brown_r.png);
  color: #5A3C32;
}

/*confilm*/
.error {
  color: #f33;
  font-weight: normal;
}

.error:before {
  content: "※";
}

/*確認*/
form table {
  margin-bottom: 2em;
}

.form_send h2 {
  margin-top: 1.5em;
  margin-bottom: 1em;
}

form .column02 {
  overflow: hidden;
}

/*form .column02 dt { float:left; width:27%; margin-bottom:0; }
form .column02 dd { float:left; width:73%; }*/
form .form_file_group {
  margin-bottom: 20px;
  overflow: hidden;
}

form .file_list {
  margin-bottom: 10px;
  overflow: hidden;
}

form .form_tit {
  clear: both;
  letter-spacing: 0.2em;
  padding-right: 10px;
}

/* color box
====================================================================================================================================== */
/*box*/
.point_box {
  border: 1px solid #d3bfa1;
  background: #fff;
  border-radius: 5px;
  padding: 1.2em;
  margin-bottom: 1.5em;
}

/*画像で見出しを作る用（スタイルを強制リセット）*/
h1.plane,
h2.plane,
h3.plane,
h4.plane,
h5.plane {
  background: none !important;
  border: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-top: !important;
}

h1.plane:after,
h2.plane:after,
h3.plane:after,
h4.plane:after,
h5.plane:after {
  display: none !important;
}

h1.plane img,
h2.plane img,
h3.plane img,
h4.plane img,
h5.plane img {
  margin: 0;
  max-width: none;
}

/*adjust*/
.clear {
  clear: both;
}

.ma0 {
  margin: 0 !important;
}

.mab0 {
  margin-bottom: 0 !important;
}

.mab5 {
  margin-bottom: 5px !important;
}

.mab10 {
  margin-bottom: 10px !important;
}

.mab20 {
  margin-bottom: 20px !important;
}

.mab30 {
  margin-bottom: 30px !important;
}

.mab40 {
  margin-bottom: 40px !important;
}

.mab1em {
  margin-bottom: 1em !important;
}

.mab15em {
  margin-bottom: 1.5em !important;
}

.mab2em {
  margin-bottom: 2em !important;
}

.mab25em {
  margin-bottom: 2.5em !important;
}

.mab3em {
  margin-bottom: 3em !important;
}

.mab35em {
  margin-bottom: 35em !important;
}

.mat0 {
  margin-top: 0 !important;
}

.mat5 {
  margin-top: 5px !important;
}

.mat10 {
  margin-top: 10px !important;
}

.mat20 {
  margin-top: 20px !important;
}

.mat30 {
  margin-top: 30px !important;
}

.mat-10 {
  margin-top: -10px !important;
}

.mat-20 {
  margin-top: -20px !important;
}

.mat-30 {
  margin-top: -30px !important;
}

.mar10 {
  margin-right: 10px !important;
}

.mar20 {
  margin-right: 20px !important;
}

.mal10 {
  margin-left: 10px !important;
}

.mal20 {
  margin-left: 20px !important;
}

.pa0 {
  padding: 0 !important;
}

.pat0 {
  padding-top: 0 !important;
}

.pab0 {
  padding-bottom: 0 !important;
}

.pat15 {
  padding-top: 15px !important;
}

/*font size*/
.font_xs {
  font-size: 0.75em;
}

.font_sm {
  font-size: 0.85em;
}

.font_la {
  font-size: 1.2em;
}

.font_lm {
  font-size: 1.6em;
}

.font_xl {
  font-size: 2em;
}

.font_normal {
  font-weight: normal !important;
}

.font_bold {
  font-weight: bold !important;
}

.text_center {
  text-align: center !important;
}

.text_right {
  text-align: right !important;
}

.text_left {
  text-align: left !important;
}

.font_0 {
  font-size: 0;
}

.font_plus {
  font-size: 1.07em;
}

/*kerning*/
.kerning0 {
  letter-spacing: 0;
}

.kerning {
  letter-spacing: -0.05em;
}

.kerning01 {
  letter-spacing: -0.1em;
}

.kerning02 {
  letter-spacing: -0.25em;
}

.kerning03 {
  letter-spacing: -0.5em;
}

.kerning_plus {
  letter-spacing: 0.25em;
}

/*行間詰め*/
.line_height_min {
  line-height: 1.6;
}

/*文字間*/
.letter {
  letter-spacing: 0.08em;
}

/*タイトル調整用*/
.kerning_tit {
  letter-spacing: 0.27em;
}

.kerning_tit_m {
  letter-spacing: 0.17em;
}

.kerning_tit_m02 {
  letter-spacing: 0.1em;
}

.font_num {
  font-size: 1.05em;
}

/*文字にアンチエイリアスを効かせる*/
.font_smoothing {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* フォント調整 */
.font_mincho {
  font-family: "Times New Roman", Times, "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", 'Noto Serif JP', serif;
}

.font_ubuntu {
  font-family: 'Ubuntu Condensed', sans-serif;
}

/* 文章枠用CSS
====================================================================================================================================== */
p,
.common_box .text_box {
  margin-bottom: 1.7em;
}

img.brclear {
  display: block;
  margin: 0 auto 1em;
}

/*リード文*/
.lead_text {
  font-size: 1.375rem;
  text-align: center;
}

/*スタンダード（画像右／左寄せ）*/
.common_box {
  overflow: visible;
}

.common_box:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

.common_box .img_box, :not(.img_box) img.left {
  float: left;
  margin-right: 20px;
  max-width: 50%;
  width: auto;
  margin-top: 0.6em;
  font-size: 12px;
  line-height: 1.7;
}

.common_box .img_box.auto_width img {
  width: auto;
}

.common_box .text_box {
  overflow: hidden;
}

/*右*/
.common_box.right .img_box, :not(.img_box) img.right {
  float: right;
  margin-right: 0;
  margin-left: 20px;
}

/*画像3つ並び*/
.photo_3column {
  overflow: hidden;
  text-align: center;
}

.photo_3column img {
  float: left;
  width: 33.3333%;
  border-radius: 4px;
}

/*画像3つ並び（ページ内）*/
.photo_3column_in {
  margin: 2em 0;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
}

.photo_3column_in img {
  width: 31.5%;
  height: auto;
  border-radius: 4px;
}

/*画像2つ並び（ページ内）*/
.photo_2column_in {
  margin: 4% 0;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
}

.photo_2column_in img {
  width: 48%;
  height: auto;
  border-radius: 4px;
}

/* ２列入力枠 */
.two_column_box {
  margin: 0 -1.5% 1.5em;
}

.two_column_box .half_box {
  float: left;
  width: 50%;
  padding: 0 1.5%;
}

.two_column_box:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

.section_bg_dark {
  background-color: #F1E8DF;
  padding: 3.5em 0 2.5em;
}

#other_products, #oishisa {
  margin-bottom: -3em;
}

#oishisa {
  margin-top: 3em;
  margin-left: calc((1200px - 980px) / -2);
  margin-right: calc((1200px - 980px) / -2);
  max-width: auto;
  max-width: initial;
}

#oishisa .oishisa_wrapper {
  position: relative;
}

#oishisa .illust_stamp {
  position: absolute;
  top: -95px;
  right: -145px;
  width: 304px;
}

#oishisa .illust_stamp img {
  width: 100%;
}

#oishisa .oishisa_list {
  display: flex;
  justify-content: space-between;
  margin: 0 -30px 2em;
}

#oishisa .circle_image_box {
  display: block;
  width: 30.77%;
  margin: 0;
}

@media screen and (min-width: 1200px) {
  #oishisa {
    margin-left: calc((100vw - 100%) / -2);
    margin-right: calc((100vw - 100%) / -2);
  }
}

@media screen and (max-width: 768px) {
  /*default heading*/
  h1.page_title {
    font-size: 2.125rem;
  }
  h2 {
    font-size: 1.7125rem;
  }
  h2:before {
    width: 55px;
  }
  h2.en {
    font-size: 2.3125rem;
  }
  h2.line {
    font-size: 1.2rem;
  }
  h3 {
    font-size: 1.4375rem;
  }
  h4 {
    font-size: 1.2em;
  }
  h5 {
    font-size: 1.1875rem;
  }
  /*画像*/
  .wide_photo_image {
    margin-top: 1.4em;
  }
  .wide_photo_image.in {
    margin: 1em 0 2em;
  }
  .wide_photo_image .caption {
    font-size: 0.7em;
  }
  .full_width_image {
    margin-left: -20px !important;
    margin-right: -20px !important;
  }
  .full_width_image.img_tit img {
    height: 80vw;
  }
  .full_width_image.img_tit h2 {
    width: 14em;
    margin-left: -7em;
  }
  .full_width_sp {
    margin: -3em -20px 2em;
  }
  /*container*/
  .section_box {
    padding: 0;
  }
  .top_line {
    margin-top: 3px;
    padding-top: 2em;
  }
  .bg_pattern {
    margin-left: -20px !important;
    margin-right: -20px !important;
  }
  /*button design*/
  a.btn,
  .btn a,
  #myreset {
    background-size: auto 13px;
    font-size: 1.125rem;
  }
  /*戻る*/
  a.btn.back,
  .btn.back a {
    min-width: 30%;
    background-size: auto 13px;
  }
  /* ２列ボタン */
  .button_2_column .btn {
    width: 49%;
    margin-bottom: 1em;
  }
  /*icon*/
  .btn_icon {
    padding: 2px 0 2px 22px;
    background-size: 10px auto;
    margin-top: 0.6em;
  }
  .btn_icon.back {
    background-size: 8px auto;
  }
  /*wide*/
  a.btn_wide {
    padding: 0.6em 10px;
    font-size: 1.4em;
    letter-spacing: 0.1em;
  }
  /* フォーム画面
  ====================================================================================================================================== */
  form input[type="text"],
  form textarea {
    padding: 7px 10px;
  }
  .form_btn {
    width: 49%;
    max-width: 250px;
    background-size: 10px auto;
    background-position: left 15px center;
  }
  .form_btn + input.form_btn {
    margin-left: 1%;
  }
  input.form_btn.btn_submit,
  a.form_btn.go_home {
    background-position: right 15px center;
  }
  /* ====================================================================================================================================== */
  /*3列ボックス*/
  .box_3_column {
    margin: 0 -0.6% 1.5em;
  }
  .box_3_column .box {
    padding: 0 0.6%;
    margin-bottom: 1.5em;
  }
  /*2列ボックス*/
  .box_2_column {
    overflow: hidden;
    margin: 0 -0.6% 1.5em;
  }
  .box_2_column .box {
    padding: 0 0.6%;
    margin-bottom: 1.5em;
  }
  /*横並びボックス*/
  .listbox_3_col,
  .listbox_2_col {
    width: 47%;
    margin: 0 1.1% 2em;
  }
  .listbox_3_col.circle_image_box .title_area .image_area,
  .listbox_2_col.circle_image_box .title_area .image_area {
    width: 28vw;
    height: 28vw;
  }
  .listbox_3_col.circle_image_box .title_area .image_area .num,
  .listbox_2_col.circle_image_box .title_area .image_area .num {
    top: 0;
    font-size: 7vw;
  }
  .listbox_3_col.circle_image_box .title_area .image_area.with_white_title .white_title,
  .listbox_2_col.circle_image_box .title_area .image_area.with_white_title .white_title {
    font-size: 9.5vw;
  }
  .listbox_3_col.circle_image_box .title_area .text_area .title,
  .listbox_2_col.circle_image_box .title_area .text_area .title {
    font-size: 1.3125rem;
  }
  .listbox_2_col .image_area {
    width: 100px;
    height: 100px;
  }
  .listbox_2_col .text_area {
    width: calc(100% - 100px);
  }
  .lineup_box .title_area {
    height: 180px;
  }
  .lineup_box .title_area .title {
    font-size: 1.125rem;
  }
  .listbox_2_col,
  .link_bg_photo,
  .lineup_box {
    margin-bottom: 3em;
  }
  .link_bg_photo.link_big_btn {
    width: 100%;
  }
  .link_bg_photo.link_big_btn .title_area {
    min-height: 13em;
  }
  .link_bg_photo.link_big_btn .title_area .title {
    font-size: 1.5em;
  }
  #oishisa {
    margin-left: -20px;
    margin-right: -20px;
  }
  #oishisa .illust_stamp {
    top: -80px;
    right: -20px;
    width: 155px;
  }
  #oishisa .oishisa_list {
    margin-left: 0;
    margin-right: 0;
  }
  #oishisa .circle_image_box {
    width: 32%;
  }
}

@media screen and (max-width: 540px) {
  /*default heading*/
  h1.page_title {
    font-size: 1.875rem;
  }
  h2 {
    font-size: 1.625rem;
  }
  h2.en {
    font-size: 2rem;
    padding-top: 1em;
  }
  h2.line {
    font-size: 1.1875rem;
  }
  h2:before {
    width: 47px;
    height: 29px;
  }
  h3 {
    font-size: 1.3125rem;
  }
  h4 {
    font-size: 1.1875rem;
  }
  h5 {
    font-size: 1.125rem;
  }
  /* テーブル */
  table {
    font-size: 0.9em;
  }
  table caption {
    font-size: 1.0625rem;
  }
  table thead th {
    white-space: normal;
  }
  .common_box .img_box, :not(.img_box) img.left {
    display: block;
    float: none;
    text-align: center;
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
    max-width: auto;
    max-width: initial;
  }
  .common_box.right .img_box, :not(.img_box) img.right {
    float: none;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  :not(.img_box) img.left, :not(.img_box) img.right {
    margin-bottom: 1em;
  }
  /*news list*/
  #conts .article_list li {
    margin: 0 -20px;
    padding: 1.2em 20px;
    flex-wrap: wrap;
  }
  #conts .article_list li time {
    margin-right: 0;
  }
  #conts .article_list li a {
    width: 100%;
    margin-top: 0.3em;
  }
  .bg_pattern:before {
    height: 15px;
  }
  .bg_pattern:after {
    height: 15px;
  }
  /*button design*/
  a.btn,
  .btn a,
  #myreset {
    display: block;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    background-size: auto 13px;
    font-size: 1.0625rem;
  }
  /* ２列ボタン */
  .button_2_column {
    display: block;
  }
  .button_2_column .btn {
    width: 100%;
    margin-bottom: 0.5em;
  }
  /*3列ボックス*/
  .box_3_column {
    margin: 0 0 1.5em;
  }
  .box_3_column .box {
    float: none;
    width: 100%;
    max-width: 280px;
    padding: 0;
    margin: 0 auto 1.5em;
  }
  /*2列ボックス*/
  .box_2_column {
    overflow: hidden;
    margin: 0 0 1.5em;
  }
  .box_2_column .box {
    float: none;
    width: 100%;
    padding: 0;
    margin-bottom: 1.5em;
  }
  .button_area {
    display: block;
  }
  .button_area a {
    width: 100%;
  }
  .button_area a.gold {
    min-width: 70%;
    font-size: 1.275rem;
  }
  .listbox_3_col .title_area,
  .listbox_2_col .title_area {
    border-radius: 10px;
  }
  .link_bg_photo .title_area {
    border-radius: 10px;
  }
  /* フォーム画面
  ====================================================================================================================================== */
  form .button_area {
    display: block;
  }
  .form_btn {
    display: block;
    width: 100%;
    max-width: initial;
    background-size: 10px auto;
    margin-left: auto;
    margin-right: auto;
  }
  .form_btn + input.form_btn {
    margin-top: 1em;
    margin-left: auto;
  }
  /*
  ====================================================================================================================================== */
  /*索引*/
  .list_box .icon_image {
    width: 100px;
  }
  .list_box .main_area {
    width: calc(100% - 100px - 1em);
  }
  /*横並びボックス*/
  .listbox_3_col a .title_area .text_area:after {
    width: 0.45em;
    height: 0.45em;
    left: 0.6em;
  }
  .listbox_3_col .text_area {
    padding: 0.9em 0.5em 0.9em 1.7em;
  }
  .listbox_3_col .text_area .title {
    font-size: 0.9375rem;
  }
  .listbox_3_col.circle_image_box {
    display: block;
    width: auto;
    margin-left: 0;
    margin-right: 0;
  }
  .listbox_3_col.circle_image_box .title_area .image_area {
    width: 55vw;
    height: 55vw;
  }
  .listbox_3_col.circle_image_box .title_area .image_area .num {
    top: 3px;
    font-size: 12vw;
  }
  .listbox_3_col.circle_image_box .title_area .image_area.with_white_title .white_title {
    font-size: 17vw;
  }
  .link_bg_photo,
  .lineup_box,
  .listbox_2_col {
    display: block;
    width: auto;
    margin-left: 0;
    margin-right: 0;
  }
  .link_bg_photo .title_area {
    min-height: 8.5em;
  }
  .link_bg_photo .text_area .title {
    font-size: 1.625rem;
  }
  .lineup_box {
    margin-left: -20px;
    margin-right: -20px;
  }
  .lineup_box .title_area .image_area {
    border-radius: 0;
  }
  .lineup_box .title_area .title {
    padding-left: 20px;
  }
  .lineup_box ul {
    padding-left: 20px;
  }
  .lineup_box ul.two_columns {
    display: block;
    height: auto;
  }
  .lineup_box ul.two_columns &gt; li {
    width: auto;
  }
  .products_list .image_area .icon {
    width: 55px;
  }
  .products_list .text_area .title {
    font-size: 0.9375rem;
  }
  .topics_list li {
    width: auto;
    border-top: 1px solid #c2ae90;
    border-bottom: 1px solid #c2ae90;
    margin-top: -1px;
  }
  .topics_list li a {
    padding: 1em 25px 1em 20px;
    background: url(../images/icon_arrow_brown_r.png) no-repeat right 10px center;
  }
  .topics_list li figure {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  .topics_list li figure .icon_image {
    width: 120px;
    margin-bottom: 0;
  }
  .topics_list li figure figcaption {
    width: calc(100% - 120px - 0.8em);
  }
  .topics_list li figure time {
    font-size: 0.875rem;
  }
  .topics_list li figure .title {
    font-size: 0.9375rem;
  }
  #oishisa .illust_stamp {
    top: -75px;
    width: 130px;
  }
  #oishisa .oishisa_list {
    display: block;
  }
  #oishisa .circle_image_box {
    width: auto;
    margin-bottom: 2em;
  }
}

@media screen and (max-width: 320px) {
  .full_width_image {
    margin-left: 15px !important;
    margin-right: 15px !important;
  }
  /*news list*/
  #conts .article_list li {
    margin: 0 -15px;
    padding-left: 15px;
    padding-right: 15px;
  }
  #oishisa {
    margin-left: -15px;
    margin-right: -15px;
  }
  #oishisa .illust_stamp {
    right: -15px;
  }
}
</pre></body></html>