@charset "UTF-8";
/* =================================
  Foundation
================================= */
/*
  Reset
————————————————————————————————————————— */
@import url("https://fonts.googleapis.com/css2?family=Varela+Round&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
textarea {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

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

blockquote,
q {
  quotes: none;
}

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

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

a {
  text-decoration: none;
}

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

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

input[type="submit"],
input[type="button"] {
  -webkit-box-sizing: content-box;
  -webkit-appearance: none;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
  border-radius: 0;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
}

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

/*
  Settings
————————————————————————————————————————— */
/*
  Base
————————————————————————————————————————— */
html {
  overflow-x: hidden;
}

body {
  font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: normal;
  font-stretch: normal;
  color: #000000;
  line-height: 1.6;
  letter-spacing: 0.03em;
}

h1 {
  font-weight: 400;
  font-size: 3.5rem;
  margin-bottom: 32px;
}

h2 {
  font-weight: 400;
  font-size: 2.5rem;
  margin-bottom: 48px;
}

h3 {
  font-weight: 400;
  font-size: 1.5rem;
  margin-bottom: 32px;
}

h4 {
  font-weight: 400400;
  font-size: 1.5rem;
  margin-bottom: 24px;
}

p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}
p.text18 {
  font-size: 1.125rem;
}

a img {
  transition: all 0.3s ease 0s;
}
a:hover img {
  opacity: .7;
}

@media screen and (max-width: 991px) {
  /* ======================
  project(991)
  =========================*/
  body, html {
    overflow-x: hidden;
  }
}
@media screen and (max-width: 767px) {
  /* ======================
  component(768)
  =========================*/
  h1 {
    font-size: 2rem;
    margin-bottom: 32px;
  }

  h2 {
    font-size: 1.5rem;
    margin-bottom: 24px;
  }

  h3 {
    font-size: 1.25rem;
    margin-bottom: 20px;
  }

  h4 {
    font-size: 1.25rem;
    margin-bottom: 16px;
  }
}
/* =================================
  Layout
================================= */
/*
  layout
————————————————————————————————————————— */
.l-main {
  flex: 1;
}

.l-siteWrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.l-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.l-wrapper2 {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}

.l-wrapper3 {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.l-wrapper4 {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
}

.l-section {
  padding: 72px 0;
}

.l-section2 {
  padding: 64px 0;
}

.l-section3 {
  /*padding-top: 128px;*/
}

.l-section4 {
  padding-bottom: 64px;
}

.l-section5 {
  padding-top: 128px;
  padding-bottom: 48px;
}

.l-section6 {
  padding: 96px 0;
}

.l-section7 {
  padding: 128px 0;
}

.l-section8 {
  padding-top: 64px;
}

/*
  レスポンシブ
————————————————————————————————————————— */
@media screen and (max-width: 1199px) {
  /* ======================
  layout(1199)
  =========================*/
  .l-wrapper,
  .l-wrapper2 {
    max-width: 94%;
  }
}
@media screen and (max-width: 991px) {
  /* ======================
  layout(992)
  =========================*/
  .l-wrapper3,
  .l-wrapper4 {
    max-width: 94%;
  }
}
@media screen and (max-width: 767px) {
  /* ======================
  layout(767)
  =========================*/
  .l-section {
    padding: 48px 0;
  }

  .l-section2 {
    padding: 48px 0;
  }

  .l-section3 {
    padding-top: 96px;
  }

  .l-section4 {
    padding-bottom: 96px;
  }

  .l-section5 {
    padding-top: 48px;
    padding-bottom: 32px;
  }

  .l-section6 {
    padding: 48px 0;
  }

  .l-section7 {
    padding: 64px 0;
  }

  .l-wrapper.-full,
  .l-wrapper2.-full {
    max-width: 100%;
  }
}
/* =================================
  Object
================================= */
/*
  component
————————————————————————————————————————— */
h2.c-title span {
  font-family: "Karla", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #F8DB34;
  display: block;
}
h2.c-title.center {
  text-align: center;
}

h3.c-title {
  color: #000000;
  display: flex;
  align-items: center;
  gap: 25px;
}
h3.c-title:before {
  content: '';
  display: inline-block;
  background: #F8DB34;
  width: 30px;
  height: 1px;
}

.c-link {
  font-size: 1rem;
  line-height: 1.2;
  background: #F8DB34;
  color: #000000;
  border: solid 3px #fff;
  border-radius: 100px;
  padding: 16px 50px 16px 30px;
  transition: all 0.3s ease 0s;
  position: relative;
  display: block;
  width: fit-content;
  text-align: center;
  min-width: 270px;
  outline: 1px dashed #FFFFFF;
  outline-offset: -10px;
}
.c-link:after {
  content: '';
  display: inline-block;
  background: url(../img/common/arrow02.png) no-repeat;
  background-size: contain;
  width: 26px;
  height: 26px;
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  transition: all 0.3s ease 0s;
}
.c-link:hover::after {
  background: url(../img/common/arrow02-hover.png) no-repeat;
  background-size: contain;
}
.c-link.center {
  margin-inline: auto;
}

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

.c-hamburger {
  position: fixed;
  top: 19px;
  right: 5%;
  z-index: 50;
  width: 35px;
  height: 20px;
  margin: auto;
  outline: none;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}
.c-hamburger:hover, .c-hamburger:focus {
  box-shadow: 0 0 0.5rem rgba(255, 255, 255, 0.5);
}
.c-hamburger__line {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 35px;
  height: 2px;
  background-color: #F8DB34;
  -webkit-transition: inherit;
  transition: inherit;
  transition: 0.35s ease-in-out;
}
.c-hamburger__line:before, .c-hamburger__line:after {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #F8DB34;
  content: '';
  -webkit-transition: inherit;
  transition: inherit;
}
.c-hamburger__line:before {
  top: -10px;
}
.c-hamburger__line:after {
  top: 10px;
}

.c-hamburger[aria-expanded="true"] .c-hamburger__line {
  background-color: transparent;
  transform: translate(-50px, 0);
}
.c-hamburger[aria-expanded="true"] .c-hamburger__line:before, .c-hamburger[aria-expanded="true"] .c-hamburger__line:after {
  top: 0;
}
.c-hamburger[aria-expanded="true"] .c-hamburger__line:before {
  -webkit-transform: rotate(315deg);
  -ms-transform: rotate(315deg);
  transform: translate(50px, 0) rotate(315deg);
}
.c-hamburger[aria-expanded="true"] .c-hamburger__line:after {
  -webkit-transform: rotate(-315deg);
  -ms-transform: rotate(-315deg);
  transform: translate(50px, 0) rotate(-315deg);
}

.c-pageTOP {
  display: block;
  width: 40px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 10;
}

.p-ad {
  background-size: cover;
  background-position: center;
  padding: 24px 0 42px;
}

.p-ad .footerBody table {
  width: 90%;
  border-collapse: collapse;
  margin-top: 16px;
  margin-bottom: 16px;
}
.p-ad .footerBody table th, .p-ad .footerBody table td {
  font-size: 1.2rem;
  text-align: center;
  width: auto;
  padding: 16px 0;
}
.p-ad .footerBody table tr {
  border-bottom: 1px solid #fff;
}
.p-ad .footerBody table th {
  width: 12rem;
}
.p-ad .footerBody table th span {
  font-size: 1.2rem;
  color: #fff;
  display: inline-block;
  line-height: 1.2;
  padding: 12px 18px;
  background: #E77F3D;
}
.p-ad .footerBody table td {
  border-bottom: 1px solid #B7B6B6;
}
.p-ad .footerBody .remark {
  font-size: 1.2rem;
  text-align: left;
  margin-bottom: 0;
}
.p-ad .footerBody .addressList {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.p-ad .footerBody .addressList li {
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.4;
}
.p-ad .footerBody .addressList .icon {
  width: 66px;
  height: 66px;
  min-width: 66px;
  min-height: 66px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-ad .footerBody .addressList .icon img {
  width: 40px;
  height: 34px;
  object-fit: contain;
}
.p-ad .footerBody .addressList p {
  text-align: left;
  margin-bottom: 0;
}
.p-ad .footerMenu {
  padding-top: 72px;
}
.p-ad .footerMenu .footerList {
  display: flex;
  justify-content: space-between;
  gap: 20px 30px;
}
.p-ad .footerBody .footerTel {
  color: #000000;
  font-weight: 500;
  font-size: 2.125rem;
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
}
.p-ad .footerBody .footerTel::before {
  content: '';
  display: inline-block;
  background: url(../img/common/tel_icon.png) no-repeat;
  background-size: contain;
  width: 28px;
  height: 28px;
}

/*
  レスポンシブ
————————————————————————————————————————— */
@media screen and (max-width: 767px) {
  /* ======================
  project(767)
  =========================*/
  .c-pageTOP {
    width: 35px;
    right: 15px;
  }

  h2.c-title {
    font-size: 1.5rem;
  }
  h2.c-title span {
    font-size: 1.5rem;
  }

  h3.c-title {
    font-size: 1.25rem;
    gap: 8px;
  }
  h3.c-title:before {
    width: 24px;
  }
}
/*
  footer
————————————————————————————————————————— */
.p-footer {
  background: url(../img/common/footer-bg.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  padding: 72px 0 42px;
}
.p-footer .footerBody .logo {
  width: 300px;
  margin-inline: auto;
  margin-bottom: 24px;
}
.p-footer .footerBody p {
  text-align: center;
}
.p-footer .footerBody .flex {
  display: flex;
  gap: 30px;
}
.p-footer .footerBody .box {
  width: 100%;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}
.p-footer .footerBody .box:first-child {
  padding: 48px;
}
.p-footer .footerBody iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: bottom;
}
.p-footer .footerBody .addressWrap {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.p-footer .footerBody h2 {
  font-family: "Varela Round", sans-serif;
  font-size: 2rem;
  text-align: center;
  color: #E77F3D;
  margin-bottom: 24px;
}
.p-footer .footerBody h3 {
  font-size: 1.5rem;
  color: #E77F3D;
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
  margin-bottom: 8px;
}
.p-footer .footerBody h3:after {
  content: '';
  display: inline-block;
  background: #E77F3D;
  width: 100%;
  height: 1px;
  flex: 1;
}
.p-footer .footerBody .footerTel {
  color: #000000;
  font-weight: 500;
  font-size: 2.125rem;
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
}
.p-footer .footerBody .footerTel::before {
  content: '';
  display: inline-block;
  background: url(../img/common/tel_icon.png) no-repeat;
  background-size: contain;
  width: 28px;
  height: 28px;
}
.p-footer .footerBody table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
  margin-bottom: 16px;
}
.p-footer .footerBody table th, .p-footer .footerBody table td {
  font-size: 1rem;
  text-align: center;
  width: auto;
  padding: 4px 0;
}
.p-footer .footerBody table tr {
  border-bottom: 1px solid #fff;
}
.p-footer .footerBody table th {
  width: 9rem;
}
.p-footer .footerBody table th span {
  font-size: 1.125rem;
  color: #fff;
  display: inline-block;
  line-height: 1.2;
  padding: 6px 18px;
  background: #E77F3D;
}
.p-footer .footerBody table td {
  border-bottom: 1px solid #B7B6B6;
}
.p-footer .footerBody .remark {
  font-size: 0.875rem;
  text-align: left;
  margin-bottom: 0;
}
.p-footer .footerBody .addressList {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.p-footer .footerBody .addressList li {
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.4;
}
.p-footer .footerBody .addressList .icon {
  width: 66px;
  height: 66px;
  min-width: 66px;
  min-height: 66px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-footer .footerBody .addressList .icon img {
  width: 40px;
  height: 34px;
  object-fit: contain;
}
.p-footer .footerBody .addressList p {
  text-align: left;
  margin-bottom: 0;
}
.p-footer .footerMenu {
  padding-top: 72px;
}
.p-footer .footerMenu .footerList {
  display: flex;
  justify-content: space-between;
  gap: 20px 30px;
}
.p-footer .footerMenu .footerList > .item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.p-footer .footerMenu .footerList a {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  color: #000000;
  transition: all 0.3s ease 0s;
}
.p-footer .footerMenu .footerList a:hover {
  color: #E77F3D;
}
.p-footer .footerMenu .footerListChild {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 20px;
}

.p-copyright {
  font-size: 0.75rem;
  color: #fff;
  line-height: 1.6;
  text-align: center;
  display: block;
  padding: 12px 0;
  background: #E77F3D;
}

/*
  レスポンシブ
————————————————————————————————————————— */
@media screen and (max-width: 767px) {
  /* ======================
  project(767)
  =========================*/
  .p-footer {
    padding: 48px 0;
  }
  .p-footer .footerBody .logo {
    width: 270px;
    margin-bottom: 32px;
  }
  .p-footer .footerBody .flex {
    flex-direction: column;
    gap: 48px;
    margin-top: 48px;
  }
  .p-footer .footerBody .box:first-child {
    padding: 32px 20px;
  }
  .p-footer .footerBody iframe {
    height: auto;
    aspect-ratio: 335 / 395;
  }
  .p-footer .footerBody .addressWrap {
    gap: 32px;
  }
  .p-footer .footerBody h2 {
    font-size: 1.75rem;
    margin-bottom: 16px;
  }
  .p-footer .footerBody .footerTel {
    justify-content: center;
    font-size: 2.25rem;
  }
  .p-footer .footerBody table th, .p-footer .footerBody table td {
    font-size: 1rem;
    text-align: center;
    width: auto;
    padding: 4px 0;
  }
  .p-footer .footerBody table th {
    width: 7rem;
  }
  .p-footer .footerBody table th span {
    font-size: 1rem;
    padding: 4px 10px;
  }
  .p-footer .footerMenu {
    padding-top: 32px;
  }
  .p-footer .footerMenu .footerList {
    flex-wrap: wrap;
    gap: 24px;
  }
  .p-footer .footerMenu .footerList > .item {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .p-footer .footerMenu .footerList > .item:nth-child(1) {
    width: 100%;
  }
  .p-footer .footerMenu .footerList > .item:nth-child(2) {
    width: 46%;
  }
  .p-footer .footerMenu .footerList > .item:nth-child(3) {
    width: 46%;
  }
  .p-footer .footerMenu .footerList > .item:nth-child(4) {
    width: 46%;
  }
  .p-footer .footerMenu .footerList > .item:nth-child(5) {
    width: 46%;
  }
  .p-footer .footerMenu .footerList a {
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #000000;
    transition: all 0.3s ease 0s;
  }
  .p-footer .footerMenu .footerList a:hover {
    color: #E77F3D;
  }
  .p-footer .footerMenu .footerListChild {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-left: 20px;
  }
  .p-footer .footerMenu .footerListChild.sp {
    padding-left: 0;
  }
}
/*
  header
————————————————————————————————————————— */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 15px 5%;
}
.header.is-active {
  background-color: rgba(255, 255, 255, 0.9);
}

.header-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo {
  width: 270px;
  transition: all 0.3s ease 0s;
}

.header-address {
  display: flex;
  gap: 24px;
}

.header-address p {
  font-size: 0.875rem;
  margin: 0;
}

.header-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.header-tel {
  color: #000000;
  font-size: 1.75rem;
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
}

.header-tel::before {
  content: '';
  display: inline-block;
  background: url(../img/common/tel_icon.png) no-repeat;
  background-size: contain;
  width: 28px;
  height: 28px;
}

.header-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.header-item a {
  font-size: 0.875rem;
  color: #000000;
  display: block;
  padding: 15px;
  transition: all 0.3s ease 0s;
}

.header-item > a:hover {
  color: #F8DB34;
}

.megaMenu {
  background-color: #fff;
  left: 0;
  opacity: 0;
  position: absolute;
  text-align: center;
  visibility: hidden;
  width: 100%;
  transition: opacity .3s, visibility .3s;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px;
}

.megaMenu-image {
  overflow: hidden;
  aspect-ratio: 1 / 1;
  width: 286px;
  border-radius: 8px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.megaMenu-image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.megaMenu-list {
  width: calc(100% - 343px);
  display: flex;
  flex-wrap: wrap;
  gap: 9px 30px;
}

.megaMenu-item {
  position: relative;
  width: calc(33.3333333333% - 20px);
  transition: all 0.3s ease-in-out;
}

.megaMenu-item a {
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  padding: 20px 0;
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: #000000;
  border-bottom: 1px solid #D8D8D8;
  position: relative;
}
.megaMenu-item a:after {
  position: absolute;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #F8DB34;
  bottom: -1px;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
.megaMenu-item a:hover:after {
  transform: scale(1, 1);
}

/* メニューをhoverした時のスタイル */
.header-item:hover .megaMenu {
  opacity: 1;
  visibility: visible;
}

/* レイアウトのためのスタイル */
a {
  text-decoration: none;
}

#p-globalMenuSp {
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.9);
  position: fixed;
  top: -120%;
  left: 0;
  z-index: -10;
  padding-top: 104px;
  padding-bottom: 40px;
  transition: all .6s;
  overflow: auto;
}
#p-globalMenuSp.is-active {
  top: 0;
  z-index: -1;
}

.p-globalMenuSp__list {
  text-align: left;
  margin-bottom: 24px;
}

.p-globalMenuSp__list .child {
  margin-left: 5%;
}

.p-globalMenuSp__list .child {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  margin-top: 8px;
}

.p-globalMenuSp__list .child a {
  font-size: 0.875rem;
  color: #000000;
  position: relative;
  padding-left: 32px;
}

.p-globalMenuSp__list .child a:before {
  content: '';
  display: inline-block;
  background: #000;
  width: 16px;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.p-globalMenuSp__item:last-child {
  margin-bottom: 0;
}

.p-globalMenuSp__item > a {
  font-weight: 400;
  font-size: 1rem;
  color: #000000;
  line-height: 1.6;
  padding: 16px 5%;
  display: block;
  border-bottom: solid 1px #E9E9E9;
  position: relative;
}

#p-globalMenuSp .click-menu > a:after {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  border-right: solid 2px #000;
  border-bottom: solid 2px #000;
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%) rotate(45deg);
  transition: all 0.3s ease 0s;
}

#p-globalMenuSp .click-menu > a.open:after {
  transform: translateY(-50%) rotate(225deg);
  top: calc(50% + 5px);
}

#p-globalMenuSp .click-menu .p-menu-content {
  display: none;
}

#p-globalMenuSp .header-tel {
  justify-content: center;
}

/*
  レスポンシブ
————————————————————————————————————————— */
@media screen and (max-width: 767px) {
  /* ======================
  project(767)
  =========================*/
  .header {
    padding: 16px 5%;
    position: fixed;
    background-color: rgba(255, 255, 255, 0.9);
  }
  .header.is-active {
    background-color: rgba(255, 255, 255, 0.9);
  }

  .header-logo {
    width: 200px;
  }

  .header-nav {
    justify-content: unset;
    gap: 20px;
  }

  .header-menu {
    display: none;
  }

  .header-tel {
    max-width: 300px;
    margin-inline: auto;
    color: #000000 !important;
    justify-content: center;
  }
}
/*
  top
————————————————————————————————————————— */
.p-top__mainvisual {
  width: 100%;
  margin: 0 auto;
}
.p-top__mainvisual .p-mainvisual_inner {
  position: relative;
}
.p-top__mainvisual .text-block {
  flex: 1;
  padding: 2rem;
  font-size: 2rem;
}
.p-top__mainvisual .video-mask {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
}
.p-top__mainvisual .video-mask video {
  width: 55%;
  aspect-ratio: 996 / 940;
  object-fit: cover;
  mask-image: url(../img/top/mv_mask.svg);
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;
  -webkit-mask-image: url(../img/top/mv_mask.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
}
.p-top__mainvisual .p-mainvisual_hero {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  width: 90%;
  z-index: 4;
}
.p-top__mainvisual .p-mainvisual_hero .wrap {
  position: relative;
  z-index: 2;
}
.p-top__mainvisual .p-mainvisual_hero h1 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(2.5vw, 56px);
  font-weight: 400;
  text-align: center;
  color: #000000;
  line-height: 1.6;
  margin-bottom: 12px;
}
.p-top__mainvisual .p-mainvisual_hero h1 span {
  background: rgba(249, 255, 74, 0.8);
}
.p-top__mainvisual .p-mainvisual_hero p.ja {
  font-size: 1.5rem;
  text-align: center;
  color: #000000;
  line-height: 1.5;
}
.p-top__mainvisual .p-mainvisual_hero p.ja span {
  background: rgba(249, 255, 74, 0.8);
  padding: 4px 20px;
}
.p-top__mainvisual .p-mainvisual_hero p.en {
  font-family: "Playfair Display", serif;
  font-size: min(2.5vw, 56px);
  font-weight: 500;
  text-align: center;
  color: #F9FF4A;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.p-top__mainvisual .p-mainvisual_hero .p-mainvisual_image {
  position: absolute;
  top: 38%;
  left: 0;
  transform: translateY(-50%);
  width: 46%;
  z-index: 1;
}
.p-top__mainvisual .p-mainvisual_hero .heroList {
  display: flex;
  gap: 12px;
  justify-content: center;
  padding-left: 20%;
  position: relative;
  z-index: 2;
}
.p-top__mainvisual .p-mainvisual_hero .heroList li {
  width: 120px;
  position: relative;
}
.p-top__mainvisual .p-mainvisual_hero .heroList li img {
  display: block;
  width: 100%;
  filter: drop-shadow(5px 5px 20px rgba(0, 0, 0, 0.5));
  will-change: filter;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.p-top__mainvisual .p-mainvisual_hero .heroList li .note {
  display: inline-block;
  font-size: 0.75rem;
  position: absolute;
  bottom: -26px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.p-top__wrap {
  position: relative;
}
.p-top__wrap .bg {
  width: 80%;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 5%;
}
.p-top__wrap .bg02 {
  width: 90%;
  position: absolute;
  z-index: -1;
  top: 128px;
  right: 0;
}

.p-top__about {
  margin-top: -80px;
}
.p-top__about .flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.p-top__about .image {
  width: 35%;
}
.p-top__about .image span {
  display: block;
  text-align: center;
  margin-top: 16px;
}
.p-top__about .text {
  width: 67%;
}

.p-top__worries {
  padding-top: 124px;
}
.p-top__worries h2 {
  text-align: center;
}
.p-top__worries ul {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: auto;
  gap: 32px 25px;
}
.p-top__worries li a {
  position: relative;
  background: #F4FCA9;
  aspect-ratio: 1 / 1;
  width: 100%;
  border-radius: 50%;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease 0s;
}
.p-top__worries li a:hover {
  transform: translateY(-5px);
}
.p-top__worries .icon {
  width: 75px;
  height: 75px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}
.p-top__worries .icon img {
  width: 50px;
  height: 35px;
  object-fit: contain;
}
.p-top__worries h4 {
  text-align: center;
  color: #000000;
  margin: 0;
}
.p-top__worries h4 span {
  color: #F4354B;
}

.p-top__features {
  padding-top: 124px;
  padding-bottom: 40px;
}
.p-top__features h2 {
  font-family: "Noto Serif JP", serif;
  font-size: 3rem;
  text-align: center;
}
.p-top__features h2 span {
  font-family: "Varela Round", sans-serif;
  font-weight: 400;
  font-size: 2rem;
  color: #E77F3D;
  display: block;
}
.p-top__features h3 {
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
}
.p-top__features ul {
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.p-top__features ul li {
  display: flex;
  gap: 32px;
}
.p-top__features ul li:nth-child(even) {
  flex-direction: row-reverse;
}
.p-top__features .text {
  width: 100%;
}
.p-top__features .image {
  width: 100%;
  position: relative;
  padding-bottom: 36px;
}
.p-top__features .image img {
  border-radius: 10px;
  display: block;
}
.p-top__features .image .image01 {
  width: 85%;
  margin-left: auto;
}
.p-top__features .image .image02 {
  width: 50%;
  position: absolute;
  bottom: 0;
  left: 0;
}

.p-top__menu {
  position: relative;
  padding: 62px 0 42px;
  z-index: 2;
}
.p-top__menu:after {
  content: '';
  display: inline-block;
  background: url(../img/top/menu-bg.jpg) no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.5;
  z-index: -1;
}
.p-top__menu h2 {
  text-align: center;
}
.p-top__menu ul {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: auto;
  gap: 16px 20px;
}
.p-top__menu ul li a {
  color: #000000;
  background: #F8DB34;
  border-radius: 10px;
  padding: 10px 25px 10px 10px;
  height: 68px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
}
.p-top__menu ul li a:after {
  content: '';
  display: inline-block;
  background: url(../img/common/arrow02.png) no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  transition: all 0.3s ease 0s;
}
.p-top__menu ul li a:hover::after {
  background: url(../img/common/arrow02-hover.png) no-repeat;
  background-size: contain;
}
.p-top__menu ul .icon img {
  width: 42px;
  height: 32px;
  object-fit: contain;
}
.p-top__menu ul p {
  font-size: 1rem;
  line-height: 1.2;
  margin: 0;
}
.p-top__menu ul p span {
  font-size: 0.875rem;
  display: block;
}

.p-top__information {
  padding: 64px 0;
}
.p-top__information .flex {
  display: flex;
  gap: 30px;
}
.p-top__information h2 {
  font-weight: 400;
  font-size: 2.5rem;
  color: #E77F3D;
}
.p-top__information h2 span {
  font-size: 1.5rem;
  color: #000000;
  display: block;
}
.p-top__information .information {
  width: 100%;
}
.p-top__information .slideBox {
  width: 100%;
  display: flex;
  gap: 30px;
}
.p-top__information .slider-container {
  width: 100%;
  height: 400px;
  overflow: hidden;
  position: relative;
}
@keyframes vertical-scroll {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(-50%);
  }
}
@keyframes vertical-scroll02 {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0%);
  }
}
.p-top__information .slider-wrapper {
  display: flex;
  flex-direction: column;
  animation: vertical-scroll 40s linear infinite;
}
.p-top__information .slider-wrapper02 {
  display: flex;
  flex-direction: column;
  animation: vertical-scroll02 40s linear infinite;
}
.p-top__information .slide {
  width: 100%;
  flex-shrink: 0;
  margin: 10px 0;
}
.p-top__information .slide img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  vertical-align: bottom;
  border-radius: 10px;
}
.p-top__information .btnFlex {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 30px;
  margin-top: 34px;
}
.p-top__information .btnFlex .c-link {
  margin: 0;
}
.p-top__information .informationList {
  height: 380px;
  overflow-y: scroll;
}
.p-top__information .informationList li {
  margin-bottom: 16px;
}
.p-top__information .informationList li:first-child a {
  padding-top: 16px;
  border-top: 1px dashed #D8D8D8;
}
.p-top__information .informationList li:last-child {
  margin-bottom: 0;
}
.p-top__information .informationList a {
  display: flex;
  column-gap: 30px;
  padding-bottom: 16px;
  border-bottom: 1px dashed #D8D8D8;
}
.p-top__information .informationList a:hover .date, .p-top__information .informationList a:hover .title {
  opacity: 0.7;
}
.p-top__information .date {
  font-size: 0.875rem;
  color: #000000;
  transition: all 0.3s ease 0s;
}
.p-top__information .title {
  font-size: 0.875rem;
  color: #000000;
  line-height: 1.4;
  transition: all 0.3s ease 0s;
  margin: 0;
}

