@charset "UTF-8";
/* 機能とパーツごとに分けたscssファイルをcssファイルにコンパイル */
/* function
------------------------------------------------ */
/* setting
------------------------------------------------ */
/* 767pxまでがスマホ、768px(ipad)以上がタブレット、1024px(ipadpro)以上がPC表示 */
html {
  /* ルートのフォントサイズを10pxに設定 */
  font-size: 62.5%;
}

body {
  font-family: YuGothic, "Yu Gothic", "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #000;
  font-size: 1.8rem;
  /* bodyの基本サイズを18pxに設定 */
  letter-spacing: 0.2rem;
  line-height: 1.5;
}

@media screen and (max-width: 1023px) {
  body {
    letter-spacing: 0.1rem;
  }
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.6rem;
  }
}
/* foundation
------------------------------------------------ */
/*!
 * ress.css • v4.0.0
 * MIT License
 * github.com/filipelinhares/ress
 */
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  word-break: normal;
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
}

*, :after, :before {
  background-repeat: no-repeat;
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

:after, :before {
  text-decoration: inherit;
  vertical-align: inherit;
}

* {
  padding: 0;
  margin: 0;
}

hr {
  overflow: visible;
  height: 0;
  color: inherit;
}

details, main {
  display: block;
}

summary {
  display: list-item;
}

small {
  font-size: 80%;
}

[hidden] {
  display: none;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

a {
  background-color: transparent;
}

a:active, a:hover {
  outline-width: 0;
}

code, kbd, pre, samp {
  font-family: monospace, monospace;
}

pre {
  font-size: 1em;
}

b, strong {
  font-weight: bolder;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  border-color: inherit;
  text-indent: 0;
}

input {
  border-radius: 0;
}

[disabled] {
  cursor: default;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

textarea {
  overflow: auto;
  resize: vertical;
}

button, input, optgroup, select, textarea {
  font: inherit;
}

optgroup {
  font-weight: 700;
}

button {
  overflow: visible;
}

button, select {
  text-transform: none;
}

[role=button], [type=button], [type=reset], [type=submit], button {
  cursor: pointer;
  color: inherit;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

[type=reset], [type=submit], button, html [type=button] {
  -webkit-appearance: button;
}

button, input, select, textarea {
  background-color: transparent;
  border-style: none;
}

a:focus, button:focus, input:focus, select:focus, textarea:focus {
  outline-width: 0;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
}

select::-ms-expand {
  display: none;
}

select::-ms-value {
  color: currentColor;
}

legend {
  border: 0;
  color: inherit;
  display: table;
  white-space: normal;
  max-width: 100%;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  color: inherit;
  font: inherit;
}

img {
  border-style: none;
}

progress {
  vertical-align: baseline;
}

[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled=true] {
  cursor: default;
}

body {
  background-color: #fff;
  overflow-x: hidden;
}

a {
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  color: #000;
}

a:hover {
  opacity: 0.8;
}

img {
  font-size: 0;
  vertical-align: bottom;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.br-tab {
  display: none;
}

@media screen and (max-width: 1023px) {
  .br-tab {
    display: block;
  }
}
.br-sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .br-sp {
    display: block;
  }
}
.nonbr-sp {
  display: block;
}

@media screen and (max-width: 767px) {
  .nonbr-sp {
    display: none;
  }
}
.link-disable {
  pointer-events: none;
}

/* ページタイトル */
#page1 h1 {
  font-size: 0;
}

/* freeパーツのタイトル */
.free h2 {
  display: none;
}

/* トップページのお知らせ */
.list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0 5rem;
  width: 100%;
  height: auto;
}

@media screen and (max-width: 1023px) {
  .list {
    padding: 0 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .list {
    margin: 0 auto;
    padding: 0;
    max-width: 22rem;
  }
}
.list h2 {
  display: block;
  margin-top: 7rem;
  padding: 0 2rem 2rem;
  position: relative;
  width: 100%;
  text-align: center;
  font-weight: normal;
  font-size: 2.7rem;
}
.list h2::before {
  content: "";
  position: absolute;
  top: -2rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 15rem;
  height: 2rem;
  background-image: url(https://ssl.samidare.jp/~tukiyamaf/jionjiterrace/p/common/arrow_top.png);
  background-position: center;
  background-size: contain;
}

.list .kiji_contents {
  margin: 2rem 2rem 0 0;
  width: calc(33.333% - 1.3333333333rem);
  max-width: 22rem;
}

@media screen and (max-width: 767px) {
  .list .kiji_contents {
    margin-right: 0;
    width: 100%;
    max-width: initial;
  }
  .list .kiji_contents:first-of-type {
    margin-top: 0;
  }
}
.list .kiji_contents:nth-of-type(3n) {
  margin-right: 0;
}

.list .kiji_contents .kiji_image {
  text-align: center;
}

.list .kiji_contents .kiji_image table {
  margin: 0 auto;
}

.list .kiji_contents .kiji_image table a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 22rem;
  height: 22rem;
}

.list .kiji_contents .kiji_image table a img {
  aspect-ratio: 1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.list .kiji_date {
  margin-top: 1rem;
  text-align: left;
}

.list h3 {
  font-size: 2rem;
  text-align: left;
}

.list p {
  display: none;
}

.list .links {
  display: block;
  margin-top: 2rem;
  width: 100%;
  text-align: right;
}

@media screen and (max-width: 767px) {
  .list .links {
    font-size: 1.4rem;
  }
}
/* お知らせ一覧 */
@media screen and (max-width: 767px) {
  .p-archive .list {
    width: 100%;
    max-width: initial;
  }
}
@media screen and (max-width: 767px) {
  .p-archive .kiji_contents {
    margin: 2rem 2rem 0 0;
    width: calc(50% - 1rem);
  }
  .p-archive .kiji_contents:nth-of-type(1), .p-archive .kiji_contents:nth-of-type(2) {
    margin-top: 0;
  }
  .p-archive .kiji_contents:nth-of-type(2n) {
    margin-right: 0;
  }
  .p-archive .kiji_contents:nth-of-type(3n) {
    margin-right: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-archive .kiji_contents .kiji_image {
    width: 100%;
  }
  .p-archive .kiji_contents .kiji_image table {
    width: 100%;
  }
  .p-archive .kiji_contents .kiji_image table a {
    width: 100%;
    height: 42vw;
  }
  .p-archive .kiji_contents .kiji_image table img {
    width: 100%;
  }
}
.p-archive .links {
  display: block;
  margin-top: 2rem;
  width: 100%;
  text-align: right;
}

@media screen and (max-width: 767px) {
  .p-archive .links {
    font-size: 1.4rem;
  }
}
/* お問合せ */
.contact {
  margin-top: 3rem;
  width: 100%;
  height: auto;
  background-color: #F6F6F6;
}

.contact h2 {
  display: none;
}

.contact .contact_text {
  display: none;
}

.contact .contact_form {
  margin: 0 auto;
  padding: 4rem;
  max-width: 75rem;
  list-style: none;
}

@media screen and (max-width: 767px) {
  .contact .contact_form {
    padding: 2rem;
  }
}
.contact .contact_form li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-top: 2rem;
}

@media screen and (max-width: 767px) {
  .contact .contact_form li {
    display: block;
  }
}
.contact .contact_form li:first-child {
  margin-top: 0;
}

.contact .contact_index {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 6rem;
}

@media screen and (max-width: 767px) {
  .contact .contact_index {
    position: initial;
    display: block;
  }
}
.contact .contact_body_needs {
  display: none;
}

.contact .contact_body {
  display: inline-block;
  width: calc(100% - 7rem);
}

@media screen and (max-width: 767px) {
  .contact .contact_body {
    width: 100%;
  }
}
.contact .contact_body_comment {
  font-size: 1.2rem;
  text-align: left;
}

.contact .contact_submit {
  margin: 0 auto;
}

.contact .formBtn {
  color: #fff;
  background-color: #172042;
}

.contact .formBtn:hover {
  opacity: 0.8;
}

.contact input {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  background-image: none;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: 1em;
  padding: 0.4em 0.8em;
  width: 100% !important;
  background-color: #fff;
}

.contact input:focus {
  border: 1px solid rgba(0, 0, 0, 0.32);
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
}

.contact textarea {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  background-image: none;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: 1em;
  height: 20rem;
  padding: 0.4em 0.8em;
  width: 100%;
  background-color: #fff;
}

.contact textarea:focus {
  border: 1px solid rgba(0, 0, 0, 0.32);
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
}

.contact .contact_ssl {
  display: none;
}

/* 問合せプレビュー */
.contact_preview h2 {
  display: none;
}

.contact_preview .contact_form {
  list-style: none;
}

.contact_preview .contact_form li {
  margin-top: 2rem;
  text-align: center;
}

.contact_preview .contact_form li .backBtn,
.contact_preview .contact_form li .sendBtn {
  padding: 1rem;
  color: #fff;
  background-color: #172042;
}

.contact_preview .contact_form li .backBtn:hover,
.contact_preview .contact_form li .sendBtn:hover {
  opacity: 0.8;
}

.contact_preview .contact_form li .backBtn {
  margin-right: 1rem;
}

.contact_preview .contact_ssl {
  display: none;
}

/* 送信完了 */
.contact_send {
  margin-top: 2rem;
  text-align: center;
}

.contact_send h2 {
  display: none;
}

/* 記事 */
#kiji h2 {
  display: block;
  position: relative;
  margin-top: 7rem;
  padding: 0 2rem 0;
  font-size: 2.7rem;
  text-align: center;
}

@media screen and (max-width: 767px) {
  #kiji h2 {
    padding: 0 0rem 1rem;
    text-align: justify;
  }
}
#kiji h2::before {
  content: "";
  position: absolute;
  top: -3rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 15rem;
  height: 2rem;
  background-image: url(../../img/common/arrow_top.png);
  background-image: url(https://ssl.samidare.jp/~tukiyamaf/jionjiterrace/p/common/arrow_top.png);
  background-position: center;
  background-size: contain;
}

#kiji .kiji_contents {
  margin-top: 4rem;
  text-align: justify;
}

#kiji .kiji_image {
  width: auto;
  max-width: 100%;
}

