@charset "UTF-8";
/* #Default
   -------------------------------------------------------------------------- */
/**
 * ブラウザの持っているスタイルの一部リセット
 */
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td, figure {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

ul, ol {
  list-style: none;
}

fieldset, img {
  border: 0;
}

address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
  font-weight: normal;
}

/* ===================
画像余白クリア
===================*/
img {
  font-size: 0;
  line-height: 0;
  vertical-align: top;
}

/* ===================
共通変数
===================*/
/* ===================
ブレークポイント
===================*/
/* #Base
   -------------------------------------------------------------------------- */
/**
* Baseレイヤーにはプロジェクトにおける、基本的なベーススタイルを定義します。
* 要素セレクタや属性セレクタなど、詳細度はできるかぎり低く保っておきます。
* 基本的にclass属性は使用しません。
*/
html {
  /**
   * `padding`と`border`を`width`に含めます。
   * https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/
   */
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 1.4em;
  color: #231815;
  text-align: justify;
  text-justify: inter-ideograph;
}

#scroll_area_Off {
  overflow: hidden;
}

/* ===================
リンク
===================*/
a {
  outline: none;
}

a:link {
  text-decoration: none;
  color: #000;
}

a:visited {
  text-decoration: none;
  color: #000;
}

a:hover {
  text-decoration: underline;
  color: #000;
}

a:active {
  text-decoration: none;
  color: #000;
}

a:hover img {
  opacity: 0.7;
}

/* -----------------------------------------------------------------------------
   #Box
   -------------------------------------------------------------------------- */
/*
  Box系(display,width,height,margin,padding,float等)の汎用クラス
*/
/* -----------------------------------------------------------------------------
   #Display
   -------------------------------------------------------------------------- */
.u-dsp_none {
  display: none !important;
}

.u-dsp_block {
  display: block !important;
}

.u-dsp_inline-block {
  display: inline-block !important;
}

.u-dsp_tbl {
  display: table !important;
}

.u-dsp_tbl-cell {
  display: table-cell !important;
}

.u-flx_wrap {
  display: flex !important;
  flex-wrap: wrap !important;
}

.u-flx_nowrap {
  display: flex !important;
  flex-wrap: nowrap !important;
}

.u-flx_space-between {
  display: flex !important;
  justify-content: space-between !important;
}

.u-flx_align-item-center {
  align-items: center !important;
}

@media print, screen and (min-width: 701px) {
  .u-flx_nowrap_pc {
    display: flex !important;
    flex-wrap: nowrap !important;
  }
  .u-flx_space-between_pc {
    display: flex !important;
    justify-content: space-between !important;
  }
}
.u_clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.u-flt_left {
  float: left !important;
}

.u-flt_right {
  float: right !important;
}

@media print, screen and (min-width: 701px) {
  .u-flt_left_pc {
    float: left !important;
  }
  .u-flt_right_pc {
    float: right !important;
  }
}
/* -----------------------------------------------------------------------------
   #Margin
   -------------------------------------------------------------------------- */
.u-m10 {
  margin: 10px !important;
}

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

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

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

.u-mt40 {
  margin-top: 40px !important;
}

.u-mt50 {
  margin-top: 50px !important;
}

.u-mt60 {
  margin-top: 60px !important;
}

.u-mt100 {
  margin-top: 100px !important;
}

.u-mb0 {
  margin-bottom: 0px !important;
}

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

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

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

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

.u-mb50 {
  margin-bottom: 50px !important;
}

.u-mb60 {
  margin-bottom: 60px !important;
}

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

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

.u-mr30 {
  margin-right: 30px !important;
}

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

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

.u-ml30 {
  margin-left: 30px !important;
}

