@charset "UTF-8";

/* fonts */
/* @font-face {
	font-family: 'CormorantGaramond_Regular';
	src: url(../font/CormorantGaramond-Regular.ttf);
}

@font-face {
	font-family: 'CormorantGaramond_SemiBold';
	src: url(../font/CormorantGaramond-SemiBold.ttf);
} */

/* common */
body {
    font-size: 16px;
    line-height: 1.6;
    font-family:
        "Yu Gothic Medium", "游ゴシック", YuGothic, "メイリオ", Meiryo,
        "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック",
        sans-serif;
    position: relative;
}
b,
strong {
    font-family:
        "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3",
        "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", sans-serif;
}
img {
    vertical-align: bottom;
}
a {
    color: #000;
    text-decoration: none;
}
a:hover {
    opacity: 0.7;
}
.fadeup {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 1s,
        transform 1s;
}
.fadeup.is-visible {
    animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
@keyframes fadeup {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }
    80% {
        opacity: 1;
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.h {
    width: 100%;
    padding: 0 60px;
    box-sizing: border-box;
    position: relative;
    z-index: 5;
}
header.h {
    background: #242424;
    color: #fff;
    position: fixed;
    top: 0;
}

.h a {
    color: #fff;
}

.h .h-menu-links-haschild a {
    color: #000;
}

.h-bg {
    /* background-image: url(../img/bg-pattern.avif);
  background-repeat: repeat; */
}
.h-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}
.h-logo {
    width: 238px;
}
.h-logo a {
    display: block;
    line-height: 1;
}
.h-logo a img {
    width: 100%;
    height: auto;
}
.h-menu {
}
ul.h-menu-links {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.h-menu-links li a {
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    position: relative;
}
.h-menu-links li a:before {
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 2px;
    background: #000;
    position: absolute;
    top: -5px;
    left: 0;
    right: 0;
    margin: 0 auto;
    opacity: 0;
    transition: 0.3s;
}
.h-menu-links li a:hover:before {
    top: -10px;
    opacity: 1;
    transition: 0.3s;
}
.h-menu-links li.on a:before,
.h-menu-links li.on a:hover:before {
    top: -10px;
    opacity: 1;
    transition: 0.3s;
}
.h-menu-links li + li {
    margin: 0 0 0 40px;
}
.h-menu-links-exlink:after {
    content: "";
    display: inline-block;
    width: 15px;
    height: 15px;
    background-image: url(../img/otherlink03.png);
    background-size: 15px 15px;
    background-repeat: no-repeat;
    position: relative;
    margin: 0px 0 -1px 4px;
}

.h-sp-menu {
}
.h-sp-menu-open {
}
.h-sp-menu-close {
}

.mv {
    width: 100%;
    position: relative;
    /* aspect-ratio: 1366 / 767; */
    /*margin: -120px 0 -5px;*/
    padding: 60px 0 0;
    overflow: hidden;
    width: 100%;
    height: calc(100vh - 60px);
    height: calc(100svh - 60px);
    height: calc(100dvh - 60px);
}
.mv-copy {
    width: 100%;
    padding: 0 7.5%;
    box-sizing: border-box;
    margin: 0 auto;
    position: absolute;
    top: 25%;
    left: 0;
    right: 0;
    font-size: 60px;
    font-weight: 400;
    z-index: 4;
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
    -webkit-transition:
        opacity 0.6s ease,
        transform 0.6s ease;
    will-change: opacity, transform;
}
.mv-slide-item:first-child .mv-copy {
    opacity: 0;
}
.mv-slide-item:not(:first-child) .mv-copy,
.mv-slide-item:first-child .mv-copy.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.mv-copy span {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
    -webkit-transition:
        opacity 0.6s ease,
        transform 0.6s ease;
    will-change: opacity, transform;
}
.mv-slide-item:not(:first-child) .mv-copy span,
.mv-slide-item:first-child .mv-copy span.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.mv-slide {
    width: 100%;
    height: 100%;
    position: relative;
}
.mv-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}
.mv-slide-item {
    width: 100%;
    height: 100%;
}

/* 2025.09.18 */
.mv-slide {
    position: relative;
    height: calc(100vh - 60px);
    height: calc(100svh - 60px);
    height: calc(100dvh - 60px);
    overflow: hidden;
}

.mv-slide .slick-list,
.mv-slide .slick-track,
.mv-slide .slick-slide {
    height: 100%;
}

.mv-slide .slick-track {
    display: flex !important;
}
.mv-slide .slick-slide {
    display: flex !important;
}

.mv-slide-item {
    position: relative;
    flex: 1 0 auto;
    width: 100%;
    overflow: hidden;
}
.mv-slide-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: 50% 50%;
}

.mv-recruit {
    display: inline-block;
    position: absolute;
    bottom: 120px;
    left: 40px;
}
.mv-recruit a {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
    letter-spacing: 0.1em;
    padding: 0 15px 10px 0;
}
.mv-recruit a + a {
    margin: 0 0 0 20px;
}
.mv-recruit a:after {
    content: "";
    width: 187px;
    height: 5px;
    background-image: url(../img/arrow-l.png);
    background-size: 187px 5px;
    background-repeat: no-repeat;
    position: absolute;
    bottom: 0;
    left: 0;
    pointer-events: none;
    transition: 0.2s;
}
.mv-recruit a:hover:after {
    left: 12px;
}

.mv-slide-arrow {
    cursor: pointer;
}
.mv-slide-arrow:hover {
    opacity: 0.7;
}
.mv-slide-arrow.prev-arrow {
    width: 40px;
    height: 26px;
    background-image: url(../img/arrow-circle-left.png);
    background-repeat: no-repeat;
    background-size: 40px 26px;
    position: absolute;
    top: calc(50% - 10px);
    left: 25px;
    z-index: 4;
}
.mv-slide-arrow.next-arrow {
    width: 40px;
    height: 26px;
    background-image: url(../img/arrow-circle-right.png);
    background-repeat: no-repeat;
    background-size: 40px 26px;
    position: absolute;
    top: calc(50% - 10px);
    right: 25px;
    z-index: 4;
}
.slide-dots {
    width: 100%;
    position: absolute;
    display: flex;
    justify-content: center;
    bottom: 25px;
    margin: 0 auto;
}
.slide-dots li {
    display: inline-block;
    margin: 0 10px;
}
.slide-dots button {
    padding: 0;
    color: transparent;
    outline: none;
    width: 50px;
    box-sizing: border-box;
    border: unset;
    height: 5px;
    display: block;
    background: none;
    border: 1px solid #000;
    cursor: pointer;
}
.slick-active button {
    background: #000;
}
.slick-dotted.slick-slider {
    margin: 0;
}
ul.slider > li:not(:first-child) {
    display: none;
}

/*mv video 20260501 */
.mv {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.mv-slide {
    position: relative;
    width: 100%;
}
.mv-slide-item {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 500px;
    overflow: hidden;
}
.mv-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
}
.mv-recruit {
    position: absolute;
    right: 40px;
    bottom: 40px;
    z-index: 2;
}
.mv-recruit a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 142px;
    min-height: 56px;
    box-sizing: border-box;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.75);
    color: #000;
    text-decoration: none;
}
.mv-recruit a span {
    display: inline-block;
}
/* 非アクティブスライドの動画を非表示 */
.slick-slide:not(.slick-active) .mv-video {
    display: none;
}
/* 動画スライドのz-index調整 */
.mv-slide-item {
    z-index: 0;
}
.slick-slide.slick-active {
    z-index: 1;
}

.main {
    /* background-image: url(../img/bg-pattern.avif);
  background-repeat: repeat; */
    overflow-x: hidden;
}
.main-business {
    /*padding: 245px 0 200px;*/
    padding: 245px 0 0;
    position: relative;
}
.wrap {
    width: 100%;
    max-width: 1240px;
    padding: 0 20px;
    box-sizing: border-box;
    margin: 0 auto;
}
.main-business-in {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}
/*.main-business-in:before{
  content: "";
  width: 688px;
  height: 665px;
  background-image: url(../img/bg-item01.avif);
  background-size: 688px 665px;
  background-repeat: no-repeat;
  position: absolute;
  top: -100px;
  left: -380px;
  z-index: 1;
}*/
/*.main-business-in:after{
  content: "";
  width: 502px;
  height: 502px;
  background-image: url(../img/bg-item02.avif);
  background-size: 502px 502px;
  background-repeat: no-repeat;
  position: absolute;
  top: 420px;
  right: -250px;
  z-index: 1;
}*/
.main-business-title {
    position: relative;
    z-index: 2;
}
.main-business-title-main {
    font-size: 80px;
    line-height: 0.9;
    font-family: "Cormorant Garamond", serif;
    font-weight: 400;
    margin: 0 0 20px;
}
.main-business-title-sub {
    letter-spacing: 0.2em;
}
.main-business-box {
    width: 570px;
    font-size: 14px;
    width: 570px;
    margin: 0 100px 0 0;
    position: relative;
    z-index: 2;
}
.main-business-box p {
    line-height: 2;
    letter-spacing: 0.03em;
    margin: 0 0 30px;
}
.main-business-box p span {
    display: block;
    text-decoration: underline;
}
.main-business-box-link {
    text-align: right;
    padding: 60px 0 0;
}
.main-business-box-link a {
    width: 100px;
    display: inline-block;
    text-align: left;
    font-size: 14px;
    line-height: 1;
    font-family: "Cormorant Garamond", serif;
    font-weight: 400;
    padding: 0 0 10px;
    position: relative;
}
.main-business-box-link a:after {
    content: "";
    width: 102px;
    height: 5px;
    background-image: url(../img/arrow-m02.png);
    background-size: 102px 5px;
    background-repeat: no-repeat;
    position: absolute;
    bottom: 0;
    left: 0;
    pointer-events: none;
    transition: 0.2s;
}
.main-business-box-link a:hover:after {
    left: 10px;
}
.main-business-images {
    padding: 200px 0 0;
    position: relative;
}
.main-business-images-photo01 {
    position: relative;
    margin: 0 0 100px;
    z-index: 2;
}
.main-business-images-photo02 {
    position: absolute;
    top: 350px;
    right: 0;
    z-index: 2;
}
.main-business-images-photo03 {
    position: relative;
    margin: 0 0 0 200px;
    z-index: 2;
}
/*.main-business-images:before {
    content: "";
    width: 452px;
    height: 446px;
    background-image: url(../img/bg-item03.avif);
    background-size: 452px 446px;
    background-repeat: no-repeat;
    position: absolute;
    bottom: -200px;
    left: -90px;
    z-index: 1;
}*/
/*.main-business-images:after {
    content: "";
    width: 781px;
    height: 781px;
    background-image: url(../img/bg-item04.avif);
    background-size: 781px 781px;
    background-repeat: no-repeat;
    position: absolute;
    bottom: -560px;
    right: -420px;
    z-index: 1;
}*/