#kiji .kiji_image img {
  width: 100%;
}

#kiji p {
  margin-top: 2rem;
}

#kiji .kiji_date {
  margin-top: 3rem;
  text-align: right;
}

#kiji_comment {
  display: none;
}

/* 個人情報保護 */
.parts6 {
  text-align: justify;
}

/* layout
------------------------------------------------ */
.l-header {
  position: fixed;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 20;
}

.l-header-corner {
  background-image: url(../img/about/jionji_header-about.png);
  background-size: cover;
  background-position: center;
}

.l-header-corner--bunkazai {
  background-image: url(../img/butuzou/jionji_header-butuzou.png);
}

.l-header-corner--season {
  background-image: url(../img/season/jionji_header-season.png);
}

@media screen and (max-width: 1023px) {
  .l-header-corner--season {
    background-image: url(../img/season/jionji_header-season-tab.png);
  }
}
.l-header-corner--haikan {
  background-image: url(../img/haikan/jionji_header-haikan.png);
}

.l-header-corner--sansaku {
  background-image: url(../img/sansaku/jionji_header-sansaku.png);
}

.l-inner {
  margin: 0 auto;
  padding: 0;
  max-width: 80rem;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 1023px) {
  .l-inner {
    padding: 0 1rem;
  }
}
.l-inner--wide {
  max-width: 100rem;
}

@media screen and (max-width: 1023px) {
  .l-inner--wide {
    padding: 0 1rem;
  }
}
.l-inner--wide2 {
  max-width: 120rem;
}

@media screen and (max-width: 1023px) {
  .l-inner--wide2 {
    padding: 0 1rem;
  }
}
@media screen and (max-width: 767px) {
  .l-main {
    padding: 0 1rem;
  }
}
.l-banner1 {
  width: 100%;
  background-image: url(../img/common/jionji_bg1.png);
  background-size: cover;
  background-position: center;
}

@media screen and (max-width: 767px) {
  .l-banner1 {
    background-color: #000;
  }
}
.l-footer {
  background-color: #F6F6F6;
  border-top: 0.1rem solid #d1d1d1;
}

/* component
------------------------------------------------ */
.c-header {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1.5rem 0;
  width: 100%;
  height: auto;
}

.c-header__title {
  display: none;
}

.c-header__logo {
  margin-right: 2rem;
  width: 20rem;
  height: auto;
}

@media screen and (max-width: 767px) {
  .c-header__logo {
    width: 45%;
  }
}
.c-header__img {
  width: 100%;
  height: auto;
}

.c-header__desc {
  max-width: 40rem;
}

@media screen and (max-width: 767px) {
  .c-header__desc {
    display: none;
  }
}
.c-header__menu {
  position: relative;
  top: 1.5rem;
  font-weight: bold;
  font-size: 1.2rem;
  color: #A3A2A3;
}

