@charset "UTF-8";
/* ====================================================================================

    THEMA INFO

==================================================================================== */
/*
Theme Name:
Theme URI:
Author:
Author URI:
Description:
Version: 1.0
*/
/* ====================================================================================

    ITEMS

==================================================================================== */
/* ====================================================================================
TO-系
==================================================================================== */
.to-up,
.to-right,
.to-left {
  opacity: 0;
  transition: 1.3s cubic-bezier(0.165, 0.84, 0.44, 1) 0.15s;
  transition-property: transform, opacity;
  will-change: opacity, transform;
}
.to-up.active,
.to-right.active,
.to-left.active {
  opacity: 1;
  transform: translate(0, 0);
}

.to-up {
  transform: translateY(3rem);
}

.to-down {
  transform: translateY(-3rem);
}

.to-right {
  transform: translateX(-3rem);
}

.to-left {
  transform: translateX(3rem);
}

.to-blur {
  opacity: 0;
  filter: blur(10px);
  transition: 1.5s ease;
  transition-property: opacity, filter;
}
.to-blur.active {
  opacity: 1;
  filter: blur(0px);
}

.order.active .order-child {
  opacity: 1;
  transform: translate(0, 0);
}

@media only screen and (min-width: 769px) {
  .h-to-right {
    display: inline-block;
    transition: transform 0.4s ease;
  }
  .h-to-right:hover {
    transform: translateX(1rem);
  }
}

