@charset "UTF-8";
/* ---------------------------------------
  基本情報
-----------------------------------------*/
html {
  background-color: #fffaec;
  overflow-y: scroll;
  font-size: 62.5%;
}
@media screen and (max-width: 1366px) {
  html {
    font-size: 0.7320644217vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.5641025641vw;
  }
}

body, h1, h2, h3, h4, h5, h6, p, address,
ul, ol, li, dl, dt, dd,
table, th, td, img, form {
  margin: 0;
  padding: 0;
  border: none;
  line-height: 100%;
  list-style-type: none;
  font-style: normal;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  text-align: left;
  color: #333333;
  word-break: break-word;
}

input, button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: "Noto Sans JP", sans-serif;
  color: #333333;
  font-weight: 700;
}

textarea {
  resize: vertical;
}

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

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

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

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

/* responsive
--------------------------------*/
@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
/* base
--------------------------------*/
p, dt, dd, li, th, td,
input, button, textarea, select {
  font-size: 1.8rem;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  p, dt, dd, li, th, td,
  input, button, textarea, select {
    font-size: 1.6rem;
  }
}

@media screen and (min-width: 768px) {
  .tel-link {
    pointer-events: none;
  }
}

@media screen and (max-width: 767px) {
  body {
    -webkit-text-size-adjust: 100%;
  }
  img {
    width: 100%;
  }
}
/* ---------------------------------------------
  レイアウト
-----------------------------------------------*/
.l-wrap {
  max-width: 80rem;
  width: calc(100% - 4rem);
  margin-left: auto;
  margin-right: auto;
}
.l-wrap.-l {
  max-width: 100rem;
}

/* ---------------------------------------------
  装飾
-----------------------------------------------*/
.txt-center {
  text-align: center;
}

/* ---------------------------------------------
  パーツ
-----------------------------------------------*/
/* ボタン
--------------------------------*/
.c-btn {
  text-align: center;
}
.c-btn_link {
  font-size: 1.6rem;
  padding-right: 4rem;
  position: relative;
}
.c-btn_link::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 2rem;
  height: 1rem;
  transition: 0.3s;
  background: url(../img/common/arrow.svg) no-repeat center center/contain;
}
.c-btn_link::after {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #333333;
}
@media screen and (min-width: 768px) {
  .c-btn_link:hover::before {
    right: -1rem;
  }
}

/* タイトル
--------------------------------*/
.c-secttl {
  font-size: 3rem;
  text-align: center;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .c-secttl {
    font-size: 2.4rem;
  }
}
.c-secttl span {
  position: relative;
}
.c-secttl span::before {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: -0.5rem;
  width: calc(100% + 1rem);
  height: 2rem;
  background-color: #f8d3d6;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .c-secttl span::before {
    height: 1.5rem;
  }
}
.c-secttl span span {
  position: relative;
  z-index: 2;
}
.c-secttl span span::before {
  content: none;
}
.c-secttl.-orange span::before {
  background-color: #ffd3ac;
}
.c-secttl.-green span::before {
  background-color: #e4eea4;
}
.c-secttl.-s {
  font-size: 2.6rem;
}

.c-ttl {
  font-size: 2.6rem;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .c-ttl {
    font-size: 2.2rem;
  }
}
.c-ttl.-pink {
  color: #e41178;
}
.c-ttl.-orange {
  color: #e56b00;
}
.c-ttl.-green {
  color: #899e0c;
}
.c-ttl.-center {
  text-align: center;
}
.c-ttl.-gray {
  color: #888888;
}
.c-ttl.-s {
  font-size: 2.2rem;
}
@media screen and (max-width: 767px) {
  .c-ttl.-s {
    font-size: 2rem;
  }
}
.c-ttl.-ss {
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .c-ttl.-ss {
    font-size: 2rem;
  }
}

/* リスト
--------------------------------*/
.c-list_item {
  width: 100%;
  height: 8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.6rem;
  text-align: center;
  color: #fff;
  background-color: #eb7aa0;
  border-radius: 2rem;
}
@media screen and (max-width: 767px) {
  .c-list_item {
    font-size: 2.2rem;
    height: 8.8rem;
    line-height: 1.3636363636;
    flex-direction: column;
  }
}
.c-list_item:nth-child(n+2) {
  margin-top: 2rem;
}
.c-list_item span {
  font-size: 2.2rem;
}
@media screen and (max-width: 767px) {
  .c-list_item span {
    font-size: 1.8rem;
  }
}
.c-list.-pink03 .c-list_item {
  background-color: #f8d3d6;
  color: #333333;
}
.c-list.-orange .c-list_item {
  background-color: #ffd3ac;
  color: #333333;
}
.c-list.-green .c-list_item {
  background-color: #e4eea4;
  color: #333333;
}

