@charset "UTF-8";
/* Google Fonts
   -------------------------------------------------------------------------- */
/* Montserrat: 400(通常), 600(中見出し), 700(大見出し)
   Noto Sans JP: 日本語フォールバック */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Noto+Sans+JP:wght@400;600;700&display=swap");
/* foundation/_tokens.scss */
/* _mixins.scss に追加 */
/* ==========================================================================
   Reset
   --------------------------------------------------------------------------
   - ブラウザごとの差異をなくすための初期化
   - 必要最低限にとどめ、詳細な調整は _base.scss 側で行う
   ========================================================================== */
/* 全要素の margin/padding をリセット */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* HTML5 要素の display を統一 */
article,
aside,
footer,
header,
nav,
section,
main {
  display: block;
}

/* body のデフォルト */
body {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  /* iOS の文字拡大防止 */
}

/* リストのマーカー削除（必要に応じて base 側で再定義） */
ul,
ol {
  list-style: none;
}

/* 画像やメディアの扱い */
img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

/* テーブルの基本 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* フォーム系の基本 */
button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  background: transparent;
  border: none;
  outline: none;
}

/* リンクの下線を一旦外す（base 側でサイトポリシーに合わせて定義） */
a {
  text-decoration: none;
  color: inherit;
}

/* ==========================================================================
   Base
   ========================================================================== */
html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #222;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: inherit;
  line-height: 1.4;
  margin-bottom: 0.6em;
  color: #222;
}

h1 {
  font-size: 2rem;
  font-weight: 700;
}

/* 32px */
h2 {
  font-size: 1.5rem;
  font-weight: 600;
}

/* 24px */
h3 {
  font-size: 1.25rem;
  font-weight: 600;
}

/* 20px */
h4 {
  font-size: 1.125rem;
  font-weight: 600;
}

h5 {
  font-size: 1rem;
  font-weight: 600;
}

h6 {
  font-size: 0.875rem;
  font-weight: 600;
}

/* Paragraph */
p {
  margin-bottom: 1.2em;
  color: #222;
  font-weight: 400;
}

/* Links */
a {
  color: #373029;
  text-decoration: none;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}
a:hover, a:focus {
  opacity: 0.8;
}

/*++フォント
-----------------------------------------------------------*/
/* Firefox, Opera, Safari */
@font-face {
  font-family: "ちはやフォント+";
  src: url("../font/ちはやフォント+.eot");
  /* IE9 Compat Modes */
  src: url("../font/ちはやフォント+.woff") format("woff"), url(../font/ちはやフォント+.ttf) format("truetype");
  /* ttf - Safari, Android, iOS */
}
main.site-content,
div.main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  /* ← 余白をここで押し広げる */
}

.main-visual h1 {
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: normal;
  line-height: 1;
}

.content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}
@media (max-width: 768px) {
  .content {
    padding: 10px;
  }
}
.content h2 {
  font-size: 20px;
  margin-top: 40px;
  margin-bottom: 30px;
  font-weight: normal;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-align: center;
}

html,
body {
  height: 100%;
  margin: 0;
}

.site-wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.site-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem 2rem 0.6rem;
  position: relative;
  z-index: 1000;
}
.site-header .logo img {
  height: 40px;
  width: auto;
}

/* PCナビ（横並び） */
.global-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.global-nav ul li a {
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #222;
  text-decoration: none;
  -webkit-transition: color 0.25s;
  transition: color 0.25s;
}
.global-nav ul li a:hover {
  color: #373029;
}

/* ハンバーガーボタン（初期は非表示→SPで表示） */
.nav-toggle {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 28px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
  position: relative;
  /* ← 追加 */
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #000;
  border-radius: 1px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform-origin: center;
          transform-origin: center;
}
.nav-toggle.active span:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(10px, 10px);
          transform: rotate(45deg) translate(10px, 10px);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  -webkit-transform: rotate(-45deg) translate(4px, -4px);
          transform: rotate(-45deg) translate(4px, -4px);
}

