@charset "UTF-8";
:root {
  --primary-font: "Noto Serif JP", serif;
  --cormorant-font: "Cormorant", serif;
  --color-text: #333;
  --color-white: #fff;
  --color-white4: #f4f4f4;
  --color-brown: #4a2c1b;
  --color-brown2: #5d3823;
  --color-black2: #222;
  --color-black3: #333;
  --color-black6: #666;
  --color-green: #86a303;
  --color-orange: #d86d0e;
  --color-blue: #357ec0;
  --color-gray: #ccc;
  --color-gray2: #e5e5e5;
  --color-border: #ccc;
}

/*------------------------------------------------------------
    Reset
------------------------------------------------------------*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
dialog,
figure,
footer,
header,
nav,
section,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

html {
  font-size: 62.5%;
}

html {
  -webkit-overflow-scrolling: touch;
}

html::-webkit-scrollbar {
  width: 7px;
  background: none;
}

html::-webkit-scrollbar-thumb {
  border-radius: 3px;
  background: var(--color-brown);
}

body,
table,
input,
textarea,
select,
option,
h1,
h2,
h3,
h4,
h5,
h6 {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

table,
input,
textarea,
select,
option {
  line-height: 1.1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

:focus {
  outline: 0;
}

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

img {
  vertical-align: top;
}

a,
a img {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.sp-only {
  display: none;
}

@media only screen and (max-width: 767px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
}
/*≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡
// Layout .l-
≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡*/
/* Header
------------------------------------------------------------*/
/* Main menu
------------------------------------------------------------*/
.c-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  -webkit-transition: opacity 2s, all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 2s, all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: var(--color-white);
  z-index: 30;
}
@media only screen and (max-width: 767px) {
  .c-header {
    height: 73px;
  }
}
.c-header a:hover {
  opacity: 0.7;
}
.c-header__inner {
  height: 130px;
  width: calc(100% - 80px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
  -webkit-transition: all 2s, 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 2s, 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media only screen and (max-width: 1024px) {
  .c-header__inner {
    width: 100%;
    height: 73px;
    padding: 0 20px;
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
  }
}
.c-header__logo {
  -ms-flex-preferred-size: 215px;
      flex-basis: 215px;
  margin-right: 13px;
  display: block;
}
@media only screen and (max-width: 1024px) {
  .c-header__logo {
    -ms-flex-preferred-size: 150px;
        flex-basis: 150px;
  }
}
.c-header__logo .is-white {
  display: none;
}
.c-header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 1024px) {
  .c-header__nav {
    display: none;
  }
}
.c-header__menuList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-header__menuList > li {
  padding: 0 20px;
  position: relative;
}
.c-header__menuList > li:hover a::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.c-header__menuList > li:hover .c-nav1 {
  -webkit-transform: rotateX(0);
          transform: rotateX(0);
  opacity: 1;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.c-header__menuList > li > a {
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 2;
  padding: 52px 0;
  color: var(--color-text);
  display: block;
  position: relative;
}
.c-header__menuList > li > a::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  left: 0;
  bottom: 1px;
  background-color: var(--color-brown);
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media only screen and (max-width: 1199px) {
  .c-header__menuList > li > a.has-br {
    padding: 39px 0;
  }
}
.c-header__menuList > li > a.has-br br {
  display: none;
}
@media only screen and (max-width: 1199px) {
  .c-header__menuList > li > a.has-br br {
    display: inline;
  }
}
.c-header__menuList > li > a:hover {
  opacity: 1;
}
.c-header__menuList > li > a.is-active::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  height: 2px;
}
.c-header__menuList > li .c-nav1 {
  position: absolute;
  top: 100%;
  left: 20px;
  padding: 17px 29px 14px;
  background-color: var(--color-brown);
}
.c-header__menuList .c-nav1 {
  width: 220px;
  z-index: 5;
  height: unset;
  -webkit-transform: rotateX(90deg);
          transform: rotateX(90deg);
  opacity: 0;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.c-header__cns {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 20px 11px 20px 11px 20px;
  grid-template-columns: repeat(3, 20px);
  -ms-grid-rows: 20px;
  grid-template-rows: 20px;
  gap: 11px;
  margin-left: 12px;
}
.c-header__cns > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.c-header__cns > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.c-header__cns > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
}
.c-header .c-toggle {
  z-index: 4;
  margin-left: 31px;
}
.c-header .c-toggle:hover {
  cursor: pointer;
  opacity: 0.7;
}
.c-header .c-toggle__hambur {
  width: 26px;
  height: 23px;
  position: relative;
}
.c-header .c-toggle__hambur span {
  background: var(--color-text);
  height: 1px;
  width: 26px;
  display: block;
  -webkit-transition: background-color 0.5s ease-in-out, opacity 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
  transition: background-color 0.5s ease-in-out, opacity 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, background-color 0.5s ease-in-out, opacity 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, background-color 0.5s ease-in-out, opacity 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
  position: absolute;
}
.c-header .c-toggle__hambur span:nth-child(1) {
  top: 0;
}
.c-header .c-toggle__hambur span:nth-child(2) {
  top: 11px;
}
.c-header .c-toggle__hambur span:nth-child(3) {
  bottom: 0;
}
.c-header .c-nav1__item {
  color: var(--color-white);
}
.c-header .c-nav1__item span {
  font-size: 1.4rem;
  line-height: 2.857;
}
.c-header .c-nav2 {
  position: fixed;
  height: 100vh;
  width: 100%;
  z-index: -1;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.c-header .c-nav2__inner {
  height: 100%;
  padding-top: 181px;
  overflow-y: auto;
  background: rgba(74, 44, 27, 0.95);
}
@media only screen and (max-width: 1024px) {
  .c-header .c-nav2__inner {
    margin-top: 73px;
    padding-top: 0;
    padding-bottom: 70px;
    margin-bottom: 70px;
    height: calc(100% - 73px);
  }
}
.c-header .c-nav2__item:first-child {
  margin-left: 100px;
}
@media only screen and (max-width: 1024px) {
  .c-header .c-nav2__item:first-child {
    margin-left: 0;
  }
}
.c-header .c-nav2__item + .c-nav2__item {
  margin-left: 68px;
}
@media only screen and (max-width: 1024px) {
  .c-header .c-nav2__item + .c-nav2__item {
    margin-left: 0;
  }
}
.c-header .c-nav2__item:last-child {
  margin-left: 74px;
}
@media only screen and (max-width: 1024px) {
  .c-header .c-nav2__item:last-child {
    margin-left: 0;
  }
}
.c-header .c-nav2 li a {
  font-size: 2.4rem;
  line-height: 2.5;
  color: var(--color-white);
  letter-spacing: 0.1em;
  font-weight: 400;
  line-height: 1.33;
  margin-bottom: 29px;
  display: block;
}
@media only screen and (max-width: 1024px) {
  .c-header .c-nav2 li a {
    font-size: 2rem;
    margin-bottom: 0;
  }
}
.c-header .c-nav2 .c-nav2__item > li:not(.c-btn2) {
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .c-header .c-nav2 .c-nav2__item > li:not(.c-btn2) > a {
    border-top: 1px solid var(--color-border);
    padding: 20px 19px;
  }
}
@media only screen and (max-width: 1024px) {
  .c-header .c-nav2 .c-nav2__item > li:not(.c-btn2) > a.has-br br {
    display: none;
  }
}
.c-header .c-nav2 .c-plus {
  display: none;
  width: 68px;
  height: 68px;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}
.c-header .c-nav2 .c-plus:hover {
  opacity: 0.7;
}
@media only screen and (max-width: 1024px) {
  .c-header .c-nav2 .c-plus {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.c-header .c-nav2 .c-plus.is-active .c-plus__show::before {
  opacity: 0;
}
.c-header .c-nav2 .c-plus__show {
  width: 20px;
  height: 20px;
  position: relative;
  display: block;
}
.c-header .c-nav2 .c-plus__show::before {
  content: "";
  position: absolute;
  background: var(--color-white);
  width: 1px;
  height: 100%;
  -webkit-transition: 0.5s all ease-in-out;
  transition: 0.5s all ease-in-out;
  left: 14px;
  top: 0;
}
.c-header .c-nav2 .c-plus__show::after {
  content: "";
  position: absolute;
  background: var(--color-white);
  height: 1px;
  width: 100%;
  -webkit-transition: 0.5s all ease-in-out;
  transition: 0.5s all ease-in-out;
  top: 9px;
  left: 4px;
}
.c-header .c-nav2__sub {
  margin-top: -8px;
}
@media only screen and (max-width: 1024px) {
  .c-header .c-nav2__sub {
    margin-top: 0;
    padding-bottom: 9px;
    display: none;
  }
}
.c-header .c-nav2__sub li {
  position: relative;
}
.c-header .c-nav2__sub li::before {
  content: "-";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 17px;
  color: var(--color-white);
}
@media only screen and (max-width: 1024px) {
  .c-header .c-nav2__sub li::before {
    left: 33px;
  }
}
.c-header .c-nav2__sub li a {
  font-size: 1.4rem;
  letter-spacing: 0;
  margin-bottom: 21px;
  padding-left: 26px;
}
@media only screen and (max-width: 1024px) {
  .c-header .c-nav2__sub li a {
    margin-bottom: 16px;
    padding-left: 42px;
    line-height: 1;
  }
}
.c-header .c-nav2 .c-nav2__btn {
  margin-top: 35px;
  width: 227px;
  max-width: 227px;
}
@media only screen and (max-width: 1024px) {
  .c-header .c-nav2 .c-nav2__btn {
    margin: 36px auto 0;
    width: 272px;
    max-width: 272px;
  }
}
.c-header .c-nav2 .c-nav2__btn::before {
  display: none;
}
.c-header .c-nav2 .c-nav2__btn a {
  font-size: 1.6rem;
  margin-bottom: 0;
  width: 100%;
  height: 50px;
  padding: 12px;
  border: 1px solid transparent;
  background-color: #d86d0e;
  letter-spacing: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 1024px) {
  .c-header .c-nav2 .c-nav2__btn a {
    height: 60px;
    font-size: 2rem;
  }
}
.c-header .c-nav2 .c-nav2__btn a:hover {
  opacity: 1;
  background-color: var(--color-white);
  color: #d86d0e;
}
.c-header .c-nav2 .c-nav2__btn .c-btn2__txt {
  font-weight: 400;
}
.c-header .c-nav2__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  overflow: hidden;
  max-width: 960px;
  margin: 0 auto;
  width: 100%;
  padding-bottom: 50px;
}
@media only screen and (max-width: 1024px) {
  .c-header .c-nav2__body {
    display: block;
  }
}
.c-header.is-active .c-header__logo .is-black {
  display: none;
}
.c-header.is-active .c-header__logo .is-white {
  display: block;
}
@media only screen and (max-width: 1024px) {
  .c-header.is-active .c-header__inner {
    background: rgba(74, 44, 27, 0.95);
  }
}
.c-header.is-active .c-header__nav .c-header__menuList {
  pointer-events: none;
}
.c-header.is-active .c-header__nav .c-header__cns {
  pointer-events: none;
}
.c-header.is-active .c-toggle__hambur span {
  background: var(--color-white);
}
.c-header.is-active .c-toggle__hambur span:nth-child(1) {
  -webkit-transform: translateY(11px) rotate(-45deg);
          transform: translateY(11px) rotate(-45deg);
}
.c-header.is-active .c-toggle__hambur span:nth-child(2) {
  display: none;
}
.c-header.is-active .c-toggle__hambur span:nth-child(3) {
  -webkit-transform: translateY(-11px) rotate(45deg);
          transform: translateY(-11px) rotate(45deg);
}
.c-header.is-active .c-nav2 {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}
.c-header.c-header__zoom .c-header__inner {
  height: 73px;
}
.c-header.c-header__zoom .c-header__logo {
  -ms-flex-preferred-size: 150px;
      flex-basis: 150px;
}
.c-header.c-header__zoom .c-header__menuList > li > a {
  padding: 24px 0;
}
@media only screen and (max-width: 1199px) {
  .c-header.c-header__zoom .c-header__menuList > li > a.has-br {
    padding: 10px 0;
  }
}
.c-header.hidden-nav {
  top: -100%;
}

/*------------------------------------------------------------
footer
------------------------------------------------------------*/
.c-footer {
  position: relative;
}
@media only screen and (max-width: 767px) {
  .c-footer {
    padding-bottom: 61px;
  }
}
@media screen and (max-width: 347px) {
  .c-footer {
    padding-bottom: 80px;
  }
}
.c-footer a:hover {
  opacity: 0.7;
}
.c-footer .c-backToTop {
  cursor: pointer;
  width: 44px;
  height: 44px;
  background: var(--color-brown);
  z-index: 5;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  right: 24px;
  position: fixed;
  bottom: 15px;
  border: 1px solid var(--color-brown);
  -webkit-transition: background 0.5s ease-in-out;
  transition: background 0.5s ease-in-out;
  z-index: 22;
}
@media only screen and (max-width: 767px) {
  .c-footer .c-backToTop {
    bottom: 65px;
  }
}
@media screen and (max-width: 347px) {
  .c-footer .c-backToTop {
    bottom: 85px;
  }
}
.c-footer .c-backToTop:hover {
  background: var(--color-white);
}
.c-footer .c-backToTop:hover::after {
  background: url(../../assets/img/common/arrow-right__brown.svg) center/cover no-repeat;
}
@media only screen and (max-width: 767px) {
  .c-footer .c-backToTop {
    right: 0;
  }
}
.c-footer .c-backToTop::after {
  content: "";
  background: url(../../assets/img/common/arrow-right__w.svg) center/cover no-repeat;
  display: block;
  width: 14px;
  height: 9px;
  -webkit-transform: translate(-50%, -50%) rotate(-90deg);
          transform: translate(-50%, -50%) rotate(-90deg);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transition: background 0.5s ease-in-out;
  transition: background 0.5s ease-in-out;
}
.c-footer .c-backToTop.is-stop {
  pointer-events: auto;
  position: absolute;
  top: -44px;
}
.c-footer .c-backToTop.is-init {
  opacity: 0;
}
.c-footer .footer-top {
  background: url(../../assets/img/home/footer_bg.jpg) center/cover no-repeat;
}
@media only screen and (max-width: 767px) {
  .c-footer .footer-top {
    background: url(../../assets/img/home/footer_bg_sp.jpg) center/cover no-repeat;
  }
}
.c-footer .footer-top__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 70px 40px 69px;
}
@media only screen and (max-width: 1024px) {
  .c-footer .footer-top__inner {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .c-footer .footer-top__inner {
    padding: 58px 18px 59px 17px;
  }
}
.c-footer .footer-top__head {
  color: var(--color-white);
  margin-bottom: 46px;
}
@media only screen and (max-width: 767px) {
  .c-footer .footer-top__head {
    margin-bottom: 25px;
  }
}
.c-footer .footer-top__head .c-heading02 {
  margin-bottom: 16px;
}
@media only screen and (max-width: 767px) {
  .c-footer .footer-top__head .c-heading02 {
    margin-bottom: 37px;
  }
}
.c-footer .footer-top__head .c-heading02 > .sub {
  color: var(--color-white);
}
.c-footer .footer-top__head .txt {
  font-size: 1.4rem;
  line-height: 2.143;
}
@media only screen and (max-width: 767px) {
  .c-footer .footer-top__head .txt {
    line-height: 1.785;
  }
}
.c-footer .footer-top__body {
  -ms-flex-preferred-size: 63.8%;
      flex-basis: 63.8%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media only screen and (max-width: 767px) {
  .c-footer .footer-top__body {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
.c-footer .footer-top__item {
  background-color: var(--color-white);
  padding: 26px 20px 26px 19px;
}
@media only screen and (max-width: 767px) {
  .c-footer .footer-top__item {
    padding: 21px 20px 21px 17px;
  }
}
.c-footer .footer-top__item:hover {
  opacity: 1;
}
.c-footer .footer-top__item:hover .icon {
  background: var(--color-brown);
}
.c-footer .footer-top__item:hover .icon::before {
  background: url(../../assets/img/common/arrow-right__w.svg) center/cover no-repeat;
}
.c-footer .footer-top__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.c-footer .footer-top__card .txtarea .ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--color-brown);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 11px;
}
@media only screen and (max-width: 767px) {
  .c-footer .footer-top__card .txtarea .ttl {
    margin-bottom: 9px;
    margin-left: 2px;
  }
}
.c-footer .footer-top__card .txtarea .ttl-icon {
  width: 19px;
  margin-right: 10px;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: unset;
     object-position: unset;
}
@media only screen and (max-width: 767px) {
  .c-footer .footer-top__card .txtarea .ttl-icon {
    width: 15px;
  }
}
.c-footer .footer-top__card .txtarea .ttl-icon.-mail {
  width: 17px;
  height: 17px;
  margin-left: 3px;
  margin-right: 7px;
}
@media only screen and (max-width: 767px) {
  .c-footer .footer-top__card .txtarea .ttl-icon.-mail {
    width: 16px;
    height: 14px;
    margin-left: 0;
    margin-right: 9px;
  }
}
.c-footer .footer-top__card .txtarea .ttl-icon.-phone {
  width: 25px;
  height: 25px;
}
@media only screen and (max-width: 767px) {
  .c-footer .footer-top__card .txtarea .ttl-icon.-phone {
    width: 24px;
    height: 20px;
    margin-left: -4px;
    margin-right: 4px;
  }
}
.c-footer .footer-top__card .txtarea .des {
  font-size: 1.3rem;
  line-height: 1.69;
  padding-right: 20px;
  padding-bottom: 5px;
}
@media only screen and (max-width: 767px) {
  .c-footer .footer-top__card .txtarea .des {
    font-size: 1.2rem;
    line-height: 1.67;
    padding-right: 35px;
  }
}
.c-footer .footer-top__card .icon {
  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;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: #e5e5e5;
  position: relative;
  -webkit-transition: 0.5s all ease-in-out;
  transition: 0.5s all ease-in-out;
}
@media only screen and (max-width: 767px) {
  .c-footer .footer-top__card .icon {
    width: 35px;
    height: 35px;
  }
}
.c-footer .footer-top__card .icon::before {
  content: "";
  background: url(../../assets/img/common/arrow-right.svg) center/cover no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 9px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.c-footer .footer-bot {
  border-bottom: 1px solid var(--color-gray);
}
.c-footer .footer-bot__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 61px 8px 65px 42px;
}
@media screen and (max-width: 1300px) {
  .c-footer .footer-bot__inner {
    padding: 60px 0;
  }
}
@media only screen and (max-width: 767px) {
  .c-footer .footer-bot__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 35px 0;
  }
}
.c-footer .footer-bot__info {
  margin-top: 10px;
}
@media only screen and (max-width: 767px) {
  .c-footer .footer-bot__logo {
    margin-left: 11px;
  }
}
.c-footer .footer-bot__logo img {
  width: 214px;
}
@media only screen and (max-width: 767px) {
  .c-footer .footer-bot__logo img {
    width: 189px;
  }
}
.c-footer .footer-bot__contact {
  font-size: 1.3rem;
  line-height: 1.846;
  margin-top: 23px;
}
@media only screen and (max-width: 767px) {
  .c-footer .footer-bot__contact {
    line-height: 1.923;
    text-align: center;
  }
}
.c-footer .footer-bot__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 767px) {
  .c-footer .footer-bot__menu {
    display: none;
  }
}
.c-footer .footer-bot__menuList:first-child {
  margin-right: 119px;
}
@media only screen and (max-width: 1024px) {
  .c-footer .footer-bot__menuList:first-child {
    margin-right: 30px;
  }
}
.c-footer .footer-bot__menuList:last-child {
  margin-left: 82px;
}
@media only screen and (max-width: 1024px) {
  .c-footer .footer-bot__menuList:last-child {
    margin-left: 30px;
  }
}
.c-footer .footer-bot__menuList > .footer-bot__menuItem {
  margin-bottom: 12px;
}
.c-footer .footer-bot__menuList > .footer-bot__menuItem > .footer-bot__menuLink {
  font-size: 1.4rem;
  line-height: 2;
}
.c-footer .footer-bot__menuSubList {
  margin-top: 5px;
}
.c-footer .footer-bot__menuSubList > .footer-bot__menuSubItem {
  margin-bottom: 8px;
}
.c-footer .footer-bot__menuSubList > .footer-bot__menuSubItem > .footer-bot__menuSubLink {
  font-size: 1.3rem;
}
.c-footer .footer-bot .socical {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 20px 9px 20px 9px 20px;
  grid-template-columns: repeat(3, 20px);
  -ms-grid-rows: 20px;
  grid-template-rows: 20px;
  gap: 9px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: -1px 100px 0 auto;
}
.c-footer .footer-bot .socical > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.c-footer .footer-bot .socical > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.c-footer .footer-bot .socical > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
}
@media only screen and (max-width: 767px) {
  .c-footer .footer-bot .socical {
    -ms-grid-columns: 26px 13px 26px 13px 26px;
    grid-template-columns: repeat(3, 26px);
    -ms-grid-rows: 26px;
    grid-template-rows: 26px;
    margin: unset;
    margin-top: 22px;
    margin-bottom: 9px;
    gap: 13px;
  }
  .c-footer .footer-bot .socical > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .c-footer .footer-bot .socical > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .c-footer .footer-bot .socical > *:nth-child(3) {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
  }
}
.c-footer .footer-bot__phone {
  pointer-events: none;
}
@media only screen and (max-width: 1024px) {
  .c-footer .footer-bot__phone {
    pointer-events: auto;
  }
}
.c-footer .footer-privacy {
  font-size: 1.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: var(--color-black6);
  padding: 16px 0;
}
@media only screen and (max-width: 767px) {
  .c-footer .footer-privacy {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.c-footer .footer-privacy a {
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 767px) {
  .c-footer .footer-privacy a {
    margin-bottom: 8px;
  }
}
.c-footer__last {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 29;
  background-color: #86a303;
  -webkit-transition: opacity 2s, 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 2s, 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media only screen and (max-width: 767px) {
  .c-footer__last {
    display: block;
  }
}
.c-footer__last.-init {
  -webkit-transform: translateY(150%);
          transform: translateY(150%);
}
.c-footer__last .c-footer__side {
  border-top: 1px solid var(--color-gray);
}
.c-footer__last ul {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
}
.c-footer__last ul > li + li {
  border-left: 1px solid var(--color-gray);
}
.c-footer__last ul > li a {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.3rem;
  line-height: 1.143;
  padding: 11px 1px;
  text-align: center;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: var(--color-white);
}
.c-footer__last ul > li a .ttl-icon {
  width: 15px;
  height: auto;
  margin-bottom: 7px;
}
.c-footer__last ul > li a .ttl-icon.-mail {
  width: 16px;
}

/*------------------------------------------------------------
sidebar
------------------------------------------------------------*/
/*------------------------------------------------------------
sidebar
------------------------------------------------------------*/
/*------------------------------------------------------------
sidebar
------------------------------------------------------------*/
.c-sidebar {
  width: 260px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media only screen and (max-width: 1024px) {
  .c-sidebar {
    width: 100%;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin-top: 60px;
  }
}
.c-sidebar__title {
  font-size: 1.6rem;
  line-height: 1.2;
  background: var(--color-green);
  width: 100%;
  padding: 10.5px 15px;
  font-weight: 400;
  color: var(--color-white);
}
.c-sidebar__item {
  margin-top: 40px;
}
@media only screen and (max-width: 767px) {
  .c-sidebar__item {
    margin-top: 25px;
  }
}
.c-sidebar__item:first-child {
  margin-top: 0;
}
.c-sidebar__item:last-child {
  margin-top: 45px;
}
@media only screen and (max-width: 767px) {
  .c-sidebar__item:last-child {
    margin-top: 22px;
  }
}
.c-sidebar .c-search {
  margin-top: 20px;
}
.c-sidebar .c-search__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.c-sidebar .c-search input {
  height: 30px;
  border: 1px solid #ccc;
  width: calc(100% - 69px);
  padding: 5px;
  font-size: 1.6rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media only screen and (max-width: 1024px) {
  .c-sidebar .c-search input {
    height: 40px;
  }
}
.c-sidebar .c-search__btn {
  width: 56px;
  height: 30px;
  border: 1px solid var(--color-brown);
  cursor: pointer;
  font-family: var(--primary-font);
  background: var(--color-brown);
  color: var(--color-white);
  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;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  white-space: nowrap;
  font-size: 1.6rem;
  line-height: 1.5;
}
@media only screen and (max-width: 1024px) {
  .c-sidebar .c-search__btn {
    height: 40px;
  }
}
@media only screen and (max-width: 374px) {
  .c-sidebar .c-search__btn {
    font-size: 4vw;
  }
}
@media (min-width: 1024px) {
  .c-sidebar .c-search__btn:hover {
    background: var(--color-white);
    border-color: var(--color-brown);
    color: var(--color-brown);
  }
}
.c-sidebar ul {
  margin-top: 10px;
}
.c-sidebar ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-sidebar ul li::before {
  content: "";
  display: inline-block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 8px;
          flex: 0 0 8px;
  width: 8px;
  height: 7px;
  background: #ccc;
  -webkit-clip-path: polygon(0 0, 0% 100%, 80% 50%);
          clip-path: polygon(0 0, 0% 100%, 80% 50%);
  margin-right: 6px;
}
.c-sidebar ul li.is-active a, .c-sidebar ul li.current-cat a {
  font-weight: 700;
}
.c-sidebar ul li.list {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.c-sidebar ul li.list > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 94.6%;
}
.c-sidebar ul li.list .current {
  font-weight: 700;
}
.c-sidebar ul li.list .list-icon {
  margin-left: 4px;
  position: relative;
  width: 16px;
  height: 16px;
  background: var(--color-brown);
  border: 1px solid var(--color-brown);
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.c-sidebar ul li.list .list-icon::before, .c-sidebar ul li.list .list-icon::after {
  content: "";
  position: absolute;
  background: #fff;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.c-sidebar ul li.list .list-icon::after {
  width: 7px;
  height: 1px;
  left: 4px;
  top: 7px;
}
.c-sidebar ul li.list .list-icon::before {
  width: 1px;
  height: 7px;
  left: 7px;
  top: 4px;
}
.c-sidebar ul a {
  font-size: 1.6rem;
  margin: 5px 0;
  color: #15171b;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
}
.c-sidebar ul a span {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
}
@media only screen and (max-width: 1024px) {
  .c-sidebar ul a {
    width: calc(100% - 10px);
  }
}
.c-sidebar ul a:hover {
  opacity: 0.7;
}
.c-sidebar .list-dropdown {
  margin-top: 13px;
}
.c-sidebar .list-sub {
  display: none;
  padding-left: 20px;
  margin-top: 0;
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .c-sidebar .list-sub {
    padding-left: 10px;
  }
}
@media only screen and (max-width: 1024px) {
  .c-sidebar .list-sub li {
    border: 0;
  }
}
.c-sidebar .list-sub a {
  padding: 8px 0;
}
@media only screen and (max-width: 1024px) {
  .c-sidebar .list-sub a {
    padding: 10px 0;
  }
}
.c-sidebar .list-sub a.is-active {
  font-weight: 700;
  color: #222;
}
.c-sidebar .js-show-dropDown.is-active .list-icon {
  background: var(--color-white);
}
.c-sidebar .js-show-dropDown.is-active .list-icon::before {
  opacity: 0;
}
.c-sidebar .js-show-dropDown.is-active .list-icon::after {
  background: var(--color-brown);
}

/* Breadcrumb
------------------------------------------------------------*/
.c-breadcrumb {
  width: calc(100% - 50px);
}
.c-breadcrumb > ul > li {
  display: inline;
  font-size: 1.3rem;
  padding: 1px 0;
}
.c-breadcrumb > ul > li:not(:first-of-type)::before {
  content: ">";
  padding: 0 17px 0 13px;
  display: inline-block;
  font-style: normal;
  font-size: 1.3rem;
}
.c-breadcrumb > ul > li > a:hover {
  opacity: 0.7;
}

/* layout
------------------------------------------------------------*/
body {
  font-family: var(--primary-font);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-text);
  word-break: break-word;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
@media only screen and (max-width: 767px) {
  body {
    min-width: 320px;
  }
}
body.is-fixed {
  position: fixed;
  overflow: hidden;
  width: 100%;
}

main {
  padding-top: 130px;
}
@media only screen and (max-width: 1024px) {
  main {
    padding-top: 73px;
  }
}

section {
  padding: 50px 0;
}

.l-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
.l-container__w1 {
  max-width: 1000px;
}
.l-container__w2 {
  max-width: 800px;
}
.l-container__w3 {
  max-width: 1286px;
}

._w960 {
  width: 100%;
  margin: auto;
  max-width: 960px;
}
._w960_sidep {
  width: calc(100% - 40px);
  margin: auto;
  max-width: 960px;
}
@media only screen and (max-width: 767px) {
  ._w960_sidep {
    width: 100%;
  }
}

._w760 {
  width: 100%;
  margin: auto;
  max-width: 760px;
}
._w760_sidep {
  width: calc(100% - 40px);
  margin: auto;
  max-width: 760px;
}
@media only screen and (max-width: 767px) {
  ._w760_sidep {
    width: 100%;
  }
}

.c-img {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 100%;
}
.c-img img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

._imgcover > img,
._imgcover svg {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

._imgcontain > img,
._imgcontain svg {
  display: block;
  max-width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center center;
     object-position: center center;
}
@media only screen and (max-width: 767px) {
  ._imgcontain > img,
  ._imgcontain svg {
    width: 100%;
  }
}

/*≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡
// Component .c-
≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡*/
/*------------------------------------------------------------
btn
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
.c-btn1 {
  max-width: 110px;
  width: 100%;
  position: relative;
}
.c-btn1::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: var(--color-black3);
  position: absolute;
  bottom: 1px;
  left: 0;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
}
.c-btn1::before {
  content: "";
  display: block;
  width: 14px;
  height: 9px;
  background: url("../../assets/img/common/arrow-right.svg") center/cover no-repeat;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
}
.c-btn1:hover::before {
  right: -10px;
}
.c-btn1:hover::after {
  width: calc(100% + 10px);
}
.c-btn1__link {
  padding: 9px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
.c-btn1__txt {
  font-weight: 700;
}
.c-btn1__txt.fn-en {
  font-family: var(--cormorant-font);
}
.c-btn1.-back .c-btn1__link {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.c-btn1.-back::before {
  left: 0;
  right: unset;
  -webkit-transform: translateY(-50%) rotate(-180deg);
          transform: translateY(-50%) rotate(-180deg);
}
.c-btn1.-back:hover::before {
  left: -10px;
}
.c-btn1.-back:hover::after {
  left: -10px;
}

.c-btn2 {
  position: relative;
  max-width: 225px;
  width: 100%;
  border: 1px solid var(--color-text);
  background: var(--color-white);
  text-align: center;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.c-btn2 a {
  -webkit-transition: unset;
  transition: unset;
}
@media only screen and (max-width: 767px) {
  .c-btn2 {
    max-width: 270px;
  }
}
.c-btn2.bd-ccc {
  border-color: var(--color-gray);
}
.c-btn2.bd-ccc:hover {
  border-color: var(--color-text);
}
.c-btn2.br-white {
  border-color: var(--color-white);
}
.c-btn2.br-white:hover {
  border-color: var(--color-brown);
}
.c-btn2.bg-orange {
  background: var(--color-orange);
  color: var(--color-white);
  border-color: var(--color-orange);
}
.c-btn2.bg-orange::before {
  background-image: url("../../assets/img/common/arrow-right__w.svg");
}
.c-btn2.bg-orange:hover {
  color: var(--color-orange);
  background: var(--color-white);
}
.c-btn2.bg-orange:hover::before {
  background-image: url("../../assets/img/common/arrow-right__o.svg");
}
.c-btn2._back::before {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
  right: 0;
  left: 14px;
}
.c-btn2:hover {
  color: var(--color-white);
  background: var(--color-brown);
}
.c-btn2:hover::before {
  background-image: url("../../assets/img/common/arrow-right__w.svg");
}
.c-btn2::before {
  content: "";
  display: block;
  width: 14px;
  height: 9px;
  background: url("../../assets/img/common/arrow-right.svg") center/cover no-repeat;
  position: absolute;
  top: 50%;
  right: 13px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
}
@media only screen and (max-width: 767px) {
  .c-btn2::before {
    width: 15px;
    right: 14px;
  }
}
.c-btn2__link {
  display: block;
  padding: 12px 20px 11px;
}
@media only screen and (max-width: 767px) {
  .c-btn2__link {
    padding: 17px 20px 16px;
  }
}
.c-btn2__txt {
  font-weight: 400;
}
.c-btn2__txt.fn-en {
  font-family: var(--cormorant-font);
  font-weight: 700;
}
.c-btn2._small .c-btn2__link {
  padding: 8px 20px;
}
.c-btn2._small .c-btn2__txt {
  font-weight: 400;
}

.swiper-button-next,
.swiper-button-prev {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.swipercover {
  padding-bottom: 40px;
  overflow: hidden;
  position: relative;
}

.swiperarea .txt {
  line-height: 1.4;
  margin-top: 15px;
}
.swiperarea .swiper-pagination {
  bottom: 0;
}
.swiperarea .swiper-pagination-bullet-active {
  background-color: var(--orange-1);
}

/*------------------------------------------------------------
title
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
.c-heading01 {
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 400;
  font-size: 3.6rem;
  letter-spacing: 0.1em;
  line-height: 1;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .c-heading01 {
    font-size: 3rem;
  }
}
.c-heading01 > .sub {
  font-size: 1.6rem;
  color: var(--color-black6);
  margin-top: 15px;
  letter-spacing: 0.1em;
  margin-top: 27px;
}
@media only screen and (max-width: 767px) {
  .c-heading01 > .sub {
    margin-top: 16px;
  }
}

.c-heading02 {
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 400;
  font-size: 3.2rem;
  letter-spacing: 0.1em;
  line-height: 1;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .c-heading02 {
    font-size: 2.6rem;
  }
}
.c-heading02.-left {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.c-heading02 > .sub {
  font-size: 1.6rem;
  color: var(--color-black6);
  margin-top: 15px;
  letter-spacing: 0.1em;
  margin-top: 27px;
}
@media only screen and (max-width: 767px) {
  .c-heading02 > .sub {
    margin-top: 16px;
  }
}

.c-heading03 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 400;
  font-size: 3.6rem;
  letter-spacing: 0.1em;
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  .c-heading03 {
    font-size: 2.6rem;
  }
}
.c-heading03.-left {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.c-heading03 > .sub {
  font-size: 1.6rem;
  color: var(--color-black6);
  letter-spacing: 0.1em;
  margin-left: 15px;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .c-heading03 > .sub {
    margin-left: 10px;
  }
}

.c-heading04 {
  position: relative;
}
.c-heading04 .ttl {
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1.875;
  text-align: center;
  padding-bottom: 50px;
}
@media only screen and (max-width: 767px) {
  .c-heading04 .ttl {
    font-size: 2.6rem;
  }
}
.c-heading04 .ttl .sub {
  font-size: 2rem;
  line-height: 1;
  display: block;
  margin-top: 17px;
  margin-bottom: 22px;
}
@media only screen and (max-width: 767px) {
  .c-heading04 .ttl .sub {
    font-size: 1.6rem;
  }
}
.c-heading04::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 2px;
  background-color: var(--color-green);
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.c-heading04 ~ .txt {
  line-height: 2;
}

.c-heading05 {
  margin-bottom: 41px;
}
.c-heading05 .ttl {
  font-size: 2.4rem;
  font-weight: 400;
  padding-bottom: 25px;
  padding-left: 34px;
  margin-bottom: 41px;
  border-bottom: 1px solid var(--color-border);
  position: relative;
}
@media only screen and (max-width: 767px) {
  .c-heading05 .ttl {
    font-size: 2rem;
  }
}
.c-heading05 .ttl::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 4px solid var(--color-green);
  position: absolute;
  left: 0;
  top: 7px;
}
.c-heading05 .ttl-small {
  font-size: 1.6rem;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  display: inline-block;
}
@media only screen and (max-width: 767px) {
  .c-heading05 .ttl-small {
    -webkit-transform: translateY(-1px);
            transform: translateY(-1px);
  }
}
.c-heading05 .des {
  line-height: 2;
}

.c-heading06 {
  position: relative;
  padding-bottom: 46px;
}
.c-heading06::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 30px;
  height: 4px;
  background-color: var(--color-green);
}
.c-heading06__ttl {
  font-size: 3.2rem;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .c-heading06__ttl {
    font-size: 2.6rem;
  }
}

/*------------------------------------------------------------
icon
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
form
------------------------------------------------------------*/
input::-webkit-input-placeholder {
  font-size: 1.5rem;
  font-family: var(--primary-font);
  line-height: 1.5;
  color: var(--color-gray);
}
input::-moz-placeholder {
  font-size: 1.5rem;
  font-family: var(--primary-font);
  line-height: 1.5;
  color: var(--color-gray);
}
input:-ms-input-placeholder {
  font-size: 1.5rem;
  font-family: var(--primary-font);
  line-height: 1.5;
  color: var(--color-gray);
}
input::-ms-input-placeholder {
  font-size: 1.5rem;
  font-family: var(--primary-font);
  line-height: 1.5;
  color: var(--color-gray);
}
input::placeholder {
  font-size: 1.5rem;
  font-family: var(--primary-font);
  line-height: 1.5;
  color: var(--color-gray);
}

option {
  line-height: 1.5;
  font-family: inherit;
}

@media only screen and (max-width: 767px) {
  .c-form .c-form thead,
  .c-form .c-form tbody,
  .c-form .c-form th,
  .c-form .c-form td,
  .c-form .c-form tr {
    display: block;
  }
}
.c-form .readonly.-caution,
.c-form input[type=email].-caution,
.c-form input[type=number].-caution,
.c-form input[type=text].-caution,
.c-form select.-caution,
.c-form .method .-caution,
.c-form .-readonly.-caution {
  border: 2px solid #f00;
}
.c-form .form__ttl {
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1.875;
  text-align: center;
  padding-bottom: 29px;
}
@media only screen and (max-width: 767px) {
  .c-form .form__ttl {
    font-size: 2.6rem;
  }
}
.c-form .form__sub {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.875;
}
.c-form .form-content {
  width: 100%;
  font-size: 1.6rem;
  border-collapse: collapse;
  line-height: 1.5;
  margin-top: 15px;
}
.c-form .-inputgray {
  background: var(--color-white4);
}
.c-form .ckbul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 25px 30px;
  row-gap: 15px;
}
@media only screen and (max-width: 767px) {
  .c-form .ckbul {
    display: -ms-grid;
    display: grid;
    row-gap: 15px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.c-form .ckbul__icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  margin-right: 7px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #d7dbe3;
  position: relative;
  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;
  background-color: var(--color-white);
}
.c-form .ckbul__icon::after {
  display: block;
  background: var(--color-text);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  content: "";
  opacity: 0;
}
.c-form .ckbul__radio {
  position: relative;
  cursor: pointer;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 40px;
}
@media only screen and (max-width: 767px) {
  .c-form .ckbul__radio {
    margin-right: 0;
  }
}
.c-form .ckbul input {
  position: absolute;
  z-index: -1;
  opacity: 0;
  width: 20px;
  height: 20px;
}
.c-form .ckbul input:checked ~ .ckbul__icon::after {
  opacity: 1;
}
.c-form .ckbul.-caution {
  border: 2px solid #f00;
}
.c-form tr:not(:first-child) {
  border-top: 1px solid var(--color-gray);
}
@media only screen and (max-width: 767px) {
  .c-form tr {
    display: block;
  }
}
.c-form td {
  padding: 50px 0;
}
@media only screen and (max-width: 767px) {
  .c-form td:first-of-type {
    padding-bottom: 10px;
  }
  .c-form td + td {
    padding-top: 10px;
  }
}
.c-form .namearea {
  width: 31.25%;
  padding-right: 3%;
}
@media only screen and (max-width: 767px) {
  .c-form .namearea {
    width: 100%;
    display: block;
  }
}
.c-form .inputarea.-two {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}
@media only screen and (max-width: 959px) {
  .c-form .inputarea.-two {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
    row-gap: 10px;
  }
}
.c-form .-readonly {
  background-color: #e5e5e5;
  padding: 18px 20px;
  min-height: 60px;
}
.c-form input[type=text],
.c-form input[type=email],
.c-form select {
  border: 0;
  padding: 18px 20px;
  line-height: 1.5;
  width: 100%;
  font-size: inherit;
  font-family: inherit;
  color: var(--color-text);
  background-color: var(--color-white4);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.c-form input[type=text].phone,
.c-form input[type=email].phone,
.c-form select.phone {
  max-width: 240px;
}
@media only screen and (max-width: 767px) {
  .c-form input[type=text].phone,
  .c-form input[type=email].phone,
  .c-form select.phone {
    max-width: 100%;
    width: 100%;
  }
}
.c-form select {
  font-size: 1.5rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}
.c-form ._valign-top {
  vertical-align: top;
}
.c-form ._valign-top > * {
  padding-top: 18px;
  display: block;
  width: 100%;
}
.c-form ._valign-top > .-center {
  padding: 23px 0;
}
.c-form .-required {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .c-form .-required {
    display: inline-block;
  }
}
.c-form .-required::after {
  content: "必 須";
  color: #fff;
  background-color: var(--color-green);
  font-size: 1.3rem;
  line-height: 1.1;
  font-weight: 400;
  padding: 5px 11px 5px 10px;
}
@media only screen and (max-width: 767px) {
  .c-form .-required::after {
    margin-left: 20px;
  }
}
.c-form .postinput .label {
  width: 80px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 1.4rem;
  line-height: 1.43;
}
.c-form .post-code {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 959px) {
  .c-form .post-code {
    display: block;
  }
}
@media only screen and (max-width: 959px) {
  .c-form .post-code .child + .child {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .c-form .post-code .child {
    width: 100%;
  }
}
.c-form .post-code .input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.c-form .post-code .input.-region {
  position: relative;
}
.c-form .post-code .input.-region::after {
  content: "";
  position: absolute;
  top: calc(50% + 3px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 10px;
  background: url(../../assets/img/common/arrow-down.svg) center/cover no-repeat;
  width: 10px;
  height: 8px;
  pointer-events: none;
}
.c-form .post-address,
.c-form .post-building {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 30px;
}
.c-form .child {
  width: 47%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 959px) {
  .c-form .child {
    width: 64%;
  }
}
.c-form .joinlist {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, 70px);
  grid-auto-columns: auto;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}
@media only screen and (max-width: 767px) {
  .c-form .joinlist {
    grid-template-columns: repeat(auto-fit, 62px);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }
}
.c-form .joinlist .list {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.c-form .joinlist .list::after {
  content: "";
  position: absolute;
  top: calc(50% + 14px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 10px;
  width: 10px;
  height: 8px;
  background: url(../../assets/img/common/arrow-down.svg) center/cover no-repeat;
  pointer-events: none;
}
.c-form .joinlist .list > label {
  font-size: 1.4rem;
  text-align: center;
  margin-bottom: 6px;
}
.c-form .joinlist select {
  padding-right: 25px;
}
.c-form .textarea {
  border: none;
  padding: 10px 20px;
  height: 300px;
  width: 100%;
  font-size: inherit;
  font-family: inherit;
  resize: none;
  border-radius: 0;
  background-color: var(--color-white4);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media only screen and (max-width: 767px) {
  .c-form .textarea {
    margin-right: 10px;
    height: 180px;
    padding: 10px;
  }
}
.c-form .form-submit {
  margin-top: 9px;
}
.c-form .form-submit p {
  font-size: 1.4rem;
  line-height: 1.714;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .c-form .form-submit p {
    line-height: 2;
  }
}
.c-form .form-submit .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-form .form-submit .form-privacy {
  display: inline-block;
  margin-top: 29px;
  text-align: center;
  cursor: pointer;
}
.c-form .form-submit .form-privacy input[type=checkbox] {
  display: none;
}
.c-form .form-submit .form-privacy input[type=checkbox]:checked ~ .form-privacy__icon::after {
  opacity: 1;
}
.c-form .form-submit .form-privacy .form-privacy__icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 20px;
  height: 20px;
  border: 1px solid #666;
  background: var(--color-white);
  margin-right: 4px;
}
.c-form .form-submit .form-privacy .form-privacy__icon.-caution {
  border: 1px solid #f00;
}
.c-form .form-submit .form-privacy .form-privacy__icon::after {
  content: "";
  display: block;
  opacity: 0;
  width: 12px;
  height: 12px;
  background: var(--color-text);
}
.c-form .form-submit .u-dflex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.c-form .form-submit .u-justify-content--center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-form .form-submit .u-mt--28 {
  margin-top: 28px;
}
.c-form .form-submit ._linkudb {
  border-bottom: 1px solid var(--color-text);
  padding-bottom: 3px;
}
.c-form .form-submit ._linkudb:hover {
  opacity: 0.7;
}
.c-form .form-submit .submitbtn {
  background-color: var(--color-orange);
  color: var(--color-white);
  border: 1px solid var(--color-orange);
  width: min(72vw, 270px);
  font-size: 1.6rem;
  padding: 17px 30px 18px;
  font-family: var(--primary-font);
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}
.c-form .form-submit .submitbtn:hover {
  background-color: var(--color-white);
  color: var(--color-orange);
}
.c-form .form-submit .submitbtn:hover::after {
  background: url(../../assets/img/common/arrow-right__o.svg) center/cover no-repeat;
}
.c-form .form-submit .submitbtn::after {
  content: "";
  background: url(../../assets/img/common/arrow-right__w.svg) center/cover no-repeat;
  width: 14px;
  height: 9px;
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 14px;
}
.c-form.-confirm .form__desc {
  padding-top: 70px;
}
.c-form.-confirm .form-content {
  margin-top: 70px;
}
.c-form.-confirm .form-content tr:first-child {
  border-top: 1px solid var(--border-color);
}
.c-form.-confirm td {
  padding: 30px 0;
}
.c-form.-confirm td.namearea {
  vertical-align: top;
}
@media only screen and (max-width: 1024px) {
  .c-form.-confirm td.namearea {
    width: 25%;
    padding-right: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .c-form.-confirm td.namearea {
    width: 100%;
    padding: 30px 0 0;
  }
  .c-form.-confirm td.inputarea {
    padding-top: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .c-form.-confirm thead,
  .c-form.-confirm tbody,
  .c-form.-confirm th,
  .c-form.-confirm td,
  .c-form.-confirm tr {
    display: block;
  }
}
.c-form.-confirm .form-submit {
  padding: 65px 0 0;
}
.c-form.-confirm .backbtn {
  margin-top: 60px;
  width: min(72vw, 270px);
  font-size: 1.6rem;
  padding: 1.05em 2.5em;
  font-family: var(--main-fonts);
}
.c-form.-confirm .backbtn::after {
  top: 50%;
  left: 14px;
  -webkit-transform: skew(-45deg) translateY(-50%);
          transform: skew(-45deg) translateY(-50%);
}
.c-form.-confirm .backbtn span {
  text-align: center;
}

.group-btn__confirm {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.group-btn__confirm .c-btn2:first-child {
  margin-bottom: 20px;
}

.thank__contentarea {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.thank__contentarea .mttl {
  font-size: 3.2rem;
  padding-top: 100px;
  padding-bottom: 20px;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .thank__contentarea .mttl {
    font-size: 2.6rem;
  }
}
.thank__contentarea .thank__text {
  margin-bottom: 40px;
}

/*
------------------------------------------------------------*/
/*------------------------------------------------------------
text
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
navi
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
img
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
list
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
table
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
line
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
video
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
video
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
.c-paginate {
  padding-top: 67px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-paginate .wp-pagenavi {
  bottom: 0;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
}
.c-paginate .wp-pagenavi .page,
.c-paginate .wp-pagenavi .extend,
.c-paginate .wp-pagenavi .current,
.c-paginate .wp-pagenavi .previouspostslink,
.c-paginate .wp-pagenavi .nextpostslink,
.c-paginate .wp-pagenavi .pages {
  font-size: 1.6rem;
  font-weight: 700;
  font-family: var(--primary-font);
  display: block;
  color: #aaa;
  line-height: 1.875;
  width: 34px;
  height: 34px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 767px) {
  .c-paginate .wp-pagenavi .page,
  .c-paginate .wp-pagenavi .extend,
  .c-paginate .wp-pagenavi .current,
  .c-paginate .wp-pagenavi .previouspostslink,
  .c-paginate .wp-pagenavi .nextpostslink,
  .c-paginate .wp-pagenavi .pages {
    width: 29px;
    font-size: 1.4rem;
  }
}
.c-paginate .wp-pagenavi .extend {
  font-weight: 700;
  margin: 0 11px 0 5px;
}
.c-paginate .wp-pagenavi .pages {
  height: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2rem;
  min-width: 60px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 0;
}
.c-paginate .wp-pagenavi .page {
  font-weight: 700;
  border: 0;
}
.c-paginate .wp-pagenavi .page:hover {
  color: var(--color-brown);
  opacity: 1;
}
.c-paginate .wp-pagenavi .current {
  color: var(--color-brown);
  font-weight: 700;
  opacity: 1;
}
.c-paginate .previouspostslink a,
.c-paginate .nextpostslink a {
  font-size: 1.6rem;
  line-height: 1.875;
  font-weight: 700;
  font-family: var(--cormorant-font);
  display: block;
  color: #aaa;
  line-height: 1;
  width: 34px;
  height: 34px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 767px) {
  .c-paginate .previouspostslink a,
  .c-paginate .nextpostslink a {
    width: 30px;
  }
}
.c-paginate .previouspostslink,
.c-paginate .nextpostslink {
  width: max(18.97%, 125px);
}
@media only screen and (max-width: 767px) {
  .c-paginate .previouspostslink,
  .c-paginate .nextpostslink {
    width: 40px;
  }
}
.c-paginate .previouspostslink a,
.c-paginate .nextpostslink a {
  color: #303030;
  width: 100%;
  height: 50px;
  background: var(--color-white4);
  border: 1px solid var(--color-white4);
  font-weight: 700;
  margin-right: auto;
  font-family: var(--cormorant-font);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  letter-spacing: 0.1em;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media only screen and (max-width: 767px) {
  .c-paginate .previouspostslink a,
  .c-paginate .nextpostslink a {
    font-size: 0;
    width: 40px;
    height: 40px;
  }
}
.c-paginate .previouspostslink a::after,
.c-paginate .nextpostslink a::after {
  content: "";
  background-color: var(--text-color);
  position: absolute;
  right: 19px;
  top: 50%;
  height: 9px;
  width: 14px;
  background: url(../../assets/img/common/arrow-right.svg) center/cover no-repeat;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media only screen and (max-width: 767px) {
  .c-paginate .previouspostslink a::after,
  .c-paginate .nextpostslink a::after {
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
.c-paginate .previouspostslink a:hover,
.c-paginate .nextpostslink a:hover {
  background-color: var(--color-brown);
  color: var(--color-white);
  opacity: 1;
}
.c-paginate .previouspostslink a:hover::after,
.c-paginate .nextpostslink a:hover::after {
  background: url(../../assets/img/common/arrow-right__w.svg) center/cover no-repeat;
}
.c-paginate .nextpostslink a {
  margin-left: auto;
  margin-right: 0;
  position: relative;
  right: 0;
}
.c-paginate .previouspostslink a {
  position: relative;
  left: 0;
}
.c-paginate .previouspostslink a::after {
  right: unset;
  left: 19px;
  border-right: 0;
  -webkit-transform: translateY(-50%) rotate(-180deg);
          transform: translateY(-50%) rotate(-180deg);
}
@media only screen and (max-width: 767px) {
  .c-paginate .previouspostslink a::after {
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(-180deg);
            transform: translate(-50%, -50%) rotate(-180deg);
  }
}

.c-free-layout {
  position: relative;
  margin-top: 70px;
}
.c-free-layout .flttl {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  margin-top: 50px;
}
.c-free-layout .flttl:first-of-type {
  margin-top: 40px;
}
@media only screen and (max-width: 767px) {
  .c-free-layout .flttl {
    font-size: 2.6rem;
  }
}
.c-free-layout .flttl02 {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.5;
  padding: 7px 26px;
  background-color: var(--color-white4);
  position: relative;
  margin-top: 50px;
}
.c-free-layout .flttl02:first-of-type {
  margin-top: 40px;
}
@media only screen and (max-width: 767px) {
  .c-free-layout .flttl02 {
    font-size: 2rem;
  }
}
.c-free-layout .flttl02::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  height: 24px;
  width: 6px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: var(--color-green);
  z-index: 2;
}
.c-free-layout .flttlm {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-brown);
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  .c-free-layout .flttlm {
    font-size: 2rem;
  }
}
.c-free-layout .flimg,
.c-free-layout .fltxt {
  margin-top: 15px;
  line-height: 1.875;
}
.c-free-layout .flimg:first-child,
.c-free-layout .fltxt:first-child {
  margin-top: 0;
}
.c-free-layout .flimg p,
.c-free-layout .fltxt p {
  margin-bottom: 20px;
}
.c-free-layout .flimg p:last-of-type,
.c-free-layout .fltxt p:last-of-type {
  margin-bottom: 0;
}
.c-free-layout .flblntxt {
  padding: 20px;
  background-color: var(--color-white4);
  position: relative;
  margin-top: 50px;
}
.c-free-layout .flblntxt.-mark {
  padding: 65px 20px 50px;
}
.c-free-layout .flblntxt.-mark::before {
  content: "";
  position: absolute;
  left: 30px;
  top: -15px;
  width: 68px;
  height: 50px;
  background: url(../../assets/img/common/icon_bln.svg) 0 0 no-repeat;
  background-size: contain;
}
.c-free-layout .big-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 50px;
}
.c-free-layout .big-list .list {
  font-size: 1.8rem;
  background-color: var(--color-white4);
  border-radius: 5px;
  padding: 12px 12px 12px 42px;
  position: relative;
}
.c-free-layout .big-list .list::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 13px;
  width: 22px;
  height: 22px;
  background: var(--color-green) url(../../assets/img/common/icon_chk.svg) center center no-repeat;
  background-size: 14px auto;
  border-radius: 50%;
}
.c-free-layout .fltxtarea {
  margin-top: 40px;
  margin-bottom: -5px;
}
.c-free-layout .fltxtarea p {
  line-height: 1.875;
}
.c-free-layout .flimgarea {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-free-layout a {
  overflow: hidden;
}
.c-free-layout a:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.c-free-layout .fl2clm {
  margin-top: 40px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media only screen and (max-width: 767px) {
  .c-free-layout .fl2clm {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.c-free-layout .fl2clm.-c {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-free-layout .fl2clm.-fs {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.c-free-layout .fl2clm.-fe {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.c-free-layout .fl3clm {
  margin-top: 40px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr 40px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media only screen and (max-width: 767px) {
  .c-free-layout .fl3clm {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.c-free-layout .fl3clm.-c {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-free-layout .fl3clm.-fs {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.c-free-layout .fl3clm.-fe {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.c-free-layout .flimg {
  display: block;
}
.c-free-layout .imgarea.-ar1_1 {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 100%;
}
.c-free-layout .imgarea.-ar1_1 img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.c-free-layout .imgarea.-ar3_2 {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 66.67%;
}
.c-free-layout .imgarea.-ar3_2 img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.c-free-layout .imgarea.-ar2_3 {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 150%;
}
.c-free-layout .imgarea.-ar2_3 img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.c-free-layout .imgarea.-ar4_3 {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 75%;
}
.c-free-layout .imgarea.-ar4_3 img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.c-free-layout .imgarea.-ar16_9 {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}
.c-free-layout .imgarea.-ar16_9 img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.c-free-layout .imgarea.-ar3_4 {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 133.33%;
}
.c-free-layout .imgarea.-ar3_4 img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.c-free-layout .imgarea.-ar9_16 {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 177.78%;
}
.c-free-layout .imgarea.-ar9_16 img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.c-free-layout .movieblock {
  margin-top: 50px;
}
.c-free-layout .movieblock > .movie {
  width: 100%;
  height: 0;
  position: relative;
  padding-top: 56.25%;
}
.c-free-layout .movieblock .mviframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.c-free-layout .movieblock p {
  line-height: 1.875;
  margin-top: 20px;
}
.c-free-layout .imggallery {
  margin-top: 40px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 13px 1fr 13px 1fr 13px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  .c-free-layout .imggallery {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
.c-free-layout .fldl {
  margin-top: 50px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 142px 1fr;
  grid-template-columns: 142px 1fr;
  border-top: 1px solid #ccc;
}
@media only screen and (max-width: 767px) {
  .c-free-layout .fldl {
    -ms-grid-columns: 70px 1fr;
    grid-template-columns: 70px 1fr;
  }
}
.c-free-layout .fldl > .dt {
  padding: 25px 10px 25px 20px;
  border-bottom: 1px solid #ccc;
}
@media only screen and (max-width: 767px) {
  .c-free-layout .fldl > .dt {
    width: 70px;
    padding: 25px 0;
  }
}
.c-free-layout .fldl > .dd {
  padding: 25px 20px 25px 0;
  border-bottom: 1px solid #ccc;
}
@media only screen and (max-width: 767px) {
  .c-free-layout .fldl > .dd {
    padding: 25px 20px;
  }
}
.c-free-layout .flmap {
  margin-top: 50px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 20px;
}
.c-free-layout .flmap .txtarea .flttl {
  font-size: 3.2rem;
  font-weight: 400;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .c-free-layout .flmap .txtarea .flttl {
    font-size: 2.6rem;
  }
}
.c-free-layout .flmap .txtarea p {
  line-height: 1.875;
}
.c-free-layout .flqa {
  margin-top: 95px;
}
.c-free-layout .flqa__ttl {
  font-size: 2rem;
  font-weight: 400;
  background-color: var(--color-white4);
  min-height: 50px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px 20px 5px 65px;
}
@media only screen and (max-width: 767px) {
  .c-free-layout .flqa__ttl {
    font-size: 1.8rem;
  }
}
.c-free-layout .flqa__ttl .flqa__icon {
  color: var(--color-white);
  background-color: var(--color-green);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 5px;
  left: 5px;
  font-size: 2.4rem;
  padding-bottom: 8px;
}
@media only screen and (max-width: 767px) {
  .c-free-layout .flqa__ttl .flqa__icon {
    font-size: 2rem;
  }
}
.c-free-layout .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background-color: #aaa;
  margin: 0 5px;
}
.c-free-layout .swiperarea .swiper-pagination-bullet-active {
  background-color: #86a303;
  pointer-events: none;
}

._mtst15 {
  margin-top: 15px !important;
}

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

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

.flblog-card {
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 15px;
}
.flblog-card > .cardinner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 210px 20px 1fr;
  grid-template-columns: 210px 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.flblog-card > .cardinner .imgarea {
  width: 100%;
  height: 0;
  padding-top: 66.7%;
  position: relative;
  overflow: hidden;
}
.flblog-card > .cardinner .imgarea img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.flblog-card > .cardinner .txtarea {
  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: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}
.flblog-card > .cardinner .cardttl {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  font-weight: bold;
  line-height: 1.4;
}
.flblog-card > .cardinner .excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 1.4rem;
  line-height: 1.4;
  color: #999;
  margin-top: 5px;
}
.flblog-card > .cardinner .url {
  font-family: var(--cormorant-font);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 1.2rem;
  font-weight: normal;
  margin-top: 10px;
}
@media only screen and (max-width: 767px) {
  .flblog-card > .cardinner {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.fllinkbtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 50px auto 0;
  position: relative;
  max-width: 225px;
  width: 100%;
  border: 1px solid var(--color-text);
  background: var(--color-white);
  text-align: center;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.fllinkbtn a {
  -webkit-transition: unset;
  transition: unset;
}
@media only screen and (max-width: 767px) {
  .fllinkbtn {
    max-width: 270px;
  }
}
.fllinkbtn:hover {
  color: var(--color-white);
  background: var(--color-brown);
}
.fllinkbtn:hover::before {
  background-image: url("../../assets/img/common/arrow-right__w.svg");
}
.fllinkbtn::before {
  content: "";
  display: block;
  width: 14px;
  height: 9px;
  background: url("../../assets/img/common/arrow-right.svg") center/cover no-repeat;
  position: absolute;
  top: 50%;
  right: 13px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
}
@media only screen and (max-width: 767px) {
  .fllinkbtn::before {
    width: 15px;
    right: 14px;
  }
}
.fllinkbtn .linkbtn {
  display: block;
  padding: 12px 20px 11px;
  font-weight: 400;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .fllinkbtn .linkbtn {
    padding: 17px 20px 16px;
  }
}

.single-event__content {
  overflow: hidden;
}

.c-tags1__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .c-tags1__inner {
    display: block;
    max-width: 100%;
    margin-top: 0;
    padding-bottom: 0;
  }
}
.c-tags1__ttl {
  background: var(--color-brown);
  font-family: var(--primary-font);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--color-white);
  width: 109px;
  text-align: center;
  padding: 5px 10px 6px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media only screen and (max-width: 767px) {
  .c-tags1__ttl {
    width: 100%;
    padding: 10px;
  }
}
.c-tags1 ul {
  width: calc(100% - 189px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0 6px;
  height: 27px;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .c-tags1 ul {
    width: 100%;
    padding: 0;
    margin-top: 20px;
  }
}
.c-tags1 ul li {
  margin-right: 9px;
}
.c-tags1 ul li.current-cat a {
  color: var(--color-white);
  background: var(--color-brown);
}
.c-tags1 ul a {
  font-family: var(--primary-font);
  font-size: 1.4rem;
  font-weight: 400;
  background: var(--color-white4);
  padding: 2px 14px 3px;
  min-height: 26px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  word-break: break-all;
  border: 1px solid var(--color-white4);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  box-sizing: border-box;
}
.c-tags1 ul a:hover {
  color: var(--color-white);
  background: var(--color-brown);
}
.c-tags1__more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 77px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.c-tags1__more:hover {
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  .c-tags1__more {
    border: 1px solid var(--color-border);
    height: 38px;
    width: 120px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 20px auto 0;
  }
}
.c-tags1__more img {
  width: 16px;
}
.c-tags1__more span {
  font-family: var(--primary-font);
  font-size: 1.4rem;
  color: #303030;
  font-weight: 400;
  margin-left: 4px;
}

.c-filter {
  position: fixed;
  height: 100vh;
  width: 100%;
  z-index: 20;
  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;
  left: 0;
  top: 0;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.c-filter__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.c-filter__inner {
  background: var(--color-white);
  max-width: 800px;
  width: 100%;
  -webkit-box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.3);
          box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.3);
  padding: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  z-index: 50;
  margin: auto;
}
@media only screen and (max-width: 1024px) {
  .c-filter__inner {
    width: calc(100% - 40px);
    padding: 20px;
  }
}
.c-filter__header {
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .c-filter__header {
    margin-bottom: 15px;
  }
}
.c-filter__close {
  width: 30px;
  height: 30px;
  cursor: pointer;
  position: absolute;
  right: 15px;
  top: 15px;
}
@media only screen and (max-width: 767px) {
  .c-filter__close {
    width: 25px;
    height: 25px;
  }
}
.c-filter__close:hover {
  opacity: 0.7;
}
.c-filter__title {
  font-size: 2.4rem;
  border-bottom: 1px solid #666;
  padding-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .c-filter__title {
    font-size: 1.9rem;
  }
}
.c-filter__body {
  overflow: hidden;
  height: 100%;
}
.c-filter .c-filter__tags {
  margin: 0;
  padding: 0;
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
}
.c-filter .c-filter__tags ul {
  margin: -10px 0 0 -10px;
  width: 100%;
  padding: 0;
  height: auto;
  overflow: visible;
}
.c-filter .c-filter__tags li {
  margin: 10px 0 0 10px;
}
.c-filter.is-active {
  opacity: 1;
  pointer-events: all;
}

.wginner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.wginner .imgblock2 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr;
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 40px;
}
@media only screen and (max-width: 767px) {
  .wginner .imgblock2 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.wginner .imglongl {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr;
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 40px;
}
@media only screen and (max-width: 767px) {
  .wginner .imglongl {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.wginner .imglongl .imgl {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-area: 1/1/3/2;
}
@media only screen and (max-width: 767px) {
  .wginner .imglongl .imgl {
    grid-area: unset;
  }
}
.wginner .imglongr {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr;
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 40px;
}
@media only screen and (max-width: 767px) {
  .wginner .imglongr {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.wginner .imglongr .imgr {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-area: 1/2/3/3;
}
@media only screen and (max-width: 767px) {
  .wginner .imglongr .imgr {
    grid-area: unset;
  }
}
.wginner .movieblock {
  width: 100%;
  max-width: 960px;
  margin: auto;
}
.wginner .movieblock > .movie {
  width: 100%;
  height: 0;
  position: relative;
  padding-top: 56.25%;
}
.wginner .movieblock .mviframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.wginner .txtarea {
  font-size: 1.6rem;
  line-height: 2;
}
.wginner .ttlarea .ttlcontent {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.5;
  padding: 7px 26px;
  background-color: var(--color-white4);
  position: relative;
  margin-top: 50px;
}
@media only screen and (max-width: 767px) {
  .wginner .ttlarea .ttlcontent {
    font-size: 2rem;
  }
}
.wginner .ttlarea .ttlcontent::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  height: 24px;
  width: 6px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: var(--color-green);
  z-index: 2;
}
.wginner .imggallery {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 13px 1fr 13px 1fr 13px 1fr 13px 1fr;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px 13px;
}
@media only screen and (max-width: 959px) {
  .wginner .imggallery {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
  }
}
@media only screen and (max-width: 767px) {
  .wginner .imggallery {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 374px) {
  .wginner .imggallery {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.wginner .wginner__item {
  margin-bottom: 40px;
}
.wginner .wginner__item:last-of-type {
  margin-bottom: 0;
}

.c-linkscale {
  display: block;
  overflow: hidden;
}
.c-linkscale:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.c_imgcontain > img {
  display: block;
  max-width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center center;
     object-position: center center;
}

.c_imgcover > img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.mg__bt100 {
  padding-bottom: 100px;
}

.mg__bt90 {
  padding-bottom: 90px;
}
@media only screen and (max-width: 767px) {
  .mg__bt90 {
    padding-bottom: 60px;
  }
}
.mg__bt90.bg-white4 {
  background-color: var(--color-white4);
}

.boder__bt {
  border-bottom: 1px solid var(--color-border);
}

p a:hover {
  opacity: 0.7;
}

.grid-card01 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 60px 1fr;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 60px;
     -moz-column-gap: 60px;
          column-gap: 60px;
  margin-top: 50px;
}
@media only screen and (max-width: 1024px) {
  .grid-card01 {
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .grid-card01 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.grid-card01__item {
  margin-bottom: 50px;
}
.grid-card01__img {
  overflow: hidden;
}
.grid-card01__contentarea {
  background-color: var(--color-white);
  text-align: center;
  padding: 44px 20px;
}
.grid-card01__ttl {
  font-size: 2.4rem;
  font-family: var(--cormorant-font);
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .grid-card01__ttl {
    font-size: 2rem;
  }
}
.grid-card01__des {
  font-size: 1.4rem;
  line-height: 1.714;
  margin-top: 12px;
}

.grid-check {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 60px 1fr;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 40px;
  -webkit-column-gap: 60px;
     -moz-column-gap: 60px;
          column-gap: 60px;
  row-gap: 10px;
}
@media only screen and (max-width: 1024px) {
  .grid-check {
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .grid-check {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.grid-check__item {
  font-size: 1.8rem;
  background-color: var(--color-white4);
  border-radius: 5px;
  padding: 12px 12px 12px 42px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .grid-check__item {
    font-size: 1.4rem;
  }
}
.grid-check__item::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 13px;
  width: 22px;
  height: 22px;
  background: var(--color-green) url(../../assets/img/common/icon_chk.svg) center center no-repeat;
  background-size: 14px auto;
  border-radius: 50%;
}

.grid-gallery {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 14px 1fr 14px 1fr 14px 1fr;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 40px;
  -webkit-column-gap: 14px;
     -moz-column-gap: 14px;
          column-gap: 14px;
  row-gap: 15px;
}
@media only screen and (max-width: 767px) {
  .grid-gallery {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
.grid-gallery__img {
  display: block;
  overflow: hidden;
}
.grid-gallery__img:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

/*------------------------------------------------------------
Event
------------------------------------------------------------*/
.c-event__item .link:hover .c-img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.c-event__item .link .c-img {
  overflow: hidden;
}
.c-event__item .group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 15px;
}
@media only screen and (max-width: 767px) {
  .c-event__item .group {
    margin-bottom: 11px;
  }
}
.c-event__item .group .cat {
  font-size: 1.3rem;
  color: var(--color-white);
  background-color: var(--color-brown2);
  padding: 2px 13px;
  min-width: 66px;
  min-height: 24px;
  margin-right: 10px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .c-event__item .group .cat {
    font-size: 1.2rem;
    min-width: 60px;
    margin-right: 5px;
  }
}
.c-event__item .group .status {
  font-size: 1.3rem;
  color: var(--color-black6);
  background-color: var(--color-gray);
  padding: 2px 10px;
  min-width: 66px;
  margin-right: 10px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .c-event__item .group .status {
    font-size: 1.2rem;
    min-width: 60px;
  }
}
.c-event__item .group .new {
  color: var(--color-green);
  font-family: var(--cormorant-font);
  text-transform: uppercase;
  font-weight: 700;
  text-indent: 3px;
}
@media only screen and (max-width: 767px) {
  .c-event__item .group .new {
    text-indent: 5px;
  }
}
.c-event__item .ttl {
  line-height: 1.5;
  font-weight: 400;
  font-size: 1.6rem;
  margin-bottom: 11px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .c-event__item .ttl {
    font-size: 1.4rem;
    line-height: 1.429;
    margin-bottom: 9px;
  }
}
.c-event__item .date {
  color: var(--color-black6);
  font-size: 1.4rem;
}
@media only screen and (max-width: 767px) {
  .c-event__item .date {
    font-size: 1.2rem;
  }
}

.c-noPost {
  padding-top: 100px;
  text-align: center;
}

.p-404__cnt {
  margin-top: 20px;
}
.p-404__txt {
  text-align: center;
}
.p-404 .c-btn2 {
  margin: 50px auto 100px;
}

.works-top {
  padding: 0 0 50px;
}
@media only screen and (max-width: 767px) {
  .works-top {
    padding: 0 0 100px;
  }
}
.works-top__inner {
  position: relative;
}
.works-top__title {
  font-size: 2.4rem;
  font-weight: 400;
  text-align: center;
  line-height: 1.5;
  padding: 0 160px;
}
@media only screen and (max-width: 767px) {
  .works-top__title {
    font-size: 2rem;
  }
}
.works-top__title span {
  font-size: 2rem;
}
@media only screen and (max-width: 767px) {
  .works-top__title {
    padding: 0;
  }
  .works-top__title span {
    font-size: 1.8rem;
  }
}
.works-top__close {
  font-size: 1.3rem;
  line-height: 1;
  color: var(--color-white);
  font-weight: 400;
  width: 150px;
  height: 30px;
  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;
  border-radius: 20px;
  background: var(--color-text);
  position: absolute;
  right: 0;
  bottom: 4px;
}
@media only screen and (max-width: 767px) {
  .works-top__close {
    bottom: auto;
    margin-top: 10px;
    left: 50%;
    right: unset;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.works-top__close:hover {
  background: var(--color-brown);
}

/*
------------------------------------------------------------*/
/*≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡
// Project .p-
≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡*/
/*------------------------------------------------------------
Css of home page
------------------------------------------------------------*/
.c-mainvisual {
  position: relative;
}
.c-mainvisual__area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-mainvisual__grimg {
  height: 100%;
  max-width: 62.96%;
  width: 100%;
  margin-left: auto;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .c-mainvisual__grimg {
    max-width: 72%;
  }
}
.c-mainvisual__left {
  width: 37.04%;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .c-mainvisual__left {
    width: 28%;
    right: -30px;
    z-index: 3;
  }
}
.c-mainvisual__leftcontent {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  position: relative;
  margin: 0 auto 17px;
}
@media only screen and (max-width: 767px) {
  .c-mainvisual__leftcontent {
    margin-bottom: 72px;
    text-shadow: 0 0 45px rgba(255, 255, 255, 0.5), 20px 20px 45px rgba(255, 255, 255, 0.5), 45px 45px 45px rgba(255, 255, 255, 0.5);
  }
}
.c-mainvisual__ttl {
  font-weight: 400;
  font-size: 2.8rem;
  color: var(--color-text);
  line-height: 1.714;
  letter-spacing: 0.2em;
  margin-left: 13px;
}
@media only screen and (max-width: 767px) {
  .c-mainvisual__ttl {
    font-size: 2rem;
    line-height: 1.8;
    margin-left: 9px;
  }
  .c-mainvisual__ttl span {
    text-shadow: 0px 0px 10px rgba(255, 255, 255, 0.6), -2px -2px 10px rgba(255, 255, 255, 0.6), -2px 2px 10px rgba(255, 255, 255, 0.6), 2px 2px 10px rgba(255, 255, 255, 0.6), 2px -2px 10px rgba(255, 255, 255, 0.6);
  }
}
.c-mainvisual__subttl {
  font-weight: 300;
  font-family: var(--cormorant-font);
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  margin-left: 2px;
}
@media only screen and (max-width: 767px) {
  .c-mainvisual__subttl {
    font-size: 1rem;
    line-height: 1.5;
  }
}
.c-mainvisual__map {
  width: 41.5%;
  display: block;
  position: absolute;
  top: 35.5%;
  right: 29.2%;
  z-index: -1;
}
@media only screen and (max-width: 1024px) {
  .c-mainvisual__map {
    width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .c-mainvisual__map {
    width: 80%;
    top: 36.7%;
    right: 0%;
    text-shadow: 0 0 45px rgba(255, 255, 255, 0.5), 20px 20px 45px rgba(255, 255, 255, 0.5), 45px 45px 45px rgba(255, 255, 255, 0.5);
  }
}
.c-mainvisual__bottom {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  color: var(--color-white4);
  background: url(../../assets/img/home/home_bg01.jpg) center/cover;
  width: 480px;
  height: 320px;
  position: absolute;
  bottom: -220px;
  right: 0;
  padding: 45px 94px 53px 49px;
  z-index: 3;
}
@media only screen and (max-width: 1024px) {
  .c-mainvisual__bottom {
    -webkit-writing-mode: unset;
        -ms-writing-mode: unset;
            writing-mode: unset;
    width: 79.73%;
    max-width: 700px;
    height: auto;
    right: unset;
    padding: 35px 29px 36px 25px;
    position: relative;
    bottom: 0;
    margin-top: -77px;
    background: url(../../assets/img/home/home_bg01_sp.jpg) center/cover;
  }
}
.c-mainvisual__bottom .ttl {
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  line-height: 2;
  margin-left: 17px;
}
@media only screen and (max-width: 1024px) {
  .c-mainvisual__bottom .ttl {
    font-size: 1.6rem;
    line-height: 1.875;
    margin-left: 0;
    margin-bottom: 15px;
  }
}
.c-mainvisual__bottom .lead {
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 3.077;
}
@media only screen and (max-width: 1024px) {
  .c-mainvisual__bottom .lead {
    font-size: 1.1rem;
    line-height: 2.273;
  }
}
@media only screen and (max-width: 1024px) {
  .c-mainvisual__bottom .lead br:not(.inline) {
    display: none;
  }
}

.c-intro01 {
  padding: 50px 0;
}
@media only screen and (max-width: 1024px) {
  .c-intro01 {
    margin-top: -35px;
    padding-top: 0;
  }
}
.c-intro01__swiper {
  margin-top: 70px;
}
@media only screen and (max-width: 1024px) {
  .c-intro01__swiper {
    margin-top: 0;
  }
}
.c-intro01__wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

.top-binaka01 {
  margin-top: 30px;
}
@media only screen and (max-width: 767px) {
  .top-binaka01 {
    margin-top: 0;
    padding-top: 33px;
  }
}
.top-binaka01__area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 767px) {
  .top-binaka01__area {
    display: block;
  }
}
.top-binaka01__left {
  margin-left: -2px;
  margin-right: 40px;
  -ms-flex-preferred-size: 45%;
      flex-basis: 45%;
}
@media only screen and (max-width: 1024px) {
  .top-binaka01__left {
    margin-right: 20px;
    margin-left: 0;
  }
}
@media only screen and (max-width: 767px) {
  .top-binaka01__left {
    margin-right: 0;
  }
}
.top-binaka01__left .ttl {
  font-weight: 400;
  letter-spacing: 0.15em;
  line-height: 1.31;
  margin-bottom: 42px;
}
@media only screen and (max-width: 767px) {
  .top-binaka01__left .ttl {
    margin-bottom: 23px;
  }
}
.top-binaka01__left .short-des {
  line-height: 2;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 767px) {
  .top-binaka01__left .short-des {
    line-height: 1.875;
  }
}
.top-binaka01__right {
  padding: 0 40px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media only screen and (max-width: 1024px) {
  .top-binaka01__right {
    padding: 0 20px;
  }
}
@media only screen and (max-width: 767px) {
  .top-binaka01__right {
    padding: 0;
    margin-top: 29px;
  }
}
.top-binaka01__right .des {
  line-height: 2;
  margin-bottom: 32px;
}
@media only screen and (max-width: 767px) {
  .top-binaka01__right .des {
    font-size: 1.4rem;
    line-height: 2.143;
    margin-bottom: 29px;
  }
}
@media only screen and (max-width: 767px) {
  .top-binaka01__right .des br:not(.inline) {
    display: none;
  }
}

.home-feature {
  position: relative;
  margin-top: 50px;
  padding-top: 148px;
}
@media only screen and (max-width: 767px) {
  .home-feature {
    margin-top: 4px;
    padding-top: 90px;
  }
}
.home-feature::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 320px;
  background: url(../../assets/img/home/home_bg02.jpg) center/cover no-repeat;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .home-feature::before {
    background: url(../../assets/img/home/home_bg02_sp.jpg) center/cover no-repeat;
    height: 235px;
  }
}
.home-feature::after {
  content: "";
  position: absolute;
  right: 0;
  top: 180px;
  width: 68.8vw;
  max-width: 950px;
  height: 500px;
  background-color: #fff;
}
@media only screen and (max-width: 1024px) {
  .home-feature::after {
    top: 190px;
    width: 66.7vw;
  }
}
.home-feature__inner {
  position: relative;
  margin-top: 96px;
  aspect-ratio: 1366/600;
  z-index: 10;
}
@media only screen and (max-width: 767px) {
  .home-feature__inner {
    margin-top: 87px;
  }
}
.home-feature__inner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 87.85%;
  aspect-ratio: 12/6;
  min-height: 300px;
  background: url(../../assets/img/home/home_img05_00.jpg) center/cover no-repeat;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: -1;
}
@media only screen and (max-width: 959px) {
  .home-feature__inner::before {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .home-feature__inner::before {
    background: url(../../assets/img/home/home_img05_sp.jpg) center/cover no-repeat !important;
    aspect-ratio: 75/71;
  }
}
.home-feature__inner.-img01::before {
  background: url(../../assets/img/home/home_img05.jpg) center/cover no-repeat;
}
.home-feature__inner.-img02::before {
  background: url(../../assets/img/home/home_img06.jpg) center/cover no-repeat;
}
.home-feature__inner.-img03::before {
  background: url(../../assets/img/home/home_img07.jpg) center/cover no-repeat;
}
.home-feature__inner.-img04::before {
  background: url(../../assets/img/home/home_img08.jpg) center/cover no-repeat;
}
.home-feature__inner.-img05::before {
  background: url(../../assets/img/home/home_img09.jpg) center/cover no-repeat;
}
.home-feature__inner.-img06::before {
  background: url(../../assets/img/home/home_img10.jpg) center/cover no-repeat;
}
.home-feature-txts {
  display: none;
  color: var(--color-white);
  padding-top: 8.5%;
}
@media only screen and (max-width: 1199px) {
  .home-feature-txts {
    top: 50%;
  }
}
@media only screen and (max-width: 959px) {
  .home-feature-txts {
    top: 0;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    aspect-ratio: 2/1;
  }
}
@media only screen and (max-width: 767px) {
  .home-feature-txts {
    aspect-ratio: 75/71;
    min-height: 300px;
  }
}
.home-feature-txts.is-active {
  display: block;
}
.home-feature-txts.-img00 {
  padding-top: 16%;
}
@media only screen and (max-width: 959px) {
  .home-feature-txts.-img00 {
    top: 0;
  }
}
@media only screen and (max-width: 767px) {
  .home-feature-txts.-img00 {
    top: unset;
  }
}
.home-feature-txts.-img00 .imgttl {
  margin-bottom: 3px;
}
@media only screen and (max-width: 767px) {
  .home-feature-txts.-img00 .imgttl {
    margin-bottom: 25px;
  }
}
.home-feature-txts .txtarea {
  text-shadow: 0 0 36px rgba(0, 0, 0, 0.4);
}
@media only screen and (max-width: 959px) {
  .home-feature-txts .txtarea {
    text-shadow: 0 0 18px rgba(0, 0, 0, 0.2);
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: calc(100% - 40px);
    left: 20px;
  }
}
.home-feature-txts .imgttl {
  font-size: 4rem;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .home-feature-txts .imgttl {
    font-size: 3.2rem;
    margin-bottom: 25px;
  }
}
.home-feature-txts .imgttl .ttltxt {
  line-height: 2;
}
@media only screen and (max-width: 767px) {
  .home-feature-txts .imgttl .ttltxt {
    line-height: 1;
  }
}
.home-feature-txts .imgttl .num {
  font-size: 4rem;
  font-family: var(--cormorant-font);
  display: block;
  margin-bottom: -6px;
}
@media only screen and (max-width: 767px) {
  .home-feature-txts .imgttl .num {
    margin-bottom: 5px;
    line-height: 1;
  }
}
.home-feature-txts .imgttl .num .mark {
  font-size: 2rem;
}
.home-feature-txts .imgtxt {
  line-height: 2;
  width: 47%;
}
@media only screen and (max-width: 959px) {
  .home-feature-txts .imgtxt {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .home-feature-txts .imgtxt {
    font-size: 1.4rem;
    line-height: 1.786;
  }
}
.home-feature__menu {
  position: absolute;
  right: 54px;
  top: calc(50% + 10px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (max-width: 1199px) {
  .home-feature__menu {
    top: 50%;
    right: 20px;
  }
}
@media only screen and (max-width: 959px) {
  .home-feature__menu {
    position: static;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.home-feature__menu .list:nth-last-of-type(2n) .link {
  background-color: var(--color-white4);
}
.home-feature__menu .list .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  width: 44vw;
  max-width: 600px;
  min-width: 375px;
  max-height: 80px;
  font-size: 2rem;
  background-color: var(--color-white);
  border-bottom: 1px solid #eee;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 5px 8% 14px;
}
@media only screen and (max-width: 1199px) {
  .home-feature__menu .list .link {
    line-height: 1;
    padding: 9px 5% 18px;
  }
}
@media only screen and (max-width: 959px) {
  .home-feature__menu .list .link {
    width: 100%;
    max-width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .home-feature__menu .list .link {
    font-size: 1.6rem;
    padding: 10px 5% 19px;
    min-width: unset;
  }
}
@media only screen and (max-width: 374px) {
  .home-feature__menu .list .link {
    padding: 10px 2% 19px;
  }
}
.home-feature__menu .list .num {
  font-family: var(--cormorant-font);
  font-size: 4rem;
  font-weight: 400;
  color: var(--color-brown);
  margin-right: 28px;
}
@media only screen and (max-width: 767px) {
  .home-feature__menu .list .num {
    margin-right: 21px;
  }
}
@media only screen and (max-width: 374px) {
  .home-feature__menu .list .num {
    margin-right: 15px;
  }
}
.home-feature__menu .list .num .mark {
  font-size: 2rem;
}
.home-feature__menu .link::after {
  position: absolute;
  right: 20px;
  top: calc(50% - 7px);
  content: "";
  display: block;
  width: 26px;
  height: 15px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: url(../../assets/img/common/arrow-right.svg) center/cover no-repeat;
}
@media only screen and (max-width: 959px) {
  .home-feature__menu .link::after {
    right: 5%;
  }
}
@media only screen and (max-width: 767px) {
  .home-feature__menu .link::after {
    width: 15px;
    height: 9px;
    top: calc(50% - 4px);
  }
}
@media only screen and (max-width: 374px) {
  .home-feature__menu .link::after {
    right: 2%;
  }
}
.home-feature__menu .link:hover {
  color: var(--color-white);
  background-color: var(--color-brown) !important;
}
.home-feature__menu .link:hover .num {
  color: var(--color-white);
}
.home-feature__menu .link:hover::after {
  background: url(../../assets/img/common/arrow-right__w.svg) center/cover no-repeat;
}
.home-feature .c-btn2 {
  margin: 50px auto;
}
@media only screen and (max-width: 767px) {
  .home-feature .c-btn2 {
    margin: 29px auto;
  }
}

.home-event {
  background-color: var(--color-white4);
  margin-top: 40px;
  padding-bottom: 140px;
}
@media only screen and (max-width: 767px) {
  .home-event {
    margin-top: 11px;
    padding-bottom: 90px;
  }
}
.home-event__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 75px;
}
@media only screen and (max-width: 767px) {
  .home-event__top {
    padding-top: 32px;
  }
}
.home-event__top .c-heading03 {
  margin-top: 3px;
}
@media only screen and (max-width: 1024px) {
  .home-event__top .c-heading03 {
    margin-top: 0;
  }
}
.home-event__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 41px;
}
@media only screen and (max-width: 767px) {
  .home-event__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 37px;
  }
}
.home-event .big-event {
  width: 37.5%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media only screen and (max-width: 767px) {
  .home-event .big-event {
    width: 100%;
    margin-bottom: 43px;
  }
}
.home-event .big-event__item .group {
  margin-top: 20px;
}
@media only screen and (max-width: 767px) {
  .home-event .big-event__item .group {
    margin-top: 14px;
    margin-bottom: 8px;
  }
}
@media only screen and (max-width: 767px) {
  .home-event .big-event__item .ttl {
    line-height: 1.786;
    margin-bottom: 6px;
  }
}
.home-event__list {
  width: 56.25%;
}
@media only screen and (max-width: 767px) {
  .home-event__list {
    width: 100%;
  }
}
.home-event__item + .home-event__item {
  margin-top: 19px;
}
@media only screen and (max-width: 767px) {
  .home-event__item + .home-event__item {
    margin-top: 20px;
  }
}
.home-event__item .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .home-event__item .link {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.home-event__item .c-img {
  width: 140px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-top: 140px;
  margin-right: 30px;
}
@media only screen and (max-width: 767px) {
  .home-event__item .c-img {
    width: 34.2%;
    padding-top: 34.2%;
    margin-right: 15px;
  }
}
.home-event__item .content {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .home-event .c-btn1 {
    display: none;
    margin-left: auto;
    margin-top: 45px;
  }
}
@media only screen and (max-width: 767px) {
  .home-event .c-btn1__link {
    padding: 15px 0;
  }
}

.home-works {
  background-color: var(--color-white4);
  padding-top: 66px;
  padding-bottom: 105px;
  position: relative;
}
.home-works::after {
  content: "";
  display: block;
  width: 92.46%;
  height: 485px;
  background-color: var(--color-white);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
@media only screen and (max-width: 767px) {
  .home-works::after {
    width: 90%;
    height: 283px;
  }
}
@media only screen and (max-width: 767px) {
  .home-works {
    padding-top: 87px;
    padding-bottom: 55px;
  }
}
@media only screen and (max-width: 767px) {
  .home-works .c-heading02 > .sub {
    margin-top: 18px;
  }
}
.home-works__body {
  overflow: hidden;
  position: relative;
  margin-top: 48px;
}
@media only screen and (max-width: 767px) {
  .home-works__body {
    margin-top: 43px;
    padding: 0 20px;
  }
}
.home-works__swipper {
  margin: 0 183px 0 223px !important;
  overflow: unset;
}
@media only screen and (max-width: 1024px) {
  .home-works__swipper {
    margin: auto !important;
  }
}
@media only screen and (max-width: 767px) {
  .home-works__wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.home-works__btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(74, 44, 27, 0.9);
  top: calc(50% - 20px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border: 1px solid var(--color-white);
}
.home-works__btn:hover {
  background-color: var(--color-white);
  border: 1px solid var(--color-brown);
}
.home-works__btn:hover::after {
  background: url(../../assets/img/common/arrow-right__brown.svg) center/cover no-repeat;
}
@media only screen and (max-width: 767px) {
  .home-works__btn {
    display: none;
  }
}
.home-works__btn::after {
  background: url(../../assets/img/common/arrow-right__w.svg) center/cover no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 14px;
  height: 9px;
}
.home-works__btn.swiper-button-prev {
  left: -20px;
}
@media only screen and (max-width: 1024px) {
  .home-works__btn.swiper-button-prev {
    left: 20px;
  }
}
.home-works__btn.swiper-button-prev::after {
  -webkit-transform: translate(-50%, -50%) rotate(-180deg);
          transform: translate(-50%, -50%) rotate(-180deg);
}
.home-works__btn.swiper-button-next {
  right: 20px;
}
@media screen and (min-width: 1920px) {
  .home-works__btn.swiper-button-next {
    right: -20px;
  }
}
.home-works .c-btn2 {
  margin: 35px auto;
}
.home-works .works-card .card-tags .tag {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
}

.works-card .card-link {
  position: relative;
  display: block;
}
.works-card .card-link:hover .card-img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.works-card .card-label {
  position: absolute;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 60px;
  height: 60px;
  right: 20px;
  top: 20px;
  background-color: var(--color-white);
  border-radius: 50%;
}
@media only screen and (max-width: 767px) {
  .works-card .card-label {
    right: 10px;
    top: 10px;
  }
}
.works-card .card-label .icon {
  width: 22px;
  margin-bottom: 4px;
}
.works-card .card-label p {
  font-size: 1rem;
  font-family: var(--cormorant-font);
  color: var(--color-black6);
  text-transform: uppercase;
  line-height: 1;
}
.works-card .card-img {
  padding-top: 66.67%;
  overflow: hidden;
}
.works-card .card-txtarea {
  margin-top: 13px;
}
@media only screen and (max-width: 767px) {
  .works-card .card-txtarea {
    margin-top: 7px;
  }
}
.works-card .card-ttl {
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .works-card .card-ttl {
    font-size: 2rem;
    margin-bottom: 10px;
  }
}
.works-card .card-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 1.4rem;
}
.works-card .card-tags .tag {
  background-color: var(--color-gray2);
  margin-right: 10px;
  margin-bottom: 10px;
  padding: 2px 14px 3px;
}
@media only screen and (max-width: 767px) {
  .works-card .card-tags .tag {
    padding: 1px 11px 2px;
  }
}

.home-2block {
  padding: 100px 0;
}
@media only screen and (max-width: 767px) {
  .home-2block {
    padding: 90px 0;
  }
}
.home-2block__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 60px 1fr;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 60px;
     -moz-column-gap: 60px;
          column-gap: 60px;
}
@media only screen and (max-width: 1024px) {
  .home-2block__inner {
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .home-2block__inner {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    row-gap: 45px;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
  }
}
.home-2block__item {
  background-color: var(--color-white4);
}
.home-2block__link:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.home-2block__link > picture {
  overflow: hidden;
  display: block;
}
.home-2block .txtarea {
  padding: 25px 30px;
}
@media only screen and (max-width: 1024px) {
  .home-2block .txtarea {
    padding: 15px 20px;
  }
}
@media only screen and (max-width: 767px) {
  .home-2block .txtarea {
    padding: 23px 18px;
  }
}
.home-2block .txtarea .ttl {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 4px;
}
@media only screen and (max-width: 767px) {
  .home-2block .txtarea .ttl {
    margin-bottom: 11px;
  }
}
.home-2block .txtarea .sub {
  font-size: 1.4rem;
  margin-bottom: 2px;
}

.home-grvoice {
  position: relative;
}
@media only screen and (max-width: 767px) {
  .home-grvoice {
    padding-bottom: 0;
  }
}
.home-grvoice::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 54%;
  background: url(../../assets/img/home/home_bg03.jpg) center/cover no-repeat;
  z-index: -1;
}
@media only screen and (max-width: 1199px) {
  .home-grvoice::before {
    height: 60%;
  }
}
@media only screen and (max-width: 767px) {
  .home-grvoice::before {
    height: 72.3%;
    background: url(../../assets/img/home/home_bg03_sp.jpg) center/cover no-repeat;
  }
}

.home-reform {
  padding-top: 88px;
  padding-bottom: 70px;
}
@media only screen and (max-width: 767px) {
  .home-reform {
    padding-top: 8px;
    padding-bottom: 58px;
  }
}
.home-reform__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;
}
@media only screen and (max-width: 767px) {
  .home-reform__inner {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .home-reform__area {
    margin-bottom: 23px;
  }
}
.home-reform__area .ttl {
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1;
  color: var(--color-white);
  margin-bottom: 19px;
  margin-top: 1px;
}
@media only screen and (max-width: 959px) {
  .home-reform__area .ttl {
    font-size: 2.6rem;
  }
}
@media only screen and (max-width: 767px) {
  .home-reform__area .ttl {
    margin-bottom: 24px;
  }
}
@media only screen and (max-width: 374px) {
  .home-reform__area .ttl {
    font-size: 2.2rem;
  }
}
.home-reform__area .ttl span {
  background-color: var(--color-brown);
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-bottom: 10px;
  padding: 9px 16px 10px 8px;
}
@media only screen and (max-width: 767px) {
  .home-reform__area .ttl span {
    margin-bottom: 0;
    padding: 7px 13px 8px 5px;
  }
}
.home-reform__area .des {
  font-size: 1.6rem;
  line-height: 2;
}
@media only screen and (max-width: 767px) {
  .home-reform__area .des {
    font-size: 1.4rem;
    line-height: 1.786;
    max-width: 300px;
  }
  .home-reform__area .des br {
    display: none;
  }
}
.home-reform .c-btn1 {
  margin-top: 16px;
  margin-left: auto;
}
@media only screen and (max-width: 767px) {
  .home-reform .c-btn1 {
    display: none;
    margin-top: 8px;
  }
}
@media only screen and (max-width: 767px) {
  .home-reform .c-btn1__link {
    padding: 15px 0;
  }
}
.home-reform__img {
  width: calc(50% + 30px);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media only screen and (max-width: 1024px) {
  .home-reform__img {
    width: 50%;
  }
}
@media only screen and (max-width: 959px) {
  .home-reform__img {
    width: 45%;
  }
}
@media only screen and (max-width: 767px) {
  .home-reform__img {
    width: 100%;
  }
}
.home-reform__imglink {
  overflow: hidden;
  display: block;
}
.home-reform__imglink:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.home-voice {
  padding-top: 70px;
  position: relative;
  z-index: 3;
}
@media only screen and (max-width: 767px) {
  .home-voice {
    padding-top: 59px;
  }
}
.home-voice::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color-white);
  width: 79.1%;
  height: 100%;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .home-voice::before {
    width: 80.1%;
  }
}
.home-voice .c-heading02 {
  letter-spacing: 0;
}
@media only screen and (max-width: 767px) {
  .home-voice .c-heading02 {
    padding: 0 17px;
  }
}
.home-voice__list {
  padding-top: 68px;
  padding-bottom: 73px;
  position: relative;
  z-index: 4;
}
@media only screen and (max-width: 767px) {
  .home-voice__list {
    padding-top: 43px;
    padding-bottom: 5px;
  }
}
.home-voice__list::before {
  content: "";
  position: absolute;
  right: 0;
  top: -2px;
  background: url(../../assets/img/home/home_bg04.jpg) center/cover no-repeat;
  width: 63.2%;
  height: calc(100% + 2px);
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .home-voice__list::before {
    content: unset;
  }
}
@media only screen and (max-width: 767px) {
  .home-voice__list .l-container {
    padding: 0;
  }
}
.home-voice__list .group {
  position: absolute;
  bottom: 8.1%;
  left: 75.4%;
  height: 90px;
  width: 30.87%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 3;
}
@media only screen and (max-width: 1199px) {
  .home-voice__list .group {
    width: 38.27%;
  }
}
@media only screen and (max-width: 1024px) {
  .home-voice__list .group {
    width: 41.87%;
    bottom: 2.1%;
  }
}
@media only screen and (max-width: 959px) {
  .home-voice__list .group {
    width: 47.17%;
    bottom: 2px;
    -webkit-transform: translate(-50%, 0%);
            transform: translate(-50%, 0%);
  }
}
@media only screen and (max-width: 767px) {
  .home-voice__list .group {
    display: none;
  }
}
.home-voice__list .group .swiper-pagination {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  position: relative;
}
.home-voice__list .group .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background-color: #aaa;
  margin: 0 5px;
}
.home-voice__list .group .swiper-pagination-bullet:first-of-type {
  margin-left: 0;
}
.home-voice__list .group .swiper-pagination-bullet-active {
  background-color: #86a303;
  pointer-events: none;
}
.home-voice__list .group-btn {
  margin-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.home-voice__list .group .c-btn2 {
  margin-left: 3px;
  max-width: 227px;
  background-color: transparent;
  border: 1px solid var(--color-white);
  color: var(--color-white);
}
.home-voice__list .group .c-btn2:hover {
  background-color: var(--color-white);
  color: var(--color-text);
}
.home-voice__list .group .c-btn2:hover::before {
  background: url(../../assets/img/common/arrow-right.svg) center/cover no-repeat;
}
.home-voice__list .group .c-btn2::before {
  background: url(../../assets/img/common/arrow-right__w.svg) center/cover no-repeat;
}
.home-voice__list .group .c-btn2__link {
  padding: 12px 20px;
  -webkit-transition: unset;
  transition: unset;
}
.home-voice__list .group .c-navi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.home-voice__list .group .c-navi__btn {
  position: absolute;
  width: 50px;
  height: 50px;
  border: 1px solid var(--color-white);
  border-radius: 50%;
  background-color: var(--color-white);
  margin-top: 0;
  top: 0;
  right: 0;
}
.home-voice__list .group .c-navi__btn.swiper-button-prev {
  right: 60px;
  left: unset;
}
@media only screen and (max-width: 959px) {
  .home-voice__list .group .c-navi__btn.swiper-button-prev {
    right: 55px;
  }
}
.home-voice__list .group .c-navi__btn.swiper-button-prev::after {
  -webkit-transform: translate(-50%, -50%) rotate(-180deg);
          transform: translate(-50%, -50%) rotate(-180deg);
}
.home-voice__list .group .c-navi__btn:hover {
  background-color: var(--color-brown);
}
.home-voice__list .group .c-navi__btn:hover::after {
  background: url(../../assets/img/common/arrow-right__w.svg) center/cover no-repeat;
}
.home-voice__list .group .c-navi__btn::after {
  background: url(../../assets/img/common/arrow-right__brown.svg) center/cover no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 14px;
  height: 9px;
}
@media screen and (min-width: 768px) {
  .home-voice__item .txtarea {
    opacity: 0;
    -webkit-transition: 0.5s opacity ease;
    transition: 0.5s opacity ease;
  }
}
@media screen and (min-width: 768px) {
  .home-voice__item.swiper-slide-active .txtarea {
    opacity: 1;
  }
}
.home-voice__item .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 767px) {
  .home-voice__item .link {
    display: block;
  }
}
.home-voice__item .link:hover .imgarea .c-img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.home-voice__item .link .imgarea {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 51.7%;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .home-voice__item .link .imgarea {
    width: 50%;
  }
}
@media only screen and (max-width: 959px) {
  .home-voice__item .link .imgarea {
    width: 47.7%;
  }
}
@media only screen and (max-width: 767px) {
  .home-voice__item .link .imgarea {
    width: 100%;
  }
}
.home-voice__item .link .imgarea .c-img {
  padding-top: 66.67%;
  overflow: hidden;
}
.home-voice__item .link .label {
  position: absolute;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 60px;
  height: 60px;
  right: 20px;
  top: 20px;
  background-color: var(--color-white);
  border-radius: 50%;
}
@media only screen and (max-width: 767px) {
  .home-voice__item .link .label {
    right: 10px;
    top: 10px;
  }
}
.home-voice__item .link .label .icon {
  width: 22px;
  margin-bottom: 4px;
}
.home-voice__item .link .label p {
  font-size: 1rem;
  font-family: var(--cormorant-font);
  color: var(--color-black6);
  text-transform: uppercase;
  line-height: 1;
}
.home-voice__item .link .txtarea {
  color: var(--color-white);
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 6% 8.7%;
}
@media only screen and (max-width: 1199px) {
  .home-voice__item .link .txtarea {
    padding: 3% 4.7%;
  }
}
@media only screen and (max-width: 959px) {
  .home-voice__item .link .txtarea {
    padding: 0 4.7%;
  }
}
@media only screen and (max-width: 767px) {
  .home-voice__item .link .txtarea {
    padding: 24px 25px 26px 20px;
    background: url(../../assets/img/home/home_bg04_sp.jpg) center/cover no-repeat;
  }
}
.home-voice__item .link .txtarea .ttl {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.67;
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .home-voice__item .link .txtarea .ttl {
    font-size: 2rem;
    line-height: 1.5;
    margin-bottom: 10px;
  }
}
.home-voice__item .link .txtarea .des {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .home-voice__item .link .txtarea .des {
    font-size: 1.4rem;
  }
}
.home-voice .c-btn2.sp-only {
  margin: 0 auto;
  margin-top: 45px;
}

.home-blog__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 26px;
}
@media only screen and (max-width: 767px) {
  .home-blog__top .c-btn1 {
    display: none;
  }
}
.home-blog__top .c-btn1::before {
  top: calc(50% - 5px);
}
.home-blog__top .c-btn1__link {
  padding-top: 0;
}
.home-blog__body {
  padding-top: 21px;
}
@media only screen and (max-width: 767px) {
  .home-blog__body {
    padding-top: 25px;
  }
}
.home-blog__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr 40px 1fr;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  row-gap: 40px;
}
@media only screen and (max-width: 959px) {
  .home-blog__list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 767px) {
  .home-blog__list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    row-gap: 20px;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
  }
}
@media only screen and (max-width: 767px) {
  .home-blog__list .link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  .home-blog__list .link {
    -webkit-box-pack: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
  }
}
.home-blog__list .link:hover .c-img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.home-blog__list .c-img {
  padding-top: 66.67%;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .home-blog__list .c-img {
    width: 34.4%;
    padding-top: 22.9%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-right: 14px;
  }
}
.home-blog__list .txtarea {
  margin-top: 16px;
}
@media only screen and (max-width: 767px) {
  .home-blog__list .txtarea {
    margin-top: 0;
  }
}
.home-blog__list .txtarea .group {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
}
.home-blog__list .txtarea .date {
  font-size: 1.4rem;
  color: var(--color-black6);
}
@media only screen and (max-width: 767px) {
  .home-blog__list .txtarea .date {
    font-size: 1.2rem;
  }
}
.home-blog__list .txtarea .cat {
  font-size: 1.4rem;
  color: var(--color-black6);
  margin-right: 6px;
}
@media only screen and (max-width: 767px) {
  .home-blog__list .txtarea .cat {
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 767px) {
  .home-blog__list .txtarea .cat .space {
    display: none;
  }
}
.home-blog__list .txtarea .new {
  text-transform: uppercase;
  color: var(--color-green);
  font-size: 1.6rem;
  font-family: var(--cormorant-font);
  font-weight: 700;
}
.home-blog__list .ttl {
  font-size: 1.6rem;
  font-weight: 400;
  margin-top: 11px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .home-blog__list .ttl {
    font-size: 1.4rem;
    line-height: 1.428;
    margin-top: 3px;
    padding-right: 10px;
    margin-bottom: 5px;
  }
}
.home-blog .c-btn1.sp-only {
  margin-top: 0;
  margin-left: auto;
}
@media only screen and (max-width: 767px) {
  .home-blog .c-btn1.sp-only {
    max-width: 108px;
  }
}
@media only screen and (max-width: 767px) {
  .home-blog .c-btn1.sp-only .c-btn1__link {
    padding: 14px 0;
  }
}

.home-sns {
  padding-top: 15px;
  margin-bottom: 100px;
}
@media only screen and (max-width: 767px) {
  .home-sns {
    padding-top: 9px;
    margin-bottom: 40px;
  }
}
.home-sns__link:hover {
  opacity: 0.7;
}
.home-sns__inner {
  border: 1px solid var(--color-gray);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 9.1%;
}
@media only screen and (max-width: 959px) {
  .home-sns__inner {
    padding: 0 8.1%;
  }
}
@media only screen and (max-width: 767px) {
  .home-sns__inner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-bottom: 37px;
    max-width: 489px;
    margin: 0 auto;
  }
}
.home-sns__inner .image {
  width: 106px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 767px) {
  .home-sns__inner .image {
    width: 81px;
    margin-bottom: -21px;
  }
}
.home-sns__inner .image img {
  width: 106px;
}
.home-sns__inner .txtarea {
  width: 100%;
  padding: 36px 0 41px 52px;
}
@media only screen and (max-width: 767px) {
  .home-sns__inner .txtarea {
    padding: 0;
    width: calc(100% - 81px);
  }
}
.home-sns__inner .txtarea .ttl {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.667;
  margin-bottom: 17px;
}
@media only screen and (max-width: 767px) {
  .home-sns__inner .txtarea .ttl {
    font-size: 2rem;
    padding: 39px 17px 21px 20px;
    line-height: 1.75;
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  .home-sns__inner .txtarea .txt {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .home-sns__inner .txt {
    font-size: 1.4rem;
    line-height: 1.785;
  }
}
.home-sns .bannerarea {
  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;
  margin-bottom: -15px;
}
.home-sns .bannerarea .bannerlink {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  margin: auto;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.home-sns .bannerarea .bannerlink:hover {
  opacity: 0.8;
}
@media only screen and (max-width: 767px) {
  .home-sns .bannerarea {
    padding: 0 20px;
    row-gap: 12px;
    margin-bottom: -5px;
  }
}
.home-sns .bannerarea .imgarea .img {
  max-width: 500px;
  max-height: 94px;
  margin: 50px auto 7px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media only screen and (max-width: 767px) {
  .home-sns .bannerarea .imgarea .img {
    margin: 30px auto 7px;
  }
}
.home-sns .bannerarea .text {
  font-size: 1.2rem;
  font-family: var(--primary-font);
  color: #999999;
  text-align: center;
  position: relative;
  margin: auto;
}
@media only screen and (max-width: 767px) {
  .home-sns .bannerarea .text {
    font-size: 1rem;
  }
}
.home-sns .bannerarea .text::after {
  position: absolute;
  right: -13px;
  top: 27%;
  content: "";
  width: 10px;
  height: 10px;
  background: url(../../assets/img/common/icon_blank.svg) center/cover no-repeat;
}

.p-event__heading {
  padding-top: 95px;
  padding-bottom: 66px;
}
.p-event__body {
  padding-bottom: 136px;
}
@media only screen and (max-width: 1024px) {
  .p-event__body {
    padding-bottom: 100px;
  }
}
.p-event__list {
  padding-top: 70px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr 40px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 65px 40px;
}
@media only screen and (max-width: 1024px) {
  .p-event__list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 767px) {
  .p-event__list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 45px 0;
  }
}
.p-event__item .content {
  padding-top: 20px;
}
.p-event__item .group {
  margin-bottom: 13px;
}
.p-event__item .ttl {
  margin-bottom: 8px;
}

@media only screen and (max-width: 767px) {
  .c-categories01 {
    position: relative;
    border: 1px solid var(--color-text);
    padding: 11px 15px;
    cursor: pointer;
    z-index: 15;
  }
}
.c-categories01 .c-select {
  display: none;
}
@media only screen and (max-width: 767px) {
  .c-categories01 .c-select {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .c-categories01 .c-select ~ ul {
    position: absolute;
    display: block;
    width: calc(100% + 2px);
    opacity: 0;
    top: calc(100% - 1px);
    left: -1px;
    pointer-events: none;
    -webkit-transition: 0.5s all ease;
    transition: 0.5s all ease;
    border: solid 1px var(--color-text);
    border-top: 0;
    background: var(--color-white);
  }
}
.c-categories01 .c-select ~ ul.is-active {
  opacity: 1;
  pointer-events: all;
}
.c-categories01 .c-select::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 5px 0;
  border-color: #222 transparent transparent;
  right: 15px;
  top: 18px;
}
.c-categories01 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-categories01 li {
  position: relative;
  width: 20%;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .c-categories01 li {
    width: 100%;
    text-align: unset;
  }
}
.c-categories01 li:first-of-type::before {
  content: "";
  height: 100%;
  width: 1px;
  background: var(--color-gray);
  position: absolute;
  left: 0;
  top: 0;
}
@media only screen and (max-width: 767px) {
  .c-categories01 li:first-of-type::before {
    content: unset;
  }
}
.c-categories01 li::after {
  content: "";
  height: 100%;
  width: 1px;
  background: var(--color-gray);
  position: absolute;
  right: 0;
  top: 0;
}
@media only screen and (max-width: 767px) {
  .c-categories01 li::after {
    content: unset;
  }
}
.c-categories01 li:hover {
  background: var(--color-brown);
}
.c-categories01 li:hover span {
  color: var(--color-white);
}
.c-categories01 li.is-active {
  background: var(--color-brown);
  pointer-events: none;
}
.c-categories01 li.is-active span {
  color: var(--color-white);
}
.c-categories01 li > a {
  display: block;
  padding: 13px;
}
.c-categories01 li > a span {
  color: var(--color-black2);
}

.single-event__main {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 60px 300px;
  grid-template-columns: 1fr 300px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0 60px;
  position: relative;
  padding-top: 99px;
  margin-bottom: 134px;
}
@media only screen and (max-width: 767px) {
  .single-event__main {
    margin-bottom: 100px;
  }
}
@media only screen and (max-width: 1024px) {
  .single-event__main {
    -ms-grid-columns: 1fr 30px 250px;
    grid-template-columns: 1fr 250px;
    gap: 0 30px;
  }
}
@media only screen and (max-width: 767px) {
  .single-event__main {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.single-event__head {
  padding-bottom: 48px;
  border-bottom: 1px solid var(--color-gray);
}
.single-event__head .group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 15px;
}
@media only screen and (max-width: 767px) {
  .single-event__head .group {
    margin-bottom: 11px;
  }
}
.single-event__head .group .cat {
  font-size: 1.2rem;
  color: var(--color-white);
  background-color: var(--color-brown);
  padding: 2px 13px;
  min-width: 60px;
  margin-right: 10px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .single-event__head .group .cat {
    font-size: 1.2rem;
    min-width: 60px;
    margin-right: 5px;
  }
}
.single-event__head .group .status {
  font-size: 1.3rem;
  color: var(--color-black6);
  background-color: var(--color-gray);
  padding: 2px 10px;
  min-width: 66px;
  margin-right: 10px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .single-event__head .group .status {
    font-size: 1.2rem;
    min-width: 60px;
  }
}
.single-event__head .group .new {
  color: var(--color-green);
  font-family: var(--cormorant-font);
  text-transform: uppercase;
  font-weight: 700;
}
.single-event__head .ttl {
  line-height: 1.5625;
  font-weight: 400;
  font-size: 3.2rem;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .single-event__head .ttl {
    font-size: 2.6rem;
    line-height: 1.429;
    margin-bottom: 9px;
  }
}
.single-event__head .date {
  color: var(--color-black6);
  font-size: 1.4rem;
}
@media only screen and (max-width: 767px) {
  .single-event__head .date {
    font-size: 1.2rem;
  }
}
.single-event__aside {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-area: 1/2/3/3;
  position: sticky;
  left: 0;
  top: 130px;
}
@media only screen and (max-width: 767px) {
  .single-event__aside {
    grid-area: unset;
    position: static;
    padding-top: 48px;
    padding-bottom: 50px;
  }
}
.single-event__aside .aside__ttl {
  font-weight: 400;
  font-size: 2.6rem;
  text-align: center;
  display: none;
}
@media only screen and (max-width: 767px) {
  .single-event__aside .aside__ttl {
    display: block;
    padding-bottom: 40px;
  }
}
.single-event__aside .event-selectarea {
  background-color: var(--color-white4);
  padding: 10px;
  max-height: 355px;
  overflow: auto;
  margin-bottom: 11px;
}
.single-event__aside .date-cell {
  background-color: var(--color-white);
}
.single-event__aside .date-cell + .date-cell {
  margin-top: 9px;
}
.single-event__aside .datetime {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 13px 15px;
  position: relative;
  cursor: pointer;
}
.single-event__aside .datetime .date {
  font-size: 2rem;
  font-weight: 700;
  color: #433f37;
}
.single-event__aside .datetime .date.-sat {
  color: var(--color-blue);
}
.single-event__aside .datetime .date.-sun {
  color: var(--color-orange);
}
.single-event__aside .datetime .wday {
  font-size: 1.4rem;
  font-weight: 700;
  color: #433f37;
  margin-left: 2px;
}
.single-event__aside .datetime .wday.-sat {
  color: var(--color-blue);
}
.single-event__aside .datetime .wday.-sun {
  color: var(--color-orange);
}
.single-event__aside .datetime .time {
  font-size: 1.2rem;
  font-weight: 700;
  color: #433f37;
  margin-left: 8px;
}
.single-event__aside .datetime::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 45%;
  width: 10px;
  height: 8px;
  background-color: var(--color-text);
  -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
          clip-path: polygon(0 0, 50% 100%, 100% 0);
}
.single-event__aside .datetime.is-active::after {
  -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
          clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
.single-event__aside .datetime.is-past {
  background-color: var(--color-gray);
  cursor: default;
  pointer-events: none;
}
.single-event__aside .datetime.is-past .wday,
.single-event__aside .datetime.is-past .date,
.single-event__aside .datetime.is-past .time {
  color: #999;
}
.single-event__aside .datetime.is-past::after {
  background-color: #999;
}
.single-event__aside .ul {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, 58px);
  gap: 5px;
  padding: 0 15px 10px;
  -webkit-transition: 0.5s all ease-in-out;
  transition: 0.5s all ease-in-out;
}
.single-event__aside .ul .list .link {
  width: 100%;
  height: 100%;
  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;
  background-color: var(--color-white);
  line-height: 1;
  border: 1px solid #ccc;
  font-size: 1.3rem;
  border-radius: 10px;
  padding: 3px 4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.single-event__aside .ul .list .link::after {
  content: "-";
  margin: 0 3px;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}
.single-event__aside .ul .list .link.-full {
  background-color: var(--color-gray);
  pointer-events: none;
  color: #999;
}
.single-event__aside .ul .list .link._link:hover {
  background-color: var(--color-orange);
  color: var(--color-white);
  border-color: var(--color-orange);
}
.single-event__aside .ul .list .link._link.is-active {
  background-color: var(--color-orange);
  color: var(--color-white);
  border-color: var(--color-orange);
  cursor: default;
  pointer-events: none;
}
.single-event__aside .single-event__button {
  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;
  background-color: var(--color-orange);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: var(--color-white);
  font-size: 1.8rem;
  padding: 22px 32px 21px;
  border: 1px solid var(--color-orange);
  position: relative;
}
.single-event__aside .single-event__button:not(.-disabled):hover {
  color: var(--color-orange);
  background-color: var(--color-white);
}
.single-event__aside .single-event__button:not(.-disabled):hover::after {
  background: url(../../assets/img/common/arrow-right__o.svg) center/cover no-repeat;
}
.single-event__aside .single-event__button::after {
  content: "";
  position: absolute;
  background: url(../../assets/img/common/arrow-right__w.svg) center/cover no-repeat;
  width: 14px;
  height: 9px;
  right: 14px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
}
.single-event__aside .single-event__button.-disabled {
  cursor: default;
  pointer-events: none;
  color: #999;
  background-color: var(--color-gray);
  border: 0;
}
.single-event__aside .single-event__button.-disabled::after {
  background: url(../../assets/img/common/arrow-right__black9.svg) center/cover no-repeat;
}
.single-event__content .ev-mainimg {
  margin-top: 50px;
}
.single-event__content .ev-mainimg img {
  -o-object-fit: contain;
     object-fit: contain;
  height: auto;
}

.c-contact {
  background: var(--color-white4);
  text-align: center;
}
.c-contact__inner {
  padding: 10px 0 17px;
}
.c-contact__ttl {
  font-size: 3.2rem;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .c-contact__ttl {
    font-size: 2.6rem;
  }
}
@media only screen and (max-width: 374px) {
  .c-contact__ttl {
    text-align: left;
  }
}
.c-contact__desc {
  font-size: 1.6rem;
  line-height: 1.875;
  padding-top: 14px;
}
@media only screen and (max-width: 767px) {
  .c-contact__desc {
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 374px) {
  .c-contact__desc {
    text-align: left;
  }
}
.c-contact__tel {
  font-size: 4rem;
  font-weight: 700;
  color: var(--color-orange);
  padding-top: 25px;
  padding-bottom: 13px;
  display: inline-block;
  pointer-events: none;
  line-height: 1;
}
@media only screen and (max-width: 1024px) {
  .c-contact__tel {
    pointer-events: all;
  }
}
@media only screen and (max-width: 767px) {
  .c-contact__tel {
    font-size: 3.4rem;
  }
}
.c-contact__tel .tel {
  font-size: 3.2rem;
}
@media only screen and (max-width: 767px) {
  .c-contact__tel .tel {
    font-size: 2.6rem;
  }
}
.c-contact__time {
  font-size: 1.6rem;
}
@media only screen and (max-width: 767px) {
  .c-contact__time {
    font-size: 1.4rem;
  }
}

.evsingle__form {
  padding-top: 81px;
  padding-bottom: 100px;
}

.evsignle__sum .flttl02 {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.5;
  padding: 7px 26px;
  background-color: var(--color-white4);
  position: relative;
  margin-top: 69px;
}
@media only screen and (max-width: 767px) {
  .evsignle__sum .flttl02 {
    font-size: 2rem;
  }
}
.evsignle__sum .flttl02::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  height: 24px;
  width: 6px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: var(--color-green);
  z-index: 2;
}
.evsignle__sum .fldl {
  margin-top: 23px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 142px 1fr;
  grid-template-columns: 142px 1fr;
}
@media only screen and (max-width: 767px) {
  .evsignle__sum .fldl {
    -ms-grid-columns: 70px 1fr;
    grid-template-columns: 70px 1fr;
  }
}
.evsignle__sum .fldl > .dt {
  padding: 25px 10px 25px 20px;
  border-bottom: 1px solid #ccc;
}
@media only screen and (max-width: 767px) {
  .evsignle__sum .fldl > .dt {
    width: 70px;
    padding: 25px 0;
  }
}
.evsignle__sum .fldl > .dd {
  padding: 25px 10px 25px 0;
  border-bottom: 1px solid #ccc;
}
@media only screen and (max-width: 767px) {
  .evsignle__sum .fldl > .dd {
    padding: 25px 20px;
  }
}
.evsignle__sum .flmap {
  margin-top: 41px;
}
.evsignle__sum .flmap iframe {
  width: 100%;
  height: 300px;
}

.ev-other {
  padding-bottom: 102px;
  border-top: 1px solid var(--color-border);
}
.ev-other__ttl {
  font-family: var(--cormorant-font);
  font-size: 4rem;
  font-weight: 400;
  text-align: center;
  padding-top: 34px;
}
@media only screen and (max-width: 767px) {
  .ev-other__ttl {
    font-size: 3.2rem;
  }
}
.ev-other__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr 40px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-top: 33px;
}
@media only screen and (max-width: 1024px) {
  .ev-other__list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 767px) {
  .ev-other__list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.ev-other__item .content {
  padding-top: 20px;
}
.ev-other__item .group {
  margin-bottom: 15px;
}
.ev-other__item .ttl {
  margin-bottom: 11px;
}
.ev-other .c-btn1 {
  margin: 33px auto;
}

.event-confirm .c-form.-confirm .form__desc {
  padding-top: 30px;
}

/*------------------------------------------------------------
Css of home page
------------------------------------------------------------*/
.p-about {
  line-height: 2;
}

.works-headding {
  padding-top: 95px;
}
.works .c-tags1 {
  padding-top: 15px;
  padding-bottom: 70px;
}
.works-content {
  padding-bottom: 136px;
}
@media only screen and (max-width: 767px) {
  .works-content {
    padding-bottom: 100px;
  }
}
.works-content .c-noPost {
  padding-top: 0;
}
.works-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr 40px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 40px;
}
@media only screen and (max-width: 1024px) {
  .works-list {
    -ms-grid-columns: 1fr 40px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .works-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.works-item .card-label {
  right: 10px;
  top: 10px;
}
.works-item .card-ttl {
  margin-bottom: 16px;
}
.works .c-paginate {
  padding-top: 60px;
}
.works .works-card .card-tags .tag {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
}

.singleWorks-headding__inner {
  padding-top: 50px;
}
.singleWorks-card .card-link {
  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;
}
@media only screen and (max-width: 767px) {
  .singleWorks-card .card-link {
    display: block;
  }
}
.singleWorks-card .card-gimg {
  width: 60.344%;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .singleWorks-card .card-gimg {
    width: 100%;
    margin-bottom: 50px;
  }
}
.singleWorks-card .card-gimg .c-img {
  padding-top: 66.67%;
}
.singleWorks-card .card-label {
  position: absolute;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 60px;
  height: 60px;
  right: 20px;
  top: 20px;
  background-color: var(--color-white);
  border-radius: 50%;
}
.singleWorks-card .card-label .icon {
  width: 22px;
  margin-bottom: 4px;
}
.singleWorks-card .card-label p {
  font-size: 1rem;
  font-family: var(--cormorant-font);
  color: var(--color-black6);
  text-transform: uppercase;
  line-height: 1;
}
.singleWorks-card .card-txtarea {
  width: 39.656%;
  padding-left: 4.9%;
  margin-bottom: 2px;
}
@media only screen and (max-width: 767px) {
  .singleWorks-card .card-txtarea {
    width: 100%;
    padding: 0;
  }
}
.singleWorks-card .card-ttl {
  font-size: 3.2rem;
  line-height: 1.563;
  font-weight: 400;
  margin-bottom: 23px;
}
@media only screen and (max-width: 767px) {
  .singleWorks-card .card-ttl {
    font-size: 2.6rem;
  }
}
.singleWorks-card .card-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 1.4rem;
}
.singleWorks-card .card-tags .tag {
  background-color: var(--color-gray2);
  margin-right: 10px;
  margin-bottom: 10px;
  padding: 2px 14px 3px;
}
@media only screen and (max-width: 767px) {
  .singleWorks-card .card-tags .tag {
    padding: 1px 11px 2px;
  }
}
.singleWorks-detail .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 41px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .singleWorks-detail .inner {
    display: block;
    padding-top: 0;
  }
}
.singleWorks-detail .ttl {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--cormorant-font);
  line-height: 1;
  width: 200px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: var(--color-brown);
}
@media only screen and (max-width: 1024px) {
  .singleWorks-detail .ttl {
    width: 100px;
  }
}
@media only screen and (max-width: 767px) {
  .singleWorks-detail .ttl {
    margin-bottom: 40px;
  }
}
.singleWorks-detail .content {
  line-height: 1.875;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  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;
}
.singleWorks-detail .content-area {
  -ms-flex-preferred-size: calc(50% - 30px);
      flex-basis: calc(50% - 30px);
  border-top: 1px solid #ccc;
}
@media only screen and (max-width: 959px) {
  .singleWorks-detail .content-area {
    -ms-flex-preferred-size: calc(50% - 10px);
        flex-basis: calc(50% - 10px);
  }
}
@media only screen and (max-width: 767px) {
  .singleWorks-detail .content-area {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  .singleWorks-detail .content-area + .content-area {
    border-top: 0;
  }
}
.singleWorks-detail .content-area .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 24px 17px 23px;
  border-bottom: 1px solid #ccc;
}
.singleWorks-detail .content-area .item-ttl {
  width: 125px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-right: 10px;
}
@media only screen and (max-width: 1024px) {
  .singleWorks-detail .content-area .item-ttl {
    width: 110px;
  }
}
.singleWorks-detail .content-area .item--txt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.singleWorks-gallery {
  padding-top: 91px;
  padding-bottom: 41px;
}
@media only screen and (max-width: 767px) {
  .singleWorks-gallery {
    padding-top: 50px;
  }
}
.singleWorks-gallery .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .singleWorks-gallery .inner {
    display: block;
    padding-top: 0;
  }
}
.singleWorks-gallery .ttl {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--cormorant-font);
  line-height: 1;
  width: 200px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: var(--color-brown);
}
@media only screen and (max-width: 1024px) {
  .singleWorks-gallery .ttl {
    width: 100px;
  }
}
@media only screen and (max-width: 767px) {
  .singleWorks-gallery .ttl {
    margin-bottom: 40px;
  }
}
.singleWorks-gallery .content {
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.works-other {
  padding-bottom: 109px;
}
@media only screen and (max-width: 767px) {
  .works-other {
    padding-bottom: 75px;
  }
}
.works-other__ttl {
  font-family: var(--cormorant-font);
  font-size: 4rem;
  font-weight: 400;
  text-align: center;
  padding-top: 34px;
}
@media only screen and (max-width: 767px) {
  .works-other__ttl {
    font-size: 3.2rem;
  }
}
.works-other__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr 40px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-top: 33px;
}
@media only screen and (max-width: 1024px) {
  .works-other__list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 767px) {
  .works-other__list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.works-other__item .content {
  padding-top: 20px;
}
.works-other__item .group {
  margin-bottom: 15px;
}
.works-other__item .ttl {
  margin-bottom: 11px;
}
.works-other__item .card-label {
  right: 10px;
  top: 10px;
}
.works-other__item .card-ttl {
  margin-bottom: 16px;
}
.works-other .c-btn1 {
  margin: 26px auto;
}
@media only screen and (max-width: 767px) {
  .works-other .c-btn1 {
    margin-bottom: 0;
  }
}

.feature-heading {
  padding-top: 96px;
}
.feature-heading .label {
  font-size: 2rem;
  color: var(--color-green);
  border: 1px solid var(--color-green);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 25px auto;
  border-radius: 25px;
  padding: 9px 30px;
}
@media only screen and (max-width: 767px) {
  .feature-heading .label {
    font-size: 1.6rem;
  }
}

.feature-content {
  padding-top: 25px;
  padding-bottom: 132px;
  border-bottom: 1px solid var(--color-border);
}
@media only screen and (max-width: 767px) {
  .feature-content {
    padding-bottom: 100px;
  }
}
.feature-content__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 60px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}
@media only screen and (max-width: 1024px) {
  .feature-content__inner {
    gap: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .feature-content__inner {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.feature-content .feature-card .link:hover .imgarea img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.feature-content .feature-card .imgarea {
  overflow: hidden;
}
.feature-content .feature-card .contentarea {
  padding-top: 14px;
}
.feature-content .feature-card .ttl {
  font-size: 2rem;
  color: var(--color-brown);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 24px;
}
@media only screen and (max-width: 767px) {
  .feature-content .feature-card .ttl {
    line-height: 1.4;
    margin-bottom: 14px;
  }
}
.feature-content .feature-card .mark {
  font-size: 2rem;
  font-weight: 400;
  font-family: var(--cormorant-font);
}
.feature-content .feature-card .num {
  font-size: 4rem;
  font-weight: 400;
  font-family: var(--cormorant-font);
}
.feature-content .feature-card .des {
  line-height: 2;
}

.feature-other {
  padding-bottom: 126px;
}
@media only screen and (max-width: 767px) {
  .feature-other {
    padding-bottom: 100px;
  }
}
.feature-other__ttl {
  font-family: var(--cormorant-font);
  font-size: 4rem;
  font-weight: 400;
  text-align: center;
  padding-top: 34px;
}
@media only screen and (max-width: 767px) {
  .feature-other__ttl {
    font-size: 3.2rem;
  }
}
.feature-other__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 160px 20px 160px 20px 160px;
  grid-template-columns: repeat(3, 160px);
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 34px;
}
@media only screen and (max-width: 767px) {
  .feature-other__list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
.feature-other__list .item {
  border: 1px solid var(--color-border);
  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;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: 160px;
  padding: 10px 20px;
  text-align: center;
  -webkit-transition: 0.5s ease-in;
  transition: 0.5s ease-in;
  position: relative;
}
.feature-other__list .item.current {
  pointer-events: none;
  cursor: default;
  position: relative;
}
.feature-other__list .item.current::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background-color: var(--color-green);
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 0);
          clip-path: polygon(0 0, 0 100%, 100% 0);
  position: absolute;
  top: 5px;
  left: 5px;
}
.feature-other__list .item:hover::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background-color: var(--color-green);
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 0);
          clip-path: polygon(0 0, 0 100%, 100% 0);
  position: absolute;
  top: 5px;
  left: 5px;
}

.c-mv {
  background: url(../../assets/img/feature/material/mv1.jpg) center/cover no-repeat;
  height: 100%;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .c-mv {
    background: url(../..//assets/img/feature/material/mv1_sp.jpg) center/cover no-repeat;
  }
}
.c-mv .ttl {
  color: var(--color-white);
  font-size: 3.6rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1;
  padding: 30px 0;
  margin-bottom: 26px;
}
@media only screen and (max-width: 767px) {
  .c-mv .ttl {
    font-size: 3.2rem;
    line-height: 1.2;
  }
}
.c-mv .ttl .num {
  display: block;
  font-family: var(--cormorant-font);
  font-size: 6rem;
  margin-bottom: 18px;
}
@media only screen and (max-width: 767px) {
  .c-mv .ttl .num {
    font-size: 5.6rem;
  }
}
.c-mv .ttl .num .mark {
  font-size: 2.4rem;
}

.feature-material__02 {
  padding-bottom: 129px;
}
@media only screen and (max-width: 767px) {
  .feature-material__02 {
    padding-bottom: 100px;
  }
}
.feature-material__02 .c-heading04 {
  padding-top: 72px;
  margin-bottom: 61px;
}
@media only screen and (max-width: 767px) {
  .feature-material__02 .c-heading04 {
    padding-top: 40px;
  }
}
.feature-material__02 .txt {
  line-height: 2;
}
.feature-material__02 .c-grid01 {
  margin-top: 42px;
}
.feature-material__03 {
  background: var(--color-white4);
  padding-bottom: 131px;
}
@media only screen and (max-width: 767px) {
  .feature-material__03 {
    padding-bottom: 100px;
  }
}
.feature-material__03 .c-heading04 {
  padding-top: 33px;
  margin-bottom: 41px;
}
@media only screen and (max-width: 767px) {
  .feature-material__03 .c-heading04 {
    margin-bottom: 60px;
  }
}
.feature-material__03 .c-heading04 .ttl {
  padding-bottom: 58px;
}
.feature-material__03 .txt {
  line-height: 2;
}
.feature-material__03 .c-grid02 {
  padding-top: 31px;
}
.feature-material__04 {
  padding-top: 104px;
  padding-bottom: 88px;
}
@media only screen and (max-width: 767px) {
  .feature-material__04 {
    padding-top: 100px;
    padding-bottom: 50px;
  }
}
.feature-material__04 .top {
  margin-bottom: 105px;
}
@media only screen and (max-width: 767px) {
  .feature-material__04 .top {
    margin-bottom: 100px;
  }
}
.feature-material__04 .c-heading04 {
  margin-bottom: 61px;
}
.feature-material__04 .c-heading04 .ttl {
  padding-bottom: 59px;
}
.feature-material__04 .txt {
  line-height: 2;
}
.feature-material__05 {
  background: var(--color-white4);
  padding-top: 124px;
  padding-bottom: 167px;
  border-bottom: 1px solid var(--color-border);
}
@media only screen and (max-width: 767px) {
  .feature-material__05 {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.feature-material__05 .txt {
  line-height: 2;
}
.feature-material__05 .c-heading04 {
  margin-bottom: 61px;
}
.feature-material__05 .c-heading04 .ttl {
  padding-bottom: 58px;
}
.feature-material__05 .bottom {
  margin-top: 42px;
}
.feature-material__05 .link {
  display: block;
  width: 410px;
  height: 110px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .feature-material__05 .link {
    width: 280px;
  }
}
.feature-material__05 .link:hover {
  opacity: 0.7;
}
.feature-material__05 .imgarea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--color-white);
  height: 100%;
  margin-bottom: 10px;
}
.feature-material__05 .imgarea img {
  width: 300px;
}
@media only screen and (max-width: 767px) {
  .feature-material__05 .imgarea img {
    width: 200px;
  }
}
.feature-material__05 .btnarea {
  font-size: 1.3rem;
  color: #999;
}
.feature-material__05 .btnarea::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 10px;
  background: url(../../assets/img/common/icon_link.svg) center/cover no-repeat;
}
.feature-material__others {
  padding: 99px 0;
}
@media only screen and (max-width: 767px) {
  .feature-material__others {
    padding-bottom: 70px;
  }
}
.feature-material__others .c-btn1 {
  margin: 36px auto;
}

.c-grid01 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media only screen and (max-width: 767px) {
  .c-grid01 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.c-grid01__img {
  margin-bottom: 12px;
}
.c-grid01__txtarea .txt {
  line-height: 2;
}

.c-grid02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 656px;
  margin: 0 auto;
}
.c-grid02__item {
  text-align: center;
  width: 140px;
  height: 140px;
  background: var(--color-white);
  border-radius: 50%;
  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;
  margin: 10px 12px;
}
.c-grid02__item .round {
  font-size: 2rem;
  color: var(--color-green);
}

.block-1img {
  margin-top: 40px;
}

.c-des {
  line-height: 2;
  margin-top: 40px;
}

.c-layout01 {
  margin-bottom: 50px;
  background-color: var(--color-white);
  padding: 43px 50px;
}
@media only screen and (max-width: 767px) {
  .c-layout01 {
    margin-bottom: 20px;
  }
}
.c-layout01.bg-gray {
  background-color: var(--color-white4);
}
@media only screen and (max-width: 767px) {
  .c-layout01 {
    padding: 30px 20px;
  }
}
.c-layout01 .des {
  line-height: 2;
  margin-top: 40px;
}
.c-layout01 .des._small {
  font-size: 1.4rem;
  line-height: 1.714;
  margin-top: 26px;
}
.c-layout01 .block-1img {
  margin-top: 40px;
}
.c-layout01 .block-2img {
  margin-top: 40px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 60px 1fr;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 60px;
     -moz-column-gap: 60px;
          column-gap: 60px;
}
@media only screen and (max-width: 1024px) {
  .c-layout01 .block-2img {
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .c-layout01 .block-2img {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    row-gap: 40px;
  }
}

.others-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 7px 1fr 7px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 7px;
}
@media only screen and (max-width: 767px) {
  .others-grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 550px) {
  .others-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.others-grid__item .link {
  background-color: var(--color-white4);
  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;
  font-size: 1.6rem;
  height: 64px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: 0.5s all ease-in-out;
  transition: 0.5s all ease-in-out;
}
.others-grid__item .link.is-active {
  background-color: var(--color-brown);
  cursor: default;
  pointer-events: none;
  color: var(--color-white4);
}
.others-grid__item .link:hover {
  background-color: var(--color-brown);
  color: var(--color-white4);
}

.feature-plan .c-mv {
  background: url(../../assets/img/feature/plan/mv.jpg) center/cover no-repeat;
}
@media only screen and (max-width: 767px) {
  .feature-plan .c-mv {
    background: url(../../assets/img/feature/plan/mv_sp.jpg) center/cover no-repeat;
  }
}
.feature-plan__02 {
  padding-bottom: 87px;
}
@media only screen and (max-width: 767px) {
  .feature-plan__02 {
    padding-bottom: 50px;
  }
}
.feature-plan__02 .top {
  padding-bottom: 61px;
}
.feature-plan__02 .c-heading04 {
  padding-top: 72px;
  margin-bottom: 61px;
}
@media only screen and (max-width: 767px) {
  .feature-plan__02 .c-heading04 {
    padding-top: 50px;
  }
}
.feature-plan__02 .c-btn2 {
  margin: 49px auto;
}
.feature-plan__02 .c-layout01 {
  margin-top: 100px;
}
.feature-plan__03 {
  background-color: var(--color-white4);
  padding-bottom: 91px;
}
.feature-plan__03 .top {
  padding-top: 72px;
  padding-bottom: 70px;
}
@media only screen and (max-width: 767px) {
  .feature-plan__03 .top {
    padding-top: 50px;
  }
}
.feature-plan__03 .gr-step {
  margin-top: 46px;
}
.feature-plan__03 .gr-step + .gr-step {
  margin-top: 40px;
}
.feature-plan__03 .official-site {
  max-width: 545px;
  width: 100%;
  margin: 0 auto;
  margin-top: -6px;
  display: block;
}
.feature-plan__03 .official-site:hover {
  opacity: 0.7;
}
.feature-plan__04 .top {
  padding-top: 71px;
}
@media only screen and (max-width: 767px) {
  .feature-plan__04 .top {
    padding-top: 50px;
  }
}
.feature-plan__04 .c-heading04 {
  margin-bottom: 60px;
}
.feature-plan__05 {
  background-color: var(--color-white4);
  padding-bottom: 100px;
}
.feature-plan__05 .top {
  padding-top: 71px;
}
@media only screen and (max-width: 767px) {
  .feature-plan__05 .top {
    padding-top: 50px;
  }
}
.feature-plan__05 .c-heading04 {
  margin-bottom: 62px;
}
.feature-plan__06 .top {
  padding-top: 71px;
}
@media only screen and (max-width: 767px) {
  .feature-plan__06 .top {
    padding-top: 50px;
  }
}
.feature-plan__06 .top .ttl {
  padding-bottom: 61px;
}
.feature-plan__06 .c-heading04 {
  margin-bottom: 70px;
}

.fl-left01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 40px;
}
.fl-left01._reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.fl-left01._align-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.fl-left01._with-reverse .imgarea {
  width: 53.44%;
}
@media only screen and (max-width: 767px) {
  .fl-left01._with-reverse .imgarea {
    width: 100%;
  }
}
.fl-left01._with-reverse .contentarea {
  width: 41.86%;
}
@media only screen and (max-width: 767px) {
  .fl-left01._with-reverse .contentarea {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .fl-left01 {
    display: block;
  }
}
.fl-left01 .imgarea {
  width: 41.86%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 10px;
}
@media only screen and (max-width: 767px) {
  .fl-left01 .imgarea {
    width: 100%;
  }
}
.fl-left01 .contentarea {
  line-height: 2;
  width: 53.44%;
}
@media only screen and (max-width: 767px) {
  .fl-left01 .contentarea {
    width: 100%;
    padding-top: 20px;
  }
}
.fl-left01 .contentarea-ttl {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 14px;
}
.fl-left01 .contentarea .c-btn2 {
  margin-top: 20px;
}

.c-move01 {
  padding-top: 9px;
}
.c-move01.w760 {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.c-move01 .c-img {
  padding-top: 56.316%;
}

.gr-step {
  margin-top: 40px;
}
.gr-step__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.gr-step__label {
  font-size: 1.4rem;
  color: var(--color-green);
  border: 1px solid var(--color-green);
  border-radius: 13px;
  max-width: 82px;
  width: 100%;
  height: 26px;
  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;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 18px;
}
.gr-step__ttl {
  font-size: 2rem;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .gr-step__ttl {
    font-size: 1.8rem;
  }
}
.gr-step__des {
  line-height: 2;
  margin-top: 22px;
}

.c-grid03 {
  display: -ms-grid;
  display: grid;
  margin-top: 50px;
}
.c-grid03.cl-3 {
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media only screen and (max-width: 767px) {
  .c-grid03.cl-3 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.c-grid03 .contentarea {
  margin-top: 10px;
}
.c-grid03 .des {
  line-height: 2;
}

.c-blockLink {
  background-color: var(--color-white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 43px 15px 43px 72px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media only screen and (max-width: 767px) {
  .c-blockLink {
    display: block;
    padding: 44px 18px;
  }
}
.c-blockLink:hover {
  opacity: 0.7;
}
.c-blockLink__left {
  width: 260px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 20px;
}
@media only screen and (max-width: 767px) {
  .c-blockLink__left {
    max-width: 180px;
    width: 100%;
  }
}
.c-blockLink__right {
  width: 62.6%;
}
@media only screen and (max-width: 767px) {
  .c-blockLink__right {
    width: 100%;
    margin-top: 21px;
  }
}
.c-blockLink__des {
  line-height: 2;
  margin-bottom: 18px;
}
@media only screen and (max-width: 767px) {
  .c-blockLink__des {
    font-size: 1.4rem;
    line-height: 2.143;
  }
}
.c-blockLink .txt-btn {
  color: #999;
}
@media only screen and (max-width: 767px) {
  .c-blockLink .txt-btn {
    font-size: 1.4rem;
    margin-top: 17px;
  }
}
.c-blockLink .txt-btn::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 10px;
  background: url(../../assets/img/common/icon_link.svg) center/cover no-repeat;
}

.feature-purpose .c-mv {
  background: url(../../assets/img/feature/purpose/mv.jpg) center/cover no-repeat;
}
@media only screen and (max-width: 767px) {
  .feature-purpose .c-mv {
    background: url(../../assets/img/feature/purpose/mv_sp.jpg) center/cover no-repeat;
  }
}
.feature-purpose__02 {
  padding-bottom: 89px;
}
@media only screen and (max-width: 767px) {
  .feature-purpose__02 {
    padding-bottom: 50px;
  }
}
.feature-purpose__02 .c-heading04 {
  padding-top: 72px;
  margin-bottom: 61px;
}
@media only screen and (max-width: 767px) {
  .feature-purpose__02 .c-heading04 {
    padding-top: 50px;
  }
}
.feature-purpose__02 .c-heading04 .ttl {
  padding-bottom: 59px;
}
.feature-purpose__03 {
  background-color: var(--color-white4);
}
.feature-purpose__03 .c-heading04 {
  padding-top: 73px;
  margin-bottom: 62px;
}
@media only screen and (max-width: 767px) {
  .feature-purpose__03 .c-heading04 {
    padding-top: 50px;
  }
}
.feature-purpose__03 .c-heading04 .ttl {
  padding-bottom: 59px;
}

.feature-living .c-mv {
  background: url(../../assets/img/feature/living/mv.jpg) center/cover no-repeat;
}
@media only screen and (max-width: 767px) {
  .feature-living .c-mv {
    background: url(../../assets/img/feature/living/mv_sp.jpg) center/cover no-repeat;
  }
}
.feature-living__02 {
  background-color: var(--color-white4);
  padding-bottom: 33px;
}
.feature-living__02 .top {
  padding-top: 75px;
}
@media only screen and (max-width: 767px) {
  .feature-living__02 .top {
    padding-top: 50px;
  }
}
.feature-living__02 .c-heading04 {
  margin-bottom: 48px;
}
.feature-living__02 .c-heading04 .ttl {
  padding-bottom: 59px;
}
.feature-living__02 .c-layout01 {
  padding-bottom: 50px;
}
.feature-living__03 {
  padding-top: 0;
  background-color: var(--color-white4);
  padding-bottom: 33px;
}
.feature-living__03 .c-heading04 {
  margin-bottom: 70px;
}
.feature-living__03 .c-heading04 .ttl {
  padding-bottom: 59px;
}
.feature-living__04 {
  padding-top: 0;
  background-color: var(--color-white4);
  padding-bottom: 33px;
}
.feature-living__04 .c-heading04 {
  margin-bottom: 70px;
}
.feature-living__04 .c-heading04 .ttl {
  padding-bottom: 59px;
}
.feature-living__04 .c-layout01 .fl-left01 {
  padding-bottom: 6px;
}
.feature-living__05 {
  padding-top: 0;
  background-color: var(--color-white4);
  padding-bottom: 33px;
}
.feature-living__05 .c-heading04 {
  margin-bottom: 70px;
}
.feature-living__05 .c-heading04 .ttl {
  padding-bottom: 59px;
}
.feature-living__06 {
  padding-top: 0;
  background-color: var(--color-white4);
  padding-bottom: 37px;
}
.feature-living__06 .c-heading04 {
  margin-bottom: 70px;
}
.feature-living__06 .c-heading04 .ttl {
  padding-bottom: 59px;
}
.feature-living__06 .c-layout01 .des._small {
  margin-top: 16px;
}
.feature-living__07 {
  padding-top: 0;
  background-color: var(--color-white4);
  padding-bottom: 90px;
}
@media only screen and (max-width: 767px) {
  .feature-living__07 {
    padding-bottom: 50px;
  }
}
.feature-living__07 .c-heading04 {
  margin-bottom: 70px;
}
.feature-living__07 .c-heading04 .ttl {
  padding-bottom: 59px;
}
.feature-living__07 .c-layout01 {
  padding-bottom: 79px;
}
@media only screen and (max-width: 767px) {
  .feature-living__07 .c-layout01 {
    padding-bottom: 30px;
  }
}
.feature-living__08 .top {
  padding-top: 73px;
}
@media only screen and (max-width: 767px) {
  .feature-living__08 .top {
    padding-top: 50px;
  }
}
.feature-living__08 .c-heading04 {
  margin-bottom: 49px;
}
.feature-living__08 .c-heading04 .ttl {
  padding-bottom: 59px;
}
.feature-living__08 .c-btn2 {
  margin: 0 auto;
  font-size: 1.4rem;
}
.feature-living__08 .c-btn2__link {
  padding: 14px 20px 13px;
}
.feature-living__08 .c-btn2__txt {
  font-weight: 400;
}

.feature-nature .c-mv {
  background: url(../../assets/img/feature/nature/mv.jpg) center/cover no-repeat;
}
@media only screen and (max-width: 767px) {
  .feature-nature .c-mv {
    background: url(../../assets/img/feature/nature/mv_sp.jpg) center/cover no-repeat;
  }
}
.feature-nature__02 {
  background-color: var(--color-white4);
  padding-bottom: 91px;
}
@media only screen and (max-width: 767px) {
  .feature-nature__02 {
    padding-bottom: 50px;
  }
}
.feature-nature__02 .top {
  padding-top: 74px;
}
@media only screen and (max-width: 767px) {
  .feature-nature__02 .top {
    padding-top: 50px;
  }
}
.feature-nature__02 .c-heading04 {
  margin-bottom: 69px;
}
.feature-nature__02 .c-heading04 .ttl {
  padding-bottom: 60px;
}
.feature-nature__03 {
  padding-bottom: 0;
}
.feature-nature__03 .top {
  padding-top: 74px;
}
@media only screen and (max-width: 767px) {
  .feature-nature__03 .top {
    padding-top: 50px;
  }
}
.feature-nature__03 .c-heading04 {
  margin-bottom: 69px;
}
.feature-nature__03 .c-heading04 .ttl {
  padding-bottom: 60px;
}
.feature-nature__03 .fl-left01 .contentarea .c-btn2 {
  margin-top: 22px;
  margin-bottom: 8px;
}

.c-block01 {
  margin-top: 40px;
  background: var(--color-white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 50px 45px 50px 58px;
}
@media only screen and (max-width: 1024px) {
  .c-block01 {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .c-block01 {
    padding: 50px 20px;
  }
}
.c-block01__item {
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .c-block01__item {
    margin-bottom: 80px;
  }
}
.c-block01__item .c-plus {
  position: absolute;
  width: 40px;
  height: 40px;
  top: 50px;
  right: -47.2%;
}
@media only screen and (max-width: 1024px) {
  .c-block01__item .c-plus {
    right: calc(50% - 40px);
    top: calc(100% + 20px);
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.c-block01__item .c-plus::before {
  content: "";
  position: absolute;
  top: 0;
  left: 16px;
  display: block;
  width: 8px;
  height: 40px;
  background-color: var(--color-gray);
}
.c-block01__item .c-plus::after {
  content: "";
  position: absolute;
  top: 16px;
  left: 0;
  display: block;
  width: 40px;
  height: 8px;
  background-color: var(--color-gray);
}
.c-block01__item .c-equal {
  position: absolute;
  width: 40px;
  height: 40px;
  top: 50px;
  right: -47%;
}
@media only screen and (max-width: 1024px) {
  .c-block01__item .c-equal {
    right: calc(50% - 40px);
    top: calc(100% + 30px);
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.c-block01__item .c-equal::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  display: block;
  width: 40px;
  height: 8px;
  background-color: var(--color-gray);
}
.c-block01__item .c-equal::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 0;
  display: block;
  width: 40px;
  height: 8px;
  background-color: var(--color-gray);
}
.c-block01__item:nth-child(1) {
  margin-right: 14.6%;
}
@media only screen and (max-width: 1024px) {
  .c-block01__item:nth-child(1) {
    margin-right: 0;
  }
}
.c-block01__item:nth-child(2) {
  margin-right: 15.7%;
}
@media only screen and (max-width: 1024px) {
  .c-block01__item:nth-child(2) {
    margin-right: 0;
  }
}
@media only screen and (max-width: 1024px) {
  .c-block01__item:nth-child(3) {
    margin-bottom: 0;
  }
}
.c-block01__item .number {
  font-size: 16rem;
  line-height: 1;
  margin-right: 6px;
}
.c-block01__item .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  max-height: 120px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1024px) {
  .c-block01__item .inner {
    margin-bottom: 0;
    max-height: unset;
  }
}
.c-block01__item .content p {
  font-size: 1.4rem;
  line-height: 1.643;
}
.c-block01__item .content .ttl {
  font-size: 3.2rem;
  line-height: 1;
  font-weight: 400;
  margin-bottom: 11px;
  margin-top: 7px;
}
.c-block01__round {
  font-size: 2.4rem;
  color: var(--color-white);
  border-radius: 50%;
  width: 140px;
  height: 140px;
  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;
  margin-bottom: 10px;
}
.c-block01__des {
  font-size: 1.4rem;
  line-height: 1.429;
  text-align: center;
}

.c-block02 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 100px 1fr 100px 1fr;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 100px;
     -moz-column-gap: 100px;
          column-gap: 100px;
  margin-top: 40px;
  margin-bottom: 9px;
}
@media only screen and (max-width: 1024px) {
  .c-block02 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
    row-gap: 100px;
  }
}
.c-block02__item {
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .c-block02__item {
    max-width: 220px;
    margin: 0 auto;
  }
}
.c-block02 .c-plus {
  position: absolute;
  width: 40px;
  height: 40px;
  top: 50%;
  right: -69px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (max-width: 1024px) {
  .c-block02 .c-plus {
    right: calc(50% - 40px);
    top: calc(100% + 20px);
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.c-block02 .c-plus::before {
  content: "";
  position: absolute;
  top: 0;
  left: 16px;
  display: block;
  width: 8px;
  height: 40px;
  background-color: var(--color-gray);
}
.c-block02 .c-plus::after {
  content: "";
  position: absolute;
  top: 16px;
  left: 0;
  display: block;
  width: 40px;
  height: 8px;
  background-color: var(--color-gray);
}

.feature-unique .c-mv {
  background: url(../../assets/img/feature/unique/mv.jpg) center/cover no-repeat;
}
@media only screen and (max-width: 767px) {
  .feature-unique .c-mv {
    background: url(../../assets/img/feature/unique/mv_sp.jpg) center/cover no-repeat;
  }
}
.feature-unique__02 {
  background-color: var(--color-white4);
  padding-bottom: 90px;
}
@media only screen and (max-width: 767px) {
  .feature-unique__02 {
    padding-bottom: 50px;
  }
}
.feature-unique__02 .top {
  padding-top: 73px;
}
@media only screen and (max-width: 767px) {
  .feature-unique__02 .top {
    padding-top: 50px;
  }
}
.feature-unique__02 .c-heading04 {
  margin-bottom: 49px;
}
.feature-unique__02 .c-heading04 .ttl {
  padding-bottom: 59px;
}
.feature-unique__03 .top {
  padding-top: 73px;
}
@media only screen and (max-width: 767px) {
  .feature-unique__03 .top {
    padding-top: 50px;
  }
}
.feature-unique__03 .c-heading04 {
  margin-bottom: 63px;
}
.feature-unique__03 .c-heading04 .ttl {
  padding-bottom: 59px;
}

.gr-gallery {
  margin-bottom: 94px;
}
.gr-gallery:last-child {
  margin-bottom: 0;
}
.gr-gallery__ttl {
  font-size: 2.4rem;
  font-weight: 400;
  text-align: center;
  padding-bottom: 3px;
}
@media only screen and (max-width: 767px) {
  .gr-gallery__ttl {
    font-size: 2rem;
  }
}
.gr-gallery .grid-gallery {
  row-gap: 10px;
}

.service .feature-heading {
  padding-bottom: 0;
}
.service__02 {
  background-color: var(--color-white4);
  padding-bottom: 90px;
}
@media only screen and (max-width: 767px) {
  .service__02 {
    padding-bottom: 50px;
  }
}
.service__02 .top {
  padding-top: 72px;
}
@media only screen and (max-width: 767px) {
  .service__02 .top {
    padding-top: 50px;
  }
}
.service__02 .c-heading04 {
  margin-bottom: 70px;
}
.service__02 .c-heading04 .ttl {
  padding-bottom: 58px;
}
.service__03 {
  padding-bottom: 0;
}
.service__03 .top {
  padding-top: 72px;
}
@media only screen and (max-width: 767px) {
  .service__03 .top {
    padding-top: 50px;
  }
}
.service__03 .c-heading04 {
  margin-bottom: 70px;
}
.service__03 .c-heading04 .ttl {
  padding-bottom: 58px;
}
.service .fl-left01 .contentarea {
  width: 60.5%;
}
@media only screen and (max-width: 767px) {
  .service .fl-left01 .contentarea {
    width: 100%;
  }
}
.service .fl-left01 .imgarea {
  width: 34.86%;
}
@media only screen and (max-width: 767px) {
  .service .fl-left01 .imgarea {
    width: 100%;
  }
}
.service .c-layout01 .des._small {
  margin-top: 5px;
}

.link-blank {
  display: block;
  margin-top: 15px;
}
.link-blank:hover {
  opacity: 0.7;
}
.link-blank .txt-btn {
  color: #999;
}
.link-blank .txt-btn::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 10px;
  background: url(../../assets/img/common/icon_link.svg) center/cover no-repeat;
}

.flow .feature-heading {
  padding-bottom: 0;
}
.flow .feature-heading .label {
  margin-bottom: 0;
}
.flow-top {
  padding-bottom: 90px;
}
@media only screen and (max-width: 767px) {
  .flow-top {
    padding-bottom: 50px;
  }
}

.flow-container .flowcover {
  position: relative;
  padding-left: 160px;
  padding-top: 0;
  padding-bottom: 50px;
  background: url(../../assets/img/common/icon-dot.svg) 60px 0 repeat-y;
  background-size: 3px 8px;
}
@media only screen and (max-width: 767px) {
  .flow-container .flowcover {
    padding-left: 0;
    padding-top: 200px;
    margin-top: 0;
    padding-bottom: 0;
    background-position: center;
  }
}
.flow-container .flowcover:last-child {
  padding-bottom: 0;
}
.flow-container .c-layout02 {
  position: relative;
}
.flow-container .flttl {
  position: absolute;
  left: -160px;
  top: calc(50% - 60px);
  width: 120px;
  height: 120px;
  z-index: 5;
  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;
  font-size: 2rem;
  font-weight: 400;
  color: var(--color-white);
  background-color: var(--color-brown);
  border-radius: 50%;
  border: 1px solid var(--color-brown);
  letter-spacing: 0.1em;
}
.flow-container .flttl.has-label {
  background-color: var(--color-white);
  color: var(--color-brown);
}
@media only screen and (max-width: 767px) {
  .flow-container .flttl {
    font-size: 1.8rem;
    left: calc(50% - 60px);
    top: -160px;
  }
}

.c-layout02 {
  position: relative;
  padding: 40px;
  background-color: var(--color-white4);
}
@media only screen and (max-width: 767px) {
  .c-layout02 {
    padding: 20px;
  }
}
.c-layout02::before {
  content: "";
  position: absolute;
  left: -100px;
  top: 50%;
  width: 100px;
  height: 1px;
  z-index: 3;
  background-color: var(--color-border);
}
@media only screen and (max-width: 767px) {
  .c-layout02::before {
    display: none;
  }
}
.c-layout02__secflow.has-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 959px) {
  .c-layout02__secflow.has-img {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.c-layout02__secflow.has-img .c-layout02__secflowLeft {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.c-layout02__secflow.has-img .c-layout02__secflowRight {
  width: 41.667%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 30px;
}
@media only screen and (max-width: 959px) {
  .c-layout02__secflow.has-img .c-layout02__secflowRight {
    margin: auto;
    margin-bottom: 30px;
    width: 100%;
    max-width: 450px;
  }
}
.c-layout02__secflow.has-img .c-layout02__secflowRight > figure {
  margin-top: 10px;
}
@media only screen and (max-width: 959px) {
  .c-layout02__secflow.has-img .c-layout02__secflowRight > figure {
    margin-top: 0;
  }
}
.c-layout02__ttl {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.667;
}
@media only screen and (max-width: 767px) {
  .c-layout02__ttl {
    font-size: 2rem;
  }
}
.c-layout02__subttl {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 66px;
  height: 24px;
  border: 1px solid var(--color-green);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--color-green);
  background-color: var(--color-white);
  border-radius: 12px;
  margin-left: 9px;
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}
@media only screen and (max-width: 767px) {
  .c-layout02__subttl {
    font-size: 1.1rem;
  }
}
.c-layout02__des {
  font-size: 1.6rem;
  line-height: 2;
  margin-top: 12px;
}
.c-layout02__btnarea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 21px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .c-layout02__btnarea {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.c-layout02__btnarea._center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 767px) {
  .c-layout02__btnarea._center {
    -webkit-box-pack: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
  }
}
.c-layout02__btnarea .c-btn2 {
  margin-right: 20px;
}
@media only screen and (max-width: 767px) {
  .c-layout02__btnarea .c-btn2 {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.c-layout02__btnarea .c-btn2:last-child {
  margin-right: 0;
}
@media only screen and (max-width: 767px) {
  .c-layout02__btnarea .c-btn2:last-child {
    margin-bottom: 0;
  }
}
.c-layout02__btnarea .c-btn2__link {
  font-size: 1.4rem;
  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;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 48px;
}
.c-layout02 .adjuster {
  position: absolute;
  left: -102px;
  bottom: 0;
  width: 10px;
  z-index: 3;
  height: 50%;
  background-color: var(--color-white);
}
@media only screen and (max-width: 767px) {
  .c-layout02 .adjuster {
    display: none;
  }
}
.c-layout02 .adjuster._top {
  bottom: unset;
  top: 0;
}
@media only screen and (max-width: 767px) {
  .c-layout02 .adjuster._top {
    display: block;
    left: calc(50% - 5px);
    height: 40px;
    top: -200px;
  }
}

.single-blog__mainimg img {
  -o-object-fit: contain;
     object-fit: contain;
}

.blog-post {
  padding-top: 3px;
}
@media only screen and (max-width: 1024px) {
  .blog-post {
    padding-bottom: 100px;
  }
}
.blog-post__container {
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
}
.blog-post__inner {
  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 only screen and (max-width: 1024px) {
  .blog-post__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.blog-post__content {
  max-width: 800px;
  width: 100%;
}
@media only screen and (max-width: 1199px) {
  .blog-post__content {
    padding-right: 20px;
    max-width: 700px;
  }
}
@media only screen and (max-width: 1024px) {
  .blog-post__content {
    padding: 0;
    max-width: 100%;
  }
}
.blog-post__count {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding-bottom: 17px;
  border-bottom: 1px solid var(--color-gray);
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .blog-post__count {
    display: block;
    overflow: hidden;
  }
}
.blog-post__title {
  font-size: 2.8rem;
  color: var(--color-text);
  font-weight: 400;
  line-height: 1.25;
  padding-right: 20px;
}
.blog-post__title span {
  font-size: 2rem;
  font-weight: 400;
  padding-left: 7px;
  color: var(--color-text);
  display: inline-block;
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}
@media only screen and (max-width: 767px) {
  .blog-post__title {
    width: 100%;
    padding-right: 0;
    font-size: 2.4rem;
  }
}
.blog-post .news {
  font-family: var(--cormorant-font);
  font-size: 1.4rem;
  font-weight: 700;
  margin-left: 10px;
  color: var(--color-red);
}
.blog-post__txt {
  width: 120px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
  font-size: 1.3rem;
  color: var(--color-text);
  border: 1px solid var(--color-text);
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
}
.blog-post__txt:hover {
  background: var(--color-brown);
  color: var(--color-white);
}
@media only screen and (max-width: 767px) {
  .blog-post__txt {
    float: right;
    margin-top: 20px;
  }
}
.blog-post__item {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #ccc;
}
@media only screen and (max-width: 767px) {
  .blog-post__item {
    margin-top: 20px;
    padding-top: 0;
    padding-bottom: 40px;
  }
}
.blog-post__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 767px) {
  .blog-post__link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: unset;
        -ms-flex-align: unset;
            align-items: unset;
  }
}
.blog-post__link:hover .blog-post__img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.blog-post__img {
  width: 240px;
  overflow: hidden;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media only screen and (max-width: 767px) {
  .blog-post__img {
    width: 100%;
  }
}
.blog-post__img.c-img {
  padding-top: 20%;
}
@media only screen and (max-width: 767px) {
  .blog-post__img.c-img {
    padding-top: 66.67%;
  }
}
.blog-post__ttl {
  margin: 11px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.blog-post__ttl span {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .blog-post__ttl span {
    font-size: 2rem;
  }
}
.blog-post__info {
  padding: 0 0 0 30px;
}
@media only screen and (max-width: 767px) {
  .blog-post__info {
    padding: 0;
    margin-top: 10px;
  }
}
.blog-post__date {
  font-size: 1.4rem;
  color: #666;
}
.blog-post__cate {
  font-size: 1.4rem;
  color: #666;
  margin-left: 10px;
  position: relative;
  top: 0;
}
.blog-post__detail {
  font-size: 1.6rem;
  line-height: 2;
  margin: 10px 0 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
}
.blog-post .c-new {
  font-size: 1.6rem;
  font-family: var(--cormorant-font);
  color: var(--color-green);
  margin-left: 10px;
  font-weight: 700;
}

.blog-detail {
  margin: 44px 0 0;
}
.blog-detail__box {
  padding-bottom: 39px;
  border-bottom: 1px solid var(--color-gray);
}
.blog-detail__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 0 60px;
}
@media only screen and (max-width: 1024px) {
  .blog-detail__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0 0 50px;
  }
}
.blog-detail .c-new {
  font-family: var(--cormorant-font);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-green);
  margin-left: 10px;
}
.blog-detail__date {
  line-height: 1;
}
.blog-detail .blog-post__cate {
  margin-left: 0;
}
.blog-detail__ttl {
  font-size: 3.2rem;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.5;
  margin: 15px 0 0;
}
@media only screen and (max-width: 767px) {
  .blog-detail__ttl {
    font-size: 2.6rem;
  }
}
.blog-detail__content {
  max-width: 800px;
  width: 100%;
}
@media only screen and (max-width: 1199px) {
  .blog-detail__content {
    padding-right: 20px;
    max-width: 700px;
  }
}
@media only screen and (max-width: 1024px) {
  .blog-detail__content {
    max-width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .blog-detail__content {
    padding: 0;
  }
}
.blog-detail__single {
  margin: 44px 0 0;
}
.blog-detail__single .c-img {
  padding-top: 66.6%;
  margin-bottom: 85px;
}
@media only screen and (max-width: 767px) {
  .blog-detail__single .c-img {
    margin-bottom: 40px;
  }
}

.blog-post .c-paginate {
  padding-top: 30px;
  margin-bottom: 86px;
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .blog-post .c-paginate {
    padding-top: 50px;
    margin-bottom: 40px;
  }
}

.p-single-blog .blog-detail {
  margin-top: 44px;
}
.p-single-blog .c-sidebar {
  margin-top: 5px;
}
.p-single-blog .c-btn1 {
  margin: 0 auto;
  margin-bottom: 85px;
}
@media only screen and (max-width: 1024px) {
  .p-single-blog .blog-detail__content {
    margin-bottom: 100px;
  }
}

.p-blog .c-noPost {
  padding-top: 60px;
  padding-bottom: 40px;
}

.p-voice__body {
  padding-top: 0;
}

.c-voice__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr 40px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 65px 40px;
}
@media only screen and (max-width: 1024px) {
  .c-voice__list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 767px) {
  .c-voice__list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 45px 0;
  }
}
.c-voice__list .link:hover .c-img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.c-voice__list .imgarea {
  position: relative;
}
.c-voice__list .imgarea .c-img {
  padding-top: 66.67%;
  overflow: hidden;
}
.c-voice__list .imgarea .label {
  position: absolute;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 60px;
  height: 60px;
  right: 10px;
  top: 10px;
  background-color: var(--color-white);
  border-radius: 50%;
}
@media only screen and (max-width: 767px) {
  .c-voice__list .imgarea .label {
    right: 10px;
    top: 10px;
  }
}
.c-voice__list .imgarea .label .icon {
  width: 22px;
  margin-bottom: 4px;
}
.c-voice__list .imgarea .label p {
  font-size: 1rem;
  font-family: var(--cormorant-font);
  color: var(--color-black6);
  text-transform: uppercase;
  line-height: 1;
}
.c-voice__list .content .ttl {
  font-size: 1.6rem;
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  margin-top: 15px;
}
.c-voice__list .content .group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-voice__list .content .group .cat {
  font-size: 1.4rem;
  margin-right: 10px;
  margin-top: 13px;
}

.c-contact01 {
  padding-top: 89px;
  padding-bottom: 136px;
}
@media only screen and (max-width: 767px) {
  .c-contact01 {
    padding-bottom: 100px;
    padding-top: 50px;
  }
}
.c-contact01__inner {
  background: var(--color-white4);
  padding: 42px 35px 42px 40px;
}
@media only screen and (max-width: 767px) {
  .c-contact01__inner {
    padding: 20px;
  }
}
.c-contact01__ttl {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 400;
  margin-bottom: 17px;
}
@media only screen and (max-width: 767px) {
  .c-contact01__ttl {
    font-size: 2rem;
  }
}
.c-contact01__des {
  line-height: 1.875;
}
.c-contact01__des--spec {
  font-weight: 700;
  color: var(--color-green);
}
.c-contact01 .c-btn2 {
  margin: 42px auto 10px;
}

.single-voice__mainimg {
  padding-top: 100px;
}
.single-voice__mainimg img {
  -o-object-fit: contain;
     object-fit: contain;
  height: auto;
}
.single-voice__content .ttl {
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1.5625;
  margin-top: 36px;
}
@media only screen and (max-width: 767px) {
  .single-voice__content .ttl {
    font-size: 2.6rem;
  }
}
.single-voice__content .group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.single-voice__content .group .cat {
  font-size: 1.4rem;
  margin-top: 17px;
}
.single-voice .c-free-layout {
  position: relative;
  margin-top: 40px;
}

.voice-other {
  padding-bottom: 109px;
}
@media only screen and (max-width: 767px) {
  .voice-other {
    padding-bottom: 83px;
  }
}
.voice-other__ttl {
  font-family: var(--cormorant-font);
  font-size: 4rem;
  font-weight: 400;
  text-align: center;
  padding-top: 34px;
}
@media only screen and (max-width: 767px) {
  .voice-other__ttl {
    font-size: 3.2rem;
  }
}
.voice-other__list {
  padding-top: 33px;
}
.voice-other .c-btn1 {
  margin: 31px auto 26px;
}
@media only screen and (max-width: 767px) {
  .voice-other .c-btn1 {
    margin-bottom: 0;
  }
}

.p-reform__heading {
  padding-top: 95px;
  padding-bottom: 67px;
}
.p-reform__heading .c-heading01 {
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .p-reform__heading .c-heading01 {
    line-height: 1.5;
  }
}
.p-reform .grid-check {
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}
.p-reform .grid-check__item {
  padding: 11px 12px 11px 42px;
}
@media only screen and (max-width: 767px) {
  .p-reform .grid-check__item {
    font-size: 1.8rem;
  }
}
.p-reform .grid-check__item::before {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (max-width: 1024px) {
  .p-reform .grid-check__item::before {
    top: 13px;
    -webkit-transform: unset;
            transform: unset;
  }
}

.c-anchor {
  padding-bottom: 100px;
}
.c-anchor__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr 40px 1fr;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}
@media only screen and (max-width: 767px) {
  .c-anchor__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    row-gap: 40px;
  }
}
.c-anchor__item {
  border: 1px solid var(--color-border);
  position: relative;
}
.c-anchor__item::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 1px solid #aaa;
  border-bottom: 1px solid #aaa;
  -webkit-transform: rotateZ(45deg);
          transform: rotateZ(45deg);
  transform: rotateZ(45deg);
  position: absolute;
  bottom: 18px;
  left: calc(50% - 5px);
}
.c-anchor__link:hover .c-img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.c-anchor__imgarea .c-img {
  padding-top: 43.2%;
  overflow: hidden;
}
.c-anchor__content {
  text-align: center;
  padding: 24px 24px 37px;
}
.c-anchor__ttl {
  font-size: 2rem;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .c-anchor__ttl {
    font-size: 1.8rem;
  }
}
.c-anchor__subttl {
  font-size: 1.4rem;
  color: var(--color-green);
  font-weight: 700;
  font-family: var(--cormorant-font);
  letter-spacing: 0.1em;
  padding-top: 3px;
}

.c-mv01 {
  background: url(../../assets/img/reform/reform_bg01.jpg) center/cover no-repeat;
  height: 300px;
  color: var(--color-white);
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 767px) {
  .c-mv01 {
    height: 160px;
  }
}
.c-mv01__ttl {
  font-size: 3.2rem;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .c-mv01__ttl {
    font-size: 2.6rem;
  }
}
.c-mv01__subttl {
  font-weight: 700;
  letter-spacing: 0.1em;
  font-family: var(--cormorant-font);
  font-size: 1.6rem;
  margin-top: 15px;
}
.c-mv01#renovation {
  background: url(../../assets/img/reform/reform_bg02.jpg) center/cover no-repeat;
}
.c-mv01#regarden {
  background: url(../../assets/img/reform/reform_bg03.jpg) center/cover no-repeat;
}

.c-ttl {
  font-size: 3.2rem;
  font-weight: 400;
  text-align: center;
  line-height: 1.875;
}
@media only screen and (max-width: 767px) {
  .c-ttl {
    font-size: 2.6rem;
  }
}
.c-ttl01 {
  font-size: 2rem;
  font-weight: 400;
  color: var(--color-green);
  margin-bottom: 10px;
  margin-top: 10px;
}

.p-reform__02 {
  padding-bottom: 100px;
}
.p-reform__02 .c-ttl {
  padding-top: 35px;
}
.p-reform__02 .c-des {
  padding-top: 7px;
}
.p-reform__02 .grid-check {
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}
.p-reform__02 .grid-check__item {
  padding: 11px 12px 11px 42px;
}
.p-reform__02 .grid-check__item::before {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.p-reform__03 {
  background-color: var(--color-white4);
  padding-bottom: 90px;
}
@media only screen and (max-width: 767px) {
  .p-reform__03 {
    padding-bottom: 50px;
  }
}
.p-reform__03 .top {
  padding-top: 75px;
  margin-bottom: 70px;
}
@media only screen and (max-width: 767px) {
  .p-reform__03 .top {
    padding-top: 50px;
  }
}
.p-reform__03 .c-heading04 .ttl {
  padding-bottom: 58px;
}

.p-reform__04 {
  padding-top: 83px;
  padding-bottom: 100px;
}
.p-reform__04 .c-des {
  padding-top: 7px;
}

.p-reform__05 {
  background-color: var(--color-white4);
  padding-bottom: 90px;
}
@media only screen and (max-width: 767px) {
  .p-reform__05 {
    padding-bottom: 50px;
  }
}
.p-reform__05 .top {
  padding-top: 75px;
  margin-bottom: 70px;
}
@media only screen and (max-width: 767px) {
  .p-reform__05 .top {
    padding-top: 50px;
  }
}
.p-reform__05 .c-heading04 .ttl {
  padding-bottom: 58px;
}
.p-reform__05 .contentarea .link {
  color: #999;
  margin-top: 12px;
  display: block;
}
@media only screen and (max-width: 767px) {
  .p-reform__05 .contentarea .link {
    margin-top: 60px;
    line-height: 1.4;
  }
}
.p-reform__05 .contentarea .link:hover {
  opacity: 0.7;
}
.p-reform__05 .contentarea .link::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 10px;
  background: url(../../assets/img/common/icon_link.svg) center/cover no-repeat;
}

.p-reform__06 {
  padding-bottom: 100px;
}
.p-reform__06 .c-ttl {
  padding-top: 35px;
}
.p-reform__06 .c-des {
  padding-top: 7px;
}
.p-reform__06 .grid-check {
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}
.p-reform__06 .grid-check__item {
  padding: 11px 12px 11px 42px;
}
.p-reform__06 .grid-check__item::before {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (max-width: 1024px) {
  .p-reform__06 .grid-check__item::before {
    top: 15px;
    -webkit-transform: unset;
            transform: unset;
  }
}

.p-reform__07 {
  padding-top: 123px;
  padding-bottom: 126px;
}
@media only screen and (max-width: 767px) {
  .p-reform__07 {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.p-reform__07 .c-des {
  margin-top: 28px;
}
.p-reform__07 .c-des._center {
  text-align: center;
}
.p-reform__07 .c-layout02__btnarea {
  margin-top: 41px;
}

.p-company__heading {
  padding-top: 95px;
}

.company-main {
  padding-top: 57px;
}
.company-main__inner {
  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 only screen and (max-width: 959px) {
  .company-main__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.company-main__left {
  width: 65%;
  padding-right: 20px;
}
@media only screen and (max-width: 959px) {
  .company-main__left {
    width: 100%;
    padding-right: 0;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.company-main__left .c-des {
  margin-top: 0;
}
.company-main__right {
  width: 300px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 10px;
}
@media only screen and (max-width: 959px) {
  .company-main__right {
    width: 100%;
    max-width: 300px;
    margin: 50px auto 0;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
.company-main__bottom .c-des {
  margin-top: 17px;
}
@media only screen and (max-width: 959px) {
  .company-main__bottom {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.company-card__position {
  padding-top: 14px;
}
.company-card__name {
  margin-top: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.company-card__name--jp {
  font-size: 2.4rem;
  margin-right: 20px;
}
@media only screen and (max-width: 767px) {
  .company-card__name--jp {
    font-size: 2rem;
  }
}
.company-card__name--en {
  font-size: 1.6rem;
  color: var(--color-green);
  font-family: var(--cormorant-font);
}

.company-profile {
  padding-top: 70px;
}
@media only screen and (max-width: 767px) {
  .company-profile {
    padding-top: 50px;
  }
}
.company-profile .outline {
  font-size: 1.6rem;
  line-height: 1.875;
  width: 100%;
  margin-top: 29px;
  border-collapse: collapse;
  border-spacing: 0;
}
.company-profile .outline tr {
  border-bottom: 1px solid var(--color-border);
}
.company-profile .outline .key {
  width: 20%;
  padding: 34px 28px 33px;
  vertical-align: top;
}
@media only screen and (max-width: 767px) {
  .company-profile .outline .key {
    padding: 18px 10px;
    width: 110px;
  }
}
.company-profile .outline .value {
  padding: 34px 33px 33px 0;
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  .company-profile .outline .value {
    padding: 18px 0;
  }
}

.company-map {
  padding-top: 77px;
}
@media only screen and (max-width: 767px) {
  .company-map {
    padding-top: 50px;
  }
}
.company-map .mapblock {
  margin-top: 70px;
}
.company-map .mapblock iframe {
  width: 100%;
  height: 400px;
}
.company-map .address {
  margin-top: 17px;
}

.company-intro {
  padding-top: 72px;
  padding-bottom: 131px;
}
@media only screen and (max-width: 767px) {
  .company-intro {
    padding-bottom: 100px;
    padding-top: 50px;
  }
}
.company-intro__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 70px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media only screen and (max-width: 767px) {
  .company-intro__item {
    display: block;
  }
}
.company-intro__item .company-card {
  width: 260px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 40px;
}
@media only screen and (max-width: 767px) {
  .company-intro__item .company-card {
    margin: 0 auto;
    margin-bottom: 50px;
    width: 100%;
  }
}
.company-intro__item .company-card__name--jp {
  margin-right: 15px;
}
.company-intro__item .outline {
  font-size: 1.6rem;
  line-height: 1.875;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
.company-intro__item .outline tr {
  border-bottom: 1px solid var(--color-border);
}
.company-intro__item .outline tr:first-child {
  border-top: 1px solid var(--color-border);
}
.company-intro__item .outline .key {
  width: 20%;
  padding: 22px 20px 21px;
}
@media only screen and (max-width: 959px) {
  .company-intro__item .outline .key {
    padding: 18px 10px;
    width: 110px;
  }
}
@media only screen and (max-width: 767px) {
  .company-intro__item .outline .key {
    padding: 18px 10px;
    width: 110px;
  }
}
.company-intro__item .outline .value {
  padding: 22px 10px 21px;
  line-height: 1.875;
}
@media only screen and (max-width: 767px) {
  .company-intro__item .outline .value {
    padding: 18px 0;
  }
}

.p-contact__heading {
  padding-top: 95px;
}
.p-contact__body {
  padding-top: 18px;
  padding-bottom: 36px;
}
@media only screen and (max-width: 767px) {
  .p-contact__body {
    padding-bottom: 0;
  }
}
.p-contact__body .c-des {
  margin-bottom: 13px;
}
.p-contact__body .c-des__bold {
  font-weight: 700;
}
.p-contact__body .c-des__bold a {
  text-decoration: underline;
  color: var(--color-green);
  text-underline-offset: 9px;
}
.p-contact__body .c-des__bold a:hover {
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  .p-contact .c-form .form-submit p {
    line-height: 2;
  }
}
.p-contact .c-form .post-code .input.-region::after {
  top: calc(50% - 1px);
}
@media only screen and (max-width: 767px) {
  .p-contact .c-form ._valign-top > * {
    padding-top: 0;
  }
}
.p-contact .c-form .namearea {
  width: 26.95%;
  padding-right: 3%;
}
@media only screen and (max-width: 1024px) {
  .p-contact .c-form .namearea {
    width: 35%;
  }
}
.p-contact .c-form .fs-15 {
  font-size: 1.5rem;
}
.p-contact .c-form .form-content {
  margin-top: 12px;
}
.p-contact .c-form .child {
  width: 45.7%;
}
@media only screen and (max-width: 767px) {
  .p-contact .c-form .child {
    width: 100%;
  }
}
.p-contact .c-form .postinput .label {
  font-size: 1.6rem;
}
.p-contact .c-form .planned {
  padding: 25px 30px 30px;
}
.p-contact .c-form .planned .ckbul {
  padding: 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 170px 25px 80px 25px 80px;
  grid-template-columns: 170px 80px 80px;
  row-gap: 15px;
  -webkit-column-gap: 25px;
     -moz-column-gap: 25px;
          column-gap: 25px;
  margin-right: 0;
}
@media only screen and (max-width: 767px) {
  .p-contact .c-form .planned .ckbul {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.p-contact .c-form .planned .ckbul__radio {
  margin-right: 0;
}
.p-contact .c-form .planned .planned__input {
  margin-top: 30px;
  background-color: var(--color-white);
}
.p-contact .c-form .lh-2 {
  line-height: 2;
}
.p-contact .c-form .method .chkul {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 230px 162px 1fr;
  grid-template-columns: 230px 162px 1fr;
  padding: 36px 25px 36px 31px;
  row-gap: 11px;
}
@media only screen and (max-width: 767px) {
  .p-contact .c-form .method .chkul {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.p-contact .c-form .method .chkul input[type=checkbox] {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  z-index: -1;
}
.p-contact .c-form .method .chkul input[type=checkbox]:checked ~ .chkctm {
  background: var(--color-text);
  border-color: var(--color-text);
}
.p-contact .c-form .method .chkul input[type=checkbox]:checked ~ .chkctm::after {
  display: block;
}
.p-contact .c-form .method .chkul .chkctm {
  width: 14px;
  height: 14px;
  border: 1px solid #dedede;
  background: var(--color-white);
  margin-right: 4px;
}
.p-contact .c-form .method .chkul .chkctm::after {
  content: "";
  display: none;
  width: 12px;
  height: 12px;
  background: url(../../assets/img/common/icon-check.svg) no-repeat;
  background-size: contain;
}
.p-contact .c-form .method .chkul label {
  font-size: 1.5rem;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-contact .c-form .form-submit {
  margin-top: -4px;
}
@media only screen and (max-width: 1024px) {
  .p-contact .c-form .form-content tr,
  .p-contact .c-form .form-content td {
    display: block;
  }
}
@media only screen and (max-width: 1024px) {
  .p-contact .c-form .form-content td:first-of-type {
    padding-bottom: 10px;
  }
}
@media only screen and (max-width: 1024px) {
  .p-contact .c-form .form-content td + td {
    padding-top: 10px;
  }
}
@media only screen and (max-width: 1024px) {
  .p-contact .c-form .-required {
    -webkit-box-pack: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
}
@media only screen and (max-width: 767px) {
  .p-contact .c-form .-required {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}
@media only screen and (max-width: 1024px) {
  .p-contact .c-form .-required::after {
    margin-left: 20px;
  }
}

.privacy-content {
  padding-top: 63px;
  padding-bottom: 128px;
}
@media only screen and (max-width: 767px) {
  .privacy-content {
    padding-bottom: 100px;
  }
}
.privacy-content__ttl {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 21px;
  margin-top: -2px;
  text-indent: -26px;
  padding-left: 26px;
}
@media only screen and (max-width: 1024px) {
  .privacy-content__ttl {
    line-height: 2;
    font-size: 2rem;
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .privacy-content__ttl {
    text-indent: -22px;
    padding-left: 22px;
    font-size: 1.8rem;
  }
}
.privacy-content__ttl1 {
  font-size: 2rem;
  font-weight: 400;
  text-indent: 0;
  padding-left: 0;
}
@media only screen and (max-width: 767px) {
  .privacy-content__ttl1 {
    font-size: 1.8rem;
  }
}
.privacy-content__txt1 {
  font-size: 1.4rem;
  line-height: 2.1;
  margin-bottom: 38px;
}
@media only screen and (max-width: 767px) {
  .privacy-content__txt1 {
    margin-bottom: 20px;
  }
}
.privacy-content__txt2 {
  font-size: 1.4rem;
  line-height: 2.1;
  margin-bottom: 35px;
  padding-left: 56px;
}
@media only screen and (max-width: 767px) {
  .privacy-content__txt2 {
    margin-bottom: 20px;
  }
}
.privacy-content__text {
  font-size: 1.4rem;
  line-height: 2.1;
}
.privacy-content__text + .privacy-content__text {
  margin-top: 37px;
}
@media only screen and (max-width: 767px) {
  .privacy-content__text + .privacy-content__text {
    margin-top: 20px;
  }
}
.privacy-content__ol {
  counter-reset: section1;
  list-style-type: none;
}
.privacy-content__li {
  counter-increment: section1;
  position: relative;
  padding-left: 92px;
  margin-bottom: 12px;
}
@media only screen and (max-width: 1024px) {
  .privacy-content__li {
    padding-left: 46px;
  }
}
@media only screen and (max-width: 767px) {
  .privacy-content__li {
    padding-left: 30px;
  }
}
.privacy-content__li::before {
  content: "(" counter(section1) ") ";
  position: absolute;
  top: 0;
  left: 60px;
  font-size: 1.4rem;
  letter-spacing: 3px;
}
@media only screen and (max-width: 1024px) {
  .privacy-content__li::before {
    left: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .privacy-content__li::before {
    left: 0;
  }
}
.privacy-content__li p {
  font-size: 1.4rem;
  line-height: 2.14;
}
.privacy-content__sub {
  margin-top: 12px;
  padding-left: 28px;
}
.privacy-content__sub span {
  margin-right: -3px;
}
@media only screen and (max-width: 1024px) {
  .privacy-content__sub {
    padding-left: 0;
  }
  .privacy-content__sub span {
    margin-right: 3px;
  }
}
.privacy-content__des {
  text-indent: -18px;
  margin-left: 18px;
}
.privacy-content__star {
  margin-top: 9px;
}
.privacy-content__company {
  margin-bottom: 12px;
}
.privacy-content__common {
  padding-left: 60px;
  margin-bottom: 16px;
}
@media only screen and (max-width: 1024px) {
  .privacy-content__common {
    padding-left: 22px;
  }
}
@media only screen and (max-width: 767px) {
  .privacy-content__common {
    padding-left: 0;
  }
}
.privacy-content__regar {
  margin-bottom: 13px;
}
.privacy-content__info {
  padding-left: 20px;
}
.privacy-content__info h3 {
  font-size: 1.4rem;
  line-height: 2.14;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .privacy-content__info {
    padding-left: 0;
  }
}
.privacy-content__desk {
  margin-top: 11px;
  padding-left: 57px;
}
@media only screen and (max-width: 767px) {
  .privacy-content__desk {
    padding-left: 0;
  }
}

.p-privacy__heading {
  margin-top: 97px;
}
@media screen and (min-width: 1200px) {
  .p-privacy .privacy-content__ttl._mabt18 {
    margin-bottom: 18px;
  }
}

/*≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡
// Utility .u-
≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡*/
.sp-only {
  display: none !important;
}

@media only screen and (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
  .sp-only {
    display: block !important;
  }
}
.js-fadein {
  opacity: 0;
  -webkit-transition: opacity 0.8s ease-out 0.1s;
  transition: opacity 0.8s ease-out 0.1s;
}
.js-fadein.-active {
  opacity: 1;
}

.u-cormorant {
  font-family: var(--cormorant-font);
}

.u-size36 {
  font-size: 3.6rem;
}
@media only screen and (max-width: 767px) {
  .u-size36 {
    font-size: 3rem;
  }
}

.u-size20 {
  font-size: 2rem;
}
@media only screen and (max-width: 767px) {
  .u-size20 {
    font-size: 1.6rem;
  }
}

.br-img {
  border: 1px solid var(--color-border);
}

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

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

.bg-green {
  background-color: var(--color-green);
}

.bg-brown {
  background-color: var(--color-brown);
}

@media only screen and (max-width: 767px) {
  .only-pc {
    display: none;
  }
}