@charset "utf-8";

body {
    font-family: Optima;
}

body:after{
    display:none;
}

@font-face {
    font-family: "Optima";
    src: url("/common/fonts/Optima.ttf") format("truetype");
    font-style: normal;
    font-display: swap;
}

/*   共通   */
.sp {
    display: none;
}

.tab {
    display: none;
}

.text-white {
    color: #ffffff;
}

.bg-black {
    background-color: #000000;
}

.monochrome {
    filter: grayscale(100%);
}

.flex {
    display: flex;
}

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

.text-right {
    text-align: right;
}

.es-section {
    position: relative;
}

.fa-times {
    position: absolute;
    padding: .5em;
    border-radius: 50%;
    background-color: #888888;
    transition: .5s;
}

.fa-times:hover {
    cursor: pointer;
    background-color: #b9b9b9;
}

.container {
    width: 78%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.section-title {
    font-size: 1.5em;
    letter-spacing: .2em;
}

.section-subtitle {
    font-size: 1.8em;
    line-height: 1.8em;
    letter-spacing: .2em;
    margin: 1em 0;
    font-family: serif;
}

.section-text {
    font-size: .9em;
    line-height: 2.4em;
}

.section-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and ( max-width: 768px ) {
    .pc {
        display: none;
    }

    .tab {
        display: block;
    }

    .es-left {
        width: 100vw;
    }

    @media screen and (orientation: landscape) {
        .is-mobile .es-left {
            width: 50vw;
        }

        .is-mobile .sp, .is-mobile .tab {
            display: none;
        }

        .is-mobile .pc {
            display: block;
        }
    }

    .sp-top {
        background-size: cover;
        background-position: center;
    }

    .sp-bottom {
        position: relative;
    }

    .section-subtitle {
        font-size: 2em;
        margin: .5em;
    }

    .section-text {
        font-size: 1.2em;
        line-height: 1.8em;
    }
}

@media screen and ( max-width: 599px ) {
    .tab {
        display: none;
    }

    .sp {
        display: block;
    }

    .section-title {
        font-size: 1em;
    }

    .section-subtitle {
        font-size: 1.2em;
    }

    .section-text {
        font-size: .8em;
        line-height: initial;
    }

    .container {
        width: 85%;
    }
}

@media screen and (orientation: landscape) {
    .is-mobile .container {
        position: initial;
        transform: translateX(0);
        margin: 0 auto;
        padding: 2em 0;
    }
}

/*   アニメーション   */
.clip-path_1 {
    clip-path: inset(0 0 100% 0);
    animation: logoAnime_1 .3s forwards linear;
    animation-delay: .5s;
}

@keyframes logoAnime_1 {
    0% {
        clip-path: inset(0 0 100% 0);
    }
    100% {
        clip-path: inset(0);
    }
}

.clip-path_2 {
    opacity: 0;
    animation: fadeInAnime .3s forwards;
    animation-delay: .8s;
}

.clip-path_3 {
    clip-path: inset(100% 0 0 0);
    animation: logoAnime_2 .3s forwards linear;
    animation-delay: .8s;
}

@keyframes logoAnime_2 {
    0% {
        clip-path: inset(100% 0 0 0);
    }
    100% {
        clip-path: inset(0);
    }
}

.clip-path_4 {
    opacity: 0;
    animation: fadeInAnime .3s forwards;
    animation-delay: 1.2s;
}

.clip-path_5 {
    opacity: 0;
    animation: fadeInAnime 3s forwards ease-in-out;
    animation-delay: 2s;
}

.active .container {
    animation-name: fadeInAnime;
    animation-duration: 2.5s;
    animation-fill-mode:forwards;
    animation-delay: .8s;
    opacity: 0;
}

@keyframes fadeInAnime {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.active .eachTextAnime span {
    opacity: 0;
    animation:text_anime_on 2s ease-in-out forwards;
}

@keyframes text_anime_on {
    0% {opacity:0; text-shadow: 0 0 0 #fff,0 0 0 #fff;}
    50% { opacity:1;text-shadow: 0 0 10px #fff,0 0 15px #fff; }
    100% {opacity:1; text-shadow: 0 0 0 #fff,0 0 0 #fff;}
}

/*   ローディング   */
.loading-area {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 999;
    background: #ffffff;
}

svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 25%;
}

@media screen and (max-width: 1000px) {
    svg {
        width: 35%;
    }
}

@media screen and (max-width: 768px) {
    svg {
        width: 35%;
    }
}

@media screen and (max-width: 599px) {
    svg {
        width: 50%;
    }
}

@media screen and (orientation: landscape){
    .is-mobile svg {
        height: 75%;
    }
}

/*   ヘッダー   */
header {
    width: fit-content;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 999;
}

header ul li + li::before {
    content: "";
    width: 1px;
    height: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: #555;
    position: absolute;
    z-index: 2;
}

header ul li a {
    display: block;
    padding: 17px 18px 15px 20px;
    font-size: 14px;
    letter-spacing: .13em;
    color: #ddd;
    line-height: 1.2em;
    position: relative;
    transition: .5s;
    z-index: 1;
    background-color: #e9e9e9;
}

header ul li a:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    transform: scale(1, 1);
    transition: .5s;
    z-index: -1;
}

header ul li a:hover {
    transition: .5s;
    color: #000000;
}

header ul li a:hover:before{
    transition: .5s;
    transform: scale(0, 1);
    transform-origin: center;
}

header ul .active a {
    color: #000000;
}

header ul .active a:before {
    transform: scale(0, 1);
}

header .header-inner #open_nav {
    font-size: 2em;
    padding: .5em;
    display: none;
}

header .header-inner #close_header {
    display: none;
}

@media screen and (max-width: 772px){

    header .header-inner #open_nav {
        display: block;
        transition: .5s;
    }

    header .header-inner #close_header {
        display: block;
    }

    .header-modal-area {
        display: none;
        height: 60vh;
        width: 80vw;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: #313131f9;
    }

    header .header-inner ul {
        flex-direction: column;
        text-align: center;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    header .header-inner ul li + li {
        position: relative;
    }

    header .header-inner ul li + li::before {
        top: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background-color: #555;
    }

    header .header-modal-area .fa-times {
        top: 1em;
        right: 1em;
    }

    header ul li a, header ul li a:before {
        background-color:  initial;
    }
}