.c-dl.-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem 4rem;
}
.c-dl.-flex .item {
  margin-top: 0;
}
.c-dl.-flex .item:nth-child(n+2) {
  margin-top: 0;
}
.c-dl.-flex .item.-half dd {
  height: 14rem;
}
@media screen and (max-width: 767px) {
  .c-dl.-flex .item.-half dd {
    height: auto;
  }
}
.c-dl.-center .item dt {
  text-align: center;
}
.c-dl.-center .item dd {
  padding-top: 2rem;
}
@media screen and (max-width: 767px) {
  .c-dl.-center .item dd {
    padding-top: 1.4rem;
  }
}
.c-dl.-l .item dt {
  font-size: 2.6rem;
}
@media screen and (max-width: 767px) {
  .c-dl.-l .item dt {
    font-size: 2.4rem;
  }
}
.c-dl .item.-half {
  width: calc((100% - 4rem) / 2);
}
@media screen and (max-width: 767px) {
  .c-dl .item.-half {
    width: 100%;
  }
}
.c-dl .item:nth-child(n+2) {
  margin-top: 3rem;
}
.c-dl .item dt {
  background-color: #eb7aa0;
  padding: 1rem 4rem;
  border-radius: 2rem 2rem 0 0;
  color: #fff;
  font-size: 2.2rem;
}
@media screen and (max-width: 767px) {
  .c-dl .item dt {
    font-size: 2rem;
    padding: 1.4rem 1.5rem;
  }
}
.c-dl .item dd {
  background-color: #fff;
  padding: 1rem 4rem 2rem;
  border-radius: 0 0 2rem 2rem;
}
@media screen and (max-width: 767px) {
  .c-dl .item dd {
    padding: 1.4rem 2.5rem 2rem;
  }
}
.c-dl.-orange dt {
  background-color: #e56b00;
}
.c-dl.-green dt {
  background-color: #899e0c;
}

/* 追従ボタン
--------------------------------*/
.c-btn-box {
  position: fixed;
  z-index: 999;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .c-btn-box {
    transform: translateX(-50%);
    left: 50%;
    top: auto;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
  }
}
.c-btn-box .btn:nth-child(2) {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .c-btn-box .btn:nth-child(2) {
    margin-top: 0;
  }
}
.c-btn-box .btn:nth-child(2) a {
  padding-top: 6rem;
  background-color: #b0c91a;
}
@media screen and (max-width: 767px) {
  .c-btn-box .btn:nth-child(2) a {
    padding-top: 0;
  }
}
.c-btn-box .btn:nth-child(2) a::before {
  content: "";
  position: absolute;
  top: 2.5rem;
  left: 6rem;
  transform: translate(0);
  width: 3.5rem;
  height: 4.5rem;
  background: url(../img/common/icon_tel_white.svg) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .c-btn-box .btn:nth-child(2) a::before {
    width: 1.8rem;
    height: 2.5rem;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
  }
}
.c-btn-box .btn a {
  padding-top: 4rem;
  width: 11rem;
  height: 32rem;
  background-color: #eb7aa0;
  display: flex;
  justify-content: center;
  align-items: center;
  writing-mode: vertical-rl;
  text-align: center;
  flex-direction: column;
  color: #fff;
  font-size: 2.4rem;
  line-height: 1.5;
  border-radius: 2rem 0 0 2rem;
  text-orientation: upright;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-btn-box .btn a {
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .c-btn-box .btn a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .c-btn-box .btn a {
    padding-top: 0;
    width: 17rem;
    height: 5rem;
    border-radius: 1rem 1rem 0 0;
    font-size: 1.6rem;
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    line-height: 1.25;
    padding-left: 2.5rem;
  }
}
.c-btn-box .btn a img {
  width: 2.1rem;
  margin-top: -5rem;
}
@media screen and (max-width: 767px) {
  .c-btn-box .btn a img {
    display: none;
  }
}
.c-btn-box .btn a::before {
  content: "";
  position: absolute;
  top: 5rem;
  transform: translateX(-50%);
  left: 50%;
  width: 5rem;
  height: 3.5rem;
  background: url(../img/common/icon_mail_white.svg) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .c-btn-box .btn a::before {
    top: 50%;
    transform: translateY(-50%);
    left: 1rem;
    width: 2.5rem;
    height: 1.8rem;
  }
}

/* ---------------------------------------------
  header
-----------------------------------------------*/
.l-header {
  position: fixed;
  z-index: 9999;
  width: 100%;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .l-header {
    height: 8rem;
    display: flex;
    align-items: center;
  }
}
.l-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5rem;
  background: url(../img/common/bg_body.png) no-repeat center center/cover;
}
.l-header_inner {
  padding: 4rem 0;
  max-width: 124.6rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-header_inner {
    padding: 0 0 0 2rem;
    margin: 0;
    width: 100%;
    justify-content: space-between;
  }
}
.l-header_left {
  display: flex;
  align-items: center;
  gap: 3.5rem;
}
.l-header_left .logo {
  width: 19.1rem;
}
@media screen and (max-width: 767px) {
  .l-header_left .logo {
    width: 16rem;
  }
}
.l-header_left .txt {
  font-size: 1.6rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .l-header_left .txt {
    display: none;
  }
}
.l-header_right {
  margin-left: 6rem;
}
@media screen and (max-width: 767px) {
  .l-header_right .menu {
    display: none;
  }
}
.l-header_right .menu .list {
  display: flex;
  align-items: center;
  gap: 4rem;
}
.l-header_right .menu .list_item a {
  font-size: 1.6rem;
}
@media screen and (min-width: 768px) {
  .l-header_right .menu .list_item a {
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .l-header_right .menu .list_item a:hover {
    opacity: 0.7;
  }
}
.l-header_right .menu-trigger {
  width: 8rem;
  height: 8rem;
  background-color: #f8d3d6;
  position: relative;
}
.l-header_right .menu-trigger span {
  position: absolute;
  top: calc(50% - 1rem);
  transform: translate(-50%, -50%);
  left: 50%;
  background-color: #888888;
  width: 3rem;
  height: 2px;
  border-radius: 2rem;
  transition: 0.3s;
}
.is-fixed .l-header_right .menu-trigger span {
  transform: translate(-50%, -50%) rotate(-45deg);
  top: 50%;
}
.l-header_right .menu-trigger span:nth-child(2) {
  top: 50%;
}
.is-fixed .l-header_right .menu-trigger span:nth-child(2) {
  opacity: 0;
}
.l-header_right .menu-trigger span:nth-child(3) {
  top: calc(50% + 1rem);
}
.is-fixed .l-header_right .menu-trigger span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(45deg);
  top: 50%;
}