.c-page-header {
  width: 100%;
  height: auto;
}

.c-page-header__container {
  background-color: #172042;
}

.c-page-header__title {
  padding: 6rem 0 6rem 1.7rem;
  font-family: "メイリオ", Meiryo, sans-serif;
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 0.3rem;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .c-page-header__title {
    padding: 4rem 0 4rem 1rem;
    font-size: 2.5rem;
  }
}
.c-page-header__title img {
  margin-right: 2rem;
  width: 3.2rem;
  height: auto;
}

@media screen and (max-width: 767px) {
  .c-page-header__title img {
    margin-right: 1rem;
    width: 2.5rem;
  }
}
.c-hamburger-menu {
  display: inline-block;
  margin-top: 1.1rem;
  width: 4rem;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .c-hamburger-menu {
    margin-right: 1rem;
  }
}
.c-hamburger-menu__border {
  position: relative;
  margin: 1.2rem 0;
  width: 100%;
  height: 0.1rem;
  background-color: #c3925c;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.c-hamburger-menu__border::before, .c-hamburger-menu__border::after {
  content: "";
  position: absolute;
  top: -1.2rem;
  left: 0;
  width: 100%;
  height: 0.1rem;
  background-color: #c3925c;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.c-hamburger-menu__border::after {
  top: 1.2rem;
}

.c-hamburger-menu__open {
  background-color: transparent;
}