@media screen and (max-width: 599px) {
    header .header-inner ul {
        width: 60%;
    }
}

@media screen and (orientation: landscape) {
    .is-mobile .header-modal-area {
        height: 80%;
    }

    .is-mobile header ul li a {
        padding: .7em;
    }
}

/*   HOME   */
.home {
    background-image: url("/common/images/home01.jpg");
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: 4s;
}

.bg-transparent {
    height: 100%;
    background-color: #ffffff45;
    background-size: 2px 2px;
    position: absolute;
    top: 0;
    width: 100vw;
}

.home-inner p {
    color: #000000;
    font-size: 1.8em;
    font-weight: bold;
    position: absolute;
    bottom: 8%;
    width: 100%;
    margin: 0;
}

@media screen and ( max-width: 768px ) {
    .home-inner p {
        font-size: 1.6em;
        bottom: 12%;
    }
}

@media screen and ( max-width: 599px ) {
    .home-inner p {
        font-size: 1em;
        bottom: 15%;
    }
}

@media screen and (orientation: landscape) {
    .is-mobile .home-inner p {
        bottom: 5%;
    }
}

/*   CONCEPT   */
.concept-2 .section-subtitle span {
    color: #4e4e4e;
    font-size: 0.6em;
    letter-spacing: initial;
    position: relative;
    font-family: initial;
}

.concept-2 .section-subtitle span:before {
    content: "";
    width: 100px;
    height: 1px;
    background-color: #cacaca;
    position: absolute;
    bottom: -25px;
}

@media screen and ( max-width: 768px ){
    .concept-1 .section-subtitle {
        line-height: 1.2em;
    }

    .concept-1 .section-text {
        line-height: 1.7em;
    }

    .concept-1 .sp-top {
        background-image: url("/common/images/concept01.jpg");
    }

    .concept-2 .sp-top {
        background-image: url("/common/images/concept02.jpg");
    }

    .concept-2 .section-subtitle span:before {
        width: 100%;
        bottom: -8px;
    }
}

