@charset "UTF-8";
/* Sass Document */
.large_img_inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 400px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.large_img_content {
  background-repeat: no-repeat;
  background-position: top center;
  width: 100%;
  height: 100vh;
  background-size: cover;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
}

.simpleParallax,
.js-rellax {
  width: 100%;
  height: 400px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  /* overflow: hidden; */
}
@media screen and (max-width: 768px) {
  .simpleParallax,
  .js-rellax {
    height: auto;
    border: 1px solid red;
  }
}

.jarallax {
  width: 100%;
  aspect-ratio: 750/379;
}

.thumbnail {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100vh;
  width: 100%;
  position: fixed;
  top: auto;
  left: 0;
  right: 0;
  bottom: 0;
  /* @include mq(m) {
  	object-fit: inherit;
  	height: auto;
  	position: static;
  	width: auto;
  } */
}

.p-img01 {
  height: 400px;
  background: url(../img/img_large01_sp_1.jpg) no-repeat center center/cover;
}

/* .p-img01,
.p-img03 {
	.thumbnail {
		object-position: top right;
	}
} */
/* .parallax-wrapper {
	height: 400px;
	width: 100%;
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	border: 1px solid blue;
} */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  z-index: 10000;
  background-color: #f3edea;
  overflow: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.loading.is-fade {
  pointer-events: none;
  opacity: 0;
}

.loading_inner {
  height: 100vh;
  width: 100%;
  display: -ms-grid;
  display: grid;
  place-content: center;
}
.mv {
  background-color: #f3edea;
  overflow: hidden;
  position: relative;
  height: 600px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 768px) {
  .mv {
    height: auto;
    width: 100%;
    aspect-ratio: 750/1194;
    overflow: visible;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
}

/* @media (max-height: 568px) {
} */
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.1, 1.1);
            transform: scale(1.1, 1.1);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.1, 1.1);
            transform: scale(1.1, 1.1);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}
.mv_txt_content_wrapper {
  width: 1140px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .mv_txt_content_wrapper {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: -ms-grid;
    display: grid;
    place-content: center;
  }
}

.mv_txt_content {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  padding-top: 142px;
  opacity: 0;
  -webkit-transition: opacity 4s;
  transition: opacity 4s;
}
.mv_txt_content.is-fadeIn {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .mv_txt_content {
    padding-bottom: 11px;
    padding-top: 24px;
  }
}
.mv_txt_content .content_ttl {
  font-size: 2.4rem;
  line-height: 1.375;
}
@media screen and (max-width: 768px) {
  .mv_txt_content .content_ttl {
    font-size: 1.6rem;
  }
}
.mv_txt_content .content_ttl > span {
  display: block;
}
.mv_txt_content .content_ttl .txt_small {
  font-size: 2.1rem;
  display: block;
}
@media screen and (max-width: 768px) {
  .mv_txt_content .content_ttl .txt_small {
    font-size: 1.4rem;
  }
}
.mv_txt_content .content_ttl .txt_online {
  width: 383px;
  display: block;
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  .mv_txt_content .content_ttl .txt_online {
    width: 255px;
    margin: 15px auto 0;
  }
}
.mv_txt_content .btn_wrapper {
  width: 375px;
  margin-top: 37px;
}
@media screen and (max-width: 768px) {
  .mv_txt_content .btn_wrapper {
    display: none;
  }
}
.mv_txt_content .btn_wrapper a {
  background-color: #ff8080;
  width: 100%;
  height: 67px;
  font-size: 2rem;
  display: -ms-grid;
  display: grid;
  place-content: center;
  text-decoration: none;
  color: #fff;
  border-radius: 50px;
  letter-spacing: 0.1em;
  padding-right: 1em;
  -webkit-transition: 0.3s background-color;
  transition: 0.3s background-color;
}
@media (any-hover: hover) {
  .mv_txt_content .btn_wrapper a:hover {
    background-color: #f56c6c;
  }
}
.mv_txt_content .btn_wrapper a span {
  position: relative;
}
.mv_txt_content .btn_wrapper a span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -20px;
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg) translateY(-52%);
          transform: rotate(45deg) translateY(-52%);
}
@media screen and (max-width: 768px) {
  .mv_txt_content .btn_wrapper a {
    position: relative;
  }
  .mv_txt_content .btn_wrapper a::before {
    content: "";
    position: absolute;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    top: 5px;
    left: 5px;
    border: 1px solid #fff;
  }
}

.mv_img01 {
  width: 605px;
  margin-left: auto;
  -webkit-transform-origin: right top;
          transform-origin: right top;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .mv_img01 {
    /* max-width: 357px; */
    width: 95.2%;
    position: relative;
  }
}

.mv_img02 {
  position: absolute;
  width: 370px;
  height: 370px;
  right: 433px;
  bottom: -42px;
}
@media screen and (max-width: 768px) {
  .mv_img02 {
    position: relative;
    bottom: 0;
    left: 0;
    /* max-width: 240px; */
    width: 65.7333333333%;
    height: auto;
    right: auto;
    margin-top: auto;
  }
}