/*
  レスポンシブ
————————————————————————————————————————— */
@media screen and (max-width: 767px) {
  /* ======================
  project(767)
  =========================*/
  .p-top__mainvisual .text-block {
    flex: 1;
    padding: 2rem;
    font-size: 2rem;
  }
  .p-top__mainvisual .video-mask {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
  }
  .p-top__mainvisual .video-mask video {
    width: 100%;
    aspect-ratio: 1272 / 1879;
    mask-image: url(../img/top/mv_mask-sp.svg);
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    -webkit-mask-image: url(../img/top/mv_mask-sp.svg);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    position: relative;
    z-index: 1;
  }
  .p-top__mainvisual .p-mainvisual_hero {
    position: relative;
    top: unset;
    left: unset;
    transform: translateY(0) translateX(0);
    width: 100%;
    margin-top: -230px;
    z-index: 2;
  }
  .p-top__mainvisual .p-mainvisual_hero h1 {
    font-size: 1.5rem;
    width: 90%;
    padding: 10px;
    margin-inline: auto;
    background: rgba(249, 255, 74, 0.8);
  }
  .p-top__mainvisual .p-mainvisual_hero h1 span {
    background: unset;
  }
  .p-top__mainvisual .p-mainvisual_hero p.ja {
    font-size: 1rem;
    background: rgba(249, 255, 74, 0.8);
    width: 85%;
    padding: 10px;
    margin-inline: auto;
  }
  .p-top__mainvisual .p-mainvisual_hero p.ja span {
    background: unset;
    padding: 0;
  }
  .p-top__mainvisual .p-mainvisual_hero p.en {
    font-size: 2.5rem;
    line-height: 1.2;
  }
  .p-top__mainvisual .p-mainvisual_hero .p-mainvisual_image {
    position: relative;
    top: unset;
    left: unset;
    transform: translateY(0);
    width: 120%;
    margin-left: -10%;
    z-index: -2;
    margin-top: -150px;
  }
  .p-top__mainvisual .p-mainvisual_hero .heroList {
    display: grid;
    grid-template-columns: repeat(2, 140px);
    grid-template-rows: auto;
    gap: 12px;
    padding-left: 0;
    position: relative;
    z-index: 2;
    margin-top: -40px;
  }
  .p-top__mainvisual .p-mainvisual_hero .heroList li {
    width: 140px;
  }
  .p-top__mainvisual .p-mainvisual_hero .heroList li img {
    filter: drop-shadow(5px 5px 20px rgba(0, 0, 0, 0.3));
  }

  .p-top__wrap .bg {
    width: 100%;
    top: -5%;
    left: 0;
  }
  .p-top__wrap .bg02 {
    width: 100%;
    top: 108px;
  }

  .p-top__about {
    margin-top: 0;
    padding-top: 60px;
  }
  .p-top__about .flex {
    flex-direction: column;
    gap: 16px;
  }
  .p-top__about .image {
    width: 100%;
  }
  .p-top__about .text {
    width: 100%;
  }
  .p-top__about h2 {
    font-weight: 400;
    line-height: 1.8;
  }
  .p-top__about .c-link {
    margin-top: 26px;
    margin-inline: auto;
  }

  .p-top__worries {
    padding-top: 74px;
  }
  .p-top__worries ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 12px;
  }
  .p-top__worries .icon {
    width: 55px;
    height: 55px;
    top: -20px;
  }
  .p-top__worries .icon img {
    width: 42px;
    height: 32px;
  }

  .p-top__features {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .p-top__features h2 {
    font-size: 2rem;
    margin-bottom: 48px;
  }
  .p-top__features h2 span {
    font-size: 1.5rem;
    margin-bottom: 16px;
  }
  .p-top__features h3 {
    font-size: 1.5rem;
    line-height: 1.8;
  }
  .p-top__features ul {
    gap: 72px;
  }
  .p-top__features ul li {
    flex-direction: column;
    gap: 24px;
  }
  .p-top__features ul li:nth-child(even) {
    flex-direction: column;
  }
  .p-top__features .c-link {
    margin-inline: auto;
  }

  .p-top__menu {
    padding: 48px 0;
  }
  .p-top__menu:after {
    background: url(../img/top/menu-bg-sp.jpg) no-repeat;
    opacity: 1;
  }
  .p-top__menu ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .p-top__menu ul li a {
    padding: 20px 10px;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    position: relative;
    flex-direction: column;
    gap: 0;
  }
  .p-top__menu ul li a:after {
    position: absolute;
    top: unset;
    bottom: 16px;
    transform: translateY(0%) translateX(-50%);
    right: unset;
    left: 50%;
  }
  .p-top__menu ul .icon img {
    width: 42px;
    height: 32px;
    object-fit: contain;
  }
  .p-top__menu ul p {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    line-height: 140%;
    height: calc(1em * 1.4 * 2);
    text-align: center;
    margin-top: 8px;
  }

  .p-top__information {
    padding: 64px 0;
  }
  .p-top__information .flex {
    flex-direction: column;
    gap: 48px;
  }
  .p-top__information h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 30px;
  }
  .p-top__information h2 span {
    display: none;
  }
  .p-top__information .slideBox {
    gap: 16px;
  }
  .p-top__information .slider-container {
    height: 240px;
  }
  .p-top__information .slide {
    width: 100%;
    flex-shrink: 0;
    margin: 10px 0;
  }
  .p-top__information .btnFlex {
    justify-content: center;
  }
  .p-top__information .informationList {
    height: 400px;
  }
  .p-top__information .informationList a {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 16px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
/*
  page
————————————————————————————————————————— */
.p-mainvisual {
  width: 100%;
  margin: 0 auto;
}
.p-mainvisual .p-mainvisual_inner {
  position: relative;
}
.p-mainvisual .text-block {
  flex: 1;
  padding: 2rem;
  font-size: 2rem;
}
.p-mainvisual .video-mask {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
}
.p-mainvisual .video-mask img {
  width: 45%;
  aspect-ratio: 1686 / 1440;
  object-fit: cover;
}
.p-mainvisual .p-mainvisual_hero {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  width: 90%;
  z-index: 4;
}
.p-mainvisual .p-mainvisual_hero .wrap {
  position: relative;
  z-index: 2;
  padding: 24px 0;
  margin-top: 55px;
}
.p-mainvisual .p-mainvisual_hero .wrap::after {
  content: '';
  display: inline-block;
  background: rgba(249, 255, 74, 0.8);
  width: 0;
  height: 100%;
  position: absolute;
  top: 0;
  left: -6%;
  z-index: -1;
  border-radius: 0 10px 10px 0;
  animation: bgSlideIn 1s ease-out forwards;
}
@keyframes bgSlideIn {
  0% {
    width: 0;
  }
  100% {
    width: 70%;
  }
}
.p-mainvisual .p-mainvisual_hero h1 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(2.5vw, 56px);
  font-weight: 400;
  text-align: left;
  color: #000000;
  line-height: 1.6;
  margin-bottom: 12px;
}
.p-mainvisual .p-mainvisual_hero h1 span {
  font-size: 1.5rem;
  display: block;
}
.p-mainvisual .p-mainvisual_hero .p-mainvisual_image {
  position: absolute;
  top: 8%;
  left: 5%;
  transform: translateY(-50%);
  width: 53%;
  z-index: 1;
}

