@charset "UTF-8";
/*
Theme Name: kaitori ichiba
*/
/*
 * foundation
 */
html {
  font-family: "Noto Sans JP", sans-serif;
  /*font-family: 'Noto Serif JP', serif;*/
  font-size: 10px;
  line-height: 1;
  text-align: left;
  -webkit-text-size-adjust: 100%;
  font-feature-settings: "palt";
  /*letter-spacing: .1em;*/
  color: #221815;
  scroll-behavior: smooth;
}

body {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.font {
  font-family: "Roboto", sans-serif;
}

.wrap_inner {
  max-width: 1140px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

.wrap_inner2 {
  max-width: 1200px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

section {
  padding: 100px 0;
}

@media only screen and (max-width: 769px) {
  .wrap_inner {
    padding: 0 10px;
  }
  section {
    padding: 13.33333vw 0;
  }
}
.slick-arrow {
  display: none !important;
}

.sp {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block !important;
  }
}

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

.btn-trigger {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .btn-trigger {
    display: block !important;
  }
}

/*=============================
.hum-btn
=============================*/
.hum-btn {
  display: none;
  position: fixed;
  top: 0px;
  right: 0px;
  width: 60px;
  height: 60px;
  z-index: 1000;
}
@media screen and (max-width: 767px) {
  .hum-btn {
    display: block;
  }
}

/*=============================
.btn-trigger
=============================*/
.btn-trigger {
  position: absolute;
  top: 19px;
  right: 15px;
  width: 30px;
  height: 24px;
  cursor: pointer;
  z-index: 1000;
}

.btn-trigger span {
  position: absolute;
  right: 0;
  width: 100%;
  height: 2px;
  background-color: #000;
}

.btn-trigger,
.btn-trigger span {
  display: inline-block;
  transition: all 0.5s;
  box-sizing: border-box;
}

.btn-trigger span:nth-of-type(1) {
  top: 0px;
}

.btn-trigger span:nth-of-type(2) {
  top: 11px;
}

.btn-trigger span:nth-of-type(3) {
  bottom: 0;
}

/*=============================
#btn05
=============================*/
#btn05.active span:nth-of-type(1) {
  transform: translateY(11px) rotate(-45deg);
}

#btn05.active span:nth-of-type(2) {
  left: 50%;
  opacity: 0;
  animation: active-btn05-bar02 0.8s forwards;
}
@keyframes active-btn05-bar02 {
  100% {
    height: 0;
  }
}
#btn05.active span:nth-of-type(3) {
  width: 100%;
  transform: translateY(-11px) rotate(45deg);
}

/*
  * layout
  */