.gnavi {
  position: fixed;
  left: 0;
  top: 8rem;
  background-color: #f8d3d6;
  padding: 6rem 0 8rem;
  width: 100%;
  height: calc(100% - 6rem);
  z-index: 99;
  transform: translateX(100%);
  transition: 0.3s;
  overflow-y: scroll;
}
.is-fixed .gnavi {
  transform: translate(0);
}
.gnavi_inner .menu .list {
  width: 25rem;
  margin: 0 auto;
}
.gnavi_inner .menu .list_item a {
  display: block;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #333333;
  position: relative;
  font-size: 1.8rem;
}
.gnavi_inner .menu .list_item a::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 2rem;
  height: 1rem;
  background: url(../img/common/arrow.svg) no-repeat center center/contain;
}

/* ---------------------------------------------
  footer
-----------------------------------------------*/
.l-footer {
  margin-top: 15rem;
}
@media screen and (max-width: 767px) {
  .l-footer {
    margin-top: 8rem;
  }
}
.l-footer .menu {
  background-color: #f8d3d6;
  padding: 4rem 0;
}
@media screen and (max-width: 767px) {
  .l-footer .menu {
    display: none;
  }
}
.l-footer .menu .list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5rem;
}
.l-footer .menu .list_item a {
  font-size: 1.6rem;
}
@media screen and (min-width: 768px) {
  .l-footer .menu .list_item a {
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .l-footer .menu .list_item a:hover {
    opacity: 0.7;
  }
}
.l-footer .content {
  background-color: #888888;
  padding: 4rem 0 5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-footer .content {
    padding: 4rem 0 6rem;
  }
}
.l-footer .content::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5rem;
  background: url(../img/common/bg_footer.png) no-repeat center center/cover;
}
.l-footer .content .l-wrap {
  max-width: 90rem;
}
.l-footer .content .txt {
  text-align: center;
  font-size: 2rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .l-footer .content .txt {
    font-size: 1.8rem;
  }
}
.l-footer .content .info {
  margin-top: 5rem;
  border-top: 2px solid #f8d3d6;
  border-bottom: 2px solid #f8d3d6;
  padding: 3rem 0 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .l-footer .content .info {
    display: block;
    padding-bottom: 3rem;
  }
}
.l-footer .content .info .txt-box .logo {
  width: 19rem;
}
@media screen and (max-width: 767px) {
  .l-footer .content .info .txt-box .logo {
    width: 22.3rem;
    margin: 0 auto;
  }
}
.l-footer .content .info .txt-box .address {
  margin-top: 1rem;
  font-size: 1.6rem;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .l-footer .content .info .txt-box .address {
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .l-footer .content .info .txt-box .address:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .l-footer .content .info .txt-box .address {
    margin-top: 3rem;
    text-align: center;
  }
}
.l-footer .content .info .txt-box .mail-box {
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .l-footer .content .info .txt-box .mail-box {
    margin-left: 5.5rem;
  }
}
@media screen and (min-width: 768px) {
  .l-footer .content .info .txt-box .mail-box .link {
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .l-footer .content .info .txt-box .mail-box .link:hover {
    opacity: 0.7;
  }
}
.l-footer .content .info .txt-box .mail-box .link {
  color: #f8d3d6;
  padding-left: 3rem;
  position: relative;
}
.l-footer .content .info .txt-box .mail-box .link::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 1.8rem;
  height: 1.3rem;
  background: url(../img/common/icon_mail.svg) no-repeat center center/contain;
}
.l-footer .content .info .txt-box .mail-box .link.-tel::before {
  height: 1.9rem;
  background: url(../img/common/icon_tel.svg) no-repeat center center/contain;
}
.l-footer .content .info .txt-box .txt {
  margin-top: 1rem;
  font-size: 1.4rem;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .l-footer .content .info .txt-box .txt {
    text-align: center;
  }
}
.l-footer .content .info .txt-box .target-link {
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  gap: 1.7rem;
}
.l-footer .content .info .txt-box .target-link .link a {
  font-size: 1.6rem;
  color: #f8d3d6;
  padding-right: 2rem;
  text-decoration: underline;
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-footer .content .info .txt-box .target-link .link a {
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .l-footer .content .info .txt-box .target-link .link a:hover {
    opacity: 0.7;
  }
}
.l-footer .content .info .txt-box .target-link .link a::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 1.5rem;
  height: 1.5rem;
  background: url(../img/common/icon_blank.svg) no-repeat center center/contain;
}
.l-footer .content .info .map {
  width: 35rem;
  border: 2px solid #f8d3d6;
  border-radius: 2rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .l-footer .content .info .map {
    margin-top: 2rem;
    width: 100%;
  }
}
.l-footer .content .info .map iframe {
  width: 100%;
  aspect-ratio: 35/26;
}
@media screen and (max-width: 767px) {
  .l-footer .content .info .map iframe {
    aspect-ratio: 35/22;
  }
}
.l-footer .content .contact-box {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .l-footer .content .contact-box {
    display: none;
  }
}
.l-footer .content .contact-box .mail-box a, .l-footer .content .contact-box .tel-box a {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: column;
  width: 27rem;
  height: 16rem;
  background-color: #eb7aa0;
  border-radius: 2rem;
  font-size: 2.4rem;
  line-height: 1.3333333333;
  text-align: center;
  padding-bottom: 2rem;
  color: #fff;
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-footer .content .contact-box .mail-box a, .l-footer .content .contact-box .tel-box a {
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .l-footer .content .contact-box .mail-box a:hover, .l-footer .content .contact-box .tel-box a:hover {
    opacity: 0.7;
  }
}
.l-footer .content .contact-box .mail-box a span, .l-footer .content .contact-box .tel-box a span {
  font-size: 3.2rem;
  font-weight: 900;
}
.l-footer .content .contact-box .mail-box a::before, .l-footer .content .contact-box .tel-box a::before {
  content: "";
  position: absolute;
  top: 2.3rem;
  transform: translateX(-50%);
  left: 50%;
  width: 5rem;
  height: 3.5rem;
  background: url(../img/common/icon_mail_white.svg) no-repeat center center/contain;
}
.l-footer .content .contact-box .tel-box a {
  background-color: #b0c91a;
  padding-bottom: 1.5rem;
}
.l-footer .content .contact-box .tel-box a::before {
  content: "";
  position: absolute;
  top: 1.3rem;
  transform: translateX(-50%);
  left: 50%;
  width: 3rem;
  height: 5rem;
  background: url(../img/common/icon_tel_white.svg) no-repeat center center/contain;
}
.l-footer .content .catch {
  text-align: center;
  color: #fff;
  font-size: 2rem;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .l-footer .content .catch {
    margin-top: 4rem;
    font-size: 1.8rem;
  }
}
.l-footer .content .copyright {
  margin-top: 4rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .l-footer .content .copyright {
    margin-top: 2rem;
  }
}
.l-footer .content .copyright small {
  font-size: 1.4rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .l-footer .content .copyright small {
    font-size: 1.2rem;
  }
}/*# sourceMappingURL=common.css.map */