@media screen and (max-width: 599px){
    .concept-1 .sp-bottom .container, .concept-2 .sp-bottom .container {
        width: 90%;
    }
}

@media screen and (orientation: landscape) {
    .is-mobile .concept-1 .container {
        margin-right: 0;
    }
}

/*   BALANCE   */
.balance-1 .modal-list {
    width: 100%;
    margin: 8em auto;
}

.balance-1 .modal-list li {
    width: 25%;
    font-size: 1.5em;
    position: relative;
}

.balance-1 .modal-list li:before{
    content: '\f078';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    display: block;
    width: 100%;
    position: absolute;
    top: -72px;
    animation: floatAnime 1.5s ease-in-out infinite;
}

@keyframes floatAnime {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(8px);
    }
    100% {
        transform: translateY(0);
    }
}

.balance-1 .modal-list li span {
    transition: 1s;
}

#quality {
    animation-delay: .5s;
}

#academic {
    animation-delay: 1s;
}

#humanity {
    animation-delay: 1.5s;
}

.active .modal-list li {
    animation: fadeInAnime 2s both;
}

.balance-1 .modal-list li:hover {
    transition: 1s;
    cursor: pointer;
}

.balance-1 .modal-list li:hover span:before, .balance-1 .modal-list li:hover span:after {
    transition: 1s;
    opacity: 1;
}

.balance-1 .modal-list li span {
    font-size: 1.6em;
    padding: .4em;
    border-radius: 50%;
    position: relative;
}

