@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,700;1,400;1,700&display=swap");
html {
  scroll-behavior: smooth;
}

body {
  color: #000000;
  font-size: 16px;
  line-height: 2;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 400;
  background: #ffffff;
}

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

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

/*PC，SP出し分け*/
.is-pc {
  display: block;
}

.is-sp {
  display: none;
}

@media (max-width : 1247px ){
  .is-pc {
    display: none;
  }
  .is-sp {
    display: block;
  }
}
@media (max-width : 1247px ){
  .wrapper {
    overflow: hidden;
  }
}

/*----------------------------------------------
 header
----------------------------------------------*/
.header .header__logo {
  z-index: 100;
  position: fixed;
  top: 17px;
  left: 67px;
}
@media (max-width : 1247px ){
  .header .header__logo {
    top: 8px;
    left: 12px;
  }
}
@media (hover: hover) {
  .header .header__logoLink:hover {
    opacity: 0.7;
  }
}
.header .header__linkWrap {
  z-index: 100;
  position: fixed;
  top: 0;
  right: 0;
}
.header .header__linkWrap > a {
  width: 224px;
  height: 60px;
  background: #06c755;
  filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.4));
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 1.5;
  text-align: center;
  color: #fff;
  gap: 12px;
  text-decoration: none;
}
@media (max-width : 1247px ){
  .header .header__linkWrap > a {
    width: 160px;
    height: 40px;
    font-size: 14px;
  }
}
@media (hover: hover) {
  .header .header__linkWrap > a:hover {
    opacity: 0.7;
  }
}
.header .header__linkWrap > a::after {
  content: "";
  display: block;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid #ffffff;
}
@media (max-width : 1247px ){
  .header .header__linkWrap > a::after {
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 6px solid #ffffff;
  }
}

/*----------------------------------------------
 mainVisual
----------------------------------------------*/
.mainVisual {
  position: relative;
}
.mainVisual .mainVisual__leadBg {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: #fff;
  opacity: 0.95;
  z-index: -1;
}
.mainVisual .mainVisual__image {
  position: relative;
}
.mainVisual .mainVisual__image img {
  min-height: 1000px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width : 1247px ){
  .mainVisual .mainVisual__image img {
    min-height: auto;
    height: auto;
  }
}
.mainVisual .mainVisual__inner {
  position: relative;
  width: 100%;
  max-width: 1366px;
  margin: 0 auto;
}
.mainVisual .mainVisual__leadWrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 450px;
  z-index: 1;
  color: #2f2f2f;
  padding: 80px 0 98px;
}
@media (max-width : 1247px ){
  .mainVisual .mainVisual__leadWrap {
    position: relative;
    width: 100%;
    bottom: auto;
    left: auto;
    padding: 36px 20px 35px;
  }
}
.mainVisual .mainVisual__leadTitle {
  font-weight: bold;
  font-size: 40px;
  letter-spacing: 0.05em;
  line-height: 1.55;
  text-align: center;
  display: block;
}
@media (max-width : 1247px ){
  .mainVisual .mainVisual__leadTitle {
    font-size: 24px;
    line-height: 1.5;
  }
}
.mainVisual .mainVisual__leadTitleEm {
  font-weight: bold;
  font-size: 50px;
  letter-spacing: 0.08em;
  text-align: center;
  position: relative;
  line-height: 1.8;
}
@media (max-width : 1247px ){
  .mainVisual .mainVisual__leadTitleEm {
    font-size: 34px;
  }
}
.mainVisual .mainVisual__leadTitleEm::before, .mainVisual .mainVisual__leadTitleEm::after {
  content: "";
  display: inline-block;
  height: 50px;
  width: 2px;
  background: #2F2F2F;
  transform-origin: center bottom;
  transform: rotate(-28deg);
  margin-right: 21px;
  padding-bottom: 8px;
  position: relative;
  bottom: -5px;
}
@media (max-width : 1247px ){
  .mainVisual .mainVisual__leadTitleEm::before, .mainVisual .mainVisual__leadTitleEm::after {
    height: 30px;
    width: 1px;
  }
}
.mainVisual .mainVisual__leadTitleEm::after {
  transform: rotate(28deg);
  margin-left: 12px;
}
.mainVisual .mainVisual__leadText {
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.75;
  text-align: center;
  color: #2f2f2f;
  margin-top: 33px;
  display: block;
}
@media (max-width : 1247px ){
  .mainVisual .mainVisual__leadText {
    font-size: 14px;
    line-height: 1.71428571;
    margin-top: 28px;
  }
}
.mainVisual .mainVisual__leadText + .mainVisual__leadText {
  margin-top: 1.71em;
}
.mainVisual .mainVisual__leadImage {
  text-align: center;
  margin-top: 42px;
  display: block;
}
@media (max-width : 1247px ){
  .mainVisual .mainVisual__leadImage {
    margin-top: 39px;
  }
}

/*----------------------------------------------
 section--registerLine
----------------------------------------------*/
.section--registerLine.section--registerLine--01 {
  padding: 50px 100px 70px;
}
@media (max-width : 1247px ){
  .section--registerLine.section--registerLine--01 {
    padding: 0 20px 70px;
  }
}
.section--registerLine.section--registerLine--02 {
  padding: 0 100px 100px;
}
@media (max-width : 1247px ){
  .section--registerLine.section--registerLine--02 {
    padding: 0 20px 60px;
  }
}