@media only screen and (max-width: 700px) {
  .u-m10_sp {
    margin: 10px !important;
  }
  .u-mt0_sp {
    margin-top: 0px !important;
  }
  .u-mt10_sp {
    margin-top: 10px !important;
  }
  .u-mt20_sp {
    margin-top: 20px !important;
  }
  .u-mt30_sp {
    margin-top: 30px !important;
  }
  .u-mt40_sp {
    margin-top: 40px !important;
  }
  .u-mt50_sp {
    margin-top: 50px !important;
  }
  .u-mt60_sp {
    margin-top: 60px !important;
  }
  .u-mb0_sp {
    margin-bottom: 0 !important;
  }
  .u-mb10_sp {
    margin-bottom: 10px !important;
  }
  .u-mb20_sp {
    margin-bottom: 20px !important;
  }
  .u-mb30_sp {
    margin-bottom: 30px !important;
  }
  .u-mb40_sp {
    margin-bottom: 40px !important;
  }
  .u-mb50_sp {
    margin-bottom: 50px !important;
  }
  .u-mb60_sp {
    margin-bottom: 60px !important;
  }
  .u-mr10_sp {
    margin-right: 10px !important;
  }
  .u-mr20_sp {
    margin-right: 20px !important;
  }
  .u-mr30_sp {
    margin-right: 30px !important;
  }
  .u-ml0_sp {
    margin-left: 0 !important;
  }
  .u-ml10_sp {
    margin-left: 10px !important;
  }
  .u-ml20_sp {
    margin-left: 20px !important;
  }
  .u-ml30_sp {
    margin-left: 30px !important;
  }
}
/* -----------------------------------------------------------------------------
   #Padding
   -------------------------------------------------------------------------- */
.u-p10 {
  padding: 10px !important;
}

.u-pt10 {
  padding-top: 10px !important;
}

.u-pt20 {
  padding-top: 20px !important;
}

.u-pt30 {
  padding-top: 30px !important;
}

.u-pt40 {
  padding-top: 40px !important;
}

.u-pt50 {
  padding-top: 50px !important;
}

.u-pt60 {
  padding-top: 60px !important;
}

.u-pt70 {
  padding-top: 70px !important;
}

.u-pt80 {
  padding-top: 80px !important;
}

.u-pt90 {
  padding-top: 90px !important;
}

.u-pt100 {
  padding-top: 100px !important;
}

.u-pb10 {
  padding-bottom: 10px !important;
}

.u-pb20 {
  padding-bottom: 20px !important;
}

.u-pb30 {
  padding-bottom: 30px !important;
}

.u-pb40 {
  padding-bottom: 40px !important;
}

.u-pb50 {
  padding-bottom: 50px !important;
}

.u-pb60 {
  padding-bottom: 60px !important;
}

.u-pl10 {
  padding-left: 10px !important;
}

.u-pl20 {
  padding-left: 20px !important;
}

.u-pl30 {
  padding-left: 30px !important;
}

.u-pl50 {
  padding-left: 50px !important;
}

.u-pl90 {
  padding-left: 90px !important;
}

.u-pr10 {
  padding-right: 10px !important;
}

.u-pr20 {
  padding-right: 20px !important;
}

.u-pr30 {
  padding-right: 30px !important;
}

@media only screen and (max-width: 700px) {
  .u-p10_sp {
    padding: 10px !important;
  }
  .u-pt0_sp {
    padding-top: 0px !important;
  }
  .u-pt10_sp {
    padding-top: 10px !important;
  }
  .u-pt20_sp {
    padding-top: 20px !important;
  }
  .u-pt30_sp {
    padding-top: 30px !important;
  }
  .u-pt40_sp {
    padding-top: 40px !important;
  }
  .u-pt50_sp {
    padding-top: 50px !important;
  }
  .u-pt60_sp {
    padding-top: 60px !important;
  }
  .u-pt70_sp {
    padding-top: 70px !important;
  }
  .u-pt80_sp {
    padding-top: 80px !important;
  }
  .u-pt90_sp {
    padding-top: 90px !important;
  }
  .u-pt100_sp {
    padding-top: 100px !important;
  }
  .u-pb10_sp {
    padding-bottom: 10px !important;
  }
  .u-pb20_sp {
    padding-bottom: 20px !important;
  }
  .u-pb30_sp {
    padding-bottom: 30px !important;
  }
  .u-pb40_sp {
    padding-bottom: 40px !important;
  }
  .u-pb50_sp {
    padding-bottom: 50px !important;
  }
  .u-pb60_sp {
    padding-bottom: 60px !important;
  }
  .u-pl0_sp {
    padding-left: 0px !important;
  }
  .u-pl10_sp {
    padding-left: 10px !important;
  }
  .u-pl20_sp {
    padding-left: 20px !important;
  }
  .u-pl30_sp {
    padding-left: 30px !important;
  }
  .u-pl90_sp {
    padding-left: 90px !important;
  }
  .u-pr10_sp {
    padding-right: 10px !important;
  }
  .u-pr0_sp {
    padding-right: 0px !important;
  }
  .u-pr20_sp {
    padding-right: 20px !important;
  }
  .u-pr30_sp {
    padding-right: 30px !important;
  }
}
/* -----------------------------------------------------------------------------
   #Text
   -------------------------------------------------------------------------- */