.balance-1 .modal-list li span:before, .balance-1 .modal-list li span:after {
    opacity: .6;
    position: absolute;
    content: "";
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.balance-1 .modal-list li span:before {
    z-index: -1;
    padding: 1.4em;
    transition: .5s;
}

.balance-1 .modal-list li span:after {
    z-index: -2;
    padding: 1.8em;
    transition: .5s;
}

.balance-1 .modal-list li:nth-child(1) span {
    background: #00adad;
}

.balance-1 .modal-list li:nth-child(1) span:before {
    background: #00adad70;
}

.balance-1 .modal-list li:nth-child(1) span:after {
    background: #00adad50;
}

.balance-1 .modal-list li:nth-child(2) span {
    background: #c6ca40;
}

.balance-1 .modal-list li:nth-child(2) span:before {
    background: #c6ca4070;
}

.balance-1 .modal-list li:nth-child(2) span:after {
    background: #c6ca4050;
}

.balance-1 .modal-list li:nth-child(3) span {
    background: #f94a89;
}

.balance-1 .modal-list li:nth-child(3) span:before {
    background: #f94a8970;
}

.balance-1 .modal-list li:nth-child(3) span:after {
    background: #f94a8950;
}

.balance-1 .modal-list li:nth-child(4) span {
    background: #51bb39;
}

.balance-1 .modal-list li:nth-child(4) span:before {
    background: #51bb3970;
}

.balance-1 .modal-list li:nth-child(4) span:after {
    background: #51bb3950;
}

.balance-1 .modal-list li p {
    position: absolute;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1.5em;
    letter-spacing: .2em;
    inline-size: max-content;
}

.balance-1 .modal-area {
    display: none;
    width: 40%;
    height: 85%;
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #272424;
}

.balance-1 .modal-area:before {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    animation: borderTopAnime .3s linear 0s forwards, borderSideAnime .4s linear .4s forwards;
}

@keyframes borderTopAnime {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

@keyframes borderSideAnime {
    0% {
        height: 0;
    }
    100% {
        height: 100%;
    }
}


.balance-1 .modal01:before {
    border-top: 2px solid #00adad;
    border-left: 2px solid #00adad;
    border-right: 2px solid #00adad;
}

.balance-1 .modal02:before {
    border-top: 2px solid #c6ca40;
    border-left: 2px solid #c6ca40;
    border-right: 2px solid #c6ca40;
}

.balance-1 .modal03:before {
    border-top: 2px solid #f94a89;
    border-left: 2px solid #f94a89;
    border-right: 2px solid #f94a89;
}

.balance-1 .modal04:before {
    border-top: 2px solid #51bb39;
    border-left: 2px solid #51bb39;
    border-right: 2px solid #51bb39;
}

.balance-1 .modal-area .modal-close {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 1em;
    cursor: pointer;
}

.balance-1 .modal-area .modal-close p {
    font-weight: 600;
    font-size: 1.4em;
}

.balance-1 .modal01 .modal-close, .balance-1 .modal01 .modal-number span {
    background-color: #00adad;
}

.balance-1 .modal02 .modal-close, .balance-1 .modal02 .modal-number span {
    background-color: #c6ca40;
}

.balance-1 .modal03 .modal-close, .balance-1 .modal03 .modal-number span {
    background-color: #f94a89;
}

.balance-1 .modal04 .modal-close, .balance-1 .modal04 .modal-number span {
    background-color: #51bb39;
}

.balance-1 .modal-area .modal-number span {
    top: -14px;
    padding: .4em;
    border-radius: 50%;
    position: relative;
}

.balance-1 .modal-area .modal-number span:before, .modal-area .modal-number span:after {
    position: absolute;
    content: "";
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.balance-1 .modal-area .modal-number span:before {
    z-index: -1;
    padding: 1.4em;
}

.balance-1 .modal-area .modal-number span:after {
    z-index: -2;
    padding: 1.8em;
}

.balance-1 .modal01 .modal-number span:before {
    background-color: #00adad70;
}

.balance-1 .modal01 .modal-number span:after {
    background-color: #00adad50;
}

.balance-1 .modal02 .modal-number span:before {
    background-color: #c6ca4070;
}

.balance-1 .modal02 .modal-number span:after {
    background-color: #c6ca4050;
}

.balance-1 .modal03 .modal-number span:before {
    background-color: #f94a8970;
}

.balance-1 .modal03 .modal-number span:after {
    background-color: #f94a8950;
}

.balance-1 .modal04 .modal-number span:before {
    background-color: #51bb3970;
}

.balance-1 .modal04 .modal-number span:after {
    background-color: #51bb3950;
}

.balance-1 .modal-area span {
    font-size: 2em;
}

.balance-1 .modal-area .container span {
    font-size: 2em;
}

.balance-1 .modal-area h3 {
    font-size: 1.2em;
    letter-spacing: .3em;
    line-height: 2em;
}

.balance-1 .modal-area .modal-img {
    width: 100%;
    height: 32vh;
}

.balance-1 .modal-area .modal-img img {
    height: 100%;
    object-fit: cover;
}

.balance-1 .modal-area .container p {
    margin-top: 2em;
    overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.balance-1 .modal-area .container p::-webkit-scrollbar {
    display: none;
}

.balance-2 .section-img {
    filter: saturate(0.5);
}

@media screen and (max-width: 1199px) {
    .balance-1 .modal-area {
        width: 68%;
    }

    .balance-1 .modal-area .container {
        width: 80%;
    }
}

@media screen and ( max-width: 768px ) {
    .balance-1 .modal-list li {
        font-size: 1.2em;
    }

    .balance-1 .modal-area {
        height: 85%;
        width: 70%;
        top: 50%;
    }

    .balance-1 .modal-area .container p {
        height: 23vh;
    }

    .balance-2 .sp-top {
        background-image: url("/common/images/balance01.jpg");
        filter: saturate(0.5);
    }
}

@media screen and ( max-width: 599px ) {
    .balance-1 .modal-list {
        margin: 0 auto;
    }

    .balance-1 .modal-list li {
        font-size: 1em;
        width: 50%;
        margin: 4em 0;
    }

    .balance-1 .modal-list li:before{
        top: -50px;
    }

    .balance-1 .modal-list li p {
        top: 40px;
    }

    .balance-1 .modal-area {
        width: 90%;
        transform: translate(-50%, -45%);
    }

    .balance-1 .modal-area .container {
        width: 85%;
        height: 100%;
        padding: 2em 0 0 0;
    }

    .balance-1 .modal-area span {
        font-size: 1em;
    }

    .balance-1 .modal-area .container span {
        font-size: 1.5em;
    }

    .balance-1 .modal-area h3 {
        font-size: 1.2em;
    }

    .balance-1 .modal-area .modal-img {
        height: 25vh;
    }

    .balance-1 #modal04 .modal-img {
        height: 20vh;
    }

    .balance-1 .modal-area .container p {
        font-size: .7em;
        height: 40%;
    }

    .balance-1 .modal-area .modal-close {
        padding: .5em;
    }
}

@media screen and (orientation: landscape) {
    .is-mobile .balance-1 .section-subtitle {
        margin: 0;
    }

    .is-mobile .balance-1 .section-text {
        font-size: .5em;
    }

    .is-mobile .balance-1 .modal-list {
        flex-flow: row;
        margin: 2em 0;
    }

    .is-mobile .balance-1 .modal-list li {
        margin: 0;
    }

    .is-mobile .balance-1 .modal-area {
        height: fit-content;
        padding: 1em;
        top: initial;
    }

    .is-mobile .balance-1 .modal-area .container {
        padding: 0;
    }

    .is-mobile .balance-1 .modal-area .modal-img img {
        object-fit: contain;
    }

    .is-mobile .balance-1 .modal-area p {
        line-height: 2em;
        padding-top: 1em;
    }
}

/*   CASE   */
.case .section-title-area {
    height: 20vh;
    padding: 4em;
}

.case .section-subtitle {
    margin: 0;
}

.case .swiper-container {
    top: 22%;
    height: 78vh;
    width: 100%;
    position: absolute;
    overflow: visible;
    padding: 5.5em 0;
}

.case .swiper-slide {
    height: 75%;
    opacity: .5;
    transition: .7s;
}

.case .swiper-slide-active {
    transform: scale(1.4);
    opacity: 1;
}

.case .swiper-slide .image_box {
    display: flex;
    height: 90%;
}

.case .swiper-slide .image_box img {
    width: 100%;
    height: 80%;
    object-fit: contain;
}

.case .swiper-slide .image_box ul {
    height: 90%;
    display: flex;
    flex-flow: column;
}
.case .swiper-slide .image_box ul li {
    height: 50%;
}

.case .swiper-slide .image_box ul li img {
    height: 100%;
}

.case .swiper-slide .image_box ul li:nth-child(1) {
    padding-bottom: .25em;
}

.case .swiper-slide .image_box ul li:nth-child(2) {
    padding-top: .25em;
}

.case .swiper-slide .image_box .left_box, .case .swiper-slide .image_box .right_box {
    position: absolute;
    width: 50%;
}

.case .swiper-slide .image_box .left_box {
    width: 46%;
    height: 63%;
    padding: 1.5em 1.5em 0;
    top: 5em;
    left: 0;
}

.case .swiper-slide .image_box .right_box {
    width: 57%;
    height: 70%;
    right: 0;
    bottom: 0;
    padding: 1.5em 1.5em 0;
    box-shadow: -3px -3px 5px #3c3c3c;
}

.case .swiper-slide .image_box .two-image {
    height: 70%;
    padding: .5em;
}

.case .swiper-slide .image_box .two-image img {
    width: 70%;
}

.case .swiper-pagination {
    bottom: 3em;
}

@media screen and (max-width: 768px) {
    .case .section-title-area {
        height: 15vh;
        padding: 1em;
    }

    .case .swiper-container {
        height: 85vh;
        top: 15%;
        padding: 7em 0;
    }

    .case .swiper-slide {
        height: 82%;
    }

    .case .swiper-slide .section-text {
        margin-bottom: 1em;
    }

    .case .swiper-slide .image_box {
        flex-direction: column;
    }

    .case .swiper-slide .image_box img {
        width: 80%;
        height: 90%;
    }

    .case .swiper-slide .image_box .left_box, .case .swiper-slide .image_box .right_box {
        width: 100%;
        margin: 0;
        height: 50%;
        padding: 1.5em 1em 1em;
        position: initial;
    }

    .case .swiper-slide .image_box .right_box {
        box-shadow: none;
        transform: scale(1);
    }

    .case .swiper-slide .image_box .left_box .left-image {
        height: 90%;
        margin: 0;
    }

    .case .swiper-slide .image_box .two-image img {
        width: 100%;
    }

    .case .swiper-slide .image_box ul {
        flex-flow: initial;
    }

    .case .swiper-slide .image_box ul li {
        height: 100%;
        width: 50%;
    }

    .case .swiper-slide .image_box ul li:nth-child(1) {
        padding: 0 .5em 0 0;
    }

    .case .swiper-slide .image_box ul li:nth-child(2) {
        padding: 0 0 0 .5em;
    }
}

@media screen and (max-width: 599px) {
    .case .swiper-container {
        top: 10%;
        height: 80%;
    }

    .case .swiper-slide {
        height: 100%;
    }

    .case .swiper-slide .section-text {
        font-size: .7em;
    }

    .case .swiper-slide .image_box {
        width: 80%;
        margin: 0 auto;
    }

    .case .swiper-slide .image_box ul {
        flex-flow: column;
    }

    .case .swiper-slide .image_box ul li {
        height: 50%;
        width: 100%;
    }

    .case .swiper-slide .image_box ul li:nth-child(1) {
        padding: 0;
    }

    .case .swiper-slide .image_box ul li:nth-child(2) {
        padding: .25em 0 0;
    }

    .case .swiper-slide .image_box .left_box, .case .swiper-slide .image_box .right_box {
        padding: .6em;
    }
    .case .swiper-pagination {
        bottom: 0;
    }
}

@media screen and (orientation: landscape) {
    .is-mobile .case .section-subtitle {
        font-size: 1em;
    }

    .is-mobile .case .swiper-container {
        top: 12%;
        padding: 4em 0;
        height: 88%;
    }

    .is-mobile .case .swiper-slide p {
        font-size: .5em;
    }

    .is-mobile .case .swiper-slide .image_box {
        flex-direction: row;
        height: 100%;
    }

    .is-mobile .case .swiper-slide .image_box ul {
        flex-flow: column;
    }

    .is-mobile .case .swiper-slide .image_box ul li {
        height: 50%;
        width: 100%;
        padding: 0;
    }

    .is-mobile .case .swiper-slide .image_box ul li:nth-child(2) {
        padding-top: .25em;
    }

    .is-mobile .case .swiper-slide .image_box .left_box, .is-mobile .case .swiper-slide .image_box .right_box {
        padding: .5em .5em 1em;
    }

    .is-mobile .case .swiper-slide .image_box .left_box, .is-mobile .case .swiper-slide .image_box .right_box {
        height: 100%;
    }
}

/*   GREETING1   */
.greeting {
    padding: 6em 0;
}

.greeting-top {
    padding-bottom: 2em;
}

.greeting .container {
    transform: initial;
    position: initial;
    margin: 0 auto;
    width: 65%;
}

.greeting .section-title-area {
    border-bottom: 1px solid #cacaca;
    padding: 0 3em 1em;
    width: fit-content;
    margin: 0 auto;
    margin-bottom: 1em;
}

.greeting .container .greeting-content-area {
    width: 70%;
}

.greeting .container .greeting-img-area {
    width: 30%;
    margin: auto 0 0 0;
    padding-left: 4em;
}

.greeting img {
    filter: drop-shadow(3px 1px 3px #000000);
    width: 100%;
}

@media screen and (max-width: 1200px) {
    .greeting .container {
        width: 78%;
    }
}

@media screen and (max-width: 768px) {
    .greeting .container .flex {
        flex-direction: column-reverse;
    }

    .greeting .section-subtitle {
        font-size: 1.7em;
    }

    .greeting .sp .greeting-img-area {
        margin: 0 auto 1em auto;
        padding: 0;
    }

    .greeting .sp .greeting-img-area img {
        height: 25vh;
        object-fit: contain;
    }

    .greeting .sp .greeting-content-area {
        width: 100%;
    }

    .greeting .sp .greeting-content-area p {
        padding-bottom: 1em;
    }
}

@media  screen and (max-width: 599px) {
    .greeting .section-subtitle {
        font-size: 1em;
    }

    .greeting .section-text {
        font-size: .7em;
    }

    .greeting .sp .greeting-img-area {
        padding: 0 0 1em;
    }
}

@media screen and (orientation: landscape) {
    .is-mobile .greeting .container .greeting-img-area {
        margin: 0 auto;
        padding: 0 1.5em;
    }

    .is-mobile .greeting .container .greeting-content-area {
        width: 100%;
    }
}

/*   GREETING2   */
.greeting .greeting-bottom {
    padding-bottom: 3em;
}

.greeting .greeting-bottom .flex {
    flex-wrap: wrap;
}

.greeting .container .item-container {
    width: 50%;
    padding: 1em;
}

.greeting .container .item-container span {
    padding: .5em 1.5em;
    background-color: #dedede;
}

.greeting .container .item-container table tr {
    border-bottom: 1px solid #cacaca;
    line-height: 3em;
}

.greeting .greeting-bottom div:nth-child(3) {
    width: 100%;
}

.greeting .greeting-bottom .item-container .belong-list li {
    list-style: circle;
    width: 50%;
    line-height: 3em;
}

.greeting .greeting-bottom .item-container .belong-list li p {
    width: 90%;
    border-bottom: 1px solid #cacaca;
}

.greeting .greeting-bottom .item-container .belong-list {
    width: 100%;
    transform: translateX(2em);
}

@media screen and (max-width: 1123px) {
    .greeting .greeting-bottom table tr td:nth-child(1) {
        width: 20%;
    }
}

@media screen and (max-width: 924px) {
    .greeting .greeting-bottom .flex {
        flex-direction: column;
    }

    .greeting .greeting-bottom .section-text {
        font-size: .7em;
    }

    .greeting .greeting-bottom .item-container {
        width: 100%;
    }

    .greeting .greeting-bottom .item-container table tr td:nth-child(1) {
        width: 30%;
    }

    .greeting .greeting-bottom div:nth-child(3) .flex {
        flex-direction: initial;
    }
}

@media screen and (max-width: 768px) {
    .greeting .greeting-bottom .section-text {
        font-size: .9em;
    }

    .greeting .greeting-bottom .item-container table {
        margin-top: 1em;
    }

    .greeting .greeting-bottom .item-container table tr {
        line-height: 2em;
    }

    .greeting .greeting-bottom .item-container ul li {
        width: 100%;
    }

    .greeting .greeting-bottom .item-container .belong-list {
        transform: translateX(0);
        margin-top: 1em;
    }

    .greeting .greeting-bottom .item-container .belong-list li, .greeting .greeting-bottom .item-container .belong-list li p {
        list-style: none;
        width: 100%;
    }
}

@media screen and (max-width: 599px) {
    .greeting {
        padding: 3em 0;
    }

    .greeting .greeting-bottom .section-text {
        font-size: .7em;
    }

    .greeting .greeting-bottom .item-container span {
        padding: .2em 1em;
    }

    .greeting .greeting-bottom .item-container table tr {
        line-height: 1.7em;
    }

    .greeting .greeting-bottom div:nth-child(3) .flex {
        flex-direction: column;
    }

    .greeting .greeting-bottom div:nth-child(3) ul li {
        line-height: 1.7em;
        width: 100%;
    }
}

/*   TO PARTNERS   */
.partners {
    background-color: #000000;
}

.partners .section-title-area, .recruit .section-title-area {
    border-bottom: 1px solid #888888;
    width: fit-content;
    padding: 1em 2em;
    margin: 0 auto 1em;
}

.partners .section-title-area .section-text{
    color: #888888;
}

.partners .container div p, .recruit .container div p {
    padding-bottom: 2em;
}

.partners .container div p:nth-child(2) {
    color: #888888;
}

.partners a, .recruit a {
    padding: 1em 5em;
    background-color: #353535;
    border-radius: 8em;
    color: #ffffff;
    transition: .5s;
}

.partners .btn-dl:hover {
    background-color: #545454;
}

.recruit {
    background-color: #cccccc;
}

.recruit .btn-contact:hover {
    background-color: #545454;
}

@media screen and (max-width: 850px){
    .partners .container, .recruit .container {
        width: 90%;
    }
}

@media screen and (max-width: 768px) {
    .partners .sp-top, .partners .sp-bottom {
        overflow-y: scroll;
    }

    .partners .sp-top .container, .partners .sp-bottom .container {
        position: initial;
        transform: initial;
        padding: 2em 0 3em;
        margin: 0 auto;
    }
}

@media screen and (max-width: 599px) {
    .partners .container div a, .recruit .container div a {
        padding: .7em 3em;
    }
}

@media screen and (orientation: landscape) {
    .is-mobile .partners .section-title-area, .is-mobile .recruit .section-title-area {
        padding: 0 2em;
    }

    .is-mobile .partners .container div p, .is-mobile .recruit .container div p {
        padding-bottom: 1em;
    }
}

/*   CONTACT   */
.contact #mfp_hidden {
    display: none;
}

.contact .container {
    width: 60%;
}

.contact .container div {
    line-height: 2em;
    margin-bottom: 1em;
}

.form-container {
    margin: 2em 0;
}

.form-container ul {
    flex-direction: column;
}

.form-container ul li {
    width: 100%;
    line-height: 3em;
    margin: 1em 0;
}

.contact .form-container ul li label, #confirm .form-container ul li p:nth-child(1) {
    width: 30%;
    text-align: left;
}

#confirm .form-container ul li p:nth-child(2) {
    width: 70%;
}

.contact .form-container ul li select, .contact .form-container ul li input, .contact .form-container ul li textarea {
    margin: 0 auto;
}

.contact .form-container ul li select {
    border: 1px solid #c5c5c5;
    border-radius: 5px;
}

.submit, .form-container ul li input, textarea {
    border: none;
}

.submit {
    width: fit-content;
    padding: 1.8em 14em;
    background-color: #000000;
    color: #ffffff;
    transition: .5s;
}

.submit:hover {
    background-color: #333333;
}

@media screen and (max-width: 960px) {
    .contact .container {
        width: 80%;
    }
}

@media screen and (max-width: 768px) {
    .contact .form-container ul li, #confirm .form-container ul li {
        flex-direction: column;
        line-height: 2em;
    }

    .contact .form-container ul li label, #confirm .form-container ul li p:nth-child(1), #confirm .form-container ul li p:nth-child(2) {
        width: 100%;
    }

    .contact .form-container ul li select {
        padding: 1em;
    }

    .contact .form-container ul li input{
        line-height: 3em;
    }

    .submit {
        padding: 1.2em 10em;
    }
}