.registerLine {
  width: 100%;
  max-width: 1000px;
  border: 1.5px solid #909090;
  margin: 0 auto;
}
.registerLine .registerLine__head {
  background: #F5ECE4;
  padding: 35px 35px 30px;
}
@media (max-width : 1247px ){
  .registerLine .registerLine__head {
    padding: 20px 0 12px;
  }
}
.registerLine .registerLine__headTitle {
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 0.1em;
  text-align: center;
  color: #A36E47;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width : 1247px ){
  .registerLine .registerLine__headTitle {
    flex-wrap: wrap;
    font-size: 18px;
    padding: 0 40px;
  }
}
.registerLine .registerLine__headTitleEm {
  font-size: 28px;
}
@media (max-width : 1247px ){
  .registerLine .registerLine__headTitleEm {
    font-size: 24px;
    line-height: 1.6;
    white-space: nowrap;
  }
}
.registerLine .registerLine__freeIcon {
  margin-right: 11px;
}
@media (max-width : 1247px ){
  .registerLine .registerLine__freeIcon {
    width: 45px;
    margin-left: -40px;
  }
}
.registerLine .registerLine__headContentWrap {
  display: flex;
  flex-wrap: nowrap;
  margin-top: 20px;
}
@media (max-width : 1247px ){
  .registerLine .registerLine__headContentWrap {
    margin-top: 7px;
  }
}
.registerLine .registerLine__headContent {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  justify-content: center;
  gap: 15px;
}
@media (max-width : 1247px ){
  .registerLine .registerLine__headContent {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    align-items: center;
  }
}
.registerLine .registerLine__headContentSpace {
  content: "&";
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 0.05em;
  text-align: center;
  color: #2f2f2f;
  display: flex;
  align-items: center;
}
@media (max-width : 1247px ){
  .registerLine .registerLine__headContentSpace {
    display: none;
  }
}
.registerLine .registerLine__headContentBody {
  max-width: 206px;
  width: 100%;
  gap: 12px;
  display: flex;
  flex-direction: column;
}
.registerLine .registerLine__headContentBody.registerLine__headContentBody--small {
  gap: 24px;
}
.registerLine .registerLine__headContentHeadTitle {
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 0.05em;
  line-height: 1.38888889;
  color: #2f2f2f;
}
@media (max-width : 1247px ){
  .registerLine .registerLine__headContentHeadTitle {
    font-size: 10px;
  }
}
.registerLine .registerLine__headContentHeadTitle.registerLine__headContentHeadTitle--small {
  font-size: 16px;
}
@media (max-width : 1247px ){
  .registerLine .registerLine__headContentHeadTitle.registerLine__headContentHeadTitle--small {
    font-size: 10px;
  }
}
.registerLine .registerLine__headContentHeadText {
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: #2f2f2f;
  line-height: 1.66666667;
}
@media (max-width : 1247px ){
  .registerLine .registerLine__headContentHeadText {
    display: none;
  }
}
.registerLine .registerLine__body {
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  padding-bottom: 0px;
  gap: 30px;
}
@media (max-width : 1247px ){
  .registerLine .registerLine__body {
    flex-direction: column;
    gap: 10px;
    padding: 21px;
	padding-bottom: 10px;
  }
}

.registerLine .registerLine__body2 {
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 14px;
  padding-left: 15px;
  gap: 30px;
}
@media (max-width : 1247px ){
  .registerLine .registerLine__body2 {
    flex-direction: column;
    gap: 10px;
    padding: 0px;
	padding-bottom: 14px;
	font-size: 13px;

  }
}