.c-hamburger-menu__open::before {
  top: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.c-hamburger-menu__open::after {
  top: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.c-hamburger-menu__text {
  padding-top: 0.5rem;
  width: 100%;
  font-family: kozuka-gothic-pr6n, sans-serif;
  font-weight: 200;
  font-size: 1.1rem;
  color: #F6F6F6;
  text-align: center;
  letter-spacing: 0.3rem;
}

.c-drawer {
  position: absolute;
  top: 11.5rem;
  right: -27rem;
  padding: 2rem 1rem;
  list-style: none;
  background-color: rgba(251, 247, 241, 0.9);
  z-index: 10;
  -webkit-transition: all 0.6s ease 0s;
  transition: all 0.6s ease 0s;
}

@media screen and (max-width: 1023px) {
  .c-drawer {
    top: 14rem;
  }
}
@media screen and (max-width: 767px) {
  .c-drawer {
    top: 10.4rem;
  }
}
.c-drawer__open {
  right: 0;
}

.c-drawer__menu {
  padding: 1rem;
  min-width: 25rem;
  border-bottom: 0.1rem solid #c3925c;
}

.c-drawer__menu:first-child {
  padding-top: 0;
}

.c-drawer__menu:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.c-drawer__menu a {
  width: 100%;
  color: #c3925c;
}

.c-modal {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: black;
  z-index: 5;
  -webkit-transition: all 0.6s ease 0s;
  transition: all 0.6s ease 0s;
  opacity: 0;
  visibility: hidden;
}

.c-modal__open {
  opacity: 0.6;
  visibility: visible;
}

.c-header-corner {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 44rem;
}

@media screen and (max-width: 1023px) {
  .c-header-corner {
    min-height: 35rem;
  }
}
@media screen and (max-width: 1023px) {
  .c-header-corner--season {
    min-height: 80rem;
  }
}
@media screen and (max-width: 767px) {
  .c-header-corner--season {
    min-height: 40rem;
  }
}
.c-header-corner__title {
  display: inline-block;
  position: absolute;
  bottom: 3rem;
  right: 0;
  padding: 1.2rem 4rem 2rem;
  width: 37rem;
  font-family: a-otf-jun-pro, sans-serif;
  font-weight: 300;
  font-size: 3rem;
  letter-spacing: 0.7rem;
  text-align: center;
  color: #fff;
  border: 0.1rem solid #F6F6F6;
  background-color: rgba(223, 128, 30, 0.4);
}

@media screen and (max-width: 767px) {
  .c-header-corner__title {
    right: 50%;
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
    width: 90%;
    max-height: 45rem;
    font-size: 2.5rem;
  }
}
.c-header-corner__title--bunkazai {
  background-color: rgba(130, 5, 59, 0.61);
}

.c-header-corner__title--season {
  background-color: rgba(5, 114, 54, 0.5);
}

@media screen and (max-width: 767px) {
  .c-header-corner__title--season {
    bottom: 1rem;
    padding: 0.7rem 4rem 1rem;
    font-size: 2.3rem;
  }
}
.c-header-corner__title--haikan {
  background-color: rgba(223, 194, 30, 0.7);
}

.c-header-corner__title--sansaku {
  background-color: rgba(70, 50, 101, 0.6);
}

.c-section {
  width: 100%;
  height: auto;
  text-align: center;
  line-height: 1.7;
}

.c-section__title {
  display: inline-block;
  margin-top: 5rem;
  padding: 0 2rem 1rem;
  font-size: 2.7rem;
  border-bottom: 0.2rem solid #000;
}

@media screen and (max-width: 767px) {
  .c-section__title {
    padding: 0 0rem 1rem;
  }
}
.c-section__title span {
  display: block;
  font-size: 1.8rem;
}

.c-section__title--arrow {
  position: relative;
  margin-top: 7rem;
  padding-bottom: 0;
  border-bottom: none;
}

.c-section__title--arrow::before {
  content: "";
  position: absolute;
  top: -2rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 15rem;
  height: 2rem;
  background-image: url(../img/common/arrow_top.png);
  background-image: url(https://ssl.samidare.jp/~tukiyamaf/jionjiterrace/p/common/arrow_top.png);
  background-position: center;
  background-size: contain;
}

.c-section__content {
  margin: 4rem auto 0;
  width: 100%;
  height: auto;
  text-align: justify;
}

.c-section__text {
  margin-top: 3rem;
  margin: 3rem auto 0;
  width: 82%;
}

@media screen and (max-width: 1023px) {
  .c-section__text {
    width: 85%;
  }
}
@media screen and (max-width: 767px) {
  .c-section__text {
    width: 100%;
  }
}
.c-section__text--wide {
  width: 100%;
  letter-spacing: 0.1rem;
}

.c-section__img {
  width: 100%;
  height: auto;
}

.c-section__separator {
  display: block;
  margin: 5rem calc(50% - 50vw) 0;
  width: 100vw;
  border-bottom: 0.1rem solid #d1d1d1;
}

.c-footer {
  position: relative;
  padding: 4rem 0;
  width: 100%;
  height: auto;
}

@media screen and (max-width: 767px) {
  .c-footer {
    padding: 2rem 0;
  }
}
.c-footer__title {
  font-size: 2rem;
}

@media screen and (max-width: 767px) {
  .c-footer__title {
    margin-top: 1.5rem;
  }
}
.c-footer__address {
  margin-top: 1.5rem;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .c-footer__address {
    width: 71%;
  }
}

.c-footer__tel,
.c-footer__mail {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 1.6rem;
}

.c-footer__tel {
  margin-right: 1rem;
}

.c-footer__copy {
  margin-top: 3rem;
  font-size: 1.2rem;
}

.c-footer__pagetop {
  position: absolute;
  bottom: 4rem;
  right: 3rem;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .c-footer__pagetop {
    top: 13rem;
    bottom: auto;
    font-size: 1.5rem;
  }
}
.c-footer__pagetop::before {
  content: "";
  position: absolute;
  top: -2rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 10rem;
  height: 2rem;
  background-image: url(../img/common/arrow_top.png);
  background-image: url(https://ssl.samidare.jp/~tukiyamaf/jionjiterrace/p/common/arrow_top.png);
  background-position: center;
  background-size: contain;
}

@media screen and (max-width: 767px) {
  .c-footer__pagetop::before {
    top: -1.5rem;
    width: 8rem;
  }
}
.c-footer__pagetop:hover {
  opacity: 0.8;
}

.c-footer__sns {
  position: absolute;
  top: 4rem;
  right: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .c-footer__sns {
    right: 0.8rem;
  }
}
.c-footer__sns a {
  margin: 0 1rem 0 0;
  width: 4rem;
}
@media screen and (max-width: 767px) {
  .c-footer__sns a {
    width: 3.3rem;
  }
}
.c-footer__sns a:last-of-type {
  margin-right: 0;
}
.c-footer__sns a img {
  width: 100%;
}

.c-global-nav {
  width: 100%;
  height: auto;
  background-color: #172042;
}

.c-global-nav__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 2rem 0;
  list-style: none;
}
@media screen and (max-width: 1023px) {
  .c-global-nav__links {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media screen and (max-width: 767px) {
  .c-global-nav__links {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 1rem 0;
  }
}

.c-global-nav__link {
  border-left: 0.1rem solid #fff;
}
@media screen and (max-width: 939px) {
  .c-global-nav__link:nth-child(6) {
    border-right: 0.1rem solid #fff;
  }
}
@media screen and (max-width: 836px) {
  .c-global-nav__link:nth-child(6) {
    border-right: none;
  }
  .c-global-nav__link:nth-child(5) {
    border-right: 0.1rem solid #fff;
  }
}

@media screen and (max-width: 767px) {
  .c-global-nav__link {
    margin-top: 1rem;
    width: 50%;
  }
  .c-global-nav__link:nth-child(5) {
    border-right: none;
  }
  .c-global-nav__link:nth-child(1), .c-global-nav__link:nth-child(2) {
    margin-top: 0;
  }
  .c-global-nav__link:nth-child(2n) {
    border-right: 0.1rem solid #fff;
  }
}
.c-global-nav__link:last-child {
  border-right: 0.1rem solid #fff;
}

.c-global-nav__link a {
  padding: 1rem 2rem;
  color: #fff;
  letter-spacing: 0;
}

@media screen and (max-width: 1023px) {
  .c-global-nav__link a {
    padding: 1rem 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .c-global-nav__link a {
    padding: 0 0.5rem;
    width: 100%;
    text-align: center;
  }
}
.c-banner__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 4rem auto;
}

.c-banner__link {
  margin-right: 1rem;
  width: calc(33.333% - 0.6666666667rem);
}

@media screen and (max-width: 767px) {
  .c-banner__link {
    margin: 2rem auto 0;
    width: 80%;
  }
  .c-banner__link:first-child {
    margin-top: 0;
  }
}
.c-banner__link:last-child {
  margin-right: 0;
}

@media screen and (max-width: 767px) {
  .c-banner__link:last-child {
    margin-right: auto;
  }
}
.c-banner__link img {
  width: 100%;
  height: auto;
}

.c-anchor {
  margin-top: -5rem;
  padding-top: 5rem;
}

.c-page-top {
  position: relative;
  width: 100%;
  height: auto;
}

.c-page-top__img {
  width: 100%;
  height: 35rem;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

@media screen and (max-width: 767px) {
  .c-page-top__img {
    height: 30rem;
  }
}
.c-page-top__title {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
  display: inline-block !important;
  padding: 2rem 0;
  width: 40rem;
  color: #fff;
  text-align: center;
  border-top: 0.2rem solid #fff;
  border-bottom: 0.2rem solid #fff;
}

@media screen and (max-width: 767px) {
  .c-page-top__title {
    padding: 1.5rem 0;
    width: 70%;
  }
}
/* project
------------------------------------------------ */
.p-mainvisual {
  position: relative;
  width: 100%;
  height: auto;
}

.p-mainvisual__notice {
  position: absolute;
  top: 25%;
  right: 0;
  padding: 3rem 5rem 3rem 3rem;
  font-size: 1.2em;
  color: #fff;
  background-color: rgba(23, 32, 66, 0.6705882353);
  z-index: 10;
}

@media screen and (max-width: 767px) {
  .p-mainvisual__notice {
    top: 23%;
    padding: 2rem;
  }
}
.p-banner1 {
  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: 4rem 0;
  width: 100%;
  height: auto;
}

@media screen and (max-width: 767px) {
  .p-banner1 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.p-banner1__banner {
  position: relative;
  display: inline-block;
  margin: 0 1rem 0 0;
  width: calc(33.333% - 0.6666666667rem);
}

@media screen and (max-width: 767px) {
  .p-banner1__banner {
    margin: 2rem auto 0;
    width: 100%;
    max-width: 30rem;
  }
  .p-banner1__banner:first-child {
    margin-top: 0;
  }
}
.p-banner1__banner:last-child {
  margin-right: 0;
}

@media screen and (max-width: 767px) {
  .p-banner1__banner:last-child {
    margin-right: auto;
  }
}
.p-banner1__banner img {
  width: 100%;
  height: auto;
  border: 0.1rem solid #F6F6F6;
  line-height: 1em;
}

.p-banner1__title {
  position: absolute;
  display: block;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  font-family: kozuka-gothic-pr6n, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 2rem;
  letter-spacing: 0.5rem;
  text-align: center;
  color: #fff;
  -webkit-filter: drop-shadow(0 4px 2px #4d4000);
  filter: drop-shadow(0 4px 2px #4d4000);
}

.p-news__container {
  margin: 0 auto;
  width: 100%;
  max-width: 89rem;
}

.p-news__wrapper {
  padding: 1rem;
  border-top: 1px solid #F6F6F6;
}

.p-news__wrapper:last-child {
  border-bottom: 1px solid #F6F6F6;
}

.p-news__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.p-news__img {
  margin-right: 1rem;
  width: 6.4rem;
  height: 6.4rem;
}

.p-news__body {
  width: calc(100% - 10rem);
  text-align: justify;
}

.p-news__date {
  font-size: 1.3rem;
}

.p-news__title {
  margin-top: 0.5rem;
  font-size: 1.8rem;
}

@media screen and (max-width: 767px) {
  .p-news__title {
    margin-top: 0;
  }
}
.p-news__arrow {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  border-top: 1px solid #F6F6F6;
  border-right: 1px solid #F6F6F6;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.p-season__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 auto;
  width: 100%;
  max-width: 94rem;
}

.p-season__wrapper {
  position: relative;
  margin: 2rem 2rem 0 0;
  width: calc(50% - 1rem);
  height: auto;
}

@media screen and (max-width: 767px) {
  .p-season__wrapper {
    margin: 1rem 1rem 0 0;
    width: calc(50% - 0.5rem);
  }
}
.p-season__wrapper:nth-child(1), .p-season__wrapper:nth-child(2) {
  margin-top: 0;
}

.p-season__wrapper:nth-child(2n) {
  margin-right: 0;
}

.p-season__img {
  width: 100%;
  height: auto;
  border: 0.1rem solid #F6F6F6;
}

.p-season__text {
  position: absolute;
  padding: 2rem;
  width: 13rem;
  height: 13rem;
  font-size: 9rem;
  line-height: 8rem;
  text-align: center;
  color: #fff;
  border: 0.1rem solid #F6F6F6;
}

@media screen and (max-width: 767px) {
  .p-season__text {
    padding: 0;
    width: 7rem;
    height: 7rem;
    font-size: 5rem;
    line-height: 6rem;
  }
}
.p-season__text--spring {
  top: 0;
  left: 0;
  background-color: rgba(185, 14, 91, 0.5);
}

.p-season__text--summer {
  top: 0;
  right: 0;
  background-color: rgba(5, 114, 54, 0.5);
}

.p-season__text--fall {
  bottom: 0;
  left: 0;
  background-color: rgba(211, 125, 12, 0.5);
}

.p-season__text--winter {
  bottom: 0;
  right: 0;
  background-color: rgba(8, 23, 138, 0.5);
}

.p-season-corner__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 6rem;
}

@media screen and (max-width: 767px) {
  .p-season-corner__wrapper {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.p-season-corner__wrapper:first-child {
  margin-top: 0;
}

.p-season-corner__wrapper--reverce {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.p-season-corner__img {
  width: 40%;
  height: auto;
  max-height: 31rem;
}

@media screen and (max-width: 1023px) {
  .p-season-corner__img {
    max-height: 24rem;
  }
}
@media screen and (max-width: 767px) {
  .p-season-corner__img {
    width: 100%;
  }
}
.p-season-corner__wrap {
  width: calc(60% - 6rem);
}

@media screen and (max-width: 1023px) {
  .p-season-corner__wrap {
    width: calc(60% - 2rem);
  }
}
@media screen and (max-width: 767px) {
  .p-season-corner__wrap {
    margin-top: 2rem;
    width: 100%;
  }
}
.p-season-corner__text {
  margin-top: 3rem;
  text-align: justify;
}

.p-season-corner__text:first-of-type {
  margin-top: 0rem;
}

.p-banner2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 5rem 0;
  width: 100%;
  height: auto;
}

@media screen and (max-width: 767px) {
  .p-banner2 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.p-banner2__banner {
  margin: 0 2rem 0 0;
  width: calc(25% - 1.5rem);
}

@media screen and (max-width: 767px) {
  .p-banner2__banner {
    margin: 1rem 1rem 0 0;
    width: calc(50% - 0.5rem);
  }
  .p-banner2__banner:first-child {
    margin-top: 0;
  }
  .p-banner2__banner:nth-child(2) {
    margin-top: 0;
    margin-right: 0;
  }
}
.p-banner2__banner:last-child {
  margin-right: 0;
}

.p-banner2__banner img {
  width: 100%;
  height: auto;
}

.p-about__container {
  padding: 3rem;
  width: 100%;
  height: auto;
  border: 0.1rem solid #F6F6F6;
  background-color: #fff;
}

.p-about__text {
  display: block;
  margin-top: 4rem;
  text-align: justify;
  font-size: 1.7rem;
  letter-spacing: 0.2rem;
  line-height: 3.5rem;
}

.p-about__text:first-child {
  margin-top: 0;
}

.p-point__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 6rem;
}

@media screen and (max-width: 767px) {
  .p-point__wrapper {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.p-point__wrapper:first-child {
  margin-top: 0;
}

.p-point__wrapper--reverce {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.p-point__img {
  width: 40%;
  height: auto;
  max-height: 31rem;
}

@media screen and (max-width: 1023px) {
  .p-point__img {
    max-height: 24rem;
  }
}
@media screen and (max-width: 767px) {
  .p-point__img {
    width: 100%;
  }
}
.p-point__wrap {
  width: calc(60% - 6rem);
}

@media screen and (max-width: 1023px) {
  .p-point__wrap {
    width: calc(60% - 2rem);
  }
}
@media screen and (max-width: 767px) {
  .p-point__wrap {
    margin-top: 2rem;
    width: 100%;
  }
}
.p-point__title {
  display: block;
  padding-bottom: 1rem;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.3rem;
  border-bottom: 0.1rem solid #F6F6F6;
}

.p-point__text {
  margin-top: 3rem;
  text-align: justify;
}

.p-point__text:first-of-type {
  margin-top: 2rem;
}

.p-bunkazai__container {
  width: 100%;
  height: auto;
}

.p-bunkazai__text {
  display: block;
  text-align: justify;
  letter-spacing: 0.1rem;
  line-height: 3.5rem;
}

.p-bunkazai__text:first-child {
  margin-top: 0;
}

.p-important__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 6rem;
}

@media screen and (max-width: 767px) {
  .p-important__wrapper {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.p-important__wrapper:first-child {
  margin-top: 0;
}

.p-important__img {
  width: 40%;
  height: auto;
  max-height: 34rem;
}

@media screen and (max-width: 1023px) {
  .p-important__img {
    max-height: 24rem;
  }
}
@media screen and (max-width: 767px) {
  .p-important__img {
    width: 100%;
  }
}
.p-important__wrap {
  width: calc(60% - 6rem);
}

@media screen and (max-width: 1023px) {
  .p-important__wrap {
    width: calc(60% - 2rem);
  }
}
@media screen and (max-width: 767px) {
  .p-important__wrap {
    margin-top: 2rem;
    width: 100%;
  }
}
.p-important__title {
  display: block;
  text-align: justify;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.3rem;
}

@media screen and (max-width: 1023px) {
  .p-important__title span {
    display: block;
    font-size: 1.8rem;
    line-height: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-important__title span {
    font-size: 1.6rem;
  }
}
.p-important__title--private::after {
  content: "非公開";
  display: inline-block;
  position: relative;
  bottom: 0.3rem;
  margin-left: 2rem;
  padding: 0.1rem 1.5rem 0.2rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  background-color: #F6F6F6;
}

.p-important__age {
  display: block;
  text-align: justify;
}

.p-important__text {
  margin-top: 3rem;
  text-align: justify;
}

.p-important__text:first-of-type {
  margin-top: 2rem;
}

.p-haikan__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.p-haikan__contain-left,
.p-haikan__contain-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-right: 2rem;
  padding: 3rem 4rem;
  width: calc(45% - 2rem);
  border: 0.1rem solid #F6F6F6;
  background-color: #fff;
}

@media screen and (max-width: 1023px) {
  .p-haikan__contain-left,
  .p-haikan__contain-right {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-line-pack: start;
    align-content: flex-start;
  }
}
@media screen and (max-width: 767px) {
  .p-haikan__contain-left,
  .p-haikan__contain-right {
    margin: 0;
    width: 100%;
  }
}
.p-haikan__contain-right {
  margin: 0;
  width: 55%;
}

@media screen and (max-width: 767px) {
  .p-haikan__contain-right {
    margin: 2rem 0 0;
    width: 100%;
  }
}
.p-haikan__navi {
  text-align: justify;
  line-height: 4rem;
}

@media screen and (max-width: 1023px) {
  .p-haikan__navi {
    width: 100%;
  }
}
.p-haikan__navi span {
  margin-right: 4rem;
  font-size: 2.3rem;
  font-weight: 700;
}

.p-haikan__caution {
  display: block;
  margin-top: 2rem;
  font-size: 1.5rem;
}

.p-haikan__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 14rem;
}

@media screen and (max-width: 767px) {
  .p-haikan__wrapper {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
.p-haikan__wrapper:first-child {
  margin-top: 0;
}

.p-haikan__img {
  width: 40%;
  height: auto;
  max-height: 31rem;
}

@media screen and (max-width: 1023px) {
  .p-haikan__img {
    max-height: 24rem;
  }
}
@media screen and (max-width: 767px) {
  .p-haikan__img {
    width: 100%;
  }
}
.p-haikan__wrap {
  width: calc(60% - 6rem);
}

@media screen and (max-width: 1023px) {
  .p-haikan__wrap {
    width: calc(60% - 2rem);
  }
}
@media screen and (max-width: 767px) {
  .p-haikan__wrap {
    margin-top: 2rem;
    width: 100%;
  }
}
.p-haikan__title {
  display: block;
  text-align: justify;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.3rem;
}

.p-haikan__text {
  margin-top: 3rem;
  text-align: justify;
}

.p-haikan__text:first-of-type {
  margin-top: 2rem;
}

.p-sansaku__map {
  width: 100%;
  height: auto;
  border: 0.1rem solid #F6F6F6;
}

.p-sansaku__map img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

.p-sansaku__map map {
  width: 100%;
  height: auto;
}

.p-sansaku__guide {
  display: inline-block;
  margin-top: 5rem;
  padding: 1.5rem 4rem;
  border: 0.1rem solid #F6F6F6;
}

@media screen and (max-width: 767px) {
  .p-sansaku__guide {
    padding: 1.5rem 2rem;
  }
}
.p-concept {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .p-concept {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
.p-concept__text-wrapper {
  width: 55%;
}

@media screen and (max-width: 1023px) {
  .p-concept__text-wrapper {
    width: 56%;
  }
}
@media screen and (max-width: 767px) {
  .p-concept__text-wrapper {
    margin-top: 4rem;
    width: 100%;
  }
}
.p-concept__logo-wrapper {
  position: relative;
  top: -5rem;
  width: 45%;
}

@media screen and (max-width: 1023px) {
  .p-concept__logo-wrapper {
    width: 44%;
  }
}
@media screen and (max-width: 767px) {
  .p-concept__logo-wrapper {
    top: 0;
    width: 100%;
  }
}
.p-concept__wrap {
  margin-top: 4rem;
}

.p-concept__wrap:first-child {
  margin-top: 0;
}

.p-concept__title {
  font-weight: 700;
}

.p-concept__text {
  margin-top: 2rem;
  padding-left: 3rem;
  line-height: 1.2;
}

@media screen and (max-width: 767px) {
  .p-concept__text {
    padding-left: 2.5rem;
    line-height: 1.4;
  }
}
.p-concept__logo {
  margin-bottom: 2rem;
  width: 100%;
}

.p-concept__feature {
  padding-left: 16%;
  font-family: "メイリオ", Meiryo, sans-serif;
  font-weight: bold;
  font-size: 2.4rem;
  line-height: 4.5rem;
  color: #172042;
}

@media screen and (max-width: 1023px) {
  .p-concept__feature {
    padding-left: 0;
  }
}
.p-concept__feature span {
  display: inline-block;
  padding: 0 1rem;
  text-align: center;
  color: #fff;
  background-image: url(../../img/common/hexagon_orange.png);
  background-size: contain;
  background-position: center;
}

.p-profile__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding: 1.5rem 3rem;
  line-height: 1.3;
  border-bottom: 0.1rem dotted #172042;
}

@media screen and (max-width: 767px) {
  .p-profile__wrapper {
    padding: 1.5rem 0;
  }
}
.p-profile__title {
  width: 13rem;
}

@media screen and (max-width: 767px) {
  .p-profile__title {
    width: 10rem;
  }
}
.p-profile__title span {
  margin-right: 1rem;
  color: #172042;
}

@media screen and (max-width: 767px) {
  .p-profile__title span {
    margin-right: 0.5rem;
  }
}
.p-profile__text {
  position: relative;
  padding-left: 1rem;
}

@media screen and (max-width: 767px) {
  .p-profile__text {
    width: calc(100% - 10rem);
    padding-left: 0.5rem;
  }
}
.p-profile__text::before {
  content: "：";
  position: absolute;
  top: 0;
  left: -1rem;
}

.p-profile__text--nocolon::before {
  content: "";
}

.p-onestop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

@media screen and (max-width: 767px) {
  .p-onestop {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
.p-onestop__text {
  width: 45rem;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .p-onestop__text {
    padding-left: 2.5rem;
    line-height: 1.4;
  }
}
.p-onestop__logo {
  position: relative;
  top: -5rem;
  width: auto;
  max-width: 33rem;
  height: auto;
}

.p-guidemap {
  width: 100%;
  height: auto;
}

.p-guidemap__img {
  width: 100%;
  height: auto;
}

.p-guidemap__text {
  font-size: 1.4rem;
}

@media screen and (max-width: 767px) {
  .p-guidemap__text {
    margin-top: 2rem;
    font-size: 1.1rem;
  }
}
.p-mystery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
}

.p-mystery__img {
  margin: 2rem 1rem 0 0;
  width: calc(25% - 0.75rem);
  height: auto;
  max-height: 18.2rem;
}

@media screen and (max-width: 767px) {
  .p-mystery__img {
    width: calc(50% - 0.5rem);
  }
  .p-mystery__img:nth-child(2) {
    margin-right: 0;
  }
  .p-mystery__img:nth-child(3), .p-mystery__img:nth-child(4) {
    margin-top: 1rem;
  }
}
.p-mystery__img:last-child {
  margin-right: 0;
}

.p-map {
  position: relative;
  width: 100%;
  padding-top: 50%;
}

.p-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.p-menu {
  position: relative;
  width: 100%;
  height: auto;
  font-family: "Kiwi Maru", serif;
}

.p-menu__bg {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 767px) {
  .p-menu__bg {
    display: none;
  }
}
.p-menu__bg--sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .p-menu__bg--sp {
    display: block;
    height: 70rem;
  }
}
.p-menu__bg--sp {
  height: 88rem;
}

.p-menu__container {
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 9rem 9rem 10rem 8rem;
  width: 100%;
  height: auto;
}

@media screen and (max-width: 767px) {
  .p-menu__container {
    padding: 5rem 4rem 4rem;
  }
}
.p-menu__title {
  width: 100%;
  font-size: 2.5rem;
  text-align: center;
}

.p-menu__wrapper-left {
  margin-top: 1.5rem;
  width: 41%;
}

@media screen and (max-width: 1023px) {
  .p-menu__wrapper-left {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-menu__wrapper-left {
    width: 100%;
  }
}
.p-menu__wrapper-right {
  margin-top: 1.5rem;
  width: 56%;
}

@media screen and (max-width: 1023px) {
  .p-menu__wrapper-right {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-menu__wrapper-right {
    margin-top: 2rem;
    width: 100%;
  }
}
.p-menu__subtitle {
  width: 100%;
  text-align: center;
}

.p-menu__list {
  margin-top: 1.5rem;
  list-style: none;
}

@media screen and (max-width: 1023px) {
  .p-menu__list {
    margin-top: 0.5rem;
  }
}
.p-menu__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.p-menu__caution {
  position: relative;
  margin-top: 0;
  padding-left: 2rem;
}

.p-menu__caution::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}

.p-menu__caution span {
  margin-left: 1.7rem;
}

@media screen and (max-width: 767px) {
  .p-menu__caution span {
    margin-left: 1.4rem;
  }
}
.p-menu__opening {
  margin-top: 1rem;
  font-size: 1.5rem;
}

@media screen and (max-width: 1023px) {
  .p-menu__opening {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-menu__opening {
    margin-top: 1rem;
  }
}
/* external
------------------------------------------------ */
.drawer-open {
  overflow: initial !important;
}

.drawer--right .drawer-hamburger {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 4rem;
}

.drawer-hamburger-icon {
  height: 0.4rem;
  background-color: #A3A2A3;
  border-radius: 0.1rem;
}

.drawer-hamburger-icon::before, .drawer-hamburger-icon::after {
  height: 0.4rem;
  background-color: #A3A2A3;
  border-radius: 0.1rem;
}

.drawer-hamburger-icon::before {
  top: -1.1rem;
}

.drawer-hamburger-icon::after {
  top: 1.1rem;
}

.drawer--right.drawer-open .drawer-hamburger {
  right: 0;
}

.drawer--right .drawer-nav {
  right: -22rem;
  width: 22rem;
  background-color: rgba(23, 32, 66, 0.8901960784);
  z-index: 40;
}

.drawer-menu {
  margin-top: 2rem;
  padding: 0 1rem;
  width: 100%;
  height: auto;
}

.drawer-menu-item {
  padding: 1.5rem 1.5rem;
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  border-bottom: 0.2rem solid #fff;
}

.drawer-menu-item:hover {
  text-decoration: none;
}

.drawer-overlay {
  background-color: rgba(0, 0, 0, 0.4);
}

.swiper-container {
  width: 100%;
  height: auto;
}

.swiper-wrapper {
  width: 100%;
  height: auto;
}

.swiper-slide {
  width: 100%;
  height: auto;
}

.swiper-img {
  width: 100%;
  height: auto;
  max-height: 70rem;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

@media screen and (max-width: 767px) {
  .swiper-img {
    height: 40rem;
  }
}
.swiper-img--info {
  /* max-height: 28rem; */
  max-height: 40rem;
}

@media screen and (max-width: 767px) {
  .swiper-img--info {
    height: 20rem;
    /* height: 17rem; */
  }
}
.swiper-img--tall {
  max-height: 40rem;
}

@media screen and (max-width: 767px) {
  .swiper-img--tall {
    height: 20rem;
  }
}
.swiper-button-prev:after,
.swiper-button-next:after {
  color: #172042;
}

@media screen and (max-width: 767px) {
  .swiper-button-prev:after,
  .swiper-button-next:after {
    font-size: 3rem;
  }
}
.swiper-container-horizontal > .swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 1.5rem;
}

.swiper-pagination-bullet {
  border-radius: inherit;
  margin: 0 5px !important;
  width: 4rem;
  height: 0.5rem;
  background: #fff;
  opacity: 0.7;
}

@media screen and (max-width: 767px) {
  .swiper-pagination-bullet {
    width: 3rem;
  }
}
.swiper-pagination-bullet-active {
  background: #172042;
  opacity: 1;
}

/* 新おしながき
---------------------------------------------------------- */
.p-food {
  margin-top: 5rem;
  padding: 3rem 3rem;
  width: 100%;
  background-color: #7A5A2B;
  border: 1.5rem solid #442F12;
  -webkit-box-shadow: 1px 1px 7px rgb(138, 138, 138);
          box-shadow: 1px 1px 7px rgb(138, 138, 138);
}

@media screen and (max-width: 767px) {
  .p-food {
    padding: 1.3rem;
    border-width: 0.8rem;
  }
}
.p-food__container {
  position: relative;
  padding: 3rem;
  /* background-image: url(../img/food/food-bg.jpg); */
  background-image: url(https://ssl.samidare.jp/~tukiyamaf/jionjiterrace/p/food/food-bg.jpg);
  background-repeat: repeat;
  background-size: contain;
  -webkit-box-shadow: 1px 1px 5px rgb(59, 59, 59);
          box-shadow: 1px 1px 5px rgb(59, 59, 59);
}

@media screen and (max-width: 767px) {
  .p-food__container {
    padding: 4rem 1.5rem;
  }
}
.p-food__pin {
  position: absolute;
  top: 0;
  left: 0;
  width: 6rem;
}

@media screen and (max-width: 767px) {
  .p-food__pin {
    width: 4.5rem;
  }
}
.p-food__pin--reverse {
  left: auto;
  right: 0;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

.p-food__header {
  width: 100%;
  /* padding-top: 2rem; */
  font-size: 2.5rem;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .p-food__header {
    font-size: 2.2rem;
  }
}
.p-food__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.p-food__card {
  margin: 5rem 3rem 0 0;
  /* width: calc(33.333% - 6rem / 3); */
  width: calc(50% - 1.5rem);
}

@media screen and (max-width: 767px) {
  .p-food__card {
    margin: 3rem 0 0 0;
    width: 100%;
  }
}
.p-food__card:nth-child(2n) {
  margin-right: 0;
}

.p-food__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  letter-spacing: normal;
  font-size: 1.9rem;
}

@media screen and (max-width: 767px) {
  .p-food__title {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    font-size: 1.8rem;
  }
}
.p-food__title--other {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-food__title span {
  padding-left: 1rem;
}

.p-food__image {
  position: relative;
  margin-top: 1rem;
  width: 100%;
  -webkit-box-shadow: 1px 1px 5px rgb(143, 143, 143);
          box-shadow: 1px 1px 5px rgb(143, 143, 143);
}

.p-food__image::before {
  content: "";
  display: block;
  /* aspect-ratio: 16 / 9; */
  aspect-ratio: 4/3;
}

.p-food__image img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-food__info {
  margin-top: 1rem;
  font-size: 1.7rem;
  text-align: justify;
  letter-spacing: normal;
}

@media screen and (max-width: 767px) {
  .p-food__info {
    font-size: 1.6rem;
  }
}
.p-food__list {
  margin-top: 2rem;
  padding: 0 1rem;
  list-style: none;
}

@media screen and (max-width: 767px) {
  .p-food__list {
    margin-top: 1rem;
    padding: 0;
  }
}
.p-food__list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  font-size: 1.7rem;
}

@media screen and (max-width: 767px) {
  .p-food__list li {
    font-size: 1.6rem;
  }
}
.p-food__bg {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 120%;
  z-index: -5;
}

.p-food__bg--sp {
  display: none;
}

.p-org {
  text-align: center;
}

.p-org__head {
  margin-top: 8rem;
}

.p-org__text {
  margin-top: 2rem;
  text-align: justify;
}

.p-org__caution {
  position: relative;
  padding-left: 2.8rem;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .p-org__caution {
    padding-left: 2rem;
  }
}
.p-org__caution::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}
.p-org__caution a {
  color: blue;
  text-decoration: underline;
}

.p-org__caution--disc::before {
  content: "・";
}

.p-org__caution--non {
  padding-left: 0;
}
.p-org__caution--non::before {
  display: none;
}

.p-org__table {
  margin: 0 auto;
  margin-top: 2rem;
  width: 100%;
  border-collapse: collapse;
}
.p-org__table th, .p-org__table td {
  padding: 0 1rem;
  border: solid 0.1rem #000;
}
@media screen and (max-width: 767px) {
  .p-org__table th, .p-org__table td {
    padding: 0 0.5rem;
    text-align: left;
  }
}
.p-org__table caption {
  text-align: justify;
}

.p-org__wrapper {
  margin-top: 5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-org__wrapper span {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .p-org__wrapper .p-org__contact {
    display: inline-block;
    font-weight: bold;
  }
}

.p-org__tel {
  margin-right: 2rem;
}
@media screen and (max-width: 767px) {
  .p-org__tel {
    margin: 0;
  }
}

.p-ex {
  padding-bottom: 5rem;
  background-color: #FFF26C;
}

.p-ex__top {
  position: relative;
}
.p-ex__top img {
  width: 100%;
}
.p-ex__top p {
  position: absolute;
  top: 3rem;
  left: 4rem;
  color: white;
  font-size: 1.2em;
  -webkit-filter: drop-shadow(0 0 3px black);
          filter: drop-shadow(0 0 3px black);
}
@media screen and (max-width: 767px) {
  .p-ex__top p {
    position: initial;
    margin: 1rem auto 0;
    text-align: center;
    font-size: 1.1em;
    color: black;
    -webkit-filter: none;
            filter: none;
  }
}

.p-ex__section {
  margin-top: 5rem;
  padding-bottom: 3rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-ex__section {
    padding-bottom: 1rem;
  }
}

.p-ex__head {
  display: block;
  margin: 0 auto;
  padding-bottom: 1.5rem;
  width: 32rem;
  font-size: 1.3em;
  border-bottom: solid 2px black;
}
@media screen and (max-width: 767px) {
  .p-ex__head {
    width: 28rem;
    max-width: 100%;
  }
}

.p-ex__image {
  margin: 4rem auto 0;
  width: 90%;
  max-width: 43rem;
}
@media screen and (max-width: 767px) {
  .p-ex__image {
    margin-top: 3rem;
  }
}

.p-ex__image--small {
  max-width: 34rem;
}

.p-ex__image--wide {
  max-width: 60rem;
}

.p-ex__info {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-ex__info {
    padding: 0 1rem;
  }
}

.p-ex__price {
  display: block;
  margin: 2rem auto 0;
  padding: 1.3rem;
  width: 33rem;
  background-color: #FFFFB4;
  border: solid 1px #42210B;
}
@media screen and (max-width: 767px) {
  .p-ex__price {
    padding: 1rem;
    width: 85%;
  }
}

.p-ex__time {
  margin-top: 2rem;
}/*# sourceMappingURL=style2511.css.map */