@charset "UTF-8";
/* cssアニメーション */
.fadeIn,
.fadeIn-y,
.fadeIn--kv,
.fadeIny--kv {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  opacity: 0;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.fadeIn.on {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
.fadeIn-y.on {
  -webkit-animation-name: fadeIn-y;
  animation-name: fadeIn-y;
}
.fadeIn--kv {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
.kv_effect .fadeIn--kv {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
.fadeIny--kv {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}
.kv_effect .fadeIny--kv {
  -webkit-animation-name: fadeIn-y;
  animation-name: fadeIn-y;
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn-y {
  from {
    opacity: 0;
    -webkit-transform: translate(0, 20px);
    transform: translate(0, 20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@keyframes fadeIn-y {
  from {
    opacity: 0;
    -webkit-transform: translate(0, 20px);
    transform: translate(0, 20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@-webkit-keyframes fadeIn-down {
  from {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  to {
    -webkit-transform: translate(0, 100%);
    transform: translate(0, 100%);
  }
}
@keyframes fadeIn-down {
  from {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  to {
    -webkit-transform: translate(0, 100%);
    transform: translate(0, 100%);
  }
}
@-webkit-keyframes fadeIn-left {
  from {
    opacity: 0;
    -webkit-transform: translate(-100%, 0);
    transform: translate(-100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@keyframes fadeIn-left {
  from {
    opacity: 0;
    -webkit-transform: translate(-100%, 0);
    transform: translate(-100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@-webkit-keyframes fadeIn-right {
  from {
    opacity: 0;
    -webkit-transform: translate(100%, 0);
    transform: translate(100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
@keyframes fadeIn-right {
  from {
    opacity: 0;
    -webkit-transform: translate(100%, 0);
    transform: translate(100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

.efImg--kv {
  -moz-transition: -moz-transform 1.5s linear;
  -webkit-transition: -webkit-transform 1.5s linear;
  -o-transition: -o-transform 1.5s linear;
  -ms-transition: -ms-transform 1.5s linear;
  transition: transform 1.5s linear;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  opacity: 0;
}
.kv_effect .efImg--kv {
  -webkit-animation-name: imageBlur;
  animation-name: imageBlur;
  opacity: 1;
}
.efImg {
  opacity: 0;
  -moz-transition: -moz-transform 1.5s linear;
  -webkit-transition: -webkit-transform 1.5s linear;
  -o-transition: -o-transform 1.5s linear;
  -ms-transition: -ms-transform 1.5s linear;
  transition: transform 1.5s linear;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.efImg.on {
  -webkit-animation-name: imageBlur;
  animation-name: imageBlur;
  opacity: 1;
  transition: 1.5s;
}
@-webkit-keyframes imageBlur {
  from {
    opacity: 0;
    -webkit-filter: blur(20px);
    -moz-filter: blur(20px);
    -ms-filter: blur(20px);
    -o-filter: blur(20px);
    filter: blur(20px);
  }
  to {
    opacity: 1;
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -ms-filter: blur(0px);
    -o-filter: blur(0px);
    filter: blur(0px);
  }
}
@keyframes imageBlur {
  from {
    opacity: 0;
    -webkit-filter: blur(20px);
    -moz-filter: blur(20px);
    -ms-filter: blur(20px);
    -o-filter: blur(20px);
    filter: blur(20px);
  }
  to {
      opacity: 1;
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -ms-filter: blur(0px);
    -o-filter: blur(0px);
    filter: blur(0px);
  }
}



.a-page-contents {
  margin: 0;
}
body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
}
body.is-scroll {
  padding-top: 0 !important;
}

img {
  width: 100%;
}
.pc {
  display: block;
}
.sp {
  display: none;
}

.header-logo_wrap {
  width: 100%;
  height: 82px;
  border-bottom: 1px solid #cccccc;
  position: fixed;
  background: #ffffff;
  z-index: 9;
}
.header-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 130px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.header-logo__link {
  -webkit-transition: opacity 300ms;
  transition: opacity 300ms;
}
.header-logo__link {
  display: block;
  overflow: hidden;
  padding-top: 33px;
  height: 0;
  background: url("https://image.veryweb.jp/wp-content/uploads/2020/04/header-logo-navy.png") 0 0 no-repeat;
  background-size: 100% auto;
}
@media (min-width: 992px) {
  .is-scroll .header-logo {
    width: 130px;
  }
  .is-scroll .header-logo__link {
    padding-top: 33px;
  }
}
.c-shere-sns {
  margin-bottom: 50px;
}








/* =========================================================
  * メインコーディング
  * ========================================================= */
.tasaki2511 {
  position: relative;
  color: #333;
  padding-bottom: 50px;
  padding-top: 82px;
  margin-bottom: 50px;
}
.tasaki2511:before {
  display: none;
}
.tasaki2511 .pr {
  background: #ccc;
  color: #fff;
  font-size: 10px;
  padding: 3px 5px;
  position: fixed;
  right: 0;
  top: 83px;
  z-index: 10;
  line-height: 1;
}
.tasaki2511 a {
  display: block;
  -webkit-transition: opacity 300ms;
  transition: opacity 300ms;
}
.tasaki2511 a:hover {
  opacity: 0.7;
}
.tasaki__flex-box {
  display: flex;
}
.tasaki2511 .inner1300 {
  margin: auto;
  max-width: 1300px;
  width: 100%;
  position: relative;
}
.tasaki2511 .inner1100 {
  margin: auto;
  max-width: 1100px;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 1300px) {
  .tasaki2511 {
    font-size: 1.3333vw;
  }
}
@media screen and (max-width: 768px) {
  body {
    display: block;
  }
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  .header-logo_wrap {
    height: 50px;
  }
  .header-logo {
    width: 107px;
  }
  .header-logo__link {
    padding-top: 28px;
  }
  .c-shere-sns {
    margin-bottom: 9.3333vw;
  }
  .c-tags-list:before {
    display: none;
  }
  .tasaki2511 {
    padding-top: 50px;
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .tasaki2511 .pr {
    font-size: 1.3333vw;
    top: 50px;
  }
  .tasaki2511 .inner1300 {
    max-width: 100%;
    width: 100%;
  }
  .tasaki2511 .inner1100 {
    max-width: 100%;
    width: 100%;
  }
}






/* ------------------------------ Main Visual */
.tasaki__mv {
  width: 100%;
  position: relative;
}
.tasaki__mv .tasaki__mv-tit {
  position: absolute;
  top: 80px;
  left: 100px;
  z-index: 2;
}
.tasaki2511 .tasaki__mv .sec_tit_txt {
  text-align: left;
}
.tasaki2511 .tasaki__mv .tasaki__mv-tit_img {
  display: block;
  width: 641px;
  margin-top: 15px;
  margin-bottom: 15px;
}
.tasaki2511 .tasaki__mv .tasaki__sec-tit {
  text-align: left;
}

.tasaki2511 .tasaki__mv .tasaki__flex-box {
  justify-content: flex-end;
  align-items: flex-end;
}
.tasaki2511 .tasaki__mv .sec_img {
  width: 710px;
}
.tasaki2511 .tasaki__mv .tasaki__txt-box {
  width: 350px;
  margin-right: 80px;
}
@media screen and (max-width: 1300px) {
  .tasaki__mv .tasaki__mv-tit {
    top: 6.1538vw;
    left: 7.6923vw;
  }
  .tasaki2511 .tasaki__mv .tasaki__mv-tit_img {
    width: 49.3077vw;
  }
  .tasaki2511 .tasaki__mv .sec_img {
    width: 54.6154vw;
  }
  .tasaki2511 .tasaki__mv .tasaki__txt-box {
    width: 26.9231vw;
    margin-right: 6.1538vw;
  }
}
@media screen and (max-width: 768px) {

  .tasaki__mv .tasaki__mv-tit {
    width: 100%;
    top: 6.6667vw;
    left: 50%;
    transform: translateX(-50%);
  }
  .tasaki2511 .tasaki__mv .sec_tit_txt {
    text-align: center;
  }
  .tasaki2511 .tasaki__mv .tasaki__mv-tit_img {
    width: 86.1333vw;
    margin: 1.8667vw auto 0;
  }
  .tasaki2511 .tasaki__mv .tasaki__sec-tit {
    text-align: center;
    margin-top: 6.6667vw;
  }

  .tasaki2511 .tasaki__mv .tasaki__flex-box {
    padding-top: 45.3333vw;
    flex-direction: column-reverse;
    align-items: center;
  }
  .tasaki2511 .tasaki__mv .sec_img {
    width: 100%;
  }
  .tasaki2511 .tasaki__mv .tasaki__txt-box {
    width: 86.6667vw;
    margin-right: auto;
    margin-left: auto;
  }
}




/* =========================================================
  * Section
  * ========================================================= */
.tasaki2511 .sec_bg_gray {
  background: #F5F5F5;
}

.tasaki2511 .section .tasaki__flex-box {
  align-items: center;
}

.tasaki2511 .sec_tit_txt {
  font-size: 24px;
  font-weight: bold;
  color: #EC6D60;
  text-align: center;
  line-height: 1.16667;
}
.tasaki2511 .sec_tit_img {
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
}
.tasaki2511 .tasaki__sec-tit {
  font-weight: bolder;
  line-height: 1.625;
  text-align: center;
}

.tasaki2511 .tasaki__txt-box {
  position: relative;
  margin-top: 100px;
}
.tasaki2511 .tasaki__sec-txt {
  font-weight: bold;
  line-height: 1.625;
  margin-bottom: 20px;
}
.tasaki2511 .tasaki__sec-credit {
  font-size: 12px;
  line-height: 1.6667;
}

.tasaki2511 .chants_txt {
  width: 75px;
  position: absolute;
  top: -55px;
}
.tasaki2511 .section01 .chants_txt,
.tasaki2511 .section02 .chants_txt,
.tasaki2511 .section04 .chants_txt,
.tasaki2511 .section05 .chants_txt {
  right: -30px;
  transform: rotate(45deg);
}
.tasaki2511 .section06 .chants_txt {
  right: -50px;
  transform: rotate(45deg);
}
.tasaki2511 .section07 .chants_txt {
  right: -40px;
  transform: rotate(45deg);
}
.tasaki2511 .tasaki__mv .chants_txt,
.tasaki2511 .section03 .chants_txt {
  left: -50px;
  transform: rotate(0);
}
@media screen and (max-width: 1300px) {
  .tasaki2511 .sec_tit_txt {
    font-size: 1.8462vw;
  }
  .tasaki2511 .tasaki__sec-tit {
    font-size: 1.2308vw;
  }
  .tasaki2511 .tasaki__sec-txt {
    font-size: 1.2308vw;
  }
  .tasaki2511 .tasaki__sec-credit {
    font-size: 0.9231vw;
  }
  .tasaki2511 .chants_txt {
    width: 5.7692vw;
    top: -4.2308vw;
  }
  .tasaki2511 .section01 .chants_txt,
  .tasaki2511 .section02 .chants_txt,
  .tasaki2511 .section04 .chants_txt,
  .tasaki2511 .section05 .chants_txt {
    right: -2.3077vw;
  }
  .tasaki2511 .section06 .chants_txt {
    right: -3.8462vw;
  }
  .tasaki2511 .section07 .chants_txt {
    right: -3.0769vw;
  }
  .tasaki2511 .tasaki__mv .chants_txt,
  .tasaki2511 .section03 .chants_txt {
    left: -3.8462vw;
  }
}
@media screen and (max-width: 768px) {


  .tasaki2511 .section01 .tasaki__flex-box {
    flex-direction: column;
  }


  .tasaki2511 .sec_tit_txt {
    font-size: 4.8vw;
    line-height: 1.3334;
  }
  .tasaki2511 .sec_tit_img {
    margin-top: 2.6667vw;
    margin-bottom: 2.6667vw;
  }
  .tasaki2511 .tasaki__txt-box {
    margin-top: 16vw;
    margin-top: 18.6667vw;
  }

  .tasaki2511 .tasaki__sec-tit {
    font-size: 4vw;
    line-height: 1.6;
  }
  .tasaki2511 .tasaki__sec-txt {
    font-size: 3.7333vw;
    line-height: 1.7142;
    margin-bottom: 20px;
  }
  .tasaki2511 .tasaki__sec-credit {
    font-size: 3.2vw;
  }
  .tasaki2511 .chants_txt {
    width: 12vw;
    top: -10.6667vw;
  }
  .tasaki2511 .section01 .chants_txt {
    right: auto;
    left: -4vw;
    transform: rotate(0);
  }

  .tasaki2511 .section02 .chants_txt,
  .tasaki2511 .section04 .chants_txt,
  .tasaki2511 .section05 .chants_txt {
    right: -4vw;
    top: -10.6667vw;
  }
  .tasaki2511 .section06 .chants_txt {
    right: -4vw;
    top: -10.6667vw;
  }
  .tasaki2511 .section07 .chants_txt {
    right: -4vw;
    top: -10.6667vw;
  }
  .tasaki2511 .tasaki__mv .chants_txt,
  .tasaki2511 .section03 .chants_txt {
    left: -4vw;
  }
}


/* ------------------------------ section01 */
.tasaki2511 .section01 {
  padding-top: 80px;
  padding-bottom: 80px;
}
.tasaki2511 .section01 .sec_img {
  width: 589px;
}
.tasaki2511 .section01 .tasaki__conts-box {
  width: calc(100% - 589px);
}
.tasaki2511 .sec01_tit_img {
  width: 433px;
}
.tasaki2511 .section01 .tasaki__txt-box {
  width: 355px;
  margin-left: 80px;
}
@media screen and (max-width: 1300px) {
  .tasaki2511 .section01 .sec_img {
    width: 53.5455vw;
  }
  .tasaki2511 .section01 .tasaki__conts-box {
    width: calc(100% - 53.5455vw);
  }
  .tasaki2511 .sec01_tit_img {
    width: 39.3636vw;
  }
  .tasaki2511 .section01 .tasaki__txt-box {
    width: 32.2727vw;
    margin-left: 7.2727vw;
  }
}
@media screen and (max-width: 768px) {
  .tasaki2511 .section01 {
    padding-top: 16vw;
    padding-bottom: 16vw;
  }
  .tasaki2511 .section01 .sec_img {
    width: 100%;
    margin-bottom: 6.6667vw;
  }
  .tasaki2511 .section01 .tasaki__conts-box {
    width: 100%;
  }
  .tasaki2511 .sec01_tit_img {
    width: 86.4vw;
  }
  .tasaki2511 .section01 .tasaki__txt-box {
    width: 86.6667vw;
    margin-left: auto;
    margin-right: auto;
  }
}


/* ------------------------------ section02 */
.tasaki2511 .section02 .inner1300 {
  padding-top: 80px;
  padding-bottom: 80px;
  background: url('/static_contents/202511tasaki/assets/img/sec02_img_pc.jpg') no-repeat;
  background-size: cover;
}
.tasaki2511 .section02 .tasaki__tit-box {
  width: 367px;
  margin: 0 130px 0 auto;
}
.tasaki2511 .section02 .tasaki__tit-box .sec_tit_txt {
  color: #fff;
}
.tasaki2511 .section02 .tasaki__tit-box .tasaki__sec-tit {
  text-align: left;
  padding-left: 90px;
}

.tasaki2511 .section02 .tasaki__flex-box {
  justify-content: flex-end;
  align-items: flex-end;
  margin-top: 110px;
  margin-right: 100px;
}
.tasaki2511 .section02 .tasaki__txt-box {
  width: 370px;
  color: #fff;
  margin-top: 0;
  margin-bottom: 20px;
}
.tasaki2511 .section02 .tasaki__sec-credit {
  word-break: break-word;
  overflow-wrap: break-word;
  line-break: auto; 
  white-space: normal;
}
.tasaki2511 .section02 .slider_box {
  width: 562px;
  margin-left: 90px;
  margin-right: 0;
  margin-top: 0;
}
@media screen and (max-width: 1300px) {
  .tasaki2511 .section02 .inner1300 {
    padding-top: 6.1538vw;
    padding-bottom: 6.1538vw;
    background: url('/static_contents/202511tasaki/assets/img/sec02_img_pc.jpg') no-repeat;
    background-size: cover;
    background-position: center;
  }
  .tasaki2511 .section02 .tasaki__tit-box {
    width: 28.2308vw;
    margin: 0 10vw 0 auto;
  }
  .tasaki2511 .section02 .tasaki__tit-box .tasaki__sec-tit {
    padding-left: 6.9231vw;
  }
  .tasaki2511 .section02 .tasaki__flex-box {
    margin-top: 8.4615vw;
    margin-right: 7.6923vw;
  }
  .tasaki2511 .section02 .tasaki__txt-box {
    width: 28.4615vw;
  }
  .tasaki2511 .section02 .slider_box {
    width: 43.2308vw;
    margin-left: 6.9231vw;
  }
}
@media screen and (max-width: 768px) {
  .tasaki2511 .section02 .inner1300 {
    padding-top: 149.8667vw;
    padding-bottom: 0;
    background: url('/static_contents/202511tasaki/assets/img/sec02_img_sp.jpg') no-repeat;
    background-size: 100vw;
  }
  .tasaki2511 .section02 .tasaki__tit-box {
    width: 100%;
    margin: -42.6667vw auto 0;
  }
  .tasaki2511 .section02 .sec02_tit_img {
    width: 74.1333vw;
    margin: 2.6667vw auto;
  }
  .tasaki2511 .section02 .tasaki__tit-box .tasaki__sec-tit {
    text-align: center;
    padding-left: 0;
  }

  .tasaki2511 .section02 .tasaki__flex-box {
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 22.6667vw;
    margin-right: 0;
  }
  .tasaki2511 .section02 .tasaki__txt-box {
    width: 86.6667vw;
    color: #000;
    margin-bottom: 10.6667vw;
  }
  .tasaki2511 .section02 .slider_box {
    width: 80.5333vw;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
  }
}


/* ------------------------------ section03 */
.tasaki2511 .section03 {
  padding-top: 80px;
  padding-bottom: 80px;
}
.tasaki2511 .section03 .tasaki__flex-box {
  flex-direction: row-reverse;
}
.tasaki2511 .section03 .sec_img {
  width: 598px;
}
.tasaki2511 .section03 .tasaki__conts-box {
  width: calc(100% - 598px);
}
.tasaki2511 .sec03_tit_img {
  width: 448px;
}
.tasaki2511 .section03 .tasaki__txt-box {
  width: 355px;
  margin-left: 60px;
}
@media screen and (max-width: 1300px) {
  .tasaki2511 .section03 .sec_img {
    width: 54.3636vw;
  }
  .tasaki2511 .section03 .tasaki__conts-box {
    width: calc(100% - 54.3636vw);
  }
  .tasaki2511 .sec03_tit_img {
    width: 40.7273vw;
  }
  .tasaki2511 .section03 .tasaki__txt-box {
    width: 32.2727vw;
    margin-left: 5.4545vw;
  }
}
@media screen and (max-width: 768px) {
  .tasaki2511 .section03 {
    padding-top: 16vw;
    padding-bottom: 16vw;
  }
  .tasaki2511 .section03 .tasaki__flex-box {
    flex-direction: column;
  }
  .tasaki2511 .section03 .sec_img {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 6.6667vw;
  }
  .tasaki2511 .section03 .tasaki__conts-box {
    width: 100%;
  }
  .tasaki2511 .sec03_tit_img {
    width: 86.6667vw;
    margin-left: auto;
    margin-right: auto;
  }
  .tasaki2511 .section03 .tasaki__txt-box {
    width: 86.6667vw;
    margin-left: auto;
    margin-right: auto;
  }
}




/* ------------------------------ section04 */
.tasaki2511 .section04 {
  padding-top: 80px;
  padding-bottom: 80px;
}
.tasaki2511 .section04 .sec_img {
  width: 550px;
}
.tasaki2511 .section04 .tasaki__conts-box {
  width: calc(100% - 550px);
}
.tasaki2511 .section04 .holiday_txt {
  width: 265px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}
.tasaki2511 .sec04_tit_img {
  width: 355px;
}
.tasaki2511 .section04 .tasaki__txt-box {
  width: 450px;
  margin-left: 50px;
}
@media screen and (max-width: 1300px) {
  .tasaki2511 .section04 .sec_img {
    width: 50vw;
  }
  .tasaki2511 .section04 .tasaki__conts-box {
    width: calc(100% - 50vw);
  }
  .tasaki2511 .section04 .holiday_txt {
    width: 24.0909vw;
    margin-bottom: 2.7273vw;
  }
  .tasaki2511 .sec04_tit_img {
    width: 32.2727vw;
  }
  .tasaki2511 .section04 .tasaki__txt-box {
    width: 40.9091vw;
    margin-left: 4.5455vw;
  }
}
@media screen and (max-width: 768px) {
  .tasaki2511 .section04 {
    padding-top: 16vw;
    padding-bottom: 16vw;
  }
  .tasaki2511 .section04 .sec_img {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 6.6667vw;
  }
  .tasaki2511 .section04 .tasaki__conts-box {
    width: 100%;
  }
  .tasaki2511 .section04 .holiday_txt {
    width: 58.9333vw;
    margin-bottom: 2.6667vw;
  }
  .tasaki2511 .sec04_tit_img {
    width: 66.9333vw;
  }
  .tasaki2511 .section04 .tasaki__txt-box {
    width: 86.6667vw;
    margin-left: auto;
    margin-right: auto;
  }
}



/* ------------------------------ section05 */
.tasaki2511 .section05 {
  padding-bottom: 80px;
}
.tasaki2511 .sec05_conts {
  background: #d4dee0;
}
.tasaki2511 .sec05_conts .tasaki__flex-box {
  padding-left: 100px;
}
.tasaki2511 .section05 .tasaki__flex-box {
  flex-direction: row-reverse;
}

.tasaki2511 .section05 .sec_img {
  width: 615px;
}
.tasaki2511 .section05 .tasaki__conts-box {
  width: calc(100% - 615px);
}
.tasaki2511 .sec05_tit_img {
  width: 455px;
}
.tasaki2511 .section05 .tasaki__txt-box {
  width: 354px;
  margin-left: 95px;
}
@media screen and (max-width: 1300px) {
  .tasaki2511 .sec05_conts .tasaki__flex-box {
    padding-left: 7.6923vw;
  }
  .tasaki2511 .section05 .sec_img {
    width: 47.3077vw;
  }
  .tasaki2511 .section05 .tasaki__conts-box {
    width: calc(100% - 47.3077vw);
  }
  .tasaki2511 .sec05_tit_img {
    width: 35vw;
  }
  .tasaki2511 .section05 .tasaki__txt-box {
    width: 27.2308vw;
    margin-left: 7.3077vw;
  }
}
@media screen and (max-width: 768px) {
  .tasaki2511 .section05 {
    padding-bottom: 16vw;
  }
  .tasaki2511 .sec05_conts {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 10.6667vw;
  }
  .tasaki2511 .sec05_conts .tasaki__flex-box {
    padding-left: 0;
    flex-direction: column;
  }
  .tasaki2511 .section05 .sec_img {
    width: 100%;
    margin-bottom: 6.6667vw;
  }
  .tasaki2511 .section05 .tasaki__conts-box {
    width: 100%;
  }
  .tasaki2511 .sec05_tit_img {
    width: 80.8vw;
  }
  .tasaki2511 .section05 .tasaki__txt-box {
     width: 86.6667vw;
    margin-left: auto;
    margin-right: auto;
  }
}




/* ------------------------------ section06 */
.tasaki2511 .section06 {
  padding-top: 80px;
  padding-bottom: 80px;
}
.tasaki2511 .section06 .tasaki__flex-box {
  padding-right: 50px;
}
.tasaki2511 .section06 .sec_img {
  width: 650px;
}
.tasaki2511 .section06 .tasaki__sec-credit {
  width: 550px;
  margin-top: 20px;
  margin-left: 100px;
}
.tasaki2511 .section06 .tasaki__conts-box {
  width: calc(100% - 650px);
}
.tasaki2511 .sec06_tit_img {
  width: 450px;
}
.tasaki2511 .section06 .tasaki__txt-box {
  width: 370px;
  margin-left: 117px;
}
.tasaki2511 .section06 .tasaki__sec-txt {
  margin-bottom: 60px;
}
@media screen and (max-width: 1300px) {
  .tasaki2511 .section06 .tasaki__flex-box {
    padding-right: 3.8462vw;
  }
  .tasaki2511 .section06 .sec_img {
    width: 50vw;
  }
  .tasaki2511 .section06 .tasaki__sec-credit {
    width: 42.3077vw;
    margin-top: 20px;
    margin-left: 7.6923vw;
  }
  .tasaki2511 .section06 .tasaki__conts-box {
    width: calc(100% - 50vw);
  }
  .tasaki2511 .sec06_tit_img {
    width: 34.6154vw;
  }
  .tasaki2511 .section06 .tasaki__txt-box {
    width: 28.4615vw;
    margin-left: 9vw;
  }
  .tasaki2511 .section06 .tasaki__sec-txt {
    margin-bottom: 4.6154vw;
  }
}
@media screen and (max-width: 768px) {
  .tasaki2511 .section06 {
    padding-top: 16vw;
    padding-bottom: 16vw;
  }
  .tasaki2511 .section06 .tasaki__flex-box {
    padding-right: 0;
    flex-direction: column-reverse;
  }
  .tasaki2511 .section06 .sec_img {
    width: 100%;
    margin-bottom: 6.6667vw;
  }
  .tasaki2511 .section06 .tasaki__sec-credit {
    width: 86.6667vw;
    margin-top: 5.3333vw;
    margin-left: auto;
    margin-right: auto;
  }
  .tasaki2511 .section06 .tasaki__conts-box {
    width: 100%;
  }
  .tasaki2511 .sec06_tit_img {
    width: 86.6667vw;
    margin-bottom: 6.6667vw;
  }
  .tasaki2511 .section06 .tasaki__txt-box {
    width: 86.6667vw;
    margin-left: auto;
    margin-right: auto;
  }
  .tasaki2511 .section06 .tasaki__sec-txt {
    margin-bottom: 0;
  }
}





/* ------------------------------ section07 */
.tasaki2511 .sec07_conts {
  background: #3C5657;
}
.tasaki2511 .section07 .tasaki__flex-box_top {
  justify-content: flex-end;
  align-items: flex-start;
}
.tasaki2511 .section07 .tasaki__conts-box {
  margin-right: 70px;
  color: #fff;
}
.tasaki2511 .section07 .sec_img {
  width: 615px;
}

.tasaki2511 .section07 .tasaki__cont {
  width: 450px;
  margin-top: 115px;
  position: relative;
  font-family: "Noto Serif JP", serif;
}
.tasaki2511 .section07 .tasaki__cont .tasaki__sec-tit {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  text-align: left;
  margin-bottom: 20px;
}
.tasaki2511 .section07 .tasaki__cont .tasaki__sec-txt {
  font-weight: normal;
  line-height: 1.625;
  text-align: left;
}
.tasaki2511 .section07 .tasaki__cont .name {
  font-size: 18px;
  text-align: right;
  position: relative;
}
.tasaki2511 .section07 .tasaki__cont .name::before {
  display: block;
  content: "";
  width: 60px;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 55%;
  right: 27%;
}
.tasaki2511 .section07 .tasaki__cont .name span {
  font-size: 12px;
}
.tasaki2511 .section07 .tasaki__cont .marks {
  width: 45px;
  position: absolute;
}
.tasaki2511 .section07 .tasaki__cont .marks_top {
  top: -40px;
  left: -20px;
}
.tasaki2511 .section07 .tasaki__cont .marks_bt {
  bottom: -40px;
  right: -10px;
  transform: scaleX(-1);
}

.tasaki2511 .section07 .tasaki__profile-box {
  width: 406px;
  margin-top: 45px;
}
.tasaki2511 .section07 .tasaki__profile-box .prof_tit {
  width: 140px;
}
.tasaki2511 .section07 .tasaki__profile-box .prof_name {
  font-family: "Noto Serif JP", serif;
  margin-top: 15px;
  margin-bottom: 10px;
}
.tasaki2511 .section07 .tasaki__profile-box .prof_txt {
  font-size: 12px;
  line-height: 1.6667;
}

.tasaki2511 .section07 .tasaki__flex-box_bt {
  justify-content: flex-start;
}
.tasaki2511 .section07 .slider_box02 {
  width: 562px;
  margin-left: 132px;
  margin-right: 0;
}
.tasaki2511 .section07 .tasaki__txt-box {
  width: 384px;
  margin-left: 58px;
}
@media screen and (max-width: 1300px) {
  .tasaki2511 .section07 .tasaki__conts-box {
    margin-right: 5.3846vw;
  }
  .tasaki2511 .section07 .sec_img {
    width: 47.3077vw;
  }
  .tasaki2511 .section07 .tasaki__cont {
    width: 34.6154vw;
    margin-top: 6vw;
  }
  .tasaki2511 .section07 .tasaki__cont .tasaki__sec-tit {
    font-size: 1.5385vw;
  }
  .tasaki2511 .section07 .tasaki__cont .tasaki__sec-txt {
    font-size: 1.2308vw;
  }
  .tasaki2511 .section07 .tasaki__cont .name {
    font-size: 1.3846vw;
  }
  .tasaki2511 .section07 .tasaki__cont .name span {
    font-size: 0.9231vw;
  }
  .tasaki2511 .section07 .tasaki__cont .marks {
    width: 3.4615vw;
  }
  .tasaki2511 .section07 .tasaki__cont .marks_top {
    top: -3.0769vw;
    left: -1.5385vw;
  }
  .tasaki2511 .section07 .tasaki__cont .marks_bt {
    bottom: -3.0769vw;
    right: -0.7692vw;
  }

  .tasaki2511 .section07 .tasaki__profile-box {
    width: 31.2308vw;
    margin-top: 3.4615vw;
  }
  .tasaki2511 .section07 .tasaki__profile-box .prof_tit {
    width: 10.7692vw;
  }
  .tasaki2511 .section07 .tasaki__profile-box .prof_name {
    font-size: 1.2308vw;
  }
  .tasaki2511 .section07 .tasaki__profile-box .prof_txt {
    font-size: 0.9231vw;
  }

  .tasaki2511 .section07 .slider_box02 {
    width: 43.2308vw;
    max-width: 100%;
    margin-left: 10.1538vw;
  }
  .tasaki2511 .section07 .tasaki__txt-box {
    width: 29.5385vw;
    margin-left: 4.4615vw;
  }
}
@media screen and (max-width: 768px) {
  .tasaki2511 .section07 .tasaki__flex-box_top {
    justify-content: center;
    align-items: center;
    flex-direction: column-reverse;
    padding-bottom: 16vw;
  }
  .tasaki2511 .section07 .tasaki__conts-box {
    margin-right: 0;
  }
  .tasaki2511 .section07 .sec_img {
    width: 100%;
    margin-bottom: 18.6667vw;
  }

  .tasaki2511 .section07 .tasaki__cont {
    width: 71.2vw;
    margin-top: 0;
  }
  .tasaki2511 .section07 .tasaki__cont .tasaki__sec-tit {
    font-size: 4.2667vw;
    line-height: 1.5;
    margin-bottom: 4vw;
  }
  .tasaki2511 .section07 .tasaki__cont .tasaki__sec-txt {
    font-size: 3.7333vw;
    line-height: 1.71428;
  }
  .tasaki2511 .section07 .tasaki__cont .name {
    font-size: 4.2667vw;
  }
  .tasaki2511 .section07 .tasaki__cont .name::before {
    width: 10.6667vw;
    top: 55%;
    right: 30.6667vw;
  }
  .tasaki2511 .section07 .tasaki__cont .name span {
    font-size: 3.2vw;
  }
  .tasaki2511 .section07 .tasaki__cont .marks {
    width: 9.3333vw;
  }
  .tasaki2511 .section07 .tasaki__cont .marks_top {
    top: -8vw;
    left: -8vw;
  }
  .tasaki2511 .section07 .tasaki__cont .marks_bt {
    bottom: -8vw;
    right: -8vw;
  }

  .tasaki2511 .section07 .tasaki__profile-box {
    width: 71.2vw;
    margin-top: 17.3333vw;
  }
  .tasaki2511 .section07 .tasaki__profile-box .prof_tit {
    width: 37.3333vw;
  }
  .tasaki2511 .section07 .tasaki__profile-box .prof_name {
    font-size: 4.2667vw;
    margin-top: 4vw;
    margin-bottom: 2.6667vw;
  }
  .tasaki2511 .section07 .tasaki__profile-box .prof_txt {
    font-size: 3.2vw;
  }

  .tasaki2511 .section07 .tasaki__flex-box_bt {
    justify-content: center;
    flex-direction: column-reverse;
  }
  .tasaki2511 .section07 .slider_box02 {
    max-width: 100%;
    width: 80.5333vw;
    margin-left: 0;
    margin-right: 0;
  }
  .tasaki2511 .section07 .tasaki__txt-box {
    width: 86.6667vw;
    margin-left: auto;
    margin-right: auto;
  }
}





/* ------------------------------ slider */
.slider_box {
  position: relative;
  margin: 40px auto 0;
}
.slider_box03 {
  max-width: 824px;
}
.slider_box02 {
  max-width: 564px;
}
.slider_tit {
  width: 75px;
  margin: 0 auto 20px;
  line-height: 1;
}

.slider_inner {
  position: relative;
}
.slider_box .swiper {
  position: relative;
}
.slider_box .mySwiper {
  width: 760px;
}
.slider_box .mySwiperTwo {
  width: 500px;
}
.slider_box .swiper-shadow {
  position: absolute;
  right: 32px;
  top: 0;
  width: 4px;
  height: 100%;
  box-shadow: 2px 0 2px rgba(0, 0, 0, 0.25);
  pointer-events: none;
}

.slider_box .swiper-slide {
  padding-bottom: 40px;
  text-align: center;
  box-shadow: 2px 2px 2px rgb(0, 0, 0, 0.25);
  margin-bottom: 2px;
  background: #fff;
}
.slider_box .swiper-slide .slider_img {
  width: 100%;
  margin-bottom: 20px;
}
.slider_box .swiper-slide .slider_img_long {
  margin-bottom: 0;
} 
.slider_box .swiper-slide .slider_txt {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
}
.slider_box .swiper-slide .slider_price {
  font-size: 12px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.slider_box .swiper-slide .slider_btn {
  width: 140px;
  height: 40px;
  margin: 0 auto;
}
.slider_box .swiper-slide .slider_btn a {
  width: 100%;
  height: 100%;
  background: #EC6D60;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}
.slider_box .swiper-slide .slider_btn img {
  width: 33px;
}
.slider_box .swiper-slide .slider_btn a:hover {
  opacity: 0.7;
  background: #ebb9b1;
}

.slider_box .swiper-button-prev,
.slider_box .swiper-button-next {
  width: 41px;
  height: 13px;
  background: url('/static_contents/202511tasaki/assets/img/slider_arrow.png') no-repeat;
  background-size: 100%;
  margin-top: 0;
  z-index: 2;
}
.slider_box .swiper-button-prev, 
.slider_box .swiper-rtl .swiper-button-next {
  left: 0;
  right: auto;
  transform: scaleX(-1);
}
.slider_box .swiper-button-next,
.slider_box .swiper-rtl .swiper-button-prev {
  right: 0;
  left: auto;
}
.slider_box .swiper-button-prev:after, 
.slider_box .swiper-rtl .swiper-button-next:after {
  display: none;
}
.slider_box .swiper-button-next:after, 
.slider_box .swiper-rtl .swiper-button-prev:after {
  display: none;
}

.slider_box .swiper-pagination {
  bottom: -36px;
  left: 50%;
  transform: translateX(-50%);
}
.slider_box .swiper-pagination-clickable .swiper-pagination-bullet {
  margin: 0 5px;
  width: 11px;
  height: 11px;
  opacity: 1;
}
.slider_box .swiper-pagination-bullet-active {
  background: #EC6D60;
}
@media screen and (max-width: 1300px) {
  .slider_box03 {
    max-width: 63.3846vw;
  }
  .slider_box02 {
    max-width: 43.3846vw;
  }
  .slider_tit {
    width: 5.7692vw;
  }
  .slider_box .mySwiper {
    width: 58.8vw;
  }
  .slider_box .mySwiperTwo {
    width: 38.8vw;
  }
  .slider_box .swiper-shadow {
    right: 2.4615vw;
    right: 2.2vw;
    width: 0.3077vw;
  }

  .slider_box .swiper-slide {
    padding-bottom: 3.0769vw;
  }
  .slider_box .swiper-slide .slider_txt {
    font-size: 1vw;
  }
  .slider_box .swiper-slide .slider_price {
    font-size: 1vw;
  }
  .slider_box .swiper-slide .slider_btn {
    width: 10.7692vw;
    height: 3.0769vw;
  }
  .slider_box .swiper-slide .slider_btn img {
    width: 2.5385vw;
  }
}
@media screen and (max-width: 768px) {
  .slider_box {
    margin: 10.6667vw auto 0;
  }
  .slider_box03 {
    max-width: 100%;
    width: 80.5333vw;
  }
  .slider_box02 {
    max-width: 100%;
    width: 80.5333vw;
  }
  .slider_tit {
    width: 18.6667vw;
    margin: 0 auto 5.3333vw;
  }
  .slider_box .mySwiper {
    width: 64vw;
  }
  .slider_box .mySwiperTwo {
    width: 64vw;
  }

  .slider_box .swiper-shadow {
    position: absolute;
    right: 8.2667vw;
    width: 4px;
  }
  .slider_box .swiper-slide {
    padding-bottom: 8.2667vw;
  }
  .slider_box .swiper-slide .slider_img {
    width: 100%;
    margin-bottom: 5.3333vw;
  }
  .slider_box .swiper-slide .slider_txt {
    font-size: 3.4667vw;
  }
  .slider_box .swiper-slide .slider_price {
    font-size: 3.2vw;
    margin-top: 2.6667vw;
    margin-bottom: 2.6667vw;
  }
  .slider_box .swiper-slide .slider_btn {
    width: 37.3333vw;
    height: 10.6667vw;
  }
  .slider_box .swiper-slide .slider_btn img {
    width: 8vw;
  }

  .slider_box .swiper-button-prev,
  .slider_box .swiper-button-next {
    width: 10.9333vw;
    height: 3.4667vw;
  }
  .slider_box .swiper-pagination {
    bottom: -9.6vw;
  }
  .slider_box .swiper-pagination-clickable .swiper-pagination-bullet {
    margin: 0 1.3333vw;
    width: 2.9333vw;
    height: 2.9333vw;
  }
}



/* ------------------------------ 「チャンツ」 BTN */
.tasaki2511 .chants_btn {
  width: 300px;
  height: 70px;
  margin-left: auto;
  margin-right: auto;
}
.tasaki2511 .slider_box .chants_btn,
.tasaki2511 .section07 .chants_btn {
  margin-top: 70px;
}
.tasaki2511 .section03 .slider_box .chants_btn,
.tasaki2511 .section05 .slider_box .chants_btn,
.tasaki2511 .section06 .chants_btn,
.tasaki2511 .tasaki__footer .chants_btn {
  margin-top: 40px;
}
.tasaki2511 .chants_btn a {
  width: 100%;
  height: 100%;
  background: #333333;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}
.tasaki2511 .chants_btn a:hover {
  opacity: 0.5;
}
.tasaki2511 .chants_btn img {
  width: 128px;
}
@media screen and (max-width: 1300px) {
  .tasaki2511 .chants_btn {
    width: 23.0769vw;
    height: 5.3846vw;
  }
  .tasaki2511 .chants_btn img {
    width: 9.8462vw;
  }
}
@media screen and (max-width: 768px) {
  .tasaki2511 .chants_btn {
    width: 71.2vw;
    height: 16.5333vw;
  }
  .tasaki2511 .slider_box .chants_btn,
  .tasaki2511 .section07 .chants_btn {
    margin-top: 14.6667vw;
  }
  .tasaki2511 .section03 .slider_box .chants_btn,
  .tasaki2511 .section05 .slider_box .chants_btn,
  .tasaki2511 .section06 .chants_btn,
  .tasaki2511 .tasaki__footer .chants_btn {
    margin-top: 14.6667vw;
  }
  .tasaki2511 .chants_btn img {
    width: 35.2vw;
  }
}





/* ------------------------------ footer */
.tasaki__footer {
  padding: 80px 0 50px;
}

.tasaki__footer .info_block {
  max-width: 974px;
  margin: 0 auto;
  padding: 60px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 0 40px;
  border: 1px solid #EC6D60;
  background: #fff;
  position: relative;
}
.tasaki__footer .info_block .info_kazari {
  width: 30px;
  position: absolute;
}
.tasaki__footer .info_block .info_kazari01 {
  top: 0;
  left: 0;
  transform: rotate(90deg);
}
.tasaki__footer .info_block .info_kazari02 {
  top: 0;
  right: 0;
  transform: rotate(180deg);
}
.tasaki__footer .info_block .info_kazari03 {
  bottom: 0;
  left: 0;
}
.tasaki__footer .info_block .info_kazari04 {
  bottom: 0;
  right: 0;
  transform: rotate(-90deg);
}

.tasaki__footer .info_block .info_img {
  width: 523px;
}
.tasaki__footer .info_block .info_tit img {
  display: block;
  width: 161px;
  margin-bottom: 30px;
}
.tasaki__footer .info_block .info_tit b {
  font-size: 20px;
  font-weight: bolder;
}
.tasaki__footer .info_block .info_txt {
  font-weight: bold;
  margin-top: 20px;
}



.tasaki__footer-text {
  margin-top: 15px;
  text-align: center;
  font-size: 14px;
  line-height: 1.7142857143;
}
.tasaki__footer-sns {
  margin-top: 70px;
  margin-bottom: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  align-items: center;
  -webkit-column-gap: 24px;
  -moz-column-gap: 24px;
  column-gap: 24px;
}
.tasaki__footer-sns li:nth-child(1) {
  width: 36px;
}
.tasaki__footer-sns li:nth-child(2) {
  width: 32px;
}
.tasaki__footer-sns li:nth-child(3) {
  width: 32px;
}
.tasaki__footer-sns li:nth-child(4) {
  width: 29px;
}
.tasaki__footer-sns li:nth-child(5) {
  width: 36px;
}
.tasaki__note {
  font-size: 14px;
  text-align: center;
  line-height: 1.7;
}
.tasaki__note + .tasaki__note {
  margin-top: 20px;
}
.tasaki:before {
  position: absolute;
  bottom: 0;
  left: 50%;
  display: block;
  width: 50px;
  height: 1px;
  background-color: #000;
  content: "";
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media screen and (max-width: 1300px) {
  .tasaki__footer .info_block {
    max-width: 100%;
    width: 88.5455vw;
    padding: 5.4545vw;
    gap: 0 3.6364vw;
  }
  .tasaki__footer .info_block .info_kazari {
    width: 2.7273vw;
  }
  .tasaki__footer .info_block .info_img {
    width: 47.5455vw;
  }
  .tasaki__footer .info_block .info_tit img {
    width: 14.6364vw;
    margin-bottom: 2.7273vw;
  }
  .tasaki__footer .info_block .info_tit b {
    font-size: 1.8182vw;
  }
  .tasaki__footer .info_block .info_txt {
    font-size: 1.4545vw;
    margin-top: 20px;
  }

  .tasaki__footer-text {
    font-size: 1.0769vw;
  }
  .tasaki__note {
    font-size: 1.0769vw;
  }
}
@media screen and (max-width: 768px) {
  .tasaki__footer {
    padding: 17.3333vw 0 16vw;
  }

  .tasaki__footer .info_block {
    max-width: 100%;
    width: 86.6667vw;
    padding: 6.6667vw 6.6667vw 8vw;
    flex-direction: column;
    gap: 6.6667vw 0;
  }
  .tasaki__footer .info_block .info_kazari {
    width: 5.3333vw;
  }

  .tasaki__footer .info_block .info_img {
    width: 100%;
  }
  .tasaki__footer .info_block .info_tit {
    text-align: center;
  }
  .tasaki__footer .info_block .info_tit img {
    width: 24.8vw;
    margin-bottom: 5.3333vw;
    margin-left: auto;
    margin-right: auto;
  }
  .tasaki__footer .info_block .info_tit b {
    font-size: 5.3333vw;
    line-height: 1.4;
  }
  .tasaki__footer .info_block .info_txt {
    font-size: 3.4667vw;
    line-height: 1.6923;
    margin-top: 4vw;
    text-align: center;
  }
  

  .tasaki__footer-text {
    margin-top: 6.6667vw;
    font-size: 3.2vw;
    line-height: 1.5;
  }
  .tasaki__footer-sns {
    margin-top: 9.8667vw;
    margin-bottom: 9.8667vw;
    -webkit-column-gap: 9.8667vw;
    -moz-column-gap: 9.8667vw;
    column-gap: 9.8667vw;
  }
  .tasaki__footer-sns li:nth-child(1) {
    width: 9.6vw;
  }
  .tasaki__footer-sns li:nth-child(2) {
    width: 8.5333vw;
  }
  .tasaki__footer-sns li:nth-child(3) {
    width: 8.5333vw;
  }
  .tasaki__footer-sns li:nth-child(4) {
    width: 8vw;
  }
  .tasaki__footer-sns li:nth-child(5) {
    width: 9.6vw;
  }
  
  .tasaki__note {
    font-size: 3.2vw;
    line-height: 1.5;
    letter-spacing: -0.5px;
  }
  .tasaki__note + .tasaki__note {
    margin-top: 6.6667vw;
  }
}





#splash {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #F5F5F5;
  overflow: hidden;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

#splash ul {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

#splash li {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  display: flex;
  align-items: center;
  z-index: 1;
}

#splash li.active {
  opacity: 1;
  z-index: 2;
}
#splash li:nth-child(1) {
  justify-content: center;
}
#splash li:nth-child(1) img {
  width: 495px;
}
#splash li:nth-child(2),
#splash li:nth-child(4) {
  justify-content: flex-start;
}
#splash li:nth-child(2) img,
#splash li:nth-child(4) img {
  width: auto;
  height: 100vh;
  object-fit: cover;
}
#splash li:nth-child(3){
  justify-content: flex-end;
}
#splash li:nth-child(3) img {
  width: auto;
  height: 100vh;
  object-fit: cover;
  margin: 0 0 0 auto;
}

#splash.fade-out {
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
}
.skip-btn {
  width: 140px;
  height: 40px;
  border: 1px solid #000;
  background: transparent;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 10;
}
.skip-btn img {
  width: 25px;
}
.skip-btn:hover {
  opacity: 0.7;
  border: 1px solid #333;
}
@media screen and (max-width: 768px) {
  #splash li {
    overflow: hidden;
  }
  #splash li:nth-child(1) img,
  #splash li:nth-child(1) picture {
    display: block;
    width: 71.2vw;
  }
  #splash li:nth-child(2),
  #splash li:nth-child(4) {
    justify-content: center;
  }
  #splash li:nth-child(2) img,
  #splash li:nth-child(2) picture,
  #splash li:nth-child(4) img,
  #splash li:nth-child(4) picture {
    width: auto;
    height: 100vh;
    object-fit: cover;
  }


  #splash li:nth-child(3){
    justify-content: center;
  }
  #splash li:nth-child(3) img,
  #splash li:nth-child(3) picture {
    width: auto;
    height: 100vh;
    object-fit: cover;
    margin: 0 auto;
  }

  .skip-btn {
    width: 37.3333vw;
    height: 10.6667vw;
    bottom: 10.6667vw;
    right: 50%;
    transform: translateX(50%);
  }
  .skip-btn img {
    width: 6.6667vw;
  }
  .skip-btn:hover {
    opacity: 1;
    border: 1px solid #000;
  }
}






.section02,
.section05 .sec05_conts,
.section07 .sec07_conts {
  position: relative;
}

.js-waypoint-img::after {
  display: block;
  position: absolute;
  z-index: 100;
  left: 0;
  top: 0;
  content: '';
  width: 101%;
  height: 110%;
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
  background-color: #F5F5F5;
}

.section02 .js-waypoint-img:after,
.section07 .js-waypoint-img:after {
  -webkit-transform-origin: right center;
  -ms-transform-origin: right center;
  transform-origin: right center;
}
.section05 .js-waypoint-img:after {
  -webkit-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
}
.action.js-waypoint-img::after {
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: -webkit-transform 1s ease;
    -o-transition: transform 1s ease;
    transition: transform 1s ease;
    transition: transform 1s ease,-webkit-transform 1s ease;
}