/*
  テキストのスタイルを指定する汎用クラスです。
*/
/*---------------テキスト寄せ
------------------------*/
.u-text_left {
  text-align: left !important;
}

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

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

@media only screen and (max-width: 700px) {
  .u-text_left_sp {
    text-align: left !important;
  }
  .u-text_right_sp {
    text-align: right !important;
  }
  .u-text_center_sp {
    text-align: center !important;
  }
}
.u-mincho {
  font-family: "Noto Serif JP", "游明朝体", "YuMincho", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "メイリオ", Meiryo, serif;
}

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

.u-red {
  color: #870000 !important;
}

.u-brown {
  color: #786C27 !important;
}

.u-black {
  color: #231815 !important;
}

.u-f10 {
  font-size: 1rem !important;
}

.u-f11 {
  font-size: 1.1rem !important;
}

.u-f12 {
  font-size: 1.2rem !important;
}

.u-f13 {
  font-size: 1.3rem !important;
}

.u-f14 {
  font-size: 1.4rem !important;
}

.u-f15 {
  font-size: 1.5rem !important;
}

.u-f16 {
  font-size: 1.6rem !important;
}

.u-f17 {
  font-size: 1.7rem !important;
}

.u-f18 {
  font-size: 1.8rem !important;
}

.u-f19 {
  font-size: 1.9rem !important;
}

.u-f20 {
  font-size: 2rem !important;
}

.u-f21 {
  font-size: 2.1rem !important;
}

.u-f22 {
  font-size: 2.2rem !important;
}

.u-f23 {
  font-size: 2.3rem !important;
}

.u-f24 {
  font-size: 2.4rem !important;
}

.u-f25 {
  font-size: 2.5rem !important;
}

.u-f26 {
  font-size: 2.6rem !important;
}

.u-f27 {
  font-size: 2.7rem !important;
}

.u-f28 {
  font-size: 2.8rem !important;
}

.u-f29 {
  font-size: 2.9rem !important;
}

.u-f30 {
  font-size: 3rem !important;
}

.u-f31 {
  font-size: 3.1rem !important;
}

.u-f32 {
  font-size: 3.2rem !important;
}

.u-f33 {
  font-size: 3.3rem !important;
}

.u-f34 {
  font-size: 3.4rem !important;
}

.u-f35 {
  font-size: 3.5rem !important;
}

.u-f36 {
  font-size: 3.6rem !important;
}

.u-f37 {
  font-size: 3.7rem !important;
}

.u-f38 {
  font-size: 3.8rem !important;
}

.u-f39 {
  font-size: 3.9rem !important;
}

.u-f40 {
  font-size: 4rem !important;
}

.u-f41 {
  font-size: 4.1rem !important;
}

.u-f42 {
  font-size: 4.2rem !important;
}

.u-f43 {
  font-size: 4.3rem !important;
}

.u-f44 {
  font-size: 4.4rem !important;
}

.u-f45 {
  font-size: 4.5rem !important;
}

.u-f46 {
  font-size: 4.6rem !important;
}

.u-f47 {
  font-size: 4.7rem !important;
}

.u-f48 {
  font-size: 4.8rem !important;
}

.u-f49 {
  font-size: 4.9rem !important;
}

.u-f50 {
  font-size: 5rem !important;
}