.mv_img {
  opacity: 0;
  -webkit-transform: scale(1.1, 1.1);
          transform: scale(1.1, 1.1);
}
.mv_img.is-in {
  -webkit-animation: fadeIn 2s forwards;
          animation: fadeIn 2s forwards;
}

.mv_txt_block {
  right: 70px;
  bottom: 48px;
  position: absolute;
  border-radius: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  color: #ff5537;
  width: 180px;
  height: 180px;
  display: -ms-grid;
  display: grid;
  place-content: center;
  z-index: 10;
  opacity: 0;
  -webkit-transition: 1s;
  transition: 1s;
}
.mv_txt_block.is-show {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .mv_txt_block {
    width: 37.0666666667%;
    min-width: 139px;
    aspect-ratio: 1/1;
    height: auto;
    right: 15px;
    bottom: 15px;
  }
}
.mv_txt_block .txt_small {
  font-size: 1.8rem;
  display: block;
}
@media screen and (max-width: 768px) {
  .mv_txt_block .txt_small {
    font-size: 1.4rem;
  }
}
.mv_txt_block .en {
  font-size: 3.7rem;
}
@media screen and (max-width: 768px) {
  .mv_txt_block .en {
    font-size: 2.9rem;
  }
}
.mv_txt_block p {
  color: #ff5537;
  font-size: 3.1rem;
  line-height: 1.2;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .mv_txt_block p {
    font-size: 2.45rem;
  }
}

.catch {
  padding: 92px 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .catch {
    padding: 60px 0;
  }
}
.catch .txt {
  font-size: 2.2rem;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .catch .txt {
    font-size: 1.6rem;
    line-height: 2.34375;
  }
}
.catch .note {
  font-size: 1.2rem;
  color: #999999;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .catch .note {
    font-size: 1rem;
  }
}

picture {
  display: block;
}

.section_ttl {
  text-align: center;
}
.section_ttl span {
  display: block;
}
.section_ttl .en {
  margin: 0 auto;
}
.section_ttl .jp {
  margin-top: 13px;
  font-size: 1.6rem;
  letter-spacing: 0.012em;
  line-height: 1.53125;
}

.color-main {
  color: #ff5537;
}

:root {
  --spd: 15px;
}

.cercle_heading {
  padding-top: 80px;
  background: url(../img/bg_cercle.svg) no-repeat top center/100% 100%;
  height: 177px;
}
@media screen and (max-width: 768px) {
  .cercle_heading {
    padding-top: 62px;
    background-image: url(../img/bg_cercle_sp.svg);
    height: 87px;
  }
}

/* ----------------------------------------------------------------------------------------------------
*	fix-btn
* --------------------------------------------------------------------------------------------------*/
.fix-btn {
  position: fixed;
  z-index: 10;
  right: 0;
  bottom: 100px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (max-width: 768px) {
  .fix-btn {
    bottom: 0;
    left: 0;
    right: 0;
  }
}
.fix-btn.pc {
  opacity: 0;
  pointer-events: none;
}
.fix-btn.pc.is-show {
  opacity: 1;
  pointer-events: auto;
}
.fix-btn.sp.is-hide {
  opacity: 0;
  pointer-events: none;
}
.fix-btn a {
  background-color: #ff8080;
  width: 250px;
  height: 67px;
  font-size: 2rem;
  display: -ms-grid;
  display: grid;
  place-content: center;
  text-decoration: none;
  color: #fff;
  border-radius: 50px 0 0 50px;
  -webkit-transition: 0.3s background-color;
  transition: 0.3s background-color;
}
@media (any-hover: hover) {
  .fix-btn a:hover {
    background-color: #f56c6c;
  }
}
.fix-btn a span {
  position: relative;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .fix-btn a span {
    padding-right: 1em;
  }
}
.fix-btn a span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -20px;
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg) translateY(-52%);
          transform: rotate(45deg) translateY(-52%);
}
@media screen and (max-width: 768px) {
  .fix-btn a span::after {
    right: 0;
  }
}
@media screen and (max-width: 768px) {
  .fix-btn a {
    position: relative;
    width: 100%;
    border-radius: 0;
  }
  .fix-btn a::before {
    content: "";
    position: absolute;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    top: 5px;
    left: 5px;
    border: 1px solid #fff;
  }
}

/* ----------------------------------------------------------------------------------------------------
*	COUNSELING
* --------------------------------------------------------------------------------------------------*/
.couseling .section_ttl .en {
  width: 289px;
}
@media screen and (max-width: 768px) {
  .couseling .section_ttl .en {
    width: 211px;
  }
}

.counseling_content {
  background-color: #f3edea;
  padding-top: 33px;
  padding-bottom: 70px;
  margin-top: -1px;
}
@media screen and (max-width: 768px) {
  .counseling_content {
    padding: 55px 0 46px;
  }
}

.couseling_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .couseling_list {
    gap: 0;
  }
}

.couseling_item {
  width: 237px;
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .couseling_item {
    width: auto;
    margin: 0 15px;
  }
}
.couseling_item figure {
  margin: 0;
  aspect-ratio: 1/1;
}
.couseling_item figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.prev-arrow,
.next-arrow {
  position: absolute;
  top: 55%;
  width: 20px;
  height: 20px;
  border-bottom: 1px solid #ff8080;
  border-left: 1px solid #ff8080;
  z-index: 10;
  -webkit-transition: 0.3s border-color;
  transition: 0.3s border-color;
}
@media (any-hover: hover) {
  .prev-arrow:hover,
  .next-arrow:hover {
    border-color: #ffbcbc;
  }
}