/* スマホ用レイアウト */
@media (max-width: 768px) {
  .nav-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .global-nav {
    position: fixed;
    inset: 0;
    background: #fff;
    display: none;
    /* JSで切り替え */
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    z-index: 1000;
  }
  .global-nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5rem;
  }
  .global-nav ul li a {
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
  }
  .global-nav ul li a:hover {
    background: #e5e5e5;
  }
  .global-nav.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
footer {
  background-color: #373029;
  padding: 40px 40px;
  padding-bottom: 5px;
}
footer .contents {
  width: 980px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 100%;
}
@media (max-width: 768px) {
  footer .contents {
    display: block;
    padding: 0 20px;
  }
}
footer .contents .address .logo {
  width: 240px;
  margin-bottom: 20px;
}
footer .contents .address p {
  font-size: 0.8rem;
  line-height: 1.6;
  color: #fff;
}
footer .contents .address p .phone {
  font-size: 1rem;
  margin-bottom: 6px;
  display: inline-block;
  color: #fff;
}
footer .contents .address .insta {
  width: 36px;
}
footer nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media (max-width: 768px) {
  footer nav ul {
    display: block;
    margin-top: 20px;
  }
}
footer nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
}
footer nav ul li a:hover {
  text-decoration: underline;
}
footer .copyright p {
  text-align: center;
  margin-top: 20px;
  font-size: 0.8rem;
  color: #fff;
}

/* object/_utilities.scss */
.u-mt-0 {
  margin-top: 0;
}

.u-mb-0 {
  margin-bottom: 0;
}

.u-pt-0 {
  padding-top: 0;
}

.u-pb-0 {
  padding-bottom: 0;
}

.u-mt-4 {
  margin-top: 4px;
}

.u-mb-4 {
  margin-bottom: 4px;
}

.u-pt-4 {
  padding-top: 4px;
}

.u-pb-4 {
  padding-bottom: 4px;
}

.u-mt-8 {
  margin-top: 8px;
}

.u-mb-8 {
  margin-bottom: 8px;
}

.u-pt-8 {
  padding-top: 8px;
}

.u-pb-8 {
  padding-bottom: 8px;
}

.u-mt-12 {
  margin-top: 12px;
}

.u-mb-12 {
  margin-bottom: 12px;
}

.u-pt-12 {
  padding-top: 12px;
}

.u-pb-12 {
  padding-bottom: 12px;
}

.u-mt-16 {
  margin-top: 16px;
}

.u-mb-16 {
  margin-bottom: 16px;
}

.u-pt-16 {
  padding-top: 16px;
}

.u-pb-16 {
  padding-bottom: 16px;
}

.u-mt-24 {
  margin-top: 24px;
}

.u-mb-24 {
  margin-bottom: 24px;
}

.u-pt-24 {
  padding-top: 24px;
}

.u-pb-24 {
  padding-bottom: 24px;
}

.u-mt-32 {
  margin-top: 32px;
}

.u-mb-32 {
  margin-bottom: 32px;
}

.u-pt-32 {
  padding-top: 32px;
}

.u-pb-32 {
  padding-bottom: 32px;
}

.u-text-center {
  text-align: center;
}

.u-inline-block {
  display: inline-block;
}

.grecaptcha-badge {
  display: none !important;
}

br.sp {
  display: none;
}

@media (max-width: 767px) {
  br.sp {
    display: inline;
  }
}
img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

#page-top {
  display: none;
  /* 最初は非表示 */
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: #333;
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  font-size: 20px;
  opacity: 0.7;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

#page-top:hover {
  opacity: 1;
}

html {
  scroll-behavior: smooth;
}

.post-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  /* 左右に配置 */
  margin-top: 4em;
}

.post-navigation .nav-previous {
  text-align: left;
}

.post-navigation .nav-next {
  text-align: right;
}

.main-visual img.mainImg {
  width: 100%;
  height: auto;
  display: block;
}
.main-visual .catch {
  background-color: #373029;
  padding: 12px;
  margin-top: -44px;
  opacity: 0.8;
  border-bottom: 0;
  margin-bottom: 0;
}
.main-visual .catch img {
  margin: auto;
}

