/* 背景：#ffffff
メインカラー：#4682b4
サブカラー:#f5f5f5 */


.noto-sans-jp-noto {
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

.wdxl-lubrifont-tc-regular {
    font-family: "WDXL Lubrifont TC", sans-serif;
    font-weight: 400;
    font-style: normal;
}

html {
    scroll-behavior: smooth;
    background-color: #f5f5f5;
    color: #333333;
}

a {
    text-decoration: none;
    color: #333333;
}

h1 {
    font-weight: normal;
}


header {
    width: 100%;
    height: 90px;
    background-color: #f5f5f5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.select {
    color: #db7093;
}

header a:hover {
    color: #db7093;
    transition-duration: 0.3s;
}

header a {
    transition-duration: 0.3s;
}


.header_logo img {
    display: block;
    width: 40px;
    margin: 5px;
    animation-name: pyon;
    animation-duration: 8s;
    animation-iteration-count: infinite;
}

@keyframes pyon {
    1% {}

    90% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.header_logo {
    width: fit-content;
    font-size: clamp(25px, 5vw, 40px);
    display: flex;
    align-items: center;
}

.header_menu li {
    font-size: clamp(18px, 3vw, 25px);
    list-style-type: none;
    margin-left: 30px;
}

.header_menu ul {
    display: flex;
}

.header_menu {
    margin-right: 2%;
}

.andmore_block {
    margin-top: 10%;
    text-align: right;
}

.andmore {
    padding: 2%;
    width: fit-content;
    border-radius: 10px;
    border: solid 2px #f5f5f5;
    transition-duration: 0.3s;
    color: #f5f5f5;
}

.andmore:hover {
    background-color: #333333;
    border: solid 2px #333333;
    transition-duration: 0.3s;
}

.top_page {
    display: flex;
    justify-content: flex-end;
    margin-right: 2%;
}

.top_page img {
    width: 70px;
}

.top_page a {
    transform: translateY(0);
    transition-duration: 0.3s;
}

.top_page a:hover {
    transform: translateY(-10px);
}

footer {
    background-color: #4682b4;
    display: flex;
    justify-content: space-between;
    padding: 30px 0;
}

.footer_name {
    font-size: 1.8rem;
}

.footer_contact {
    margin-left: 5%;
}

.footer_menu li {
    list-style-type: none;
    margin-left: 20px;
}

.footer_menu ul {
    display: flex;
}

.footer_menu {
    display: block;
    margin: auto 5%;
}

.in1 {
    animation-name: in1;
    animation-delay: 0.7s;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    transform: translateX(-100vw);
}

@keyframes in1 {
    1% {
        transform: translateX(-100vw);
    }

    100% {
        transform: translateX(0);
    }
}

.in2 {
    animation-name: in2;
    animation-delay: 1s;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    transform: translateX(-100vw);
}

@keyframes in2 {
    1% {
        transform: translateX(-100vw);
    }

    100% {
        transform: translateX(0);
    }
}

.fade1 {
    animation-name: fade1;
    animation-delay: 0.7s;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fade1 {
    1% {}

    100% {
        opacity: 1;
    }
}


.fade2 {
    animation-name: fade2;
    animation-delay: 1s;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fade2 {
    1% {}

    100% {
        opacity: 1;
    }
}

.fade3 {
    animation-name: fade3;
    animation-delay: 1.5s;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fade3 {
    1% {}

    100% {
        opacity: 1;
    }
}


.translate {
    transition: all 0.5s ease;
}

.translate:hover {
    transform: translateX(5px) translateY(5px);
}

.font_big {
    font-size: clamp(20px, 5vw, 30px);
}

.font_nomal {
    font-size: clamp(15px, 2vw, 20px);
}

.font_small {
    font-size: clamp(12px, 1.2vw, 15px);
}

.strong {
    background-color: #333333;
    color: #f5f5f5;
    width: fit-content;
    padding: 2% 10% 2% 2%;
    margin-left: 0;
    margin-right: auto;
    border-left: solid 5px #db7093
}

.up {
    overflow: hidden;
    transition: 0.5s ease-in-out;
    transform: translateY(50px);
    opacity: 0;
}

.up.on {
    transform: translateY(0);
    opacity: 1;
}

.right {
    transition: 0.5s ease-in-out;
    transform: translateX(50px);
    opacity: 0;
}

.right.on {
    transform: translateX(0);
    opacity: 1;
}

.left {
    transition: 0.5s ease-in-out;
    transform: translateX(-50px);
    opacity: 0;
}

.left.on {
    transform: translateX(0);
    opacity: 1;
}

.shadow {
    box-shadow: 3px 3px 3px #c0c8d1;
}

.contents {
    margin-top: 90px;
}

.top {
    background-image: url(image/top_background.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right;
    padding: 7% 5%;
}

.top_consept {
    font-size: clamp(20px, 5vw, 30px);
}

.top_consept_2 {
    font-size: clamp(15px, 2vw, 20px);
}

.top_select img {
    width: 250px;
    margin: 0 2%;
}

.top_select {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
}

.top_profile {
    width: 70%;
    background-color: #4682b4;
    margin-right: 0;
    margin-left: auto;
    padding: 10% 0 10% 10%;
    margin-top: 10%;
}

.top_workhistory {
    width: 80%;
    line-height: 30px;
}


h2 {
    background-color: #333333;
    color: #f5f5f5;
    border-left: solid 5px #db7093;
    padding: 2% 20% 2% 2%;
    width: fit-content;
}

h3 {
    border-left: solid 5px #db7093;
    padding-left: 2%;
}

.main {
    display: flex;
    justify-content: space-between;
    margin: 10% 5%;
}

.main p {
    line-height: 30px;
}

.main_image {
    width: 50%;
}

.main_image img {
    width: 100%;
}

.time_table {
    padding-left: 20px;
}

.trip_top {
    display: flex;
    margin: 10% 5%;
}

.top_image {
    width: 50%;
}

.top_image img {
    width: 100%;
}

.setumei_block {
    margin-left: 3%;
}

.sub_point img {
    width: 100%;
}

.sub_point {
    margin: 10% 5%;
}

.sub_point_setumei td {
    text-align: center;
}

.sub_point_mobile {
    display: none;
}

.url {
    margin: 10% 5%;
}

.profile {
    width: 90%;
    margin: 10% 5%;
    height: fit-content;
}

.profile_main_contents {
    display: flex;
    width: 100%;

}

.profile_main_photo {
    flex-basis: 50%;
    width: 100%;
    text-align: center;
}

.profile_main_photo img {
    width: 80%;
    margin-top: 1em;
}

.profile_main {
    margin-bottom: 10%;
    flex-basis: 50%;
}

.profile_name {
    flex-wrap: wrap;
    width: 90%;
}

.career_1,
.career_2,
.career_3,
.career_4 {
    display: flex;
}

.career_days {
    margin-left: 32%;
    width: 10%;
}

.career_detail {
    flex-basis: 70%;
}


.career_border {
    border-bottom: solid 2px #333333;
    margin: 5% 0;
    padding-bottom: 5%;
}

.career_border2 {
    border-bottom: solid 2px #333333;
    border-top: solid 2px #333333;
    padding-top: 5%;
    padding-bottom: 5%;
}

.strength {
    width: 90%;
    margin: 10% 5%;
}

.strength_1,
.strength_2,
.strength_3 {
    display: flex;
    margin: 5% 0;
    border-bottom: solid 2px #333333;
    padding-bottom: 5%;
}

.strength_1 {
    margin-top: 5%;
}

.strength_no {
    flex-basis: 5%;
    text-align: right;
    padding-right: 2%;
}

.strength_heading {
    flex-basis: 23%;
    padding-right: 2%;
}

.strength_main {
    flex-basis: 70%;
}


.logo_block {
    margin: 10% 5%;
}

.main_contents_block {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.main_logo {
    font-size: clamp(11px, 1.2vw, 15px);
    width: 30%;
    max-width: 300px;
    min-width: 150px;
    padding: 2%;
    text-align: center;
}

.main_logo img {
    width: 100%;
}

.main_logo_dd {
    margin-left: 0;
}

.skill_block {
    display: flex;
}
.skill {
    margin: 10% 0;
}

.skill_img1,
.skill_img2 {
    display: flex;
    justify-content: center;
}

.skill_img {
    margin-right: 3%;
}

.skill_img img {
    width: 30%;
    max-width: 200px;
    margin: 1.3%;
}

.interests {
    margin: 10% 0;
}

.other_gallary img {
    width: 100%;
    max-width: 400px;
}

.other_gallary {
    display: flex;
    flex-wrap: wrap;
    width: 90%;
    margin: 0 auto 10% auto;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 700px;
}
.other_gallary p {
    font-size: clamp(8px, 2vw, 18px);
    width: 90%;
}
.gallary1,
.gallary2,
.gallary3,
.gallary4 {
    display: flex;
    justify-content: center;
    column-gap: 5%;
    margin-bottom: 5%;
}
.gallary1 img, .gallary2 img, .gallary3 img, .gallary4 img {
    display: block;
}

.gallary_image {
    position: relative;
}
.gallary_image a {
    display: block;
    width: 100%;
    height: 100%;
}
.gallary_image_detail {
    background-color: #333333;
    color: #f5f5f5;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    opacity: 0;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}
.gallary_image_detail:hover {
    opacity: 1;
    
}
.h3 {
    margin: 5%;
}

.slider img {
    width: 100%;
}


.main-slider img {
    max-width: 500px;    
}
.main-slider {
    margin-bottom: 5%;
}
.yoko img {
    max-width: 700px;
}
.other_main_image {
    display: flex;
    flex-direction: column;
    width: 50%;
}
.other_main {
    display: flex;
    justify-content: center;
    margin: 10% 5%;
}
.other_main_setumei {
    margin-left: 2%;
}
.thumbnail-slider img {
    opacity: 0.4;
}
.thumbnail-slider {
    max-width: 500px;
}
.slick-center img {
    opacity: 1;
}
.other_next_link {
    width: 15%;
    max-width: 150px;
    min-width: 80px;
    transition: 0.3s;
}
.other_back_link {
    width: 15%;
    max-width: 150px;
    min-width: 80px;
    transition: 0.3s;
}
.other_next {
    display: flex;
    width: 90%;
    margin: 10% 5% 0 5%;
    justify-content: space-between;
}
.other_next_text {
    display: flex;
    width: 90%;
    margin: 0 5%;
    justify-content: space-between;
}
.other_next_link img:hover {
    transition: 0.3s;
    border-radius: 50%;
}
.other_back_link img:hover {
    transition: 0.3s;
    border-radius: 50%;
}
.other_next_link img, .other_back_link img {
    transition: 0.3s;
}


.other_next img {
    width: 100%;
}
.other_photopage {
    margin: 2% 5% 10% 5%;
    text-align: end;
}
.other_photopage a {
    background-color: #333333;
    color: #f5f5f5;
    padding: 10px;
    transition: 0.3s;
    border-radius: 10px;
    border: 2px solid #f5f5f5;
}
.other_photopage a:hover {
    background-color: #f5f5f5;
    color: #4682b4;
    border: 2px solid #4682b4;
    transition: 0.3s;
}
.other_illustpage {
    margin: 2% 5% 10% 5%;
    text-align: end;
}
.other_illustpage a {
    background-color: #333333;
    color: #f5f5f5;
    padding: 10px;
    transition: 0.3s;
    border-radius: 10px;
    border: 2px solid #f5f5f5;
}
.other_illustpage a:hover {
    background-color: #f5f5f5;
    color: #db7093;
    border: 2px solid #db7093;
    transition: 0.3s;
}







.gallary_image_detail_interest {
    background-color: #4682b4;
    color: #f5f5f5;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    opacity: 0;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}
.gallary_image_detail_interest:hover {
    opacity: 1;
    
}


.skill_web {
    width: 90%;
    margin: 10% 5%;
}
.skill_image_web img {
    width: 30%;
    margin: 5% 2%;
    max-width: 200px;
}
.skill_image_web {
    display: flex;
    justify-content: left;
}