.p-breadCrumb {
  width: 100%;
  display: flex;
  align-items: center;
  margin-top: -9%;
}
.p-breadCrumb li {
  font-size: 0.875rem;
  margin: 0 30px 0 0;
  position: relative;
}
.p-breadCrumb li a {
  color: #000;
}
.p-breadCrumb li:before {
  content: '>';
  display: inline-block;
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
}
.p-breadCrumb li:last-child {
  margin: 0;
}
.p-breadCrumb li:last-child:before {
  display: none;
}

/*全て共通：hideエリアをはじめは非表示*/
.hide-area {
  display: none;
}

/*全て共通：モーダルのボタンの色を変更したい場合*/
.modaal-close:after,
.modaal-close:before {
  background: #ccc;
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
  background: #666;
}

/*確認を促すモーダル：タイトルの色を変更したい場合*/
#modaal-title {
  font-size: 1.2rem;
  text-align: center;
  margin: 0 0 20px 0;
}

/*動画表示のモーダル：余白を変更したい場合*/
.modaal-video .modaal-inner-wrapper {
  padding: 0;
}

.p-page-main {
  padding-top: 128px;
}
.p-page-main .btnFlex {
  display: flex;
  gap: 20px 30px;
  flex-wrap: wrap;
}
.p-page-main .btnFlex.center {
  justify-content: center;
}
.p-page-main .btnFlex .c-link {
  margin: 0;
}
.p-page-main .p-list li {
  font-size: 1.125rem;
  margin-bottom: 9px;
  line-height: 1.4;
  padding-left: 20px;
  position: relative;
}
.p-page-main .p-list li:before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 11px;
  left: 0;
  width: 6px;
  height: 1px;
  background: #000;
}
.p-page-main .p-list2 {
  list-style-type: decimal;
  padding-left: 20px;
}
.p-page-main .p-list2 li {
  font-size: 1.125rem;
  margin-bottom: 9px;
  line-height: 1.4;
}
.p-page-main .p-list3 {
  list-style-type: circle;
  padding-left: 20px;
}
.p-page-main .p-list3 li {
  font-size: 1.125rem;
  margin-bottom: 9px;
  line-height: 1.4;
}
.p-page-main section.bg-color01 {
  background: #F8F8F8;
}
.p-page-main .p-text-center {
  text-align: center;
}
.p-page-main .mb8 {
  margin-bottom: 8px;
}
.p-page-main .mb16 {
  margin-bottom: 16px;
}
.p-page-main .mb24 {
  margin-bottom: 24px;
}
.p-page-main .mb32 {
  margin-bottom: 32px;
}
.p-page-main .mb64 {
  margin-bottom: 64px;
}
.p-page-main .mb72 {
  margin-bottom: 72px;
}
.p-page-main .mb128 {
  margin-bottom: 128px;
}
.p-page-main .mt8 {
  margin-top: 8px;
}
.p-page-main .mt16 {
  margin-top: 16px;
}
.p-page-main .mt24 {
  margin-top: 24px;
}
.p-page-main .mt32 {
  margin-top: 32px;
}
.p-page-main .mt64 {
  margin-top: 64px;
}
.p-page-main .mt72 {
  margin-top: 72px;
}
.p-page-main .mt128 {
  margin-top: 128px;
}
.p-page-main .mr24 {
  margin-right: 24px;
}
.p-page-main .p-page__table01 {
  border-collapse: collapse;
  width: 100%;
}
.p-page-main .p-page__table01 tr {
  border-bottom: 1px solid #D8D8D8;
}
.p-page-main .p-page__table01 tr:first-child {
  border-top: 1px solid #D8D8D8;
}
.p-page-main .p-page__table01 th, .p-page-main .p-page__table01 td {
  padding: 20px 0 20px 10px;
  font-size: 0.875rem;
  line-height: 2.0;
}
.p-page-main .p-page__table01 th {
  width: 30%;
  text-align: center;
}
.p-page-main .p-page__table01 td {
  width: 70%;
}
.p-page-main .p-page__table02 {
  border-collapse: collapse;
  width: 100%;
}
.p-page-main .p-page__table02 tr {
  border-bottom: 1px solid #D8D8D8;
}
.p-page-main .p-page__table02 tr:first-child {
  border-top: 1px solid #D8D8D8;
}
.p-page-main .p-page__table02 th, .p-page-main .p-page__table02 td {
  padding: 32px 0 32px 10px;
  font-size: 0.875rem;
  line-height: 2.0;
}
.p-page-main .p-page__table02 th {
  width: 30%;
  text-align: center;
  border-bottom: 1px solid #F8DB34;
}
.p-page-main .p-page__table02 th:first-child {
  border-top: 1px solid #F8DB34;
}
.p-page-main .p-page__table02 td {
  width: 70%;
}
.p-page-main .p-page__table03 {
  border-collapse: collapse;
  width: 100%;
  min-width: 1130px;
}
.p-page-main .p-page__table03 tr.gray td {
  background: #F1F2F2;
}
.p-page-main .p-page__table03 th, .p-page-main .p-page__table03 td {
  font-size: 0.875rem;
  border: solid 1px #D8D8D8;
  padding: 16px 32px;
  text-align: left;
}
.p-page-main .p-page__table03 th {
  font-weight: 600;
  background: #FFFCE6;
}
.p-page-main .p-page__table03 .center {
  text-align: center;
}
.p-page-main .p-page__table03 .gallery {
  color: #000000;
}
.p-page-main .p-page__table03 .gallery:after {
  content: '';
  display: inline-block;
  background: url(../img/common/link_icon02.png) no-repeat;
  background-size: contain;
  width: 18px;
  height: 18px;
  vertical-align: middle;
  margin-top: -1px;
  margin-left: 8px;
}
.p-page-main .step-content .secbg {
  background: #FFFCE6;
  padding: 120px 80px;
}
.p-page-main .step-content ul {
  display: flex;
  flex-direction: column;
  gap: 96px;
}
.p-page-main .step-content li {
  display: flex;
  position: relative;
}
.p-page-main .step-content li::after {
  content: '';
  display: inline-block;
  background: #F8DB34;
  width: 1px;
  height: 100%;
  position: absolute;
  bottom: -105px;
  left: 50px;
}
.p-page-main .step-content li:last-child::after {
  display: none;
}
.p-page-main .step-content .left {
  width: 35%;
  display: flex;
}
.p-page-main .step-content .right {
  width: calc(65% - 42px);
  padding: 24px;
  background: #fff;
  border-radius: 0 0 10px 10px;
}
.p-page-main .step-content .right p {
  margin-bottom: 32px;
}
.p-page-main .step-content .number {
  width: 100px;
  line-height: 1.2;
  border-radius: 5px 0 0 5px;
  background: #F8DB34;
  color: #000000;
  font-size: 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
}
.p-page-main .step-content .number span {
  display: block;
  font-size: 1rem;
}
.p-page-main .step-content .image {
  width: calc(100% - 100px);
  padding: 24px;
  background: #fff;
}
.p-page-main .step-content .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/**/
.p-page-main .step-content02 .secbg {
  background: #FFFCE6;
  padding: 120px 80px;
}
.p-page-main .step-content02 ul {
  display: flex;
  flex-direction: column;
  gap: 96px;
}
.p-page-main .step-content02 li {
  display: flex;
  position: relative;
}
.p-page-main .step-content02 li::after {
  content: '';
  display: inline-block;
  background: #F8DB34;
  width: 1px;
  height: 100%;
  position: absolute;
  bottom: -105px;
  left: 50px;
}
.p-page-main .step-content02 li:last-child::after {
  display: none;
}
.p-page-main .step-content02 .left {
 /* width: 35%;*/
  display: flex;
}
.p-page-main .step-content02 .right {
  width: calc(100% - 42px);
  padding: 24px;
  background: #fff;
  border-radius: 0 0 10px 10px;
}
.p-page-main .step-content02 .right p {
  margin-bottom: 32px;
}
.p-page-main .step-content02 .number {
  width: 100px;
  line-height: 1.2;
  border-radius: 5px 0 0 5px;
  background: #F8DB34;
  color: #000000;
  font-size: 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
}
.p-page-main .step-content02 .number span {
  display: block;
  font-size: 1rem;
}
.p-page-main .step-content02 .image {
  width: calc(100% - 100px);
  padding: 24px;
  background: #fff;
}
.p-page-main .step-content02 .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/**/