.l-header__inner {
  background-color: #F8F1E6;
}
.l-header__top {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
}
.l-header__logo {
  max-width: 205px;
}
.l-header__logo img {
  width: 100%;
}
.l-header__info {
  display: flex;
  gap: 8px;
  align-items: center;
}
.l-header__info > p {
  max-width: 299px;
}
.l-header__info > p img {
  width: 100%;
}
.l-header__bottom {
  background: #86BE42;
}
.l-header__menu {
  max-width: 1140px;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.l-header__menu li {
  width: 25%;
}
.l-header__menu li a {
  display: block;
  color: #FFF;
  font-size: 16px;
  font-weight: 600;
  padding: 24px 0;
  text-align: center;
  transition: all 0.3s;
  position: relative;
}
.l-header__menu li a:hover {
  background-color: #34271E;
}
.l-header__menu li a::before {
  width: 1px;
  height: 90%;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: "";
}
.l-header__menu li:last-child a::after {
  width: 1px;
  height: 90%;
  background-color: #fff;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  content: "";
}
.l-header__menu li.current-menu-item a {
  background-color: #34271E;
}

@media screen and (max-width: 767px) {
  .l-header {
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    height: 59px;
    border-bottom: 4px solid #86BE42;
    background-color: #F8F1E6;
  }
  .l-header__inner {
    background-color: #F8F1E6;
  }
  .l-header__top {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
  }
  .l-header__logo {
    max-width: 130px;
  }
  .l-header__info {
    display: none;
  }
  .l-header__menu {
    display: none;
  }
  main {
    margin-top: 58px;
  }
}
.l-headerSp {
  padding: 36px 16px;
  display: none;
  position: fixed;
  top: 59px;
  left: 0;
  height: calc(100% - 59px);
  width: 100%;
  background-color: #34271E;
  z-index: 999;
  overflow-y: scroll;
}
.l-headerSp__menu li {
  border-bottom: 1px solid #fff;
  position: relative;
}
.l-headerSp__menu li::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 3px;
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-image: url(assets/img/common/arrow-ora.svg);
  width: 13px;
  height: 16px;
  transform: translateY(-50%);
}
.l-headerSp__menu li:first-child {
  border-top: 1px solid #fff;
}
.l-headerSp__menu li a {
  display: block;
  padding: 15px 0;
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.l-headerSp__tel {
  margin: 24px 0;
}
.l-headerSp__tel img {
  width: 100%;
}
.l-headerSp__btn {
  padding-bottom: 100px;
}
.l-headerSp__btn img {
  width: 100%;
}
.l-headerSp__btn li {
  margin-bottom: 10px;
}

.l-footer {
  background: #F8F0E5;
  padding-top: 70px;
  margin-top: 80px;
}
.l-footer__top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
.l-footer__top > div:first-child {
  width: 30%;
}
.l-footer__top > div:last-child {
  width: 68%;
}
.l-footer__top__logo {
  margin-bottom: 8px;
}
.l-footer__top__logo img {
  width: 100%;
}
.l-footer__top__txt01 {
  margin-bottom: 10px;
}
.l-footer__top__txt01 img {
  width: 100%;
}
.l-footer__top__btn {
  border-radius: 10px;
  margin: 16px 0 16px;
  color: #fff;
  height: 65px;
  display: flex;
  align-items: center;
  background: #30A560;
  position: relative;
}
.l-footer__top__btn > a {
  padding: 16px;
}
.l-footer__top__btn > a {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 8px;
  align-items: center;
}
.l-footer__top__btn > a p:first-child img {
  width: 100%;
}
.l-footer__top__btn > a p:nth-child(2) {
  color: #FBFBFB;
  font-family: "Noto Sans JP";
  font-size: 28.659px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 5px;
}
.l-footer__top__btn::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-image: url(assets/img/common/poly-w.svg);
  width: 15px;
  height: 16px;
  transform: translateY(-50%);
}
.l-footer__top__txt02 {
  color: #34271E;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.l-footer__top__banner > div {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background-color: #34271E;
  border-radius: 10px 10px 0 0;
  border-bottom: 4px solid #EC8B30;
}
.l-footer__top__banner > div > p:first-child {
  width: 42px;
}
.l-footer__top__banner > div > p:first-child img {
  width: 100%;
}
.l-footer__top__banner > div > p:nth-child(2) {
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.l-footer__top__banner > div > p:last-child {
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.l-footer__top__banner > ul {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  background-color: #fff;
  position: relative;
}
.l-footer__top__banner > ul::before {
  content: "";
  width: 0;
  height: calc(100% - 40px);
  border-right: 1px dotted #000;
  top: 20px;
  left: 50%;
  position: absolute;
}
.l-footer__top__banner > ul li {
  width: 46%;
}
.l-footer__top__banner > ul li > p {
  color: #34271E;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px;
  /* 144.444% */
  text-align: center;
  margin-bottom: 10px;
}
.l-footer__top__banner > ul li > div > p {
  background-color: #34271E;
  border-radius: 10px 10px 0 0;
  padding: 8px;
  text-align: center;
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px;
  /* 130% */
}
.l-footer__top__banner > ul li > div > div {
  padding: 16px;
  background-color: #F8F0E5;
}
.l-footer__top__banner > ul li > div > div p:last-child {
  line-height: 1.6;
}
.l-footer__top__banner__btn {
  border-radius: 10px;
  margin-top: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  background-color: #EC8B30;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.25);
}
.l-footer__top__banner__btn:hover {
  opacity: 0.7;
}
.l-footer__top__banner__btn > p:first-child {
  width: 73px;
}
.l-footer__top__banner__btn > p:first-child img {
  width: 100%;
}
.l-footer__top__banner__btn > p:nth-child(2) {
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  width: 86px;
}
.l-footer__top__banner__btn > div {
  width: calc(100% - 210px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.l-footer__top__banner__btn > div > p:first-child {
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.l-footer__top__banner__btn > div > p:last-child {
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  /* 114.286% 
  margin-top: 20px;*/
}
.l-footer__top__banner__btn > div > div > p {
  width: 80%;
  margin: 0 auto;
}
.l-footer__top__banner__btn > div > div > p img {
  width: 100%;
}
.l-footer__top__banner__btn2 {
  border-radius: 10px;
  margin-top: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  background-color: #86BE42;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.25);
}
.l-footer__top__banner__btn2:hover {
  opacity: 0.7;
}
.l-footer__top__banner__btn2 > p:first-child {
  width: 73px;
}
.l-footer__top__banner__btn2 > p:first-child img {
  width: 100%;
}
.l-footer__top__banner__btn2 > p:nth-child(2) {
  width: 86px;
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.l-footer__top__banner__btn2 > p:nth-child(3) {
  width: calc(100% - 210px);
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.l-footer__link {
  padding-bottom: 24px;
  display: flex;
}
.l-footer__link li {
  width: 16.6666666667%;
  color: #34271E;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  border-right: 1px solid #000;
  text-align: center;
}
.l-footer__link li:first-child {
  border-left: 1px solid #000;
}
.l-footer__link li a {
  transition: all 0.3s;
  display: block;
  padding: 16px;
}
.l-footer__link li a:hover {
  opacity: 0.7;
}
.l-footer__bottom {
  padding: 24px 0;
  background: #34271E;
  color: #fff;
}
.l-footer__link2 {
  margin-bottom: 42px;
  display: flex;
  justify-content: center;
}
.l-footer__link2 li {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border-right: 1px solid #fff;
  text-align: center;
  line-height: 1;
}
.l-footer__link2 li:last-child {
  border-right: none;
}
.l-footer__link2 li a {
  transition: all 0.3s;
  display: block;
  padding: 0 24px;
}
.l-footer__link2 li a:hover {
  opacity: 0.7;
}
.l-footer__copy {
  color: #FFF;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: center;
}

.l-footer__sp__banner {
  background-color: #F8F1E6;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
}
.l-footer__sp__banner > div {
  display: flex;
  align-items: center;
}
.l-footer__sp__banner > div > p {
  width: 43%;
}
.l-footer__sp__banner > div > p img {
  width: 100%;
}
.l-footer__sp__banner > div > ul {
  width: 57%;
  display: flex;
}
.l-footer__sp__banner > div > ul > li {
  width: 33.3333333333%;
}
.l-footer__sp__banner > div > ul > li img {
  width: 100%;
}

@media screen and (max-width: 991px) {
  .l-footer {
    padding-top: 40px;
    margin-top: 60px;
  }
  .l-footer__top {
    display: block;
    justify-content: space-between;
    margin-bottom: 40px;
  }
  .l-footer__top > div:first-child {
    width: 100%;
  }
  .l-footer__top > div:last-child {
    width: 100%;
  }
  .l-footer__top__btn {
    height: 65px;
  }
  .l-footer__top__btn > a p:nth-child(2) {
    font-size: 28.659px;
  }
  .l-footer__top__txt02 {
    display: none;
  }
  .l-footer__top__banner {
    margin-top: 36px;
  }
  .l-footer__top__banner > div {
    display: none;
  }
  .l-footer__top__banner > ul {
    display: block;
    padding: 0px;
    background-color: transparent;
  }
  .l-footer__top__banner > ul::before {
    content: none;
  }
  .l-footer__top__banner > ul li {
    width: 100%;
    margin-bottom: 20px;
  }
  .l-footer__top__banner > ul li > p {
    font-size: 18px;
    line-height: 26px;
  }
  .l-footer__top__banner > ul li > div > p {
    padding: 8px;
    font-size: 20px;
    line-height: 26px;
  }
  .l-footer__top__banner > ul li > div > div {
    padding: 16px;
    background-color: #fff;
  }
  .l-footer__top__banner > ul li > div > div p:last-child {
    line-height: 1.6;
  }
  .l-footer__top__banner__btn {
    display: none;
  }
  .l-footer__top__banner__btn2 {
    display: none;
  }
  .l-footer__link {
    padding-bottom: 24px;
    display: block;
  }
  .l-footer__link li {
    width: 100%;
    font-size: 16px;
    border-right: none;
    border-bottom: 1px solid #000;
    text-align: left;
  }
  .l-footer__link li:first-child {
    border-left: none;
    border-top: 1px solid #000;
  }
  .l-footer__link li a {
    padding: 14px 0;
  }
  .l-footer__bottom {
    padding: 24px 0;
    background: #34271E;
    color: #fff;
  }
  .l-footer__link2 {
    margin-bottom: 24px;
    display: flex;
    flex-wrap: wrap;
  }
  .l-footer__link2 li {
    font-size: 14px;
    margin-bottom: 8px;
  }
  .l-footer__link2 li a {
    padding: 0 12px;
  }
  .l-footer__copy {
    font-size: 12px;
    padding-bottom: 70px;
  }
}
.c-wrap {
  padding: 24px 0 0 20px;
  gap: 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.c-wrap.--mt {
  margin-top: 60px;
}

.c-main {
  width: calc(100% - 686px);
  max-width: 810px;
  margin: 0 0 0 auto;
}

.c-side {
  width: 263px;
}
.c-side__line {
  background-color: #30A560;
  border-radius: 16px;
  padding: 10px;
}
.c-side__line img {
  width: 100%;
}
.c-side__line a {
  transition: all 0.3s;
}
.c-side__line a:hover {
  opacity: 0.7;
}
.c-side__line > p:first-child {
  padding: 8px 5px 0;
}
.c-side__line > div {
  padding: 0 5px;
  display: flex;
  margin: 16px 0 12px;
  justify-content: space-between;
}
.c-side__line > div > p:first-child {
  width: 54.5%;
}
.c-side__line > div > p:last-child {
  width: 43%;
}
.c-side__tel {
  margin-top: 36px;
  background-color: #F8F1E6;
}
.c-side__tel a {
  transition: all 0.3s;
}
.c-side__tel a:hover {
  opacity: 0.7;
}
.c-side__tel > p {
  position: relative;
  transform: translateY(-40%);
}
.c-side__tel > p img {
  width: 100%;
}
.c-side__tel > div {
  margin-bottom: 16px;
  padding: 0 10px;
}
.c-side__tel > ul {
  padding: 0 10px 16px 10px;
}
.c-side__tel > ul li {
  margin-top: 10px;
}
.c-side__tel > ul li > p {
  background-color: #34271E;
  color: #FFF;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px;
  /* 130% */
  padding: 8px;
  border-radius: 16px 16px 0 0;
  text-align: center;
}
.c-side__tel > ul li > div {
  background-color: #fff;
  padding: 15px 10px;
}
.c-side__btn {
  margin-top: 20px;
}
.c-side__btn > li {
  margin-top: 10px;
  border-radius: 10px;
  position: relative;
}
.c-side__btn > li::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 8px;
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-image: url(assets/img/common/poly-w.svg);
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
}
.c-side__btn > li.--ora {
  background-color: #EC8B30;
}
.c-side__btn > li.--b {
  background-color: #34271E;
}
.c-side__btn > li.--gre {
  background-color: #86BE42;
}
.c-side__btn > li > a {
  padding: 10px 10px;
  transition: all 0.3s;
  display: block;
}
.c-side__btn > li > a:hover {
  opacity: 0.7;
}
.c-side__btn > li > a > div:first-child {
  margin-bottom: 10px;
  padding-right: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.c-side__btn > li > a > div:first-child > p {
  width: 25%;
}
.c-side__btn > li > a > div:first-child > p img {
  width: 100%;
}
.c-side__btn > li > a > div:first-child > div {
  width: 72%;
}
.c-side__btn > li > a > div:first-child > div > p:first-child {
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: 36.742px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 0;
}
.c-side__btn > li > a > div:first-child > div > p:last-child {
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.c-side__items {
  margin-top: 36px;
}
.c-side__items > p {
  color: #34271E;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  border: 4px solid rgba(236, 139, 48, 0.3);
  padding: 8px;
  margin-bottom: 24px;
}
.c-side__items > ul li {
  position: relative;
}
.c-side__items > ul li::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 8px;
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-image: url(assets/img/common/arrow-gre.svg);
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
}
.c-side__items > ul li > a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid #D6D6D6;
  position: relative;
  display: flex;
  gap: 10px;
  align-items: center;
}
.c-side__items > ul li > a > p:first-child {
  width: 60px;
}
.c-side__items > ul li > a > p:first-child img {
  width: 100%;
}
.c-side__items > ul li > a > p:last-child {
  color: #34271E;
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.c-side__btn2 {
  display: block;
  margin-top: 50px;
  background-color: #000;
  padding: 10px;
  border-radius: 10px;
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  position: relative;
  transition: all 0.3s;
}
.c-side__btn2:hover {
  opacity: 0.7;
}
.c-side__btn2::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 8px;
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-image: url(assets/img/common/poly-w.svg);
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
}

.c-side2 {
  position: sticky;
  top: 40px;
  width: 407px;
  background-color: #F8F1E6;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.c-side2 a {
  transition: all 0.3s;
}
.c-side2 a:hover {
  opacity: 0.7;
}
.c-side2 > p {
  position: relative;
  transform: translateY(-40%);
}
.c-side2 > p img {
  width: 100%;
}
.c-side2 > div {
  margin-bottom: 16px;
  padding: 0 20px;
}
.c-side2 > ul {
  padding: 0 20px 20px 20px;
}
.c-side2__btn {
  border-radius: 10px;
  margin-top: 8px;
  color: #fff;
  height: 65px;
  display: flex;
  align-items: center;
}
.c-side2__btn > a {
  padding: 16px;
}
.c-side2__btn.--01.--ora {
  background-color: #EC8B30;
}
.c-side2__btn.--01.--gre {
  background-color: #86BE42;
}
.c-side2__btn.--01 > a {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.c-side2__btn.--01 > a p:first-child {
  width: 10%;
}
.c-side2__btn.--01 > a p:first-child img {
  width: 100%;
}
.c-side2__btn.--01 > a p:nth-child(2) {
  text-align: center;
  width: 35%;
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.c-side2__btn.--01 > a p:last-child {
  width: 53%;
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.c-side2__btn.--02 {
  background: #30A560;
  position: relative;
}
.c-side2__btn.--02 > a {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 8px;
  align-items: center;
}
.c-side2__btn.--02 > a p:first-child {
  width: 10%;
}
.c-side2__btn.--02 > a p:first-child img {
  width: 100%;
}
.c-side2__btn.--02 > a p:nth-child(2) {
  width: 40%;
  color: #FBFBFB;
  font-family: "Noto Sans JP";
  font-size: 28.659px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.c-side2__btn.--02::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-image: url(assets/img/common/poly-w.svg);
  width: 15px;
  height: 16px;
  transform: translateY(-50%);
}

.--nolink {
  cursor: default;
  pointer-events: none;
}

@media screen and (max-width: 1200px) {
  .c-wrap {
    padding: 24px 0 0 20px;
  }
  .c-main {
    width: calc(100% - 279px);
  }
  .c-side2 {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .c-wrap {
    padding: 20px;
  }
  .c-main {
    width: 100%;
  }
  .c-side {
    display: none;
  }
  .c-side2 {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .c-wrap {
    padding: 20px 0;
  }
  .c-wrap.--mt {
    margin-top: 30px;
  }
}
/*
  * object
  */
.c-ttl01 {
  color: #34271E;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  padding: 8px;
  background-color: #f8f1e6;
  border-bottom: 4px solid #f1b479;
  border-top: 4px solid #b4d284;
}

/* ----------------------------------------------------------------------
 WordPress プリセットスタイル
---------------------------------------------------------------------- */
/* alignment */
.c-content .alignright {
  float: right;
}

.c-content .alignleft {
  float: left;
}

.c-content .aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 7px;
}

.c-content blockquote.alignleft,
.c-content img.alignleft {
  margin: 7px 24px 7px 0;
}

.c-content .wp-caption.alignleft {
  margin: 7px 14px 7px 0;
}

.c-content blockquote.alignright,
.c-content img.alignright {
  margin: 7px 0 7px 24px;
}

.c-content .wp-caption.alignright {
  margin: 7px 0 7px 14px;
}

.c-content blockquote.aligncenter,
.c-content img.aligncenter,
.c-content .wp-caption.aligncenter {
  margin-top: 7px;
  margin-bottom: 7px;
}

/* text and headline */
.c-content {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .c-content {
    padding: 0 20px;
  }
}

.c-content p {
  color: #34271E;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 2em;
  /* 162.5% */
}

.c-content h1,
.c-content h2,
.c-content h3,
.c-content h4,
.c-content h5,
.c-content h6 {
  clear: both;
  line-height: 1.4;
  margin: 0 0 15px 0;
  padding: 0;
  font-weight: 600;
}

.c-content h1 {
  color: #34271E;
  font-family: "Noto Sans JP";
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 50px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-content h1 {
    font-size: 32px;
    margin-bottom: 30px;
  }
}

.c-content h2 {
  color: #34271E;
  font-family: "Noto Sans JP";
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 50px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-content h2 {
    font-size: 32px;
    margin-bottom: 30px;
  }
}

.c-content h3 {
  font-size: 18px;
  padding: 10px 0;
  position: relative;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .c-content h3 {
    font-size: 16px;
  }
}
.c-content h3::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #E0E0E0;
  content: "";
}
.c-content h3::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 10%;
  height: 2px;
  background-color: #707070;
  content: "";
}

.c-content h4 {
  font-size: 16px;
  padding: 10px 0;
  line-height: 1.4;
  border-bottom: 1px dashed #707070;
}

.c-content h5 {
  font-size: 16px;
}

.c-content h6 {
  font-size: 16px;
}

/* image */
.c-content img[class*=align],
.c-content img[class*=wp-image-],
.c-content img[class*=attachment-],
.c-content img.size-full,
.c-content img.size-large,
.c-content .wp-post-image,
.c-content img {
  height: auto;
  max-width: 100%;
}

/* list */
.c-content li,
.c-content dt,
.c-content dd {
  line-height: 2.4;
}

.c-content ul,
.c-content ol,
.c-content dl {
  margin-bottom: 24px;
}

.c-content ol {
  list-style: decimal outside none;
  margin-left: 1.5em;
}

.c-content ul {
  list-style: circle outside none;
  margin-left: 1.3em;
}

.c-content li > ul,
.c-content li > ol {
  margin-bottom: 0;
}

.c-content dt {
  font-weight: bold;
}

.c-content dd {
  margin-bottom: 1em;
}

/* table */
.c-content .wp-block-table table {
  margin: 0 0 24px 0;
  width: 100% !important;
}

.c-content .wp-block-table td,
.c-content .wp-block-table th {
  border: none;
  border-bottom: 1px solid #D4B990;
  padding: 1em 8px;
  line-height: 1.6;
  color: #34271E;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  /* 162.5% */
}

.c-content .wp-block-table tr:first-child td,
.c-content .wp-block-table tr:first-child td {
  border-top: 1px solid #D4B990;
}

.c-content .wp-block-table tr th {
  font-weight: bold;
  text-align: center;
}

.c-content .wp-block-table tr td:first-child {
  font-weight: bold;
  text-align: center;
  width: 20%;
}
@media screen and (max-width: 767px) {
  .c-content .wp-block-table tr td:first-child {
    width: 30%;
  }
}

/* table style */
.c-content table.table_no_border th,
.c-content table.table_no_border td {
  border: none;
  padding-left: 0;
}

.c-content table.table_border_horizontal th,
.c-content table.table_border_horizontal td {
  border-left: none;
  border-right: none;
  padding-left: 0;
}

body.light_color .c-content td,
body.light_color .c-content th {
  border: 1px solid #ccc;
  background: #fafafa;
}

body.light_color .c-content th {
  background: #eee;
}

/* block quote */
.c-content blockquote {
  margin: 0 0 25px 0;
  padding: 27px 30px;
  background: #fff;
  border: 1px solid #ccc;
  box-shadow: 0px 3px 0px 0px rgba(150, 150, 150, 0.1);
  position: relative;
}

.c-content blockquote:before {
  content: '"';
  font-style: italic;
  font-size: 30px;
  font-weight: normal;
  line-height: 40px;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 5px;
  left: 10px;
  color: #5cbcd7;
}

.c-content blockquote:after {
  content: '"';
  font-style: italic;
  font-size: 30px;
  font-weight: normal;
  text-align: left;
  line-height: 60px;
  width: 30px;
  height: 30px;
  position: absolute;
  bottom: 7px;
  right: -2px;
  color: #5cbcd7;
}

.c-content blockquote cite {
  border-top: 1px dotted #aaa;
  display: block;
  padding: 20px 0 0 0;
  font-style: italic;
  text-align: right;
  font-size: 90%;
}

/* captions */
.c-content .wp-caption {
  margin-bottom: 24px;
  background: #f8f8f8;
  border: 1px solid #ccc;
  padding: 5px;
  max-width: 100%;
  border-radius: 5px;
  box-sizing: border-box;
}

.c-content .wp-caption-text {
  text-align: center;
  font-size: 12px;
  font-style: italic;
  line-height: 1.5;
  margin: 9px auto;
}

.c-content .wp-caption img[class*=wp-image-] {
  display: block;
  margin: 0 auto;
}

.c-tel {
  text-align: center;
  color: #34271E;
}
.c-tel > p:first-child {
  background-position: left center;
  background-size: contain;
  background-repeat: no-repeat;
  font-weight: 900;
  font-size: 27px;
  padding-left: 42px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 8px;
}
@media screen and (max-width: 1200px) {
  .c-tel > p:first-child {
    background-size: 30px;
  }
}
@media screen and (max-width: 767px) {
  .c-tel > p:first-child {
    background-size: contain;
  }
}
.c-tel > p:first-child a {
  display: block;
  text-align: left;
}
.c-tel > p:last-child {
  font-size: 12px;
}
.c-tel.--big > p:first-child {
  font-size: 45px;
  padding-left: 49px;
}
.c-tel.--big > p:last-child {
  font-size: 16px;
}
.c-tel.--mid > p:first-child {
  font-size: 28px;
  padding-left: 37px;
}
.c-tel.--mid > p:last-child {
  font-size: 16px;
}
.c-tel.--mini > p:first-child {
  font-size: 28px;
  padding-left: 34px;
}
@media screen and (max-width: 767px) {
  .c-tel.--mini > p:first-child {
    font-size: 35px;
    padding-left: 40px;
  }
}
.c-tel.--mini > p:last-child {
  font-size: 16px;
}
.c-tel.--minimini > p:first-child {
  font-size: 26px;
  padding-left: 32px;
}
.c-tel.--minimini > p:last-child {
  font-size: 16px;
  padding-left: 0;
}
.c-tel.--ora > p:first-child {
  background-image: url(assets/img/common/tel-ora.svg);
}
.c-tel.--gre > p:first-child {
  background-image: url(assets/img/common/tel-gre.svg);
}
.c-tel.--b > p:first-child {
  background-image: url(assets/img/common/tel-b.svg);
}
.c-tel.--w > p:first-child {
  color: #fff;
}
.c-tel.--w > p:first-child {
  background-image: url(assets/img/common/tel-w.svg);
}

.c-itemAll__list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
}
.c-itemAll__list li {
  width: 33.3333333333%;
  border: 1px solid #D3D3D3;
  position: relative;
}
.c-itemAll__list li::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 8px;
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-image: url(assets/img/common/arrow-gre.svg);
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
}
.c-itemAll__list li:nth-child(6n+1)::before {
  background-image: url(assets/img/common/arrow-ora.svg);
}
.c-itemAll__list li:nth-child(6n+2)::before {
  background-image: url(assets/img/common/arrow-ora.svg);
}
.c-itemAll__list li:nth-child(6n+3)::before {
  background-image: url(assets/img/common/arrow-ora.svg);
}
.c-itemAll__list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 6px;
}
.c-itemAll__list li a > p:first-child {
  width: 85px;
}
.c-itemAll__list li a > p:first-child img {
  width: 100%;
}
.c-itemAll__list li a > p:last-child {
  width: calc(100% - 98px);
  color: #34271E;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

@media screen and (max-width: 767px) {
  .c-itemAll__list {
    padding: 0 20px;
  }
  .c-itemAll__list li {
    width: 33.3333333333%;
  }
  .c-itemAll__list li::before {
    content: none;
  }
  .c-itemAll__list li a {
    display: block;
    padding: 12px 6px;
  }
  .c-itemAll__list li a > p:first-child {
    margin: 0 auto 8px;
    width: 85%;
  }
  .c-itemAll__list li a > p:first-child img {
    width: 100%;
  }
  .c-itemAll__list li a > p:last-child {
    text-align: center;
    width: 100%;
    font-size: 16px;
  }
}
.c-line {
  border-radius: 15px;
  background: #30A560;
  padding: 24px;
  position: relative;
  z-index: 1;
}
.c-line::before {
  content: "";
  width: 100%;
  height: 70%;
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  background-position: top right;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(assets/img/line3step/bg.png);
}
.c-line__txtwrap {
  width: 65%;
}
.c-line__txtwrap h2 {
  margin: 20px 0 16px;
}
.c-line__txtwrap img {
  width: 100%;
}
.c-line__flow {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
}
.c-line__flow li {
  width: 30%;
}
.c-line__flow li > p {
  background-color: #006D2D;
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-align: center;
  padding: 6px;
  border-radius: 20px 20px 0 0;
}
.c-line__flow li > div {
  border-radius: 0 0 20px 20px;
  background-color: #fff;
  padding: 16px 12px;
}
.c-line__flow li > div > p {
  color: #34271E;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  /* 137.5% */
  margin-bottom: 12px;
}
.c-line__flow li > div > a {
  transition: all 0.3s;
}
.c-line__flow li > div > a:hover {
  opacity: 0.7;
}
.c-line__flow li > div > a img {
  width: 100%;
}
.c-line__flow li > div > span img {
  width: 100%;
}
.c-line__flow li > span {
  display: block;
  text-align: center;
}
.c-line__flow li > span img {
  width: 18px;
}
.c-line__flow li:nth-child(2) {
  width: 5%;
  margin-top: 14%;
}
.c-line__flow li:nth-child(4) {
  width: 5%;
  margin-top: 14%;
}

@media screen and (max-width: 767px) {
  .c-line {
    border-radius: 15px;
    padding: 0px;
    position: relative;
    z-index: 1;
  }
  .c-line::before {
    content: none;
  }
  .c-line__txtwrap {
    width: 100%;
  }
  .c-line__txtwrap .--txtSp {
    padding-left: 20px;
    transform: translateY(-20px);
  }
  .c-line__txtwrap img {
    width: 100%;
  }
  .c-line__flow {
    margin-top: 10px;
    padding: 0 20px 20px;
    display: block;
    justify-content: space-between;
  }
  .c-line__flow li {
    width: 100%;
  }
  .c-line__flow li > p {
    font-size: 18px;
  }
  .c-line__flow li > div {
    border-radius: 0 0 20px 20px;
    display: flex;
    justify-content: space-between;
    background-color: #fff;
    padding: 16px 12px;
  }
  .c-line__flow li > div > p {
    width: 44%;
    font-size: 16px;
    margin-bottom: 0;
  }
  .c-line__flow li > div > span {
    display: block;
    width: 53%;
  }
  .c-line__flow li > div > span img {
    height: 130px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .c-line__flow li > div > a {
    display: block;
    margin: 30px 0;
  }
  .c-line__flow li > span {
    display: block;
    text-align: center;
    width: -moz-fit-content;
    width: fit-content;
    transform: rotate(90deg);
  }
  .c-line__flow li > span img {
    width: 18px;
  }
  .c-line__flow li:nth-child(2) {
    width: 5%;
    margin: 12px auto;
  }
  .c-line__flow li:nth-child(4) {
    width: 5%;
    margin: 12px auto;
  }
}
.c-howto__txt01 {
  color: #34271E;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  /* 162.5% */
  margin: 10px 0 36px;
}
.c-howto__banner > div:first-child {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background-color: #34271E;
  border-radius: 10px 10px 0 0;
  border-bottom: 4px solid #EC8B30;
}
.c-howto__banner > div:first-child > p:first-child {
  width: 42px;
}
.c-howto__banner > div:first-child > p:first-child img {
  width: 100%;
}
.c-howto__banner > div:first-child > p:nth-child(2) {
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.c-howto__banner > div:first-child > p:last-child {
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.c-howto__banner > div:nth-child(2) {
  background-color: #F8F1E6;
  padding: 20px;
}
.c-howto__banner > div:nth-child(2) ul {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.c-howto__banner > div:nth-child(2) ul::before {
  content: "";
  width: 0;
  height: 100%;
  border-right: 1px dotted #000;
  top: 0px;
  left: 50%;
  position: absolute;
}
.c-howto__banner > div:nth-child(2) ul li {
  width: 46%;
}
.c-howto__banner > div:nth-child(2) ul li > p {
  color: #34271E;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px;
  /* 144.444% */
  text-align: center;
  margin-bottom: 10px;
}
.c-howto__banner > div:nth-child(2) ul li > div:nth-child(2) {
  margin-bottom: 16px;
}
.c-howto__banner > div:nth-child(2) ul li > div:nth-child(2) > p:first-child {
  background-color: #34271E;
  border-radius: 10px 10px 0 0;
  padding: 8px;
  text-align: center;
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px;
  /* 130% */
}
.c-howto__banner > div:nth-child(2) ul li > div:nth-child(2) > p:last-child img {
  width: 100%;
}
.c-howto__banner > div:nth-child(2) ul li > div:last-child p:last-child {
  line-height: 1.6;
}
.c-howto__banner__more {
  max-width: 450px;
  margin: 24px auto 5px;
  display: block;
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  padding: 24px;
  border-radius: 6px;
  background: #34271E;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.25);
  position: relative;
}
.c-howto__banner__more::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 3px;
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-image: url(assets/img/common/poly-w.svg);
  width: 15px;
  height: 16px;
  transform: translateY(-50%);
}
.c-howto__banner__btn {
  max-width: 686px;
  margin: 30px auto 0;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  background-color: #EC8B30;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.25);
}
.c-howto__banner__btn:hover {
  opacity: 0.7;
}
.c-howto__banner__btn > p:first-child {
  width: 73px;
}
.c-howto__banner__btn > p:first-child img {
  width: 100%;
}
.c-howto__banner__btn > p:nth-child(2) {
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  width: 86px;
}
.c-howto__banner__btn > div {
  width: calc(100% - 170px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.c-howto__banner__btn > div > p:first-child {
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.c-howto__banner__btn > div > p:last-child {
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  /* 114.286% 
  margin-top: 20px; */
}
.c-howto__banner__btn > div > div > p {
  width: 80%;
  margin: 0 auto;
}
.c-howto__banner__btn > div > div > p img {
  width: 100%;
}
.c-howto__banner__btn2 {
  border-radius: 10px;
  margin-top: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  background-color: #86BE42;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.25);
  max-width: 686px;
  margin: 16px auto 0;
}
.c-howto__banner__btn2:hover {
  opacity: 0.7;
}
.c-howto__banner__btn2 > p:first-child {
  width: 73px;
}
.c-howto__banner__btn2 > p:first-child img {
  width: 100%;
}
.c-howto__banner__btn2 > p:nth-child(2) {
  width: 86px;
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.c-howto__banner__btn2 > p:nth-child(3) {
  width: calc(100% - 170px);
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media screen and (max-width: 767px) {
  .c-howto__txt01 {
    margin: 10px 0 36px;
    padding: 0 20px;
  }
  .c-howto__banner > div:first-child {
    flex-wrap: wrap;
  }
  .c-howto__banner > div:first-child > p:last-child {
    width: 100%;
  }
  .c-howto__banner > div:nth-child(2) {
    background-color: #F8F1E6;
    padding: 20px;
  }
  .c-howto__banner > div:nth-child(2) ul {
    display: block;
  }
  .c-howto__banner > div:nth-child(2) ul::before {
    content: "";
    width: 100%;
    height: 0;
    border-right: none;
    border-top: 1px dotted #000;
    top: 50%;
    left: 0;
    position: absolute;
  }
  .c-howto__banner > div:nth-child(2) ul li {
    width: 100%;
    margin-bottom: 30px;
  }
  .c-howto__banner > div:nth-child(2) ul li > div:nth-child(2) {
    margin-bottom: 16px;
  }
  .c-howto__banner > div:nth-child(2) ul li > div:nth-child(2) > p:first-child {
    font-size: 16px;
  }
  .c-howto__banner > div:nth-child(2) ul li > div:nth-child(2) > p:last-child img {
    width: 100%;
  }
  .c-howto__banner > div:nth-child(2) ul li > div:last-child p:last-child {
    line-height: 1.6;
  }
  .c-howto__banner__more {
    padding: 16px;
  }
  .c-howto__banner__more::before {
    right: 10px;
  }
  .c-howto__banner__btn {
    width: calc(100% - 40px);
    flex-wrap: wrap;
  }
  .c-howto__banner__btn > p:first-child {
    width: 20%;
  }
  .c-howto__banner__btn > p:first-child img {
    width: 100%;
  }
  .c-howto__banner__btn > p:nth-child(2) {
    width: 30%;
  }
  .c-howto__banner__btn > p:nth-child(3) {
    width: 40%;
    color: #FFF;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
  .c-howto__banner__btn > div {
    width: 100%;
    display: block;
    margin-top: 10px;
  }
  .c-howto__banner__btn > div > p:last-child {
    text-align: center;
    margin-top: 10px;
  }
  .c-howto__banner__btn > div > div > p {
    width: 50%;
  }
  .c-howto__banner__btn2 {
    width: calc(100% - 40px);
    flex-wrap: wrap;
  }
  .c-howto__banner__btn2 > p:first-child {
    width: 20%;
  }
  .c-howto__banner__btn2 > p:nth-child(2) {
    width: 75%;
  }
  .c-howto__banner__btn2 > p:nth-child(3) {
    width: 100%;
    margin-top: 8px;
  }
}
.c-faq__ttl {
  color: #FFF;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  background: #34271E;
}
.c-faq__ttl span {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 16px 84px;
  position: relative;
}
.c-faq__ttl span::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(assets/img/faq/i02.svg);
  width: 61px;
  height: 45px;
  transform: translateY(-50%);
}
.c-faq__ttl span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(assets/img/faq/i01.svg);
  width: 61px;
  height: 45px;
  transform: translateY(-50%);
}
.c-faq__content {
  padding: 20px;
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
}
.c-faq__content__txt01 {
  color: #34271E;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  /* 162.5% */
  margin-bottom: 20px;
}
.c-faq.--top .c-faq__content {
  background-image: url(assets/img/faq/bg1.jpg);
}
.c-faq.--trip .c-faq__content {
  background-image: url(assets/img/faq/bg2.jpg);
}
.c-faq__list li {
  padding: 8px 20px 0;
  background-color: #fff;
  margin-top: 20px;
  border-radius: 10px;
}
.c-faq__list li dl dt {
  color: #34271E;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  padding: 20px 0 20px 50px;
  border-bottom: 1px dotted #34271E;
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 41px;
  background-image: url(assets/img/faq/q.svg);
}
.c-faq__list li dl dd {
  color: #34271E;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  /* 162.5% */
  padding: 20px 0 20px 50px;
  background-position: left 16px;
  background-repeat: no-repeat;
  background-size: 41px;
  background-image: url(assets/img/faq/a.svg);
}

@media screen and (max-width: 767px) {
  .c-faq__content {
    padding: 20px 0;
  }
  .c-faq.--top .c-faq__content {
    background-image: url(assets/img/faq/bg1-sp.jpg);
  }
  .c-faq.--trip .c-faq__content {
    background-image: url(assets/img/faq/bg1-sp.jpg);
  }
  .c-faq__list li {
    padding: 0px 20px 0;
    background-color: #fff;
    margin-top: 20px;
    border-radius: 10px;
  }
  .c-faq__list li dl dt {
    position: relative;
    font-size: 20px;
    padding: 20px 40px 20px 50px;
    border-bottom: none;
  }
  .c-faq__list li dl dt::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 3px;
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-image: url(assets/img/faq/plus.svg);
    width: 24px;
    height: 24px;
    transform: translateY(-50%);
  }
  .c-faq__list li dl dd {
    display: none;
    border-top: 1px dotted #34271E;
  }
  .c-faq__list li.active dl dt::before {
    background-image: url(assets/img/faq/minus.svg);
  }
  .c-faq__list li.active dl dd {
    display: block;
  }
}
.c-bread {
  background-color: #F3BF8E;
}
.c-bread ul {
  display: flex;
}
.c-bread ul li {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  padding: 20px 0;
}
.c-bread ul li:first-child {
  color: #fff;
  background-color: #34271E;
  padding-right: 40px;
  padding-left: calc(50% - 550px);
  position: relative;
}
.c-bread ul li:first-child::before {
  content: "";
  position: absolute;
  top: 0;
  left: calc(100% - 1px);
  background: #34271E;
  height: 100%;
  width: 36px;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.c-bread ul li:last-child {
  margin-left: 50px;
}

@media screen and (max-width: 767px) {
  .c-bread ul li {
    padding: 15px 0;
  }
  .c-bread ul li:first-child {
    padding-left: 20px;
  }
}
.c-card__txt01 {
  margin: 20px 0;
  text-align: center;
  color: #000;
  font-size: 18px;
  font-style: normal;
  line-height: normal;
}
.c-card__txt01 span {
  font-weight: 600;
  background: linear-gradient(to bottom, transparent 50%, #dbebc6 50%);
}
.c-card__box {
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(assets/img/card/bg1.jpg);
  padding: 20px;
}
.c-card__box > div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}
.c-card__box > div > div {
  width: 55%;
}
.c-card__box > div > div p:first-child {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 30.5px;
  /* 169.444% */
  background-color: #fff;
  border-radius: 10px;
  padding: 12px 20px;
  margin-bottom: 16px;
}
.c-card__box > div > div p:last-child {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  /* 128.571% */
}
.c-card__box > div > p {
  width: 43%;
}
.c-card__box > div > p img {
  width: 100%;
}
.c-card__box dl dt {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-top: 8px;
}
.c-card__box dl dd {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  /* 162.5% */
}

@media screen and (max-width: 767px) {
  .c-card__box {
    background-position: bottom right;
    background-image: url(assets/img/card/bg1-sp.jpg);
  }
  .c-card__box > div {
    display: block;
    margin-bottom: 15px;
  }
  .c-card__box > div > div {
    width: 100%;
    margin-bottom: 15px;
  }
  .c-card__box > div > p {
    width: 100%;
  }
}
.c-reason__list {
  display: flex;
  justify-content: space-between;
}
.c-reason__list li {
  width: 33%;
  background: linear-gradient(to bottom, transparent 30%, #F8F1E6 30%);
  padding: 20px 10px;
}
.c-reason__list li p:first-child {
  width: 70%;
  margin: 0 auto 10px;
}
.c-reason__list li p:first-child img {
  width: 100%;
}
.c-reason__list li p:last-child {
  color: #000;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  /* 144.444% */
}

@media screen and (max-width: 767px) {
  .c-reason__list {
    display: block;
    justify-content: space-between;
    padding: 0 20px;
  }
  .c-reason__list li {
    width: 100%;
    margin-bottom: 0px;
    background: linear-gradient(to bottom, transparent 30%, #F8F1E6 30%);
    padding: 20px 10px;
  }
  .c-reason__list li p:first-child {
    width: 70%;
    max-width: 150px;
    margin: 0 auto 10px;
  }
  .c-reason__list li p:first-child img {
    width: 100%;
  }
  .c-reason__list li p:last-child {
    font-size: 16px;
  }
}
.p-top-mainvisual img {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .p-top-mainvisual {
    margin-bottom: 16px;
  }
}
.p-top-sec1__txt01 {
  color: #34271E;
  font-family: "Noto Serif JP";
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 20px;
}
.p-top-sec1__txt01 span {
  background: linear-gradient(to bottom, transparent 50%, #FFDD9A 50%);
}
.p-top-sec1__txt02 {
  color: #34271E;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
  margin-bottom: 50px;
}

@media screen and (max-width: 767px) {
  .p-top-sec1__txt01 {
    padding: 0 20px;
    font-size: 24px;
  }
  .p-top-sec1__txt02 {
    padding: 0 20px;
  }
}
.p-top-sec2,
.p-top-sec3,
.p-top-sec4 {
  padding-top: 60px;
}

.p-top-sec5 {
  margin-top: 20px;
  padding: 36px;
  border: 15px solid #86BE42;
  background: #F8F1E6;
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: 60%;
  background-image: url(assets/img/top/02.png);
}
.p-top-sec5 h2 {
  color: #34271E;
  text-align: center;
  font-family: "Noto Serif JP";
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 60px;
  /* 37.937px */
}
.p-top-sec5 h2 span {
  background: linear-gradient(to bottom, transparent 50%, #fbe6a4 50%);
}
.p-top-sec5 p {
  color: #34271E;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 148.253%;
  /* 29.651px */
}

@media screen and (max-width: 767px) {
  .p-top-sec5 {
    margin-top: 40px;
    padding: 20px 0px 0;
    border: 10px solid #86BE42;
    background: #F8F1E6;
    background-image: none;
  }
  .p-top-sec5 h2 {
    font-size: 28px;
    margin-bottom: 30px;
    padding: 0 20px;
  }
  .p-top-sec5 p {
    font-size: 16px;
  }
  .p-top-sec5 p:nth-child(2) {
    padding: 0 20px;
  }
  .p-top-sec5 p img {
    width: 100%;
  }
}
.p-beginner-sec {
  padding-top: 60px;
}

.p-beginner-sec1__ttl {
  color: #FFF;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 24px;
  padding: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  background: #34271E;
}
.p-beginner-sec1__content {
  padding: 20px;
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(assets/img/beginner/bg.jpg);
}
.p-beginner-sec1__list li.--item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.p-beginner-sec1__list li.--item > p {
  width: 140px;
}
.p-beginner-sec1__list li.--item > p img {
  width: 100%;
}
.p-beginner-sec1__list li.--item > div {
  width: calc(100% - 140px);
  background-color: #fff;
  padding: 16px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.p-beginner-sec1__list li.--item > div > div {
  width: 55%;
}
.p-beginner-sec1__list li.--item > div > div h3 {
  color: #34271E;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  padding-bottom: 8px;
  margin-bottom: 12px;
  border-bottom: 1px dotted #34271E;
}
.p-beginner-sec1__list li.--item > div > div p {
  color: #34271E;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  /* 162.5% */
}
.p-beginner-sec1__list li.--item > div > p {
  width: 42%;
}
.p-beginner-sec1__list li.--item > div > p img {
  width: 100%;
}
.p-beginner-sec1__list li.--arrow {
  text-align: center;
  margin: 16px 0;
}
.p-beginner-sec1__list li.--txt {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}
.p-beginner-sec1__list li.--txt::before {
  z-index: -1;
  content: "";
  position: absolute;
  top: 50%;
  width: 100%;
  left: 0;
  height: 0;
  border-bottom: 1px dotted #34271E;
}
.p-beginner-sec1__list li.--txt p {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  color: #000;
  text-align: center;
  font-family: "Noto Serif JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding: 8px;
  background-color: #f8f1e6;
}

@media screen and (max-width: 767px) {
  .p-beginner-sec1__content {
    background-image: url(assets/img/beginner/bg-sp.jpg);
  }
  .p-beginner-sec1__list li.--item {
    display: block;
  }
  .p-beginner-sec1__list li.--item > p {
    width: 100px;
    margin: 0 auto 10px;
  }
  .p-beginner-sec1__list li.--item > p img {
    width: 100%;
  }
  .p-beginner-sec1__list li.--item > div {
    width: 100%;
    display: block;
  }
  .p-beginner-sec1__list li.--item > div > div {
    width: 100%;
  }
  .p-beginner-sec1__list li.--item > div > p {
    width: 100%;
    margin-top: 10px;
  }
}
.p-beginner-sec2 {
  padding-top: 60px;
}
.p-beginner-sec2__ttl {
  color: #34271E;
  text-align: center;
  font-family: "Noto Serif JP";
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 16px;
  margin-top: 60px;
}
.p-beginner-sec2__img {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}
.p-beginner-sec2__img img {
  width: 100%;
}
.p-beginner-sec2__img > p {
  width: 53.7%;
}
.p-beginner-sec2__img > div {
  width: 45.5%;
}
.p-beginner-sec2__img > div p {
  margin-bottom: 1%;
}
.p-beginner-sec2__txt {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  /* 162.5% */
}

@media screen and (max-width: 767px) {
  .p-beginner-sec2 {
    padding-top: 60px;
  }
  .p-beginner-sec2__ttl {
    font-size: 28px;
    margin-top: 30px;
  }
  .p-beginner-sec2__img {
    padding: 0 20px;
    display: block;
    justify-content: space-between;
    margin-bottom: 16px;
  }
  .p-beginner-sec2__img img {
    width: 100%;
  }
  .p-beginner-sec2__img > p {
    width: 100%;
    margin-bottom: 1%;
  }
  .p-beginner-sec2__img > p img {
    max-height: 180px;
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
  }
  .p-beginner-sec2__img > div {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  .p-beginner-sec2__img > div p {
    width: 49%;
    margin-bottom: 0;
  }
  .p-beginner-sec2__txt {
    padding: 0 20px;
  }
}
.p-beginner-sec3 {
  padding-top: 60px;
}
.p-beginner-sec3__img {
  margin-top: 18px;
}
.p-beginner-sec3__img img {
  width: 100%;
}
.p-beginner-sec3__list {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
.p-beginner-sec3__list li {
  width: 32%;
}
.p-beginner-sec3__list li p {
  text-align: justify;
  margin-bottom: 16px;
  color: #000;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  /* 162.5% */
}
.p-beginner-sec3__list li p img {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .p-beginner-sec3 {
    padding-top: 30px;
  }
  .p-beginner-sec3__img {
    margin-top: 18px;
  }
  .p-beginner-sec3__img img {
    width: 100%;
  }
  .p-beginner-sec3__list {
    padding: 0 20px;
    display: block;
    justify-content: space-between;
    margin-top: 20px;
  }
  .p-beginner-sec3__list li {
    width: 100%;
    margin-top: 20px;
  }
  .p-beginner-sec3__list li p {
    text-align: justify;
    margin-bottom: 16px;
    color: #000;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    /* 162.5% */
  }
  .p-beginner-sec3__list li p img {
    width: 100%;
    max-height: 180px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.p-beginner-sec4 {
  padding-top: 30px;
}

.p-beginner-sec5 {
  padding-top: 60px;
}
.p-beginner-sec5__txt {
  margin: 20px 0;
  color: #000;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  /* 162.5% */
}
.p-beginner-sec5__box {
  background-color: #F8F1E6;
  padding: 40px 20px 20px;
  margin-top: -20px;
}
.p-beginner-sec5__box__ttl {
  position: relative;
  z-index: 1;
  color: #FFF;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  border-radius: 55px;
  background: #30A560;
  line-height: normal;
  padding: 12px;
}
.p-beginner-sec5__box h4 {
  color: #FFF;
  text-align: center;
  background: #34271E;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  padding: 12px;
}
.p-beginner-sec5__box__item {
  background-color: #fff;
  margin-bottom: 24px;
}
.p-beginner-sec5__box__list {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.p-beginner-sec5__box__list li.--item {
  width: 30%;
}
.p-beginner-sec5__box__list li.--item img {
  width: 100%;
}
.p-beginner-sec5__box__list li.--item.--wide {
  width: 40%;
}
.p-beginner-sec5__box__list li.--item .--img {
  min-height: 240px;
  max-width: 260px;
  margin: 0 auto;
}
.p-beginner-sec5__box__list li.--item .--txt {
  display: flex;
  margin-top: 16px;
  align-items: center;
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  justify-content: space-between;
  /* 162.5% */
}
.p-beginner-sec5__box__list li.--item .--txt.--top {
  align-items: flex-start;
  margin-bottom: 16px;
}
.p-beginner-sec5__box__list li.--item .--txt span:first-child {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50px;
  color: #FFF;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  background-color: #000;
}
.p-beginner-sec5__box__list li.--item .--txt span:last-child {
  width: calc(100% - 40px);
  display: flex;
}
.p-beginner-sec5__box__list li.--arrow {
  width: 5%;
  margin-top: 15%;
  text-align: center;
}
.p-beginner-sec5__box__list li.--arrow img {
  display: block;
  width: 15px;
}
.p-beginner-sec5__how h4 {
  margin-top: 40px;
  margin-bottom: 16px;
  color: #34271E;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 26px;
  /* 162.5% */
}
.p-beginner-sec5__how h4 span {
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
}
.p-beginner-sec5__how ul {
  display: flex;
  justify-content: space-between;
}
.p-beginner-sec5__how ul li {
  width: 32%;
}
.p-beginner-sec5__how ul li p:first-child {
  padding: 6px;
  padding-left: 60px;
  border-radius: 50px;
  background: #30A560;
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  position: relative;
}
.p-beginner-sec5__how ul li p:first-child::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 15px;
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-image: url(assets/img/common/i-check.svg);
  width: 25px;
  height: 25px;
  transform: translateY(-50%);
}
.p-beginner-sec5__how ul li p:last-child {
  margin-top: 12px;
}
.p-beginner-sec5__how ul li p:last-child img {
  width: 100%;
}
.p-beginner-sec5__how__txt01 {
  color: #34271E;
  font-family: "Noto Serif JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 34px;
  text-align: center;
  margin-bottom: 12px;
  margin-top: 12px;
}
.p-beginner-sec5__how__txt01 span {
  font-size: 24px;
}
.p-beginner-sec5__how__txt02 {
  color: #000;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  /* 162.5% */
}

@media screen and (max-width: 767px) {
  .p-beginner-sec5__box {
    width: calc(100% - 40px);
    margin: -20px auto 0;
  }
  .p-beginner-sec5__box__ttl {
    width: calc(100% - 40px);
    margin: 0 auto;
  }
  .p-beginner-sec5__box__item {
    background-color: #fff;
    margin-bottom: 24px;
  }
  .p-beginner-sec5__box__list {
    padding: 20px;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .p-beginner-sec5__box__list li.--item {
    width: 100%;
  }
  .p-beginner-sec5__box__list li.--item img {
    width: 100%;
  }
  .p-beginner-sec5__box__list li.--item.--wide {
    width: 100%;
  }
  .p-beginner-sec5__box__list li.--item .--img {
    min-height: auto;
    max-width: 100%;
    margin: 0 auto;
  }
  .p-beginner-sec5__box__list li.--arrow {
    width: 5%;
    margin: 10px auto;
    text-align: center;
  }
  .p-beginner-sec5__box__list li.--arrow img {
    display: block;
    width: 15px;
    transform: rotate(90deg);
  }
  .p-beginner-sec5__box__list.--rev li {
    display: flex;
    flex-direction: column-reverse;
  }
  .p-beginner-sec5__how ul {
    display: block;
    max-width: 260px;
    margin: 0 auto;
  }
  .p-beginner-sec5__how ul li {
    width: 100%;
    margin-bottom: 20px;
  }
  .p-beginner-sec5__how__txt02 {
    padding: 0 20px;
  }
}
.p-all-sec {
  padding-top: 60px;
}

.p-all-sec1 img {
  width: 100%;
}

.p-all-sec2 {
  padding-top: 60px;
}
.p-all-sec2__txt {
  margin-top: 20px;
  background: #F8F1E6;
  padding: 20px;
  text-align: center;
}
.p-all-sec2__txt p {
  font-weight: 600;
  color: #34271E;
  font-family: "Noto Serif JP";
  line-height: 1.6;
}
.p-all-sec2__txt p span {
  background: linear-gradient(to bottom, transparent 70%, #ffdd9a 70%);
}
.p-all-sec2__txt p:first-child {
  font-size: 22.527px;
  margin-bottom: 16px;
}
.p-all-sec2__txt p:first-child span {
  font-size: 26.039px;
}
.p-all-sec2__txt p:last-child {
  font-size: 20.806px;
}
.p-all-sec2__txt p:last-child span {
  font-size: 24px;
}

.p-store-sec1__box {
  margin-top: 60px;
}
.p-store-sec1__box h3 {
  color: #FFF;
  text-align: center;
  font-family: "Noto Serif JP";
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding: 12px;
  background: #34271E;
}
.p-store-sec1__box > div {
  padding: 24px 20px;
  border: 1px solid #34271E;
  background: #F8F1E6;
}
.p-store-sec1__box > div > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.p-store-sec1__box > div > div > p:first-child {
  width: 65%;
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  /* 162.5% */
}
.p-store-sec1__box > div > div > p:first-child span {
  font-size: 20px;
  font-weight: 700;
}
.p-store-sec1__box > div > div > p:last-child {
  width: 33%;
}
.p-store-sec1__box > div > div > p:last-child img {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .p-store-sec1__box {
    margin-top: 30px;
    padding: 0 20px;
  }
  .p-store-sec1__box > div {
    padding: 24px 20px;
    border: 1px solid #34271E;
    background: #F8F1E6;
  }
  .p-store-sec1__box > div > div {
    display: block;
  }
  .p-store-sec1__box > div > div > p:first-child {
    width: 100%;
    margin-bottom: 16px;
  }
  .p-store-sec1__box > div > div > p:last-child {
    width: 100%;
  }
}
.p-sales-main {
  color: #000;
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  padding: 100px 0;
  background-image: url(assets/img/sales/bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.p-sales-sec{
  display: flex;
}

@media screen and (max-width: 767px) {
  .p-sales-main {
    font-size: 36px;
    padding: 70px 0;
    background-image: url(assets/img/sales/bg-sp.jpg);
  }
}
.p-trip-sec1__ttl {
  color: #000;
  font-family: "Noto Serif JP";
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 12px;
}
.p-trip-sec1__txt {
  color: #34271E;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  /* 162.5% */
  margin-bottom: 20px;
}
.p-trip-sec1__box h3 {
  color: #FFF;
  text-align: center;
  font-family: "Noto Serif JP";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding: 12px;
  background: #34271E;
}
.p-trip-sec1__box > div {
  padding: 20px;
  background-color: #ec8b30;
  background-position: left;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(assets/img/trip/02.png);
}
.p-trip-sec1__box > div ul {
  width: 45%;
  margin: 0 0 0 auto;
}
.p-trip-sec1__box > div ul li {
  background: linear-gradient(to right, transparent 0%, #fff 20%);
  padding: 12px;
  text-align: center;
  margin-top: 10px;
}
.p-trip-sec1__box > div ul li h4 {
  padding-left: 30px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  color: #34271E;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  background-position: left center;
  background-size: 20px 25px;
  background-repeat: no-repeat;
  background-image: url(assets/img/trip/i01.svg);
}
.p-trip-sec1__box > div ul li p {
  margin-top: 12px;
  color: #34271E;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  /* 162.5% */
}
.p-trip-sec1__box2 {
  margin-top: 30px;
}
.p-trip-sec1__box2 h3 {
  color: #FFF;
  text-align: center;
  font-family: "Noto Serif JP";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding: 12px;
  background: #34271E;
}
.p-trip-sec1__box2 > div {
  padding: 20px;
  background-color: #f8f1e6;
}
.p-trip-sec1__box2 > div > p {
  color: #34271E;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  /* 162.5% */
  margin-bottom: 16px;
}
.p-trip-sec1__box2 > div ul li {
  display: flex;
  justify-content: space-between;
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
}
.p-trip-sec1__box2 > div ul li .--txt {
  display: flex;
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  justify-content: space-between;
  /* 162.5% */
}
.p-trip-sec1__box2 > div ul li .--txt span:first-child {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50px;
  color: #FFF;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  background-color: #EC8B30;
  line-height: 1;
}
.p-trip-sec1__box2 > div ul li .--txt span:last-child {
  width: calc(100% - 40px);
  display: flex;
}
.p-trip-sec1__box2 > div ul li > div {
  width: 60%;
}
.p-trip-sec1__box2 > div ul li > div > p {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  /* 162.5% */
  margin-top: 12px;
  margin-bottom: 20px;
}
.p-trip-sec1__box2 > div ul li > div a {
  display: block;
  margin-top: 16px;
  transition: all 0.3s;
}
.p-trip-sec1__box2 > div ul li > div a:hover {
  opacity: 0.7;
}
.p-trip-sec1__box2 > div ul li > div a img {
  width: 100%;
}
.p-trip-sec1__box2 > div ul li > p {
  width: 38%;
}
.p-trip-sec1__box2 > div ul li > p img {
  width: 100%;
}
.p-trip-sec1__box2 > div ul li.--arrow {
  background-color: transparent;
  border-radius: 0px;
  padding: 0px;
  text-align: center;
  margin: 12px 0;
}
.p-trip-sec1__box2 > div ul li.--arrow p {
  margin: 0 auto;
  width: 30px;
}
.p-trip-sec1__box2 > div ul li.--arrow p img {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .p-trip-sec1__ttl {
    padding: 0 20px;
  }
  .p-trip-sec1__txt {
    padding: 0 20px;
  }
  .p-trip-sec1__box > div {
    padding: 230px 20px 20px;
    background-position: top;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(assets/img/trip/02-sp.png);
  }
  .p-trip-sec1__box > div ul {
    width: 100%;
  }
  .p-trip-sec1__box > div ul li {
    background: #fff;
    padding: 8px;
    text-align: center;
    margin-top: 10px;
  }
  .p-trip-sec1__box > div ul li h4 {
    font-size: 18px;
  }
  .p-trip-sec1__box > div ul li p {
    margin-top: 8px;
  }
  .p-trip-sec1__box2 > div ul li {
    display: block;
  }
  .p-trip-sec1__box2 > div ul li > div {
    width: 100%;
    margin-bottom: 20px;
  }
  .p-trip-sec1__box2 > div ul li > div > p {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    /* 162.5% */
    margin-top: 12px;
    margin-bottom: 20px;
  }
  .p-trip-sec1__box2 > div ul li > div a {
    margin-top: 8px;
  }
  .p-trip-sec1__box2 > div ul li > p {
    width: 100%;
  }
  .p-trip-sec1__box2 > div ul li > p img {
    max-height: 180px;
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
  }
}
.p-trip-sec2 {
  padding-top: 60px;
}
.p-trip-sec2__box {
  padding: 20px;
  background-color: #f8f1e6;
  margin-top: 40px;
}
.p-trip-sec2__box p:first-child {
  color: #34271E;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: -10px;
}
.p-trip-sec2__box p:nth-child(2) {
  background: linear-gradient(to bottom, transparent 70%, #ffdd9a 70%);
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 20px;
  color: #34271E;
  font-family: "Noto Serif JP";
  font-size: 22.175px;
  font-style: normal;
  font-weight: 700;
  line-height: 36.035px;
}
.p-trip-sec2__box p:nth-child(2) span {
  /* 162.5% */
}
.p-trip-sec2__box p:nth-child(2) span span {
  color: #34271E;
  text-align: center;
  font-family: "Noto Serif JP";
  font-size: 33.07px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.p-trip-sec2__box p:nth-child(2) span span span {
  font-size: 55.116px;
}
.p-trip-sec2__box ul {
  display: flex;
  justify-content: space-between;
}
.p-trip-sec2__box ul li {
  width: 49%;
}
.p-trip-sec2__box ul li a {
  display: block;
  margin-top: 16px;
  transition: all 0.3s;
}
.p-trip-sec2__box ul li a:hover {
  opacity: 0.7;
}
.p-trip-sec2__box ul li a img {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .p-trip-sec2__box p:first-child {
    margin-bottom: 20px;
  }
  .p-trip-sec2__box p:nth-child(2) {
    background: none;
  }
  .p-trip-sec2__box p:nth-child(2) > span {
    background: linear-gradient(to bottom, transparent 60%, #ffdd9a 60%);
  }
  .p-trip-sec2__box ul {
    display: block;
  }
  .p-trip-sec2__box ul li {
    width: 100%;
  }
  .p-trip-sec2__box ul li a {
    display: block;
    margin-top: 8px;
  }
}
.p-trip-sec3 {
  padding-top: 60px;
}/*# sourceMappingURL=style.css.map */