.registerLine .registerLine__bodyLead {
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.75;
  color: #2f2f2f;
  position: relative;
}
@media (max-width : 1247px ){
  .registerLine .registerLine__bodyLead {
    font-size: 13px;
  }
}
.registerLine .registerLine__bodyLead::before, .registerLine .registerLine__bodyLead::after {
  content: "";
  height: 22px;
  width: 1px;
  margin: 0 10px;
  background: #2F2F2F;
  display: none;
}
@media (max-width : 1247px ){
  .registerLine .registerLine__bodyLead::before, .registerLine .registerLine__bodyLead::after {
    display: inline-block;
  }
}
.registerLine .registerLine__bodyLead::after {
  transform: rotate(25deg);
  position: absolute;
  right: -14px;
  top: 0;
  bottom: -5px;
  margin: auto 0;
}
.registerLine .registerLine__bodyLead::before {
  transform: rotate(-25deg);
  position: absolute;
  left: -14px;
  top: 0;
  bottom: -5px;
  margin: auto 0;
}
@media (max-width : 1247px ){
  .registerLine .registerLine__bodyLeadArrow {
    display: none;
  }
}
.registerLine .registerLine__link {
  width: 277px;
  height: 51px;
  background: #06c755;
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 1.5;
  text-align: center;
  color: #fff;
  text-decoration: none;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 15px;
  filter: drop-shadow(3px 3px 0px #00451c);
}
@media (max-width : 1247px ){
  .registerLine .registerLine__link {
    width: 208px;
    font-size: 18px;
    padding-left: 2px;
    gap: 12px;
  }
}
@media (hover: hover) {
  .registerLine .registerLine__link:hover {
    opacity: 0.7;
  }
}
.registerLine .registerLine__link::after {
  content: "";
  display: block;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid #ffffff;
}
.registerLine .registerLine__qrWrap {
  display: flex;
  align-items: center;
  padding: 0 20px 0 40px;
  gap: 10px;
}
@media (max-width : 1247px ){
  .registerLine .registerLine__qrWrap {
    display: none;
  }
}
.registerLine .registerLine__qrText {
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: #2f2f2f;
}
/*----------------------------------------------
 section--design
----------------------------------------------*/
.section--design01,
.section--design03,
.section--design05 {
  position: relative;
  padding-bottom: 125px;
}
@media (max-width : 1247px ){
  .section--design01,
.section--design03,
.section--design05 {
    padding-bottom: 60px;
  }
}
.section--design01::before,
.section--design03::before,
.section--design05::before {
  content: "";
  display: block;
  height: 1000px;
  background: #f5ece4;
  position: absolute;
  top: 150px;
  left: 0;
  right: 0;
  z-index: -1;
}
@media (max-width : 1247px ){
  .section--design01::before,
.section--design03::before,
.section--design05::before {
    height: 666px;
    width: 86.933333vw;
    left: auto;
    right: -24px;
  }
}
.section--design01 .section__inner,
.section--design03 .section__inner,
.section--design05 .section__inner {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}
.section--design01 .section__image,
.section--design03 .section__image,
.section--design05 .section__image {
  width: 57.291667vw;
  height: 700px;
}
@media (max-width : 1247px ){
  .section--design01 .section__image,
.section--design03 .section__image,
.section--design05 .section__image {
    width: 100%;
    height: auto;
  }
}
.section--design01 .section__image::after,
.section--design03 .section__image::after,
.section--design05 .section__image::after {
  content: "";
  display: block;
  background: #ffffff;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  max-width: 1366px;
  margin: 0 auto;
}
.section--design01 .section__image img,
.section--design03 .section__image img,
.section--design05 .section__image img {
  height: 100%;
  object-fit: cover;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
}
@media (max-width : 1247px ){
  .section--design01 .section__image img,
.section--design03 .section__image img,
.section--design05 .section__image img {
    width: 100%;
    height: auto;
    box-shadow: 5px 0 10px rgba(0, 0, 0, 0.3);
  }
}
.section--design01 .designContent__headImage,
.section--design03 .designContent__headImage,
.section--design05 .designContent__headImage {
  right: 0;
}
.section--design01 .designContent__head,
.section--design03 .designContent__head,
.section--design05 .designContent__head {
  padding: 0 542px 0 183px;
}
@media (max-width : 1247px ){
  .section--design01 .designContent__head,
.section--design03 .designContent__head,
.section--design05 .designContent__head {
    padding: 0;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row-reverse;
  }
}
.section--design01 .designContent__title,
.section--design03 .designContent__title,
.section--design05 .designContent__title {
  left: 85px;
}

.section--design02,
.section--design04,
.section--design06 {
  position: relative;
  padding-bottom: 125px;
}
@media (max-width : 1247px ){
  .section--design02,
.section--design04,
.section--design06 {
    padding-bottom: 60px;
  }
}
.section--design02::before,
.section--design04::before,
.section--design06::before {
  content: "";
  display: block;
  height: 1000px;
  background: #f5ece4;
  position: absolute;
  top: 150px;
  left: 0;
  right: 0;
  z-index: -1;
}
@media (max-width : 1247px ){
  .section--design02::before,
.section--design04::before,
.section--design06::before {
    height: 666px;
    width: 86.933333vw;
    left: auto;
    right: -24px;
  }
}
.section--design02 .section__inner,
.section--design04 .section__inner,
.section--design06 .section__inner {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}
.section--design02 .section__image,
.section--design04 .section__image,
.section--design06 .section__image {
  width: 57.291667vw;
  height: 700px;
  text-align: right;
  margin-left: auto;
}
@media (max-width : 1247px ){
  .section--design02 .section__image,
.section--design04 .section__image,
.section--design06 .section__image {
    width: 100%;
    height: auto;
  }
}
.section--design02 .section__image::after,
.section--design04 .section__image::after,
.section--design06 .section__image::after {
  content: "";
  display: block;
  background: #ffffff;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  max-width: 1366px;
  margin: 0 auto;
}
.section--design02 .section__image img,
.section--design04 .section__image img,
.section--design06 .section__image img {
  height: 100%;
  object-fit: cover;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
}
@media (max-width : 1247px ){
  .section--design02 .section__image img,
.section--design04 .section__image img,
.section--design06 .section__image img {
    height: auto;
    width: 100%;
    box-shadow: 5px 0 10px rgba(0, 0, 0, 0.3);
  }
}
.section--design02 .designContent__head,
.section--design04 .designContent__head,
.section--design06 .designContent__head {
  padding: 0 82px 0 640px;
}
@media (max-width : 1247px ){
  .section--design02 .designContent__head,
.section--design04 .designContent__head,
.section--design06 .designContent__head {
    padding: 0;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row-reverse;
  }
}
.section--design02 .designContent__headImage,
.section--design04 .designContent__headImage,
.section--design06 .designContent__headImage {
  left: 0;
}
@media (max-width : 1247px ){
  .section--design02 .designContent__headImage,
.section--design04 .designContent__headImage,
.section--design06 .designContent__headImage {
    left: auto;
    right: 0;
  }
}
.section--design02 .designContent__title,
.section--design04 .designContent__title,
.section--design06 .designContent__title {
  left: 614px;
}
.designContent {
  width: 100%;
  max-width: 1366px;
  margin: -245px auto 0;
  background: #ffffff;
  padding: 56px 0 0;
  position: relative;
}
@media (max-width : 1247px ){
  .designContent {
    margin: 0;
    padding: 0;
    background: none;
  }
}
.designContent .designContent__title {
  color: #ffffff;
  font-weight: bold;
  font-size: 42px;
  letter-spacing: 0.05em;
  line-height: 1.19047619;
  position: absolute;
  top: 17px;
  transform: translateY(-100%);
}
@media (max-width : 1247px ){
  .designContent .designContent__title {
    font-size: 20px;
    left: 21px;
    top: 9px;
    line-height: 1.6;
  }
}
.designContent .section__titleEm {
  font-size: 80px;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
@media (max-width : 1247px ){
  .designContent .section__titleEm {
    font-size: 40px;
    line-height: 1.2;
  }
}
.designContent .designContent__headImage {
  background: #ffffff;
  position: absolute;
  text-align: right;
  top: -459px;
  width: 542px;
  padding-top: 9px;
}
@media (max-width : 1247px ){
  .designContent .designContent__headImage {
    top: auto;
    padding: 0;
    width: 164px;
    flex-shrink: 0;
    margin-top: 72px;
    position: absolute;
    right: 0;
  }
}
.designContent .designContent__headWrap {
  padding: 0 9px 0 26px;
}
@media (max-width : 1247px ){
  .designContent .designContent__headWrap {
    padding: 25px 9px 0 26px;
  }
}
.designContent .designContent__headLead {
  font-weight: bold;
  font-size: 34px;
  letter-spacing: 0.05em;
  line-height: 1.47058824;
  color: #A36E47;
}
@media (max-width : 1247px ){
  .designContent .designContent__headLead {
    font-size: 22px;
  }
}
.designContent .designContent__headText {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 2;
  color: #2f2f2f;
  margin-top: 15px;
}
@media (max-width : 1247px ){
  .designContent .designContent__headText {
    font-size: 13px;
    margin-top: 9px;
    line-height: 1.84615385;
    padding-right: 164px;
    min-height: 214px;
  }
}
.designContent .designContent__body {
  margin-top: 26px;
  padding: 0 83px;
}
@media (max-width : 1247px ){
  .designContent .designContent__body {
    margin-top: 32px;
    padding: 0;
  }
}
.designContent .designContent__imageItemContainer {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 30px;
}
@media (max-width : 1247px ){
  .designContent .designContent__imageItemContainer {
    flex-direction: column;
    gap: 24px;
  }
}
.designContent .designContent__imageItem {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(50% - 15px);
}
@media (max-width : 1247px ){
  .designContent .designContent__imageItem {
    width: calc(100% - 48px);
    margin: 0 auto;
  }
}
.designContent .designContent__imageItem.designContent__imageItem--full {
  width: 100%;
}
@media (max-width : 1247px ){
  .designContent .designContent__imageItem.designContent__imageItem--full figcaption {
    padding-left: 24px;
  }
}
@media (max-width : 1247px ){
  .designContent .designContent__imageItem.designContent__imageItem--full-sp {
    width: 100%;
  }
}
@media (max-width : 1247px ){
  .designContent .designContent__imageItem.designContent__imageItem--full-sp figcaption {
    padding-left: 24px;
  }
}
@media (max-width : 1247px ){
  .designContent .designContent__imageItem.designContent__imageItem--verticalLeft {
    margin: 0 auto 0 0;
  }
}
@media (max-width : 1247px ){
  .designContent .designContent__imageItem.designContent__imageItem--verticalLeft figcaption {
    padding-left: 24px;
    font-size: 13px;
    line-height: 1.84615385;
  }
}
@media (max-width : 1247px ){
  .designContent .designContent__imageItem.designContent__imageItem--verticalRight {
    margin: 0 0 0 auto;
  }
}
@media (max-width : 1247px ){
  .designContent .designContent__imageItem.designContent__imageItem--verticalCenter {
    width: calc(100% - 48px);
  }
}
@media (max-width : 1247px ){
  .designContent .designContent__imageItem.designContent__imageItem--verticalCenter figcaption {
    padding-left: 0;
  }
}
.designContent .designContent__imageItem:nth-child(2), .designContent .designContent__imageItem:nth-child(3), .designContent .designContent__imageItem:nth-child(5) {
  padding-top: 46px;
}
@media (max-width : 1247px ){
  .designContent .designContent__imageItem:nth-child(2), .designContent .designContent__imageItem:nth-child(3), .designContent .designContent__imageItem:nth-child(5) {
    padding-top: 0;
  }
}
.designContent .designContent__imageItem img {
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}
@media (max-width : 1247px ){
  .designContent .designContent__imageItem img {
    width: 100%;
  }
}
@media (max-width : 1247px ){
  .designContent .designContent__imageItem figure {
    width: 100%;
  }
}
.designContent .designContent__imageItem figcaption {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 2;
  color: #2f2f2f;
  margin-top: 10px;
}
@media (max-width : 1247px ){
  .designContent .designContent__imageItem figcaption {
    font-size: 13px;
    line-height: 1.84615385;
  }
}
.designContent .designContent__imageItem.designContent__imageItem--noCssShadow img {
  box-shadow: none;
}
.designContent .designContent__link {
  text-decoration: none;
  border-bottom: 1px solid #2F2F2F;
  font-weight: bold;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: #2f2f2f;
  padding: 3px 3px;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-left: auto;
  margin-right: 0;
  width: 185px;
  white-space: nowrap;
  margin-top: 30px;
}
@media (max-width : 1247px ){
  .designContent .designContent__link {
    font-size: 12px;
    margin: 25px 20px 0 auto;
  }
}
@media (hover: hover) {
  .designContent .designContent__link:hover {
    opacity: 0.7;
  }
}
.designContent .designContent__link::after {
  content: "";
  display: block;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid #06C755;
}
@media (max-width : 1247px ){
  .designContent .designContent__link::after {
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 6px solid #06C755;
  }
}

/*----------------------------------------------
 section-qa
----------------------------------------------*/
.section-qa {
  padding-bottom: 97px;
}
@media (max-width : 1247px ){
  .section-qa {
    padding-bottom: 50px;
  }
}
.section-qa .section__titleWrap {
  background: #F0F0F0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
}
@media (max-width : 1247px ){
  .section-qa .section__titleWrap {
    min-height: 80px;
  }
}
.section-qa .section__title {
  font-weight: bold;
  font-size: 34px;
  letter-spacing: 0.05em;
  line-height: 1.47058824;
  text-align: left;
  color: #2f2f2f;
  position: relative;
  display: flex;
  align-items: center;
  gap: 70px;
  margin-right: -166px;
}
@media (max-width : 1247px ){
  .section-qa .section__title {
    font-size: 18px;
    margin-right: -17px;
    gap: 19px;
  }
}
.qaList {
  max-width: 1000px;
  padding: 28px 120px;
  margin: 0 auto;
}
@media (max-width : 1247px ){
  .qaList {
    padding: 0 28px;
  }
}
.qaList .qaList__item {
  border-bottom: 0.5px solid #2F2F2F;
}
.qaList .qaList__item .qaList__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 34px 0 0 1em;
  cursor: pointer;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 2;
  color: #2f2f2f;
  text-indent: -1em;
}
@media (max-width : 1247px ){
  .qaList .qaList__item .qaList__question {
    font-size: 13px;
    line-height: 1.53846154;
    padding: 32px 0 6px 1em;
  }
}
@media (hover: hover) {
  .qaList .qaList__item .qaList__question:hover {
    opacity: 0.7;
  }
}
.qaList .qaList__item .qaList__question::-webkit-details-marker {
  display: none;
}
.qaList .qaList__item .qaList__question::after {
  content: "";
  width: 16px;
  height: 6px;
  margin-right: 6px;
  background: url(../images/icon-qa-arrow.svg) no-repeat;
  background-size: contain;
  flex-shrink: 0;
}
@media (max-width : 1247px ){
  .qaList .qaList__item .qaList__question::after {
    font-size: 13px;
  }
}
.qaList .qaList__item[open] .qaList__question::after {
  transform: rotate(180deg);
}
.qaList .qaList__item .qaList__answer {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 2;
  color: #2f2f2f;
  margin: 0;
  padding-left: 1em;
  text-indent: -1em;
  padding-bottom: 30px;
  padding-top: 5px;
}
@media (max-width : 1247px ){
  .qaList .qaList__item .qaList__answer {
    font-size: 13px;
    line-height: 1.84615385;
  }
}

/*----------------------------------------------
 banner
----------------------------------------------*/
.banner {
  background: #f5ece4;
}
.banner .banner__inner {
  max-width: 1283px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  padding: 0 120px;
  gap: 10px;
}
@media (max-width : 1247px ){
  .banner .banner__inner {
    flex-direction: column;
    padding: 52px 0 40px;
  }
}
.banner .banner__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-left: -15px;
}
@media (max-width : 1247px ){
  .banner .banner__head {
    margin-left: 0;
  }
}
.banner .banner__title {
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 2;
  color: #A36E47;
  text-align: center;
}
.banner .banner__titleEm {
  font-size: 28px;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  line-height: 1.5;
}
@media (max-width : 1247px ){
  .banner .banner__titleEm {
    font-size: 22px;
  }
}
.banner .banner__titleEm::before, .banner .banner__titleEm::after {
  content: "";
  display: inline-block;
  height: 40px;
  width: 1.5px;
  margin: 0 28px;
  background: #A36E47;
  transform: rotate(24deg);
}
@media (max-width : 1247px ){
  .banner .banner__titleEm::before, .banner .banner__titleEm::after {
    content: "";
    display: inline-block;
    height: 42px;
    width: 1.5px;
    margin: 0 24px;
    background: #A36E47;
    transform: rotate(24deg);
    position: relative;
    bottom: 10px;
  }
}
.banner .banner__titleEm::before {
  transform: rotate(-24deg);
}
.banner .banner__text {
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 2;
  color: #2f2f2f;
  margin-top: 20px;
}
@media (max-width : 1247px ){
  .banner .banner__text {
    font-size: 13px;
    line-height: 1.84615385;
    margin-top: 7px;
  }
}
.banner .banner__body {
  margin-left: -15px;
}
@media (max-width : 1247px ){
  .banner .banner__body {
    text-align: center;
    margin-top: 7px;
    margin-left: 0;
  }
}
/*----------------------------------------------
 section--philosophy
----------------------------------------------*/
.section--philosophy {
  background: #F0F0F0;
  padding: 36px 0 0;
}
@media (max-width : 1247px ){
  .section--philosophy {
    padding: 50px 0 0;
  }
}
.section--philosophy .section__title {
  font-weight: bold;
  font-size: 80px;
  letter-spacing: 0.05em;
  color: #fff;
  text-align: center;
}
@media (max-width : 1247px ){
  .section--philosophy .section__title {
    font-size: 40px;
    line-height: 1.2;
  }
}

