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

html {
  scroll-behavior: smooth;
}

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,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font-weight: 400;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

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

ul,
ol {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

a {
  cursor: pointer;
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
}

img,
svg {
  width: 100%;
  vertical-align: bottom;
}

label,
input,
select,
option,
textarea,
button {
  cursor: pointer;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
}

input,
select {
  vertical-align: middle;
}

textarea {
  resize: none;
}

button {
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

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

::-webkit-input-placeholder {
  color: rgba(34, 34, 34, 0.4);
}

:-ms-input-placeholder {
  color: rgba(34, 34, 34, 0.4);
}

::-ms-input-placeholder {
  color: rgba(34, 34, 34, 0.4);
}

::-moz-placeholder {
  color: rgba(34, 34, 34, 0.4);
}

::placeholder {
  color: rgba(34, 34, 34, 0.4);
}

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

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

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

del {
  text-decoration: line-through;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

html {
  font-size: 62.5%;
}

body {
  font-style: normal;
  background-color: #fff6e7;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span,
div,
ul,
li,
dt,
dd,
dl,
th,
td,
time,
label,
input,
textarea {
  font-family: "Zen Maru Gothic", serif;
  color: #58473d;
  font-weight: 500;
  line-height: 1.5;
}

/* 中ページのサイドメニューここから */
.l-main {
  width: 100%;
  max-width: 156rem;
  padding: 0 28rem 0 5rem;
  margin-left: auto;
}

.l-contents {
  width: 100%;
  max-width: 100rem;
  margin-left: auto;
  background-color: #fff;
  border-radius: 3rem;
}

.l-inner {
  padding: 0 4rem;
}

.l-container {
  width: 100%;
  max-width: 69rem;
  margin: 0 auto;
}

.l-header {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 26rem;
  padding: 3rem;
  border-top-right-radius: 10rem;
  border-bottom-left-radius: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #fff;
  z-index: 800;
  -webkit-transition-duration: 0.1s;
          transition-duration: 0.1s;
  -webkit-transform-origin: left bottom;
          transform-origin: left bottom;
}

.l-header.active {
  position: fixed;
  left: 0;
  bottom: 0;
  border-bottom-left-radius: initial;
}

.l-header__logo {
  display: block;
  width: 17rem;
  margin: 0 auto 3rem;
}

.l-header__nav {
  margin-bottom: 3.5rem;
}

.l-header__item {
  text-align: center;
  margin-bottom: 2.5rem;
}

.l-header__item:last-of-type {
  margin-bottom: 0;
}

.l-header__item a {
  font-size: 2.2rem;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}

.l-header__item a:hover {
  color: #e77c7c;
}

.l-header__btn {
  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: 100%;
  max-width: 20rem;
  height: 5.4rem;
  border-radius: 5.4rem;
  margin: 0 auto;
  background-color: #e77c7c;
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  border: 0.2rem solid transparent;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}

.l-header__btn:hover {
  color: #e77c7c;
  border: 0.2rem solid #e77c7c;
  background-color: #fff;
}

.l-sp-header {
  display: none;
}

.l-sp-header__burger > span:last-of-type {
  width: 70%;
}

.sp-header-mask__item a:hover {
  color: #e77c7c;
}

.sp-header-mask__btn:hover {
  color: #e77c7c;
  border: 0.2rem solid #e77c7c;
  background-color: #fff;
}

.l-footer {
  padding-bottom: 2rem;
}

.l-footer__logo {
  width: 100%;
  max-width: 31rem;
  margin: 0 auto 4.5rem;
}

.l-footer__link-wrap {
  text-align: center;
}

.l-footer__link {
  display: inline-block;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}

.l-footer__link:hover {
  color: #e77c7c;
}

.l-footer__text {
  text-align: center;
  font-size: 1.3rem;
}
/* 中ページのサイドメニューここまで */
.c-opening {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  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;
  z-index: 999;
}

.c-opening__box {
  width: 100%;
  max-width: 36.6rem;
  margin: 0 auto;
}

.c-opening__logo {
  opacity: 0;
  width: 100%;
  max-width: 22.5rem;
  margin: 0 auto 5rem;
}

.c-opening__copy {
  opacity: 0;
  text-align: center;
  width: 100%;
  max-width: 36.6rem;
  margin: 0 auto;
  margin-left: 3rem;
}

.c-section__header {
  text-align: center;
}

.section-header__text {
  font-size: 2.2rem;
  line-height: 1.2;
  color: #e4a070;
  font-family: "Comfortaa", sans-serif;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.section-header__title {
  font-size: 3.2rem;
  line-height: 1.2;
}

.c-section__btn {
  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: 100%;
  max-width: 39rem;
  height: 7.4rem;
  border-radius: 7.4rem;
  margin: 0 auto;
  background-color: #e77c7c;
  -webkit-box-shadow: 0.4rem 0.4rem 0.4rem rgba(147, 147, 147, 0.5);
          box-shadow: 0.4rem 0.4rem 0.4rem rgba(147, 147, 147, 0.5);
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}

.c-section__btn:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transform: translate(0.5rem, 0.5rem);
          transform: translate(0.5rem, 0.5rem);
}

.section-btn__text {
  font-size: 2.2rem;
  color: #fff;
  font-weight: 700;
}

.c-following__btn {
  position: fixed;
  top: 15rem;
  right: 0;
  width: 12rem;
  padding: 3rem 1rem;
  border-top-left-radius: 3.8rem;
  border-bottom-left-radius: 3.8rem;
  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;
  background-color: #e77c7c;
  z-index: 500;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}

.c-following__btn:hover {
  background-color: #fff;
}

.following-btn__text {
  font-size: 2.5rem;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  color: #fff;
  margin-bottom: 2rem;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}

.c-following__btn:hover .following-btn__text {
  color: #e77c7c;
}

.following-btn__arrow {
  position: relative;
  display: block;
  width: 5.4rem;
  height: 5.4rem;
  border-radius: 50%;
  background-color: #fff;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}

.c-following__btn:hover .following-btn__arrow {
  background-color: #e77c7c;
}

.following-btn__arrow::before,
.following-btn__arrow::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  background-color: #e77c7c;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}

.c-following__btn:hover .following-btn__arrow::before,
.c-following__btn:hover .following-btn__arrow::after {
  background-color: #fff;
}

.following-btn__arrow::before {
  width: 1.8rem;
  height: 0.2rem;
  border-radius: 1.8rem;
}

.following-btn__arrow::after {
  top: 43%;
  width: 1rem;
  height: 0.2rem;
  border-radius: 1rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.c-sp-following__btn {
  display: none;
}

.c-sp-following__btn:hover {
  background-color: #fff;
  border: 0.1rem solid #ef834b;
}

.c-sp-following__btn:hover .sp-following-btn__text {
  color: #ef834b;
}

.c-sp-following__btn:hover .sp-following-btn__arrow {
  background-color: #ef834b;
}

.c-sp-following__btn:hover .sp-following-btn__arrow::before,
.c-sp-following__btn:hover .sp-following-btn__arrow::after {
  background-color: #fff;
}
.p-header__wrap {
  position: relative;
  padding: 4.5rem 4.5rem 0;
  margin-bottom: 4.5rem;
}

.p-fv {
  position: relative;
}

.p-fv__box {
  position: absolute;
  top: 13rem;
  left: 23rem;
}

.fv-box-content__copy {
  width: 100%;
  max-width: 52rem;
}

.p-news {
  padding: 9.5rem 0 18rem;
}

.p-news__header {
  margin-bottom: 6rem;
}

.p-news__list {
  margin-bottom: 5rem;
}

.p-news__item {
  border-top: dotted 0.1rem #949494;
}

.p-news__item:last-of-type {
  border-bottom: dotted 0.1rem #949494;
}

.news-item__ele {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 3rem 0;
}

.news-item__time {
  margin-right: 3rem;
}

.news-item__time-text {
  font-size: 1.8rem;
  color: #e77c7c;
  font-family: "Comfortaa", sans-serif;
  font-weight: 700;
}

.news-item__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: block;
  width: 100%;
  max-width: 43rem;
  font-size: 1.8rem;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}

.news-item__text:hover {
  color: #e77c7c;
}

.news-item__link {
  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-bottom: 0.1rem solid #e77c7c;
  margin-left: auto;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}

.news-item__link:hover {
  opacity: 0.5;
  border-bottom: 0.1rem solid transparent;
}

.news-item__link-text {
  font-size: 1.6rem;
  color: #e77c7c;
  margin-right: 0.3rem;
}

.news-item__link-arrow {
  display: block;
  width: 0.6rem;
}

.p-news__btn {
  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: 100%;
  max-width: 21rem;
  height: 5.4rem;
  border-radius: 5.4rem;
  margin: 0 auto;
  border: 0.2rem solid transparent;
  background-color: #e77c7c;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}

.p-news__btn:hover {
  border: 0.2rem solid #e77c7c;
  background-color: #fff;
}

.news-btn__text {
  font-size: 2.2rem;
  color: #fff;
  margin-right: 1rem;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}

.p-news__btn:hover .news-btn__text {
  color: #e77c7c;
}

.news-btn__arrow {
  position: relative;
  display: block;
  width: 1.8rem;
  height: 0.2rem;
  border-radius: 1.8rem;
  background-color: #fff;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}

.news-btn__arrow::after {
  content: "";
  display: block;
  position: absolute;
  top: -0.3rem;
  right: -0.1rem;
  width: 1rem;
  height: 0.2rem;
  border-radius: 1rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background-color: #fff;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}

.p-news__btn:hover .news-btn__arrow {
  background-color: #e77c7c;
}

.p-news__btn:hover .news-btn__arrow::after {
  background-color: #e77c7c;
}

.news-item__empty-text {
  text-align: center;
  font-size: 1.8rem;
  padding: 1rem 0;
}

.p-about {
  position: relative;
  padding-bottom: 13rem;
}

.p-about__bg {
  position: absolute;
  right: 4rem;
  bottom: 0;
  width: 100%;
  max-width: 83rem;
  z-index: 0;
}

.about-header {
  text-align: center;
  margin-bottom: 4.5rem;
}

.about-header__icon {
  width: 12rem;
  margin: 0 auto 2.5rem;
}

.about-header__title {
  font-size: 3rem;
  color: #437688;
}

.p-about__body {
  position: relative;
  z-index: 1;
}

.p-about__figure {
  margin-bottom: 6.5rem;
}

.p-about__text {
  text-align: center;
  font-size: 2.2rem;
  line-height: 2;
  font-weight: 400;
}

.p-feature {
  padding-bottom: 18rem;
}

.feature-header {
  text-align: center;
  margin-bottom: 7.5rem;
}

.feature-header__icon {
  width: 12rem;
  margin: 0 auto 2.5rem;
}

.feature-header__title {
  font-size: 3.2rem;
  color: #e77c7c;
  font-weight: 700;
}

.p-feature__box {
  margin-bottom: 14.5rem;
}

.p-feature__box:last-of-type {
  margin-bottom: 0;
}

.feature-box__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 5rem;
}

.feature-box__content {
  position: relative;
  z-index: 1;
  width: 28rem;
  margin-right: -4rem;
}

.p-feature__box:nth-of-type(2) .feature-box__content {
  text-align: right;
  width: 48rem;
  margin-right: 0;
  margin-left: -23rem;
}

.p-feature__box:nth-of-type(3) .feature-box__content {
  width: 35rem;
  margin-right: -10rem;
}

.feature-box-content__number {
  font-size: 9rem;
  line-height: 1;
  color: #ffbcc7;
  font-weight: 600;
  margin-bottom: 3.5rem;
}

.feature-box-content__title span {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 3.2rem;
  padding: 0.5rem;
  background-color: #fff;
}

.p-feature__box:nth-of-type(2) .feature-box-content__title {
  text-align: right;
}
.p-feature__box:nth-of-type(2) .feature-box-content__title span {
  margin-left: auto;
}

.feature-box__figure {
  width: 100%;
  max-width: 46rem;
}

.p-feature__box:nth-of-type(2) .feature-box__figure {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}

.feature-box__text {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 6rem;
}

.p-frow {
  padding-bottom: 16rem;
}

.p-flow__inner {
  position: relative;
}

.p-frow__bg {
  height: 42rem;
  background-size: contain;
  background-image: url(../images/image_frow-bg.png);
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}

.p-frow__bg:hover {
  opacity: 0.5;
}

.p-frow__content {
  position: absolute;
  top: 8rem;
  left: 34%;
  z-index: 10;
  text-align: center;
}

.frow-content__title {
  font-size: 3.6rem;
  line-height: 1.2;
  color: #fff;
  background-color: rgba(231, 124, 124, 0.8);
  padding: 0.3rem 0.6rem;
  margin-bottom: 3rem;
}

.frow-content__text-wrap span {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 2rem;
  background-color: #fff;
  padding: 0.4rem 0.8rem;
  margin: 0 auto 1.5rem;
}
.frow-content__text-wrap span:last-of-type {
  margin-bottom: 0;
}

.p-frow__footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 8rem;
  background-color: #ffcfcf;
  z-index: 10;
}

.frow-footer__flex {
  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;
  height: 8rem;
  padding: 0 1.5rem 0 7.5rem;
}

.frow-footer__logo {
  width: 21rem;
}

.frow-footer__btn {
  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: 43rem;
  height: 5.7rem;
  border-radius: 5.7rem;
  background-color: #fff;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}

.frow-footer__btn:hover {
  background-color: #e77c7c;
}

.frow-footer-btn__text {
  font-size: 2.5rem;
  color: #e77c7c;
  font-weight: 700;
  margin-right: 1rem;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}

.frow-footer__btn:hover .frow-footer-btn__text {
  color: #fff;
}

.frow-footer-btn__arrow {
  position: relative;
  display: block;
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  background-color: #e77c7c;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}

.frow-footer__btn:hover .frow-footer-btn__arrow {
  background-color: #fff;
}

.frow-footer-btn__arrow::before,
.frow-footer-btn__arrow::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  background-color: #fff;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}

.frow-footer__btn:hover .frow-footer-btn__arrow::before,
.frow-footer__btn:hover .frow-footer-btn__arrow::after {
  background-color: #e77c7c;
}

.frow-footer-btn__arrow::before {
  width: 1.8rem;
  height: 0.2rem;
  border-radius: 1.8rem;
}

.frow-footer-btn__arrow::after {
  top: 39%;
  width: 1rem;
  height: 0.2rem;
  border-radius: 1rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.p-access {
  padding-bottom: 11rem;
}

.p-access__header {
  margin-bottom: 3rem;
}

.p-access__map {
  margin-bottom: 4rem;
}
.p-access__map iframe {
  width: 100% !important;
  max-width: 100% !important;
  aspect-ratio: 686/437;
}

.p-access__content {
  width: 100%;
  max-width: 38rem;
  margin: 0 auto;
}

.access-content__text {
  font-size: 1.8rem;
  line-height: 2;
  font-weight: 400;
}

.access-content__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.access-content__link {
  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-bottom: 0.1rem solid #e77c7c;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  margin-top: 0.3rem;
}

.access-content__link:hover {
  opacity: 0.5;
  border-bottom: 0.1rem solid transparent;
}

.access-content__link-text {
  font-size: 1.8rem;
  color: #e77c7c;
  margin-right: 0.3rem;
}

.access-content__link-arrow {
  display: block;
  width: 0.7rem;
}


.p-contact__header {
  margin-bottom: 3.5rem;
}

.p-contact__text {
  text-align: center;
  font-size: 2rem;
  line-height: 2;
  margin-bottom: 4rem;
}

.p-contact__block {
  border-radius: 2rem;
  padding: 3rem 4rem;
}

.contact-content-block__heading {
  display: inline-block;
  padding-bottom: 0.7rem;
  margin-bottom: 3rem;
}

.contact-content-block-heading__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.contact-content-block-heading__icon {
  margin-right: 1rem;
}

.contact-content-block-heading__text {
  font-size: 1.8rem;
  line-height: 1;
}

.contact-content-block__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.contact-content-block-box__link span {
  display: block;
  line-height: 1;
  font-family: "Comfortaa", sans-serif;
  font-weight: 600;
}
.contact-content-block-box__link span:first-of-type {
  margin-right: 1rem;
}

.contact-content-block-box__text {
  font-size: 1.8rem;
  line-height: 1;
}

.contact-content__tel {
  display: block;
  margin-bottom: 2rem;
  background-color: rgba(195, 210, 104, 0.3);
}
.contact-content__tel .contact-content-block__heading {
  border-bottom: solid 0.1rem #9ead0b;
}
.contact-content__tel .contact-content-block-heading__icon {
  width: 1.5rem;
}
.contact-content__tel .contact-content-block-heading__text {
  color: #9ead0b;
}
.contact-content__tel .contact-content-block__box {
  margin-right: 4rem;
}
.contact-content__tel .contact-content-block-box__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.contact-content__tel .contact-content-block-box__link span {
  color: #9ead0b;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}
.contact-content__tel .contact-content-block-box__link span:first-of-type {
  font-size: 2.4rem;
}
.contact-content__tel .contact-content-block-box__link span:last-of-type {
  font-size: 4rem;
  margin-bottom: -0.5rem;
}
.contact-content__tel .contact-content-block-box__tel-link:hover span {
  color: #d1a800;
}
.contact-content__tel .contact-content-block-box__text {
  color: #9ead0b;
  margin-bottom: 0.5rem;
}

.contact-content__mail {
  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-bottom: 2rem;
  background-color: rgba(240, 212, 102, 0.3);
}
.contact-content__mail .contact-content-block__heading {
  border-bottom: solid 0.1rem #d1a800;
}
.contact-content__mail .contact-content-block-heading__icon {
  width: 2.5rem;
}
.contact-content__mail .contact-content-block-heading__text {
  color: #d1a800;
}
.contact-content__mail .contact-content-block-box__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.contact-content__mail .contact-content-block-box__link span {
  color: #d1a800;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}
.contact-content__mail .contact-content-block-box__link span:first-of-type {
  font-size: 2.8rem;
}
.contact-content__mail .contact-content-block-box__link span:last-of-type {
  font-size: 2.8rem;
}
.contact-content__mail .contact-content-block-box__mail-link:hover span {
  color: #9ead0b;
}
.contact-content__mail .contact-block__arrow {
  position: relative;
  display: block;
  width: 6.5rem;
  height: 6.5rem;
  border-radius: 50%;
  background-color: #f0d466;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}
.contact-content__mail .contact-block__arrow:hover {
  background-color: #fff;
}
.contact-content__mail .contact-block__arrow::before,
.contact-content__mail .contact-block__arrow::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  background-color: #fff;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}
.contact-content__mail .contact-block__arrow:hover:before,
.contact-content__mail .contact-block__arrow:hover:after {
  background-color: #f0d466;
}
.contact-content__mail .contact-block__arrow::before {
  width: 1.8rem;
  height: 0.3rem;
  border-radius: 1.8rem;
}
.contact-content__mail .contact-block__arrow::after {
  top: 43%;
  width: 1rem;
  height: 0.3rem;
  border-radius: 1rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.contact-content__p {
  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;
  background-color:#ffe6eb;
  font-size: 2.8rem;
  padding: 30px 30px;
}
.contact-content__mail .contact-content-block-box__link span {
  color: #d1a800;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}

/* プライバシーポリシーここから */
.p-privacy {
  padding: 9.5rem 0 2rem;
}
.privacy_title {
  font-size: 2.5rem;
  font-weight: 500;
  padding-top: 3rem;
  margin-bottom: 3rem;
  border-bottom: solid 0.5rem #c3d268;
}
.privacy_text {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 6rem;
}
/* プライバシーポリシーここまで */

/* 準備中ページで追加したCSSここから */

.downroad:first-of-type {
  color: #e77c7c;
  font-size: 2.8rem;
}
.downroad:last-of-type {
  font-size: 2.8rem;
}
.downroad:hover {
  color: #ffffff;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}

.contact-content__p .contact-content-block-box__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.contact-content__p .contact-content-block-box__link span {
  color: #e77c7c;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}

.contact-content__p .contact-block__arrow:hover {
  background-color: #fff;
}
.contact-content__p .contact-block__arrow {
  position: relative;
  display: block;
  width: 6.5rem;
  height: 6.5rem;
  border-radius: 50%;
  background-color: #e77c7c;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}
.contact-content__mail .contact-block__arrow:hover {
  background-color: #fff;
}

.contact-content__p .contact-block__arrow::before,
.contact-content__p .contact-block__arrow::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  background-color: #fff;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}
.contact-content__p .contact-block__arrow:hover:before,
.contact-content__p .contact-block__arrow:hover:after {
  background-color: #e77c7c;
}
.contact-content__p .contact-block__arrow::before {
  width: 1.8rem;
  height: 0.3rem;
  border-radius: 1.8rem;
}
.contact-content__p .contact-block__arrow::after {
  top: 43%;
  width: 1rem;
  height: 0.3rem;
  border-radius: 1rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}


.comingsoon_back {
  background-color: #fff;
  max-width: 1000px;
  margin: 50px auto 50px;
  padding-top: 100px;
  border-radius: 20px;
}
.comingsoon_rogo {
  padding-top: 100px;
}
/* 準備中ページここまで */

@media screen and (max-width:1920px) {
  html {
    font-size: 0.5208333333vw;
  }
}
@media screen and (max-width:1440px) {
  html {
    font-size: 0.6944444444vw;
  }
  .l-main {
    width: 100%;
    max-width: 100%;
    padding: 0 12rem 0 4rem;
  }
  .l-contents {
    max-width: 90rem;
  }
  .l-header {
    width: 22rem;
    padding: 3rem 1.5rem;
    border-top-right-radius: 10rem;
    border-bottom-left-radius: 4rem;
  }
  .l-header__logo {
    width: 12rem;
    margin: 0 auto 3rem;
  }
  .l-header__nav {
    margin-bottom: 2.5rem;
  }
  .l-header__item {
    margin-bottom: 1.5rem;
  }
  .l-header__item a {
    font-size: 2rem;
  }
  .l-header__btn {
    max-width: 17rem;
    height: 5rem;
    border-radius: 5rem;
    font-size: 2rem;
  }
  .p-fv__box {
    top: 7rem;
    left: 18rem;
  }
  .fv-box-content__copy {
    max-width: 40rem;
  }
  .p-frow__content {
    top: 7rem;
  }
}
@media screen and (max-width:768px) {
  html {
    font-size: 2.6666666667vw;
  }
  .l-main {
    max-width: 100%;
    padding: 0 2rem;
    margin: 0 auto;
  }
  .l-contents {
    max-width: 100%;
    border-radius: 3rem;
    margin: 0 auto;
  }
  .l-inner {
    padding: 0 1.5rem;
  }
  .l-container {
    max-width: 100%;
  }
  .l-header {
    display: none;
  }
  .l-sp-header {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 10rem;
    padding: 0 2rem;
    background-color: #fff;
    z-index: 800;
  }
  .l-sp-header__body {
    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;
    height: 10rem;
  }
  .l-sp-header__logo {
    display: block;
    width: 15.5rem;
  }
  .l-sp-header__burger-btn {
    position: relative;
    padding: 1.2rem 1.05rem 1.1rem;
    border-radius: 1rem;
    background-color: #e77c7c;
    z-index: 800;
  }
  .l-sp-header__burger {
    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: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 2.5rem;
    height: 0.8rem;
    margin: 0 auto 0.4rem;
  }
  .l-sp-header__burger > span {
    display: block;
    width: 100%;
    height: 0.1rem;
    background-color: #fff;
    -webkit-transition-duration: 0.3s;
            transition-duration: 0.3s;
    opacity: 1;
  }
  .l-sp-header__burger > span:first-of-type.is_active {
    -webkit-transform: translateY(0.4rem) rotate(-25deg);
            transform: translateY(0.4rem) rotate(-25deg);
  }
  .l-sp-header__burger > span:last-of-type.is_active {
    width: 100%;
    -webkit-transform: translateY(-0.3rem) rotate(25deg);
            transform: translateY(-0.3rem) rotate(25deg);
  }
  .l-sp-header__burger-text {
    font-size: 1rem;
    line-height: 1;
    color: #fff;
    font-family: "Comfortaa", sans-serif;
    font-weight: 700;
  }
  .l-sp-header__mask {
    overflow: auto;
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 500;
    opacity: 0;
    background-color: #fff6e7;
    pointer-events: none;
    -webkit-transition-duration: 0.5s;
            transition-duration: 0.5s;
  }
  .l-sp-header__mask.is_active {
    opacity: 1;
    pointer-events: auto;
  }
  .sp-header-mask__inner {
    padding: 4rem 3rem;
  }
  .sp-header-mask__container {
    padding: 3rem;
    border-radius: 4rem;
    background-color: #fff;
  }
  .sp-header-mask__logo {
    width: 100%;
    max-width: 17rem;
    margin: 0 auto 5rem;
  }
  .sp-header-mask__nav {
    margin-bottom: 4rem;
  }
  .sp-header-mask__item {
    text-align: center;
    margin-bottom: 2.5rem;
  }
  .sp-header-mask__item:last-of-type {
    margin-bottom: 0;
  }
  .sp-header-mask__item a {
    font-size: 1.8rem;
    -webkit-transition-duration: 0.5s;
            transition-duration: 0.5s;
  }
  .sp-header-mask__btn {
    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: 100%;
    max-width: 20rem;
    height: 5.4rem;
    border-radius: 5.4rem;
    margin: 0 auto;
    background-color: #e77c7c;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    border: 0.2rem solid transparent;
    -webkit-transition-duration: 0.5s;
            transition-duration: 0.5s;
  }
  .l-footer {
    padding-bottom: 2rem;
  }
  .l-footer__logo {
    max-width: 17rem;
    margin: 0 auto 2rem;
  }
  .l-footer__link {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
  }
  .l-footer__text {
    font-size: 1.2rem;
  }
  .c-opening__box {
    max-width: 27rem;
    margin: 0 auto;
  }
  .c-opening__logo {
    max-width: 16.5rem;
    margin: 0 auto 4rem;
  }
  .c-opening__copy {
    max-width: 27rem;
    margin: 0 auto;
    margin-left: 2rem;
  }
  .section-header__text {
    font-size: 1.6rem;
    margin-bottom: 0.3rem;
  }
  .section-header__title {
    font-size: 2.4rem;
  }
  .c-section__btn {
    max-width: 27rem;
    height: 6.3rem;
    border-radius: 6.3rem;
  }
  .section-btn__text {
    font-size: 1.8rem;
  }
  .c-following__btn {
    display: none;
  }
  .c-sp-following__btn {
    display: block;
    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;
    position: fixed;
    bottom: 0;
    right: 0;
    width: 22rem;
    height: 6.2rem;
    border-top-left-radius: 4rem;
    padding: 1rem 2rem;
    background-color: #ef834b;
    border: 0.1rem solid transparent;
    z-index: 500;
    -webkit-transition-duration: 0.5s;
            transition-duration: 0.5s;
  }
  .c-sp-following__btn.is_hidden {
    opacity: 0;
    visibility: hidden;
  }
  .sp-following-btn__text {
    font-size: 1.5rem;
    color: #fff;
    -webkit-transition-duration: 0.5s;
            transition-duration: 0.5s;
  }
  .sp-following-btn__arrow {
    position: relative;
    display: block;
    width: 3.3rem;
    height: 3.3rem;
    border-radius: 50%;
    background-color: #fff;
    -webkit-transition-duration: 0.5s;
            transition-duration: 0.5s;
  }
  .sp-following-btn__arrow::before,
.sp-following-btn__arrow::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
    background-color: #ef834b;
    -webkit-transition-duration: 0.5s;
            transition-duration: 0.5s;
  }
  .sp-following-btn__arrow::before {
    width: 1.2rem;
    height: 0.2rem;
    border-radius: 1rem;
  }
  .sp-following-btn__arrow::after {
    top: 41%;
    width: 0.7rem;
    height: 0.2rem;
    border-radius: 0.5rem;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .p-header__wrap {
    padding: 10rem 0 0;
    margin-bottom: 2.5rem;
  }
  .p-fv__box {
    top: auto;
    left: auto;
    right: 2rem;
    bottom: 2.5rem;
  }
  .fv-box-content__copy {
    max-width: 22.5rem;
  }
  .p-news {
    padding: 3.5rem 0 7.5rem;
  }
  .p-news__header {
    margin-bottom: 2rem;
  }
  .news-header__title {
    font-size: 2rem;
  }
  .p-news__list {
    margin-bottom: 3rem;
  }
  .news-item__ele {
    display: block;
    padding: 1.5rem 0;
  }
  .news-item__time {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
  .news-item__time-text {
    font-size: 1.6rem;
  }
  .news-item__text {
    max-width: 100%;
    font-size: 1.7rem;
  }
  .news-item__link {
    display: none;
  }
  .p-news__btn {
    max-width: 18rem;
    height: 4.8rem;
  }
  .news-btn__text {
    font-size: 1.8rem;
  }
  .news-btn__arrow {
    width: 1.2rem;
    height: 0.2rem;
    border-radius: 1rem;
  }
  .news-btn__arrow::after {
    top: -0.2rem;
    right: -0.2rem;
    width: 0.7rem;
    height: 0.2rem;
    border-radius: 0.5rem;
  }
  .news-item__empty-text {
    font-size: 1.7rem;
    padding: 1rem 0;
  }
  .p-about {
    padding-bottom: 6rem;
  }
  .p-about__bg {
    top: 15rem;
    right: auto;
    left: 0;
    bottom: auto;
    width: 100%;
    max-width: 100%;
  }
  .about-header {
    margin-bottom: 4.5rem;
  }
  .about-header__icon {
    width: 11.8rem;
    margin: 0 auto 4rem;
  }
  .about-header__title {
    font-size: 2.4rem;
  }
  .p-about__figure {
    margin-bottom: 6rem;
  }
  .p-about__text {
    font-size: 1.8rem;
  }
  .p-feature {
    padding-bottom: 8.5rem;
  }
  .feature-header {
    margin-bottom: 3rem;
  }
  .feature-header__icon {
    width: 8rem;
    margin: 0 auto 2.5rem;
  }
  .feature-header__title {
    font-size: 2.4rem;
  }
  .p-feature__box {
    margin-bottom: 7rem;
  }
  .feature-box__flex {
    position: relative;
    display: block;
    margin-bottom: 4rem;
  }
  .feature-box__content {
    position: absolute;
    top: 3.5rem;
    left: 2.5rem;
    width: 80%;
    margin-right: 0;
  }
  .p-feature__box:nth-of-type(2) .feature-box__content {
    width: 85%;
    margin-left: 0;
  }
  .p-feature__box:nth-of-type(3) .feature-box__content {
    width: 100%;
    margin-right: 0;
  }
  .feature-box-content__number {
    font-size: 7.5rem;
    margin-bottom: 8.5rem;
  }
  .p-feature__box:nth-of-type(2) .feature-box-content__number {
    margin-bottom: 3rem;
  }
  .feature-box-content__title span {
    font-size: 2rem;
    padding: 0.3rem 0.5rem;
  }
  .feature-box__figure {
    max-width: 100%;
  }
  .feature-box__text {
    font-size: 1.8rem;
    margin-bottom: 4rem;
  }
  .p-frow {
    padding-bottom: 7rem;
  }
  .p-frow__bg {
    height: 37rem;
    background-size: cover;
    background-position: 65% 0;
    background-image: url(../images/image_frow-bg_sp.png);
  }
  .p-frow__content {
    top: 8rem;
    left: 3.5rem;
  }
  .frow-content__title {
    font-size: 3rem;
    padding: 0.3rem 0.5rem;
    margin-bottom: 3rem;
  }
  .frow-content__text-wrap span {
    font-size: 1.7rem;
    padding: 0.3rem 0.5rem;
    margin: 0 auto 1rem;
  }
  .p-frow__footer {
    height: 6.5rem;
  }
  .frow-footer__flex {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 6.5rem;
    padding: 0 2rem;
  }
  .frow-footer__logo {
    display: none;
  }
  .frow-footer__btn {
    width: 24rem;
    height: 4.3rem;
    border-radius: 4.3rem;
  }
  .frow-footer-btn__text {
    font-size: 1.8rem;
    margin-right: 0.5rem;
  }
  .frow-footer-btn__arrow {
    width: 3.3rem;
    height: 3.3rem;
  }
  .frow-footer-btn__arrow::before {
    width: 1.2rem;
    height: 0.2rem;
    border-radius: 1rem;
  }
  .frow-footer-btn__arrow::after {
    width: 0.7rem;
    height: 0.2rem;
    border-radius: 0.5rem;
  }
  .p-access {
    padding-bottom: 7rem;
  }
  .p-access__header {
    margin-bottom: 3rem;
  }
  .p-access__map {
    margin-bottom: 2rem;
  }
  .p-access__map iframe {
    aspect-ratio: 305/195;
  }
  .p-access__content {
    max-width: 100%;
  }
  .access-content__text {
    font-size: 1.6rem;
  }
  .access-content__flex {
    display: block;
  }
  .access-content__flex .access-content__text {
    margin-bottom: 3rem;
  }
  .access-content__link {
    width: 14rem;
    font-size: 1.6rem;
    margin-top: 0;
    margin-left: auto;
  }
  .access-content__link-text {
    font-size: 1.6rem;
    margin-right: 0.3rem;
  }
  .access-content__link-arrow {
    width: 0.6rem;
    margin-bottom: 1rem;
  }
  .p-contact {
    padding-bottom: 5rem;
  }
  .p-contact__header {
    margin-bottom: 3rem;
  }
  .p-contact__text {
    font-size: 1.8rem;
    margin-bottom: 3rem;
  }
  .p-contact__block {
    border-radius: 2rem;
  }
  .contact-content-block__heading {
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
  .contact-content-block-heading__icon {
    margin-right: 0.5rem;
  }
  .contact-content-block-heading__text {
    font-size: 1.6rem;
  }
  .contact-content-block__box {
    display: block;
  }
  .contact-content-block-box__link span:first-of-type {
    margin-right: 0;
  }
  .contact-content-block-box__text {
    font-size: 1.8rem;
  }
  .contact-content__tel {
    padding: 3rem 3.5rem 3rem 2rem;
    margin-bottom: 1.5rem;
  }
  .contact-content__tel .contact-content-block-heading__icon {
    width: 1.5rem;
  }
  .contact-content__tel .contact-content-block__box {
    margin-right: 0;
  }
  .contact-content__tel .contact-content-block-box__link {
    margin-bottom: 1rem;
  }
  .contact-content__tel .contact-content-block-box__link span:first-of-type {
    font-size: 2.4rem;
  }
  .contact-content__tel .contact-content-block-box__link span:last-of-type {
    font-size: 2.8rem;
    margin-bottom: -0.2rem;
  }
  .contact-content__tel .contact-content-block-box__text {
    margin-bottom: 0;
  }
  .contact-content__mail {
    position: relative;
    padding: 3rem 4rem 3rem 2rem;
  }
  .contact-content__mail .contact-content-block-heading__icon {
    width: 2rem;
  }
  .contact-content__mail .contact-content-block-box__link {
    display: block;
  }
  .contact-content__mail .contact-content-block-box__link span:first-of-type {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  .contact-content__mail .contact-content-block-box__link span:last-of-type {
    font-size: 2rem;
  }
  .contact-content__mail .contact-block__arrow {
    position: absolute;
    width: 3.8rem;
    height: 3.8rem;
    bottom: 3rem;
    right: 1.5rem;
  }
  .contact-content__mail .contact-block__arrow::before {
    width: 1.2rem;
    height: 0.2rem;
    border-radius: 1rem;
  }
  .contact-content__mail .contact-block__arrow::after {
    width: 0.7rem;
    height: 0.2rem;
    border-radius: 0.5rem;
  }
}
@media screen and (max-width: 768px) {
  .u-under__none {
    display: none !important;
  }
}
@media screen and (min-width: 769px) {
  .u-over__none {
    display: none !important;
  }
}