@charset "UTF-8";
/* Box sizing rules */
*, *::before, *::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
/* Remove default margin */
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}
/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list], ol[role=list] {
  list-style: none;
}
/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}
/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}
/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}
/* Make images easier to work with */
img, picture {
  max-width: 100%;
  display: block;
}
/* Inherit fonts for inputs and buttons */
input, button, textarea, select {
  font: inherit;
}
/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    -webkit-animation-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* base */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
@media screen and (max-width: 768px) {
  html {
    scroll-padding-top: 0;
  }
}
body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.625;
  color: #000;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 1.2rem;
  }
}
a {
  text-decoration: none;
}
a:hover {
  opacity: 0.8;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
/* =============================================================

fadein Animation

===============================================================*/
.fadein {
  -webkit-transform: translateY(40px);
  transform: translateY(40px);
  opacity: 0;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.fadein.is-active {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  -webkit-transition: 1.3s;
  transition: 1.3s;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn_menu {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn_menu {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media screen and (max-width: 1024px) {
  .slidein {
    opacity: 0;
    transform: translateX(-180px);
    transition: opacity .5s, transform .5s;
  }
  .slidein.is-inview {
    opacity: 1;
    transform: translateX(0);
    transition-delay: .6s;
  }
  .slidein2 {
    opacity: 0;
    transform: translateX(-180px);
    transition: opacity .5s, transform .5s;
  }
  .slidein2.is-inview {
    opacity: 1;
    transform: translateX(0);
    transition-delay: .8s;
  }
}
/* -------------------------------------------------------

fv Animation

-------------------------------------------------------- */
.fadeIn__fv_h2 {
  -webkit-animation-name: fadeInAnime;
  animation-name: fadeInAnime;
  -webkit-animation-fill-mode: backwards;
  animation-fill-mode: backwards;
  -webkit-animation-duration: 2.5s;
  animation-duration: 2.5s;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
  -webkit-animation-direction: normal;
  animation-direction: normal;
}
@-webkit-keyframes fadeInAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn__fv_img {
  -webkit-animation-name: fadeInAnime;
  animation-name: fadeInAnime;
  -webkit-animation-fill-mode: backwards;
  animation-fill-mode: backwards;
  -webkit-animation-duration: 1.8s;
  animation-duration: 1.8s;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
  -webkit-animation-direction: normal;
  animation-direction: normal;
}
@keyframes fadeInAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* l-body */
.l-body.noScroll {
  overflow: hidden;
}
/* l-header */
.l-header {
  height: 80px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9;
}
.l-header__inner {
  height: 100%;
  padding: 0 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.l-header__logo {
  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;
  padding-left: 10%;
}
@media screen and (max-width: 1180px) {
  .l-header__logo {
    padding-left: 0;
  }
}
.l-header__gnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.l-header__contact {
  margin-left: 34px;
}
.l-header__btn {
  display: none;
}
@media screen and (max-width: 1024px) {
  .l-header {
    height: 70px;
    position: relative;
  }
  .l-header__logo {
    width: 94px;
  }
  .l-header__gnav {
    display: none;
  }
  .l-header__gnav.menu_isOpen {
    display: block;
    overflow-y: scroll;
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    background-color: #fff;
    -webkit-animation: fadeIn 0.3s;
    animation: fadeIn 0.3s;
    z-index: 9;
  }
  .l-header__contact {
    display: none;
  }
  .l-header__btn {
    display: block;
    position: fixed;
    top: 10px;
    right: 8px;
    z-index: 9;
  }
}
/* =============================================================

footer

===============================================================*/
.footer {
  clear: both;
  position: relative;
  padding: 87px 0 82px;
  background: #1a1a1a;
  color: #fff;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 42px 0 64px;
  }
}
.footer .ft_top {
  text-align: center;
  margin-bottom: 76px;
}
.footer .ft_top .catch {
  margin-bottom: 20px;
}
.footer .ft_top .catch img {
  display: block;
  margin: 0 auto;
}
.footer .ft_navs {
  display: block;
  margin-bottom: 20px;
}
.footer .ft_nav {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  text-align: center;
  padding: 0;
  border: 1px solid #1a1a1a;
  border-width: 0 0 1px 0;
  width: 100%;
  position: relative;
  clear: both;
}
.footer .ft_nav:last-child {
  border: none;
}
.footer .ft_nav dt {
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 0;
  padding: 19px 0;
}
.footer .ft_nav dt::before, .footer .ft_nav dt::after {
  content: "";
  display: block;
  width: 11px;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 24px;
  right: 20px;
}
.footer .ft_nav dt::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.footer .ft_nav dt.focus {
  border-bottom: 1px solid #1a1a1a;
}
.footer .ft_nav dt.focus::after {
  -webkit-transform: rotate(0);
  transform: rotate(0);
  opacity: 0;
}
.footer .ft_nav.collapsible .accordion {
  display: none;
  margin-bottom: -1px;
}
.footer .ft_nav dd {
  width: 50%;
  border: 1px solid #1a1a1a;
  border-width: 0 1px 1px 0;
  background: #000;
  padding: 14px 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  float: left;
}
.footer .ft_nav dd a {
  color: #fff;
  text-decoration: none;
}
.footer .ft_nav.link_only {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 20px 0 0;
  background: #1a1a1a;
}
.footer .ft_nav.link_only dd {
  float: none;
}
.footer .ft_nav.link_only dd.full {
  width: 100%;
  border: none;
}
.footer .ft_infos {
  display: block;
  margin-bottom: 36px;
}
.footer .ft_info {
  padding: 15px 0;
  border: 1px solid #1a1a1a;
  border-width: 0 0 1px 0;
  width: 100%;
}
.footer .ft_info:last-child {
  border: none;
}
.footer .ft_info p {
  font-size: 12px;
  line-height: 1.75;
}
.footer .ft_btm {
  text-align: center;
}
.footer .ft_btm .logo {
  width: 280px;
}
.footer .ft_btm .copyright {
  font-size: 8px;
}
.inner1145 {
  /* max-width: 1145px; */
  max-width: 1265px;
  width: 100%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .footer_navi {
    width: 90%;
    margin: auto;
  }
}
.footer_navi ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  gap: 80px;
}
@media screen and (max-width: 768px) {
  .footer_navi ul {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .footer_navi ul li {
    width: 100%;
    margin-bottom: 30px;
  }
}
.footer_navi ul li dt {
  font-weight: 500;
  font-family: "Josefin Sans", sans-serif;
  font-size: 16px;
  letter-spacing: 0.03em;
  margin-bottom: 10px;
}
.footer_navi ul li dd {
  line-height: 30px;
}
@media screen and (max-width: 768px) {
  .footer_navi ul li dd {
    width: 49%;
    float: left;
  }
}
.footer_navi ul li dd.ml {
  margin-left: 15px;
}
@media screen and (max-width: 768px) {
  .footer_navi ul li dd.ml {
    margin-left: 0;
  }
}
.footer_navi ul li a {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: #fff;
  display: inline-block;
}
@media only screen and (min-width: 768px) and (max-width: 1279px) {
  .footer_navi ul li a {
    font-size: 11px;
  }
}
@media screen and (max-width: 768px) {
  .footer_navi ul li a {
    font-size: 12px;
  }
}
.footer_navi ul li a.target_blank {
  position: relative;
}
.footer_navi ul li a.target_blank::before {
  position: absolute;
  top: 50%;
  right: -20px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  content: "";
  width: 10px;
  height: 10px;
  background-repeat: no-repeat;
  background-size: cover !important;
  background: url("../images/icon_blank.svg");
}
.footer .container {
  padding: 0 120px;
}
@media screen and (max-width: 1024px) {
  .footer .container {
    padding: 0 60px;
  }
}
@media screen and (max-width: 750px) {
  .footer .container {
    padding: 0 5.5%;
  }
}
/* l-inner */
.l-inner {
  width: 1068px;
  max-width: 100%;
  padding: 0 24px;
  margin: 0 auto;
}
/* l-outer */
.l-outer {
  width: 1280px;
  max-width: 100%;
  margin: 0 auto;
}
/* c-site */
.c-site {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
  margin-top: 80px;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .c-site {
    margin-top: 0;
  }
}
.c-site__main {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
/* c-gnav*/
.c-gnav__logo {
  width: 200px;
  margin-left: 18%;
  margin-top: 80px;
  display: none;
}
@media screen and (max-width: 1024px) {
  .c-gnav__logo {
    display: block;
  }
}
.c-gnav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .c-gnav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 60px 0 80px 22%;
  }
}
@media screen and (max-width: 768px) {
  .c-gnav__logo {
    width: 120px;
    margin-top: 50px;
    margin-left: 14%;
  }
  .c-gnav__list {
    padding: 40px 0 80px 20%;
  }
}
.c-gnav__item {
  margin-left: 30px;
}
@media screen and (max-width: 1024px) {
  .c-gnav__item {
    margin-left: 0;
    margin-bottom: 6px;
  }
}
.c-gnav__link {
  color: #000;
  letter-spacing: 0.04em;
}
.c-gnav__link.en {
  font-family: "Outfit", sans-serif;
  font-size: 1.6rem;
}
@media screen and (max-width: 1024px) {
  .c-gnav__link {
    display: block;
    color: #000;
    padding: 8px 0;
  }
}
/* c-btnMenu*/
.c-btnMenu {
  width: 50px;
  height: 50px;
  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;
  padding: 0;
  background-color: transparent;
  border-color: transparent;
}
.c-btnMenu span {
  display: inline-block;
  width: 22px;
  height: 1px;
  background-color: #212121;
  position: relative;
}
.c-btnMenu span::before, .c-btnMenu span::after {
  content: "";
  display: inline-block;
  width: 22px;
  height: 1px;
  background-color: #212121;
  position: absolute;
  left: 0px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.c-btnMenu span::before {
  top: 6px;
}
.c-btnMenu span::after {
  top: -6px;
}
/* btnMenu_isOnがついた時のスタイル */
.c-btnMenu.btnMenu_isOn span {
  background-color: transparent;
}
.c-btnMenu.btnMenu_isOn span::before, .c-btnMenu.btnMenu_isOn span::after {
  top: 0;
  background-color: #000;
}
.c-btnMenu.btnMenu_isOn span::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.c-btnMenu.btnMenu_isOn span::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
/* c-btnHeader*/
.c-btnHeader {
  display: block;
  color: #fff;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  text-align: center;
  background-color: #b4b4b4;
  padding: 10px 28px;
}
@media screen and (max-width: 1180px) {
  .c-btnHeader {
    padding-left: 14px;
    padding-right: 14px;
  }
}
/* c-btn01*/
.c-btn01 {
  display: block;
  color: #fff;
  font-size: 2rem;
  letter-spacing: 0.07em;
  text-align: center;
  padding: 52px 10px;
  background: #b4b4b4 url(../images/i_arrowBtn.png) right 48px center/10px auto no-repeat;
}
/* c-btn02*/
.c-btn02 {
  display: block;
  color: #000;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 12px 10px;
  border: 2px solid #212121;
  background: url(../images/i_arrowBtn_b.png) right 62px center/10px auto no-repeat;
}
@media screen and (max-width: 768px) {
  .c-btn02 {
    font-size: 3.3333333333vw;
    background-size: 6px auto;
    background-position: right 40px center;
    border-width: 1px;
  }
}
@media screen and (max-width: 520px) {
  .c-btn02 {
    background-position: right 78px center;
  }
}
/* c-ttl01*/
.c-ttl01 {
  font-size: 1.6rem;
  font-weight: 400;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c-ttl01 {
    font-size: 1.1rem;
    font-size: 2.9333333333vw;
  }
}
.c-ttl01__en {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 3.6rem;
  letter-spacing: 0.07em;
  line-height: 1.3;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .c-ttl01__en {
    font-size: 3rem;
    font-size: 8vw;
  }
}
.c-ttl01--spacingL .c-ttl01__en {
  letter-spacing: 0.16em;
}
/* c-ttl02*/
.c-ttl02 {
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  position: relative;
  padding-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .c-ttl02 {
    font-size: 4.8vw;
    padding-bottom: 6%;
  }
}
.c-ttl02::before {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 70px;
  height: 2px;
  background-color: #212121;
}
@media screen and (max-width: 768px) {
  .c-ttl02::before {
    width: 40px;
  }
}
/* c-top*/
.c-top {
  width: 60px;
  height: 60px;
  position: fixed;
  bottom: 100px;
  right: 114px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0;
  z-index: 8;
}
@media screen and (max-width: 1024px) {
  .c-top {
    bottom: 90px;
    right: 0;
  }
}
.c-top.is-on {
  opacity: 1;
}
.c-top a {
  display: block;
  width: 100%;
  height: 100%;
  background: url(../images/i_top.png) center/25px auto no-repeat;
}
/* c-link*/
.c-link {
  font-family: "Outfit", sans-serif;
  color: #000;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding-right: 18px;
  background: url(../images/i_arrow.png) center right/8px auto no-repeat;
}
@media screen and (max-width: 768px) {
  .c-link {
    font-size: 0.9em;
    font-size: 2.4vw;
  }
}
/* c-boxToggle*/
.c-boxToggle__trigger {
  cursor: pointer;
  position: relative;
  text-align: center;
  border: 1px solid #b8b9ba;
  padding: 7px;
}
@media screen and (max-width: 768px) {
  .c-boxToggle__trigger {
    padding: 14px 4px;
    font-size: 3.2vw;
  }
}
.c-boxToggle__trigger::before, .c-boxToggle__trigger::after {
  content: "";
  display: inline-block;
  background-color: #000;
  position: absolute;
  left: 42%;
  top: 50%;
}
@media screen and (max-width: 768px) {
  .c-boxToggle__trigger::before, .c-boxToggle__trigger::after {
    left: 104px;
  }
}
.c-boxToggle__trigger::before {
  width: 16px;
  height: 2px;
}
@media screen and (max-width: 768px) {
  .c-boxToggle__trigger::before {
    width: 12px;
    height: 1px;
  }
}
.c-boxToggle__trigger::after {
  width: 16px;
  height: 2px;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
@media screen and (max-width: 768px) {
  .c-boxToggle__trigger::after {
    width: 12px;
    height: 1px;
  }
}
.c-boxToggle__trigger .active-txt {
  display: none;
}
.c-boxToggle__trigger--02::before, .c-boxToggle__trigger--02::after {
  left: 36%;
}
.c-boxToggle__content {
  line-height: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  background-color: #f3f4f5;
  padding: 0 48px;
}
@media screen and (max-width: 768px) {
  .c-boxToggle__content {
    padding: 0 4%;
  }
}
.c-boxToggle.is-active .c-boxToggle__trigger::after {
  display: none;
}
.c-boxToggle.is-active .c-boxToggle__trigger .nonActive-txt {
  display: none;
}
.c-boxToggle.is-active .c-boxToggle__trigger .active-txt {
  display: block;
}
.c-boxToggle.is-active .c-boxToggle__content {
  padding: 38px 48px;
  line-height: normal;
  height: auto;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .c-boxToggle.is-active .c-boxToggle__content {
    padding: 9px 4%;
  }
}
/* c-boxToggle02*/
.c-boxToggle02__trigger {
  cursor: pointer;
  text-align: center;
  background-color: #808078;
  padding: 50px 0;
}
@media screen and (max-width: 768px) {
  .c-boxToggle02__trigger {
    padding: 8% 0;
  }
}
.c-boxToggle02__ttl {
  color: #fff;
  font-size: 2.6rem;
  letter-spacing: 0.1em;
  line-height: 2;
  font-weight: 400;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c-boxToggle02__ttl {
    font-size: 4vw;
  }
}
.c-boxToggle02__icon {
  display: block;
  width: 37px;
  height: 37px;
  margin: auto;
  position: relative;
  background-color: #fff;
  border-radius: 50%;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .c-boxToggle02__icon {
    width: 22px;
    height: 22px;
    margin-top: 10px;
  }
}
.c-boxToggle02__icon::before, .c-boxToggle02__icon::after {
  content: "";
  display: inline-block;
  background-color: #808078;
  position: absolute;
  top: 48%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.c-boxToggle02__icon::before {
  width: 16px;
  height: 2px;
  -webkit-transform: translateX(-49%);
  transform: translateX(-49%);
}
@media screen and (max-width: 768px) {
  .c-boxToggle02__icon::before {
    width: 12px;
    height: 1px;
  }
}
.c-boxToggle02__icon::after {
  width: 16px;
  height: 2px;
  -webkit-transform: translateX(-50%) rotate(90deg);
  transform: translateX(-50%) rotate(90deg);
}
@media screen and (max-width: 768px) {
  .c-boxToggle02__icon::after {
    width: 12px;
    height: 1px;
  }
}
.c-boxToggle02__content {
  line-height: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
.c-boxToggle02__flex {
  margin-top: 110px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .c-boxToggle02__flex {
    margin-top: 58px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.c-boxToggle02__flex--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  margin-top: 150px;
}
@media screen and (max-width: 768px) {
  .c-boxToggle02__flex--reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 72px;
  }
}
.c-boxToggle02__flex--reverse .c-boxToggle02__desc {
  margin-right: 0;
  margin-left: 6%;
}
@media screen and (max-width: 768px) {
  .c-boxToggle02__flex--reverse .c-boxToggle02__desc {
    margin-left: 0;
  }
}
.c-boxToggle02__flex--reverse .c-boxToggle02__img {
  width: 52%;
}
@media screen and (max-width: 768px) {
  .c-boxToggle02__flex--reverse .c-boxToggle02__img {
    width: 100%;
  }
}
.c-boxToggle02__desc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-right: 6%;
}
@media screen and (max-width: 768px) {
  .c-boxToggle02__desc {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-right: 0;
  }
}
.c-boxToggle02__img {
  width: 50%;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .c-boxToggle02__img {
    width: 100%;
    margin-top: 28px;
  }
}
.c-boxToggle02__subttl {
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .c-boxToggle02__subttl {
    font-size: 5.4666666667vw;
  }
}
.c-boxToggle02__txt {
  letter-spacing: 0.1em;
  line-height: 1.6;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .c-boxToggle02__txt {
    font-size: 3.7333333333vw;
  }
}
.c-boxToggle02.is-active .c-boxToggle02__icon::after {
  display: none;
}
.c-boxToggle02.is-active .c-boxToggle02__content {
  line-height: normal;
  height: auto;
  opacity: 1;
  padding: 20px 0;
}
@media screen and (max-width: 768px) {
  .c-boxToggle02.is-active .c-boxToggle02__content {
    padding: 3% 0;
  }
}
/* c-boxToggle03*/
.c-boxToggle03 {
  border-bottom: 1px solid #212121;
}
.c-boxToggle03__trigger {
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  cursor: pointer;
  padding: 30px 40px 30px 40px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-boxToggle03__trigger {
    font-size: 3.4666666667vw;
    padding: 6% 14% 6% 10%;
  }
}
.c-boxToggle03__trigger::before {
  content: "Q";
  font-family: "Outfit", sans-serif;
  font-size: 2rem;
  font-weight: 300;
  position: absolute;
  top: 30px;
  left: 2px;
}
@media screen and (max-width: 768px) {
  .c-boxToggle03__trigger::before {
    font-size: 4.2666666667vw;
    top: 32%;
  }
}
.c-boxToggle03__triggerIcon {
  display: block;
  position: absolute;
  top: calc(50% - 12px);
  right: 22px;
  width: 25px;
  height: 25px;
}
@media screen and (max-width: 768px) {
  .c-boxToggle03__triggerIcon {
    right: 14px;
  }
}
.c-boxToggle03__triggerIcon::before, .c-boxToggle03__triggerIcon::after {
  content: "";
  display: inline-block;
  width: 25px;
  height: 2px;
  background-color: #b8b9ba;
  position: absolute;
  top: 50%;
  left: 0;
}
@media screen and (max-width: 768px) {
  .c-boxToggle03__triggerIcon::before, .c-boxToggle03__triggerIcon::after {
    width: 18px;
  }
}
.c-boxToggle03__triggerIcon::before {
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}
.c-boxToggle03__triggerIcon::after {
  -webkit-transform: translateY(-2px) rotate(90deg);
  transform: translateY(-2px) rotate(90deg);
}
.c-boxToggle03__content {
  line-height: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  padding: 0 20px 0 0;
}
@media screen and (max-width: 768px) {
  .c-boxToggle03__content {
    padding: 0 2% 0 0;
  }
}
.c-boxToggle03__content p {
  letter-spacing: 0.06em;
  position: relative;
  padding-left: 40px;
}
@media screen and (max-width: 768px) {
  .c-boxToggle03__content p {
    font-size: 3.4666666667vw;
    padding-left: 10%;
  }
}
.c-boxToggle03__content p::before {
  content: "A";
  font-family: "Outfit", sans-serif;
  font-size: 2rem;
  font-weight: 300;
  position: absolute;
  top: 0;
  left: 2px;
}
@media screen and (max-width: 768px) {
  .c-boxToggle03__content p::before {
    font-size: 4.2666666667vw;
  }
}
.c-boxToggle03.is-active .c-boxToggle03__triggerIcon::after {
  display: none;
}
.c-boxToggle03.is-active .c-boxToggle03__content {
  line-height: normal;
  height: auto;
  opacity: 1;
  padding: 6px 20px 29px 0;
}
@media screen and (max-width: 768px) {
  .c-boxToggle03.is-active .c-boxToggle03__content {
    padding: 2% 2% 6% 0;
  }
}
/* c-article*/
.c-article h2 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.03em;
  padding-left: 20px;
  border-left: 3px solid #ff7a58;
}
@media screen and (max-width: 768px) {
  .c-article h2 {
    font-size: 1.4rem;
    font-size: 3.7333333333vw;
    line-height: 1.7;
    padding-left: 8px;
  }
}
.c-article h3 {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin: 22px 0 22px;
  padding-left: 54px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-article h3 {
    font-size: 1rem;
    font-size: 2.6666666667vw;
    padding-left: 34px;
    margin-bottom: 8px;
  }
}
.c-article h3::before {
  content: "";
  display: inline-block;
  width: 50px;
  height: 1px;
  background-color: #212121;
  position: absolute;
  top: 50%;
  left: 0;
}
@media screen and (max-width: 768px) {
  .c-article h3::before {
    width: 30px;
  }
}
.c-article h3.spacingS {
  letter-spacing: 0;
}
.c-article p {
  letter-spacing: 0.03em;
  line-height: 2.2;
}
@media screen and (max-width: 768px) {
  .c-article p {
    font-size: 1rem;
    font-size: 2.6666666667vw;
    line-height: 1.8;
  }
}
.c-article img {
  margin: auto;
}
.c-article__pharagraph {
  margin-top: 74px;
}
@media screen and (max-width: 768px) {
  .c-article__pharagraph {
    margin-top: 34px;
  }
}
.c-article__pharagraph02 {
  margin-top: 34px;
}
.c-article__img {
  margin: 66px 0 112px;
}
@media screen and (max-width: 768px) {
  .c-article__img {
    width: 50%;
    margin: 26px auto 52px;
  }
}
.c-article--mt {
  margin-top: 80px;
}
/* c-ctaSP*/
.c-ctaSP {
  display: none;
}
@media screen and (max-width: 1024px) {
  .c-ctaSP {
    display: block;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 8;
  }
  .c-ctaSP a {
    display: block;
    width: 100%;
    color: #fff;
    font-size: 1.2rem;
    font-size: clamp(1rem, 3.2vw, 2rem);
    letter-spacing: 0.1em;
    text-align: center;
    padding: 22px 28px;
    background: #b4b4b4 url(../images/i_arrowBtn.png) right 64px center/6px auto no-repeat;
  }
}
/* c-contact*/
.c-contact {
  padding: 110px 0 100px;
  position: relative;
}
.c-contact::before {
  content: "";
  display: inline-block;
  height: 1px;
  width: 1020px;
  max-width: 100%;
  margin: 0 auto;
  background-color: #b8b9ba;
  position: absolute;
  top: -1px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.c-contact__btnWrap {
  width: 500px;
  max-width: 100%;
  margin: auto;
}
/* p-mv*/
.p-mv {
  height: calc(100vh - 80px);
  position: relative;
}
@media screen and (max-width: 1024px) {
  .p-mv {
    height: calc(100vh - 70px);
    overflow: hidden;
  }
}
.p-mv__ttl {
  width: 26.953125%;
  min-width: 345px;
  position: absolute;
  top: 29%;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  z-index: 100;
}
@media screen and (max-width: 1024px) {
  .p-mv__ttl {
    position: static;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    margin: 25px auto;
  }
  .p-mv__ttl img {
    width: 65%;
    margin: auto;
  }
}
.p-mv__bgLeft {
  width: 33%;
  height: 62vh;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../images/mv_img01.png) no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 1024px) {
  .p-mv__bgLeft {
    background-image: url(../images/mv_img01_sp.png);
    width: 64%;
    height: 33%;
    position: static;
    background-position: center;
  }
}
.p-mv__bgRight {
  width: 52%;
  height: 66vh;
  position: absolute;
  bottom: 0;
  right: 0;
  background: url(../images/mv_img02.png) no-repeat;
  background-size: cover;
}
@media screen and (max-width: 1024px) {
  .p-mv__bgRight {
    width: 100%;
    height: 47%;
    position: static;
    background-position: top;
  }
}
/* p-lead*/
.p-lead {
  padding-top: 116px;
}
@media screen and (max-width: 768px) {
  .p-lead {
    padding-top: 30px;
  }
}
.p-lead__outer {
  position: relative;
  padding-top: 114px;
}
@media screen and (max-width: 768px) {
  .p-lead__outer {
    padding-top: 0;
  }
}
.p-lead__ttl {
  font-family: "Noto Serif JP", serif;
  font-size: 3rem;
  letter-spacing: 0.16em;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .p-lead__ttl {
    font-size: 2.1rem;
  }
}
.p-lead__txt {
  margin-top: 30px;
  line-height: 2.5;
  letter-spacing: 0.05em;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .p-lead__txt {
    font-size: 1.3rem;
    letter-spacing: 0.04em;
    margin-top: 18px;
  }
}
.p-lead__desc {
  width: 47%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-lead__desc {
    position: static;
    width: 100%;
    padding: 0 30px;
  }
}
.p-lead__bg {
  width: 59%;
  height: 60vh;
  background: url(../images/lead_img01.png) no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .p-lead__bg {
    width: 100%;
    height: 74.6666666667vw;
    margin-top: 40px;
  }
}
/* p-lead02*/
.p-lead02 {
  padding-top: 136px;
  padding-bottom: 208px;
}
@media screen and (max-width: 768px) {
  .p-lead02 {
    padding-top: 34px;
    padding-bottom: 224px;
    margin-bottom: 94px;
    position: relative;
  }
}
.p-lead02__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-lead02__inner {
    padding: 0 10px 0 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.p-lead02__ttl {
  font-size: 3.3rem;
  letter-spacing: 0.12em;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  margin-top: 88px;
}
@media screen and (max-width: 768px) {
  .p-lead02__ttl {
    font-size: 2.1rem;
    margin-top: 0;
  }
}
.p-lead02__txt {
  font-weight: 300;
  letter-spacing: 0.03em;
  line-height: 2.1;
  margin-top: 34px;
}
@media screen and (max-width: 768px) {
  .p-lead02__txt {
    font-size: 1.4rem;
    letter-spacing: 0.04em;
    margin-top: 14px;
  }
}
.p-lead02__img {
  width: 41%;
}
@media screen and (max-width: 768px) {
  .p-lead02__img {
    width: 234px;
    position: absolute;
    bottom: 0;
    right: 0;
  }
}
/* p-voice*/
.p-voice {
  padding: 154px 0 0;
}
@media screen and (max-width: 768px) {
  .p-voice {
    padding: 74px 0 60px;
  }
}
.p-voice__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.p-voice__box {
  width: 100%;
  padding: 38px 50px 48px;
  border: 1px solid #b8b9ba;
  border-radius: 10px;
  margin-top: 54px;
}
@media screen and (max-width: 768px) {
  .p-voice__box {
    padding: 0;
    border: none;
    margin-top: 24px;
  }
}
.p-voice__box--sm {
  width: 48%;
  padding: 0;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .p-voice__box--sm {
    width: 100%;
  }
}
.p-voice__box--sm .p-voice__boxInner {
  border-top: 1px solid #b8b9ba;
  border-left: 1px solid #b8b9ba;
  border-right: 1px solid #b8b9ba;
  padding: 38px 5% 28px 9%;
  border-radius: 10px 10px 0 0;
}
@media screen and (max-width: 1000px) {
  .p-voice__box--sm .p-voice__boxInner {
    padding-left: 3%;
    padding-right: 3%;
  }
}
@media screen and (max-width: 768px) {
  .p-voice__box--sm .p-voice__boxInner {
    border: none;
    padding: 0 0 20px 0;
  }
}
.p-voice__box--sm .p-voice__boxImg {
  max-width: 44%;
}
@media screen and (max-width: 1000px) {
  .p-voice__box--sm .p-voice__boxImg {
    max-width: 30%;
  }
}
@media screen and (max-width: 768px) {
  .p-voice__box--sm .p-voice__boxImg {
    max-width: 100%;
  }
  .p-voice__box--sm .p-voice__boxImg img {
    width: 100%;
    max-width: 350px;
    margin: auto;
  }
}
.p-voice__box--sm .p-voice__boxDesc {
  margin-left: 4%;
}
@media screen and (max-width: 768px) {
  .p-voice__box--sm .p-voice__boxDesc {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin-left: 0;
    padding-left: 0;
  }
}
.p-voice__box--sm .p-voice__txt span {
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  .p-voice__box--sm .p-voice__txt span {
    font-size: 0.9em;
    font-size: 2.4vw;
  }
}
.p-voice__box--sm .p-voice__ttl {
  height: 120px;
}
@media screen and (max-width: 768px) {
  .p-voice__box--sm .p-voice__ttl {
    height: initial;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}
.p-voice__box--sm .p-voice__body {
  margin-top: 0;
}
.p-voice__boxHeader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .p-voice__boxHeader {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.p-voice__boxImg {
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .p-voice__boxImg img {
    width: 100%;
    margin: auto;
  }
}
.p-voice__boxDesc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-left: 6%;
}
@media screen and (max-width: 768px) {
  .p-voice__boxDesc {
    margin-left: 0;
    margin-top: 16px;
    padding-left: 0;
  }
}
.p-voice__ttl {
  font-size: 2.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .p-voice__ttl {
    font-size: 1.9rem;
    font-size: 5.0666666667vw;
  }
}
.p-voice__ttl--sm {
  width: 100%;
  font-size: 2.3rem;
  line-height: 1.7391304348;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .p-voice__ttl--sm {
    font-size: 1.9rem;
    font-size: 5.0666666667vw;
  }
}
.p-voice__txt {
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  margin-top: 58px;
}
@media screen and (max-width: 768px) {
  .p-voice__txt {
    font-size: 1.3rem;
    font-size: 3.4666666667vw;
    margin-top: 20px;
  }
}
.p-voice__txt span {
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .p-voice__txt span {
    font-size: 0.9em;
    font-size: 2.4vw;
  }
}
.p-voice__txt--mt0 {
  margin-top: 0;
}
.p-voice__txt--02 {
  display: inline-block;
  margin-top: 12px;
}
.p-voice__link {
  margin-top: 8px;
}
.p-voice__body {
  margin-top: 42px;
}
@media screen and (max-width: 768px) {
  .p-voice__body {
    margin-top: 32px;
  }
}
.p-voice__btnArea {
  width: 500px;
  max-width: 100%;
  padding: 176px 0 164px;
  margin: auto;
}
/* p-otherProduct */
.p-otherProduct {
  background-color: #fff;
  padding: 40px 82px 10px;
}
@media screen and (max-width: 768px) {
  .p-otherProduct {
    padding: 32px 16px 10px;
  }
}
.p-otherProduct__ttl {
  font-size: 1.8rem;
  letter-spacing: 0.03em;
  font-weight: 400;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-otherProduct__ttl {
    font-size: 1.6rem;
  }
}
.p-otherProduct__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .p-otherProduct__list {
    margin-top: 22px;
  }
}
.p-otherProduct__link {
  display: block;
  padding: 10px 10px 18px;
}
@media screen and (max-width: 768px) {
  .p-otherProduct__link {
    padding-bottom: 10px;
  }
}
.p-otherProduct__link img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.p-otherProduct__link:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.p-otherProduct__item {
  width: 29%;
  border: 1px solid #b8b9ba;
  text-align: center;
  margin-bottom: 70px;
}
@media screen and (max-width: 960px) {
  .p-otherProduct__item {
    width: 48%;
  }
}
@media screen and (max-width: 768px) {
  .p-otherProduct__item {
    font-size: 1rem;
    font-size: 2.6666666667vw;
    margin-bottom: 10px;
  }
}
.p-otherProduct__item img {
  margin: auto;
}
@media screen and (max-width: 768px) {
  .p-otherProduct__item img {
    max-width: 40%;
  }
}
@media screen and (max-width: 768px) {
  .p-otherProduct__item img.heightSP {
    max-height: 84px;
    width: auto;
  }
}
@media screen and (max-width: 768px) {
  .p-otherProduct__item img.withWideSP {
    max-width: 70%;
  }
}
.p-otherProduct__item span {
  display: inline-block;
  font-size: 1.2rem;
  margin-top: 8px;
}
@media screen and (max-width: 768px) {
  .p-otherProduct__item span {
    font-size: 0.7rem;
    font-size: 2vw;
  }
}
.p-otherProduct__img {
  min-height: 143px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .p-otherProduct__img {
    min-height: initial;
  }
}
.p-otherProduct--mt {
  margin-top: 36px;
}
@media screen and (max-width: 768px) {
  .p-otherProduct--mt {
    margin-top: 56px;
  }
}
/* p-gift*/
.p-gift {
  background-color: #ffebe5;
  padding: 76px 0 66px;
}
@media screen and (max-width: 768px) {
  .p-gift {
    padding: 56px 0 42px;
  }
}
.p-gift__ttl {
  font-size: 2.6rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  line-height: 1.8;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-gift__ttl {
    font-size: 5.4666666667vw;
  }
}
.p-gift__body {
  margin-top: 68px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .p-gift__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    margin-top: 24px;
  }
}
.p-gift__left {
  width: 35%;
}
.p-gift__right {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-left: 11%;
}
@media screen and (max-width: 768px) {
  .p-gift__right {
    margin-left: 0;
  }
}
.p-gift__txt01 {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .p-gift__txt01 {
    font-size: 3.4666666667vw;
    line-height: 1.9;
    text-align: center;
  }
}
.p-gift__img {
  margin-top: 44px;
}
@media screen and (max-width: 768px) {
  .p-gift__img {
    margin-top: 56px;
  }
  .p-gift__img img {
    margin: auto;
  }
}
.p-gift__txt02 {
  margin-top: 6px;
}
@media screen and (max-width: 768px) {
  .p-gift__txt02 {
    font-size: 3.4666666667vw;
    margin-top: 10px;
    line-height: 1.9;
  }
}
.p-gift__btnArea {
  width: 318px;
  max-width: 88%;
  margin: 72px auto 0;
}
@media screen and (max-width: 768px) {
  .p-gift__btnArea {
    margin-top: 36px;
  }
}
.p-gift__img01SP {
  width: 77%;
  margin: 38px auto;
}
.p-gift__img01SP img {
  margin: auto;
}
/* p-suggestion*/
/* p-otherSuggestion */
.p-otherSuggestion {
  padding: 80px 0 154px;
}
@media screen and (max-width: 768px) {
  .p-otherSuggestion {
    padding: 68px 0;
  }
}
/* p-support*/
.p-support {
  padding: 112px 0;
  background: #F3F4F5;
}
@media screen and (max-width: 768px) {
  .p-support {
    padding: 70px 0 0;
  }
}
.p-support__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .p-support__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 60px;
  }
}
.p-support__item {
  width: 28%;
}
@media screen and (max-width: 768px) {
  .p-support__item {
    width: 100%;
    margin-bottom: 90px;
  }
}
.p-support__itemImg {
  min-height: 186px;
  background-color: #fff;
  border: 1px solid #b8b9ba;
}
@media screen and (max-width: 768px) {
  .p-support__itemImg {
    min-height: initial;
  }
}
.p-support__itemImg img {
  width: 100%;
}
.p-support__itemTtl {
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-top: 22px;
}
@media screen and (max-width: 768px) {
  .p-support__itemTtl {
    font-size: 5.4666666667vw;
  }
}
.p-support__itemTxt {
  margin-top: 18px;
  letter-spacing: 0.04em;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .p-support__itemTxt {
    font-size: 3.7333333333vw;
    line-height: 1.9;
  }
}
/* p-faq*/
.p-faq {
  padding: 154px 0 172px;
}
@media screen and (max-width: 768px) {
  .p-faq {
    padding: 66px 0;
  }
}
.p-faq__body {
  width: 754px;
  max-width: 100%;
  margin: 102px auto 0;
  border-top: 1px solid #212121;
}
@media screen and (max-width: 768px) {
  .p-faq__body {
    margin-top: 38px;
  }
}
/* rf__products */
.rf__products .container {
  padding: 62px 130px 70px 210px;
  margin-right: auto;
  position: relative;
}
.rf__products .container::before {
  content: "";
  display: block;
  width: 200%;
  height: 100%;
  background: #F3F4F5;
  position: absolute;
  top: 0;
  /* left         : 120px; */
  left: 130px;
  z-index: -1;
}
.rf__products h3 {
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding-bottom: 10px;
  display: inline-block;
  border-bottom: 1px solid #212121;
  position: relative;
  z-index: 2;
}
.rf__products .desc {
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  padding: 24px 0 10px;
  position: relative;
}
.rf__products .desc::before {
  content: "";
  display: block;
  width: 200%;
  height: 1px;
  background: #B8B9BA;
  position: absolute;
  top: -1px;
  left: 0;
  z-index: 1;
}
.rf__products .note {
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 3px;
}
.rf__products .flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 44px;
}
.rf__products .flexbox li {
  width: 24%;
  text-align: center;
  margin-bottom: 78px;
}
.rf__products .flexbox li:last-child {
  margin-bottom: 0;
}
.rf__products .flexbox li a:hover {
  opacity: 0.7;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.rf__products .flexbox li .img_wrap {
  overflow: hidden;
}
.rf__products .flexbox li img {
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
.rf__products .flexbox li img:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
.rf__products .flexbox li p {
  font-size: 1.6rem;
  margin: 20px auto 0;
  line-height: 1.6;
}
.rf__products .flexbox li span {
  display: inline-block;
  margin-top: 6px;
  font-size: 1.2rem;
  line-height: 1.6;
}
.rf__products.under {
  margin-top: 68px;
}
.rf__products.under .container {
  padding-bottom: 92px;
}
.rf__products .flexbox.under {
  margin-top: 32px;
}
.rf__products a {
  color: #000;
}
.rf__products .outfit {
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.07em;
}
.rf__products .br_sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .rf__products .br_sp {
    display: block;
  }
}
@media screen and (max-width: 960px) {
  .rf__products .container {
    padding: 120px 60px;
    margin: 0 auto;
    text-align: center;
  }
  .rf__products .container::before {
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
  }
  .rf__products h3 {
    font-size: 3.6rem;
    padding-bottom: 1%;
  }
  .rf__products .desc {
    font-size: 2.6rem;
    padding: 4.3% 0 2%;
    line-height: 1.5;
  }
  .rf__products .desc::before {
    display: none;
  }
  .rf__products .note {
    font-size: 2rem;
    line-height: 1.5;
  }
  .rf__products .flexbox {
    gap: 70px 0;
    margin-top: 50px;
  }
  .rf__products .flexbox li {
    width: 47.5%;
    margin-bottom: 0;
  }
  .rf__products .flexbox li p {
    font-size: 2.6rem;
    /* margin     : 32px auto 20px; */
    margin: 3.2% auto 4%;
    line-height: 1.46;
  }
  .rf__products .flexbox li span {
    font-size: 2.3rem;
    line-height: 1.4;
    margin-top: 0;
  }
}
@media screen and (max-width: 750px) {
  .rf__products .container {
    padding: 14% 5.5% 4%;
  }
  .rf__products.under .container {
    padding-bottom: 34px;
  }
  .rf__products h3 {
    font-size: 4.8vw;
  }
  .rf__products .desc {
    font-size: 3.73vw;
  }
  .rf__products .note {
    font-size: 2.66vw;
  }
  .rf__products .flexbox {
    gap: 35px 0;
    margin-top: 5%;
  }
  .rf__products .flexbox li p {
    font-size: 3.46vw;
  }
  .rf__products .flexbox li span {
    font-size: 3.2vw;
  }
  .rf__products .flexbox li .br_pc {
    display: none;
  }
  .rf__products .flexbox li .br_sp {
    display: block;
  }
  .rf__products.under {
    margin-top: 6%;
  }
}
/* u-align */
.u-align--center {
  text-align: center !important;
}
.u-align--right {
  text-align: right !important;
}
/* u-display */
.u-display--pcNone {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .u-display--pcNone {
    display: block !important;
  }
}
@media screen and (max-width: 768px) {
  .u-display--spNone {
    display: none !important;
  }
}
.u-display--inlineBlock {
  display: inline-block;
}