@charset "UTF-8";
/* =====================================================
  1.0 - Foundation
===================================================== */
/* //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

RESET CSS

html5doctor.com Reset Stylesheet

//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
abbr,
address,
article,
aside,
audio,
b,
blockquote,
body,
canvas,
caption,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
p,
pre,
q,
samp,
section,
small,
span,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
ul,
var,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:after,
blockquote:before,
q:after,
q:before {
  content: '';
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: 700;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

button {
  padding: 0;
}

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

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  color: #231815;
  background-color: #ffffff;
  text-rendering: optimizeLegibility;
  -webkit-font-feature-settings: 'palt';
  font-feature-settings: 'palt';
  font-family: "'Noto Sans JP', "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-size: 3.73333vw;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
  -webkit-font-smoothing: antialiased;
}

@media screen and (min-width: 768px) {
  body {
    font-size: 1rem;
  }
}

h1,
h2,
h3 {
font-family: 'Noto Sans JP', "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}

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

a,
a:link,
a:visited {
  color: inherit;
  text-decoration: none;
}

a:active,
a:hover {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: normal;
}

ul,
ol,
li {
  list-style-type: none;
}

dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
  padding: 0;
}

img {
  border: 0;
  line-height: 0;
  vertical-align: bottom;
}

svg {
  vertical-align: bottom;
}

hr {
  display: none;
}

table {
  margin: 0;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
  margin: 0;
}

td {
  margin: 0;
}

em {
  font-weight: bold;
  font-style: normal;
}

form {
  margin: 0;
  padding: 0;
}

label {
  margin: 0;
  padding: 0;
}

input.btn {
  margin: 0 0.5em;
  padding: 0 1em;
}

/* キーボード操作"以外"でフォーカスされた際はoutlineを消す */
.js-focus-visible :focus:not(.focus-visible) {
  outline: 0;
}

/* =====================================================
  2.0 - Layout
===================================================== */
/*
  l-spacer
-----------------------------------------------------*/
.l-spacer-top {
  padding-top: 18vw;
}

@media screen and (min-width: 768px) {
  .l-spacer-top {
    padding-top: 6.25rem;
  }
}

.l-spacer {
  padding-top: 18vw;
}

@media screen and (min-width: 768px) {
  .l-spacer {
    padding-top: 9.375rem;
  }
}

/*
 l-container
-----------------------------------------------------*/
.l-container {
  padding: 0 25px;
}

.l-container.-pb {
  padding-bottom: 10.66667vw;
}

@media screen and (min-width: 768px) {
  .l-container.-pb {
    padding-bottom: 7.5rem;
  }
}

.l-container-sec {
  padding: 0 25px;
}

@media screen and (min-width: 1024px) {
  .l-container-sec {
    max-width: 2000px;
    padding: 0;
    width: 80%;
    margin: 0 auto;
  }
}

.l-container-sec.-single {
  padding-top: 5.33333vw;
}

@media screen and (min-width: 1200px) {
  .l-container-sec.-single {
    padding-top: 4.375rem;
    max-width: 736px;
    margin: 0 auto;
  }
}

@media screen and (min-width: 1200px) {
  .l-container-sec.-medium {
    margin: 0 auto;
  }
}

@media screen and (min-width: 1568px) {
  .l-container-sec.-medium {
    width: 59%;
  }
}

.l-container-sec.-pb {
  padding-bottom: 10.66667vw;
}

@media screen and (min-width: 768px) {
  .l-container-sec.-pb {
    padding-bottom: 7.5rem;
  }
}

/*
  Section
-----------------------------------------------------*/
.l-homeSec-top {
  margin-top: 3%;
}

@media screen and (min-width: 768px) {
  .l-homeSec-top {
    margin-top: 24px;
  }
}

.l-homeSec-news,
.l-homeSec-works {
  margin-top: 30%;
}

@media screen and (min-width: 768px) {
  .l-homeSec-news,
  .l-homeSec-works {
    margin-top: 12%;
  }
}

.l-section {
  padding-top: 10.66667vw;
}

@media screen and (min-width: 768px) {
  .l-section {
    padding-top: 6.25rem;
  }
}

.l-section.-secondary {
  padding-top: 10.66667vw;
}

@media screen and (min-width: 768px) {
  .l-section.-secondary {
    padding-top: 5rem;
  }
}

/*
  Main
-----------------------------------------------------*/
.l-sec-main {
  margin-top: 15%;
  margin-bottom: 15%;
}

@media screen and (min-width: 768px) {
  .l-sec-main {
    margin-top: 7%;
    margin-bottom: 7%;
  }
}

.p-news.l-sec-main {
  margin-bottom: 40%;
}

@media screen and (min-width: 768px) {
  .p-news.l-sec-main {
    margin-bottom: 28%;
  }
}

@media screen and (min-width: 1024px) {
  .p-news.l-sec-main {
    margin-bottom: 20%;
  }
}

/*
  header .l-header
-----------------------------------------------------*/
.l-header {
  position: static;
  width: 100%;
}

.l-header__wrap {
  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: 10px 25px;
  position: relative;
  z-index: 2;
}

@media screen and (min-width: 1024px) {
  .l-header__wrap {
    padding: 35px 130px 35px 96px;
  }
}

.l-header__logo-area {
  position: relative;
  margin-right: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
}

@media screen and (min-width: 1024px) {
  .l-header__logo img {
    width: 200px;
  }
}

.l-header__lang-area {
  margin-right: 45px;
  font-size: 10px;
}

@media screen and (min-width: 1024px) {
  .l-header__lang-area {
    margin-right: 35px;
    font-size: 14px;
  }
}

@media screen and (min-width: 1024px) {
  .l-header__lang-area.-sp {
    display: none;
  }
}

.l-header__button-area {
  position: fixed;
  top: 22px;
  max-width: 28px;
  right: 25px;
  z-index: 3;
}

@media screen and (min-width: 1024px) {
  .l-header__button-area {
    top: 38px;
    right: 58px;
  }
}

.l-header__button-caption {
  font-size: 10px;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  position: absolute;
  top: -1px;
  right: -18px;
  letter-spacing: 0.2em;
  font-family: "FOT-筑紫Aオールド明朝 Pr6 R", serif;
  color: #231815;
}

@media screen and (min-width: 1024px) {
  .l-header__button-caption {
    font-size: 12px;
    top: -3px;
    right: -22px;
  }
}

.l-header__menu-area {
  display: none;
}

@media screen and (min-width: 1024px) {
  .l-header__menu-area {
    display: block;
    width: 700px;
    text-align: right;
  }
}