.home .concept {
  background-color: #f5f1ed;
  padding: 50px 0 40px;
  text-align: center;
  border-bottom: dotted 1px #373029;
}
@media (max-width: 768px) {
  .home .concept {
    padding: 30px 10px 40px;
  }
}
.home .concept h2 {
  font-size: 20px;
  margin-bottom: 30px;
  font-weight: normal;
  letter-spacing: 0.3em;
}
.home .concept p {
  max-width: 800px;
  margin: auto;
  line-height: 2.4;
  color: #555;
}

.top-banners {
  width: 980px;
  margin: auto;
  max-width: 100%;
}

.main-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  padding: 40px 0;
  text-align: center;
}
@media (max-width: 768px) {
  .main-menu {
    display: block;
    padding: 0;
    padding-bottom: 5px;
  }
}
.main-menu a {
  text-decoration: none;
  color: #222;
  display: block;
  width: 300px;
  height: 139.7590361446px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
@media (max-width: 768px) {
  .main-menu a {
    width: 100%;
    margin-bottom: 15px;
  }
}
.main-menu a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  display: block;
}
.main-menu a p {
  position: relative;
  margin-top: -30px;
  z-index: 100;
  font-size: 16px;
  color: #fff;
  line-height: 32px;
  background-color: #373029;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  opacity: 0.8;
}
.main-menu a:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.schedule-news {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  /* 左右に振り分ける */
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 980px;
}
@media (max-width: 768px) {
  .schedule-news {
    display: block;
    width: 100%;
  }
}
.schedule-news .schedule {
  width: 300px;
  border: solid 1px #373029;
  height: 490px;
  /* 上揃えにしたい場合 */
}
@media (max-width: 768px) {
  .schedule-news .schedule {
    width: 100%;
    margin-bottom: 20px;
    border: none;
  }
}
.schedule-news .schedule li {
  list-style-type: none;
}
.schedule-news .schedule h2.widgettitle {
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: normal;
  letter-spacing: 0.2em;
  text-align: center;
  text-transform: uppercase;
  margin-top: 20px;
}
.schedule-news .schedule #biz_calendar {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  /* 80%に縮小 */
}
.schedule-news .schedule #biz_calendar table.bizcal th {
  background-color: #e8e8e8;
}
.schedule-news .schedule #biz_calendar table.bizcal .holiday {
  background-color: #c35c86;
}
.schedule-news .schedule #biz_calendar p {
  display: inline;
  margin-right: 1rem;
}
.schedule-news .schedule #biz_calendar p span.boxholiday {
  background-color: #c35c86;
}
.schedule-news .schedule .texts {
  padding: 0 10px 10px 10px;
  margin-left: 28px;
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}
.schedule-news .schedule .texts p {
  font-size: 0.85rem;
}
@media (max-width: 768px) {
  .schedule-news .schedule .texts p {
    text-align: center;
  }
}
.schedule-news .schedule .texts .reserve {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.schedule-news .news {
  width: 640px;
  border: solid 1px #373029;
  padding: 20px 20px 20px 20px;
  height: 490px;
  max-width: 100%;
}
@media (max-width: 768px) {
  .schedule-news .news {
    height: auto;
    border: none;
    border-top: solid 1px #373029;
  }
}
.schedule-news .news h2 {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: normal;
  letter-spacing: 0.2em;
  text-align: center;
  text-transform: uppercase;
  margin-top: 0rem;
}
.schedule-news .news ul {
  list-style-type: none;
  padding-left: 0;
}
.schedule-news .news li {
  background-color: #e8e8e8;
  margin-bottom: 10px;
  padding: 10px 10px;
}
.schedule-news .news li span.time {
  width: 75px;
  display: inline-block;
  font-size: 0.9rem;
}
.schedule-news .news li a {
  text-decoration: none;
  color: #222;
  border-left: #373029 1px solid;
  padding-left: 10px;
  margin-left: 10px;
  font-size: 0.9rem;
  /*display: flex;
  justify-content: space-between;
  align-items: center;*/
}
@media (max-width: 768px) {
  .schedule-news .news li a {
    display: block;
    border-left: none;
    padding-left: 0;
    margin-left: 0;
  }
}
.schedule-news .news li a:hover {
  color: #373029;
}
.schedule-news .news li span.cat {
  display: none;
}
.schedule-news .news li .date {
  color: #999;
  font-size: 0.9rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100px;
  text-align: right;
}
.schedule-news .news li .title {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-left: 20px;
}
.schedule-news .news a.button_all_blog {
  display: block;
  width: 200px;
  margin: 20px auto 0 auto;
  padding: 10px 0;
  background-color: #373029;
  color: #fff;
  text-align: center;
  text-decoration: none;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.schedule-news .news a.button_all_blog:hover {
  background-color: #c35c86;
}

.foot_banners {
  width: 980px;
  margin: auto;
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  /* 左右に振り分ける */
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .foot_banners {
    display: block;
    width: 100%;
  }
}
.foot_banners a {
  display: block;
  margin-bottom: 20px;
  width: 470px;
  height: 134.2857142857px;
  overflow: hidden;
  border: solid 1px #373029;
  text-align: right;
  padding: 10px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  background-size: cover;
}
@media (max-width: 768px) {
  .foot_banners a {
    width: 100%;
  }
}
.foot_banners a.contact {
  background-image: url(../image/contact.png);
  color: #fff;
}
.foot_banners a.access {
  background-image: url(../image/access.png);
}

.concept p img {
  max-width: 500px;
  height: auto;
}
@media (max-width: 768px) {
  .concept p img {
    max-width: 100%;
  }
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  font-size: 0.9rem;
}
table th {
  border: 1px solid #aaa;
  padding: 8px;
  background-color: #f9f9f9;
  text-align: left;
  vertical-align: top;
}
table td {
  border: 1px solid #aaa;
  padding: 8px;
  text-align: left;
  vertical-align: top;
}

.concept .voice {
  font-family: noto-serif, serif;
  background-color: #e8e8e8;
  padding: 20px;
}
@media (max-width: 768px) {
  .concept .voice {
    font-size: 0.9rem;
    padding: 10px;
  }
}

.gallery .content .gallery {
  width: 700px;
  margin: auto;
}
@media (max-width: 768px) {
  .gallery .content .gallery {
    display: block;
    width: 100%;
  }
}
.gallery .content .gallery a img {
  margin: auto;
  display: block;
}

/* 2行目：article + aside 横並び */
.content_2column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 1080px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .content_2column {
    display: block;
    width: 100%;
  }
}

.content_2column article {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 70%;
          flex: 0 0 70%;
  /* 幅70% */
  margin-right: 20px;
  padding: 40px;
}
@media (max-width: 768px) {
  .content_2column article {
    margin-right: 0;
    padding: 20px;
  }
}
.content_2column article h1 {
  font-size: 20px;
  font-weight: normal;
  border-top: solid 1px #ccc;
  padding-top: 15px;
  margin-bottom: 0px;
}
.content_2column article p.date {
  text-align: right;
  margin-bottom: 10px;
  padding-right: 15px;
}
.content_2column article ul {
  margin-top: 1rem;
}
.content_2column article li {
  background-color: #e8e8e8;
  margin-bottom: 10px;
  padding: 10px 10px;
}
.content_2column article li span.time {
  width: 75px;
  display: inline-block;
  font-size: 0.9rem;
}
.content_2column article li a {
  text-decoration: none;
  color: #222;
  border-left: #373029 1px solid;
  padding-left: 10px;
  margin-left: 10px;
  font-size: 0.9rem;
  /*display: flex;
      justify-content: space-between;
      align-items: center;*/
}
@media (max-width: 768px) {
  .content_2column article li a {
    display: block;
    border-left: none;
    padding-left: 0;
    margin-left: 0;
  }
}
.content_2column article li a:hover {
  color: #373029;
}
.content_2column article li span.cat {
  display: none;
}
.content_2column article li .date {
  color: #999;
  font-size: 0.9rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100px;
  text-align: right;
}
.content_2column article li .title {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-left: 20px;
}
.content_2column article #txt_Area p,
.content_2column article .articleBlock p {
  font-family: Verdana, Roboto, "ちはやフォント+", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  font-size: 1rem;
  line-height: 1.8;
}

.content_2column aside {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30%;
          flex: 0 0 30%;
  /* 幅30% */
  padding: 40px;
}
@media (max-width: 768px) {
  .content_2column aside {
    padding: 20px;
    margin-top: 60px;
  }
}
.content_2column aside li.widget {
  list-style: none;
  margin-bottom: 30px;
}
.content_2column aside .post-date {
  display: block;
}
.content_2column aside h2.widgettitle {
  font-size: 18px;
  font-weight: normal;
  padding: 10px;
  margin-bottom: 20px;
  background-color: lightgrey;
}

.contact .content {
  width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 768px) {
  .contact .content {
    width: 100%;
  }
}
.contact .content .TEL {
  letter-spacing: 0.2em;
}
.contact .content h2 {
  border-top: solid 3px #373029;
  padding-top: 10px;
  text-align: center;
  display: inline-block;
}
.contact .content form {
  width: 600px;
  margin: 20px auto 0;
}
@media (max-width: 768px) {
  .contact .content form {
    width: 100%;
    margin-top: 0;
  }
}
.contact .content form p {
  font-size: 0.85rem;
  margin-bottom: 5px;
}
.contact .content form input {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 8px;
  margin-bottom: 20px;
  border: 1px solid #aaa;
  background-color: #ddd;
}
.contact .content form input[type=radio] {
  width: auto;
  margin-right: 3px;
}
.contact .content form input[type=submit] {
  width: 100%;
  background-color: #373029;
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
}
.contact .content form input[type=submit]:hover {
  background-color: #1a1713;
}
.contact .content form input input[type=submit]:disabled {
  background-color: #8f7d6a;
  cursor: not-allowed;
  opacity: 0.5;
  pointer-events: none;
}
.contact .content form .wpcf7-radio label {
  padding-right: 10px;
}
.contact .content form textarea {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 8px;
  margin-bottom: 20px;
  border: 1px solid #aaa;
  background-color: #ddd;
  min-height: 150px;
}

.access .content {
  max-width: 100%;
}
.access .content .atelier_address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* 左右に配置 */
}
@media (max-width: 768px) {
  .access .content .atelier_address {
    display: block;
    width: 100%;
    margin-top: 0px;
  }
}
.access .content .atelier_address img {
  display: block;
  width: 48%;
  margin-right: 2rem;
}
@media (max-width: 768px) {
  .access .content .atelier_address img {
    width: 100%;
    margin: auto;
    margin-bottom: 2rem;
  }
}
.access .content .atelier_address .address_txt {
  line-height: 2;
  color: #555;
  padding-top: 2rem;
  width: 40%;
}
@media (max-width: 768px) {
  .access .content .atelier_address .address_txt {
    width: 100%;
    padding: 0;
  }
}
.access .content .atelier_address .address_txt h3 {
  font-weight: normal;
}
.access .content .atelier_address .address_txt p {
  margin-bottom: 10px;
  line-height: 2;
}
.access .content .atelier_address .address_txt p.mini {
  font-size: 0.85rem;
}
.access .content .atelier_address .address_txt a.banner {
  display: block;
  margin-top: 20px;
  background-color: #373029;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  text-align: center;
  width: 400px;
}
@media (max-width: 768px) {
  .access .content .atelier_address .address_txt a.banner {
    width: 100%;
  }
}
.access .content .atelier_address .address_txt a.banner:hover {
  background-color: #1a1713;
}
.access .content iframe {
  display: block;
  width: 100%;
  height: 450px;
  border: none;
  margin-top: 40px;
}

.menu .content h2.index {
  border-top: none;
}
.menu .lr_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 600px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 5rem;
}
@media (max-width: 768px) {
  .menu .lr_menu {
    display: block;
    width: 100%;
  }
}
.menu .lr_menu ul li {
  margin-bottom: 0.8rem;
  background-color: #e8e8e8;
  padding: 0.3rem 1.2rem;
}
.menu .content h2 {
  border-top: dotted 1px #333;
  padding-top: 15px;
}