.prev-arrow {
  left: 25px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.next-arrow {
  right: 25px;
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
}

.counseling_txt_wrapper {
  background-color: #fff;
  padding: 14px 0 13px;
}
.counseling_txt_wrapper .txt {
  font-size: 1.6rem;
  text-align: center;
  line-height: 1.375;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .counseling_txt_wrapper .txt {
    font-size: 1.7rem;
  }
}

.sample {
  width: 505px;
  margin: 80px auto 0;
  border: 1px solid #ff5537;
  border-radius: 20px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .sample {
    margin-top: 45px;
    width: 91.4666666667%;
    min-height: 150px;
  }
}
.sample picture {
  width: 200px;
  aspect-ratio: 200/170;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .sample picture {
    width: 45.045045045%;
    aspect-ratio: 1/1;
  }
}
.sample picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.sample_txt_wrapper {
  text-align: center;
  padding-top: 43px;
  padding-bottom: 26px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (max-width: 768px) {
  .sample_txt_wrapper {
    display: -ms-grid;
    display: grid;
    padding: 0;
    place-content: center;
  }
}
.sample_txt_wrapper .txt {
  font-size: 1.6rem;
  line-height: 1.75;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .sample_txt_wrapper .txt {
    font-size: 1.4rem;
  }
}
.sample_txt_wrapper .note {
  margin-top: 23px;
  font-size: 1.2rem;
  color: #999999;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .sample_txt_wrapper .note {
    font-size: 1rem;
    margin-top: 20px;
  }
}

/* ----------------------------------------------------------------------------------------------------
*	BRAND
* --------------------------------------------------------------------------------------------------*/
.brand .section_ttl {
  margin-top: 46px;
}
.brand .section_ttl .en {
  width: 160px;
}
@media screen and (max-width: 768px) {
  .brand .section_ttl .en {
    width: 117px;
  }
}
@media screen and (max-width: 768px) {
  .brand .cercle_heading {
    padding-top: 22px;
  }
}

.brand_content {
  background-color: #f3edea;
  padding-top: 80px;
  padding-bottom: 70px;
  margin-top: -1px;
}
@media screen and (max-width: 768px) {
  .brand_content {
    padding: 62px var(--spd) 65px;
  }
}

.brand_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 40px;
}
@media screen and (max-width: 768px) {
  .brand_list {
    display: block;
  }
}