.philosophy {
  max-width: 1366px;
  margin: 0 auto;
}
@media (max-width : 1247px ){
  .philosophy {
    padding: 9px 0 0;
  }
}
.philosophy .philosophy__content.philosophy__content--01 .philosophy__contentTitle {
  font-weight: bold;
  font-size: 34px;
  letter-spacing: 0.05em;
  line-height: 1.47058824;
  color: #2f2f2f;
  text-align: center;
  margin-top: -21px;
}
@media (max-width : 1247px ){
  .philosophy .philosophy__content.philosophy__content--01 .philosophy__contentTitle {
    font-size: 22px;
    margin: 0;
    line-height: 1.59090909;
  }
}
.philosophy .philosophy__content.philosophy__content--01 .philosophy__contentText {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 2;
  color: #2f2f2f;
  text-align: center;
  margin-top: 14px;
}
@media (max-width : 1247px ){
  .philosophy .philosophy__content.philosophy__content--01 .philosophy__contentText {
    font-size: 13px;
    margin: 6px 0 0;
    text-align: left;
    padding: 0 22px;
  }
}
.philosophy .philosophy__content.philosophy__content--01 .philosophy__contentImageWrap {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: center;
  margin-top: 62px;
  gap: 111px;
  margin-left: 33px;
}
@media (max-width : 1247px ){
  .philosophy .philosophy__content.philosophy__content--01 .philosophy__contentImageWrap {
    flex-direction: column;
    margin: 0;
    gap: 20px;
    align-items: center;
    padding: 14px 0 0;
  }
}
.philosophy .philosophy__content.philosophy__content--02 {
  margin-top: 93px;
}
@media (max-width : 1247px ){
  .philosophy .philosophy__content.philosophy__content--02 {
    margin-top: 44px;
  }
}
.philosophy .philosophy__content.philosophy__content--02 .philosophy__contentTitle {
  font-weight: bold;
  font-size: 34px;
  letter-spacing: 0.05em;
  line-height: 1.47058824;
  color: #2f2f2f;
  padding-left: min(17.057101%, 233px);
}
@media (max-width : 1247px ){
  .philosophy .philosophy__content.philosophy__content--02 .philosophy__contentTitle {
    padding: 0;
    font-size: 22px;
    text-align: center;
    line-height: 1.59090909;
  }
}
.philosophy .philosophy__content.philosophy__content--02 .philosophy__contentText {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 32px;
  color: #2f2f2f;
  padding-left: min(42.972182%, 587px);
  padding-right: 45px;
  margin-top: 54px;
}
@media (max-width : 1247px ){
  .philosophy .philosophy__content.philosophy__content--02 .philosophy__contentText {
    font-size: 13px;
    margin: 17px 0 0;
    text-align: left;
    padding: 0 30px;
    line-height: 1.84615385;
  }
}