@media screen and (max-width: 599px) {
    #confirm .container {
        width: 90%;
    }

    .contact .container div {
        line-height: initial;
    }

    .form-container {
        margin: 1em 0;
    }

    #confirm .form-container {
        margin: 0;
    }

    #confirm .container p:nth-child(2) {
        font-size: .8em;
    }

    .contact select, .contact input, .contact textarea {
        font-size: 16px;
    }

    .contact .form-container ul li, #confirm .form-container ul li {
        line-height: 1em;
    }

    .form-container ul li {
        margin: .5em 0;
    }

    .contact .form-container ul li select {
        padding: .5em;
    }

    .contact .form-container ul li input, textarea {
        line-height: 2em;
    }

    .submit {
        padding: 1em 5em;
    }

    .contact-thanks .container {
        width: 90%;
    }
}

@media screen and (orientation: landscape) {
    .is-mobile .contact .form-container ul li, .is-mobile #confirm .form-container ul li {
        flex-flow: row;
    }

    .is-mobile .contact .form-container ul li label, .is-mobile #confirm .form-container ul li p:nth-child(1), .is-mobile #confirm .form-container ul li p:nth-child(2) {
        width: 50%;
    }

    .is-mobile .contact .form-container ul li input, .is-mobile .contact .form-container ul li textarea {
        line-height: 1em;
    }

    .is-mobile .contact .container div {
        margin-bottom: .5em;
    }

    .is-mobile .contact .container div p {
        font-size: .5em;
    }

    .is-mobile .submit {
        padding: .5em 5em;
    }
}

.footer span {
    font-size: .5em;
}

@media screen and (max-width: 768px) {
    .footer .sp-bottom img {
        width: 50%;
    }
}