.brand_item {
  border-radius: 20px;
  overflow: hidden;
  background-color: #fff;
  width: 320px;
}
@media screen and (max-width: 768px) {
  .brand_item {
    width: 100%;
  }
  .brand_item + .brand_item {
    margin-top: 20px;
  }
}
.brand_item figure {
  width: 160px;
  height: 160px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin: 0;
  overflow: hidden;
  display: block;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .brand_item figure {
    width: 50%;
    height: auto;
    aspect-ratio: 1/1;
  }
}
.brand_item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (any-hover: hover) {
  .brand_item a:hover figure img {
    -webkit-transform: scale(1.1, 1.1);
            transform: scale(1.1, 1.1);
  }
}
.brand_item a figure img {
  display: block;
  -webkit-transition: -webkit-transform 0.5s ease-out;
  transition: -webkit-transform 0.5s ease-out;
  transition: transform 0.5s ease-out;
  transition: transform 0.5s ease-out, -webkit-transform 0.5s ease-out;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.logo_wrapper {
  display: -ms-grid;
  display: grid;
  place-content: center;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.brand_albion .logo {
  width: 105px;
  height: 22px;
}

.brand_ignis .logo {
  width: 99px;
  height: 17px;
}

.brand_elegance .logo {
  width: 79px;
  height: 75px;
}
@media screen and (max-width: 768px) {
  .brand_elegance .logo {
    width: 85px;
    height: 90px;
  }
}

/* ----------------------------------------------------------------------------------------------------
*	ADVISER
* --------------------------------------------------------------------------------------------------*/
.adviser {
  padding: 106px 0 0;
}
@media screen and (max-width: 768px) {
  .adviser {
    padding: 68px 30px 0;
  }
}
.adviser .section_ttl .en {
  width: 193px;
}
@media screen and (max-width: 768px) {
  .adviser .section_ttl .en {
    width: 141px;
  }
}

.adviser_content {
  padding: 34px 0;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .adviser_content {
    padding: 25px 0;
  }
}
.adviser_content::before, .adviser_content::after {
  width: 30px;
  height: 30px;
  content: "";
  position: absolute;
}
@media screen and (max-width: 768px) {
  .adviser_content::before, .adviser_content::after {
    width: 15px;
    height: 15px;
  }
}
.adviser_content::before {
  top: 0;
  left: 0;
  border-top: 1px solid #ff5537;
  border-left: 1px solid #ff5537;
}
.adviser_content::after {
  top: 0;
  right: 0;
  border-top: 1px solid #ff5537;
  border-right: 1px solid #ff5537;
}
.adviser_content .txt {
  position: relative;
  z-index: 1;
  font-size: 1.5rem;
  line-height: 2;
  letter-spacing: 0.0075em;
}
@media screen and (max-width: 768px) {
  .adviser_content .txt {
    font-size: 1.2rem;
    line-height: 1.8333333333;
  }
}

.adviser_content_wrapper {
  width: 640px;
  margin: 39px auto 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .adviser_content_wrapper {
    width: auto;
    max-width: 357px;
    margin-top: 25px;
  }
}
.adviser_content_wrapper::before, .adviser_content_wrapper::after {
  width: 30px;
  height: 30px;
  content: "";
  position: absolute;
}
@media screen and (max-width: 768px) {
  .adviser_content_wrapper::before, .adviser_content_wrapper::after {
    width: 15px;
    height: 15px;
  }
}
.adviser_content_wrapper::before {
  bottom: 0;
  left: 0;
  border-bottom: 1px solid #ff5537;
  border-left: 1px solid #ff5537;
}
.adviser_content_wrapper::after {
  bottom: 0;
  right: 0;
  border-bottom: 1px solid #ff5537;
  border-right: 1px solid #ff5537;
}

/* ----------------------------------------------------------------------------------------------------
*	FEATURES
* --------------------------------------------------------------------------------------------------*/
.features {
  padding: 106px 0;
}
@media screen and (max-width: 768px) {
  .features {
    padding: 70px var(--spd);
  }
}
.features .section_ttl .en {
  width: 227px;
}
@media screen and (max-width: 768px) {
  .features .section_ttl .en {
    width: 166px;
  }
}

.features_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 37px;
  margin-top: 49px;
}
@media screen and (max-width: 768px) {
  .features_list {
    margin-top: 22px;
    display: block;
  }
}
.features_list .item01 .num {
  width: 34px;
}
@media screen and (max-width: 768px) {
  .features_list .item01 .num {
    width: 25px;
  }
}
.features_list .item02 .num {
  width: 54px;
}
@media screen and (max-width: 768px) {
  .features_list .item02 .num {
    width: 40px;
  }
}
.features_list .item03 .num {
  width: 55px;
}
@media screen and (max-width: 768px) {
  .features_list .item03 .num {
    width: 42px;
  }
}

.features_item {
  border-radius: 100%;
  width: 320px;
  height: 320px;
  border: 1px solid #ff5537;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .features_item {
    border-radius: 100px;
    height: 98px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .features_item + .features_item {
    margin-top: 12px;
  }
}

.point_ttl {
  text-align: center;
  color: #ff8080;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .point_ttl {
    font-size: 1.15rem;
  }
}
.point_ttl .num {
  display: block;
  margin: 7px auto;
}

.features_heading {
  padding-top: 32px;
  border-bottom: 1px solid #ff5537;
  height: 133px;
}
@media screen and (max-width: 768px) {
  .features_heading {
    padding-top: 19px;
    padding-left: 16px;
    width: 92px;
    border-bottom: none;
    border-right: 1px solid #ff5537;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.features_body {
  padding-top: 22px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .features_body {
    padding-top: 0;
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 16px;
    padding-right: 27px;
  }
}
.features_body .txt {
  font-size: 1.8rem;
  line-height: 1.7777777778;
  letter-spacing: normal;
}
@media screen and (max-width: 768px) {
  .features_body .txt {
    font-size: 1.3rem;
    text-align: justify;
  }
}

/* ----------------------------------------------------------------------------------------------------
*	voice
* --------------------------------------------------------------------------------------------------*/
.voice {
  padding: 100px 0 55px;
}
@media screen and (max-width: 768px) {
  .voice {
    padding: 67px 0;
  }
}
.voice .section_ttl .en {
  width: 136px;
}
@media screen and (max-width: 768px) {
  .voice .section_ttl .en {
    width: 99px;
  }
}

.voice_pc {
  max-width: 1050px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .voice_pc {
    height: 1px;
    overflow: hidden;
    visibility: hidden;
  }
}

.voice_sp {
  height: 1px;
  overflow: hidden;
  visibility: hidden;
}
@media screen and (max-width: 768px) {
  .voice_sp {
    height: auto;
    overflow: visible;
    visibility: visible;
  }
}

.voice_list_wrapper {
  margin-top: 43px;
}
@media screen and (max-width: 768px) {
  .voice_list_wrapper {
    margin-top: 23px;
  }
}
.voice_list_wrapper .slick-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: auto !important;
}
.voice_list_wrapper .slick-disabled {
  opacity: 0;
}
.voice_list_wrapper .prev-arrow,
.voice_list_wrapper .next-arrow {
  top: 45%;
  z-index: 10;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .voice_list_wrapper .prev-arrow,
  .voice_list_wrapper .next-arrow {
    top: 50%;
  }
}
.voice_list_wrapper .prev-arrow {
  left: calc(50% - 570px);
}
@media screen and (max-width: 768px) {
  .voice_list_wrapper .prev-arrow {
    left: 25px;
  }
}
.voice_list_wrapper .next-arrow {
  right: calc(50% - 570px);
}
@media screen and (max-width: 768px) {
  .voice_list_wrapper .next-arrow {
    right: 25px;
  }
}
.voice_list_wrapper .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .voice_list_wrapper .slick-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: auto !important;
  }
  .voice_list_wrapper .slick-slide > div {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; /* 必要に応じて調整 */
  }
}
.voice_list_wrapper .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 30px;
}
.voice_list_wrapper .slick-dots li {
  margin: 0 15px;
}
@media screen and (max-width: 768px) {
  .voice_list_wrapper .slick-dots li {
    margin: 0 9px;
  }
}
.voice_list_wrapper .slick-dots li.slick-active button::before {
  background-color: rgba(89, 87, 87, 0.5);
}
.voice_list_wrapper .slick-dots button {
  position: relative;
  display: block;
  width: 10px;
  height: 10px;
  border: 0;
  outline: none;
  background: transparent;
  color: transparent;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
}
.voice_list_wrapper .slick-dots button::before {
  content: "";
  position: absolute;
  border-radius: 20px;
  width: 10px;
  height: 10px;
  top: 0;
  left: 0;
  background-color: rgba(89, 87, 87, 0.3);
}