@media screen and (min-width: 1024px) {
  .l-header__menu-area-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (min-width: 1024px) {
  .l-header__menu {
    z-index: 2;
    opacity: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 20px 0 0 auto;
    -webkit-transition: none;
    transition: none;
    font-weight: 700;
  }
}

.l-header__menu .item {
  padding: 0 0.5em;
}

.l-header__menu .item > a {
  position: relative;
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.l-header__menu .item > a:hover {
  color: #9a9774;
}

.l-header__menu .item.-current > a::before {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

@media screen and (min-width: 1024px) {
  .l-header__sns-icons {
    width: 20%;
    max-width: 180px;
    margin: 0 0 0 auto;
  }
}

.l-header__cta {
  margin-top: 10%;
}

@media screen and (min-width: 768px) {
  .l-header__menu-area .l-header__cta {
    margin-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .l-header__menu-area .l-header__cta .item + .item {
    margin-top: 0;
    margin-left: 17px;
  }
}

.l-header__button {
  position: relative;
  display: inline-block;
  text-decoration: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

/*
  Footer .l-footer
-----------------------------------------------------*/
.l-footer {
  background-color: #0A74BB;
  padding: 10% 25px;
}

@media screen and (min-width: 1024px) {
  .l-footer {
    padding: 155px 65px;
  }
}

.l-footer .address {
  margin-top: 2.7em;
  line-height: 2;
}

@media screen and (min-width: 768px) {
  .l-footer .address {
    margin-top: 2em;
    font-size: 1rem;
  }
}

.l-footer .c-sns-icons {
  margin-top: 16%;
}

@media screen and (min-width: 768px) {
  .l-footer .c-sns-icons {
    margin: 5.5em auto 0;
  }
}

.l-footer .menulist {
  font-size: 2.66667vw;
  margin-top: 6%;
}

@media screen and (min-width: 768px) {
  .l-footer .menulist {
    font-size: 0.75rem;
    margin-top: 2em;
  }
}

.l-footer .menulist li {
  display: inline-block;
}

.l-footer .menulist li + li {
  margin-left: 1.5em;
}

.l-footer .copyright {
  font-size: 2.66667vw;
  margin-top: 11%;
  line-height: 2;
}

@media screen and (min-width: 768px) {
  .l-footer .copyright {
    font-size: 0.625rem;
    margin-top: 5em;
  }
}

.l-footer__wrap {
  color: #fff;
}

@media screen and (min-width: 768px) {
  .l-footer__wrap {
    text-align: center;
  }
}

@media screen and (min-width: 768px) {
  .l-footer__logo img {
    width: 158px;
  }
}

/*
 l-mv
-----------------------------------------------------*/
.l-mv {
  position: relative;
}

.l-mv::after {
  position: absolute;
  content: '';
  bottom: -10px;
  width: 100%;
  height: 120vw;
  background-color: #E8F5FE;
}

@media screen and (min-width: 768px) {
  .l-mv::after {
    bottom: -2px;
    height: 90px;
  }
}

.l-mv-sub {
  position: relative;
  padding-bottom: 10.66667vw;
  pointer-events: none;
}

@media screen and (min-width: 768px) {
  .l-mv-sub {
    padding-bottom: 3.75rem;
  }
}

.l-mv-sub::after {
  position: absolute;
  content: '';
  bottom: -10px;
  width: 100%;
  height: 40%;
  background-color: #E8F5FE;
  z-index: -1;
  height: 53.33333vw;
}

@media screen and (min-width: 768px) {
  .l-mv-sub::after {
    height: 28.89031vw;
  }
}

.l-mv-sub.-white::after {
  content: none;
}

.l-mv-sub__container {
  position: relative;
  margin-right: 25px;
  height: 53.33333vw;
}

@media screen and (min-width: 768px) {
  .l-mv-sub__container {
    padding-right: 0;
    margin-right: 8%;
    height: 29.71939vw;
  }
}

.l-mv-sub__container .c-heading.-right {
  position: absolute;
  top: 0%;
  right: 0;
  z-index: 1;
  margin: 30px 0 0 auto;
}

@media screen and (min-width: 768px) {
  .l-mv-sub__container .c-heading.-right {
    margin: 50px 0 0 auto;
  }
}

.l-mv-sub__image {
  width: 76%;
  position: relative;
}

@media screen and (min-width: 768px) {
  .l-mv-sub__image {
    width: 80%;
  }
}

.l-mv-sub__image source,
.l-mv-sub__image img {
  width: 100%;
}

.l-mv-sub__single {
  margin-top: -17.33333vw;
}

@media screen and (min-width: 768px) {
  .l-mv-sub__single {
    margin-top: -15.94388vw;
  }
}

/* =====================================================
  3.0 - Object
===================================================== */
/*
  3.1 - Component
-----------------------------------------------------*/
/*
  BG 背景色のコンポーネント
-----------------------------------------------------*/
.c-bg-base {
  background-color: #E8F5FE;
}

/*
  Button　ボタンのコンポーネント
-----------------------------------------------------*/
.c-button {
  display: inline-block;
}

.c-button.-primary {
  position: relative;
  font-size: 3.73333vw;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .c-button.-primary {
    font-size: 1rem;
  }
}

.c-button.-primary::after {
  position: absolute;
  bottom: -3px;
  right: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #231815;
  -webkit-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transform-origin: right top;
      -ms-transform-origin: right top;
          transform-origin: right top;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.c-button.-primary:hover::after {
  -webkit-transform: scale(0, 1);
      -ms-transform: scale(0, 1);
          transform: scale(0, 1);
}

.c-button.-secondary {
  font-size: 3.2vw;
  position: relative;
  padding-right: 4vw;
}

@media screen and (min-width: 768px) {
  .c-button.-secondary {
    font-size: 0.875rem;
    padding-right: 0.625rem;
  }
}

.c-button.-secondary::before {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: absolute;
  content: '';
  top: 50%;
  right: 0;
  width: 1.6vw;
  height: 1.6vw;
  border-top: 1px solid #231815;
  border-left: 1px solid #231815;
  -webkit-transform: translateY(-40%) rotate(135deg);
      -ms-transform: translateY(-40%) rotate(135deg);
          transform: translateY(-40%) rotate(135deg);
}

@media screen and (min-width: 768px) {
  .c-button.-secondary::before {
    width: 0.375rem;
    height: 0.375rem;
  }
}

.c-button-wrap {
  text-align: right;
  margin-top: 5.33333vw;
}

@media screen and (min-width: 768px) {
  .c-button-wrap {
    margin-top: 1.91327vw;
  }
}

@media screen and (min-width: 1568px) {
  .c-button-wrap {
    margin-top: 1.875rem;
  }
}

.c-button + .c-button {
  margin-left: 20px;
}

@media screen and (min-width: 768px) {
  .c-button + .c-button {
    margin-left: 25px;
  }
}

/*
  heading　見出しのコンポーネント
-----------------------------------------------------*/
.c-heading {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
}

.c-heading .jp {
  font-size: 6.93333vw;
  color: #cbc9c4;
  font-family: 'Noto Sans JP', "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  margin-left: -5px;
  line-height: 1.3;
}

@media screen and (min-width: 768px) {
  .c-heading .jp {
    font-size: 3.31633vw;
      color: #cbc9c4;
  }
}

@media screen and (min-width: 1568px) {
  .c-heading .jp {
    font-size: 3.25rem;
       color: #cbc9c4;
  }
}

.c-heading .en {
  font-family: 'Noto Sans JP', "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-size: 2.66667vw;
  color: #cbc9c4;
  margin-top: 1px;
}

@media screen and (min-width: 768px) {
  .c-heading .en {
    font-size: 1.65816vw;
  }
}

@media screen and (min-width: 1568px) {
  .c-heading .en {
    font-size: 1.625rem;
  }
}

@media screen and (min-width: 768px) {
  .c-heading.-small .jp {
    font-size: 1.91327vw;
  }
}

@media screen and (min-width: 1568px) {
  .c-heading.-small .jp {
    font-size: 1.875rem;
  }
}

@media screen and (min-width: 768px) {
  .c-heading.-small .en {
    font-size: 0.82908vw;
  }
}

@media screen and (min-width: 1568px) {
  .c-heading.-small .en {
    font-size: 0.8125rem;
  }
}

.c-heading.-right {
  width: 100%;
  margin: 0 0 0 auto;
}

@media screen and (min-width: 768px) {
  .c-heading.-right {
    margin: 0 0 0 auto;
  }
}

.c-heading-sec.-primary-2 {
  font-size: 5.33333vw;
  font-family: 'Noto Sans JP', "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
  line-height: 1.6;
}

@media screen and (min-width: 768px) {
  .c-heading-sec.-primary-2 {
    font-size: 1.5rem;
    line-height: 1.5;
  }
}

@media screen and (min-width: 1024px) {
  .c-heading-sec.-primary-2 {
    font-size: 2.125rem;
  }
}

.c-heading-sec.-primary-3 {
  font-size: 4.53333vw;
  font-family: "FOT-筑紫Aオールド明朝 Pr6 B", serif;
  font-weight: 700;
  line-height: 1.6;
}

@media screen and (min-width: 768px) {
  .c-heading-sec.-primary-3 {
    font-size: 1.25rem;
    line-height: 1.5;
  }
}

@media screen and (min-width: 1024px) {
  .c-heading-sec.-primary-3 {
    font-size: 1.625rem;
  }
}

.c-heading-sec.-en {
  font-family: "FOT-筑紫Aオールド明朝 Pr6 R", serif;
  color: #454545;
}

.c-heading-sec.-en.-primary-3 {
  font-size: 4.53333vw;
}

@media screen and (min-width: 768px) {
  .c-heading-sec.-en.-primary-3 {
    font-size: 1.1875rem;
  }
}

@media screen and (min-width: 1024px) {
  .c-heading-sec.-en.-primary-3 {
    font-size: 1.5625rem;
  }
}

/*
Hamburger
-----------------------------------------------------*/
.c-hamburger {
  width: 100%;
  min-width: 26px;
  height: 30px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .c-hamburger {
    min-width: 36px;
  }
}

.c-hamburger__line {
  position: absolute;
  top: -10px;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 1px;
  background-color: #231815;
  -webkit-transition: inherit;
  transition: inherit;
}

.c-hamburger__line::before,
.c-hamburger__line::after {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-color: inherit;
  content: '';
  -webkit-transition: inherit;
  transition: inherit;
}

.c-hamburger__line::before {
  top: -7px;
}

@media screen and (min-width: 768px) {
  .c-hamburger__line::before {
    top: -10px;
  }
}

.c-hamburger__line::after {
  top: 7px;
}

@media screen and (min-width: 768px) {
  .c-hamburger__line::after {
    top: 10px;
  }
}

.c-hamburger[aria-expanded='true'] .c-hamburger__line {
  background-color: transparent;
}

.c-hamburger[aria-expanded='true'] .c-hamburger__line::before,
.c-hamburger[aria-expanded='true'] .c-hamburger__line::after {
  top: 0;
  background-color: #666;
}

.c-hamburger[aria-expanded='true'] .c-hamburger__line::before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.c-hamburger[aria-expanded='true'] .c-hamburger__line::after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/*
  Drawer
-----------------------------------------------------*/
.c-drawer {
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #E8F5FE;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.c-drawer::after {
  content: '';
  position: fixed;
  right: 0;
  top: 0;
  background-color: #fff;
  width: 25px;
  height: 100%;
  z-index: -1;
}

@media screen and (min-width: 768px) {
  .c-drawer::after {
    width: 80px;
  }
}

@media screen and (min-width: 1024px) {
  .c-drawer::after {
    width: 130px;
  }
}

.is-drawerActive .c-drawer {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.c-drawer__menu-outer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (min-width: 768px) {
  .c-drawer__menu-outer {
    width: 60%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.c-drawer__menu {
  font-size: 4;
  font-family: "FOT-筑紫Aオールド明朝 Pr6 B", serif;
  font-weight: 700;
  width: 50%;
}

@media screen and (min-width: 768px) {
  .c-drawer__menu {
    font-size: 1.5rem;
  }
}

.c-drawer__menu:not(:first-of-type) {
  margin-left: -6%;
}

@media screen and (min-width: 768px) {
  .c-drawer__menu:not(:first-of-type) {
    margin-left: 0;
  }
}

.c-drawer__menu .item {
  margin-bottom: 6.13333vw;
}

@media screen and (min-width: 768px) {
  .c-drawer__menu .item {
    margin-bottom: 1.5625rem;
  }
}

.c-drawer__menu .subitem {
  font-size: 2.8vw;
}

@media screen and (min-width: 768px) {
  .c-drawer__menu .subitem {
    font-size: 1rem;
  }
}

.c-drawer__menu .subitem li {
  margin-top: 0.8vw;
}

@media screen and (min-width: 768px) {
  .c-drawer__menu .subitem li {
    margin-top: 0.4375rem;
  }
}

.c-drawer__menu .subitem a {
  position: relative;
  padding-left: 2.4em;
}

.c-drawer__menu .subitem a::before {
  position: absolute;
  content: '';
  width: 0.7em;
  height: 1px;
  top: 50%;
  left: 10px;
  background-color: #231815;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.c-drawer__menu .subitem a:hover::before {
  left: 20px;
}

.c-drawer__menu .link {
  position: relative;
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.c-drawer__menu .link:hover {
  color: #0A74BB;
}

.c-drawer__wrapper {
  margin: 35px 25px;
}

@media screen and (min-width: 768px) {
  .c-drawer__wrapper {
    margin: 26px 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 85%;
    max-width: 800px;
    margin: 7% auto 0;
  }
}

@media screen and (min-width: 1024px) {
  .c-drawer__wrapper {
    width: 71%;
  }
}

@media screen and (min-width: 1300px) {
  .c-drawer__wrapper {
    width: 56%;
    max-width: 1000px;
  }
}

.c-drawer__footmenu {
  margin-top: 50px;
}

@media screen and (min-width: 768px) {
  .c-drawer__footmenu {
    margin-top: 0;
    width: 36%;
  }
}

@media screen and (min-width: 1024px) {
  .c-drawer__footmenu {
    width: 32%;
  }
}

.c-drawer__footmenu .menulist {
  font-size: 3.46667vw;
}

@media screen and (min-width: 768px) {
  .c-drawer__footmenu .menulist {
    font-size: 0.875rem;
  }
}

.c-drawer__footmenu .menulist li {
  margin-top: 1.5em;
}

@media screen and (min-width: 768px) {
  .c-drawer__footmenu .menulist li {
    margin-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .c-drawer__footmenu .menulist li + li {
    margin-top: 1em;
  }
}

.c-drawer__footmenu .menulist a {
  position: relative;
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.c-drawer__footmenu .menulist a:hover {
  color: #9a9774;
}

.c-drawer__sns-icons {
  width: 84%;
  margin-top: 10%;
}

.c-drawer__sns-icons img {
  width: 100%;
}

.c-drawer__sns-icons #twitter-icon,
.c-drawer__sns-icons #facebook-icon,
.c-drawer__sns-icons #instagram-icon,
.c-drawer__sns-icons #youtube-icon {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  fill: #231815;
}

.c-drawer__sns-icons #twitter-icon path,
.c-drawer__sns-icons #facebook-icon path,
.c-drawer__sns-icons #instagram-icon path,
.c-drawer__sns-icons #youtube-icon path {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  fill: #231815;
}

@media screen and (min-width: 768px) {
  .c-sns-icons.c-drawer__sns-icons li > a {
    width: 1.0625rem;
  }
}

@media screen and (min-width: 768px) {
  .c-sns-icons.c-drawer__sns-icons li > a:hover #twitter-icon,
  .c-sns-icons.c-drawer__sns-icons li > a:hover #facebook-icon,
  .c-sns-icons.c-drawer__sns-icons li > a:hover #instagram-icon path,
  .c-sns-icons.c-drawer__sns-icons li > a:hover #youtube-icon {
    fill: #0A74BB;
  }
}

/*
  Thanks
-----------------------------------------------------*/
.c-thanks__wrap {
  max-width: 700px;
  margin: 0 auto;
}

.c-thanks p {
  padding-top: 20px;
}

/*
  cta
-----------------------------------------------------*/
.c-cta .item {
  width: 48vw;
  font-size: 4vw;
  background-color: #fff;
  border: 1px solid #0A74BB;
  position: relative;
  display: inline-block;
  margin-right: 30%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (min-width: 768px) {
  .c-cta .item {
    width: 11.25rem;
    font-size: 0.9375rem;
    margin-right: 0;
  }
}

.c-cta .item a {
  padding: 5px;
  display: block;
  text-align: center;
}

.c-cta .item:hover {
  background-color: #0A74BB;
  color: #fff;
  border: 1px solid #0A74BB;
}



@media screen and (min-width: 768px) {
  .c-cta .item.-before span {
    padding-left: 1.375rem;
  }
}

.c-cta .item.-before span::before {
  position: absolute;
  content: '';
  background-image: url("../img/common/logomark.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 4vw;
  height: 4.53333vw;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (min-width: 768px) {
  .c-cta .item.-before span::before {
    width: 0.9375rem;
    height: 1.0625rem;
  }
}

.c-cta .item.-after span {
  position: relative;
  padding-right: 5.33333vw;
}

@media screen and (min-width: 768px) {
  .c-cta .item.-after span {
    padding-right: 1.375rem;
  }
}

.c-cta .item.-after span::before {
  position: absolute;
  content: '';
  background-image: url("../img/common/external-icon.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 3.46667vw;
  height: 3.2vw;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (min-width: 768px) {
  .c-cta .item.-after span::before {
    width: 0.8125rem;
    height: 0.75rem;
  }
}

.c-cta .item + .item {
  margin-top: 5%;
}

/*
  sns-icons
-----------------------------------------------------*/
.c-sns-icons {
  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;
  width: 140px;
}

.c-sns-icons li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-sns-icons li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 5vw;
}

@media screen and (min-width: 768px) {
  .c-sns-icons li > a {
    width: 15px;
  }
}

.c-sns-icons .note > a {
  width: 4vw;
}

@media screen and (min-width: 768px) {
  .c-sns-icons .note > a {
    width: 12px;
  }
}

.c-drawer__sns-icons li {
  margin-right: 1em;
}

/*
  c-sns-button
-----------------------------------------------------*/
.c-sns-button__container.-mt0 .c-sns-button__wrap {
  margin-top: 0;
}

.c-sns-button__container.-pb {
  padding: 10% 25px;
}

@media screen and (min-width: 768px) {
  .c-sns-button__container.-pb {
    padding: 4% 32px;
  }
}

.c-sns-button__wrap {
  margin-top: 11%;
  padding: 10% 25px;
  border-top: 1px solid #cbc9c4;
}

@media screen and (min-width: 768px) {
  .c-sns-button__wrap {
    margin-top: 9.6%;
    padding: 4% 32px;
  }
}

.c-sns-button__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.c-sns-button__item {
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.09, 0.43, 0.1, 0.79);
  transition: -webkit-transform 0.8s cubic-bezier(0.09, 0.43, 0.1, 0.79);
  transition: transform 0.8s cubic-bezier(0.09, 0.43, 0.1, 0.79);
  transition: transform 0.8s cubic-bezier(0.09, 0.43, 0.1, 0.79), -webkit-transform 0.8s cubic-bezier(0.09, 0.43, 0.1, 0.79);
  border: 1px solid #cbc9c4;
  width: 48%;
}

@media screen and (min-width: 768px) {
  .c-sns-button__item {
    width: 23%;
  }
}

.c-sns-button__item:nth-child(n + 3) {
  margin-top: 0.75em;
}

@media screen and (min-width: 768px) {
  .c-sns-button__item:nth-child(n + 3) {
    margin-top: 0;
  }
}

.c-sns-button__item:hover {
  background-color: #0A74BB;
  color: #fff;
}

.c-sns-button__item:hover #twitter-icon,
.c-sns-button__item:hover #facebook-icon,
.c-sns-button__item:hover #instagram-icon,
.c-sns-button__item:hover #youtube-icon {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  fill: #fff;
}

.c-sns-button__item:hover #twitter-icon path,
.c-sns-button__item:hover #facebook-icon path,
.c-sns-button__item:hover #instagram-icon path,
.c-sns-button__item:hover #youtube-icon path {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  fill: #fff;
}

.c-sns-button__inner {
  min-height: 45px;
  padding: 1.33333vw 2.66667vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (min-width: 768px) {
  .c-sns-button__inner {
    padding: 0;
    height: 40px;
  }
}

@media screen and (min-width: 1300px) {
  .c-sns-button__inner {
    height: 90px;
  }
}

@media screen and (min-width: 768px) {
  .c-sns-button__inner svg {
    width: 1.91327vw;
    height: 1.91327vw;
  }
}

@media screen and (min-width: 1568px) {
  .c-sns-button__inner svg {
    width: 1.875rem;
    height: 1.875rem;
  }
}

.c-sns-button__text {
  margin-left: 0.75em;
  font-family: "FOT-筑紫Aオールド明朝 Pr6 R", serif;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .c-sns-button__text {
    font-size: 1.14796vw;
  }
}

@media screen and (min-width: 1568px) {
  .c-sns-button__text {
    font-size: 1.125rem;
  }
}

/*
  c-sonation-banner
-----------------------------------------------------*/
.c-donation-banner {
  position: relative;
  overflow: hidden;
}

.c-donation-banner::before {
  content: '';
  background-image: url("../img/common/donation-banner_sp.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.09, 0.43, 0.1, 0.79);
  transition: -webkit-transform 0.8s cubic-bezier(0.09, 0.43, 0.1, 0.79);
  transition: transform 0.8s cubic-bezier(0.09, 0.43, 0.1, 0.79);
  transition: transform 0.8s cubic-bezier(0.09, 0.43, 0.1, 0.79), -webkit-transform 0.8s cubic-bezier(0.09, 0.43, 0.1, 0.79);
}

@media screen and (min-width: 768px) {
  .c-donation-banner::before {
    background-image: url("../img/common/donation-banner_pc.jpg");
  }
}

.c-donation-banner::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  display: block;
  content: '';
  background: #000;
  opacity: 0.7;
  pointer-events: none;
}

@media screen and (min-width: 768px) {
  .c-donation-banner a {
    display: block;
    padding-bottom: 10.65051vw;
  }
}

@media screen and (min-width: 1568px) {
  .c-donation-banner a {
    padding-bottom: 10.4375rem;
  }
}

.c-donation-banner__heading {
  color: #fff;
  position: relative;
  z-index: 1;
  margin: 0 25px 0 auto;
}

@media screen and (min-width: 768px) {
  .c-donation-banner__heading {
    margin: 0;
    margin-left: 30%;
  }
}

.c-donation-banner__heading::after {
  position: absolute;
  content: '';
  background-image: url("../img/common/logo-symbol.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 8.53333vw;
  height: 10.13333vw;
  top: 10.66667vw;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media screen and (min-width: 768px) {
  .c-donation-banner__heading::after {
    top: 8.09949vw;
    width: 2.67857vw;
    height: 3.18878vw;
  }
}

@media screen and (min-width: 1568px) {
  .c-donation-banner__heading::after {
    top: 7.9375rem;
    width: 2.625rem;
    height: 3.125rem;
  }
}

.c-donation-banner__heading .jp {
  margin-top: 24vw;
  margin-left: 0;
}

@media screen and (min-width: 768px) {
  .c-donation-banner__heading .jp {
    font-size: 2.42347vw;
    margin-top: 11.9898vw;
  }
}

@media screen and (min-width: 1568px) {
  .c-donation-banner__heading .jp {
    font-size: 2.375rem;
    margin-top: 11.75rem;
  }
}

.c-donation-banner__text-area {
  z-index: 1;
  width: 100%;
  padding: 10.66667vw 6.66667vw;
}

@media screen and (min-width: 768px) {
  .c-donation-banner__text-area {
    margin: 0 auto;
    position: absolute;
    top: 13.71173vw;
    padding: 0;
  }
}

@media screen and (min-width: 1568px) {
  .c-donation-banner__text-area {
    top: 13.4375rem;
  }
}

@media screen and (min-width: 768px) {
  .c-donation-banner__inner {
    width: 40%;
    margin: 0 auto;
    padding-left: 9%;
  }
}

.c-donation-banner__text {
  color: #fff;
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .c-donation-banner__text {
    font-size: 1.14796vw;
  }
}

@media screen and (min-width: 1568px) {
  .c-donation-banner__text {
    font-size: 1.125rem;
  }
}

.c-donation-banner__link {
  text-align: right;
  color: #fff;
  z-index: 1;
  position: relative;
}

@media screen and (min-width: 768px) {
  .c-donation-banner__link {
    padding-top: 1em;
  }
}

.c-donation-banner__link .c-button.-secondary::before {
  background-color: transparent;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
}

@media screen and (min-width: 768px) {
  .c-donation-banner__link .c-button.-secondary {
    font-size: 1.14796vw;
  }
}

@media screen and (min-width: 1568px) {
  .c-donation-banner__link .c-button.-secondary {
    font-size: 1.125rem;
  }
}

.c-donation-banner:hover .c-button.-secondary::before {
  right: -10px;
}

.c-donation-banner:hover::before {
  -webkit-transform: scale(1.08, 1.08);
      -ms-transform: scale(1.08, 1.08);
          transform: scale(1.08, 1.08);
}

/*
  c-pagelink
-----------------------------------------------------*/
.c-pagelink {
  font-size: 3.2vw;
  font-family: "FOT-筑紫Aオールド明朝 Pr6 R", serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (min-width: 768px) {
  .c-pagelink {
    font-size: 1.2rem;
  }
}

.c-pagelink .item {
  padding: 0.5em 0;
}

.c-pagelink a {
  position: relative;
  padding-left: 1em;
  margin-right: 20px;
}

.c-pagelink a::after {
  position: absolute;
  content: '';
  top: 50%;
  left: 0;
  width: 1.6vw;
  height: 1.6vw;
  border-top: 1px solid #231815;
  border-left: 1px solid #231815;
  -webkit-transform: translateY(-70%) rotate(225deg);
      -ms-transform: translateY(-70%) rotate(225deg);
          transform: translateY(-70%) rotate(225deg);
}

@media screen and (min-width: 768px) {
  .c-pagelink a::after {
    width: 0.375rem;
    height: 0.375rem;
  }
}

/*
c-board
-----------------------------------------------------*/
.c-board {
  padding-top: 10.66667vw;
}

@media screen and (min-width: 768px) {
  .c-board {
    padding-top: 5rem;
  }
}

@media screen and (min-width: 1200px) {
  .c-board.-base {
    width: 59%;
    margin: 0 auto;
  }
}

@media screen and (min-width: 1200px) {
  .c-board.-wide {
    width: 100%;
  }
}

.c-board__wrap {
  padding: 5.33333vw 25px 10.66667vw;
  position: relative;
  background-color: #E8F5FE;
  margin-top: -5.33333vw;
}

@media screen and (min-width: 768px) {
  .c-board__wrap {
    margin-top: -24px;
    padding: 40px 0;
  }
}

.c-board__head {
  font-family: "FOT-筑紫Aオールド明朝 Pr6 B", serif;
  background-color: #9a9774;
  color: #fff;
  font-size: 4.26667vw;
  font-weight: 700;
  display: inline-block;
  height: 10.66667vw;
  margin: 0 25px;
  position: relative;
  z-index: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1em;
}

@media screen and (min-width: 768px) {
  .c-board__head {
    font-size: 1.125rem;
    height: 48px;
    margin: 0 40px;
    padding: 1em 2em;
  }
}

@media screen and (min-width: 768px) {
  .c-board__list {
    width: 80%;
    margin: 0 auto;
  }
}

.c-board__inner {
  padding: 1em 0;
}

@media screen and (min-width: 768px) {
  .c-board__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 1.25em 0;
  }
}

.c-board__inner + .c-board__inner {
  border-top: 1px solid #cbc9c4;
}

.c-board__title {
 font-family: 'Noto Sans JP', "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .c-board__title {
    width: 25%;
    padding-right: 1em;
    font-size: 1.125rem;
  }
}

.c-board__text {
  padding-top: 0.75em;
}

@media screen and (min-width: 768px) {
  .c-board__text {
    width: 75%;
    padding-top: 0;
    font-size: 1.125rem;
  }
}

a.c-board__link {
  display: block;
  text-decoration: underline;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

a.c-board__link:hover {
  opacity: 0.7;
}

/*
  3.2 - Project
-----------------------------------------------------*/
/*
mv
-----------------------------------------------------*/
.p-mv {
  margin-right: 25px;
}

@media screen and (min-width: 768px) {
  .p-mv {
    margin-right: 80px;
  }
}

@media screen and (min-width: 1024px) {
  .p-mv {
    margin-right: 130px;
  }
}

/*
Swiper
-----------------------------------------------------*/
.swiper-container {
  height: 100%;
}

.swiper-slide img {
  width: 100%;
}

.swiper-button-prev,
.swiper-button-next {
  z-index: 1;
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  margin-top: 0;
  background-image: none;
  width: 15px;
  height: 15px;
  border-top: 2px solid #999999;
  border-left: 2px solid #999999;
}

.swiper-button-prev {
  -webkit-transform: translateY(-50%) rotate(315deg);
      -ms-transform: translateY(-50%) rotate(315deg);
          transform: translateY(-50%) rotate(315deg);
}

.swiper-button-next {
  -webkit-transform: translateY(-50%) rotate(135deg);
      -ms-transform: translateY(-50%) rotate(135deg);
          transform: translateY(-50%) rotate(135deg);
}

.swiper-pagination-bullet {
  border: 1px solid #e50012;
  background: transparent;
  opacity: inherit;
  margin: 0 0.6em;
  width: 10px;
  height: 10px;
  border-radius: initial;
}

@media screen and (min-width: 1024px) {
  .swiper-pagination-bullet {
    margin: 0 0.9em;
    width: 13px;
    height: 13px;
  }
}

.swiper-pagination-bullet-active {
  background-color: #e50012;
}

.swiper-pagination {
  position: static;
  width: 100%;
  margin: 20px auto 0;
  z-index: 0;
}

@media screen and (min-width: 768px) {
  .swiper-pagination {
    margin: 40px auto 0;
  }
}

/*
 info
-----------------------------------------------------*/
.p-info {
  background-color: #E8F5FE;
font-family: 'Noto Sans JP', "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  color: #231815;
  position: absolute;
  bottom: -10px;
  left: 0;
  z-index: 1;
  padding: 10px;
}

@media screen and (min-width: 768px) {
  .p-info {
    padding: 10px 10px 10px 25px;
  }
}

@media screen and (min-width: 1024px) {
  .p-info {
    padding: 20px 20px 22px 96px;
    bottom: -2px;
  }
}

.p-info__wrap {
  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;
}

.p-info__text {
  margin-right: 15px;
}

@media screen and (min-width: 768px) {
  .p-info__text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    margin-right: 20px;
  }
}

.p-info__state {
  font-size: 1rem;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .p-info__state {
    font-size: 1.5rem;
  }
}

.p-info__time {
  font-size: 0.875rem;
}

@media screen and (min-width: 768px) {
  .p-info__time {
    font-size: 1.125rem;
    margin-left: 0.6em;
  }
}

.p-info__attention {
  display: none;
}

@media screen and (min-width: 1024px) {
  .p-info__attention {
    display: block;
    font-size: 0.9375rem;
    margin-left: 0.5em;
  }
}

.p-info__link .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-info__link .item:hover {
  background-color: #9a9774;
  color: #fff;
}

.p-info__link .item:hover span.calendar::before {
  background-image: url("../img/common/calendar-white.svg");
}

.p-info__link .item:hover span.clock::before {
  background-image: url("../img/common/clock-white.svg");
}

.p-info__link .item:hover span.access::before {
  background-image: url("../img/common/location-white.svg");
}

.p-info__link .item {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: #fff;
  position: relative;
}

.p-info__link .item a {
  position: relative;
  display: block;
  width: 63px;
  height: 42px;
}

@media screen and (min-width: 1024px) {
  .p-info__link .item a {
    height: 48px;
    width: 125px;
    font-size: 0.875rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.p-info__link .item + .item {
  margin-left: 5px;
}

.p-info__link .text {
  font-size: 0.625rem;
  position: absolute;
  line-height: 2;
  bottom: 1px;
  width: 100%;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .p-info__link .text {
    font-size: 0.8125rem;
    width: auto;
    bottom: 50%;
    -webkit-transform: translateY(50%);
        -ms-transform: translateY(50%);
            transform: translateY(50%);
    padding-left: 24px;
  }
}

.p-info__link .text::before {
  position: absolute;
  content: '';
  background-repeat: no-repeat;
  background-size: contain;
  top: -16px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  background-image: url("../img/common/calendar.svg");
  width: 18px;
  height: 15px;
}

@media screen and (min-width: 1024px) {
  .p-info__link .text::before {
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    left: 0;
  }
}

.p-info__link .text.clock::before {
  background-image: url("../img/common/clock.svg");
  width: 17px;
  height: 17px;
}

.p-info__link .text.access::before {
  background-image: url("../img/common/location.svg");
  width: 15px;
  height: 17px;
}

/*
  p-important
-----------------------------------------------------*/
.p-important {
  padding: 0 25px;
}

@media screen and (min-width: 1024px) {
  .p-important {
    padding: 0 0 0 96px;
  }
}

.p-important__wrap {
  padding-top: 11%;
}

@media screen and (min-width: 768px) {
  .p-important__wrap {
    padding-top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (min-width: 768px) {
  .p-important__wrap .inner {
    width: 80%;
  }
}

.p-important__wrap .inner dd + dd {
  margin-top: 5px;
}

.p-important__wrap .link {
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding-bottom: 6px;
  line-height: 2;
}

@media screen and (min-width: 768px) {
  .p-important__wrap .link {
    font-size: 1.125rem;
  }
}

.p-important__wrap .link::after {
  position: absolute;
  bottom: -3px;
  right: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #231815;
  -webkit-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transform-origin: right top;
      -ms-transform-origin: right top;
          transform-origin: right top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.p-important__wrap .link:hover::after {
  background-color: #9a9774;
}

.p-important__wrap .link:hover {
  color: #9a9774;
}

.p-important__wrap .title {
  display: inline-block;
}

.p-important__wrap .head {
  color: #0A74BB;
  font-size: 2.66667vw;
  font-family: "FOT-筑紫Aオールド明朝 Pr6 B", serif;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .p-important__wrap .head {
    width: 140px;
    font-size: 0.875rem;
    padding-right: 1.5em;
  }
}

.p-important__wrap .date {
  font-size: 3.2vw;
  padding-right: 0.5em;
}

@media screen and (min-width: 768px) {
  .p-important__wrap .date {
    font-size: 0.6875rem;
    padding-right: 1.5em;
  }
}

/*
  p-news
-----------------------------------------------------*/
@media screen and (min-width: 768px) {
  .p-news,
  .p-news-sec {
    margin: 0 auto;
    max-width: 1000px;
  }
}

/* 共通 */
.p-news__wrap {
  width: 78%;
  margin: -15% 0 0 auto;
}

@media screen and (min-width: 768px) {
  .p-news__wrap {
    width: 86%;
    margin: -7% 0 0 auto;
  }
}

@media screen and (min-width: 1024px) {
  .p-news__wrap {
    width: 89%;
  }
}

.p-news__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (min-width: 1024px) {
  .p-news__head {
    width: 28%;
  }
}

@media screen and (min-width: 1024px) {
  .p-news__item a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-news__item + .p-news__item {
  margin-top: 1.5em;
}

.p-news__date {
  margin-top: 5px;
  font-size: 3.2vw;
  padding-right: 5px;
  display: inline-block;
}

@media screen and (min-width: 768px) {
  .p-news__date {
    font-size: 0.8125rem;
    min-width: 7.1875rem;
    padding-right: 10px;
  }
}

.p-news__item:hover .p-news__title {
  color: #9a9774;
}

.p-news__cat {
  display: inline-block;
}

.p-news__cat li {
  font-size: 2.66667vw;
  background-color: #fff;
  padding: 0 10px;
  width: 19vw;
  text-align: center;
  margin-right: 0.5em;
  margin-top: 0.5em;
  display: inline-block;
}

@media screen and (min-width: 768px) {
  .p-news__cat li {
    font-size: 0.75rem;
    width: 82px;
    margin-right: 2.5em;
  }
}

.p-news__title {
  padding-top: 0.3em;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-family: "FOT-筑紫Aオールド明朝 Pr6 R", serif;
}

@media screen and (min-width: 768px) {
  .p-news__title {
    font-size: 1.125rem;
  }
}

@media screen and (min-width: 1024px) {
  .p-news__title {
    width: 70%;
    padding-top: 0;
  }
}

.p-news__button {
  text-align: right;
  margin-top: 10%;
}

@media screen and (min-width: 768px) {
  .p-news__button {
    margin-top: 40px;
  }
}

/* トップ */
@media screen and (min-width: 1200px) {
  .p-news .c-heading {
    margin-left: -30px;
  }
}

/* アーカイブ */
.p-news-sec .p-news__cat li {
  border: 1px solid #cbc9c4;
}

.p-news-sec .p-news__list {
  padding-top: 1.25rem;
}

@media screen and (min-width: 768px) {
  .p-news-sec .p-news__list {
    padding-top: 2.5rem;
  }
}

/*
  p-exhib
-----------------------------------------------------*/
@media screen and (min-width: 768px) {
  .p-exhib-home {
    margin: 0 auto;
    padding: 0 25px;
  }
}

@media screen and (min-width: 1568px) {
  .p-exhib-home {
    padding: 0 14%;
  }
}

@media screen and (min-width: 768px) {
  .p-exhib-home .c-heading.-right {
    padding-right: 50px;
  }
}

.p-exhib-home__wrap {
  padding-top: 8%;
}

@media screen and (min-width: 768px) {
  .p-exhib-home__wrap {
    padding-top: 0;
    margin-top: -80px;
  }
}

.p-exhib-home__thumb {
  padding-right: 25px;
}

@media screen and (min-width: 768px) {
  .p-exhib-home__thumb {
    width: 59%;
  }
}

.p-exhib-home__thumb img {
  width: 100%;
}

.p-exhib-home__text-area {
  background-color: #fff;
  margin-left: 25px;
  margin-top: -8%;
  padding: 12% 7% 5% 7%;
}

@media screen and (min-width: 768px) {
  .p-exhib-home__text-area {
    width: 46%;
    margin: -150px 0 0 auto;
    padding: 5% 3% 5% 6%;
  }
}

.p-exhib-home__text-area:hover .p-exhib-home__title {
  color: #9a9774;
}

.p-exhib-home__title {
  font-size: 4.53333vw;
  font-family: "FOT-筑紫Aオールド明朝 Pr6 B", serif;
  font-weight: 700;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (min-width: 768px) {
  .p-exhib-home__title {
    font-size: 1.5rem;
  }
}

.p-exhib-home__date {
  font-size: 3.2vw;
  font-weight: 700;
  padding-top: 0.5em;
}

@media screen and (min-width: 768px) {
  .p-exhib-home__date {
    font-size: 1rem;
  }
}

.p-exhib-home__link {
  text-align: right;
  margin-top: 1em;
}

.p-exhib-home__button {
  text-align: right;
  padding: 0 25px;
  margin-top: 10%;
}

@media screen and (min-width: 768px) {
  .p-exhib-home__button {
    margin-top: 60px;
  }
}

/*
  p-nav
-----------------------------------------------------*/
@media screen and (min-width: 768px) {
  .p-nav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 95%;
    margin: 0 -25px 0 auto;
  }
}

@media screen and (min-width: 1200px) {
  .p-nav__list {
    width: 90%;
  }
}

@media screen and (min-width: 1300px) {
  .p-nav__list {
    width: 82%;
  }
}

.p-nav__item {
  overflow: hidden;
  position: relative;
}

.p-nav__item::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  display: block;
  content: '';
  background: #000;
  opacity: 0.25;
  pointer-events: none;
}

.p-nav__item source,
.p-nav__item img {
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.09, 0.43, 0.1, 0.79);
  transition: -webkit-transform 0.8s cubic-bezier(0.09, 0.43, 0.1, 0.79);
  transition: transform 0.8s cubic-bezier(0.09, 0.43, 0.1, 0.79);
  transition: transform 0.8s cubic-bezier(0.09, 0.43, 0.1, 0.79), -webkit-transform 0.8s cubic-bezier(0.09, 0.43, 0.1, 0.79);
}

.p-nav__item + .p-nav__item {
  margin-top: 6%;
}

@media screen and (min-width: 768px) {
  .p-nav__item + .p-nav__item {
    margin-top: 0;
  }
}

.p-nav__item:hover source,
.p-nav__item:hover img {
  -webkit-transform: scale(1.08, 1.08);
      -ms-transform: scale(1.08, 1.08);
          transform: scale(1.08, 1.08);
}

.p-nav__thumb {
  position: relative;
}

.p-nav__thumb img {
  width: 100%;
}

.p-nav__text-area {
  position: absolute;
  bottom: 0;
  z-index: 1;
  padding: 1em 1.5em;
  color: #fff;
}

@media screen and (min-width: 1200px) {
  .p-nav__text-area {
    padding: 2em 1.5em;
  }
}

.p-nav__title {
  font-size: 5.86667vw;
  font-family: "FOT-筑紫Aオールド明朝 Pr6 B", serif;
  font-weight: 700;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 768px) {
  .p-nav__title {
    font-size: 2.29592vw;
  }
}

@media screen and (min-width: 1568px) {
  .p-nav__title {
    font-size: 2.25rem;
  }
}

.p-nav__title .en {
  font-family: "FOT-筑紫Aオールド明朝 Pr6 R", serif;
  font-size: 2.66667vw;
  font-weight: 400;
  display: block;
}

@media screen and (min-width: 768px) {
  .p-nav__title .en {
    font-size: 1.02041vw;
  }
}

@media screen and (min-width: 1568px) {
  .p-nav__title .en {
    font-size: 1rem;
  }
}

.p-nav__text {
  display: none;
}

@media screen and (min-width: 768px) {
  .p-nav__text {
    display: block;
    font-size: 1.02041vw;
    padding-top: 1em;
  }
}

@media screen and (min-width: 1568px) {
  .p-nav__text {
    font-size: 1rem;
  }
}

.p-nav__text span {
  display: inline-block;
}

.p-nav__banner {
  margin-top: -8%;
  padding-top: 25%;
  background-color: #fff;
}

@media screen and (min-width: 768px) {
  .p-nav__banner {
    padding-top: 15%;
    margin-top: -9%;
  }
}

/*
  p-banner
-----------------------------------------------------*/
@media screen and (min-width: 768px) {
  .p-banner__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 83%;
    margin: 0 auto;
  }
}

@media screen and (min-width: 1024px) {
  .p-banner__list {
    width: 90%;
  }
}

@media screen and (min-width: 1200px) {
  .p-banner__list {
    width: 76%;
  }
}

@media screen and (min-width: 1300px) {
  .p-banner__list {
    width: 61%;
  }
}

@media screen and (min-width: 768px) {
  .p-banner__list.-wide {
    width: 100%;
  }
}

.p-banner__item {
  border: 1px solid #cbc9c4;
  background-color: #fff;
}

@media screen and (min-width: 768px) {
  .p-banner__item {
    width: 48%;
  }
}

.p-banner__item:hover img {
  -webkit-transform: scale(1.08, 1.08);
      -ms-transform: scale(1.08, 1.08);
          transform: scale(1.08, 1.08);
}

.p-banner__item + .p-banner__item {
  margin-top: 6%;
}

@media screen and (min-width: 768px) {
  .p-banner__item + .p-banner__item {
    margin-top: 0;
    margin-left: 2%;
  }
}

.p-banner__inner {
  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: 2%;
}

.p-banner__thumb {
  width: 43%;
  overflow: hidden;
}

.p-banner__thumb img {
  width: 100%;
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.09, 0.43, 0.1, 0.79);
  transition: -webkit-transform 0.8s cubic-bezier(0.09, 0.43, 0.1, 0.79);
  transition: transform 0.8s cubic-bezier(0.09, 0.43, 0.1, 0.79);
  transition: transform 0.8s cubic-bezier(0.09, 0.43, 0.1, 0.79), -webkit-transform 0.8s cubic-bezier(0.09, 0.43, 0.1, 0.79);
}

.p-banner__title {
  font-size: 4.26667vw;
  font-family: "FOT-筑紫Aオールド明朝 Pr6 B", serif;
  font-weight: 700;
  width: 57%;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .p-banner__title {
    font-size: 1.65816vw;
  }
}

@media screen and (min-width: 1568px) {
  .p-banner__title {
    font-size: 1.625rem;
  }
}

.p-banner__title span {
  font-size: 2.66667vw;
  display: block;
}

@media screen and (min-width: 768px) {
  .p-banner__title span {
    font-size: 0.75rem;
  }
}

@media screen and (min-width: 1568px) {
  .p-banner__title span {
    font-size: 0.875rem;
  }
}

/*
  p-about
-----------------------------------------------------*/
.p-about-home {
  position: relative;
}

.p-about-home .u-iframe {
  height: 100vw;
}

@media screen and (min-width: 768px) {
  .p-about-home .u-iframe {
    height: 50vw;
  }
}

@media screen and (min-width: 768px) {
  .p-about-home {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.p-about-home__banner {
  position: relative;
  overflow: hidden;
  height: 100vw;
}

@media screen and (min-width: 768px) {
  .p-about-home__banner {
    width: 50%;
    height: 50vw;
  }
}

.p-about-home__banner a {
  display: block;
  width: 100%;
  height: 100%;
}

.p-about-home__banner::before {
  content: '';
  background-image: url("../img/home/about.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.09, 0.43, 0.1, 0.79);
  transition: -webkit-transform 0.8s cubic-bezier(0.09, 0.43, 0.1, 0.79);
  transition: transform 0.8s cubic-bezier(0.09, 0.43, 0.1, 0.79);
  transition: transform 0.8s cubic-bezier(0.09, 0.43, 0.1, 0.79), -webkit-transform 0.8s cubic-bezier(0.09, 0.43, 0.1, 0.79);
}

.p-about-home__banner::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  display: block;
  content: '';
  background: #000;
  opacity: 0.25;
  pointer-events: none;
}

.p-about-home__banner:hover::before {
  -webkit-transform: scale(1.08, 1.08);
      -ms-transform: scale(1.08, 1.08);
          transform: scale(1.08, 1.08);
}

.p-about-home__heading {
  color: #;
  position: relative;
  z-index: 1;
  padding: 5.33333vw 6.66667vw;
}

@media screen and (min-width: 768px) {
  .p-about-home__heading {
    padding: 3.18878vw;
  }
}

.p-about-home__text-area {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 5.33333vw 6.66667vw;
}

@media screen and (min-width: 768px) {
  .p-about-home__text-area {
    padding: 3.18878vw;
  }
}

.p-about-home__text-area.-secondary {
  background-color: #0A74BB;
}

.p-about-home__text {
  color: #fff;
  position: relative;
  z-index: 1;
}

.p-about-home__link {
  color: #fff;
  position: relative;
  z-index: 1;
  text-align: right;
  margin-top: 0.5em;
}

.p-about-home__link .c-button.-secondary::before {
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
}

.p-about-home__nav {
  position: relative;
  height: 100vw;
}

@media screen and (min-width: 768px) {
  .p-about-home__nav {
    width: 50%;
    height: 50vw;
    margin-top: 50px;
  }
}

/* 下層 */
.p-about .l-mv-sub__image .img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 58.66667vw;
}

@media screen and (min-width: 768px) {
  .p-about .l-mv-sub__image .img {
    height: 45vw;
  }
}

@media screen and (min-width: 768px) {
  .p-about .p-since {
    padding-top: 19.77041vw;
  }
}

.c-button-wrap.p-about__link p + p {
  padding-top: 0.75em;
}

.p-about__insta .icon {
  position: relative;
  padding-right: 6.66667vw;
}

@media screen and (min-width: 768px) {
  .p-about__insta .icon {
    padding-right: 1.5625rem;
  }
}

.p-about__insta .icon::after {
  position: absolute;
  content: '';
  background-image: url("../img/common/instagram-icon-black.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 4.26667vw;
  height: 4.26667vw;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (min-width: 768px) {
  .p-about__insta .icon::after {
    width: 1rem;
    height: 1rem;
  }
}

/*
  event
-----------------------------------------------------*/
@media screen and (min-width: 768px) {
  .p-event-home {
    padding-top: 1.5%;
    margin: 0 auto;
  }
}

@media screen and (min-width: 1700px) {
  .p-event-home {
    width: 71%;
  }
}

.p-event-home__wrap {
  width: 78%;
  margin: -15% 0 0 auto;
}

@media screen and (min-width: 768px) {
  .p-event-home__wrap {
    margin: -12% 7% 0 auto;
  }
}

@media screen and (min-width: 768px) {
  .p-event-home__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media screen and (min-width: 768px) {
  .p-event-home__list::after {
    content: '';
    display: block;
    width: 31%;
  }
}

@media screen and (min-width: 768px) {
  .p-event-home__cat {
    margin-top: 0.5em;
  }
}

@media screen and (min-width: 768px) {
  .p-event-home__item {
    width: 31%;
  }
}

.p-event-home__item:hover .p-event-home__thumb img {
  -webkit-transform: scale(1.08, 1.08);
      -ms-transform: scale(1.08, 1.08);
          transform: scale(1.08, 1.08);
}

.p-event-home__item + .p-event-home__item {
  margin-top: 2em;
}

@media screen and (min-width: 768px) {
  .p-event-home__item + .p-event-home__item {
    margin-top: 0;
  }
}

.p-event-home__thumb {
  overflow: hidden;
}

.p-event-home__thumb img {
  width: 100%;
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.09, 0.43, 0.1, 0.79);
  transition: -webkit-transform 0.8s cubic-bezier(0.09, 0.43, 0.1, 0.79);
  transition: transform 0.8s cubic-bezier(0.09, 0.43, 0.1, 0.79);
  transition: transform 0.8s cubic-bezier(0.09, 0.43, 0.1, 0.79), -webkit-transform 0.8s cubic-bezier(0.09, 0.43, 0.1, 0.79);
}

.p-event-home__title {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 4.53333vw;
  font-family: "FOT-筑紫Aオールド明朝 Pr6 B", serif;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .p-event-home__title {
    font-size: 1.125rem;
  }
}

@media screen and (min-width: 1568px) {
  .p-event-home__title {
    font-size: 1.25rem;
  }
}

.p-event-home__text {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 3.2vw;
  margin-top: 0.5em;
}

@media screen and (min-width: 768px) {
  .p-event-home__text {
    font-size: 1rem;
  }
}

@media screen and (min-width: 1568px) {
  .p-event-home__text {
    font-size: 1.125rem;
  }
}

.p-event-home__button {
  text-align: right;
  margin-top: 10%;
}

@media screen and (min-width: 768px) {
  .p-event-home__button {
    margin-top: 60px;
  }
}

.p-event__cta {
  margin-top: 4vw;
}

@media screen and (min-width: 768px) {
  .p-event__cta {
    margin-top: 1.25rem;
  }
}

.p-event__cta .item {
  width: 100%;
  margin-right: 0;
}

@media screen and (min-width: 768px) {
  .p-event__cta .item {
    max-width: 250px;
  }
}

.u-post .p-event__cta .item a {
  text-decoration: none;
  color: #231815;
}

.u-post .p-event__cta .item a:hover {
  color: #fff;
}

/*
  p-since
-----------------------------------------------------*/
.p-since__wrap {
  padding-top: 10.66667vw;
}

@media screen and (min-width: 768px) {
  .p-since__wrap {
    padding-top: 6.25rem;
  }
}

@media screen and (min-width: 768px) {
  .p-since__wrap.-pt {
    padding-top: 5%;
  }
}

@media screen and (min-width: 1200px) {
  .p-since__wrap.-pt {
    padding-top: 0;
  }
}

.p-since__wrap.-pb {
  padding-bottom: 10.66667vw;
}

@media screen and (min-width: 768px) {
  .p-since__wrap.-pb {
    padding-bottom: 5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-since__wrap.-secondary {
    width: 84%;
    margin: 0 auto;
    padding-top: 5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-since__wrap.-secondary .p-since__text {
    padding-top: 1em;
  }
}

@media screen and (min-width: 768px) {
  .p-since__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media screen and (min-width: 768px) {
  .p-since__inner.-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

@media screen and (min-width: 768px) {
  .p-since__inner.-reverse .p-since__text-area {
    padding-right: 0;
    width: 55%;
  }
}

@media screen and (min-width: 1200px) {
  .p-since__inner.-reverse .p-since__text-area {
    padding-left: 9%;
    padding-right: 0;
    width: 50%;
  }
}

.p-since__heading {
  font-size: 5.33333vw;
  font-family: "FOT-筑紫Aオールド明朝 Pr6 B", serif;
  font-weight: 700;
  line-height: 1.6;
}

@media screen and (min-width: 768px) {
  .p-since__heading {
    font-size: 1.75rem;
    line-height: 1.5;
  }
}

@media screen and (min-width: 1568px) {
  .p-since__heading {
    font-size: 2.125rem;
  }
}

.p-since__heading .en {
  font-weight: 400;
  font-family: "FOT-筑紫Aオールド明朝 Pr6 R", serif;
  font-size: 12vw;
  color: #cbc9c4;
  display: block;
  line-height: 1;
  letter-spacing: 0.07em;
  padding-top: 0.5em;
  padding-bottom: 0.1em;
}

@media screen and (min-width: 768px) {
  .p-since__heading .en {
    font-size: 4.375rem;
  }
}

@media screen and (min-width: 1024px) {
  .p-since__heading .en {
    font-size: 4.375rem;
    padding-top: 50px;
  }
}

@media screen and (min-width: 1568px) {
  .p-since__heading .en {
    padding-top: 100px;
    font-size: 5.625rem;
  }
}

.p-since__title {
  font-size: 4.53333vw;
  font-family: "FOT-筑紫Aオールド明朝 Pr6 B", serif;
  font-weight: 700;
  line-height: 1.6;
}

@media screen and (min-width: 768px) {
  .p-since__title {
    font-size: 1.5rem;
    line-height: 1.5;
  }
}

@media screen and (min-width: 1568px) {
  .p-since__title {
    font-size: 1.625rem;
  }
}

@media screen and (min-width: 768px) {
  .p-since__image-area {
    width: 40%;
  }
}

@media screen and (min-width: 768px) {
  .p-since__text-area {
    width: 55%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media screen and (min-width: 1200px) {
  .p-since__text-area {
    width: 50%;
    padding-right: 9%;
  }
}

.p-since__image picture,
.p-since__image img {
  width: 100%;
}

.p-since__cap {
  font-size: 2.66667vw;
  text-align: right;
  padding-top: 0.5em;
}

@media screen and (min-width: 768px) {
  .p-since__cap {
    font-size: 0.875rem;
  }
}

@media screen and (min-width: 1568px) {
  .p-since__cap {
    font-size: 1rem;
  }
}

.p-since__cap.-left {
  text-align: left;
}

.p-since__text {
  margin-top: 5.33333vw;
}

@media screen and (min-width: 768px) {
  .p-since__text {
    margin-top: 0;
    font-size: 1.125rem;
  }
}

.p-since__text p + p {
  margin-top: 1em;
}

.p-since__text .en {
  font-family: "FOT-筑紫Aオールド明朝 Pr6 R", serif;
  font-size: 3.46667vw;
  color: #454545;
}

@media screen and (min-width: 768px) {
  .p-since__text .en {
    font-size: 1rem;
  }
}

.p-since__member {
  margin-top: 5.33333vw;
}

@media screen and (min-width: 768px) {
  .p-since__member {
    margin-top: 1em;
    font-size: 1.125rem;
  }
}

@media screen and (min-width: 1200px) {
  .p-since__member {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.p-since__member dt {
  font-weight: 700;
  font-family: "FOT-筑紫Aオールド明朝 Pr6 B", serif;
}

@media screen and (min-width: 768px) {
  .p-since__member dt {
    margin-right: 2em;
  }
}

.p-since__member dd {
  display: inline-block;
  margin-right: 0.5em;
}

/*
  p-inside
-----------------------------------------------------*/
.p-inside__pagelink {
  padding-top: 5.33333vw;
}

@media screen and (min-width: 768px) {
  .p-inside__pagelink {
    padding-top: 2.5rem;
  }
}

@media screen and (min-width: 1200px) {
  .p-inside__column {
    width: 83%;
    margin: 0 auto;
  }
}

@media screen and (min-width: 768px) {
  .p-inside__column .p-column__contents p {
    font-size: 1.125rem;
  }
}

@media screen and (min-width: 768px) {
  .p-inside__column .p-column__contents p.en {
    font-size: 1rem;
  }
}

/*
 p-column
-----------------------------------------------------*/
.p-column__wrap {
  padding-top: 10.66667vw;
}

@media screen and (min-width: 768px) {
  .p-column__wrap {
    padding-top: 5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.p-column__contents {
  padding-top: 1.429em;
}

@media screen and (min-width: 768px) {
  .p-column__contents {
    padding-top: 0;
  }
}

.p-column__contents .en {
  font-family: "FOT-筑紫Aオールド明朝 Pr6 R", serif;
  color: #454545;
}

.p-column__contents p + p {
  padding-top: 1em;
}

@media screen and (min-width: 768px) {
  .p-column__contents p + p {
    padding-top: 2em;
  }
}

.p-column__contents .image {
  padding-top: 5.33333vw;
}

@media screen and (min-width: 768px) {
  .p-column__contents .image {
    padding-top: 3.125rem;
  }
}

.p-column__contents .image img {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .p-column__title {
    width: 28%;
  }
}

@media screen and (min-width: 1024px) {
  .p-column__title {
    width: 35%;
  }
}

@media screen and (min-width: 1200px) {
  .p-column__title {
    width: 35%;
  }
}

@media screen and (min-width: 768px) {
  .p-column__contents {
    width: 70%;
  }
}

@media screen and (min-width: 1024px) {
  .p-column__contents {
    width: 60%;
  }
}

@media screen and (min-width: 1200px) {
  .p-column__contents {
    width: 80%;
  }
}

@media screen and (min-width: 768px) {
  .p-column__wrap.-secondary .image {
    width: 48%;
  }
}

.p-column__wrap.-secondary .caption {
  font-size: 4vw;
}

@media screen and (min-width: 768px) {
  .p-column__wrap.-secondary .caption {
    font-size: 1.125rem;
  }
}

@media screen and (min-width: 1024px) {
  .p-column__wrap.-secondary .caption {
    font-size: 1.3125rem;
  }
}

.p-column__wrap.-secondary .caption + img {
  padding-top: 2.66667vw;
}

@media screen and (min-width: 768px) {
  .p-column__wrap.-secondary .caption + img {
    padding-top: 0.625rem;
  }
}

.p-column__wrap.-secondary img {
  width: 100%;
}

.p-column__wrap.-secondary .image + .image {
  padding-top: 8vw;
}

@media screen and (min-width: 768px) {
  .p-column__wrap.-secondary .image + .image {
    padding-top: 0;
  }
}

.p-column__photo-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-top: 8vw;
}

@media screen and (min-width: 768px) {
  .p-column__photo-wrap {
    padding-top: 2.5rem;
  }
}

.p-column__photo-wrap .photo {
  width: 50%;
}

.p-column__photo-wrap .photo.-single {
  width: 100%;
}

.p-column__photo-wrap img {
  width: 100%;
}

.p-column__table .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-top: 1px solid #F2F2F2;
}

.p-column__table .wrap:last-of-type {
  border-bottom: 1px solid #F2F2F2;
}

.p-column__table .title {
  background-color: #0A74BB;
  color: #fff;
  padding: 0.5em 0.75em;
  width: 32%;
}

@media screen and (min-width: 768px) {
  .p-column__table .title {
    padding: 1em 0.75em;
  }
}

.p-column__table .text {
  padding: 0.5em 0.75em;
  width: 68%;
  background-color: #fff;
}

@media screen and (min-width: 768px) {
  .p-column__table .text {
    padding: 1em 0.75em;
  }
}

.p-column__table.-pt {
  padding-top: 5.33333vw;
}

@media screen and (min-width: 768px) {
  .p-column__table.-pt {
    padding-top: 1.875rem;
  }
}

.p-column__attention {
  font-size: 3.2vw;
  padding-top: 0.5em;
}

@media screen and (min-width: 768px) {
  .p-column__attention {
    font-size: 0.875rem;
  }
}

.p-column__attention .red {
  color: #e50012;
}

.p-column__map .u-iframe {
  padding-top: 100%;
}

.p-column__map .text-area {
  padding-top: 5.33333vw;
  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;
}

@media screen and (min-width: 768px) {
  .p-column__map .text-area {
    padding-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .p-column__map .text {
    padding-right: 20px;
    margin-top: 1.25rem;
  }
}

a.p-column__button {
  color: #fff;
  background-color: #0A74BB;
  display: inline-block;
  margin-top: 1em;
  padding: 1.33333vw 5.33333vw;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (min-width: 768px) {
  a.p-column__button {
    padding: 0.625rem 1.875rem;
    margin-top: 1.25rem;
  }
}

a.p-column__button:hover {
  opacity: 0.7;
}

/*
p-cafe
-----------------------------------------------------*/
@media screen and (min-width: 768px) {
  .p-cafe__intro-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-cafe__intro {
  padding-top: 5.33333vw;
}

@media screen and (min-width: 768px) {
  .p-cafe__intro {
    padding-top: 0;
    width: 43%;
  }
}

.p-cafe__intro p + p {
  padding-top: 1em;
}

.p-cafe__image {
  padding-top: 10.66667vw;
}

@media screen and (min-width: 768px) {
  .p-cafe__image {
    padding-top: 0;
    width: 52%;
  }
}

.p-cafe__image img {
  width: 100%;
}

.p-cafe__sublead {
  font-size: 3.2vw;
}

@media screen and (min-width: 768px) {
  .p-cafe__sublead {
    font-size: 0.875rem;
  }
}

.p-cafe__menu .container {
  padding-top: 10.66667vw;
}

@media screen and (min-width: 768px) {
  .p-cafe__menu .container {
    padding-top: 3.125rem;
  }
}

.p-cafe__menu .container + .container {
  padding-top: 16vw;
}

@media screen and (min-width: 768px) {
  .p-cafe__menu .container + .container {
    padding-top: 6.25rem;
  }
}

.p-cafe__menu .section {
  padding-top: 2em;
}

.p-cafe__menu .wrap {
  margin-top: 10.66667vw;
}

@media screen and (min-width: 768px) {
  .p-cafe__menu .wrap {
    margin-top: 3.125rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media screen and (min-width: 768px) {
  .p-cafe__menu .thumb {
    width: 50%;
  }
}

.p-cafe__menu .thumb img + img {
  margin-top: 10px;
}

.p-cafe__menu .text-area {
  padding-top: 5.33333vw;
}

@media screen and (min-width: 768px) {
  .p-cafe__menu .text-area {
    padding-top: 0;
    width: 45%;
  }
}

.p-cafe__menu .text {
  padding-top: 1em;
}

@media screen and (min-width: 768px) {
  .p-cafe__menu .text {
    padding-top: 1.25em;
  }
}

.p-cafe__menu .text p + p {
  padding-top: 1em;
}

@media screen and (min-width: 768px) {
  .p-cafe__menu .text p + p {
    padding-top: 1.25em;
  }
}

.p-cafe__menu img {
  width: 100%;
}

.p-cafe__menu .link {
  text-decoration: underline;
}

.p-cafe__menu .menu-list {
  padding-top: 1em;
}

.p-cafe__menu .menu-list dt,
.p-cafe__menu .menu-list dd {
  display: inline-block;
}

.p-cafe__menu .menu-list dt {
  width: 80%;
}

@media screen and (min-width: 768px) {
  .p-cafe__menu .menu-list dt {
    padding-right: 1em;
  }
}

.p-cafe__menu .menu-list dd {
  text-align: right;
}

.p-cafe__menu .menu-list dl {
  width: 30%;
}

@media screen and (min-width: 768px) {
  .p-cafe__menu .menu-list dl {
    width: 60%;
  }
}

.p-cafe__menu .menu-list .menu-list__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.p-cafe__menu .menu-list .menu-list__wrap + .menu-list__wrap {
  padding-top: 0.5em;
}

.p-cafe__menu .menu-list.-pt {
  padding-top: 0;
}

.p-cafe__desc {
  margin-top: 5.33333vw;
}

@media screen and (min-width: 768px) {
  .p-cafe__desc {
    margin-top: 1.875rem;
  }
}

.p-cafe__desc .inner + .inner {
  margin-top: 5.33333vw;
}

@media screen and (min-width: 768px) {
  .p-cafe__desc .inner + .inner {
    margin-top: 1.875rem;
  }
}

.p-cafe__desc .title {
  border: 1px solid #dedede;
  display: inline-block;
  width: 26.66667vw;
  text-align: center;
  padding: 0 1em;
}

@media screen and (min-width: 768px) {
  .p-cafe__desc .title {
    width: 6.875rem;
  }
}

.p-cafe__desc .title.-attention {
  background-color: #dedede;
}

.p-cafe__desc .text {
  padding-top: 0.75em;
}

@media screen and (min-width: 768px) {
  .p-cafe__desc .text {
    padding-top: 1em;
  }
}

/*
  p-donation
-----------------------------------------------------*/
@media screen and (min-width: 768px) {
  .p-donation__container {
    max-width: 736px;
    margin: 0 auto;
  }
}

@media screen and (min-width: 768px) {
  .p-donation__board .c-board__title {
    width: 25%;
  }
}

.p-donation__intro {
  padding-top: 5.33333vw;
}

@media screen and (min-width: 768px) {
  .p-donation__intro {
    padding-top: 2.5rem;
  }
}

.p-donation__intro p + p {
  padding-top: 1em;
}

.p-donation__example {
  padding-top: 10.66667vw;
}

@media screen and (min-width: 768px) {
  .p-donation__example {
    padding-top: 2.5rem;
  }
}

.p-donation__card {
  padding-top: 5.33333vw;
}

@media screen and (min-width: 768px) {
  .p-donation__card {
    padding-top: 1.25rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media screen and (min-width: 768px) {
  .p-donation__card .wrap {
    width: 48%;
  }
}

.p-donation__card .title {
  padding-top: 2.66667vw;
  font-size: 4.8vw;
  font-family: "FOT-筑紫Aオールド明朝 Pr6 B", serif;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .p-donation__card .title {
    font-size: 1.25rem;
    padding-top: 0.625rem;
  }
}

.p-donation__card .text {
  padding-top: 0.5em;
}

.p-donation__card img {
  width: 100%;
}

.p-donation__card + .p-donation__card {
  padding-top: 8vw;
}

.p-donation__sns-button .c-sns-button__wrap {
  padding: 10% 25px;
}

@media screen and (min-width: 768px) {
  .p-donation__sns-button .c-sns-button__wrap {
    padding: 4% 32px;
  }
}

/*
 p-guide
-----------------------------------------------------*/
.p-guide__announce p {
  padding-top: 0.5em;
}

@media screen and (min-width: 768px) {
  .p-guide__announce p {
    padding-top: 1em;
  }
}

.p-guide__announce p + p {
  padding-top: 0.5em;
}

@media screen and (min-width: 768px) {
  .p-guide__announce p + p {
    padding-top: 0.5em;
  }
}

.p-guide__announce .wrap {
  padding-top: 1.75em;
}

@media screen and (min-width: 768px) {
  .p-guide__announce .wrap {
    padding-top: 3.75rem;
  }
}

.p-guide__announce .head {
  font-size: 4.53333vw;
  font-family: "FOT-筑紫Aオールド明朝 Pr6 B", serif;
  font-weight: 700;
  line-height: 1.6;
}

@media screen and (min-width: 768px) {
  .p-guide__announce .head {
    font-size: 1.25rem;
    line-height: 1.5;
  }
}

@media screen and (min-width: 1024px) {
  .p-guide__announce .head {
    font-size: 1.625rem;
  }
}

.p-guide__announce .subtitle {
  font-family: "FOT-筑紫Aオールド明朝 Pr6 B", serif;
  font-weight: 700;
  font-size: 4vw;
}

@media screen and (min-width: 768px) {
  .p-guide__announce .subtitle {
    font-size: 1.25rem;
  }
}

.p-guide__fee {
  width: 100%;
  font-size: 3.2vw;
}

@media screen and (min-width: 768px) {
  .p-guide__fee {
    font-size: 1rem;
  }
}

.p-guide__fee .head {
  background-color: #9a9774;
  color: #fff;
}

.p-guide__fee .row {
  background-color: #fff;
  border-bottom: 1px solid #cbc9c4;
}

.p-guide__fee .head,
.p-guide__fee .row {
  height: 60px;
}

.p-guide__fee td {
  padding: 10px;
  vertical-align: middle;
  border-right: 1px solid #cbc9c4;
}

.p-guide__fee td:last-child {
  border-right: none;
}

.p-guide__fee td:not(.title) {
  text-align: center;
}

.p-guide__fee .small-text {
  font-size: 10px;
  display: block;
}

/*
 p-single
-----------------------------------------------------*/
.p-single__sec {
  padding-top: 10.66667vw;
}

@media screen and (min-width: 768px) {
  .p-single__sec {
    padding-top: 3.75rem;
  }
}

.p-single__sec + .p-single__sec {
  padding-top: 8vw;
}

@media screen and (min-width: 768px) {
  .p-single__sec + .p-single__sec {
    padding-top: 2.5rem;
  }
}

.p-single__text-area {
  padding-top: 5.33333vw;
}

@media screen and (min-width: 768px) {
  .p-single__text-area {
    padding-top: 1.875rem;
  }
}

.p-single__text-area p + p {
  padding-top: 1em;
}

.p-single__text-area .link {
  display: inline-block;
  text-decoration: underline;
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.09, 0.43, 0.1, 0.79);
  transition: -webkit-transform 0.8s cubic-bezier(0.09, 0.43, 0.1, 0.79);
  transition: transform 0.8s cubic-bezier(0.09, 0.43, 0.1, 0.79);
  transition: transform 0.8s cubic-bezier(0.09, 0.43, 0.1, 0.79), -webkit-transform 0.8s cubic-bezier(0.09, 0.43, 0.1, 0.79);
}

.p-single__text-area .link:hover {
  opacity: 0.7;
}

/*
  p-post
-----------------------------------------------------*/
/*category archive*/
.p-post-select .select-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-bottom: 0.3125rem;
  border-bottom: 1px solid #cbc9c4;
}

@media screen and (min-width: 768px) {
  .p-post-select .select-wrap {
    padding-bottom: 0.625rem;
  }
}

.p-post-select .select-inner {
  position: relative;
  width: 26.66667vw;
  margin-left: 8vw;
}

@media screen and (min-width: 768px) {
  .p-post-select .select-inner {
    width: 6.25rem;
    margin-left: 1.875rem;
  }
}

.p-post-select .select-inner::after {
  position: absolute;
  content: '';
  top: 50%;
  right: 0;
  width: 1.6vw;
  height: 1.6vw;
  border-top: 1px solid #231815;
  border-right: 1px solid #231815;
  -webkit-transform: translateY(-40%) rotate(135deg);
      -ms-transform: translateY(-40%) rotate(135deg);
          transform: translateY(-40%) rotate(135deg);
}

@media screen and (min-width: 768px) {
  .p-post-select .select-inner::after {
    width: 0.375rem;
    height: 0.375rem;
  }
}

.p-post-select .select-item {
  background-color: transparent;
  font-size: 3.2vw;
  cursor: pointer;
  border: none;
  width: 100%;
  font-family: "FOT-筑紫Aオールド明朝 Pr6 R", serif;
}

@media screen and (min-width: 768px) {
  .p-post-select .select-item {
    font-size: 0.875rem;
  }
}

.p-post .p-post-select {
  margin-top: 8vw;
}

@media screen and (min-width: 768px) {
  .p-post .p-post-select {
    margin-top: 3.75rem;
  }
}

.p-post__mv img {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .p-post__mv {
    margin-bottom: 2.5rem;
  }
}

.p-post__container {
  margin-top: 10.66667vw;
}

@media screen and (min-width: 768px) {
  .p-post__container {
    margin-top: 3.125rem;
  }
}

.p-post__container + .p-post__container {
  margin-top: 10.66667vw;
  padding-top: 10.66667vw;
  border-top: 1px solid #cbc9c4;
}

@media screen and (min-width: 768px) {
  .p-post__container + .p-post__container {
    margin-top: 3.125rem;
    padding-top: 3.125rem;
  }
}

.p-post__container.-secondary {
  margin-top: 16vw;
}

@media screen and (min-width: 768px) {
  .p-post__container.-secondary {
    margin-top: 3.75rem;
  }
  .p-post__container.-secondary .p-post__inner {
    display: block;
  }
  .p-post__container.-secondary .p-post__thumbnail,
  .p-post__container.-secondary .p-post__text-area {
    width: 100%;
  }
  .p-post__container.-secondary .p-post__body {
    position: relative;
  }
}

@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-post__container.-secondary .p-post__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-post__container.-secondary .p-post__body::after {
    content: '';
    display: block;
    width: 32%;
  }
}

@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-post__container.-secondary .p-post__wrap {
    width: 32%;
  }
}

@media screen and (min-width: 768px) {
  .p-post__container.-secondary .p-post__cat {
    margin-top: 0.5em;
  }
}

.p-post__container.-secondary.-sp2 .p-post__body {
  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-post__container.-secondary.-sp2 .p-post__wrap {
  width: 48%;
}

@media screen and (min-width: 768px) {
  .p-post__container.-secondary.-sp2 .p-post__wrap {
    width: 32%;
  }
}

.p-post__wrap {
  margin-top: 8vw;
}

@media screen and (min-width: 768px) {
  .p-post__wrap {
    margin-top: 1.875rem;
  }
}

@media screen and (min-width: 768px) {
  .p-post__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.p-post__cat li {
  font-size: 2.66667vw;
  background-color: #fff;
  padding: 0 10px;
  width: 19vw;
  text-align: center;
  margin-right: 0.5em;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  display: inline-block;
}

@media screen and (min-width: 768px) {
  .p-post__cat li {
    font-size: 0.75rem;
    width: 82px;
    margin-top: 0;
  }
}

.p-post__cat.-secondary li {
  border: 1px solid #cbc9c4;
}

.p-post__cat.-close li {
  background-color: #cbc9c4;
  color: #fff;
}

.p-post__thumbnail {
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .p-post__thumbnail {
    width: 49%;
  }
}

.p-post__thumbnail img {
  width: 100%;
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.09, 0.43, 0.1, 0.79);
  transition: -webkit-transform 0.8s cubic-bezier(0.09, 0.43, 0.1, 0.79);
  transition: transform 0.8s cubic-bezier(0.09, 0.43, 0.1, 0.79);
  transition: transform 0.8s cubic-bezier(0.09, 0.43, 0.1, 0.79), -webkit-transform 0.8s cubic-bezier(0.09, 0.43, 0.1, 0.79);
}

@media screen and (min-width: 768px) {
  .p-post__text-area {
    width: 47%;
  }
}

.p-post__title {
  font-size: 4.53333vw;
  font-family: "FOT-筑紫Aオールド明朝 Pr6 B", serif;
  font-weight: 700;
  line-height: 1.6;
  margin: 0.5em 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (min-width: 768px) {
  .p-post__title {
    font-size: 1.25rem;
  }
}

.p-post__date {
  font-size: 3.2vw;
  display: inline-block;
}

@media screen and (min-width: 768px) {
  .p-post__date {
    font-size: 1rem;
  }
}

.p-post__text {
  margin-top: 1em;
}

.p-post__link {
  display: block;
}

.p-post__link:hover .p-post__thumbnail img {
  -webkit-transform: scale(1.08, 1.08);
      -ms-transform: scale(1.08, 1.08);
          transform: scale(1.08, 1.08);
}

.p-post__link:hover .p-post__title {
  color: #9a9774;
}

.p-post__nav {
  margin-top: 10.66667vw;
}

@media screen and (min-width: 768px) {
  .p-post__flex {
    margin-top: 3.125rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media screen and (min-width: 768px) {
  .p-post__flex .u-post {
    width: 59%;
  }
}

@media screen and (min-width: 768px) {
  .p-post__flex .p-post__photo-area {
    width: 37%;
  }
}

.p-post__photo-area img {
  width: 100%;
}

.p-post__photo-area .photo {
  margin-top: 8vw;
}

@media screen and (min-width: 768px) {
  .p-post__photo-area .photo {
    margin-top: 0;
  }
}

.p-post__photo-area .photo + .photo {
  margin-top: 5.33333vw;
}

@media screen and (min-width: 768px) {
  .p-post__photo-area .photo + .photo {
    margin-top: 1.875rem;
  }
}

.p-post__photo-area .caption {
  padding-top: 0.25em;
  text-align: right;
}

/*
  p-archive
-----------------------------------------------------*/
.p-archive__outer + .p-archive__outer {
  padding-top: 16vw;
}

@media screen and (min-width: 768px) {
  .p-archive__outer + .p-archive__outer {
    padding-top: 7.5rem;
  }
}

.p-archive__intro {
  padding-top: 8vw;
}

@media screen and (min-width: 768px) {
  .p-archive__intro {
    padding-top: 2.5rem;
  }
}

.p-archive__container {
  padding-top: 8vw;
}

@media screen and (min-width: 768px) {
  .p-archive__container {
    padding-top: 5rem;
  }
}

.p-archive__wrap + .p-archive__wrap {
  padding-top: 8vw;
}

@media screen and (min-width: 768px) {
  .p-archive__wrap + .p-archive__wrap {
    padding-top: 6.25rem;
  }
}

.p-archive__page-link {
  padding-bottom: 2em;
}

@media screen and (min-width: 768px) {
  .p-archive__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media screen and (min-width: 768px) {
  .p-archive__link.-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.p-archive__link:hover .p-archive__image img {
  -webkit-transform: scale(1.08, 1.08);
      -ms-transform: scale(1.08, 1.08);
          transform: scale(1.08, 1.08);
}

.p-archive__title {
  background-color: #0A74BB;
  color: #fff;
  font-size: 4.26667vw;
  font-family: "FOT-筑紫Aオールド明朝 Pr6 B", serif;
  font-weight: 700;
  display: inline-block;
  height: 10.66667vw;
  margin: 0 10px;
  position: relative;
  z-index: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1em;
}

@media screen and (min-width: 768px) {
  .p-archive__title {
    font-size: 1.125rem;
    height: 48px;
    margin: 0 20px;
    padding: 1em 2em;
  }
}

@media screen and (min-width: 768px) {
  .p-archive__thumb {
    width: 49%;
  }
}

.p-archive__thumb figure {
  position: relative;
  margin-top: -5.33333vw;
}

@media screen and (min-width: 768px) {
  .p-archive__thumb figure {
    margin-top: -24px;
  }
}

.p-archive__thumb img {
  width: 100%;
}

.p-archive__image {
  overflow: hidden;
}

.p-archive__image img {
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.09, 0.43, 0.1, 0.79);
  transition: -webkit-transform 0.8s cubic-bezier(0.09, 0.43, 0.1, 0.79);
  transition: transform 0.8s cubic-bezier(0.09, 0.43, 0.1, 0.79);
  transition: transform 0.8s cubic-bezier(0.09, 0.43, 0.1, 0.79), -webkit-transform 0.8s cubic-bezier(0.09, 0.43, 0.1, 0.79);
}

@media screen and (min-width: 768px) {
  .p-archive__text-area {
    width: 47%;
  }
}

.p-archive__text-area .wrap + .wrap {
  padding-top: 2.66667vw;
}

@media screen and (min-width: 768px) {
  .p-archive__text-area .wrap + .wrap {
    padding-top: 1.25rem;
  }
}

.p-archive__text-area .text-head {
  font-weight: 700;
  font-family: "FOT-筑紫Aオールド明朝 Pr6 B", serif;
  font-size: 4.26667vw;
  margin-top: 1em;
}

@media screen and (min-width: 768px) {
  .p-archive__text-area .text-head {
    font-size: 1rem;
  }
}

.p-archive__text-area .text {
  margin-top: 0.75em;
}

.p-archive.-taxonomy .p-post-select {
  margin-top: 8vw;
}

@media screen and (min-width: 768px) {
  .p-archive.-taxonomy .p-post-select {
    margin-top: 3.75rem;
  }
}

.p-archive.-taxonomy .p-archive__intro {
  font-size: 3.2vw;
  padding-top: 1em;
}

@media screen and (min-width: 768px) {
  .p-archive.-taxonomy .p-archive__intro {
    font-size: 0.875rem;
  }
}

.p-archive.-taxonomy .p-gallery__wrap img {
  width: 100%;
  height: 28vw;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width: 768px) {
  .p-archive.-taxonomy .p-gallery__wrap img {
    height: 19vw;
  }
}

@media screen and (min-width: 1024px) {
  .p-archive.-taxonomy .p-gallery__wrap img {
    height: 15.5vw;
  }
}

@media screen and (min-width: 1568px) {
  .p-archive.-taxonomy .p-gallery__wrap img {
    height: 12.5vw;
  }
}

/*
 p-gallery
-----------------------------------------------------*/
.p-gallery__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;
}

@media screen and (min-width: 768px) {
  .p-gallery__container::after {
    content: '';
    display: block;
    width: 31%;
  }
}

.p-gallery__wrap {
  width: 48%;
}

@media screen and (min-width: 768px) {
  .p-gallery__wrap {
    width: 31%;
  }
}

.p-gallery__wrap:nth-child(n + 3) {
  padding-top: 5.33333vw;
}

@media screen and (min-width: 768px) {
  .p-gallery__wrap:nth-child(n + 3) {
    padding-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .p-gallery__wrap:nth-child(n + 4) {
    padding-top: 1.875rem;
  }
}

.p-gallery__wrap.-secondary {
  pointer-events: none;
}

@media screen and (min-width: 768px) {
  .p-gallery__wrap.-secondary {
    pointer-events: visible;
  }
}

.p-gallery__thumb {
  overflow: hidden;
}

.p-gallery__thumb img {
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.09, 0.43, 0.1, 0.79);
  transition: -webkit-transform 0.8s cubic-bezier(0.09, 0.43, 0.1, 0.79);
  transition: transform 0.8s cubic-bezier(0.09, 0.43, 0.1, 0.79);
  transition: transform 0.8s cubic-bezier(0.09, 0.43, 0.1, 0.79), -webkit-transform 0.8s cubic-bezier(0.09, 0.43, 0.1, 0.79);
}

.p-gallery__title {
  font-family: "FOT-筑紫Aオールド明朝 Pr6 R", serif;
  font-size: 3.73333vw;
  padding-top: 0.5em;
}

@media screen and (min-width: 768px) {
  .p-gallery__title {
    font-size: 1.125rem;
  }
}

.p-gallery__subtitle {
  font-family: "FOT-筑紫Aオールド明朝 Pr6 R", serif;
  font-size: 3.2vw;
}

@media screen and (min-width: 768px) {
  .p-gallery__subtitle {
    font-size: 0.9375rem;
  }
}

.p-gallery__link:hover .p-gallery__thumb img {
  -webkit-transform: scale(1.08, 1.08);
      -ms-transform: scale(1.08, 1.08);
          transform: scale(1.08, 1.08);
}

/*
  p-reservation
-----------------------------------------------------*/
.p-reservation__post .c-board {
  padding-top: 0;
}

.p-reservation__post .c-board__wrap {
  padding: 25px;
}

.p-reservation__body {
  padding-top: 10.66667vw;
}

@media screen and (min-width: 768px) {
  .p-reservation__body {
    padding-top: 3.75rem;
  }
}

.p-reservation__wrap {
  padding-top: 5.33333vw;
}

@media screen and (min-width: 768px) {
  .p-reservation__wrap {
    padding-top: 2.5rem;
  }
}

/*
load
-----------------------------------------------------*/
/*load-wrapper*/
.load-wrapper {
  width: 100%;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  z-index: 1000;
  pointer-events: none;
  background-color: #fff;
}

.load-wrapper .load {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}

.is-repeater .load-wrapper {
  opacity: 0;
}

.load-conts-wrap {
  position: relative;
}

.load-text,
.load-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.load-text {
  font-weight: 400;
  font-family: "FOT-筑紫Aオールド明朝 Pr6 R", serif;
  font-size: 9.06667vw;
  color: #cbc9c4;
  letter-spacing: 0.07em;
  opacity: 0;
  -webkit-animation: loadText 2s ease-out 0.5s forwards;
          animation: loadText 2s ease-out 0.5s forwards;
}

@media screen and (min-width: 768px) {
  .load-text {
    font-size: 5rem;
  }
}

.load-logo {
  width: 40%;
  text-align: center;
  opacity: 0;
  -webkit-animation: loadLogo 2s ease-out 2.7s forwards;
          animation: loadLogo 2s ease-out 2.7s forwards;
}

@media screen and (min-width: 768px) {
  .load-logo {
    width: 320px;
  }
}

.load-logo img {
  width: 100%;
}

@-webkit-keyframes loadText {
  0% {
    opacity: 0;
  }
  5% {
    -webkit-filter: blur(0.5rem);
            filter: blur(0.5rem);
  }
  50% {
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
  }
  80% {
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
  }
  100% {
    opacity: 0;
  }
}

@keyframes loadText {
  0% {
    opacity: 0;
  }
  5% {
    -webkit-filter: blur(0.5rem);
            filter: blur(0.5rem);
  }
  50% {
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
  }
  80% {
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes loadLogo {
  0% {
    opacity: 0;
  }
  5% {
    -webkit-filter: blur(0.5rem);
            filter: blur(0.5rem);
  }
  50% {
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
  }
  100% {
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}

@keyframes loadLogo {
  0% {
    opacity: 0;
  }
  5% {
    -webkit-filter: blur(0.5rem);
            filter: blur(0.5rem);
  }
  50% {
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
  }
  100% {
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}

/*
calendar
-----------------------------------------------------*/
.p-calendar {
  margin-top: 8vw;
}

@media screen and (min-width: 768px) {
  .p-calendar {
    margin-top: 1.875rem;
  }
}

.p-calendar .xo-event-calendar {
  font-family: "FOT-筑紫Aオールド明朝 Pr6 R", serif;
}

.p-calendar .xo-event-calendar table.xo-month > thead th.sunday {
  color: #e50012;
}

.p-calendar .xo-event-calendar table.xo-month th,
.p-calendar .xo-event-calendar table.xo-month td {
  border-color: #cbc9c4;
}

/*
  3.2 - Utility
-----------------------------------------------------*/
.lap-none {
  display: block;
}

@media screen and (min-width: 1024px) {
  .lap-none {
    display: none;
  }
}

.tab-none {
  display: block;
}

@media screen and (min-width: 768px) {
  .tab-none {
    display: none;
  }
}

.sp-none {
  display: none;
}

@media screen and (min-width: 768px) {
  .sp-none {
    display: block;
  }
}

.lap-block {
  display: none;
}

@media screen and (min-width: 1024px) {
  .lap-block {
    display: block;
  }
}

/*
  iframe
-----------------------------------------------------*/
.u-iframe {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.u-iframe iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

/*
  Img
-----------------------------------------------------*/
.u-img img {
  width: 100%;
}

/*
  Screen Reader Text
-----------------------------------------------------*/
.screen-reader-text {
  position: absolute;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
}

/*
  Text
-----------------------------------------------------*/
.u-text.-center {
  text-align: center;
}

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

.u-text.-indent {
  text-indent: -1em;
  padding-left: 2em;
}

.u-en {
  font-family: "FOT-筑紫Aオールド明朝 Pr6 R", serif;
  font-weight: 400;
}

.u-en-light {
  font-family: "FOT-筑紫Aオールド明朝 Pr6 R", serif;
  font-weight: 300;
}

.u-uppercase {
  text-transform: uppercase;
}

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

/*
  Tel
-----------------------------------------------------*/
@media screen and (min-width: 768px) {
  .u-tel {
    pointer-events: none;
  }
}

/*
 WPのページナビゲーションカスタマイズ用
-----------------------------------------------------*/
.nav-links {
  margin-top: 3.75rem;
  position: relative;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .nav-links {
    max-width: 300px;
    margin: 5rem auto 0;
  }
}

.page-numbers {
  font-family: "FOT-筑紫Aオールド明朝 Pr6 R", serif;
  padding: 12px;
}

.page-numbers.next, .page-numbers.prev {
  display: inline-block;
  padding: 0;
}

.page-numbers.next {
  position: absolute;
  right: 0;
}

.page-numbers.prev {
  position: absolute;
  left: 0;
}

.page-numbers.current {
  position: relative;
}

.page-numbers.current::after {
  position: absolute;
  content: '';
  bottom: 8px;
  width: 50%;
  height: 1px;
  background-color: #231815;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

/*
contact-form
-----------------------------------------------------*/
span.wpcf7-list-item {
  margin: 0;
  display: block;
}

input[type='radio'] {
  border: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

input[type='submit'],
input[type='button'] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}

input[type='submit']:hover,
input[type='button']:hover {
  opacity: 0.8;
}

input[type='button'],
input[type='text'],
input[type='email'],
input[type='tel'],
input[type='image'],
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
}

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

.wpcf7-list-item-label:before {
  content: '';
  background: #fff;
  border-radius: 50%;
  border: 1px solid #333;
  display: inline-block;
  width: 0.875rem;
  height: 0.875rem;
  position: relative;
  top: 0;
  margin-right: 6px;
  vertical-align: middle;
  cursor: pointer;
}

@media screen and (min-width: 1024px) {
  .wpcf7-list-item-label:before {
    width: 0.875rem;
    height: 0.875rem;
  }
}

input[type='radio']:checked + .wpcf7-list-item-label:before {
  background-color: #333;
  -webkit-box-shadow: inset 0 0 0 2px #fff;
          box-shadow: inset 0 0 0 2px #fff;
}

.wpcf7-form-control-wrap.people {
  position: relative;
}

.wpcf7-form-control-wrap.people::after {
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  content: '▼';
  font-size: 20px;
  color: #231815;
}

.wpcf7-form-control-wrap.people select {
  cursor: pointer;
}

.wpcf7-list-item label {
  margin-right: 1em;
}

@media screen and (min-width: 1024px) {
  .wpcf7-list-item label {
    margin-right: 0.7em;
  }
}

.p-form textarea,
.p-form select,
.p-form input[type='text'],
.p-form input[type='tel'],
.p-form input[type='email'] {
  border: none;
  background-color: #f2f2f2;
  font-family: "FOT-筑紫Aオールド明朝 Pr6 R", serif;
  color: #333;
  padding: 0 1em;
  letter-spacing: 0.075em;
  width: 100%;
  font-size: 0.875rem;
}

@media screen and (min-width: 768px) {
  .p-form textarea,
  .p-form select,
  .p-form input[type='text'],
  .p-form input[type='tel'],
  .p-form input[type='email'] {
    font-size: 1rem;
  }
}

.p-form textarea::-webkit-input-placeholder,
.p-form select::-webkit-input-placeholder,
.p-form input[type='text']::-webkit-input-placeholder,
.p-form input[type='tel']::-webkit-input-placeholder,
.p-form input[type='email']::-webkit-input-placeholder {
  color: #b3b3b3;
}

.p-form textarea:-ms-input-placeholder,
.p-form select:-ms-input-placeholder,
.p-form input[type='text']:-ms-input-placeholder,
.p-form input[type='tel']:-ms-input-placeholder,
.p-form input[type='email']:-ms-input-placeholder {
  color: #b3b3b3;
}

.p-form textarea::-ms-input-placeholder,
.p-form select::-ms-input-placeholder,
.p-form input[type='text']::-ms-input-placeholder,
.p-form input[type='tel']::-ms-input-placeholder,
.p-form input[type='email']::-ms-input-placeholder {
  color: #b3b3b3;
}

.p-form textarea::placeholder,
.p-form select::placeholder,
.p-form input[type='text']::placeholder,
.p-form input[type='tel']::placeholder,
.p-form input[type='email']::placeholder {
  color: #b3b3b3;
}

.p-form textarea {
  height: 240px;
}

.p-form select,
.p-form input[type='text'],
.p-form input[type='tel'],
.p-form input[type='email'] {
  height: 3.75rem;
}

@media screen and (min-width: 1024px) {
  .p-form__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media screen and (min-width: 1024px) {
  .p-form__input {
    width: 68%;
  }
}

.p-form__label {
  font-size: 3.73333vw;
  font-family: "FOT-筑紫Aオールド明朝 Pr6 B", serif;
  font-weight: 700;
  padding-bottom: 0.7em;
}

@media screen and (min-width: 768px) {
  .p-form__label {
    font-size: 1rem;
  }
}

@media screen and (min-width: 1024px) {
  .p-form__label {
    width: 26%;
    text-align: right;
  }
}

.p-form__item + .p-form__item {
  padding-top: 8%;
}

@media screen and (min-width: 1024px) {
  .p-form__item + .p-form__item {
    padding-top: 5%;
  }
}

.p-form__alert {
  font-size: 0.75rem;
  color: #fff;
  background-color: #e50012;
  padding: 0.25em 0.5em;
  margin-left: 0.5em;
}

@media screen and (min-width: 768px) {
  .p-form__alert {
    font-size: 0.75rem;
  }
}

.p-form__attention {
  padding-top: 13%;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .p-form__attention {
    padding-top: 5%;
  }
}

.p-form__text {
  padding-top: 8vw;
}

@media screen and (min-width: 1024px) {
  .p-form__text {
    text-align: center;
    padding-top: 3.75rem;
  }
}

.p-form__link {
  border-bottom: 1px solid #333;
}

.p-form__button {
  text-align: center;
  padding-top: 5.33333vw;
}

@media screen and (min-width: 1024px) {
  .p-form__button {
    padding-top: 2.5rem;
  }
}

.p-form__submit {
  background-color: #9a9774;
  border: none;
  color: #fff;
  width: 100%;
  margin: 0 auto;
  padding: 1em 0;
  font-size: 1rem;
  font-family: "FOT-筑紫Aオールド明朝 Pr6 R", serif;
  cursor: pointer;
}

@media screen and (min-width: 768px) {
  .p-form__submit {
    font-size: 1rem;
    padding: 2rem;
  }
}

/*
  u-post
-----------------------------------------------------*/
.u-post__title {
  margin-top: 10px;
}

@media screen and (min-width: 768px) {
  .u-post__title {
    margin-top: 20px;
  }
}

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

.u-post__nav a {
  position: relative;
}

.u-post__nav a::after {
  position: absolute;
  bottom: -3px;
  right: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #231815;
  -webkit-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transform-origin: right top;
      -ms-transform-origin: right top;
          transform-origin: right top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.u-post__nav a:hover::after {
  -webkit-transform: scale(0, 1);
      -ms-transform: scale(0, 1);
          transform: scale(0, 1);
}

/* 投稿本文のスタイル */
.u-post a,
.u-post a:link,
.u-post a:visited {
  color: #9a9774;
  text-decoration: underline;
}

.u-post p {
  line-height: 2;
  margin-top: 2em;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
}

@media screen and (min-width: 768px) {
  .u-post p {
    font-size: 1rem;
  }
}

@media screen and (min-width: 1200px) {
  .u-post p {
    font-size: 1.125rem;
  }
}

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

.u-post strong {
  font-family: "FOT-筑紫Aオールド明朝 Pr6 B", serif;
}

.u-post h2,
.u-post h3,
.u-post h4,
.u-post h5,
.u-post h6 {
  font-family: "FOT-筑紫Aオールド明朝 Pr6 B", serif;
  margin-top: 1.5em;
}

.u-post h2 {
  font-size: 1.25rem;
}

@media screen and (min-width: 1200px) {
  .u-post h2 {
    font-size: 1.5rem;
  }
}

.u-post h3 {
  font-size: 1.125rem;
}

@media screen and (min-width: 1200px) {
  .u-post h3 {
    font-size: 1.375rem;
  }
}

.u-post h4 {
  font-size: 1rem;
}

@media screen and (min-width: 1200px) {
  .u-post h4 {
    font-size: 1.25rem;
  }
}

.u-post h5 {
  font-size: 0.875rem;
}

@media screen and (min-width: 1200px) {
  .u-post h5 {
    font-size: 1.125rem;
  }
}

.u-post h6 {
  font-size: 0.875rem;
}

@media screen and (min-width: 1200px) {
  .u-post h6 {
    font-size: 1rem;
  }
}

.u-post figure {
  margin-top: 30px;
  margin-bottom: 0;
}

@media screen and (min-width: 768px) {
  .u-post figure {
    margin-top: 50px;
  }
}

.u-post .blocks-gallery-grid,
.u-post .wp-block-gallery {
  width: 100%;
}

.u-post .wp-block-buttons {
  margin-top: 30px;
}

@media screen and (min-width: 768px) {
  .u-post .wp-block-buttons {
    margin-top: 50px;
  }
}

.u-post .wp-block-button {
  position: relative;
  margin: 0;
}

.u-post .wp-block-button__link {
  background-color: #9a9774;
  text-align: left;
  margin: 0;
  font-size: 14px;
  color: #fff;
  -webkit-transition: all 0.1s linear;
  transition: all 0.1s linear;
  border-radius: inherit;
  text-decoration: none;
}

@media screen and (min-width: 1200px) {
  .u-post .wp-block-button__link {
    font-size: 1rem;
  }
}

.u-post .wp-block-button__link:hover {
  opacity: 0.7;
}