.p-page-main .step-content .right ul.p-list3 {
  list-style-type: circle;
  padding-left: 20px;
}
.p-page-main .step-content .right ul.p-list3 li {
  font-size: 1.125rem;
  margin-bottom: 9px;
  line-height: 1.4;
}

.p-page-main .flexList {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.p-page-main .flexList li {
  display: flex;
  justify-content: space-between;
	margin-bottom: 64px;
}
.p-page-main .flexList li:nth-child(odd) {
  flex-direction: row-reverse;
}
.p-page-main .flexList .image {
  width: 40%;
}
.p-page-main .flexList .text {
  width: 56%;
}
.p-page-main .flexList .text p {
  margin: 0;
	margin-bottom: 16px;
}


.p-page-main .grid-full {
  margin: 0 0 26px;
}
.p-page-main .grid-full p {
  font-size: 1rem;
  text-align: center;
  margin: 5px 0 0;
}
.p-page-main .grid-full .h-type1 {
  object-fit: cover;
  height: 200px;
}
.p-page-main .grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.order-grid {
  display: flex;
  flex-wrap: wrap; 
  gap: 1.4rem;
}



.p-page-main .grid p {
  font-size: 1rem;
  margin: 5px 0 0;
}
.p-page-main .grid > div {
  margin: 0 0 26px;
}
.p-page-main .grid .gcol12 {
  width: 100%;
}
.p-page-main .grid .gcol6 {
  width: 49%;
}
.p-page-main .grid .gcol4 {
  width: 32%;
}
.p-page-main .grid .gcol5 {
  width: 46%;
}
.p-page-main .grid .gcol8 {
  width: 66%;
}
.p-page-main .grid .gcol3 {
  width: 23.5%;
}
.p-page-main .grid .h-type1 {
  object-fit: cover;
  height: 200px;
}
.p-page-main .grid .h-type2 {
  object-fit: cover;
  height: 100px;
}
.p-page-main .grid.center {
  display: flex;
  justify-content: center;
}
.p-page-main .grid.center > div {
  margin: 0 2% 26px 0;
}
.p-page-main .grid.center > div:last-child {
  margin: 0 0 26px;
}

/*
  レスポンシブ
————————————————————————————————————————— */
@media screen and (max-width: 767px) {
  /* ======================
  project(768)
  =========================*/
  .p-page-main h2 {
    font-size: 2rem;
  }
  .p-page-main h3 {
    font-size: 1.5rem;
  }
  .p-page-main .c-link {
    min-width: 300px;
  }
  .p-page-main .btnFlex {
    justify-content: center;
  }
  .p-page-main .p-list li {
    font-size: 1rem;
    margin-bottom: 6px;
    padding-left: 12px;
  }
  .p-page-main .p-list2 li {
    font-size: 1.125rem;
    margin-bottom: 6px;
  }

  .p-mainvisual .video-mask img {
    aspect-ratio: 488 / 602;
    width: 70%;
  }
  .p-mainvisual .p-mainvisual_hero {
    position: static;
    top: unset;
    left: unset;
    transform: translateY(0) translateX(0);
    width: 100%;
  }
  .p-mainvisual .p-mainvisual_hero .wrap {
    position: relative;
    z-index: 2;
    padding: 24px 0;
    margin-top: -80px;
  }
  .p-mainvisual .p-mainvisual_hero .wrap:after {
    width: 100%;
    height: 100%;
    left: 0;
    border-radius: 0;
  }
  @keyframes bgSlideIn {
    0% {
      width: 0;
    }
    100% {
      width: 100%;
    }
  }
  .p-mainvisual .p-mainvisual_hero h1 {
    font-size: 2.25rem;
    line-height: 1.3;
    text-align: center;
    margin-bottom: 0;
  }
  .p-mainvisual .p-mainvisual_hero .p-mainvisual_image {
    position: static;
    top: unset;
    left: unset;
    transform: translateY(0);
    width: 100%;
    margin-top: -208px;
    margin-left: -7%;
  }

  .p-breadCrumb {
    margin-top: 16px;
    justify-content: center;
  }
  .p-breadCrumb li {
    font-size: 0.75rem;
  }

  .p-page-main .mt128 {
    margin-top: 64px;
  }
  .p-page-main .mb128 {
    margin-bottom: 64px;
  }
  .p-page-main .grid-full .h-type1 {
    height: 220px;
  }
  .p-page-main .p-page__table01 th, .p-page-main .p-page__table01 td {
    display: block;
    padding: 8px 32px;
  }
  .p-page-main .p-page__table01 th {
    font-weight: 700;
    width: 100%;
    text-align: left;
    padding-bottom: 0;
  }
  .p-page-main .p-page__table01 td {
    width: 100%;
  }
  .p-page-main .p-page__table02 tr {
    border-bottom: none;
  }
  .p-page-main .p-page__table02 tr:first-child {
    border-top: none;
  }
  .p-page-main .p-page__table02 th, .p-page-main .p-page__table02 td {
    display: block;
    padding: 8px 32px;
  }
  .p-page-main .p-page__table02 th {
    width: 100%;
    text-align: left;
    border-bottom: 1px solid #D8D8D8;
  }
  .p-page-main .p-page__table02 th:first-child {
    border-top: none;
  }
  .p-page-main .p-page__table02 td {
    width: 100%;
    border-bottom: 1px solid #F8DB34;
  }
  .p-page-main .p-image__box {
    padding-bottom: 150px;
  }
  .p-page-main .p-image__box .image01 {
    width: 100%;
  }
  .p-page-main .p-image__box .image02 {
    position: relative;
    top: unset;
    right: unset;
    width: 45%;
    margin-top: -100px;
    margin-left: auto;
    margin-right: 5%;
    z-index: 3;
  }
  .p-page-main .p-image__box .image03 {
    position: relative;
    bottom: unset;
    right: unset;
    width: 60%;
    z-index: 2;
    margin-top: -100px;
    margin-left: 5%;
  }
  .p-page-main .flexList {
    gap: 72px;
  }
  .p-page-main .flexList li {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .p-page-main .flexList li:nth-child(odd) {
    flex-direction: column;
  }
  .p-page-main .flexList .image {
    width: 100%;
  }
  .p-page-main .flexList .text {
    width: 100%;
  }
  .p-page-main .step-content .secbg {
    padding: 100px 20px;
  }
  .p-page-main .step-content ul {
    gap: 56px;
  }
  .p-page-main .step-content li {
    flex-direction: column;
  }
  .p-page-main .step-content li::after {
    height: 56px;
    bottom: -56px;
    left: 50%;
    transform: translateX(-50%);
  }
  .p-page-main .step-content .left {
    width: 100%;
    flex-direction: column;
  }
  .p-page-main .step-content .right {
    width: 100%;
  }
  .p-page-main .step-content .number {
    width: 100%;
    line-height: 1.2;
    border-radius: 5px 5px 0 0;
    padding: 12px;
  }
  .p-page-main .step-content .image {
    width: 100%;
    padding-bottom: 0;
  }
  .p-page-main .step-content .image img {
    aspect-ratio: 4 / 3;
    height: auto;
  }

/**/
.p-page-main .step-content02 .secbg {
    padding: 100px 20px;
  }
  .p-page-main .step-content02 ul {
    gap: 56px;
  }
  .p-page-main .step-content02 li {
    flex-direction: column;
  }
  .p-page-main .step-content02 li::after {
    height: 56px;
    bottom: -56px;
    left: 50%;
    transform: translateX(-50%);
  }
  .p-page-main .step-content02 .left {
    width: 100%;
    flex-direction: column;
  }
  .p-page-main .step-content02 .right {
    width: 100%;
  }
  .p-page-main .step-content02 .number {
    width: 100%;
    line-height: 1.2;
    border-radius: 5px 5px 0 0;
    padding: 12px;
  }
  .p-page-main .step-content02 .image {
    width: 100%;
    padding-bottom: 0;
  }
  .p-page-main .step-content02 .image img {
    aspect-ratio: 4 / 3;
    height: auto;
  }
	
/**/	
  .p-page-main .grid .gcol6 {
    width: 100%;
  }
  .p-page-main .grid .gcol4 {
    width: 100%;
  }
  .p-page-main .grid .gcol5 {
    width: 100%;
  }
  .p-page-main .grid .gcol8 {
    width: 100%;
  }
  .p-page-main .grid .gcol3 {
    width: 49%;
  }
  .p-page-main .grid .h-type1 {
    height: 220px;
  }
  .p-page-main .grid .h-type2 {
    height: 120px;
  }
}
/*
  utillity
————————————————————————————————————————— */
.u-screen-reader-text {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  clip: rect(1px, 1px, 1px, 1px);
}

.u-visuallyHidden {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  margin: -1px;
}

.u-sp-none992 {
  display: none;
}

.u-sp-none768 {
  display: none;
}

.u-sp-none576 {
  display: none;
}

.u-link-none {
  pointer-events: none;
}

.u-m-auto {
  margin: 0 auto;
}

.u-display-center {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.u-position-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}

.u-fade {
  opacity: 0;
  transition: all 1s ease;
}

.u-fade2 {
  transition: all 2s ease;
}

.u-fade.is-active {
  opacity: 1;
  transform: none;
}

.u-fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s;
}

.u-fade-down {
  opacity: 0;
  transform: translateY(-20px);
  transition: all 1s;
}
.u-fade-down.is-active {
  transform: translateY(0);
}

.u-fade-down2 {
  transition: all 2s;
}

.u-fade-lr {
  transform: translate(-100px, 0);
}

.u-fade-rl {
  transform: translate(100px, 0);
}

.u-mask-bg {
  color: transparent;
  display: inline-block;
  overflow: hidden;
  position: relative;
}
.u-mask-bg h2 {
  opacity: 0;
  transition: all 1s ease;
}
.u-mask-bg img {
  opacity: 0;
  transition: all .6s ease;
  transform: translateX(-100%);
}
.u-mask-bg:after {
  background: #F8DB34;
  bottom: 0;
  content: '';
  display: block;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: translateX(110%);
}
.u-mask-bg.-black:after {
  background: #000;
  bottom: 0;
  content: '';
  display: block;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: translateX(110%);
}
.u-mask-bg.is-animated:after {
  animation: mask-bg 0.8s cubic-bezier(0.8, 0, 0.17, 1);
}
.u-mask-bg.is-animated h2 {
  opacity: 1;
}
.u-mask-bg.is-animated img {
  opacity: 1;
  transform: translateX(0);
}
.u-mask-bg.is-active:after {
  animation: mask-bg 0.8s cubic-bezier(0.8, 0, 0.17, 1);
}
.u-mask-bg.is-active h2 {
  opacity: 1;
}
.u-mask-bg.is-active img {
  opacity: 1;
  transform: translateX(0);
}

@keyframes mask-bg {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(110%);
  }
}
.u-fade-blur {
  opacity: 0;
  -moz-transition: -moz-transform 0.5s linear;
  -webkit-transition: -webkit-transform 0.5s linear;
  -o-transition: -o-transform 0.5s linear;
  -ms-transition: -ms-transform 0.5s linear;
  transition: transform 0.5s linear;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.u-fade-blur.is-active {
  -webkit-animation-name: imageBlur;
  animation-name: imageBlur;
  opacity: 1;
  transition: .8s;
}

@-webkit-keyframes imageBlur {
  from {
    opacity: 0;
    -webkit-filter: blur(15px);
    -moz-filter: blur(15px);
    -ms-filter: blur(15px);
    -o-filter: blur(15px);
    filter: blur(15px);
  }
  to {
    opacity: 1;
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -ms-filter: blur(0px);
    -o-filter: blur(0px);
    filter: blur(0px);
  }
}
@keyframes imageBlur {
  from {
    opacity: 0;
    -webkit-filter: blur(15px);
    -moz-filter: blur(15px);
    -ms-filter: blur(15px);
    -o-filter: blur(15px);
    filter: blur(15px);
  }
  to {
    opacity: 1;
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -ms-filter: blur(0px);
    -o-filter: blur(0px);
    filter: blur(0px);
  }
}
/*========= 流れるテキスト ===============*/
/*全共通*/
.slide-in {
  overflow: hidden;
  display: inline-block;
}

.slide-in_inner {
  display: inline-block;
}

/* 上下のアニメーション*/
.downAnime {
  opacity: 0;
  /* 事前に透過0 にして消しておく*/
}

.slideAnimeDownUp {
  animation-name: slideTextY100;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes slideTextY100 {
  from {
    transform: translateY(100%);
    /* 要素を上の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateY(0);
    /* 要素を元の位置に移動*/
    opacity: 1;
  }
}
.slideAnimeUpDown {
  animation-name: slideTextY-100;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes slideTextY-100 {
  from {
    transform: translateY(-100%);
    /* 要素を下の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateY(0);
    /* 要素を元の位置に移動*/
    opacity: 1;
  }
}
/*
  レスポンシブ
————————————————————————————————————————— */
@media screen and (min-width: 992px) {
  /* ======================
  utility(992)
  =========================*/
  .u-sp-none992 {
    display: block;
  }

  .u-pc-none992 {
    display: none;
  }

  a[href^="tel:"] {
    pointer-events: none;
    cursor: none;
  }
}
@media screen and (min-width: 768px) {
  /* ======================
  utility(768)
  =========================*/
  .u-sp-none768 {
    display: block;
  }

  .u-pc-none768 {
    display: none;
  }
}
@media screen and (min-width: 576px) {
  /* ======================
  utility(576)
  =========================*/
  .u-sp-none576 {
    display: block;
  }

  .u-pc-none576 {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .u-sp-visuallyHidden {
    position: absolute;
    white-space: nowrap;
    width: 1px;
    height: 1px;
    overflow: hidden;
    border: 0;
    padding: 0;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    margin: -1px;
  }

  .u-fade-up-delay1 {
    transition-delay: unset;
  }

  .u-fade-up-delay2 {
    transition-delay: unset;
  }

  .u-fade-up-delay3 {
    transition-delay: unset;
  }
}



/* スマホ表示のスタイル (例: 768px以下) */
@media (max-width: 768px) {

.order01 {
    order: 1; 
  }
 .order02 {
    order: 2;
  }
}


.text strong {
	color: #E77F3D;
}

.p-page-main img {
	border-radius: 10px;
}


/* contact, reserve */
/*********************
INPUTS
*********************/
input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"], select, textarea, .field {
	display: block;
	/*height: 40px;*/
	line-height: 40px;
	font-size: 1em;
	color: #5c6b80;
	border-radius: 3px;
	vertical-align: middle;
	box-shadow: none;
	border: 1px solid #ADABAB;
	width: 100%;
	font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
	background-color: #fff;
	-webkit-transition: background-color 0.24s ease-in-out;
	transition: background-color 0.24s ease-in-out;
	padding-left: 5px;
}
input[type="text"]:focus, input[type="text"]:active, input[type="password"]:focus, input[type="password"]:active, input[type="datetime"]:focus, input[type="datetime"]:active, input[type="datetime-local"]:focus, input[type="datetime-local"]:active, input[type="date"]:focus, input[type="date"]:active, input[type="month"]:focus, input[type="month"]:active, input[type="time"]:focus, input[type="time"]:active, input[type="week"]:focus, input[type="week"]:active, input[type="number"]:focus, input[type="number"]:active, input[type="email"]:focus, input[type="email"]:active, input[type="url"]:focus, input[type="url"]:active, input[type="search"]:focus, input[type="search"]:active, input[type="tel"]:focus, input[type="tel"]:active, input[type="color"]:focus, input[type="color"]:active, select:focus, select:active, textarea:focus, textarea:active, .field:focus, .field:active {
	background-color: #f7f8fa;
}
input[type="text"].error, input[type="text"].is-invalid, input[type="password"].error, input[type="password"].is-invalid, input[type="datetime"].error, input[type="datetime"].is-invalid, input[type="datetime-local"].error, input[type="datetime-local"].is-invalid, input[type="date"].error, input[type="date"].is-invalid, input[type="month"].error, input[type="month"].is-invalid, input[type="time"].error, input[type="time"].is-invalid, input[type="week"].error, input[type="week"].is-invalid, input[type="number"].error, input[type="number"].is-invalid, input[type="email"].error, input[type="email"].is-invalid, input[type="url"].error, input[type="url"].is-invalid, input[type="search"].error, input[type="search"].is-invalid, input[type="tel"].error, input[type="tel"].is-invalid, input[type="color"].error, input[type="color"].is-invalid, select.error, select.is-invalid, textarea.error, textarea.is-invalid, .field.error, .field.is-invalid {
	color: #FD5659;
	border-color: #FD5659;
	background-color: white;
	background-position: 99% center;
	background-repeat: no-repeat;
	/*background-image: url(../img/common/ask/ask_error.png);*/
	outline-color: #FD5659;
}
input[type="text"].success, input[type="text"].is-valid, input[type="password"].success, input[type="password"].is-valid, input[type="datetime"].success, input[type="datetime"].is-valid, input[type="datetime-local"].success, input[type="datetime-local"].is-valid, input[type="date"].success, input[type="date"].is-valid, input[type="month"].success, input[type="month"].is-valid, input[type="time"].success, input[type="time"].is-valid, input[type="week"].success, input[type="week"].is-valid, input[type="number"].success, input[type="number"].is-valid, input[type="email"].success, input[type="email"].is-valid, input[type="url"].success, input[type="url"].is-valid, input[type="search"].success, input[type="search"].is-valid, input[type="tel"].success, input[type="tel"].is-valid, input[type="color"].success, input[type="color"].is-valid, select.success, select.is-valid, textarea.success, textarea.is-valid, .field.success, .field.is-valid {
	color: #e6efc2;
	border-color: #e6efc2;
	background-color: white;
	background-position: 99% center;
	background-repeat: no-repeat;
	/*background-image: url(../img/common/ask/ask_ok.png);*/
	outline-color: #e6efc2;
}
input[type="text"][disabled], input[type="text"].is-disabled, input[type="password"][disabled], input[type="password"].is-disabled, input[type="datetime"][disabled], input[type="datetime"].is-disabled, input[type="datetime-local"][disabled], input[type="datetime-local"].is-disabled, input[type="date"][disabled], input[type="date"].is-disabled, input[type="month"][disabled], input[type="month"].is-disabled, input[type="time"][disabled], input[type="time"].is-disabled, input[type="week"][disabled], input[type="week"].is-disabled, input[type="number"][disabled], input[type="number"].is-disabled, input[type="email"][disabled], input[type="email"].is-disabled, input[type="url"][disabled], input[type="url"].is-disabled, input[type="search"][disabled], input[type="search"].is-disabled, input[type="tel"][disabled], input[type="tel"].is-disabled, input[type="color"][disabled], input[type="color"].is-disabled, select[disabled], select.is-disabled, textarea[disabled], textarea.is-disabled, .field[disabled], .field.is-disabled {
	cursor: not-allowed;
	border-color: #cfcfcf;
	opacity: 0.6;
}
input[type="text"][disabled]:focus, input[type="text"][disabled]:active, input[type="text"].is-disabled:focus, input[type="text"].is-disabled:active, input[type="password"][disabled]:focus, input[type="password"][disabled]:active, input[type="password"].is-disabled:focus, input[type="password"].is-disabled:active, input[type="datetime"][disabled]:focus, input[type="datetime"][disabled]:active, input[type="datetime"].is-disabled:focus, input[type="datetime"].is-disabled:active, input[type="datetime-local"][disabled]:focus, input[type="datetime-local"][disabled]:active, input[type="datetime-local"].is-disabled:focus, input[type="datetime-local"].is-disabled:active, input[type="date"][disabled]:focus, input[type="date"][disabled]:active, input[type="date"].is-disabled:focus, input[type="date"].is-disabled:active, input[type="month"][disabled]:focus, input[type="month"][disabled]:active, input[type="month"].is-disabled:focus, input[type="month"].is-disabled:active, input[type="time"][disabled]:focus, input[type="time"][disabled]:active, input[type="time"].is-disabled:focus, input[type="time"].is-disabled:active, input[type="week"][disabled]:focus, input[type="week"][disabled]:active, input[type="week"].is-disabled:focus, input[type="week"].is-disabled:active, input[type="number"][disabled]:focus, input[type="number"][disabled]:active, input[type="number"].is-disabled:focus, input[type="number"].is-disabled:active, input[type="email"][disabled]:focus, input[type="email"][disabled]:active, input[type="email"].is-disabled:focus, input[type="email"].is-disabled:active, input[type="url"][disabled]:focus, input[type="url"][disabled]:active, input[type="url"].is-disabled:focus, input[type="url"].is-disabled:active, input[type="search"][disabled]:focus, input[type="search"][disabled]:active, input[type="search"].is-disabled:focus, input[type="search"].is-disabled:active, input[type="tel"][disabled]:focus, input[type="tel"][disabled]:active, input[type="tel"].is-disabled:focus, input[type="tel"].is-disabled:active, input[type="color"][disabled]:focus, input[type="color"][disabled]:active, input[type="color"].is-disabled:focus, input[type="color"].is-disabled:active, select[disabled]:focus, select[disabled]:active, select.is-disabled:focus, select.is-disabled:active, textarea[disabled]:focus, textarea[disabled]:active, textarea.is-disabled:focus, textarea.is-disabled:active, .field[disabled]:focus, .field[disabled]:active, .field.is-disabled:focus, .field.is-disabled:active {
	background-color: #d5edf8;
}
input[type="password"] {
	letter-spacing: 0.3em;
}

.button {
	width: 380px;
	max-width: 100%;
	text-align: center;
	text-decoration: none;
	padding: 1em 1em;
	color: #000000;
	background: #FFE660;
	border: none;
	box-sizing: border-box;
	text-transform: uppercase;
	border-radius: 5px;
	background-clip: padding-box;
	cursor: pointer;
	font-size: 16px;
}
.button:hover {
	color: #000000;
	background: #FFCD06;
	box-sizing: border-box;
	text-transform: uppercase;
	border-radius: 5px;
	background-clip: padding-box;
	cursor: pointer;
	font-size: 16px;
}
.submit_box {
	margin: 2em 0 1em;
}



/* sitemap */
@media screen and (min-width: 768px) {
	.smap {
		margin-left: 5px;
		margin-bottom: 20px;
	}
	.smap ul {
		margin: 0;
		padding: 0;
		list-style-type: none;
	}
	.smap li {
		margin: 0;
		padding-bottom: 5px;
	}
	.smap a {
		display: block;
		color: #000000;
		width: 780px;
		padding: 10px 10px;
		text-decoration: none;
		margin-bottom: 5px;
		margin-top: 5px;
		border-bottom-width: 1px;
		border-bottom-style: dotted;
		border-bottom-color: #CCCCCC;
		background-image: none;
	}
	.smap .nolink {
		display: block;
		color: #000000;
		width: 780px;
		padding: 10px 10px;
		text-decoration: none;
		margin-bottom: 5px;
		margin-top: 5px;
		border-bottom-width: 1px;
		border-bottom-style: dotted;
		border-bottom-color: #CCCCCC;
		background-image: none;
	}
	.smap a:hover {
		color: #333;
		border-bottom-width: 1px;
		border-bottom-style: solid;
		border-bottom-color: #CCCCCC;
	}
	.smap ul ul {
		margin-left: 20px;
		padding: 0;
		list-style-type: none;
	}
	.smap li li a {
		display: block;
		color: #333;
		width: 750px;
		padding: 10px 10px;
		margin: 0;
		text-decoration: none;
		border-left-width: 1px;
		border-top-style: none;
		border-bottom-style: dotted;
		border-left-style: solid;
		border-left-color: #CCCCCC;
		border-bottom-width: 1px;
		border-bottom-color: #CCCCCC;
	}
	/* 第一階層 */
	.smap>li>a {
		font-size: 1.6rem;
		font-weight: bold;
	}
}
@media screen and (max-width: 767px) {
	.smap {
		margin-left: 5px;
		margin-bottom: 20px;
	}
	.smap ul {
		margin: 0;
		padding: 0;
		list-style-type: none;
	}
	.smap li {
		margin: 0;
		padding-bottom: 5px;
	}
	.smap a {
		display: block;
		color: #000000;
		padding: 10px 10px;
		text-decoration: none;
		margin-bottom: 5px;
		margin-top: 5px;
		border-bottom-width: 1px;
		border-bottom-style: dotted;
		border-bottom-color: #CCCCCC;
		background-image: none;
	}
	.smap .nolink {
		display: block;
		color: #000000;
		padding: 10px 10px;
		text-decoration: none;
		margin-bottom: 5px;
		margin-top: 5px;
		border-bottom-width: 1px;
		border-bottom-style: dotted;
		border-bottom-color: #CCCCCC;
		background-image: none;
	}
	.smap a:hover {
		color: #333;
		border-bottom-width: 1px;
		border-bottom-style: solid;
		border-bottom-color: #CCCCCC;
	}
	.smap ul ul {
		margin-left: 20px;
		padding: 0;
		list-style-type: none;
	}
	.smap li li a {
		display: block;
		color: #333;
		padding: 10px 10px;
		margin: 0;
		text-decoration: none;
		border-left-width: 1px;
		border-top-style: none;
		border-bottom-style: dotted;
		border-left-style: solid;
		border-left-color: #CCCCCC;
		border-bottom-width: 1px;
		border-bottom-color: #CCCCCC;
	}
	/* 第一階層 */
	.smap>li>a {
		font-size: 1.6rem;
		font-weight: bold;
	}
}

.gmap{
position: relative;
width: 100%;
height: 0;
padding-top: 80%;/*比率をお好みで*/
}
.gmap iframe{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}

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



.qa-list dl {
    position: relative;
    margin: 0;
    padding: 28px 80px 28px 30px;
    cursor: pointer;
    border-bottom: 1px solid #CCCCCC;
}
.qa-list dl:first-child {
    border-top: 1px solid #CCCCCC;
}
.qa-list dl::before {
    position: absolute;
    top: 35px;
    right: 35px;
    display: block;
    width: 7px;
    height: 7px;
    margin: auto;
    content: '';
    transform: rotate(135deg);
    border-top: 2px solid #CCCCCC;
    border-right: 2px solid #CCCCCC;
}
.qa-list .open::before {
    transform: rotate(-45deg);
}
.qa-list dl dt {
    position: relative;
    margin: 0;
    padding: 0 0 0 50px;
    font-weight: bold;
    font-size: 20px;
}
.qa-list dl dt::before {
    font-size: 22px;
    line-height: 1;
    position: absolute;
    top: 3px;
    left: 0;
    display: block;
    content: 'Q.';
    color: #F9E549;
}
.qa-list dl dd::before {
    font-size: 22px;
    line-height: 1;
    position: absolute;
    top: 3px;
    left: 2px;
    display: block;
    content: 'A.';
    font-weight: bold;
    color: #F9E549;
}
.qa-list dl dd {
    position: relative;
    display: none;
    height: auto;
    margin: 20px 0 0;
    padding: 0 0 0 50px;
}
.qa-list dl dd p {
    margin: 30px 0 0;
}
.qa-list dl dd p:first-child{
    margin-top: 0;
}

@media screen and (max-width: 767px) {
.qa-list dl {
    position: relative;
    padding: 15px 40px 15px 10px;
}
.qa-list dl::before {
    top: 20px;
    right: 20px;
    width: 7px;
    height: 7px;
}
.qa-list dl dt {
    padding: 0 0 0 30px;
    font-size: 14px;
}
.qa-list dl dt::before {
    font-size: 14px;
    top: 3px;
    left: 5px;
    content: 'Q.';
}
.qa-list dl dd::before {
    font-size: 14px;
    top: 5px;
    left: 5px;
    content: 'A.';
}
.qa-list dl dd {
    margin: 10px 0 0;
    padding: 0 0 0 30px;
    font-size: 14px;
}
.qa-list dl dd p {
    margin: 30px 0 0;
}
.qa-list dl dd p:first-child{
    margin-top: 0;
}
}


/*
  お知らせ
————————————————————————————————————————— */
.p-news .p-news__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12px 16px;
  padding-left: 0;
  border-bottom: 1px solid #CCCCCC;
}
.p-news .p-news__date {
  font-size: 0.875rem;
  display: block;
  margin: 0 45px 0 0;
}
.p-news .p-news__title {
  font-size: 0.875rem;
  line-height: 1.4;
  margin-bottom: 0;
}
.p-pagenation ul {
  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;
  width: 100%;
  margin-top: 100px;
}
.p-pagenation li {
  margin-right: 14px;
}
.p-pagenation li:last-child {
  margin-right: 0;
}
.p-pagenation li .page-numbers {
  width: 40px;
  border-radius: 50%;
  display: block;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: normal;
  text-align: center;
  padding: 10px;
  color: #E77F3D;
  border: solid 1px #E77F3D;
}
.p-pagenation li .page-numbers.current {
  background-color: #E77F3D;
  color: #fff;
}
.p-pagenation li .next,
.p-pagenation li .prev {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.875rem;
  color: #FF6600;
  background-color: unset;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: unset;
  border: unset;
  white-space: nowrap;
}
.p-news__datail .p-news__date {
  font-weight: bold;
  font-size: 22px;
  letter-spacing: 1px;
  display: block;
  margin: 0 0 25px;
  color: #FF6600;
}
.p-news__datail .p-news__title {
  font-weight: 700;
  font-size: 2.375rem;
  line-height: 1.4;
  position: relative;
  color: #000;
}
.p-news__datail .p-news__title:before {
  content: '';
  display: inline-block;
  background: #FF6600;
  width: 144px;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.p-news__datail .p-news__content {
  margin: 60px 0 0;
}
.p-news__datail .p-news__content p {
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 1.8;
}

.p-news__datail .p-news__content img {
    width: auto;
    height: auto;
}

@media screen and (max-width: 767px) {
  .p-news .p-news__body {
    height: 362px;
    margin-top: 0;
  }
  .p-news .p-news__box {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 16px 0;
  }
  .p-news .p-news__cate {
    margin-right: 12px;
  }
  .p-news .p-news__date {
    font-size: 0.875rem;
    margin: 0;
  }
  .p-news .p-news__title {
    font-size: 0.75rem;
    width: 100%;
    margin-top: 8px;
  }
  .p-pagenation {
    margin-top: 30px;
  }
  .p-pagenation li .page-numbers {
    margin-right: 12px;
    font-size: 1.25rem;
    padding: 5px;
    line-height: 26px;
  }
  .p-pagenation li .next,
  .p-pagenation li .prev {
    font-size: 1.125rem;
  }
  .p-news__datail .p-news__title {
    font-size: 1.75rem;
  }
}