@media only screen and (max-width: 700px) {
  .u-f10_sp {
    font-size: 1rem !important;
  }
  .u-f11_sp {
    font-size: 1.1rem !important;
  }
  .u-f12_sp {
    font-size: 1.2rem !important;
  }
  .u-f13_sp {
    font-size: 1.3rem !important;
  }
  .u-f14_sp {
    font-size: 1.4rem !important;
  }
  .u-f15_sp {
    font-size: 1.5rem !important;
  }
  .u-f16_sp {
    font-size: 1.6rem !important;
  }
  .u-f17_sp {
    font-size: 1.7rem !important;
  }
  .u-f18_sp {
    font-size: 1.8rem !important;
  }
  .u-f19_sp {
    font-size: 1.9rem !important;
  }
  .u-f20_sp {
    font-size: 2rem !important;
  }
  .u-f21_sp {
    font-size: 2.1rem !important;
  }
  .u-f22_sp {
    font-size: 2.2rem !important;
  }
  .u-f23_sp {
    font-size: 2.3rem !important;
  }
  .u-f24_sp {
    font-size: 2.4rem !important;
  }
  .u-f25_sp {
    font-size: 2.5rem !important;
  }
  .u-f26_sp {
    font-size: 2.6rem !important;
  }
  .u-f27_sp {
    font-size: 2.7rem !important;
  }
  .u-f28_sp {
    font-size: 2.8rem !important;
  }
  .u-f29_sp {
    font-size: 2.9rem !important;
  }
  .u-f30_sp {
    font-size: 3rem !important;
  }
  .u-f31_sp {
    font-size: 3.1rem !important;
  }
  .u-f32_sp {
    font-size: 3.2rem !important;
  }
  .u-f33_sp {
    font-size: 3.3rem !important;
  }
  .u-f34_sp {
    font-size: 3.4rem !important;
  }
  .u-f35_sp {
    font-size: 3.5rem !important;
  }
  .u-f36_sp {
    font-size: 3.6rem !important;
  }
  .u-f37_sp {
    font-size: 3.7rem !important;
  }
  .u-f38_sp {
    font-size: 3.8rem !important;
  }
  .u-f39_sp {
    font-size: 3.9rem !important;
  }
  .u-f40_sp {
    font-size: 4rem !important;
  }
  .u-f41_sp {
    font-size: 4.1rem !important;
  }
  .u-f42_sp {
    font-size: 4.2rem !important;
  }
  .u-f43_sp {
    font-size: 4.3rem !important;
  }
  .u-f44_sp {
    font-size: 4.4rem !important;
  }
  .u-f45_sp {
    font-size: 4.5rem !important;
  }
  .u-f46_sp {
    font-size: 4.6rem !important;
  }
  .u-f47_sp {
    font-size: 4.7rem !important;
  }
  .u-f48_sp {
    font-size: 4.8rem !important;
  }
  .u-f49_sp {
    font-size: 4.9rem !important;
  }
  .u-f50_sp {
    font-size: 5rem !important;
  }
}
/* #Wrapper
  -------------------------------------------------------------------------- */
/*
	画面の最大幅を設定するクラス

*/
/*-------------------レイアウト共通
---------------------------*/
.u-wrapper {
  margin-left: auto;
  margin-right: auto;
}
@media print, screen and (min-width: 701px) {
  .u-wrapper {
    max-width: 1100px;
  }
}
@media only screen and (max-width: 700px) {
  .u-wrapper {
    width: 100%;
    max-width: 1100px;
  }
}

.u-wrapper_inner {
  margin-left: auto;
  margin-right: auto;
}
@media print, screen and (min-width: 701px) {
  .u-wrapper_inner {
    padding-left: 10px;
    padding-right: 10px;
    max-width: 1100px;
  }
}
@media only screen and (max-width: 700px) {
  .u-wrapper_inner {
    padding-left: 10px;
    padding-right: 10px;
    width: 100%;
    max-width: 660px;
  }
}