.main-interview {
    display: flex;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    position: relative;
    z-index: 2;
}
.main-interview-title {
    width: 166px;
    box-sizing: border-box;
    border-right: 1px solid #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 40px 0;
}
.main-interview-title-in {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.main-interview-title-main {
    display: block;
    font-size: 50px;
    line-height: 1;
    letter-spacing: 0.05em;
    font-family: "Cormorant Garamond", serif;
    font-weight: 400;
    writing-mode: vertical-rl;
    margin: 0 0 35px;
}
.main-interview-title-sub {
    display: block;
    writing-mode: vertical-rl;
    font-weight: bold;
    letter-spacing: 0.4em;
}
.main-interview-title-link {
    display: inline-block;
}
.main-interview-title-link-txt {
    display: inline-block;
    width: 90px;
    font-size: 14px;
    line-height: 1;
    font-family: "Cormorant Garamond", serif;
    font-weight: 400;
    text-align: left;
    position: relative;
    padding: 0 0 10px;
}
.main-interview-title-link-txt:after {
    content: "";
    width: 92px;
    height: 5px;
    background-image: url(../img/arrow-l.png);
    background-size: 92px 5px;
    background-repeat: no-repeat;
    position: absolute;
    bottom: 0;
    left: 0;
    pointer-events: none;
    transition: 0.2s;
}
.main-interview-title:hover .main-interview-title-link-txt:after {
    left: 10px;
}
.main-interview-in {
    width: calc(100% - 166px);
    display: flex;
    justify-content: flex-start;
}
.main-interview-box {
    width: calc(100% / 3);
    box-sizing: border-box;
    padding: 50px;
}
.main-interview-box + .main-interview-box {
    border-left: 1px solid #000;
}
.main-interview-box-img {
    display: block;
    max-width: 400px;
    position: relative;
    margin: 0 auto 20px;
}
.main-interview-box-img img {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
}
/*.main-interview-box-img:after {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    background-image: url(../img/interview-photo-bg.avif);
    background-size: 100% 100%;
    position: absolute;
    top: -5px;
    right: -5px;
    z-index: 1;
}*/
.main-interview-box-img-title {
    display: inline-block;
    background: #fff;
    padding: 4px;
    font-size: 20px;
    line-height: 1.2;
    font-weight: bold;
    letter-spacing: 0.03em;
    position: absolute;
    bottom: 5px;
    left: -10px;
    z-index: 3;
}
.main-interview-box-info {
    display: block;
    width: 100%;
    max-width: 400px;
    position: relative;
    font-size: 14px;
    letter-spacing: 0.03em;
    margin: 0 auto 10px;
}
.main-interview-box-info-shop {
    display: block;
    margin: 0 auto 20px;
}
.main-interview-box-info-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    line-height: 1;
}
.main-interview-box-info-item span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 28px;
    border: 1px solid #707070;
    margin: 0 10px 0 0;
}
.main-interview-box-info-item + .main-interview-box-info-item {
    margin: 10px 0 0;
}
.main-interview-box-link {
    display: block;
    width: 100%;
    max-width: 400px;
    position: relative;
    text-align: right;
    margin: 0 auto;
}
.main-interview-box-link img {
    display: inline-block;
    margin: 0 -20px 0 0;
    transition: 0.2s;
}
.main-interview-box a:hover .main-interview-box-link img {
    margin: 0 -30px 0 0;
}
.arrow {
    display: inline-block;
    margin: 0 -20px 0 0;
}
.main-news {
    padding: 80px 0 0;
}
.main-news-title {
    display: flex;
    justify-content: space-between;
    padding: 0 0 20px;
    margin: 0 0 40px;
}
.main-news-title-in {
    display: block;
}
.main-news-title-main {
    font-size: 60px;
    line-height: 1;
    letter-spacing: 0.1em;
    font-family: "Cormorant Garamond", serif;
    font-weight: 400;
    display: inline-block;
    margin: 0 20px 0 0;
}
.main-news-title-sub {
    display: inline-block;
    font-weight: bold;
    letter-spacing: 0.03em;
}
.main-news-title-link {
    display: flex;
    align-items: flex-end;
    width: 90px;
}
.main-news-title-link-txt {
    font-size: 14px;
    line-height: 1;
    font-family: "Cormorant Garamond", serif;
    font-weight: 400;
    text-align: left;
    position: relative;
    padding: 0 0 10px;
}
.main-news-title-link-txt:after {
    content: "";
    width: 92px;
    height: 5px;
    background-image: url(../img/arrow-m01.png);
    background-size: 92px 5px;
    background-repeat: no-repeat;
    position: absolute;
    bottom: 0;
    left: 0;
    pointer-events: none;
    transition: 0.2s;
}
.main-news-title:hover .main-news-title-link-txt:after {
    left: 10px;
}
.main-news-box {
    height: 132px;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.main-news-box + .main-news-box {
    border-top: 0;
}
.main-news-box a {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 132px;
    padding: 0 20px;
    box-sizing: border-box;
    align-items: center;
}
.main-news-box-in {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.main-news-box-date {
    display: inline-block;
    font-size: 18px;
    font-weight: bold;
    margin: 0 30px 0 0;
}
.main-news-box-title {
    display: inline-block;
}
.main-news-box-title-tag {
    display: inline-block;
    min-width: 70px;
    height: 28px;
    box-sizing: border-box;
    text-align: center;
    padding: 3px 5px 0;
    font-size: 14px;
    letter-spacing: 0.03em;
    border: 1px solid #000;
    margin: 0 0 5px;
}
.main-news-box-title-text {
    display: block;
    letter-spacing: 0.03em;
}
.main-news-box-link {
    display: flex;
    align-items: center;
    margin: 0;
    transition: 0.2s;
}
.main-news-box a:hover .main-news-box-link {
    margin: 0 -10px 0 0;
}

.main-recruit {
    width: 100%;
    padding: 180px 10px 150px;
    box-sizing: border-box;
    text-align: center;
    position: relative;
}
.recruit-bg {
    /* background-image: url(../img/bg-pattern.avif);
  background-repeat: repeat; */
}
/*.main-recruit:after {
    content: "";
    width: 100%;
    height: 100%;
    background-image: url(../img/recruit-bg.avif);
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 1;
}*/
.main-recruit-wrap {
    display: inline-block;
    position: relative;
    z-index: 2;
}
.main-recruit-title {
    display: block;
    position: relative;
    margin: 0 auto 40px;
}
.main-recruit-title:after {
    content: "";
    width: 1px;
    height: 18px;
    background: #000;
    position: absolute;
    bottom: -30px;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.main-recruit-title-main {
    display: block;
    font-size: 80px;
    letter-spacing: 0.1em;
    font-family: "Cormorant Garamond", serif;
    font-weight: 400;
    margin: 0 auto 20px;
}
.main-recruit-title-sub {
    display: block;
    font-weight: bold;
}
.main-recruit-copy {
    display: block;
    font-size: 20px;
    font-weight: bold;
    line-height: 2;
    margin: 0 auto 40px;
    position: relative;
    z-index: 2;
}
.main-recruit-link-wrap {
    display: flex;
    justify-content: center;
    gap: 50px;
}
.main-recruit-link {
    display: block;
    width: 180px;
    display: inline-block;
    position: relative;
    z-index: 2;
}
.main-recruit-link-txt {
    display: block;
    font-size: 14px;
    line-height: 1;
    font-weight: bold;
    letter-spacing: 0.1em;
    text-align: left;
    padding: 0 0 15px;
    position: relative;
}
.main-recruit-link-txt:after {
    content: "";
    width: 180px;
    height: 5px;
    background-image: url(../img/arrow-l.png);
    background-size: 180px 5px;
    background-repeat: no-repeat;
    position: absolute;
    bottom: 0;
    left: 0;
    pointer-events: none;
    transition: 0.2s;
}
.main-recruit-link:hover .main-recruit-link-txt:after {
    left: 12px;
}

.f {
    padding: 100px 0 70px;
    background: #1a1a1a;
    color: #fff;
}
.f-wrap {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}
.f-logo {
    margin: 0 0 100px;
}
.f-address {
    font-size: 14px;
    letter-spacing: 0.03em;
    margin: 0 0 70px;
}
.f-menu {
    position: absolute;
    top: 0;
    right: 0;
    padding: 25px 20px 10px 20px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}
.f-menu-link {
}
.f-menu-link + .f-menu-link {
    margin: 0 0 0 80px;
}
.f-menu-link a,
.f-menu-link li span {
    font-size: 12px;
    letter-spacing: 0.03em;
    color: #fff;
}
.f-menu-link-ex {
    display: inline-block;
    position: relative;
}
.f-menu-link-ex:after {
    content: "";
    display: inline-block;
    width: 15px;
    height: 15px;
    background-image: url(../img/otherlink03.png);
    background-size: 15px 15px;
    background-repeat: no-repeat;
    position: relative;
    margin: 0px 0 -2px 4px;
}
.f-menu-link li + li {
    margin: 5px 0 0;
}
.f-menu-link-child {
    padding: 0 0 0 10px;
}
.f-menu-link-child a:before {
    content: "-";
}
.f-copyright {
    font-size: 12px;
    letter-spacing: 0.03em;
}

.page-head {
    width: 100%;
    height: 410px;
    padding: 235px 0 0;
    box-sizing: border-box;
    position: relative;
    margin: -120px 0 0;
    /* background-image: url(../img/bg-pattern.avif);
  background-repeat: repeat; */
}
/*.page-head:before {
    content: "";
    display: block;
    width: 100%;
    height: 410px;
    background-image: url(../img/page-head-bg.avif);
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    z-index: 1;
}*/
.page-head-title {
    text-align: center;
    font-size: 50px;
    line-height: 1;
    letter-spacing: 0.03em;
    font-family: "Cormorant Garamond", serif;
    font-weight: 400;
    position: relative;
    z-index: 2;
    margin: 0 0 40px;
}
.page-head-title:after {
    content: "";
    width: 1px;
    height: 18px;
    background: #000;
    position: absolute;
    bottom: -30px;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.page-head-sub {
    text-align: center;
    font-size: 16px;
    letter-spacing: 0.03em;
    position: relative;
    z-index: 2;
}
.bread {
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    /* background-image: url(../img/bg-pattern.avif);
  background-repeat: repeat; */
    display: flex;
    padding: 14px 25px;
}
.recruit-bread {
    background-image: none;
    background-color: #fff;
}
.bread-item {
    font-size: 12px;
    letter-spacing: 0.03em;
    margin: 0 35px 0 0;
    position: relative;
}
.bread-item a {
    font-size: 12px;
    letter-spacing: 0.03em;
    text-decoration: underline;
}
.bread-item + .bread-item:before {
    content: "";
    width: 4px;
    height: 7px;
    background-image: url(../img/bread-icon.png);
    background-size: 4px 7px;
    background-repeat: no-repeat;
    position: absolute;
    top: calc(50% - 4px);
    left: -15px;
}
.page {
}
.page-message01 {
    width: 100%;
    padding: 163px 0 0;
    box-sizing: border-box;
    /* background-image: url(../img/bg-pattern.avif);
  background-repeat: repeat; */
    margin: 0 0 70px;
}
.page-message02 + .page-message01 {
    padding: 0;
}
.page-message01-in {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    padding: 0 50px;
    box-sizing: border-box;
    margin: 0 auto;
}
.page-message01-title {
    padding: 0;
}
.page-message01-title-main {
    font-size: 70px;
    line-height: 1;
    letter-spacing: 0.125em;
    font-family: "Cormorant Garamond", serif;
    font-weight: 700;
    /*background-image: url(../img/message-title-bg.avif);
    background-repeat: no-repeat;
    background-position: center left;
    background-size: 352px 48px;*/
    margin: 0 0 5px;
}
.page-message01-title-sub {
    line-height: 1;
    letter-spacing: 0.1em;
    font-weight: bold;
    margin: 0 0 50px;
}
.page-message01-title-copy {
    /*font-size: 40px;*/
    font-size: 3vw;
    font-weight: bold;
    font-family:
        "Roboto", "Yu Gothic", YuGothic, "游ゴシック",
        "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    letter-spacing: -0.02em;
    line-height: 1.07;
    color: #242424;
}
.page-message01-img {
    /*margin: 0 0 -70px;*/
}
.page-message02 {
    padding: 50px 0 140px;
    max-width: 850px;
    width: 100%;
    margin: 0 auto;
}
.page-message02-title {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 0.03em;
    margin: 0 0 40px;
}
.page-message02-text {
    font-size: 17px;
    font-weight: bold;
}
.page-message02-text p {
    line-height: 1.8;
    /* letter-spacing: 0.03em; */
    margin: 0 0 25px;
}
.page-company {
    padding: 115px 0;
    /* background-image: url(../img/bg-pattern.avif);
  background-repeat: repeat; */
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
}
.page-company-title {
    text-align: center;
    margin: 0 0 45px;
}
.page-company-title span {
    display: inline-block;
    background: #fff;
    font-size: 30px;
    line-height: 1;
    font-weight: bold;
    padding: 5px;
}
.page-company-info {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}
.page-company-info dl {
    border-bottom: 1px solid #000;
    display: flex;
    padding: 25px 0;
    letter-spacing: 0.03em;
}
.page-company-info dt {
    width: 17%;
    font-size: 18px;
    font-weight: bold;
}
.page-company-info dd {
    width: 83%;
    font-size: 16px;
}
dl.page-company-info-child {
    border-top: 0;
    border-bottom: 0;
    padding: 0;
}
.page-company-info-child dt {
    width: 134px;
    font-weight: normal;
    font-size: 16px;
}
.page-company-info-child dd {
    width: auto;
}
.page-company-info-partner {
    text-align: center;
    margin: 30px 0;
}
.page-access {
    padding: 115px 0 0;
}
.page-access-title {
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    margin: 0 0 70px;
}
.page-access-info {
    width: 100%;
    max-width: 1000px;
    display: flex;
    align-items: center;
    letter-spacing: 0.03em;
    margin: 0 auto 50px;
}
.page-access-info-title {
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    width: 160px;
    padding: 16px 0;
    border: 1px solid #707070;
    font-size: 18px;
    font-weight: bold;
    margin: 0 20px 0 0;
}
.page-access-map {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 70px;
}
.page-access-shop {
    text-align: center;
}
.page-access-shop a {
    display: inline-block;
    width: 82px;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.1em;
    font-weight: bold;
    text-align: left;
    padding: 0 0 12px;
    position: relative;
}
.page-access-shop a:after {
    content: "";
    width: 82px;
    height: 5px;
    background-image: url(../img/arrow-m03.png);
    background-size: 82px 5px;
    background-repeat: no-repeat;
    position: absolute;
    bottom: 0;
    left: 0;
    pointer-events: none;
    transition: 0.2s;
}
.page-access-shop a:hover:after {
    left: 10px;
}
.page-nav {
}
.page-nav-bg {
    /* background-image: url(../img/bg-pattern.avif);
  background-repeat: repeat; */
}
.page-nav-links {
    display: flex;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
}
.page-nav-links-item {
    width: calc(100% / 3);
    box-sizing: border-box;
    padding: 20px;
}
.page-nav-links-item + .page-nav-links-item {
    border-left: 1px solid #000;
}
.page-nav-links-item-img {
    display: block;
    margin: 0 0 15px;
}
.page-nav-links-item-img img {
    width: 100%;
    height: auto;
}
.page-nav-links-item-title {
    display: block;
    font-size: 20px;
    line-height: 1;
    letter-spacing: 0.1em;
    font-weight: bold;
    position: relative;
}
.page-nav-links-item-title-sub {
    display: inline-block;
    font-size: 11px;
    font-weight: normal;
    line-height: 1;
    letter-spacing: 0;
    font-family: "Cormorant Garamond", serif;
    font-weight: 400;
    margin: 0 0 0 10px;
}
.page-nav-links-item-title-arrow {
    display: flex;
    align-items: center;
    position: absolute;
    right: 0;
    top: calc(50% - 2px);
    transition: 0.2s;
}
.page-nav-links-item a:hover .page-nav-links-item-title-arrow {
    right: -10px;
}
.page-nav-links-item.blank {
    opacity: 0.7;
    pointer-events: none;
}
.blank-text {
    display: flex;
    align-items: center;
    position: absolute;
    right: 0;
    top: 5px;
    font-size: 16px;
    font-weight: normal;
}

.page-business01 {
    /* background-image: url(../img/bg-pattern.avif);
  background-repeat: repeat; */
    border-bottom: 1px solid #000;
    padding: 100px 0 100px;
}
.page-business01-mv {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 70px;
    position: relative;
}
.page-business01-mv img {
    width: 100%;
    height: auto;
    position: relative;
}
.page-business01-text {
    text-align: center;
    font-size: 14px;
    line-height: 2.4;
    letter-spacing: 0.03em;
    margin: 0 0 50px;
}
.page-business01-link {
    text-align: center;
}
.page-business01-link a {
    display: inline-block;
    width: 82px;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.1em;
    font-weight: bold;
    text-align: left;
    padding: 0 0 12px;
    position: relative;
}
.page-business01-link a:after {
    content: "";
    width: 82px;
    height: 5px;
    background-image: url(../img/arrow-m03.png);
    background-size: 82px 5px;
    background-repeat: no-repeat;
    position: absolute;
    bottom: 0;
    left: 0;
    pointer-events: none;
    transition: 0.2s;
}
.page-business01-link a:hover:after {
    left: 10px;
}
.page-business02 {
    padding: 110px 0 0;
}
.page-business02-title {
    text-align: center;
    margin: 0 0 25px;
}
.page-business02-title span {
    display: inline-block;
    background: #efefef;
    font-size: 30px;
    line-height: 1;
    font-weight: bold;
    padding: 5px;
}
.page-business02-text + .page-business02-title {
    margin: 90px 0 25px;
}
.page-business02-text {
    width: 100%;
    max-width: 600px;
    text-align: center;
    font-size: 14px;
    line-height: 2.4;
    letter-spacing: 0.03em;
    margin: 0 auto;
}
.page-business02-image {
    text-align: center;
    padding: 50px 0 0;
    /* background-image: url(../img/business-bg-item01.avif);
  background-size: 641px 609px;
  background-position: center center;
  background-repeat: no-repeat; */
}
.page-business02-image img {
    display: inline-block;
}

.philosophy h2 {
    font-weight: bold;
    font-size: 50px;
    text-align: center;
    margin-bottom: 80px;
}
.philosophy h2 span {
    display: block;
    font-weight: 500;
    font-size: 30px;
    margin-top: 24px;
}
.phi_boxes {
    width: 700px;
    margin: 0 auto;
}
.phi_box {
    position: relative;
    background-color: #fff;
    width: 100%;
    margin-bottom: 40px;
    box-sizing: border-box;
    padding: 40px 40px 30px 40px;
}
.phi_box h3 {
    font-size: 21px;
    margin-bottom: 27px;
}
.phi_box p {
    font-size: 14px;
    line-height: 2;
    color: #666;
}
.phi_box .tag {
    width: 200px;
    height: 34px;
    line-height: 34px;
    color: #fff;
    font-size: 20px;
    text-align: right;
    padding: 0 14px 0 0;
    position: absolute;
    top: 33px;
    right: -14px;
    background: #8b804d;
    font-weight: bold;
}

.archive {
    /* background-image: url(../img/bg-pattern.avif);
  background-repeat: repeat; */
}
.archive-cat {
    padding: 80px 0 60px;
}
.archive-cat-title {
    font-size: 30px;
    line-height: 1;
    letter-spacing: 0.05em;
    font-family: "Cormorant Garamond", serif;
    font-weight: 400;
    text-align: center;
    margin: 0 0 20px;
}
.archive-cat-links {
    display: flex;
    justify-content: center;
}
.archive-cat-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 220px;
    box-sizing: border-box;
    border: 1px solid #000;
    line-height: 1;
    font-weight: bold;
    padding: 20px 20px;
    margin: 20px;
}
.archive-cat-links-arrow {
    display: flex;
    align-items: center;
    transition: 0.2s;
}
.archive-cat-links a:hover .archive-cat-links-arrow {
    margin: 0 -10px 0 0;
}
.archive-list {
}
.archive-list-in {
    margin: 0 0 100px;
}
.archive-list-pagenation {
    display: flex;
    justify-content: center;
}
.archive-list-pagenation a,
.archive-list-pagenation span {
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    box-sizing: border-box;
    margin: 0 5px;
}
.archive-list-pagenation a {
    border: 1px solid #707070;
}

.post-head {
    background: #fff;
    padding: 70px 0 45px;
    text-align: center;
    border-bottom: 1px solid #000;
}
.post-head-date {
    font-size: 14px;
    letter-spacing: 0.03em;
    margin: 0 0 30px;
}
.post-head-title {
    font-size: 30px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 0.03em;
    margin: 0 0 25px;
}
.post-head-cat {
    text-align: center;
}
.post-head-cat span {
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    padding: 5px 15px;
    border: 2px solid #000;
    border-radius: 8px;
}
.post-body {
    padding: 100px 0;
    /* background-image: url(../img/bg-pattern.avif);
  background-repeat: repeat; */
}
.wrap-s {
    width: 100%;
    max-width: 1040px;
    padding: 0 20px;
    box-sizing: border-box;
    letter-spacing: 0.03em;
    margin: 0 auto;
}
.post-body h1 {
    font-size: 32px;
    line-height: 1.2;
    font-weight: bold;
    margin: 40px 0;
}
.post-body h2 {
    font-size: 30px;
    line-height: 1.2;
    font-weight: bold;
    margin: 40px 0;
}
.post-body h2 span {
    display: inline-block;
    background: linear-gradient(transparent 70%, #fff 70%);
}
.interview-body h2 span {
    background: none;
}
.post-body h3 {
    font-size: 28px;
    line-height: 1.2;
    font-weight: bold;
    margin: 40px 0;
}
.post-body h4 {
    font-size: 24px;
    line-height: 1.2;
    font-weight: bold;
    margin: 40px 0;
}
.post-body h5 {
    font-size: 20px;
    line-height: 1.2;
    font-weight: bold;
    margin: 40px 0;
}
.post-body h6 {
    font-size: 18px;
    line-height: 1.2;
    font-weight: bold;
    margin: 40px 0;
}
.post-body p {
    margin: 40px 0;
}
.post-body strong,
.post-body b {
    display: inline;
    font-weight: bold;
    color: #0058b1;
}
.post-body ol {
    margin: 40px 0;
    counter-reset: item;
    list-style-type: none;
}
.post-body ol li {
    padding: 0 0 0 50px;
    position: relative;
}
.post-body ol li:before {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 20px;
    box-sizing: border-box;
    counter-increment: item;
    content: counter(item);
    padding: 0 10px;
    font-size: 20px;
    line-height: 1;
    letter-spacing: normal;
    font-weight: bold;
    text-align: center;
    border-left: 1px solid #000;
    border-right: 1px solid #000;
    position: absolute;
    top: 2px;
    left: 0;
}
.post-body ul {
    margin: 40px 0;
    list-style-type: none;
}
.post-body ul li {
    padding: 0 0 0 35px;
    position: relative;
}
.post-body ul li:before {
    content: "";
    width: 20px;
    height: 1px;
    background: #000;
    position: absolute;
    top: 11px;
    left: 0;
}
.post-body li + li {
    margin: 35px 0 0;
}
.post-body h1:first-child,
.post-body h2:first-child,
.post-body h3:first-child,
.post-body h4:first-child,
.post-body h5:first-child,
.post-body h6:first-child,
.post-body ol:first-child,
.post-body ul:first-child,
.post-body p:first-child {
    margin: 0 0 40px;
}
.post-body h1:last-child,
.post-body h2:last-child,
.post-body h3:last-child,
.post-body h4:last-child,
.post-body h5:last-child,
.post-body h6:last-child,
.post-body ol:last-child,
.post-body ul:last-child,
.post-body p:last-child {
    margin: 0;
}
.post-body img {
    max-width: 100%;
    height: auto;
}
.post-body iframe {
    max-width: 100%;
}

.page-privacypolicy {
    padding: 100px 0;
    /* background-image: url(../img/bg-pattern.avif);
  background-repeat: repeat; */
}
.page-privacypolicy-head {
    text-align: right;
    margin: 0 0 50px;
}
.page-privacypolicy-main {
}
.page-privacypolicy-title {
    font-size: 28px;
    line-height: 1;
    font-weight: bold;
    letter-spacing: 0.05em;
    padding: 0 0 0 10px;
    border-left: 2px solid #000;
    margin: 0 0 30px;
}
p + .page-privacypolicy-title {
    margin: 60px 0 30px;
}
.page-privacypolicy-main p {
    margin: 0 0 40px;
}
.page-privacypolicy-sub {
    font-size: 24px;
    line-height: 1;
    font-weight: bold;
    letter-spacing: 0.05em;
    margin: 0 0 20px;
}
.page-privacypolicy-contact {
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
    margin: 0 0 20px;
}
.page-privacypolicy-definition {
    display: flex;
    margin: 0 0 10px;
}
.page-privacypolicy-definition dt {
    width: 40px;
    box-sizing: border-box;
    padding: 0 0 0 10px;
}
.page-privacypolicy-definition dd {
    width: calc(100% - 40px);
}
.page-privacypolicy-definition dd p {
    margin: 0;
}
.page-privacypolicy-definition + .page-privacypolicy-sub {
    margin: 30px 0 20px;
}
.page-privacypolicy-definition ul {
    margin: 10px 0 20px;
}
.page-privacypolicy-definition p + p {
    margin: 20px 0 0;
}
.page-privacypolicy-definition p a {
    text-decoration: underline;
}
.interview-head:before {
    content: "";
    display: block;
    width: 100%;
    height: 410px;
    background-image: url(../img/interview-head-bg.avif);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    position: absolute;
    top: 0;
    z-index: 1;
}
.interview {
    /* background-image: url(../img/bg-pattern.avif);
  background-repeat: repeat; */
}
.interview-lead-title {
    font-size: 48px;
    line-height: 1;
    letter-spacing: 0.125em;
    font-family: "Cormorant Garamond", serif;
    font-weight: 400;
    text-align: center;
    margin: 0 0 20px;
}
.interview-lead-title span {
    display: inline-block;
    line-height: 1;
    background-image: url(../img/modelist-bg.avif);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
}
.interview-lead-sub {
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
    text-align: center;
    margin: 0 0 50px;
}
.interview-lead-text {
    text-align: center;
    margin: 0 0 75px;
}
.interview-list-in {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    border-top: 1px solid #000;
    margin: 0 auto 40px;
}
.interview-list .main-interview-box {
    border-bottom: 1px solid #000;
}
.interview-recruit {
    padding: 300px 10px 200px;
}
.interview-recruit:after {
    content: "";
    width: 100%;
    height: 100%;
    /*background-image: url(../img/interview-recruit-bg.avif);
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;*/
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 1;
}

.interview-mv {
    width: 100%;
    background-image: url(../img/bg-pattern.avif);
    background-repeat: repeat;
}
.interview-mv-photo img {
    width: 100%;
    height: auto;
}
.interview-mv-head {
    width: calc(100% - ((100% - 1000px) / 2));
    margin: -130px 0 0 calc((100% - 1000px) / 2);
    height: 260px;
    padding: 0 50px;
    box-sizing: border-box;
    /*background-image: url(../img/interview-mv-head-bg.avif);
    background-size: 100% 100%;*/
    position: relative;
    display: flex;
    align-items: center;
    z-index: 3;
}
.interview-mv-head-title {
    font-size: 48px;
    line-height: 1;
    letter-spacing: 0.125em;
    font-family: "Cormorant Garamond", serif;
    font-weight: 400;
    position: absolute;
    top: -25px;
    left: -20px;
}
.interview-mv-head-in {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.interview-mv-head-copy {
    font-size: 28px;
    font-weight: bold;
    line-height: 1.4;
}
.interview-mv-head-info {
    position: relative;
    padding: 0 30px 0 91px;
}
.interview-mv-head-info:before {
    content: "";
    width: 21px;
    height: 161px;
    background-image: url(../img/interview-mv-head-slash.avif);
    background-size: 21px 161px;
    background-repeat: no-repeat;
    position: absolute;
    top: calc(50% - 81px);
    left: 0;
}
.interview-mv-head-info-shop {
    margin: 0 0 15px;
}
.interview-mv-head-info-item {
    display: flex;
    align-items: center;
}
.interview-mv-head-info-item dt {
    width: 70px;
    height: 28px;
    border: 1px solid #000;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 10px 0 0;
}
.interview-mv-head-info-item dd {
}
.interview-mv-head-info-item + .interview-mv-head-info-item {
    margin: 10px 0 0;
}
.interview {
}
.interview-body {
}
.interview-body h1 {
    font-size: 32px;
    font-weight: bold;
}
.interview-body h2 {
    font-size: 28px;
    font-weight: bold;
    line-height: 1;
    padding: 0 0 0 10px;
    border-left: 5px solid #000;
}
.interview-body h3 {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.2;
}
.interview-body h4 {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.2;
}
.interview-body h5 {
    font-size: 17px;
    font-weight: bold;
    line-height: 1.2;
}
.interview-body h6 {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.2;
}
.interview-body h1,
.interview-body h2,
.interview-body h3,
.interview-body h4,
.interview-body h5,
.interview-body h6 {
    margin: 30px 0;
}
.interview-body h1:first-child,
.interview-body h2:first-child,
.interview-body h3:first-child,
.interview-body h4:first-child,
.interview-body h5:first-child,
.interview-body h6:first-child,
.interview-body ol:first-child,
.interview-body ul:first-child,
.interview-body p:first-child {
    margin: 0 0 30px;
}
.interview-body h1:last-child,
.interview-body h2:last-child,
.interview-body h3:last-child,
.interview-body h4:last-child,
.interview-body h5:last-child,
.interview-body h6:last-child,
.interview-body ol:last-child,
.interview-body ul:last-child,
.interview-body p:last-child {
    margin: 0;
}
.interview-related {
    padding: 0 0 70px;
}
.interview-related-title {
    display: block;
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
}
.interview-related-title-main {
    display: block;
    font-size: 24px;
    font-weight: bold;
}
.interview-related-title-link-txt {
    display: inline-block;
    width: 90px;
    font-size: 14px;
    line-height: 1;
    font-family: "Cormorant Garamond", serif;
    font-weight: 400;
    text-align: left;
    position: relative;
    padding: 0 0 10px;
}
.interview-related-title-link-txt:after {
    content: "";
    width: 92px;
    height: 5px;
    background-image: url(../img/arrow-l.png);
    background-size: 92px 5px;
    background-repeat: no-repeat;
    position: absolute;
    bottom: 0;
    left: 0;
    pointer-events: none;
    transition: 0.2s;
}
.interview-related-title:hover .interview-related-title-link-txt:after {
    left: 10px;
}
.interview-related-in {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.interview-related-in .main-interview-box {
    width: calc(100% / 2);
    box-sizing: border-box;
    border-bottom: 1px solid #000;
}
.interview-related-in .main-interview-box-img,
.interview-related-in .main-interview-box-info,
.interview-related-in .main-interview-box-link {
    max-width: 300px;
}

.recruit-mv {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
.recruit-mv-photo,
.recruit-mv-link,
.recruit-mv-copybg {
    opacity: 0;
}
.recruit-mv-copybg {
    width: 42%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    transform: translateY(20px);
}
.recruit-mv-photo {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}
.recruit-mv-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}
.recruit-mv-copy {
    width: 100%;
    text-align: right;
    position: absolute;
    top: 12%;
    right: 6.5%;
    margin: 0 auto;
    z-index: 3;
}
.recruit-mv-copy-main {
    display: inline-block;
    font-size: 60px;
    text-align: left;
    font-weight: 400;
    margin: 0 0 20px;
}
.recruit-mv-copy-sub {
    font-size: 1.46413vw;
    font-weight: bold;
    letter-spacing: 0.05em;
}
.recruit-mv-copy span.pre-visible {
    transition: none;
}
.recruit-mv-copy-main span {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.5s ease,
        transform 0.5s ease;
    -webkit-transition:
        opacity 0.6s ease,
        transform 0.6s ease;
    will-change: opacity, transform;
}
.recruit-mv-copy-sub span {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.5s ease,
        transform 0.5s ease;
    -webkit-transition:
        opacity 0.6s ease,
        transform 0.6s ease;
    -webkit-transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}
/* .recruit-mv-copy-main span.is-visible,
.recruit-mv-copy-sub span.is-visible {
  opacity: 1;
  transform: translateY(0);
} */
.recruit-mv-copy span.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.recruit-mv-link {
    display: inline-block;
    position: absolute;
    bottom: 14.728%;
    right: 6.5%;
    z-index: 3;
}
.recruit-mv-link a {
    position: relative;
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
    letter-spacing: 0.1em;
    padding: 0 15px 10px 0;
}
.recruit-mv-link a:after {
    content: "";
    width: 142px;
    height: 5px;
    background-image: url(../img/arrow-l.png);
    background-size: 142px 5px;
    background-repeat: no-repeat;
    position: absolute;
    bottom: 0;
    left: 0;
    pointer-events: none;
    transition: 0.2s;
}
.recruit-mv-link a:hover:after {
    left: 10px;
}
.recruit-news {
    padding: 120px 0;
    /* background-image: url(../img/bg-pattern.avif);
  background-repeat: repeat; */
}
.recruit-news .main-news-title-main {
    letter-spacing: 0;
}
.recruit-news .main-news-title-main {
    font-size: 48px;
}
.recruit-mission {
    padding: 110px 0 100px;
    position: relative;
    overflow-x: hidden;
    text-align: center;
}
.recruit-mission-wrap {
    display: inline-block;
    position: relative;
    z-index: 2;
}
.recruit-mission-title {
    display: block;
    position: relative;
}
.recruit-mission-title-main {
    display: block;
    font-size: 50px;
    line-height: 1;
    font-family: "Cormorant Garamond", serif;
    font-weight: 400;
    text-align: center;
    background-image: url(../img/ourmission-bg.avif);
    background-repeat: no-repeat;
    background-position: center;
    margin: 0 0 20px;
}
.recruit-mission-title-sub {
    display: block;
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
    letter-spacing: 0.03em;
    text-align: center;
    margin: 0 0 50px;
}
.recruit-mission-text {
    display: block;
    line-height: 2;
    text-align: center;
    margin: 0 0 25px;
    position: relative;
    font-size: 14px;
    letter-spacing: 0.03em;
}
.recruit-mission-link {
    display: block;
    position: relative;
    text-align: center;
    line-height: 2.4;
}
.recruit-mission-link-txt {
    width: 100px;
    display: inline-block;
    text-align: left;
    font-size: 14px;
    line-height: 1;
    font-family: "Cormorant Garamond", serif;
    font-weight: 400;
    padding: 0 0 10px;
    position: relative;
}
.recruit-mission-link-txt:after {
    content: "";
    width: 102px;
    height: 5px;
    background-image: url(../img/arrow-m02.png);
    background-size: 102px 5px;
    background-repeat: no-repeat;
    position: absolute;
    bottom: 0;
    left: 0;
    pointer-events: none;
    transition: 0.2s;
}
.recruit-mission-wrap:hover .recruit-mission-link-txt:after {
    left: 10px;
}
.recruit-mission-img01 {
    position: absolute;
    top: 88px;
    left: -82px;
    z-index: 1;
}
.recruit-mission-img02 {
    position: absolute;
    top: 56px;
    right: -70px;
    z-index: 1;
}
.recruit-interview {
    /* background-image: url(../img/bg-pattern.avif);
  background-repeat: repeat; */
}
.recruit-contents {
}
.recruit-contents-in {
    display: flex;
    flex-wrap: wrap;
}
.recruit-contents-box {
    display: block;
    width: 50%;
    padding: 40px;
    box-sizing: border-box;
    border-bottom: 1px solid #000;
}
.recruit-contents-box:nth-child(2n + 1) {
    border-right: 1px solid #000;
}
.recruit-contents-box-img {
    display: block;
    width: 100%;
    position: relative;
    text-align: center;
    margin: 0 0 40px;
}
.recruit-contents-box-img img {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
}
.recruit-contents-box-img span {
    display: inline-block;
    background: #fff;
    padding: 4px 2px;
    font-size: 30px;
    font-weight: bold;
    line-height: 1;
    letter-spacing: 0.03em;
    position: relative;
    bottom: 20px;
    z-index: 2;
}
.recruit-contents-box-text {
    display: block;
    letter-spacing: 0.03em;
    text-align: left;
    min-height: 77px;
    margin: 0 0 25px;
}
.recruit-contents-box-link {
    text-align: center;
}
.recruit-contents-box-link-txt {
    display: inline-block;
    width: 150px;
    position: relative;
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
    text-align: left;
    padding: 0 15px 10px 0;
}
.recruit-contents-box-link-txt:after {
    content: "";
    width: 142px;
    height: 5px;
    background-image: url(../img/arrow-l.png);
    background-size: 142px 5px;
    background-repeat: no-repeat;
    position: absolute;
    bottom: 0;
    left: 0;
    pointer-events: none;
    transition: 0.2s;
}
.recruit-contents-box:hover .recruit-contents-box-link-txt:after {
    left: 10px;
}
.recruit-contents-box-link.xl a {
    width: 172px;
}
.recruit-contents-box-link.xl a:after {
    content: "";
    width: 172px;
    height: 5px;
    background-image: url(../img/arrow-xl.png);
    background-size: 172px 5px;
    background-repeat: no-repeat;
    position: absolute;
    bottom: 0;
    left: 0;
    pointer-events: none;
}
.recruit-recruit {
    /* background-image: url(../img/bg-pattern.avif);
  background-repeat: repeat; */
}

.sp {
    display: none !important;
}
.sp-in {
    display: none !important;
}

.h-menu {
    display: block;
}
.h-sp-menu {
    display: none;
}

@media (max-width: 896px) {
    .h-sp-menu {
        display: block;
        cursor: pointer;
        z-index: 10;
    }
    .h-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        /*background-image: url(../img/sp-menu-bg.avif);
        background-size: 100% 100%;
        background-position: top center;*/
        background: #fff;
        z-index: 10;
        color: #1a1a1a;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 20px;
        overflow: auto;
        box-sizing: border-box;
    }
    .h-menu {
        display: none;
    }
    .h-menu ul {
        list-style: none;
        margin: 0;
        display: block;
    }
    .h-menu-links {
        padding: 40px 0;
    }
    .h-menu-links li + li {
        margin: 40px 0 0;
    }
    .h-menu ul li a {
        font-size: 30px;
        text-decoration: none;
        color: #242424;
    }
    .h-sp-menu {
        z-index: 15;
    }
    .h-sp-menu-open {
        display: block;
    }
    .h-sp-menu-close {
        display: none;
    }
    body.no-scroll {
        overflow: hidden;
    }
    .h-menu-links ul {
        display: block;
    }
    .h-menu-links-exlink:after {
        content: "";
        width: 19px;
        height: 19px;
        background-image: url(../img/otherlink01.png);
        background-size: 19px 19px;
        margin: 0 0 0 8px;
    }
}

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

    .h,
    .no-scroll header.h {
        padding: 0 20px;
        width: 100vw;
    }
    .no-scroll header.h {
        background: #fff;
    }
    .h-wrap {
        height: 60px;
    }
    .h-logo {
        width: 214px;
    }
    .h-menu {
        display: none;
    }
    .h-sp-menu-open {
        line-height: 1;
    }
    .h-sp-menu-close {
        line-height: 1;
        display: none;
    }
    .mv {
        aspect-ratio: auto;
        padding: 60px 0 0;
        /*margin: -80px 0 0;*/
        /* width: 100%;
    height: auto; */
    }

    .mv-slide img {
        /* width: 100%; */
        /* height: auto; */
        object-position: initial;
    }
    .mv-slide {
        width: 100%;
        /* height: auto; */
        position: relative;
    }
    .mv-slide-item {
        /* height: auto; */
    }
    .mv-copy {
        padding: 0 20px;
        top: 13%;
        font-size: 9vw;
    }
    .mv-recruit {
        bottom: 40px;
        right: auto;
        left: 25px;
    }
    .mv-recruit a:before {
        content: "";
        width: 0;
    }
    .mv-recruit a span {
        position: relative;
        z-index: 2;
    }
    .mv-recruit a:after {
        z-index: 2;
    }
    .mv-recruit a + a {
        margin: 12px 0 0;
    }
    .slide-dots {
        bottom: 15px;
    }

    .main-business {
        /*padding: 60px 0 100px;*/
        padding: 60px 0 0;
    }
    .wrap {
        width: 100%;
        padding: 0 30px;
        margin: 0 auto;
    }
    .main-business-in {
        display: block;
    }
    .main-business-in:before {
        top: -27%;
        left: -400px;
    }

    .main-business-title-main {
        font-size: 40px;
        line-height: 1.2;
        margin: 0 0 10px;
    }
    .main-business-title-sub {
        font-weight: bold;
        margin: 0 0 35px;
    }
    .main-business-box {
        width: 100%;
        text-align: justify;
    }
    .main-business-box p {
        line-height: 2;
        letter-spacing: 0.03em;
        margin: 0 0 70px;
    }
    .main-business-box p {
        letter-spacing: 0.1em;
        margin: 0 0 35px;
    }
    .main-business-box-link {
        padding: 35px 0 0;
    }
    .main-business-images {
        padding: 50px 0 0;
        margin: 0 -30px 0;
        width: calc(100% + 60px);
    }
    .main-business-images-photo01 {
        width: calc(100% - 30px);
        height: auto;
        margin: 0 30px 40px 0;
    }
    .main-business-images-photo02 {
        width: 72%;
        height: auto;
        margin: 0 0 40px 28%;
        position: relative;
        top: auto;
        right: auto;
    }
    .main-business-images-photo03 {
        width: 71%;
        height: auto;
        margin: 0 29% 0 0;
        top: auto;
        right: auto;
    }
    .main-business-in:after {
        top: 430px;
        right: -240px;
    }
    .main-business-images:before {
        top: 28%;
        left: -43%;
    }
    .main-business-images:after {
        top: 84%;
        right: -390px;
    }
    .main-interview {
        display: block;
        border-top: 1px solid #000;
        border-bottom: 0;
        position: relative;
        z-index: 2;
    }
    .main-interview-title {
        width: 100%;
        border-bottom: 1px solid #000;
        border-right: 0;
        text-align: center;
        display: block;
        padding: 35px 0 30px;
    }
    .main-interview-title-in {
        display: block;
    }
    .main-interview-title-main {
        font-size: 38px;
        writing-mode: horizontal-tb;
        margin: 0 0 15px;
    }
    .main-interview-title-sub {
        writing-mode: horizontal-tb;
        letter-spacing: 0.2em;
        margin: 0 0 15px;
    }
    .main-interview-in {
        width: 100%;
        display: block;
    }
    .main-interview-box {
        width: 100%;
        box-sizing: border-box;
        padding: 50px 60px 30px;
        border-bottom: 1px solid #000;
    }
    .main-interview-box + .main-interview-box {
        border-left: 0;
    }
    .main-interview-box-info-shop {
        margin: 0 auto 15px;
    }
    .main-news {
        padding: 60px 0;
        border-bottom: 1px solid #000;
    }
    .main-news-title-main {
        font-size: 40px;
        display: block;
        line-height: 1;
        margin: 0 0 10px 0;
    }
    .main-news-title-sub {
        letter-spacing: 0.15em;
    }
    .main-news-title {
        margin: 0 0 45px;
    }
    .main-news-box {
        height: 100px;
    }
    .main-news-box a {
        height: 100px;
    }
    .main-news-box-in {
        display: block;
        width: 100%;
    }
    .main-news-box-title {
        display: block;
        position: relative;
    }
    .main-news-box-title-tag {
        margin: 0;
        position: absolute;
        top: -30px;
        left: 8em;
    }
    .main-news-box-date {
        font-size: 15px;
    }
    .main-recruit {
        padding: 130px 10px 100px;
    }
    .main-recruit-wrap {
        display: block;
        font-size: 13px;
    }
    .main-recruit-title-main {
        font-size: 40px;
        margin: 0 auto 0px;
    }
    .main-recruit-title-sub {
        letter-spacing: 0.15em;
    }
    .main-recruit-title {
        margin: 0 auto 60px;
    }
    .main-recruit-title:after {
        bottom: -40px;
    }
    .main-recruit-copy {
        font-size: 16px;
        line-height: 2.4;
        margin: 0 auto 30px;
    }
    .main-recruit-link-wrap {
        display: block;
    }
    .main-recruit-link + .main-recruit-link {
        margin: 30px 0 0;
    }

    .f {
        padding: 70px 0 35px;
        text-align: center;
    }
    .f-logo {
        margin: 0 0 40px;
    }
    .f-menu {
        position: relative;
        top: 0;
        right: 0;
        padding: 0;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin: 0 0 30px;
    }
    .f-menu-link + .f-menu-link {
        margin: 0 20px 0 0;
    }
    .f-menu-link {
        text-align: left;
    }
    .f-menu-link a,
    .f-menu-link li span {
        font-size: 14px;
    }

    .bread {
        padding: 10px;
        position: relative;
        z-index: 3;
        white-space: nowrap;
    }
    .bread-item {
        font-size: 11px;
        padding: 0;
        margin: 0 25px 0 0;
    }

    .page-head {
        width: 100%;
        height: 320px;
        padding: 140px 0 0;
        margin: 0;
    }
    .page-head:before {
        height: 300px;
    }
    .page-head-title {
        font-size: 40px;
    }

    .page-message01 {
        padding: 50px 0 0;
        margin: 0 0 15px;
    }
    .page-message01-in {
        display: block;
        padding: 0;
    }
    .page-message01-title {
        text-align: center;
        padding: 0;
    }
    .page-message01-title-main {
        display: inline-block;
        font-size: 50px;
        text-align: center;
        letter-spacing: 0.1em;
        background-size: 100%;
        background-position: center;
        margin: 0 0 15px;
    }
    .page-message01-title-sub {
        margin: 0 0 45px;
        font-weight: bold;
    }
    .page-message01-title-copy {
        display: block;
        text-align: left;
        font-size: 25px;
        margin: 0 0 25px;
        line-height: 1.2;
        letter-spacing: normal;
    }
    .page-message01-img {
        margin: 0;
    }
    .page-message01-img img {
        width: 100%;
        height: auto;
    }
    .page-message02 {
        padding: 20px 0 50px;
        max-width: 100%;
    }
    .page-message02-text {
        font-size: 15px;
    }
    .page-company {
        padding: 70px 0;
    }
    .page-company-title {
        margin: 0 0 15px;
    }
    .page-company-info dl {
        padding: 15px 0;
    }
    .page-company-info dt {
        width: 24%;
        font-size: 16px;
    }
    .page-company-info dd {
        width: 76%;
        font-size: 16px;
    }
    .page-company-info-child {
        padding: 0;
    }
    .page-company-info-child dt {
        width: 53%;
    }
    .page-company-info-child dd {
        width: 47%;
    }
    .page-access {
        padding: 70px 0 0;
    }
    .page-access-title {
        font-size: 28px;
        margin: 0 0 20px;
    }
    .page-access-info {
        margin: 0 auto 35px;
    }
    .page-access-info-title {
        width: 120px;
        padding: 12px 0;
    }
    .page-access-map {
        margin: 0 auto 35px;
    }
    .page-access-map iframe {
        width: 100% !important;
    }

    .page-nav-links {
        display: block;
    }
    .page-nav-links-item {
        width: 100%;
    }
    .page-nav-links-item + .page-nav-links-item {
        border-left: 0;
        border-top: 1px solid #000;
    }
    .page-business01 {
        padding: 70px 0;
    }
    .page-business01-mv {
        margin: 0 auto 35px;
    }
    .page-business01-text {
        text-align: left;
        font-size: 16px;
        line-height: 2;
        margin: 0 0 40px;
    }
    .page-business01-text p br {
        display: none;
    }

    .page-business02 {
        padding: 70px 0 0;
    }
    .page-business02-title {
        margin: 0 0 35px;
    }
    .page-business02-title span {
        font-size: 28px;
    }
    .page-business02-image img {
        display: inline-block;
        max-width: 100%;
        height: auto;
    }
    .page-business02-image {
        text-align: center;
        padding: 25px 0 0;
        /* background-image: url(../img/business-bg-item01.avif);
    background-size: 380px 361px;
    background-position: center center;
    background-repeat: no-repeat; */
    }

    .page-business01-copy {
        width: calc(100% + 20px);
        margin: 0 0 0 -10px;
    }
    .philosophy h2 {
        font-size: 30px;
        margin-bottom: 60px;
    }
    .philosophy h2 span {
        font-size: 20px;
    }
    .phi_boxes {
        width: 100%;
        margin: 0 auto;
    }
    .phi_box {
        width: 100%;
        margin-left: 0;
        margin-bottom: 40px;
        padding: 10px;
    }
    .phi_box h3 {
        font-size: 21px;
        margin-bottom: 20px;
    }
    .phi_box p {
        font-size: 14px;
        line-height: 2;
        color: #666;
    }
    .phi_box .tag {
        width: 100px;
        height: 24px;
        line-height: 24px;
        font-size: 12px;
        /* text-align: right; */
        /* padding: 0 14px 0 0; */
        /* position: relative; */
        top: 15px;
        right: 10px;
        /* margin-bottom: 20px; */
    }

    .archive-cat {
        padding: 70px 0 35px;
    }
    .archive-cat-title {
        font-size: 28px;
    }
    .archive-cat-links {
        display: block;
    }
    .archive-cat-links a {
        width: 100%;
        padding: 18px;
        margin: 0 0 20px;
    }

    .archive-list-in {
        margin: 0 0 35px;
    }
    .archive-list-pagenation {
        flex-wrap: wrap;
    }
    .archive-list-pagenation a,
    .archive-list-pagenation span {
        font-size: 16px;
        margin: 5px;
    }

    .page-privacypolicy {
        padding: 70px 30px;
    }
    .page-privacypolicy-title {
        font-size: 24px;
        margin: 0 0 15px;
    }
    .page-privacypolicy-sub {
        font-size: 20px;
        line-height: 1.2;
        margin: 0 0 10px;
    }
    .page-privacypolicy-definition dt {
        width: 35px;
    }

    .interview-head:before {
        content: "";
        height: 410px;
        background-image: url(../img/interview-head-bg.avif);
        background-position: top center;
        background-size: 150% 100%;
    }
    .interview-lead {
        text-align: center;
    }
    .interview-lead-title {
        display: inline-block;
        font-size: 40px;
        letter-spacing: 0.1em;
        margin: 0 0 15px;
    }
    .interview-lead-sub {
        margin: 0 0 35px;
    }
    .recruit-mv {
        height: calc(100vh - 80px);
    }
    .recruit-mv-copybg {
        width: 62%;
        right: -4%;
    }
    .recruit-mv-copybg img {
        width: 100%;
        height: auto;
    }
    .recruit-mv-copy-main {
        font-size: 7vw;
    }
    .recruit-mv-copy-sub {
        font-size: 4vw;
    }
    .recruit-mv:after {
        width: 48%;
    }
    .recruit-mv-link {
        bottom: 10%;
    }

    .recruit-mission {
        padding: 140px 0;
    }
    .recruit-mission-wrap {
        margin: 0 10px;
    }
    .recruit-mission-title-main {
        font-size: 40px;
        display: inline-block;
    }
    .recruit-mission-title-sub {
        margin: 0 0 30px;
    }
    .recruit-mission-img01 {
        position: absolute;
        top: 2%;
        left: -30px;
        z-index: 1;
        width: 43%;
    }
    .recruit-mission-img02 {
        position: absolute;
        top: auto;
        bottom: 2%;
        right: -45px;
        z-index: 1;
        width: 47%;
    }
    .recruit-mission-img01 img,
    .recruit-mission-img02 img {
        width: 100%;
        height: auto;
    }

    .recruit-contents-in {
        display: block;
    }
    .recruit-contents-box {
        width: 100%;
        padding: 40px;
    }
    .recruit-contents-box:nth-child(2n + 1) {
        border-right: 0;
    }
    .recruit-contents-box-img {
        margin: 0 0 10px;
    }

    .post-head {
        padding: 30px 0;
    }
    .post-head-title {
        font-size: 26px;
        line-height: 1.4;
        margin: 0 0 15px;
    }
    .post-head-date {
        margin: 0 0 20px;
    }
    .post-head-cat span {
        padding: 2px 10px;
    }
    .post-body {
        padding: 70px 0;
    }
    .post-body h1 {
        font-size: 30px;
    }
    .post-body h2 {
        font-size: 28px;
    }
    .post-body h3 {
        font-size: 24px;
    }
    .post-body h4 {
        font-size: 20px;
    }
    .post-body h5 {
        font-size: 18px;
    }
    .post-body h6 {
        font-size: 16px;
    }
    .post-body li + li {
        margin: 10px 0 0;
    }
}

/* formrun */

/*------------------------------------------------------
# conact-info
-------------------------------------------------------*/
.page-contactinfo {
    padding: 110px 0;
    border-bottom: 1px solid #000;
    /* background-image: url(../img/bg-pattern.avif);
  background-repeat: repeat; */
}

.page-contact-lead {
    text-align: center;
    font-size: 18px;
    line-height: 2;
    font-weight: bold;
    margin: 0 0 70px;
}

.page-contact-products {
    text-align: center;
    margin: 0 auto;
}

.page-contact-products a {
    width: 390px;
    height: 213px;
    border: 1px solid #000;
    background-image: url(../img/bg-products.jpg);
    background-repeat: no-repeat;
    background-size: 390px 213px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto 10px;
}

.page-contact-products-title {
    font-size: 28px;
    font-weight: bold;
    margin: 0;
}

.page-contact-products-sub {
    font-size: 18px;
}

.page-contact-products-arrow {
    display: inline-block;
    position: absolute;
    bottom: 20px;
    right: 20px;
    transition: 0.2s;
}
.page-contact-products a:hover .page-contact-products-arrow {
    right: 10px;
}

.page-contactform {
    padding: 110px 0;
    border-bottom: 1px solid #000;
}

.page-contact-form-title {
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    margin: 0 0 40px;
}
.page-contact-form-title span {
    display: inline-block;
    position: relative;
}
.page-contact-form-title span:after {
    content: "";
    width: 100%;
    height: 1px;
    background: #000;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}
ul.page-contact-form-attention {
    margin: 0 auto 40px;
}
.page-contact-form-attention li {
    position: relative;
    line-height: 1.4;
    padding: 0 0 0 20px;
}
.page-contact-form-attention li:before {
    position: absolute;
    content: "・";
    display: inline-block;
    top: 1x;
    left: 0;
}

.page-contact-form-attention li + li {
    margin: 5px 0 0;
}

.content-contact-info {
    border-bottom: solid 1px #eaeaea;
}

.contact-info {
    max-width: 390px;
    margin: 0 auto;
    padding-bottom: 160px;
}

.contact-info__inner {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    background: url(../img/bg-products.jpg) no-repeat;
    background-size: cover;
    width: 100%;
    height: 213px;
    padding-left: 35px;
    position: relative;
    margin-bottom: 50px;
}
.contact-info__inner::after {
    content: "";
    display: block;
    width: 470px;
    height: 150px;
    background: #f4f4f4;
    position: absolute;
    left: -40px;
    bottom: -40px;
    z-index: -1;
}

.contact-info__title {
    font-size: 32px;
    font-family: "Oswald", sans-serif;
    font-weight: 400;
    margin-bottom: 15px;
    letter-spacing: 0.13em;
}

.contact-info__txt {
    font-size: 15px;
}

.contact-info .btn {
    margin-top: 17px;
    position: relative;
}
.contact-info .btn a {
    position: absolute;
    right: 0;
}

@media screen and (max-width: 767px) {
    .contact-info {
        padding-bottom: 100px;
    }

    .contact-info__inner {
        margin-bottom: 30px;
    }

    .contact-info__inner::after {
        width: 106%;
        left: -3%;
        bottom: -20px;
    }

    .contact-info__title {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .contact-info__txt {
        font-size: 12px;
    }
}
/*------------------------------------------------------
# conact-form
-------------------------------------------------------*/
.content-contact-form {
    padding-top: 120px;
    padding-bottom: 120px;
    border-bottom: solid 1px #eaeaea;
}

.contact-note {
    margin-bottom: 30px;
}

.contact-note__item {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 3px;
    position: relative;
    padding-left: 13px;
}
.contact-note__item::before {
    content: "・";
    position: absolute;
    left: 0;
    top: 1px;
}

.contact-form__item {
    border-bottom: solid 1px #eaeaea;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0;
}
.contact-form__item:first-child {
    border-top: solid 1px #eaeaea;
}
.contact-form__item.last {
    margin-bottom: 45px;
}
.contact-form__item dt {
    padding: 35px 0 35px 20px;
    width: 282px;
    position: relative;
}
.contact-form__item dd {
    padding: 25px 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    width: 680px;
    position: relative;
}

.form-required {
    font-size: 14px;
    line-height: 1;
    color: #fff;
    background: #dd4141;
    padding: 3px 9px;
    position: absolute;
    right: 0;
    top: 35px;
}

.form-select-wrap {
    position: relative;
}
.form-select-wrap::after {
    content: "";
    width: 9px;
    height: 7px;
    background: url(../img/icon-select.png) no-repeat;
    background-size: 100%;
    display: inline-block;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
}

.form-select {
    border: none;
    -webkit-appearance: none;
    appearance: none;
    position: relative;
}
.form-select::-ms-expand {
    display: none;
}

.postal-code-search {
    display: inline-block;
    margin-left: 25px;
}
.postal-code-search a {
    display: block;
}
.postal-code-search a:hover {
    background: #fff;
    outline: 1px solid #000;
}

input[type="text"].form-txt,
textarea.form-txtarea,
select.form-select,
.postal-code-search a {
    width: 100%;
    display: inline-block;
    font-size: 14px;
    padding: 15px;
    background: #f4f4f4;
    margin: 0;
    border: 0;
}
input[type="text"].form-txt:focus,
textarea.form-txtarea:focus,
select.form-select:focus,
.postal-code-search a:focus {
    background: #fff;
    outline: 1px solid #000;
}
input[type="text"].form-txt.small,
textarea.form-txtarea.small,
select.form-select.small,
.postal-code-search a.small {
    width: 315px;
}

.form-txtarea {
    height: 230px;
    line-height: 1.7;
}

.form-txt {
    height: 46px;
}

.radio-item {
    margin-right: 40px;
}
.radio-item input[type="radio"] {
    display: none;
}

.radio {
    box-sizing: border-box;
    position: relative;
    display: inline-block;
    padding-left: 27px;
    vertical-align: middle;
}

.radio::after {
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    margin-top: -9px;
    width: 16px;
    height: 16px;
    content: "";
    background: #d3d3d3;
    border-radius: 50%;
}

.radio::before {
    position: absolute;
    top: 50%;
    left: 5px;
    display: block;
    margin-top: -4px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #000;
    content: "";
    opacity: 0;
    z-index: 2;
}

input[type="radio"]:checked + .radio:before {
    opacity: 1;
}

.form-error {
    color: #dd4141;
    position: absolute;
    bottom: 5px;
    font-size: 14px;
    width: 100%;
    height: 15px;
    left: 0;
    bottom: 5px;
}

.contact-form__txt {
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.form-privacy-wrap {
    border: solid 1px #eaeaea;
    height: 210px;
    overflow-y: scroll;
    margin-bottom: 50px;
}

.form-privacy {
    padding: 40px;
}
.form-privacy .content-privacy__note.right {
    margin-bottom: 40px;
}

.form-privacy__title {
    font-size: 20px;
    margin-bottom: 20px;
}

.btn-contact-form button {
    font-size: 16px;
    width: 350px;
    height: 60px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: solid 1px #000;
    letter-spacing: 0.15em;
    transition: all 0.4s;
    margin: 0 auto;
}
.btn-contact-form button:hover {
    background: #000;
    color: #fff;
    cursor: pointer;
}

@media screen and (max-width: 767px) {
    .content-contact-form {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .contact-form__item {
        display: block;
        font-size: 14px;
    }
    .contact-form__item dt {
        padding: 20px 15px 0;
        width: 100%;
    }
    .contact-form__item dd {
        display: block;
        width: 100%;
        padding: 10px 15px 20px;
        margin: 0;
    }

    input[type="text"].form-txt,
    textarea.form-txtarea,
    select.form-select {
        font-size: 16px;
        width: 100%;
    }

    .contact-form__item.last {
        margin-bottom: 20px;
    }

    .radio-item {
        display: inline-block;
        margin-bottom: 10px;
        margin-right: 10px;
    }

    .form-required {
        position: static;
        display: inline-block;
        margin-left: 10px;
    }

    .postal-code-search {
        margin-left: 0;
        margin-top: 10px;
    }

    .form-txtarea {
        height: 180px;
    }

    .form-privacy-wrap {
        margin-bottom: 30px;
    }

    .form-privacy {
        padding: 20px 15px;
    }

    .form-privacy__title {
        font-size: 17px;
    }

    .btn-contact-form button {
        font-size: 14px;
        width: 100%;
        height: 50px;
    }

    .form-error {
        font-size: 12px;
        left: 15px;
        bottom: 3px;
    }
}
/*-------------------------------------------------------
# contact-form-confirm 確認画面
-------------------------------------------------------*/
.formrun-system-confirm .formrun {
    padding-top: 50px;
}
.formrun-system-confirm .btn-contact-form {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
}
.formrun-system-confirm .btn-contact-form button {
    margin: 0;
}
.formrun-system-confirm .btn-contact-form button + button {
    margin-left: 30px;
}

.contact-confirm__txt {
    text-align: center;
}

@media screen and (max-width: 767px) {
    .contact-confirm__txt {
        line-height: 1.5;
        font-size: 14px;
    }

    .formrun-system-confirm .btn-contact-form button + button {
        margin-left: 15px;
    }
}
/*-------------------------------------------------------
# contact-form-thanks 送信完了
-------------------------------------------------------*/
.contact-thanks .content-contact-form {
    padding: 100px 0 120px;
}

.contact-thanks__txt {
    padding: 150px 50px;
    margin-bottom: 30px;
    line-height: 1.8;
    text-align: center;
    border: solid 1px #eaeaea;
}

@media screen and (max-width: 767px) {
    .contact-thanks .content-contact-form {
        padding: 30px 0 50px;
    }

    .contact-thanks__txt {
        padding: 40px 17px;
        margin-bottom: 20px;
        font-size: 14px;
    }
}
.is-hidden {
    display: none;
}

@media screen and (max-width: 896px) {
    .page-contact-products a {
        width: 337px;
        height: 184px;
        background-size: 337px auto;
    }

    .page-contactinfo {
        padding: 70px 0;
    }

    .page-contact-lead {
        font-size: 16px;
        line-height: 1.6;
        margin: 0 0 40px;
    }

    .page-contact-products p {
        font-size: 14px;
    }

    .page-contactform {
        padding: 70px 0;
    }

    .page-contact-form-title {
        font-size: 24px;
    }
    ul.page-contact-form-attention {
        margin: 0 auto 20px;
    }
    .page-contact-form-attention li {
        font-size: 14px;
    }

    .contact-form__item dt {
        font-weight: bold;
        box-sizing: border-box;
    }
    .contact-form__item dd {
        box-sizing: border-box;
    }
    .form-txt {
        height: auto;
    }
    input[type="text"].form-txt,
    textarea.form-txtarea,
    select.form-select,
    .postal-code-search a {
        padding: 15px;
        box-sizing: border-box;
        border: 0;
    }

    .interview-mv-head {
        width: 100%;
        margin: 0;
        height: auto;
        padding: 25px 20px 15px;
        background-image: url(../img/interview-mv-head-bg.avif);
        background-size: 100% 100%;
        display: block;
        z-index: 3;
    }
    .interview-mv-head-title {
        font-size: 24px;
        top: -10px;
        left: 10px;
    }
    .interview-mv-head-in {
        width: 100%;
        display: block;
    }
    .interview-mv-head-copy {
        font-size: 20px;
        margin: 0 0 10px;
    }
    .interview-mv-head-info {
        padding: 0;
    }
    .interview-mv-head-info:before {
        content: "";
        width: 0;
        height: 0;
        background: none;
        top: 0;
        left: 0;
    }
    .interview-mv-head-info-shop {
        margin: 0 0 10px;
    }
    .interview-related-in {
        display: block;
    }
    .interview-related-in .main-interview-box {
        width: 100%;
        padding: 50px 40px 30px;
    }
}

@media screen and (max-width: 932px) and (orientation: landscape) {
    .mv-slide .pc,
    .recruit-mv-photo .pc {
        display: block !important;
    }
    .mv-slide .sp,
    .recruit-mv-photo .sp {
        display: none;
    }
    .mv-copy {
        top: 27%;
        left: 60px;
        font-size: 7vw;
    }
    .recruit-mv-copy-main {
        font-size: 3.2vw;
    }
    .recruit-mv-copy-sub {
        font-size: 1.75vw;
    }
    .recruit-mv-copybg {
        width: 25%;
        height: 100%;
        position: absolute;
        top: 0;
        right: 3%;
        z-index: 2;
        transform: translateY(20px);
    }
    .recruit-mv-copybg img {
        width: 100%;
        height: auto;
    }
}

/* ===== グローバルナビ ドロップダウン ===== */

.h-menu-links-haschild-title {
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    cursor: default;
    position: relative;
    line-height: 1;
}

.h-menu-links-haschild-title:before {
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 2px;
    background: #000;
    position: absolute;
    top: -5px;
    left: 0;
    right: 0;
    margin: 0 auto;
    opacity: 0;
    transition: 0.3s;
}
.h-menu-links
    li.h-menu-links-haschild:hover
    .h-menu-links-haschild-title:before {
    top: -10px;
    opacity: 1;
}

/* PC: ドロップダウン親 */
.h-menu-links-haschild {
    position: relative;
}

/* PC: ドロップダウンリスト */
.h-menu-links-haschild-list {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    background: #fff;
    border: 1px solid #000;
    white-space: nowrap;
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.3s ease,
        transform 0.3s ease,
        visibility 0.3s ease;
    z-index: 100;
    display: flex;
    flex-direction: column;
}
.h-menu-links-haschild:hover .h-menu-links-haschild-list {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* ドロップダウン内 li */
.h-menu-links-haschild-list li {
    margin: 0 !important;
}
.h-menu-links-haschild-list li + li {
    margin: 0 !important;
    border-top: 1px solid #e0e0e0;
}

/* ドロップダウン内リンク */
.h-menu-links-haschild-list li a {
    display: block;
    padding: 14px 20px;
    font-size: 13px;
    font-family:
        "Yu Gothic Medium", "游ゴシック", YuGothic, "メイリオ", Meiryo,
        sans-serif;
    font-weight: normal;
    letter-spacing: 0.05em;
    white-space: nowrap;
}
.h-menu-links-haschild-list li a:before {
    display: none !important;
}

/* ===== SP対応 ===== */
@media screen and (max-width: 896px) {
    /* ▼ PC用のmarginをSPで上書き（specificity競合を解消） */
    .h-menu-links li + li.h-menu-links-haschild {
        margin: 40px 0 0;
    }

    .h-menu-links-haschild {
        position: static;
    }

    /* SP: アコーディオンタイトル */
    .h-menu-links-haschild-title {
        font-size: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        cursor: pointer;
    }
    .h-menu-links-haschild-title:after {
        content: "";
        display: inline-block;
        width: 10px;
        height: 10px;
        border-right: 2px solid #000;
        border-bottom: 2px solid #000;
        transform: rotate(45deg);
        transition: transform 0.3s ease;
        margin-top: -4px;
    }
    .h-menu-links-haschild.is-open .h-menu-links-haschild-title:after {
        transform: rotate(-135deg);
        margin-top: 4px;
    }

    /* SP: アコーディオンリスト */
    .h-menu-links-haschild-list {
        position: static !important;
        transform: none !important;
        background: transparent;
        border: none;
        border-top: 0;
        min-width: auto;
        width: 100%;
        opacity: 1 !important;
        visibility: visible !important;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        margin-top: 15px;
    }
    .h-menu-links-haschild.is-open .h-menu-links-haschild-list {
        max-height: 200px;
    }
    .h-menu ul.h-menu-links-haschild-list li a {
        font-size: 20px;
        padding: 12px 20px;
        text-align: center;
    }
}