.voice_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}

.voice_inner {
  width: 320px;
  height: calc(100% - 2px);
  border: 1px solid #ff5537;
  border-radius: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 20px;
}
@media screen and (max-width: 768px) {
  .voice_inner {
    width: auto;
  }
}

.voice_heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px 21px;
  background: url(../img/line_dots.svg) no-repeat bottom center;
}
@media screen and (max-width: 768px) {
  .voice_heading {
    padding: 16px;
    background-size: calc(100% - 32px);
  }
}
.voice_heading .ill {
  display: inline-block;
  width: 80px;
  height: 80px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 4px;
}
@media screen and (max-width: 768px) {
  .voice_heading .ill {
    width: 63px;
    height: 63px;
  }
}

.voice_ttl {
  font-size: 1.829rem;
  line-height: 1.3778020776;
}
@media screen and (max-width: 768px) {
  .voice_ttl {
    font-size: 1.45rem;
  }
}

.voice_body {
  padding: 16px 20px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.voice_body .txt {
  font-size: 1.51rem;
  line-height: 1.8344370861;
  letter-spacing: 0.002em;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .voice_body .txt {
    font-size: 1.2rem;
  }
}

.slick-slide {
  height: auto !important;
  -webkit-backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
}

/* ----------------------------------------------------------------------------------------------------
*	HOW  TOP
* --------------------------------------------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  .howto .section_ttl .en {
    width: 141px;
  }
}

.howto_content {
  background-color: #f3edea;
  padding-top: 33px;
  padding-bottom: 97px;
  margin-top: -1px;
}
@media screen and (max-width: 768px) {
  .howto_content {
    padding: 55px 0 46px;
  }
}

.howto_list {
  max-width: 670px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .howto_list {
    position: relative;
  }
}
.howto_list .item01 .num {
  width: 24px;
  height: 40px;
  margin-left: 5px;
}
.howto_list .item02 .num {
  width: 38px;
  height: 33px;
}
.howto_list .item03 .num {
  width: 39px;
  height: 31px;
}
.howto_list .item04 .num {
  width: 28px;
  height: 40px;
}
.howto_list .item05 .num {
  width: 42px;
  height: 33px;
}
.howto_list .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 16px;
  margin-top: 54px;
}
@media screen and (max-width: 768px) {
  .howto_list .slick-dots {
    gap: 0 12px;
    position: absolute;
    top: 307px;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
}
.howto_list .slick-dots li.slick-active button {
  background-color: #ff5537 !important;
}
.howto_list .slick-dots li button {
  color: #fff;
  width: 33px;
  height: 33px;
  border-radius: 100%;
  font-size: 2rem !important;
  font: inherit;
  background-color: #9e9e9e;
  padding: 0 0 2px 0;
  font-weight: 300;
  line-height: 1;
  -webkit-transition: 0.3s background-color;
  transition: 0.3s background-color;
}
@media screen and (max-width: 768px) {
  .howto_list .slick-dots li button {
    font-size: 1.3rem !important;
    width: 22px;
    height: 22px;
  }
}
@media (any-hover: hover) {
  .howto_list .slick-dots li button:hover {
    background-color: #808080;
  }
}
.howto_list .slick-disabled {
  visibility: hidden;
}

.howto_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .howto_item {
    display: block;
  }
}
.howto_item figure {
  margin: 0;
  width: 145px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .howto_item figure {
    width: 141px;
    margin: 0 auto;
  }
}

.howto_txt_wrapper {
  padding-top: 66px;
  margin-left: 47px;
}
@media screen and (max-width: 768px) {
  .howto_txt_wrapper {
    max-width: 75%;
    padding-top: 78px;
    margin: 0 auto;
    display: -ms-grid;
    display: grid;
    grid-auto-columns: 1fr;
    grid-auto-rows: 1fr;
    -ms-grid-columns: auto 0px auto;
    grid-template-columns: auto auto;
    -ms-grid-rows: auto 0px auto;
    grid-template-rows: auto auto;
    gap: 0px 0px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
        grid-template-areas: "num txt" "app app";
  }
}
.howto_txt_wrapper .num {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .howto_txt_wrapper .num {
    grid-area: num;
    margin-top: 5px;
  }
}
.howto_txt_wrapper .txt {
  margin-top: 16px;
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0.1em;
  text-align: justify;
  width: 239px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (max-width: 768px) {
  .howto_txt_wrapper .txt {
    width: auto;
    grid-area: txt;
    margin-top: 0;
    margin-left: 24px;
    font-size: 1.4rem;
  }
}

.app {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  margin-top: 26px;
}
@media screen and (max-width: 768px) {
  .app {
    grid-area: app;
    margin-left: auto;
    margin-right: auto;
    margin-top: 12px;
  }
}
@media screen and (max-width: 768px){
  .howto_txt_wrapper .num {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .howto_txt_wrapper .txt {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .app {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
}
.app p {
  font-size: 1.2rem;
}

.app_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 11px;
  gap: 0 10px;
}
.app_wrapper a {
  display: block;
  height: 31px;
  width: auto;
}
@media (any-hover) {
  .app_wrapper a {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .app_wrapper a:hover {
    opacity: 0.8;
  }
}
.app_wrapper a img {
  height: 100%;
  width: auto;
}

.h-prev-arrow,
.h-next-arrow {
  cursor: pointer;
  position: absolute;
  content: "";
  width: 25px;
  height: 25px;
  border-bottom: 1px solid #9f8f7e;
  border-left: 1px solid #9f8f7e;
  top: 50%;
  z-index: 10;
  -webkit-transition: 0.3s border-color;
  transition: 0.3s border-color;
}
@media (any-hover: hover) {
  .h-prev-arrow:hover,
  .h-next-arrow:hover {
    border-color: #d9d2cb;
  }
}
@media screen and (max-width: 768px) {
  .h-prev-arrow,
  .h-next-arrow {
    top: 140px;
  }
}

.h-prev-arrow {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  left: calc(50% - 358px);
}
@media screen and (max-width: 768px) {
  .h-prev-arrow {
    left: 25px;
  }
}

.h-next-arrow {
  right: calc(50% - 358px);
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
}
@media screen and (max-width: 768px) {
  .h-next-arrow {
    right: 25px;
  }
}

.pl-img-wrapper {
  height: 400px;
  overflow: hidden;
}

/* ----------------------------------------------------------------------------------------------------
*	faq
* --------------------------------------------------------------------------------------------------*/
.faq {
  padding: 107px 0;
}
@media screen and (max-width: 768px) {
  .faq {
    padding: 64px 0 73px;
  }
}
.faq .section_ttl .en {
  width: 84px;
}
@media screen and (max-width: 768px) {
  .faq .section_ttl .en {
    width: 61px;
  }
}

.faq_content {
  width: 840px;
  margin: 66px auto 0;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .faq_content {
    margin-top: 32px;
    width: auto;
    padding: 0 var(--spd);
  }
}

.faq_block {
  border-top: 1px solid #9f8f7e;
}
.faq_block .icn {
  width: 17px;
  height: 17px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: inline-block;
  margin-right: 20px;
  position: relative;
  top: 3px;
}
@media screen and (max-width: 768px) {
  .faq_block .icn {
    margin-right: 16px;
    top: 1px;
  }
}
.faq_block .txt {
  font-size: 1.2rem;
  letter-spacing: 0.008em;
  line-height: 1.92;
}
@media screen and (max-width: 768px) {
  .faq_block .txt {
    line-height: 1.92;
  }
}

.faq_question_txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #f9f6f5;
  padding: 20px 40px 20px 17px;
  font: inherit;
  color: currentColor;
  text-align: left;
  width: 100%;
  cursor: pointer;
  position: relative;
}
.faq_question_txt .icn {
  top: 6px;
}
@media screen and (max-width: 768px) {
  .faq_question_txt .icn {
    top: 1px;
  }
}
.faq_question_txt .txt {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .faq_question_txt .txt {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .faq_question_txt {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-right: 33px;
  }
}
.faq_question_txt::before, .faq_question_txt::after {
  position: absolute;
  height: 1px;
  background-color: #b09869;
  width: 11px;
  content: "";
  top: 50%;
  right: 18px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.faq_question_txt::after {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}
.faq_question_txt.is-active::after {
  -webkit-transform: translateY(-50%) rotate(0);
          transform: translateY(-50%) rotate(0);
}
@media (any-hover) {
  .faq_question_txt {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .faq_question_txt:hover {
    opacity: 0.8;
  }
}

.faq_answer {
  display: none;
}

.faq_answer_txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 11px 17px 15px;
}
.faq_answer_txt ul li {
  padding-left: 1.5em;
  text-indent: -1.5em;
  font-size: 1.25rem;
  letter-spacing: 0.008em;
  line-height: 1.92;
}
@media screen and (max-width: 768px) {
  .faq_answer_txt ul li {
    padding-left: 1.2em;
    text-indent: -1.2em;
    line-height: 1.92;
  }
}

/* ----------------------------------------------------------------------------------------------------
*	規約
* --------------------------------------------------------------------------------------------------*/
.terms {
  padding: 100px 0 0;
  background-color: #efefef;
}
@media screen and (max-width: 768px) {
  .terms {
    padding: 60px 0 0;
  }
}

.terms_ttl {
  font-size: 1.6rem;
  text-align: center;
}

.terms_content_wrapper {
  background-color: #fff;
  width: 840px;
  margin: 23px auto 0;
  border-radius: 20px;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .terms_content_wrapper {
    width: auto;
    padding: 10px;
    margin: 25px 15px 0;
  }
}

.terms_content {
  position: relative;
  z-index: 1000;
  overflow-y: scroll;
  height: 222px;
  -webkit-overflow-scrolling: touch;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overscroll-behavior-y: contain;
}
.terms_content .ttl {
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.2916666667;
}
.terms_content p {
  font-size: 1.2rem;
  line-height: 1.2916666667;
}

.simplebar-scrollbar::before {
  background: #e6e6e6;
  border-radius: 3px;
  width: 3px;
  margin-left: 3px;
  margin-top: 2px;
}

.simplebar-scrollbar.simplebar-visible::before {
  opacity: 1;
}

.simplebar-track {
  background: #fff;
  width: 10px !important;
}

.agree {
  padding-top: 30px;
  padding-bottom: 90px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .agree {
    padding: 30px 15px 60px;
  }
}
.agree input[type=checkbox] + .label {
  font-size: 1.6rem;
  position: relative;
  padding-left: 24px;
  letter-spacing: 0.08em;
  line-height: 1.59375;
  display: inline-block;
  cursor: pointer;
}
.agree input[type=checkbox] + .label::before, .agree input[type=checkbox] + .label::after {
  content: "";
  position: absolute;
}
.agree input[type=checkbox] + .label::before {
  width: 13px;
  height: 13px;
  border: 1px solid #303138;
  left: 0;
  top: 6px;
}
.agree input[type=checkbox]:checked + .label::after {
  width: 8px;
  height: 5px;
  border-top: 2px solid #ff8080;
  border-right: 2px solid #ff8080;
  left: 3px;
  top: 9px;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
.agree .note {
  font-size: 1.6rem;
  color: #ff8080;
  margin-top: 8px;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 768px) {
  .agree .note {
    margin-top: 14px;
  }
}

.btn {
  margin-top: 15px;
}
.btn .ttl {
  color: #fff;
  font-size: 1.95rem;
  font-weight: normal;
  line-height: 1.4615384615;
  letter-spacing: 0.12em;
}

.rsv_btn {
  width: 308px;
  height: 61px;
  display: -ms-grid;
  display: grid;
  place-content: center;
  font-size: 1.95rem;
  color: #fff;
  border-radius: 10px;
  border: 2px solid #fff;
  margin: 25px auto 0;
  background-color: #fff;
  color: #ff5537;
}
.rsv_btn span {
  position: relative;
  padding-right: 1em;
}
.rsv_btn span::after {
  content: "";
  position: absolute;
  top: 55%;
  right: 0;
  width: 10px;
  height: 10px;
  border-top: 2px solid #ff5537;
  border-right: 2px solid #ff5537;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
@media (any-hover) {
  .rsv_btn:not(.disabled) {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .rsv_btn:not(.disabled):hover {
    opacity: 0.8;
  }
}
.rsv_btn.disabled {
  cursor: text !important;
  border-color: #ffbfbf;
  color: #ffbfbf;
  background-color: transparent;
}
.rsv_btn.disabled span::after {
  border-color: #ffbfbf;
}

/* ----------------------------------------------------------------------------------------------------
*	申し込み
* --------------------------------------------------------------------------------------------------*/
.apply {
  background-color: #ff8080;
  padding: 58px 0 40px;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .apply {
    padding: 42px 0 20px;
  }
}
.apply .txt {
  font-size: 1.6rem;
  line-height: 1.6875;
  letter-spacing: 0.1em;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .apply .txt {
    font-size: 1.55rem;
  }
}
.apply .caution {
  color: #fff;
  bottom: 46px;
  font-size: 1.4rem;
  margin: 30px auto 0;
  line-height: 1.5;
  visibility: hidden;
}
@media screen and (max-width: 768px) {
  .apply .caution {
    margin-top: 15px;
  }
}
.apply .caution.is-show {
  visibility: visible;
}

.animate__animated {
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
}

.js-animeOn {
  -webkit-animation: fadeup 1.5s ease forwards;
          animation: fadeup 1.5s ease forwards;
}

.delay-01 {
  -webkit-animation-delay: 0.3s !important;
          animation-delay: 0.3s !important;
}

.delay-02 {
  -webkit-animation-delay: 0.6s !important;
          animation-delay: 0.6s !important;
}

.delay-03 {
  -webkit-animation-delay: 0.9s !important;
          animation-delay: 0.9s !important;
}

@-webkit-keyframes fadeup {
  0% {
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeup {
  0% {
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
.img_adviser {
  width: 100%;
}
.img_adviser img {
  width: 100%;
}

/* ----------------------------------------------------------------------------------------------------
*	キャンペーン
* --------------------------------------------------------------------------------------------------*/
.campaign {
  margin-top: 110px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .campaign {
    padding-left: 15px;
    padding-right: 15px;
    margin-top: 50px;
  }
}
.campaign .btn-wrapper {
  display: none;
}
@media screen and (max-width: 768px) {
  .campaign .btn-wrapper {
    margin: 35px auto 0;
    display: block;
    max-width: 310px;
  }
}

.btn-scedule {
  font: inherit;
  color: #fff;
  background-color: #ff8080;
  font-size: 1.6rem;
  min-height: 60px;
  border-radius: 100px;
  width: 100%;
  padding: 22px 40px 22px 18px;
  text-align: left;
  position: relative;
  line-height: 1.2;
}
.btn-scedule.is-open::after {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.btn-scedule::before, .btn-scedule::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 12px;
  height: 1px;
  background-color: #fff;
  right: 20px;
}
.btn-scedule::before {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.btn-scedule::after {
  -webkit-transition: 0.3s -webkit-transform;
  transition: 0.3s -webkit-transform;
  transition: 0.3s transform;
  transition: 0.3s transform, 0.3s -webkit-transform;
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}

.campaign_content {
  max-width: 890px;
  border-radius: 20px;
  background-color: #fff;
  border: 1px solid #ff5537;
  padding: 56px 67px 43px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  .campaign_content {
    padding: 40px 15px;
    border-width: 2px;
    background: url(../img/img_campaign_sample_sp.png) #fff no-repeat bottom center/100% auto;
    padding-bottom: 44vw;
  }
}
.campaign_content .ttl {
  text-align: center;
}
.campaign_content .ttl img {
  width: 240px;
}
@media screen and (max-width: 768px) {
  .campaign_content .ttl img {
    width: 172.5px;
  }
}
.campaign_content .ttl span {
  margin-top: 15px;
  font-size: 1.6rem;
  display: block;
  line-height: 1.375;
}
.campaign_content .txt {
  font-size: 1.6rem;
  line-height: 1.75;
  text-align: center;
  margin-top: 30px;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .campaign_content .txt {
    font-size: 1.3rem;
    letter-spacing: -0.01em;
  }
}
.campaign_content .note {
  font-size: 1.2rem;
  color: #999;
  text-align: center;
  margin-top: 11px;
  line-height: 1.5;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .campaign_content .note {
    font-size: 1rem;
    margin-top: 20px;
  }
}

.campaign_sample {
  position: absolute;
  z-index: 10;
  width: 202px;
  top: -73px;
  right: -92px;
}
@media screen and (max-width: 768px) {
  .campaign_sample {
    display: none;
  }
}

.schedule_ttl {
  font-size: 1.6rem;
  text-align: center;
  color: #ff5537;
  margin-top: 36px;
}
@media screen and (max-width: 768px) {
  .schedule_ttl {
    display: none;
  }
}

.schedule_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px 24px;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .schedule_list {
    display: none;
    margin-top: 10px;
    padding: 0 15px;
  }
}

.schedule_item {
  width: 235px;
}
@media screen and (max-width: 768px) {
  .schedule_item {
    border-top: 1px dashed #ff5537;
    width: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 13px 0 13px 5px;
  }
  .schedule_item:first-of-type {
    border-top: none;
  }
}
.schedule_item .month {
  color: #ff5537;
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .schedule_item .month {
    margin-bottom: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 3.5em;
    text-align: left;
  }
}
.schedule_item .month .num {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .schedule_item .month .num {
    font-size: 1.8rem;
  }
}

.schedune_inner {
  border-top: 1px dashed #ff5537;
  padding-top: 5px;
}
@media screen and (max-width: 768px) {
  .schedune_inner {
    border: none;
    padding: 0;
  }
}
.schedune_inner li {
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1.5833333333;
}
.schedune_inner li + li {
  margin-top: 2px;
}
.schedune_inner .vol {
  color: #ff8080;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 0.5em;
}
.schedune_inner .soon {
  color: #999;
}
.schedune_inner .ls {
  letter-spacing: 0em;
}

@media screen and (min-width: 768px) {
  .campaign_content {
    max-width: 103.8rem;
    padding: 56px 50px 43px;
  }
  .campaign_content .schedule_list {
    gap: 16px 31px;
  }
  .campaign_content .schedule_list .schedule_item {
    width: 29rem;
  }
  .campaign_content .schedule_list .schedule_item .schedune_inner li .logo {
    vertical-align: middle;
    display: inline-block;
    line-height: 1;
  }
  .campaign_content .schedule_list .schedule_item .schedune_inner li .small {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .campaign_content .schedule_list {
    width: 104%;
    margin-left: -2%;
    padding: 0;
  }
  .campaign_content .schedule_list .schedule_item {
    padding-left: 0;
    padding-right: 0;
  }
  .campaign_content .schedule_list .schedule_item .month {
    width: 3.4em;
  }
  .campaign_content .schedule_list .schedule_item .schedune_inner li .ls.m-more {
    letter-spacing: -0.1rem;
  }
  .campaign_content .schedule_list .schedule_item .schedune_inner li .logo {
    vertical-align: middle;
    display: inline-block;
    line-height: 0.8;
  }
  .campaign_content .schedule_list .schedule_item .schedune_inner li .small {
    font-size: 1rem;
  }
}