.u-wrapper_inner_pc {
  margin-left: auto;
  margin-right: auto;
}
@media print, screen and (min-width: 701px) {
  .u-wrapper_inner_pc {
    max-width: 1100px;
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media only screen and (max-width: 700px) {
  .u-wrapper_inner_pc {
    width: 100%;
    max-width: 660px;
  }
}

.u-wrapper_inner_sp {
  margin-left: auto;
  margin-right: auto;
}
@media print, screen and (min-width: 701px) {
  .u-wrapper_inner_sp {
    max-width: 1100px;
  }
}
@media only screen and (max-width: 700px) {
  .u-wrapper_inner_sp {
    width: 100%;
    max-width: 660px;
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* #Show
  -------------------------------------------------------------------------- */
/*
PCとスマホの表示・非表示切り替え
*/
@media print, screen and (min-width: 701px) {
  .u-show_sp {
    display: none !important;
  }
}
@media only screen and (max-width: 700px) {
  .u-show_sp {
    display: inherit;
  }
}

@media print, screen and (min-width: 701px) {
  .u-show_pc {
    display: inherit;
  }
}
@media only screen and (max-width: 700px) {
  .u-show_pc {
    display: none !important;
  }
}

/* #u-fluid-img
  -------------------------------------------------------------------------- */
/*
ウィンドウ幅に合わせて画像サイズを変えるクラス

*/
.u-fluid-img {
  max-width: 100%;
  height: auto;
}

@media print, screen and (min-width: 701px) {
  .u-fluid-img_pc {
    max-width: 100%;
    height: auto;
  }
}

@media only screen and (max-width: 700px) {
  .u-fluid-img_sp {
    max-width: 100%;
    height: auto;
  }
}

header {
  background-color: #6D716F;
  color: #fff;
}
header * {
  line-height: 1;
}
@media only screen and (max-width: 700px) {
  header h1 a {
    display: flex;
    align-items: center;
  }
}
header a:link {
  color: #fff;
}
header a:visited {
  color: #fff;
}
header a:hover {
  color: #fff;
}
header a:active {
  color: #fff;
}

.h_main01 {
  font-size: 2.5rem;
}

.h_main02 {
  margin-right: 5px;
  vertical-align: middle;
  font-size: 1.8rem;
}

.h_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media print, screen and (min-width: 701px) {
  .h_wrapper {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@media only screen and (max-width: 700px) {
  .h_wrapper {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

.h_other {
  display: flex;
  align-items: center;
}
@media print, screen and (min-width: 701px) {
  .h_other {
    font-size: 1.8rem;
  }
}
.h_other span {
  letter-spacing: 2px;
}
@media only screen and (max-width: 700px) {
  .h_other span span {
    display: none;
  }
}
.h_other img {
  display: inline-block;
  margin-left: 15px;
  vertical-align: middle;
}

footer {
  margin-top: 100px;
}
footer * {
  line-height: 1;
}
footer small {
  display: block;
  text-align: center;
  font-size: 1.5rem;
  margin: 20px 0;
  font-family: "Noto Serif JP", "游明朝体", "YuMincho", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "メイリオ", Meiryo, serif;
}
@media only screen and (max-width: 700px) {
  footer small {
    margin-top: 20px;
  }
}

.f_wrapper {
  background-color: #E4D899;
}
@media only screen and (max-width: 700px) {
  .f_wrapper {
    padding: 15px 0;
  }
}
.f_wrapper > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 700px) {
  .f_wrapper > div {
    position: relative;
  }
}
.f_wrapper h1 {
  font-size: 2.9rem;
  display: flex;
  align-items: center;
}
@media print, screen and (min-width: 701px) {
  .f_wrapper h1 {
    margin-right: 35px;
  }
}
.f_wrapper h1 span {
  margin-right: 5px;
  font-size: 2rem;
}

@media print, screen and (min-width: 701px) {
  .f_main {
    display: flex;
    align-items: flex-end;
    padding: 20px 0;
    order: -1;
  }
}
.f_address {
  font-size: 1.5rem;
}
.f_address span {
  display: block;
  font-size: 1.3rem;
  line-height: 1.5;
  letter-spacing: 1px;
}
@media only screen and (max-width: 700px) {
  .f_address {
    margin-top: 15px;
  }
}

@media print, screen and (min-width: 701px) {
  .f_logo {
    margin-top: -100px;
  }
}
@media only screen and (max-width: 700px) {
  .f_logo {
    position: absolute;
    right: 0;
    top: -70px;
  }
}

/* #Content
   -------------------------------------------------------------------------- */
/*doc

*/
.slider {
  background-color: #231815;
  text-align: center;
}
.slider ul {
  margin: 0px auto;
}

.bx-wrapper {
  background-color: transparent !important;
  margin: 0px auto !important;
  border: none !important;
  box-shadow: none !important;
}

.bx-wrapper img {
  display: block !important;
  margin: 0px auto !important;
}

.intro {
  background-color: #E4D899;
  font-family: "Noto Serif JP", "游明朝体", "YuMincho", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "メイリオ", Meiryo, serif;
  letter-spacing: 1px;
}
@media print, screen and (min-width: 701px) {
  .intro {
    padding: 0 0 60px;
  }
}
@media only screen and (max-width: 700px) {
  .intro {
    padding: 0 0 30px;
  }
}
.intro h2 {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #231815;
  text-align: center;
}
@media print, screen and (min-width: 701px) {
  .intro h2 {
    padding-top: 60px;
  }
}
@media only screen and (max-width: 700px) {
  .intro h2 {
    padding-top: 30px;
  }
}
@media only screen and (max-width: 700px) {
  .intro h2 img {
    max-width: 392px;
  }
}
.intro p {
  text-align: center;
  font-size: 2.1rem;
  line-height: 2;
}
.intro h3 {
  text-align: center;
  margin-bottom: 30px;
}
@media only screen and (max-width: 700px) {
  .intro h3 img {
    max-width: 510px;
  }
}
@media print, screen and (min-width: 701px) {
  .intro ul {
    display: flex;
    justify-content: space-between;
  }
}
.intro ul li {
  text-align: center;
}
@media print, screen and (min-width: 701px) {
  .intro ul li {
    margin: 10px;
  }
}
@media only screen and (max-width: 700px) {
  .intro ul li {
    margin: 10px 0;
  }
}
@media only screen and (max-width: 700px) {
  .intro ul img {
    max-width: 268px;
  }
}

.dot {
  display: block;
  font-size: 4rem;
  color: #fff;
  line-height: 1;
}

.owner_wrap {
  padding: 0 10px;
  font-family: "Noto Serif JP", "游明朝体", "YuMincho", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "メイリオ", Meiryo, serif;
}
@media print, screen and (min-width: 701px) {
  .owner_wrap {
    max-width: 860px;
    margin: 100px auto 60px;
  }
}
@media only screen and (max-width: 700px) {
  .owner_wrap {
    margin: 30px auto;
  }
}
.owner_wrap .contact {
  margin-top: 60px;
  padding: 10px;
  border: 1px solid #231815;
  border-left: none;
  border-right: none;
  text-align: center;
  font-size: 2rem;
}
@media only screen and (max-width: 700px) {
  .owner_wrap .contact {
    margin-top: 30px;
    display: flex;
    align-items: center;
    font-size: 1.7rem;
  }
}
@media only screen and (max-width: 700px) {
  .owner_wrap .contact a {
    text-align: left;
    display: flex;
    align-items: center;
  }
}
.owner_wrap .contact img {
  vertical-align: middle;
}
.owner_wrap .contact .sns_fb {
  margin-left: 20px;
}

.owner {
  position: relative;
  z-index: 1;
  pointer-events: none;
}
@media only screen and (max-width: 700px) {
  .owner {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.owner a {
  display: block;
  margin-bottom: 20px;
  pointer-events: auto;
}
.owner a span {
  font-size: 1.6rem;
}
.owner a:hover {
  text-decoration: none;
  opacity: 0.7;
}
.owner h2 {
  margin-bottom: 20px;
  line-height: 1.25;
  font-size: 3rem;
  letter-spacing: 5px;
}
@media print, screen and (min-width: 701px) {
  .owner h2 {
    max-width: 600px;
    border-bottom: 1px solid #231815;
  }
}
@media only screen and (max-width: 700px) {
  .owner h2 {
    text-align: center;
    letter-spacing: 5px;
  }
}

.owner_img {
  width: 100%;
  display: flex;
  align-items: flex-end;
}
@media print, screen and (min-width: 701px) {
  .owner_img {
    justify-content: flex-end;
    margin-top: -170px;
  }
}
@media only screen and (max-width: 700px) {
  .owner_img {
    justify-content: center;
    margin-top: 15px;
  }
}
.owner_img a {
  display: block;
  margin-top: 10px;
  margin-left: 15px;
}

.information {
  margin-bottom: 30px;
  padding: 15px 0;
  border: 1px solid #231815;
  border-left: none;
  border-right: none;
  font-family: "Noto Serif JP", "游明朝体", "YuMincho", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "メイリオ", Meiryo, serif;
  display: flex;
  justify-content: flex-start;
}
.information h2 {
  font-size: 2rem;
  flex-shrink: 0;
}
@media print, screen and (min-width: 701px) {
  .information h2 {
    margin-right: 50px;
  }
}
@media only screen and (max-width: 700px) {
  .information h2 {
    margin-right: 15px;
  }
}

.info_archive {
  font-size: 2rem;
  width: 100%;
}
.info_archive a:link {
  color: blue;
}
.info_archive a:visited {
  color: blue;
}
.info_archive a:hover {
  color: blue;
}
.info_archive a:active {
  color: blue;
}
.info_archive > div {
  margin-bottom: 10px;
  display: flex;
}
.info_archive * {
  line-height: 1.5;
}
.info_archive dt {
  width: 100%;
}
.info_archive dd {
  flex-shrink: 0;
  margin-right: 10px;
}
@media print, screen and (min-width: 701px) {
  .info_archive dd {
    width: 150px;
  }
}
@media only screen and (max-width: 700px) {
  .info_archive dd {
    width: 100px;
  }
}

.newMark {
  display: inline-block;
  padding: 1px 4px;
  font-size: 1.3rem;
  background: #F00;
  color: #fff;
  border-radius: 9px;
  vertical-align: middle;
  margin-left: 5px;
}

.gallery {
  text-align: center;
  display: flex;
}