/*----------------------------------------------
 section--point01
----------------------------------------------*/
.section--point01 {
  background: #F0F0F0;
}
.section--point01 .section__inner {
  max-width: 1366px;
  margin: 0 auto;
  padding: 124px 133px 70px;
}
@media (max-width : 1247px ){
  .section--point01 .section__inner {
    margin: 0;
    padding: 90px 0 41px;
  }
}

.pointContent {
  background: #FFFFFF;
  position: relative;
  padding: 49px 0 70px;
}
@media (max-width : 1247px ){
  .pointContent {
    margin: 0 13px;
    padding: 40px 0 29px;
  }
}
.pointContent .pointContent__title {
  font-weight: bold;
  font-size: 42px;
  letter-spacing: 0.05em;
  color: #fff;
  position: absolute;
  top: 17px;
  left: 51px;
  transform: translateY(-100%);
  line-height: 1.19047619;
}
@media (max-width : 1247px ){
  .pointContent .pointContent__title {
    font-size: 20px;
    left: 18px;
    top: 9px;
  }
}
.pointContent .section__titleEm {
  font-size: 80px;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
@media (max-width : 1247px ){
  .pointContent .section__titleEm {
    font-size: 40px;
  }
}
.pointContent .pointContent__lead {
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 0.05em;
  text-align: left;
  color: #2f2f2f;
  display: flex;
  gap: 15px;
  flex-wrap: nowrap;
  align-items: center;
}
@media (max-width : 1247px ){
  .pointContent .pointContent__lead {
    line-height: 1.38888889;
    font-weight: bold;
    font-size: 18px;
  }
}
.pointContent .pointContent__lead::before {
  content: "";
  display: block;
  width: 40px;
  height: 60px;
  background: #F5ECE4;
}
@media (max-width : 1247px ){
  .pointContent .pointContent__lead::before {
    width: 30px;
    height: 48px;
  }
}
.pointContent .pointContent__head {
  padding: 0 150px;
  margin-top: 43px;
}
@media (max-width : 1247px ){
  .pointContent .pointContent__head {
    padding: 0 18px;
    margin-top: 20px;
  }
}
.pointContent .pointContent__headTitle {
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: #2f2f2f;
}
@media (max-width : 1247px ){
  .pointContent .pointContent__headTitle {
    font-size: 13px;
  }
}
.pointContent .pointContent__headImage {
  margin-top: 5px;
}
@media (max-width : 1247px ){
  .pointContent .pointContent__headImage {
    text-align: center;
    margin-top: 9px;
  }
}
.pointContent .pointContent__body {
  max-width: 780px;
  margin: 41px auto 0;
  padding: 0 40px;
}
@media (max-width : 1247px ){
  .pointContent .pointContent__body {
    padding: 0 18px;
    margin: 23px auto 0;
  }
}
.pointContent .pointContent__bodyTitle {
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-align: left;
  color: #2f2f2f;
}
@media (max-width : 1247px ){
  .pointContent .pointContent__bodyTitle {
    font-size: 13px;
  }
}
.pointContent .pointContent__tableWrap {
  margin-top: 4px;
}
@media (max-width : 1247px ){
  .pointContent .pointContent__tableWrap {
    margin-top: 9px;
  }
}
.pointContent .pointContent__tableWrap table {
  width: 100%;
}
.pointContent .pointContent__tableWrap thead tr {
  background: #2F2F2F;
}
.pointContent .pointContent__tableWrap thead th {
  color: #ffffff;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-align: center;
  vertical-align: middle;
  padding: 6px;
}
@media (max-width : 1247px ){
  .pointContent .pointContent__tableWrap thead th {
    font-size: 13px;
  }
}
.pointContent .pointContent__tableWrap thead th:nth-child(n+3) {
  border-left: 1px solid #969696;
}
.pointContent .pointContent__tableWrap tbody tr {
  background: #F0F0F0;
}
.pointContent .pointContent__tableWrap tbody tr + tr {
  border-top: 1px solid #2F2F2F;
}
.pointContent .pointContent__tableWrap tbody th {
  font-weight: bold;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-align: center;
  color: #2f2f2f;
  width: 100px;
  vertical-align: middle;
}
@media (max-width : 1247px ){
  .pointContent .pointContent__tableWrap tbody th {
    font-size: 10px;
    width: 60px;
    white-space: nowrap;
  }
}
.pointContent .pointContent__tableWrap tbody td {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-align: left;
  color: #2f2f2f;
  background: #ffffff;
  vertical-align: middle;
  padding: 15px 30px;
  width: 300px;
}
@media (max-width : 1247px ){
  .pointContent .pointContent__tableWrap tbody td {
    width: auto;
    font-size: 12px;
    line-height: 1.66666667;
    padding: 15px 8px;
  }
}
.pointContent .pointContent__tableWrap tbody td + td {
  border-left: 1px solid #969696;
}
.pointContent .pointContent__tableWrap tbody td ul > li {
  padding-left: 1em;
  text-indent: -1em;
}

/*----------------------------------------------
 section--examplesRoomLayouts
----------------------------------------------*/
.section--examplesRoomLayouts {
  background: #ffffff;
  padding: 90px 0 125px;
}
@media (max-width : 1247px ){
  .section--examplesRoomLayouts {
    padding: 42px 0 50px;
  }
}
.section--examplesRoomLayouts .section__inner {
  max-width: 1366px;
  margin: 0 auto;
}
.section--examplesRoomLayouts .section__title {
  font-weight: bold;
  font-size: 34px;
  letter-spacing: 0.05em;
  line-height: 1.47058824;
  text-align: center;
  color: #2f2f2f;
}
@media (max-width : 1247px ){
  .section--examplesRoomLayouts .section__title {
    font-size: 22px;
    line-height: 1.59090909;
  }
}

.examplesRoomLayouts {
  max-width: 1200px;
  margin: 58px auto 0;
}
@media (max-width : 1247px ){
  .examplesRoomLayouts {
    margin: 15px auto 0;
  }
}
.examplesRoomLayouts .examplesRoomLayouts__item {
  max-width: 886px;
  margin: 0 auto;
}
@media (max-width : 1247px ){
  .examplesRoomLayouts .examplesRoomLayouts__item.examplesRoomLayouts__item--01 .examplesRoomLayouts__itemImage {
    position: static;
  }
}
.examplesRoomLayouts .examplesRoomLayouts__item.examplesRoomLayouts__item--02 {
  margin-top: 82px;
}
@media (max-width : 1247px ){
  .examplesRoomLayouts .examplesRoomLayouts__item.examplesRoomLayouts__item--02 {
    margin-top: 36px;
  }
}
.examplesRoomLayouts .examplesRoomLayouts__item.examplesRoomLayouts__item--02 .examplesRoomLayouts__itemColWrap {
  margin-top: 34px;
}
@media (max-width : 1247px ){
  .examplesRoomLayouts .examplesRoomLayouts__item.examplesRoomLayouts__item--02 .examplesRoomLayouts__itemColWrap {
    margin-top: 16px;
  }
}
.examplesRoomLayouts .examplesRoomLayouts__itemTitle {
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 0.05em;
  color: #2f2f2f;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  gap: 15px;
}
@media (max-width : 1247px ){
  .examplesRoomLayouts .examplesRoomLayouts__itemTitle {
    white-space: normal;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 32px;
    font-size: 13px;
    line-height: 1.84615385;
    gap: 4px;
  }
}
.examplesRoomLayouts .examplesRoomLayouts__caseNum {
  width: 80px;
  height: 30px;
  background: #000000;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width : 1247px ){
  .examplesRoomLayouts .examplesRoomLayouts__caseNum {
    width: 54px;
    height: 16px;
    font-size: 10px;
    line-height: 1;
  }
}
.examplesRoomLayouts .examplesRoomLayouts__itemColWrap {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 142px;
  position: relative;
  margin-top: 23px;
}
@media (max-width : 1247px ){
  .examplesRoomLayouts .examplesRoomLayouts__itemColWrap {
    gap: 14px;
    margin-top: 19px;
  }
}
.examplesRoomLayouts .examplesRoomLayouts__itemColWrap.examplesRoomLayouts__itemColWrap--arrow::after {
  content: "";
  width: 60px;
  height: 38px;
  background: url(../images/icon-arrow-lage-black.svg) no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media (max-width : 1247px ){
  .examplesRoomLayouts .examplesRoomLayouts__itemColWrap.examplesRoomLayouts__itemColWrap--arrow::after {
    width: 24px;
    height: 16px;
    left: -12px;
    top: -5px;
  }
}
.examplesRoomLayouts .examplesRoomLayouts__itemImage {
  position: relative;
}
.examplesRoomLayouts .examplesRoomLayouts__link {
  text-decoration: none;
  border-bottom: 1px solid #2F2F2F;
  font-weight: bold;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: #2f2f2f;
  padding: 3px 3px;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-left: auto;
  margin-right: 0;
  width: 185px;
  white-space: nowrap;
  margin-top: 41px;
}
@media (max-width : 1247px ){
  .examplesRoomLayouts .examplesRoomLayouts__link {
    font-size: 12px;
    margin: 22px 20px 0 auto;
  }
}
@media (hover: hover) {
  .examplesRoomLayouts .examplesRoomLayouts__link:hover {
    opacity: 0.7;
  }
}
.examplesRoomLayouts .examplesRoomLayouts__link::after {
  content: "";
  display: block;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid #06C755;
}
@media (max-width : 1247px ){
  .examplesRoomLayouts .examplesRoomLayouts__link::after {
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 6px solid #06C755;
  }
}
.examplesRoomLayouts .examplesRoomLayouts__modal {
  display: none;
}
.examplesRoomLayouts .examplesRoomLayouts__modal.is-show {
  display: flex;
}
.examplesRoomLayouts .examplesRoomLayouts__modal .examplesRoomLayouts__modalClose {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 30px;
  right: 25px;
  cursor: pointer;
}
@media (max-width : 1247px ){
  .examplesRoomLayouts .examplesRoomLayouts__modal .examplesRoomLayouts__modalClose {
    top: 22px;
    right: 20px;
  }
}
.examplesRoomLayouts .examplesRoomLayouts__modal .examplesRoomLayouts__modalClose::before, .examplesRoomLayouts .examplesRoomLayouts__modal .examplesRoomLayouts__modalClose::after {
  content: "";
  display: block;
  width: 1px;
  height: 20px;
  background: #2F2F2F;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  transform: rotate(-45deg);
}
.examplesRoomLayouts .examplesRoomLayouts__modal .examplesRoomLayouts__modalClose::after {
  transform: rotate(45deg);
}
.examplesRoomLayouts .examplesRoomLayouts__modal.examplesRoomLayouts__modal--01 {
  position: absolute;
  top: 87px;
  left: -127px;
  z-index: 1;
}
@media (max-width : 1247px ){
  .examplesRoomLayouts .examplesRoomLayouts__modal.examplesRoomLayouts__modal--01 {
    top: -12px;
    left: 85px;
    right: 0;
    margin: auto;
    justify-content: center;
  }
}
.examplesRoomLayouts .examplesRoomLayouts__modal.examplesRoomLayouts__modal--02 {
  position: absolute;
  width: 520px;
  z-index: 1;
  top: -105px;
  left: -15px;
}
@media (max-width : 1247px ){
  .examplesRoomLayouts .examplesRoomLayouts__modal.examplesRoomLayouts__modal--02 {
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    bottom: -63px;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    width: 100%;
  }
}
@media (max-width : 1247px ){
  .examplesRoomLayouts .examplesRoomLayouts__modal.examplesRoomLayouts__modal--02 .examplesRoomLayouts__modalClose {
    top: 30px;
  }
}
.examplesRoomLayouts .examplesRoomLayouts__modal.examplesRoomLayouts__modal--02 .examplesRoomLayouts__modalClose::before, .examplesRoomLayouts .examplesRoomLayouts__modal.examplesRoomLayouts__modal--02 .examplesRoomLayouts__modalClose::after {
  background: #FFFFFF;
}
.examplesRoomLayouts .examplesRoomLayouts__modal.examplesRoomLayouts__modal--03 {
  position: absolute;
  top: -71px;
  right: -170px;
}
@media (max-width : 1247px ){
  .examplesRoomLayouts .examplesRoomLayouts__modal.examplesRoomLayouts__modal--03 {
    left: 0;
    right: 0;
    top: auto;
    bottom: 0;
    align-items: center;
    justify-content: center;
    z-index: 1;
  }
}
.examplesRoomLayouts .examplesRoomLayouts__modal.examplesRoomLayouts__modal--03 .examplesRoomLayouts__modalClose::before, .examplesRoomLayouts .examplesRoomLayouts__modal.examplesRoomLayouts__modal--03 .examplesRoomLayouts__modalClose::after {
  background: #2F2F2F;
}
.examplesRoomLayouts .examplesRoomLayouts__modalInner {
  position: relative;
}

/*----------------------------------------------
 section--benefit
----------------------------------------------*/
.section--benefit {
  background: #F5ECE4;
  padding: 70px 0 46px;
}
@media (max-width : 1247px ){
  .section--benefit {
    padding: 40px 0 46px;
  }
}
.section--benefit .section__inner {
  max-width: 1366px;
  margin: 0 auto;
}
.section--benefit .section__title {
  font-weight: bold;
  font-size: 28px;
  letter-spacing: 0.05em;
  line-height: 1.78571429;
  text-align: center;
  color: #A36E47;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}
@media (max-width : 1247px ){
  .section--benefit .section__title {
    font-size: 18px;
    padding: 0 51px;
  }
}
.section--benefit .section__titleIcon {
  width: 53px;
  display: block;
  margin-right: 10px;
}
@media (max-width : 1247px ){
  .section--benefit .section__titleIcon {
    width: 45px;
    margin-left: -51px;
  }
}
.section--benefit .section__titleIcon img {
  width: 100%;
  height: auto;
}
@media (max-width : 1247px ){
  .section--benefit .section__titleEm {
    font-size: 24px;
    white-space: nowrap;
  }
}

.benefit {
  max-width: 758px;
  margin: 37px auto 0;
}
@media (max-width : 1247px ){
  .benefit {
    margin: 18px auto 0;
  }
}
.benefit .benefit__item {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  grid-gap: 0 30px;
  justify-content: center;
  margin-left: 25px;
}
@media (max-width : 1247px ){
  .benefit .benefit__item {
    display: flex;
    /* flex-direction: column; */
    align-items: center;
    flex-wrap: wrap;
    margin: 0;
    grid-gap: 0 15px;
  }
}
.benefit .benefit__item.benefit__item--02 .benefit__itemNum {
  top: -25px;
}
@media (max-width : 1247px ){
  .benefit .benefit__item.benefit__item--02 .benefit__itemNum {
    top: auto;
  }
}
@media (max-width : 1247px ){
  .benefit .benefit__item.benefit__item--02 .benefit__itemText {
    margin-top: 9px;
  }
}
.benefit .benefit__item + .benefit__item {
  margin-top: 55px;
}
@media (max-width : 1247px ){
  .benefit .benefit__item + .benefit__item {
    margin-top: 22px;
  }
}
.benefit .benefit__itemNum {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.05em;
  color: #fff;
  width: 68px;
  height: 68px;
  background: #A36E47;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: -34px;
}
@media (max-width : 1247px ){
  .benefit .benefit__itemNum {
    position: relative;
    display: inline-flex;
    left: auto;
    top: auto;
    width: 64px;
    height: 64px;
    font-size: 13px;
    margin-left: 13px;
    /* display: inline-block; */
    /* align-items: center; */
  }
}
.benefit .benefit__itemTitle {
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 0.05em;
  line-height: 1.38888889;
  color: #2f2f2f;
  grid-column: 2/3;
  grid-row: 1/2;
  padding: 10px 0 0;
  white-space: nowrap;
}
@media (max-width : 1247px ){
  .benefit .benefit__itemTitle {
    white-space: normal;
    display: inline-block;
    width: calc(100% - 150px);
    vertical-align: middle;
    padding: 0;
  }
}
.benefit .benefit__itemImage {
  grid-column: 1/2;
  grid-row: 1/3;
  align-items: flex-end;
  justify-content: center;
  display: flex;
}
@media (max-width : 1247px ){
  .benefit .benefit__itemImage {
    margin-top: 10px;
  }
}
.benefit .benefit__itemText {
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.05em;
  line-height: 1.66666667;
  color: #2f2f2f;
  grid-column: 2/3;
  grid-row: 2/3;
  padding: 14px 0 7px;
}
@media (max-width : 1247px ){
  .benefit .benefit__itemText {
    padding: 7px 30px 7px;
  }
}
.benefit .benefit__linkContainer {
  border: 1.5px solid #fff;
  background: #F5ECE4;
  position: relative;
  z-index: 0;
  padding: 45px 0 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 110px;
  max-width: 735px;
  margin: 40px auto;
}
@media (max-width : 1247px ){
  .benefit .benefit__linkContainer {
    margin: 20px;
    padding: 45px 0 30px;
  }
}
.benefit .benefit__linkContainer::before {
  content: "";
  display: block;
  background: #ffffff;
  position: absolute;
  top: 7px;
  bottom: 7px;
  left: 7px;
  right: 7px;
  z-index: -1;
}
.benefit .benefit__linkContainerHead {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.benefit .benefit__linkLead {
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 0.05em;
  text-align: center;
  color: #2f2f2f;
  position: relative;
  line-height: 1.7;
}
@media (max-width : 1247px ){
  .benefit .benefit__linkLead {
    font-size: 18px;
    line-height: 1.38888889;
  }
}
.benefit .benefit__linkLead::before, .benefit .benefit__linkLead::after {
  content: "";
  display: inline-block;
  height: 50px;
  width: 1.5px;
  margin: 0 10px;
  background: #2F2F2F;
}
.benefit .benefit__linkLead::after {
  transform: rotate(29deg);
  position: absolute;
  right: -29px;
  top: 0;
  bottom: -8px;
  margin: auto 0;
}
@media (max-width : 1247px ){
  .benefit .benefit__linkLead::after {
    top: auto;
    right: -12px;
    bottom: 0;
    margin: auto 0;
    height: 30px;
  }
}
.benefit .benefit__linkLead::before {
  transform: rotate(-29deg);
  position: absolute;
  left: -29px;
  top: 0;
  bottom: -8px;
  margin: auto 0;
}
@media (max-width : 1247px ){
  .benefit .benefit__linkLead::before {
    top: auto;
    left: -12px;
    bottom: 0;
    margin: auto 0;
    height: 30px;
  }
}
.benefit .benefit__link {
  width: 211px;
  height: 51px;
  background: #06c755;
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 1.5;
  text-align: center;
  color: #fff;
  text-decoration: none;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 15px;
  filter: drop-shadow(3px 3px 0px #00451c);
}
@media (max-width : 1247px ){
  .benefit .benefit__link {
    font-size: 18px;
    padding-left: 10px;
  }
}
@media (hover: hover) {
  .benefit .benefit__link:hover {
    opacity: 0.7;
  }
}
.benefit .benefit__link::after {
  content: "";
  display: block;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid #ffffff;
}
@media (max-width : 1247px ){
  .benefit .benefit__link::after {
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 6px solid #ffffff;
  }
}
.benefit .benefit__linkContainerBody {
  padding-top: 7px;
  margin-bottom: -7px;
}
@media (max-width : 1247px ){
  .benefit .benefit__linkContainerBody {
    display: none;
  }
}
.benefit .benefit__qrWrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.benefit .benefit__qrText {
  text-align: center;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: #2f2f2f;
  line-height: 1.71428571;
}
.benefit .benefit__notes {
  margin-top: 49px;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.05em;
  line-height: 1.54545455;
  color: #2f2f2f;
}
@media (max-width : 1247px ){
  .benefit .benefit__notes {
    margin-top: 26px;
    padding: 0 32px;
    font-size: 10px;
    line-height: 1.7;
  }
}

/*----------------------------------------------
 footer
----------------------------------------------*/
.footer {
  background: #2F2F2F;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px;
  gap: 10px;
}
@media (max-width : 1247px ){
  .footer {
    padding: 30px 30px 15px;
    gap: 5px;
  }
}
@media (hover: hover) {
  .footer .footer__logoLink:hover {
    opacity: 0.7;
  }
}
.footer .footer__copyright {
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-align: left;
  color: #fff;
}
@media (max-width : 1247px ){
  .footer .footer__copyright {
    font-size: 10px;
  }
}

/*----------------------------------------------
 pageTop
----------------------------------------------*/
.pageTop {
  position: fixed;
  right: 30px;
  bottom: 30px;
}
@media (max-width : 1247px ){
  .pageTop {
    right: 10px;
    bottom: 18px;
  }
}
.pageTop .pageTop__link {
  display: block;
}
@media (hover: hover) {
  .pageTop .pageTop__link:hover {
    opacity: 0.7;
  }
}

/*# sourceMappingURL=style.css.map */