/* ====================================================================================
背景左から右　下からテキスト
==================================================================================== */
.to-back-text {
  display: inline-block;
  position: relative;
  clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
  transition: clip-path 0.6s ease;
  overflow: hidden;
}
.to-back-text .text {
  position: relative;
  z-index: 1;
  transform: translateY(100%);
  transition: transform 0.4s ease 0.6s;
  display: inline-block;
}
.to-back-text .back {
  background: linear-gradient(to right, #E5F7C7, #DBEFE2);
  position: absolute;
  inset: 0;
}
.to-back-text.active {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.to-back-text.active .text {
  transform: translateY(0%);
}

/* ====================================================================================
文字が１つずつ下から上に span.split-textなどインライン対象 親に.oh設定するといい
==================================================================================== */
.split-text {
  overflow: hidden;
  opacity: 0;
}
.split-text.split-ready {
  opacity: 1;
}

.split-text .split-char {
  display: inline-block;
  transform: translateY(100%);
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.split-text.active .split-char {
  transform: translateY(0);
}

/*
$('.split-text').each(function () {
    var $el = $(this);

    // 二重分割防止
    if ($el.data('splitted')) {
        return;
    }

    $el.data('splitted', true);

    var text = $el.text();
    var baseDelay = parseFloat($el.data('splitdelay')) || 0;

    $el.empty().addClass('split-ready');

    $.each([...text], function (i, ch) {
        var $span = $('<span class="split-char" />')
            .text(ch === ' ' ? '\u00A0' : ch)
            .css('transition-delay', (baseDelay + i * 0.05) + 's');

        $el.append($span);
    });
});
*/
/* ====================================================================================
eachTextAnime
==================================================================================== */
.eachTextAnime span {
  opacity: 0;
  transition: 0.8s ease;
}

.eachTextAnime.active span {
  opacity: 1;
}

/*
let element = $(".eachTextAnime");
if (element.length !== 0) {
    element.each(function () {
        let html = '';
        let $this = $(this);
        let delay = $(this).attr('data-delay');
        delay = delay ? Number(delay) : 0;

        function wrapText(text) {
            return text.split("").map(v => "<span>" + v + "</span>").join("");
        }

        $this.contents().each(function () {
            if (this.nodeType === Node.ELEMENT_NODE && this.tagName === "BR") {
                html += this.outerHTML;
            } else if (this.nodeType === Node.ELEMENT_NODE && this.tagName === "STRONG") {
                let inner = wrapText(this.textContent);
                html += '<strong>' + inner + '</strong>';
            } else if (this.nodeType === Node.ELEMENT_NODE && this.tagName === "RUBY") {
                let baseText = "";
                let rtText = "";
                $(this).contents().each(function () {
                    if (this.nodeType === Node.TEXT_NODE) {
                        baseText += wrapText(this.textContent);
                    } else if (this.nodeType === Node.ELEMENT_NODE && this.tagName === "RT") {
                        rtText += this.outerHTML; // ルビ部分はそのまま
                    }
                });
                html += "<ruby>" + baseText + rtText + "</ruby>";
            } else if (this.nodeType === Node.TEXT_NODE) {
                html += wrapText(this.textContent);
            }
        });

        $this.html(html);

        setTimeout(function () {
            $this.find('span').each(function (index) {
                $(this).css({
                    transitionDelay: (index * 0.06 + delay) + "s"
                });
            });
        }, 10);
    });
}
*/
.Title--1 {
  position: relative;
}
.Title--1 .en {
  display: inline-block;
  line-height: 1;
  position: absolute;
  top: 25px  ;
  left: 0;
  translate: 0 -100%;
  white-space: nowrap;
}
@media only screen and (max-width: 1920px) {
  .Title--1 .en {
    top: 1.3020833333vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Title--1 .en {
    top: 3.90625vw  ;
  }
}
.Title--1.tc .en {
  left: 50%;
  translate: -50% -100%;
}
.Title--2 {
  position: relative;
}
.Title--2 .js-grad {
  width: 83px  ;
  height: 4px  ;
  background: linear-gradient(to right, #FFC7D2, #C1F2FF);
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
}
@media only screen and (max-width: 1920px) {
  .Title--2 .js-grad {
    width: 4.3229166667vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Title--2 .js-grad {
    width: 12.96875vw  ;
  }
}
@media only screen and (max-width: 1920px) {
  .Title--2 .js-grad {
    height: 0.2083333333vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Title--2 .js-grad {
    height: 0.625vw  ;
  }
}

.Button--1 {
  color: #000;
}
.Button--1 .arrow {
  width: 27px  ;
  aspect-ratio: 1;
  border-radius: 50%;
  display: inline-block;
  position: relative;
}
@media only screen and (max-width: 1920px) {
  .Button--1 .arrow {
    width: 1.40625vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Button--1 .arrow {
    width: 4.21875vw  ;
  }
}
.Button--1 .arrow:after {
  content: "\e145";
  font-family: "Material Icons";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  font-size: 1.6rem;
}
@media only screen and (min-width: 769px) {
  .Button--1 .arrow {
    transition: transform 0.4s ease;
  }
  .Button--1 .arrow:after {
    transition: transform 0.4s ease;
  }
  .Button--1:hover .arrow {
    transform: translateX(1rem);
  }
  .Button--1:hover .arrow:after {
    content: "\e941";
    transform: rotate(360deg);
  }
}
.Button--2 {
  display: block;
  position: relative;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.Button--2:after {
  content: "";
  width: 27px  ;
  aspect-ratio: 1;
  background: url("../img/icon--slider--next.png") no-repeat center;
  background-size: 100% 100%;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
  position: absolute;
  top: 50%;
  right: 28px  ;
  translate: 0 -50%;
}
@media only screen and (max-width: 1920px) {
  .Button--2:after {
    width: 1.40625vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Button--2:after {
    width: 4.21875vw  ;
  }
}
@media only screen and (max-width: 1920px) {
  .Button--2:after {
    right: 1.4583333333vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Button--2:after {
    right: 4.375vw  ;
  }
}
.Button--2.return:after {
  background: url("../img/icon--slider--prev.png") no-repeat center;
  background-size: 100% 100%;
  left: 28px  ;
}
@media only screen and (max-width: 1920px) {
  .Button--2.return:after {
    left: 1.4583333333vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Button--2.return:after {
    left: 4.375vw  ;
  }
}
@media only screen and (min-width: 769px) {
  .Button--2:after {
    transition: transform 0.4s ease;
  }
  .Button--2:hover:after {
    transform: translateX(1rem);
  }
  .Button--2:hover.return:after {
    transform: translateX(-1rem);
  }
}

/* ====================================================================================

    HEADER

==================================================================================== */
/* ====================================================================================

    NAV

==================================================================================== */
.Navi {
  border-radius: 300px 300px 20px 20px  ;
  position: fixed;
  top: 45%;
  right: calc((100vw - 1920px) / 2 + 237px);
  width: 310px  ;
  translate: 0 -50%;
  z-index: 1;
}
@media only screen and (max-width: 1920px) {
  .Navi {
    border-radius: 15.625vw 15.625vw 1.0416666667vw 1.0416666667vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Navi {
    border-radius: 46.875vw 46.875vw 3.125vw 3.125vw  ;
  }
}
@media only screen and (max-width: 1920px) {
  .Navi {
    width: 16.1458333333vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Navi {
    width: 48.4375vw  ;
  }
}
.Navi--primary li {
  width: 67%;
  position: relative;
}
.Navi--primary li a {
  display: inline-block;
  color: #000;
  line-height: 1.2;
}
.Navi--primary li a .en {
  position: absolute;
  top: 50%;
  right: 0;
  translate: 100% -50%;
}
@media only screen and (min-width: 769px) {
  .Navi--primary li a {
    transition: color 0.4s ease;
  }
  .Navi--primary li a:hover {
    color: #DB004F;
  }
}
.Navi--primary li.current a {
  color: #DB004F;
}
@media only screen and (max-width: 1920px) {
  .Navi {
    right: 12.34375%;
  }
}
@media only screen and (max-width: 768px) {
  .Navi {
    width: 100%;
    inset: 0;
    translate: unset;
    visibility: hidden;
    opacity: 0;
    z-index: 999;
    border-radius: 0;
    overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .Navi::-webkit-scrollbar {
    display: none;
  }
  .Navi .items {
    transform: translateY(10px);
    opacity: 0;
    transition: 0.4s ease 0.2s;
    transition-property: transform, opacity;
  }
  .Navi.open .items {
    transform: translateY(0);
    opacity: 1;
  }
}

#nav-torigger {
  display: none;
  aspect-ratio: 1/1;
  position: fixed;
  right: 0;
  top: 0;
  width: 17.1875vw;
  z-index: 1000;
}
#nav-torigger .ham {
  aspect-ratio: 40/20;
  width: 36.3636363636%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#nav-torigger .ham span {
  display: block;
  width: 100%;
  height: 1px;
  background: #000;
  position: absolute;
  left: 0;
  transition: 0.5s ease;
  transition: width 0.2s 0.2s ease, top 0.2s 0.2s ease, transform 0.2s ease, opacity 0s 0.2s ease;
}
#nav-torigger .ham span:nth-of-type(1) {
  top: 0;
}
#nav-torigger .ham span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}
#nav-torigger .ham span:nth-of-type(3) {
  top: 100%;
  translate: 0 -100%;
}
#nav-torigger.active .ham span {
  transition: width 0.2s ease, top 0.2s ease, transform 0.2s 0.2s ease, opacity 0s 0.2s ease;
}
#nav-torigger.active .ham span:nth-of-type(1) {
  top: 50%;
  transform: rotate(45deg);
  translate: 0 -50%;
}
#nav-torigger.active .ham span:nth-of-type(2) {
  opacity: 0;
}
#nav-torigger.active .ham span:nth-of-type(3) {
  width: 100%;
  top: 50%;
  translate: 0 -50%;
  transform: rotate(-45deg);
}
@media only screen and (max-width: 768px) {
  #nav-torigger {
    display: block;
  }
}

/* ====================================================================================

    SIDE

==================================================================================== */
.Side--instagram {
  width: 81px  ;
  position: fixed;
  bottom: 33px  ;
  right: calc((100vw - 1920px) / 2 + 679px);
  z-index: 100;
}
@media only screen and (max-width: 1920px) {
  .Side--instagram {
    width: 4.21875vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Side--instagram {
    width: 12.65625vw  ;
  }
}
@media only screen and (max-width: 1920px) {
  .Side--instagram {
    bottom: 1.71875vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Side--instagram {
    bottom: 5.15625vw  ;
  }
}
@media only screen and (min-width: 769px) {
  .Side--instagram {
    transition: opacity 0.5s ease;
  }
  .Side--instagram:hover {
    opacity: 0.6;
  }
}
@media only screen and (max-width: 1920px) {
  .Side--instagram {
    right: 35.3645833333%;
  }
}
@media only screen and (max-width: 768px) {
  .Side--instagram {
    right: 6.25vw;
  }
}

/* ====================================================================================

    FOOTER

==================================================================================== */
.Footer {
  background: url("../img/footer--back.png") no-repeat center;
  background-size: cover;
}
.Footer .Navi--primary li {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #fff;
  width: 100%;
}
.Footer .Navi--primary li a {
  padding: 20px 25px  ;
  display: block;
  position: relative;
  width: 100%;
}
@media only screen and (max-width: 1920px) {
  .Footer .Navi--primary li a {
    padding: 1.0416666667vw 1.3020833333vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Footer .Navi--primary li a {
    padding: 3.125vw 3.90625vw  ;
  }
}
.Footer .Navi--primary li a .en {
  translate: 0 -50%;
  right: auto;
  left: 160px  ;
  white-space: nowrap;
}
@media only screen and (max-width: 1920px) {
  .Footer .Navi--primary li a .en {
    left: 8.3333333333vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Footer .Navi--primary li a .en {
    left: 25vw  ;
  }
}

/* ====================================================================================

    ITEM

==================================================================================== */
.wpcf7-list-item-label {
  cursor: pointer;
}

.wpcf7sc-confirming .wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label, .wpcf7sc-confirming .wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label {
  padding-left: 0;
}
.wpcf7sc-confirming .wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label:before, .wpcf7sc-confirming .wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label:after, .wpcf7sc-confirming .wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label:before, .wpcf7sc-confirming .wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label:after {
  display: none;
}

.wpcf7-radio,
.wpcf7-acceptance {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 40px  ;
}
@media only screen and (max-width: 1920px) {
  .wpcf7-radio,
  .wpcf7-acceptance {
    gap: 0.78125vw 2.0833333333vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .wpcf7-radio,
  .wpcf7-acceptance {
    gap: 2.34375vw 6.25vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .wpcf7-radio,
  .wpcf7-acceptance {
    display: block;
  }
}
.wpcf7-radio .wpcf7-list-item,
.wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
  padding: 5px 0px  ;
}
@media only screen and (max-width: 1920px) {
  .wpcf7-radio .wpcf7-list-item,
  .wpcf7-acceptance .wpcf7-list-item {
    padding: 0.2604166667vw 0vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .wpcf7-radio .wpcf7-list-item,
  .wpcf7-acceptance .wpcf7-list-item {
    padding: 0.78125vw 0vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .wpcf7-radio .wpcf7-list-item + .wpcf7-list-item,
  .wpcf7-acceptance .wpcf7-list-item + .wpcf7-list-item {
    margin-left: 0;
    margin-top: 2.34375vw;
  }
}
.wpcf7-radio .wpcf7-list-item label,
.wpcf7-acceptance .wpcf7-list-item label {
  display: block;
  cursor: pointer;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}
.wpcf7-radio .wpcf7-list-item label input[type=radio],
.wpcf7-radio .wpcf7-list-item label input[type=checkbox],
.wpcf7-acceptance .wpcf7-list-item label input[type=radio],
.wpcf7-acceptance .wpcf7-list-item label input[type=checkbox] {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}
.wpcf7-radio .wpcf7-list-item label input[type=radio]:checked + .wpcf7-list-item-label:after,
.wpcf7-radio .wpcf7-list-item label input[type=checkbox]:checked + .wpcf7-list-item-label:after,
.wpcf7-acceptance .wpcf7-list-item label input[type=radio]:checked + .wpcf7-list-item-label:after,
.wpcf7-acceptance .wpcf7-list-item label input[type=checkbox]:checked + .wpcf7-list-item-label:after {
  opacity: 1;
}
.wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label,
.wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label {
  display: block;
  padding-left: 30px  ;
  position: relative;
}
@media only screen and (max-width: 1920px) {
  .wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label,
  .wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label {
    padding-left: 1.5625vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label,
  .wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label {
    padding-left: 4.6875vw  ;
  }
}
.wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label:before, .wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label:after,
.wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label:before,
.wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label:after {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  aspect-ratio: 1;
  border-radius: 5px;
}
.wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label:before,
.wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label:before {
  border: 1px solid #fff;
  background: #fff;
  left: 0;
  width: 20px  ;
  transition: border 0.4s ease;
}
@media only screen and (max-width: 1920px) {
  .wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label:before,
  .wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label:before {
    width: 1.0416666667vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label:before,
  .wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label:before {
    width: 3.125vw  ;
  }
}
.wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label:after,
.wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label:after {
  left: 5px  ;
  translate: 0 -50%;
  width: 10px  ;
  background: #DB004F;
  border: 1px solid #DB004F;
  opacity: 0;
  transition: opacity 0.4s ease;
}
@media only screen and (max-width: 1920px) {
  .wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label:after,
  .wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label:after {
    left: 0.2604166667vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label:after,
  .wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label:after {
    left: 0.78125vw  ;
  }
}
@media only screen and (max-width: 1920px) {
  .wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label:after,
  .wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label:after {
    width: 0.5208333333vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label:after,
  .wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label:after {
    width: 1.5625vw  ;
  }
}

.wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label:before, .wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label:after {
  border-radius: 50%;
}
@media only screen and (max-width: 768px) {
  .wpcf7-radio {
    margin-top: 15px  ;
    grid-template-columns: repeat(1, 1fr);
  }
}
@media only screen and (max-width: 768px) and (max-width: 1920px) {
  .wpcf7-radio {
    margin-top: 0.78125vw  ;
  }
}
@media only screen and (max-width: 768px) and (max-width: 768px) {
  .wpcf7-radio {
    margin-top: 2.34375vw  ;
  }
}

@media only screen and (max-width: 768px) {
  .wpcf7-form-control-wrap,
  .wpcf7-acceptance,
  .wpcf7-list-item {
    display: block;
  }
}

.wpcf7-not-valid-tip {
  margin-top: 5px  ;
  font-size: 1.2rem;
}
@media only screen and (max-width: 1920px) {
  .wpcf7-not-valid-tip {
    margin-top: 0.2604166667vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .wpcf7-not-valid-tip {
    margin-top: 0.78125vw  ;
  }
}

.wpcf7-spinner {
  margin: 0;
  position: absolute;
  bottom: -20px  ;
  left: 50%;
  translate: -50% 100%;
}
@media only screen and (max-width: 1920px) {
  .wpcf7-spinner {
    bottom: -1.0416666667vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .wpcf7-spinner {
    bottom: -3.125vw  ;
  }
}

.recaptcha_policy {
  text-align: center;
  font-size: 1.4rem;
}
.recaptcha_policy a {
  color: #000;
  text-decoration: underline;
}

.grecaptcha-badge {
  visibility: hidden;
}

.r-500-500-0-0 {
  border-radius: 500px 500px 0px 0px  ;
}
@media only screen and (max-width: 1920px) {
  .r-500-500-0-0 {
    border-radius: 26.0416666667vw 26.0416666667vw 0vw 0vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .r-500-500-0-0 {
    border-radius: 78.125vw 78.125vw 0vw 0vw  ;
  }
}

hr {
  margin: 0;
  padding: 0;
  border: none;
  width: 100%;
  height: 1px;
}

/* ====================================================================================

    MAIN

==================================================================================== */
.Main {
  margin-left: auto;
  margin-right: auto;
  width: 640px  ;
  position: relative;
  z-index: 1;
  min-height: 100vh;
  background: #fff;
  overflow: hidden;
}
@media only screen and (max-width: 1920px) {
  .Main {
    width: 33.3333333333vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Main {
    width: 100vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Main {
    width: 100%;
  }
}

#Firstview {
  position: fixed;
  inset: 0;
  background: url("../img/mv--back.png") no-repeat center;
  background-size: cover;
}

.Mainvisual--text--1 {
  position: absolute;
  top: 30px  ;
  left: 50px  ;
}
@media only screen and (max-width: 1920px) {
  .Mainvisual--text--1 {
    top: 1.5625vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Mainvisual--text--1 {
    top: 4.6875vw  ;
  }
}
@media only screen and (max-width: 1920px) {
  .Mainvisual--text--1 {
    left: 2.6041666667vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Mainvisual--text--1 {
    left: 7.8125vw  ;
  }
}
.Mainvisual--text--2, .Mainvisual--text--3 {
  transform: translateY(100%);
  transition: 1.3s cubic-bezier(0.165, 0.84, 0.44, 1) 2s;
  transition-property: transform;
  will-change: transform;
}
.Mainvisual--text--2 {
  width: calc((100vw - 640px) / 2 * 0.975);
  position: absolute;
  left: 0.8333333333vw;
  bottom: -1.71875vw;
}
@media only screen and (max-width: 1920px) {
  .Mainvisual--text--2 {
    width: 32.6041666667%;
  }
}
.Mainvisual--text--3 {
  width: calc((100vw - 640px) / 2);
  position: absolute;
  right: 0;
  bottom: -1.5625vw;
}
@media only screen and (max-width: 1920px) {
  .Mainvisual--text--3 {
    width: 33.1770833333%;
  }
}
.Mainvisual--logo {
  width: 74px  ;
  position: absolute;
  top: 34px  ;
  left: calc((100vw - 1920px) / 2 + 667px);
}
@media only screen and (max-width: 1920px) {
  .Mainvisual--logo {
    width: 3.8541666667vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Mainvisual--logo {
    width: 11.5625vw  ;
  }
}
@media only screen and (max-width: 1920px) {
  .Mainvisual--logo {
    top: 1.7708333333vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Mainvisual--logo {
    top: 5.3125vw  ;
  }
}
@media only screen and (max-width: 1920px) {
  .Mainvisual--logo {
    left: 34.7395833333%;
  }
}
@media only screen and (max-width: 768px) {
  .Mainvisual--logo {
    left: 4.21875vw;
  }
}
.Mainvisual.active .Mainvisual--text--2, .Mainvisual.active .Mainvisual--text--3 {
  transform: translate(0, 0);
}

/* ====================================================================================

    TOP

==================================================================================== */
.Top--main {
  margin-top: 45px  ;
  border-radius: 500px 500px 0px 0px  ;
}
@media only screen and (max-width: 1920px) {
  .Top--main {
    margin-top: 2.34375vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Top--main {
    margin-top: 7.03125vw  ;
  }
}
@media only screen and (max-width: 1920px) {
  .Top--main {
    border-radius: 26.0416666667vw 26.0416666667vw 0vw 0vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Top--main {
    border-radius: 78.125vw 78.125vw 0vw 0vw  ;
  }
}
.Top--mainvisual--content {
  width: 100%;
  height: calc(100vh - 45px);
  object-fit: cover;
}
@media only screen and (max-width: 1920px) {
  .Top--mainvisual--content {
    height: calc(100vh - 45 / 1920 * 100vw);
  }
}
@media only screen and (max-width: 768px) {
  .Top--mainvisual--content {
    height: calc(100vh - 45 / 640 * 100vw);
  }
}
.Top--mainvisual--video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.Top--facility--slider .slick-arrow {
  position: absolute;
  top: 50%;
  z-index: 1;
  width: 47px  ;
}
@media only screen and (max-width: 1920px) {
  .Top--facility--slider .slick-arrow {
    width: 2.4479166667vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Top--facility--slider .slick-arrow {
    width: 7.34375vw  ;
  }
}
.Top--facility--slider .slick-prev {
  left: 0;
  translate: -50% -50%;
}
.Top--facility--slider .slick-prev img {
  filter: drop-shadow(-3px 3px 6px rgba(0, 0, 0, 0.16));
}
.Top--facility--slider .slick-next {
  right: 0;
  translate: 50% -50%;
}
.Top--facility--slider .slick-next img {
  filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.16));
}
.Top--facility--slider .slick-slide figure img {
  border-radius: 20px  ;
}
@media only screen and (max-width: 1920px) {
  .Top--facility--slider .slick-slide figure img {
    border-radius: 1.0416666667vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Top--facility--slider .slick-slide figure img {
    border-radius: 3.125vw  ;
  }
}
.Top--works--title {
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% -50%;
  white-space: nowrap;
  line-height: 1;
}
.Top--works--content {
  margin-left: -10.8695652174%;
  width: 121.7391304348%;
  max-width: unset;
}
.Top--works--post {
  border-radius: 200px 200px 0px 0px  ;
}
@media only screen and (max-width: 1920px) {
  .Top--works--post {
    border-radius: 10.4166666667vw 10.4166666667vw 0vw 0vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Top--works--post {
    border-radius: 31.25vw 31.25vw 0vw 0vw  ;
  }
}
.Top--works--post--thumb {
  overflow: hidden;
}
.Top--works--post--thumb a {
  display: block;
  position: relative;
}
.Top--works--post--thumb a img {
  aspect-ratio: 1;
  object-fit: cover;
}
.Top--works--post--thumb a:after {
  content: "";
  width: 27px  ;
  aspect-ratio: 1;
  background: url("../img/icon--slider--next.png") no-repeat center;
  background-size: 100% 100%;
  position: absolute;
  top: 20px  ;
  right: 20px  ;
  rotate: -45deg;
}
@media only screen and (max-width: 1920px) {
  .Top--works--post--thumb a:after {
    width: 1.40625vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Top--works--post--thumb a:after {
    width: 4.21875vw  ;
  }
}
@media only screen and (max-width: 1920px) {
  .Top--works--post--thumb a:after {
    top: 1.0416666667vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Top--works--post--thumb a:after {
    top: 3.125vw  ;
  }
}
@media only screen and (max-width: 1920px) {
  .Top--works--post--thumb a:after {
    right: 1.0416666667vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Top--works--post--thumb a:after {
    right: 3.125vw  ;
  }
}
@media only screen and (min-width: 769px) {
  .Top--works--post--thumb a img {
    transition: transform 0.4s ease;
  }
  .Top--works--post--thumb a:after {
    transition: transform 0.4s ease;
  }
  .Top--works--post--thumb a:hover img {
    transform: scale(1.2);
  }
  .Top--works--post--thumb a:hover:after {
    transform: translateX(0.5rem);
  }
}

/* ====================================================================================

    FACILITY

==================================================================================== */
.Facility--data dt {
  padding-bottom: 5px  ;
  position: relative;
}
@media only screen and (max-width: 1920px) {
  .Facility--data dt {
    padding-bottom: 0.2604166667vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Facility--data dt {
    padding-bottom: 0.78125vw  ;
  }
}
.Facility--data dt:after {
  content: "";
  width: 100%;
  height: 4px  ;
  background: linear-gradient(to right, #FFC7D2, #C1F2FF);
  position: absolute;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 1920px) {
  .Facility--data dt:after {
    height: 0.2083333333vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Facility--data dt:after {
    height: 0.625vw  ;
  }
}
.Facility--store--number {
  position: absolute;
  top: 50%;
  left: 20px  ;
  width: 138px  ;
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
  translate: 0 -50%;
  z-index: 1;
}
@media only screen and (max-width: 1920px) {
  .Facility--store--number {
    left: 1.0416666667vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Facility--store--number {
    left: 3.125vw  ;
  }
}
@media only screen and (max-width: 1920px) {
  .Facility--store--number {
    width: 7.1875vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Facility--store--number {
    width: 21.5625vw  ;
  }
}
.Facility--store--image {
  position: relative;
}
.Facility--store--image figcaption {
  display: inline-block;
  width: 100px  ;
  position: absolute;
  bottom: 12px  ;
  right: 12px  ;
}
@media only screen and (max-width: 1920px) {
  .Facility--store--image figcaption {
    width: 5.2083333333vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Facility--store--image figcaption {
    width: 15.625vw  ;
  }
}
@media only screen and (max-width: 1920px) {
  .Facility--store--image figcaption {
    bottom: 0.625vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Facility--store--image figcaption {
    bottom: 1.875vw  ;
  }
}
@media only screen and (max-width: 1920px) {
  .Facility--store--image figcaption {
    right: 0.625vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Facility--store--image figcaption {
    right: 1.875vw  ;
  }
}

/* ====================================================================================

    ENV

==================================================================================== */
.Env--text--2--1 {
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% -50%;
  white-space: nowrap;
}
.Env--text--2--2 {
  position: absolute !important;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  white-space: nowrap;
}
.Env--course--navi {
  align-items: end;
}
.Env--course--navi li a {
  display: block;
  text-align: center;
  color: #000;
  line-height: 1.4;
  border-radius: 10px 10px 0px 0px  ;
}
@media only screen and (max-width: 1920px) {
  .Env--course--navi li a {
    border-radius: 0.5208333333vw 0.5208333333vw 0vw 0vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Env--course--navi li a {
    border-radius: 1.5625vw 1.5625vw 0vw 0vw  ;
  }
}
.Env--course--navi li a span {
  display: block;
}
.Env--course--navi--arrow img {
  width: 27px  ;
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
}
@media only screen and (max-width: 1920px) {
  .Env--course--navi--arrow img {
    width: 1.40625vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Env--course--navi--arrow img {
    width: 4.21875vw  ;
  }
}
.Env--course--slider .slick-arrow {
  position: absolute;
  top: 50%;
  z-index: 1;
  width: 47px  ;
}
@media only screen and (max-width: 1920px) {
  .Env--course--slider .slick-arrow {
    width: 2.4479166667vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Env--course--slider .slick-arrow {
    width: 7.34375vw  ;
  }
}
.Env--course--slider .slick-prev {
  left: 0;
  translate: -50% -50%;
}
.Env--course--slider .slick-prev img {
  filter: drop-shadow(-3px 3px 6px rgba(0, 0, 0, 0.16));
}
.Env--course--slider .slick-next {
  right: 0;
  translate: 50% -50%;
}
.Env--course--slider .slick-next img {
  filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.16));
}
.Env--course--list {
  counter-reset: num;
}
.Env--course--list--num {
  padding: 5px 20px  ;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}
@media only screen and (max-width: 1920px) {
  .Env--course--list--num {
    padding: 0.2604166667vw 1.0416666667vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Env--course--list--num {
    padding: 0.78125vw 3.125vw  ;
  }
}
.Env--course--list li {
  counter-increment: num;
}
.Env--course--list li dl dd .material-icons-outlined {
  position: absolute;
  top: 50%;
  left: 30px  ;
  translate: 0 -50%;
  font-size: 1.6rem;
}
@media only screen and (max-width: 1920px) {
  .Env--course--list li dl dd .material-icons-outlined {
    left: 1.5625vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Env--course--list li dl dd .material-icons-outlined {
    left: 4.6875vw  ;
  }
}
.Env--course--list li:last-child dl dd {
  padding-bottom: 0;
}
.Env--course--list li:last-child dl dd .material-icons-outlined {
  display: none;
}
.Env--company--title {
  position: absolute;
  top: 25px  ;
  left: 50%;
  translate: -50% -100%;
  white-space: nowrap;
}
@media only screen and (max-width: 1920px) {
  .Env--company--title {
    top: 1.3020833333vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Env--company--title {
    top: 3.90625vw  ;
  }
}
.Env--column--slider .slick-list {
  overflow: visible;
}
.Env--column--slider .slick-track {
  display: flex;
  gap: 0px 15px  ;
}
@media only screen and (max-width: 1920px) {
  .Env--column--slider .slick-track {
    gap: 0vw 0.78125vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Env--column--slider .slick-track {
    gap: 0vw 2.34375vw  ;
  }
}
.Env--column--slider .slick-arrow {
  position: absolute;
  top: 50%;
  z-index: 1;
  width: 47px  ;
  transition: opacity 0.4s ease;
}
@media only screen and (max-width: 1920px) {
  .Env--column--slider .slick-arrow {
    width: 2.4479166667vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Env--column--slider .slick-arrow {
    width: 7.34375vw  ;
  }
}
.Env--column--slider .slick-arrow.slick-disabled {
  opacity: 0;
}
.Env--column--slider .slick-prev {
  left: -80px  ;
  translate: 0 -50%;
}
@media only screen and (max-width: 1920px) {
  .Env--column--slider .slick-prev {
    left: -4.1666666667vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Env--column--slider .slick-prev {
    left: -12.5vw  ;
  }
}
.Env--column--slider .slick-prev img {
  filter: drop-shadow(-3px 3px 6px rgba(0, 0, 0, 0.16));
}
.Env--column--slider .slick-next {
  right: -80px  ;
  translate: 0 -50%;
}
@media only screen and (max-width: 1920px) {
  .Env--column--slider .slick-next {
    right: -4.1666666667vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Env--column--slider .slick-next {
    right: -12.5vw  ;
  }
}
.Env--column--slider .slick-next img {
  filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.16));
}
.Env--column--post a {
  display: block;
}
.Env--column--post a figure {
  border-radius: 5px  ;
  overflow: hidden;
}
@media only screen and (max-width: 1920px) {
  .Env--column--post a figure {
    border-radius: 0.2604166667vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Env--column--post a figure {
    border-radius: 0.78125vw  ;
  }
}
.Env--column--post a figure img {
  aspect-ratio: 276/156;
  object-fit: cover;
}
@media only screen and (min-width: 769px) {
  .Env--column--post a figure img {
    transition: transform 0.4s ease;
  }
  .Env--column--post a:hover figure img {
    transform: scale(1.2);
  }
}

/* ====================================================================================

    COMPANY

==================================================================================== */
.Company--table {
  width: 100%;
}
.Company--table tbody tr th,
.Company--table tbody tr td {
  padding: 8px 0px  ;
  line-height: 1.6;
  font-weight: 500;
}
@media only screen and (max-width: 1920px) {
  .Company--table tbody tr th,
  .Company--table tbody tr td {
    padding: 0.4166666667vw 0vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Company--table tbody tr th,
  .Company--table tbody tr td {
    padding: 1.25vw 0vw  ;
  }
}
.Company--table tbody tr th {
  width: 140px  ;
  vertical-align: top;
}
@media only screen and (max-width: 1920px) {
  .Company--table tbody tr th {
    width: 7.2916666667vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Company--table tbody tr th {
    width: 21.875vw  ;
  }
}
.Company--map iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 640/333;
}
.Company--slider .slick-track {
  display: flex;
  gap: 0px 10px  ;
}
@media only screen and (max-width: 1920px) {
  .Company--slider .slick-track {
    gap: 0vw 0.5208333333vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Company--slider .slick-track {
    gap: 0vw 1.5625vw  ;
  }
}
.Company--slider figure img {
  aspect-ratio: 400/240;
  object-fit: cover;
  border-radius: 20px  ;
}
@media only screen and (max-width: 1920px) {
  .Company--slider figure img {
    border-radius: 1.0416666667vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Company--slider figure img {
    border-radius: 3.125vw  ;
  }
}

/* ====================================================================================

    CONTACT

==================================================================================== */
.Contact--form {
  line-height: 1.4;
}
.Contact--form dt {
  font-weight: 500;
}
.Contact--form dt em {
  margin-left: 10px  ;
  display: inline-block;
  color: red;
  font-weight: 500;
}
@media only screen and (max-width: 1920px) {
  .Contact--form dt em {
    margin-left: 0.5208333333vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Contact--form dt em {
    margin-left: 1.5625vw  ;
  }
}
.Contact--item {
  padding-left: 20px  ;
  padding-right: 20px  ;
  background: #fff;
  border-radius: 5px;
  width: 100%;
  border: none;
}
@media only screen and (max-width: 1920px) {
  .Contact--item {
    padding-left: 1.0416666667vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Contact--item {
    padding-left: 3.125vw  ;
  }
}
@media only screen and (max-width: 1920px) {
  .Contact--item {
    padding-right: 1.0416666667vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Contact--item {
    padding-right: 3.125vw  ;
  }
}
.Contact--input {
  height: 40px  ;
}
@media only screen and (max-width: 1920px) {
  .Contact--input {
    height: 2.0833333333vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Contact--input {
    height: 6.25vw  ;
  }
}
.Contact--text {
  padding-top: 15px  ;
  padding-bottom: 15px  ;
  height: 150px  ;
  resize: vertical;
}
@media only screen and (max-width: 1920px) {
  .Contact--text {
    padding-top: 0.78125vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Contact--text {
    padding-top: 2.34375vw  ;
  }
}
@media only screen and (max-width: 1920px) {
  .Contact--text {
    padding-bottom: 0.78125vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Contact--text {
    padding-bottom: 2.34375vw  ;
  }
}
@media only screen and (max-width: 1920px) {
  .Contact--text {
    height: 7.8125vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Contact--text {
    height: 23.4375vw  ;
  }
}
.Contact--submit {
  padding: 20px 60px  ;
  border-radius: 50px  ;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 500;
  background: linear-gradient(to right, #FFA943, #FFD1DA);
}
@media only screen and (max-width: 1920px) {
  .Contact--submit {
    padding: 1.0416666667vw 3.125vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Contact--submit {
    padding: 3.125vw 9.375vw  ;
  }
}
@media only screen and (max-width: 1920px) {
  .Contact--submit {
    border-radius: 2.6041666667vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Contact--submit {
    border-radius: 7.8125vw  ;
  }
}
@media only screen and (min-width: 769px) {
  .Contact--submit {
    transition: opacity 0.5s ease;
  }
  .Contact--submit:hover {
    opacity: 0.6;
  }
}
.Contact--back {
  padding: 20px 60px  ;
  border-radius: 50px  ;
  background: #808080;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 500;
}
@media only screen and (max-width: 1920px) {
  .Contact--back {
    padding: 1.0416666667vw 3.125vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Contact--back {
    padding: 3.125vw 9.375vw  ;
  }
}
@media only screen and (max-width: 1920px) {
  .Contact--back {
    border-radius: 2.6041666667vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Contact--back {
    border-radius: 7.8125vw  ;
  }
}
@media only screen and (min-width: 769px) {
  .Contact--back {
    transition: opacity 0.5s ease;
  }
  .Contact--back:hover {
    opacity: 0.6;
  }
}

::placeholder {
  color: #D1D1D1;
}

/* 旧Edge対応 */
::-ms-input-placeholder {
  color: #D1D1D1;
}

/* IE対応 */
:-ms-input-placeholder {
  color: #D1D1D1;
}

/* ====================================================================================

    INTERVIEW

==================================================================================== */
.Interview--post {
  position: relative;
  min-height: 256px  ;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
@media only screen and (max-width: 1920px) {
  .Interview--post {
    min-height: 13.3333333333vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Interview--post {
    min-height: 40vw  ;
  }
}
.Interview--post--thumb {
  position: absolute;
  top: -23px  ;
  right: 30px  ;
  border-radius: 500px 500px 0px 0px  ;
  overflow: hidden;
}
@media only screen and (max-width: 1920px) {
  .Interview--post--thumb {
    top: -1.1979166667vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Interview--post--thumb {
    top: -3.59375vw  ;
  }
}
@media only screen and (max-width: 1920px) {
  .Interview--post--thumb {
    right: 1.5625vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Interview--post--thumb {
    right: 4.6875vw  ;
  }
}
@media only screen and (max-width: 1920px) {
  .Interview--post--thumb {
    border-radius: 26.0416666667vw 26.0416666667vw 0vw 0vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Interview--post--thumb {
    border-radius: 78.125vw 78.125vw 0vw 0vw  ;
  }
}
.Interview--post--thumb a {
  display: block;
  position: relative;
}
.Interview--post--thumb a img {
  width: 173px  ;
  aspect-ratio: 173/247;
  object-fit: cover;
}
@media only screen and (max-width: 1920px) {
  .Interview--post--thumb a img {
    width: 9.0104166667vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Interview--post--thumb a img {
    width: 27.03125vw  ;
  }
}
.Interview--post--thumb a:after {
  content: "";
  width: 27px  ;
  aspect-ratio: 1;
  background: url("../img/icon--slider--next.png") no-repeat center;
  background-size: 100% 100%;
  position: absolute;
  bottom: 10px  ;
  right: 10px  ;
  rotate: -45deg;
}
@media only screen and (max-width: 1920px) {
  .Interview--post--thumb a:after {
    width: 1.40625vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Interview--post--thumb a:after {
    width: 4.21875vw  ;
  }
}
@media only screen and (max-width: 1920px) {
  .Interview--post--thumb a:after {
    bottom: 0.5208333333vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Interview--post--thumb a:after {
    bottom: 1.5625vw  ;
  }
}
@media only screen and (max-width: 1920px) {
  .Interview--post--thumb a:after {
    right: 0.5208333333vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Interview--post--thumb a:after {
    right: 1.5625vw  ;
  }
}
@media only screen and (min-width: 769px) {
  .Interview--post--thumb a img {
    transition: transform 0.4s ease;
  }
  .Interview--post--thumb a:after {
    transition: transform 0.4s ease;
  }
  .Interview--post--thumb a:hover img {
    transform: scale(1.2);
  }
  .Interview--post--thumb a:hover:after {
    transform: translateX(0.5rem);
  }
}
.Interview--single--history dt,
.Interview--single--history dd {
  position: relative;
}
.Interview--single--history dt:before,
.Interview--single--history dd:before {
  content: "";
  position: absolute;
  background: #88D9EF;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
}
.Interview--single--history dt:after {
  content: "";
  width: 10px  ;
  aspect-ratio: 1;
  background: #88D9EF;
  position: absolute;
  top: 50%;
  left: 0.5px;
  translate: -50% -50%;
  border-radius: 50%;
}
@media only screen and (max-width: 1920px) {
  .Interview--single--history dt:after {
    width: 0.5208333333vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Interview--single--history dt:after {
    width: 1.5625vw  ;
  }
}
.Interview--single--history:first-child dt:before {
  top: 50%;
  height: 50%;
}
.Interview--single--history:last-child dt:before {
  height: 50%;
}
.Interview--single--history:last-child dd:before {
  content: none;
}

/* ====================================================================================

    WORKS

==================================================================================== */
.Works--navi--icon img {
  width: 23px  ;
}
@media only screen and (max-width: 1920px) {
  .Works--navi--icon img {
    width: 1.1979166667vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Works--navi--icon img {
    width: 3.59375vw  ;
  }
}
.Works--navi--arrow img {
  width: 27px  ;
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
}
@media only screen and (max-width: 1920px) {
  .Works--navi--arrow img {
    width: 1.40625vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Works--navi--arrow img {
    width: 4.21875vw  ;
  }
}
@media only screen and (min-width: 769px) {
  .Works--navi li a .Works--navi--arrow img {
    transition: transform 0.4s ease;
  }
  .Works--navi li a:hover .Works--navi--arrow img {
    transform: translateY(0.5rem);
  }
}
.Works--post--num {
  counter-reset: num;
}
.Works--post--num li {
  counter-increment: num;
}
.Works--post--num li:before {
  content: counter(num, decimal-leading-zero);
  position: absolute;
  top: 27px  ;
  left: 33px  ;
  font-family: "Outfit", "Zen Kaku Gothic New", "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}
@media only screen and (max-width: 1920px) {
  .Works--post--num li:before {
    top: 1.40625vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Works--post--num li:before {
    top: 4.21875vw  ;
  }
}
@media only screen and (max-width: 1920px) {
  .Works--post--num li:before {
    left: 1.71875vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Works--post--num li:before {
    left: 5.15625vw  ;
  }
}
.Works--post--slider .slick-track {
  display: flex;
  gap: 0px 15px  ;
}
@media only screen and (max-width: 1920px) {
  .Works--post--slider .slick-track {
    gap: 0vw 0.78125vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Works--post--slider .slick-track {
    gap: 0vw 2.34375vw  ;
  }
}
.Works--post--slider .slick-slide:nth-child(even) {
  padding-top: 35px  ;
}
@media only screen and (max-width: 1920px) {
  .Works--post--slider .slick-slide:nth-child(even) {
    padding-top: 1.8229166667vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Works--post--slider .slick-slide:nth-child(even) {
    padding-top: 5.46875vw  ;
  }
}
.Works--post--slider figure {
  overflow: hidden;
  border-radius: 200px 200px 0px 0px  ;
}
@media only screen and (max-width: 1920px) {
  .Works--post--slider figure {
    border-radius: 10.4166666667vw 10.4166666667vw 0vw 0vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Works--post--slider figure {
    border-radius: 31.25vw 31.25vw 0vw 0vw  ;
  }
}
.Works--post--slider figure img {
  aspect-ratio: 150/212;
  object-fit: cover;
}

/* ====================================================================================

    NEWS

==================================================================================== */
.News--post {
  border-top: 1px solid #FFA943;
}
.News--post:last-child {
  border-bottom: 1px solid #FFA943;
}
.News--post--category {
  padding: 5px 25px  ;
  border-radius: 17px  ;
  display: inline-block;
  color: #000;
  font-size: 1.2rem;
}
@media only screen and (max-width: 1920px) {
  .News--post--category {
    padding: 0.2604166667vw 1.3020833333vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .News--post--category {
    padding: 0.78125vw 3.90625vw  ;
  }
}
@media only screen and (max-width: 1920px) {
  .News--post--category {
    border-radius: 0.8854166667vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .News--post--category {
    border-radius: 2.65625vw  ;
  }
}
.News--post--thumb {
  border-radius: 10px  ;
  overflow: hidden;
}
@media only screen and (max-width: 1920px) {
  .News--post--thumb {
    border-radius: 0.5208333333vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .News--post--thumb {
    border-radius: 1.5625vw  ;
  }
}
.News--post--thumb a {
  display: block;
  position: relative;
}
.News--post--thumb a img {
  width: 100%;
  aspect-ratio: 544/279;
  object-fit: cover;
}
.News--post--thumb a:after {
  content: "";
  width: 27px  ;
  aspect-ratio: 1;
  background: url("../img/icon--slider--next.png") no-repeat center;
  background-size: 100% 100%;
  position: absolute;
  top: 20px  ;
  right: 20px  ;
  rotate: -45deg;
}
@media only screen and (max-width: 1920px) {
  .News--post--thumb a:after {
    width: 1.40625vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .News--post--thumb a:after {
    width: 4.21875vw  ;
  }
}
@media only screen and (max-width: 1920px) {
  .News--post--thumb a:after {
    top: 1.0416666667vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .News--post--thumb a:after {
    top: 3.125vw  ;
  }
}
@media only screen and (max-width: 1920px) {
  .News--post--thumb a:after {
    right: 1.0416666667vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .News--post--thumb a:after {
    right: 3.125vw  ;
  }
}
@media only screen and (min-width: 769px) {
  .News--post--thumb a img {
    transition: transform 0.4s ease;
  }
  .News--post--thumb a:after {
    transition: transform 0.4s ease;
  }
  .News--post--thumb a:hover img {
    transform: scale(1.2);
  }
  .News--post--thumb a:hover:after {
    transform: translateX(0.5rem);
  }
}

/* ====================================================================================

    SINGLE

==================================================================================== */
.Single--content h1,
.Single--content h2,
.Single--content h3,
.Single--content h4,
.Single--content h5,
.Single--content h6 {
  margin: 40px 0px 15px  ;
  line-height: 1.4;
  font-weight: bold;
  color: #000;
}
@media only screen and (max-width: 1920px) {
  .Single--content h1,
  .Single--content h2,
  .Single--content h3,
  .Single--content h4,
  .Single--content h5,
  .Single--content h6 {
    margin: 2.0833333333vw 0vw 0.78125vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Single--content h1,
  .Single--content h2,
  .Single--content h3,
  .Single--content h4,
  .Single--content h5,
  .Single--content h6 {
    margin: 6.25vw 0vw 2.34375vw  ;
  }
}
.Single--content h1 {
  padding: 8px 20px  ;
  font-size: 2.8rem;
  font-weight: bold;
  background: #000;
  color: #fff;
  line-height: 1.2;
}
@media only screen and (max-width: 1920px) {
  .Single--content h1 {
    padding: 0.4166666667vw 1.0416666667vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Single--content h1 {
    padding: 1.25vw 3.125vw  ;
  }
}
.Single--content h2 {
  padding: 5px 10px  ;
  font-size: 3rem;
  line-height: 1.3;
  color: #000;
  border-bottom: 2px solid #000;
}
@media only screen and (max-width: 1920px) {
  .Single--content h2 {
    padding: 0.2604166667vw 0.5208333333vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Single--content h2 {
    padding: 0.78125vw 1.5625vw  ;
  }
}
.Single--content h3 {
  font-size: 2.4rem;
}
.Single--content h4 {
  font-size: 2rem;
}
.Single--content h5 {
  font-size: 1.8rem;
}
.Single--content h6 {
  font-size: 1.6rem;
}
.Single--content p {
  margin: 25px 0px  ;
  line-height: 2;
}
@media only screen and (max-width: 1920px) {
  .Single--content p {
    margin: 1.3020833333vw 0vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Single--content p {
    margin: 3.90625vw 0vw  ;
  }
}
.Single--content p:first-child {
  margin-top: 0;
}
.Single--content img {
  height: auto;
}
.Single--content strong {
  font-weight: bold;
}
.Single--content em {
  font-style: italic;
}
.Single--content b {
  font-weight: bold;
}
.Single--content mark {
  display: inline;
  background-color: #fffb7b;
  color: #000;
}
.Single--content blockquote {
  margin: 30px 0px  ;
  padding: 40px 30px  ;
  display: block;
  line-height: 1.8;
  font-size: 1.2rem;
  border: 1px solid #dcdcdc;
  color: rgba(33, 33, 33, 0.8);
}
@media only screen and (max-width: 1920px) {
  .Single--content blockquote {
    margin: 1.5625vw 0vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Single--content blockquote {
    margin: 4.6875vw 0vw  ;
  }
}
@media only screen and (max-width: 1920px) {
  .Single--content blockquote {
    padding: 2.0833333333vw 1.5625vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Single--content blockquote {
    padding: 6.25vw 4.6875vw  ;
  }
}
.Single--content blockquote p {
  margin: 0;
}
.Single--content blockquote p + p {
  margin-top: 30px;
}
.Single--content a {
  color: #000;
  text-decoration: underline;
}
@media only screen and (min-width: 769px) {
  .Single--content a:hover {
    text-decoration: none;
  }
}
.Single--content .aligncenter {
  display: block;
  margin: 0 auto;
  text-align: center;
}
.Single--content .alignright {
  float: right;
}
.Single--content .alignleft {
  float: left;
}
.Single--content img[class*=attachment-],
.Single--content img[class*=wp-image-] {
  height: auto;
  max-width: 100%;
}
.Single--content ul,
.Single--content ol {
  margin: 30px 0px  ;
}
@media only screen and (max-width: 1920px) {
  .Single--content ul,
  .Single--content ol {
    margin: 1.5625vw 0vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Single--content ul,
  .Single--content ol {
    margin: 4.6875vw 0vw  ;
  }
}
.Single--content ul li,
.Single--content ol li {
  line-height: 1.8;
}
.Single--content ul li + li,
.Single--content ol li + li {
  margin-top: 12px  ;
}
@media only screen and (max-width: 1920px) {
  .Single--content ul li + li,
  .Single--content ol li + li {
    margin-top: 0.625vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Single--content ul li + li,
  .Single--content ol li + li {
    margin-top: 1.875vw  ;
  }
}
.Single--content ul {
  padding-left: 20px  ;
  list-style-type: disc;
}
@media only screen and (max-width: 1920px) {
  .Single--content ul {
    padding-left: 1.0416666667vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Single--content ul {
    padding-left: 3.125vw  ;
  }
}
.Single--content ol {
  counter-reset: num;
}
.Single--content ol li {
  padding-left: 24px  ;
  position: relative;
}
@media only screen and (max-width: 1920px) {
  .Single--content ol li {
    padding-left: 1.25vw  ;
  }
}
@media only screen and (max-width: 768px) {
  .Single--content ol li {
    padding-left: 3.75vw  ;
  }
}
.Single--content ol li:before {
  counter-increment: num;
  content: counter(num) ".";
  position: absolute;
  top: 0;
  left: 0;
  color: #000;
}

@media only screen and (max-width: 768px) {
  p {
    line-height: 2;
  }
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  .sp-i {
    display: inline !important;
  }
  .flex {
    display: block;
  }
  .col-sm-1 {
    width: 100%;
  }
  .tc-sp {
    text-align: center;
  }
  .tj-sp {
    text-align: justify;
  }
  .tr-sp {
    text-align: right;
  }
}
/*# sourceMappingURL=style.css.map */
