


@charset "utf-8";

/*----------------------------------------------------------------------
base
----------------------------------------------------------------------*/

html {
    min-width: 320px;
    font-size: 100%;
    height: 100%;
}


/*webフォント読み込むまで非表示*/


 html body {
    opacity: 0;
}

html.loading-delay body,
html.wf-active body {
    transition: 0.4s;
    opacity: 1;
} 

body,
input,
textarea {
    font-family: 'Noto Sans JP', sans-serif;
    /* font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif; */
    font-style: normal;
    font-weight: 400;
}

body {
    color: #333333;
    background-color: #f6f7f9;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100);
}

footer {
    margin-top: auto;
}

/*.wf-loading body header {
    opacity: 0;
    transition: 0.5s;
}

.loading-delay body header,
.wf-active body header {
    opacity: 1;
}*/


/*safariの場合*/

::-webkit-full-page-media,
:future,
:root html {
    height: -webkit-fill-available;
}

::-webkit-full-page-media,
:future,
:root body {
    min-height: -webkit-fill-available;
}


/*safariの場合ここまで*/

img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: auto;
}

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

a,
a img,
a svg,
a svg path {
    transition: 0.3s;
}

a:hover img,
a:hover {
    opacity: 0.7;
}

span.big {
    font-size: 1.5em;
}

span.red {
    color: #ff3333;
    font-weight: bold;
}

table {
    border-collapse: collapse;
}

h1 {
    font-size: 2em;
}

h2 {
    font-size: 1.5em;
}

h3 {
    font-size: 1.17em;
}

dh {
    color: #555;
    font-size: 20px;
    font-weight: bold;
}

strong {
    font-weight: bold;
}

input,
textarea,
button,
input[type="submit"] {
    -webkit-appearance: none;
    border-radius: 0;
}

input[type="checkbox"] {
    -webkit-appearance: auto;
}

/*------------------パンくずリスト------------*/

.breadcrumg-area ul{
  padding-left: 0;
  margin-bottom: 30px;
}

.breadcrumg-area ul li{
  display: inline-block;
  padding-left: 15px;
  position: relative;
}

.breadcrumg-area ul li::before{
  position: absolute;
  left: 0;
  content:">";
  color: #333;
}

.breadcrumg-area ul li:first-child{
  padding-left: 5px;
}

.breadcrumg-area ul li:first-child::before{
  display: none;
}


/*----------------------------------------------------------------------
all
----------------------------------------------------------------------*/

.inner {
    width: 1144px;
    max-width: 94%;
    margin: auto;
}

.w_max {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.fff {
    color: #fff;
}

.id_link_contents {
    height: 0;
    opacity: 0;
    pointer-events: none;
    z-index: -999999;
    /* 高さは要調整 */
    padding-top: 80px;
    margin-top: -80px;
}

.fade_up {
    opacity: 0;
}

.loading-delay .fade_up,
.wf-active .fade_up {
    animation: fade-up-item 0.5s ease-out forwards;
}

.is_fade_up {
    opacity: 0;
}

.is_fade_up.is_fade_up_start {
    animation: fade-up-item 0.5s ease-out forwards;
    animation-delay: 0.1s;
}

@keyframes fade-up-item {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.is_fade_left {
    opacity: 0;
}

.is_fade_left.is_fade_left_start {
    animation: fade-left-item 0.5s ease-out forwards;
    animation-delay: 0.1s;
}

@keyframes fade-left-item {
    0% {
        opacity: 0;
        transform: translateX(-50vw);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.is_fade_right {
    opacity: 0;
}

.is_fade_right.is_fade_right_start {
    animation: fade-right-item 0.5s ease-out forwards;
    animation-delay: 0.1s;
}

@keyframes fade-right-item {
    0% {
        opacity: 0;
        transform: translateX(50vw);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade_in {
    opacity: 0;
}

.loading-delay .fade_in,
.wf-active .fade_in {
    animation: fade-in-item 0.8s ease-out forwards;
}

.is_fade_in {
    opacity: 0;
}

.is_fade_in.is_fade_in_start {
    animation: fade-in-item 0.5s ease-out forwards;
    animation-delay: 0.1s;
}

@keyframes fade-in-item {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.fade_in_zoom {
    opacity: 0;
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
}

.loading-delay .fade_in_zoom,
.wf-active .fade_in_zoom {
    animation: fade-in-zoom-item 0.5s ease-out forwards;
}

@keyframes fade-in-zoom-item {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}


p.no_post {
    padding: 80px 0;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
}

.min {
    font-family: 'Noto Serif JP', serif;
    font-style: normal;
    font-weight: 400;
}


li.li_hidden {
    margin: 0 !important;
    padding: 0 !important;
    height: 0 !important;
}

/*----------------------------------------------------------------------
header
----------------------------------------------------------------------*/

header#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    pointer-events: none;
}

/*.header_bottom_content,*/
.header_contents {
    height: 80px;
}

.header_contents {
    /* padding: 15px 0; */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border-bottom: 0;
}

.header_contents:after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    transition: 0.3s;
}

.inner.header_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.header_logo a h2,
.header_logo a h1 {
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    transition: 0.3s;
}

.header_logo a {
    pointer-events: all;
}

header#header.active .header_contents:after {
    background-color: #fff;
    opacity: 0.9;
}

header#header.active .header_logo a h2,
header#header.active .header_logo a h1 {
    color: #333333;
}

/*----------------------------------------------------------------------
main
----------------------------------------------------------------------*/

section.mv {
    height: 767px;
    /*height: 100vh;*/
    width: 100%;
    min-height: calc(var(--vh, 1vh) * 100);
    transition: 0.5s;
    background-size: cover;
    background-position: center;
}

.inner.text_inner {
    height: 100%;
    width: 1366px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inner.text_inner h1,
.inner.text_inner h2 {
    font-size: 40px;
    line-height: 1.8;
    text-align: center;
    color: #fff;
    text-shadow: 0px 3px 6px #dceafa;
    font-weight: 500;
}

section.fp_links {
    width: 100%;
    padding: 80px 0 65px;
}

.fp_contents {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
}

.fp_content, .fp_c_hide {
    width: 268px;
}

.fp_content {
    margin-bottom: 25px;
    background-color: #fff;
    min-height: 336px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}

.fp_content a:hover {
    opacity: 1;
}

.fpc_img {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.fpc_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

a:hover .fpc_img img {
    transform:scale(1.2,1.2);
    opacity: 1;
}

.fpc_text {
    padding: 15px 5px;
    text-align: center;
}

.fpc_text h3 {
    font-weight: bold;
    font-size: 12px;
    margin-bottom: 8px;
}

p.p_link {
    font-size: 12px;
    line-height: 14px;
    font-weight: 500;
    margin-bottom: 17px;
    word-break: break-all;
}

p.p_link svg {
    width: 10px;
    height: auto;
    margin-left: 3px;
}

p.p_info {
    font-size: 12px;
    line-height: 1.8;
    font-weight: 500;
}

.fpc_text h3,
.fpc_text p {
    transition: 0.3s;
}

a:hover .fpc_text h3,
a:hover .fpc_text p {
    color: #585858;
}

/*----------------------------------------------------------------------
footer
----------------------------------------------------------------------*/

footer {
    margin-top: auto;
    background-color: #fff;
}

.footer_content {
    padding: 20px 0 ;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer_content a {
    display: block;
    font-size: 14px;
    font-weight: 500;
    padding: 3px 0;
    position: relative;
    margin: 10px;
}

.footer_content a:after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    margin: auto;
    pointer-events: none;
    width: 0;
    height: 1px;
    border-radius: 20px;
    background-color: #333333;
    transition: 0.3s;
}

.footer_content a:hover {
    opacity: 1;
}

.footer_content a:hover:after {
    width: 100%;
}

.copyright {
    font-size: 10px;
    text-align: center;
    padding: 0 0 20px;
}

/*----------------------------------------------------------------------

media query

----------------------------------------------------------------------*/

.pc-only {
    display: block;
}

.sp-only {
    display: none;
}

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

    section.mv {
        /*height: 767px;*/
        height: 56.149vw;
    }

    .inner.text_inner h1,
    .inner.text_inner h2 {
        /*font-size: 40px;
        line-height: 72px;*/
        /*font-size: 2.928vw;
        line-height: 5.271vw;*/
    }

}

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

    .inner.fl_inner {
        width: 850px;
    }

}

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

    .inner.fl_inner {
        width: 570px;
    }

}

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

    .sp-only {
        display: block;
    }

    .fpc_text h3,
    .fpc_text p,
    a,
    a img,
    a svg,
    a svg path {
        transition: 0.2s;
    }

    .inner.text_inner h1,
    .inner.text_inner h2 {
        /*font-size: 16px;
        line-height: 28.8px;*/
        /*font-size: 4.267vw;*/
        /*line-height: 7.68vw;*/
    }

    .header_logo a h2,
    .header_logo a h1 {
        font-size: 12px;
    }

    .header_logo a img {
        width: 40px;
    }

    /*.header_bottom_content, .header_contents {
        height: 45px;
    }*/

    section.mv {
        height: 550px;
    }

    .footer_content {
        height: 45px;
    }

    .footer_content a {
        font-size: 10px;
    }

}

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

    .about_contents.page_base_contents.t_center {
        text-align: left;
    }

    .fp_contents {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }

    .pages_title {
        padding-bottom: 40px !important;
    }

}

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

    .inner.text_inner h1, .inner.text_inner h2 {
        font-size: 7vw;
    }

}

/*media queryここまで*/


/*----------------------------------------------------------------------
下層ページ
----------------------------------------------------------------------*/

.pages .header_logo a h1,
.pages .header_logo a h2 {
    color: #333333;
}


/*--------------------------------------------------------------------
下層ページ pages
--------------------------------------------------------------------*/


/* ----------------------
base 投稿デフォルト 
---------------------- */

.page_base_contents {
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0.05em;
}

.page_base_contents > :first-child {
    margin-block-start: 0 !important;
    margin-top: 0 !important;
}

.page_base_contents > :last-child {
    margin-block-end: 0 !important;
    margin-bottom: 0 !important;
}

.page_base_contents .wp-block-image {
    margin-block-start: 1em;
    margin-block-end: 1em;
}

.page_base_contents figure {
    margin-block-start: 2em;
    margin-block-end: 2em;
}

.page_base_contents img {
    height: auto;
}

.page_base_contents p,
.page_base_contents li {
    font-size: 1em;
    line-height: 1.8;
}

.page_base_contents p {
    margin-block-start: 1em;
    margin-block-end: 1em;
}

.page_base_contents li {
    margin-block-start: 0.5em;
    margin-block-end: 0.5em;
}

.page_base_contents h1,
.page_base_contents h2 {
    font-size: 1.5em;
    margin-block-start: 0.83em;
    margin-block-end: 0.83em;
    font-weight: bold;
}

.page_base_contents h3 {
    font-size: 1.17em;
    margin-block-start: 1em;
    margin-block-end: 1em;
    font-weight: bold;
}

.page_base_contents h4 {
    display: block;
    margin-block-start: 1.33em;
    margin-block-end: 1.33em;
    font-weight: bold;
}

.page_base_contents h5 {
    display: block;
    font-size: 0.83em;
    margin-block-start: 1.67em;
    margin-block-end: 1.67em;
    font-weight: bold;
}

.page_base_contents h6 {
    display: block;
    font-size: 0.67em;
    margin-block-start: 2.33em;
    margin-block-end: 2.33em;
    font-weight: bold;
}

.page_base_contents ul {
    display: block;
    list-style-type: disc;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 1.5em;
}

.page_base_contents ol {
    display: block;
    list-style-type: decimal;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 1.5em;
}

.page_base_contents table {
    display: table;
    border-collapse: collapse;
    box-sizing: border-box;
    text-indent: initial;
    border-spacing: 2px;
    border-color: grey;
}

.page_base_contents tbody {
    display: table-row-group;
    vertical-align: middle;
    border-color: inherit;
}

.page_base_contents thead {
    border-bottom: 3px solid;
}

.page_base_contents tfoot {
    border-top: 3px solid;
}

.page_base_contents .wp-block-table td,
.page_base_contents .wp-block-table th {
    border: 1px solid;
    padding: .5em;
    word-break: normal;
}

.page_base_contents th {
    display: table-cell;
    vertical-align: inherit;
    font-weight: bold;
    text-align: -internal-center;
}

.page_base_contents td {
    border-collapse: separate;
    text-indent: initial;
    border-spacing: 2px;
}

.page_base_contents figcaption {
    color: #555;
    font-size: 0.8em;
    text-align: center;
}

.page_base_contents a {
    color: #2271b1;
    text-decoration: underline;
}

.page_base_contents em {
    font-style: italic;
}

.t_center {
    text-align: center;
}

@media screen and (max-width: 768px) {
    .page_base_contents {
        font-size: 14px;
        line-height: 1.3;
    }
}

/* ----------------------
base 投稿デフォルト ここまで
---------------------- */



/*----------------------------------------------------------------------
company 会社情報
----------------------------------------------------------------------*/

.pages .header_contents:after {
    background-color: #fff;
}

.pages_title {
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pages_title h2 {
    font-weight: bold;
    font-size: 30px;
}

.inner.company_inner {
    width: 800px;
}

.company_contents {
    padding-bottom: 50px;
}

.company_contents table {
    width: 100%;
}

.company_contents tr th {
    width: 180px;
    background-color: #f5f6f8;
    padding: 24px 10px;
    box-sizing: border-box;
    border: 1px solid #c7cad0;
    font-weight: 600;
    font-size: 18px;
}

.company_contents tr td {
    padding: 24px 20px;
    background-color: #fff;
    border: 1px solid #c7cad0;
    font-weight: 400;
    font-size: 18px;
}

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

    .company_contents tr td {
        line-height: 1.8;
        padding: 17px 20px;
    }

}

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

    .company_contents table tr {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }

    .company_contents tr th {
        font-size: 16px;
        text-align: center;
        width: 100%;
        border-bottom: 0;
    }

    .company_contents tr td {
        font-size: 16px;
        width: 100%;
        box-sizing: border-box;
        border-top: 0;
        border-bottom: 0;
    }

    .company_contents tr:last-child td {
        border-bottom: 1px solid #c7cad0;
    }

}



/*----------------------------------------------------------------------
privacy policy プライバシーポリシー
terms-of-service 利用規約
----------------------------------------------------------------------*/



/*投稿ページ*/

.pp_contents {
    font-size: 16px;
    line-height: 1.7;
}

.pp_contents img {
    height: auto;
}

.pp_contents p {
    margin-block-start: 1em;
    margin-block-end: 1em;
}

.pp_contents h1,
.pp_contents h2 {
    font-size: 1.5em;
    margin-block-start: 0.83em;
    margin-block-end: 0.83em;
    font-weight: bold;
}

.pp_contents h3 {
    font-size: 1.17em;
    margin-block-start: 1em;
    margin-block-end: 1em;
    font-weight: bold;
}

.pp_contents h4 {
    display: block;
    margin-block-start: 1.33em;
    margin-block-end: 1.33em;
    font-weight: bold;
}

.pp_contents h5 {
    display: block;
    font-size: 0.83em;
    margin-block-start: 1.67em;
    margin-block-end: 1.67em;
    font-weight: bold;
}

.pp_contents h6 {
    display: block;
    font-size: 0.67em;
    margin-block-start: 2.33em;
    margin-block-end: 2.33em;
    font-weight: bold;
}

.pp_contents ul {
    display: block;
    list-style-type: disc;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 40px;
}

.pp_contents ol {
    display: block;
    list-style-type: decimal;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 40px;
}

.pp_contents table {
    display: table;
    border-collapse: collapse;
    box-sizing: border-box;
    text-indent: initial;
    border-spacing: 2px;
    border-color: grey;
}

.pp_contents tbody {
    display: table-row-group;
    vertical-align: middle;
    border-color: inherit;
}

.pp_contents thead {
    border-bottom: 3px solid;
}

.pp_contents tfoot {
    border-top: 3px solid;
}

.pp_contents td,
.pp_contents th {
    border: 1px solid;
    padding: .5em;
    word-break: normal;
}

.pp_contents th {
    display: table-cell;
    vertical-align: inherit;
    font-weight: bold;
    text-align: -internal-center;
}

.pp_contents td {
    border-collapse: separate;
    text-indent: initial;
    border-spacing: 2px;
}

.pp_contents figcaption {
    color: #555;
    font-size: 13px;
    text-align: center;
}

.pp_contents a {
    color: #2271b1;
    text-decoration: underline;
}

.pp_contents em {
    font-style: italic;
}

/*----------------------------------------------------------------------
about CREATURとは
----------------------------------------------------------------------*/

main.pages_main {
    padding-bottom: 80px;
}

ul.img_list_ul {
    display: flex;
    list-style-type: none;
    padding: 0;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
    list-style-type: none;
    padding: 0;
    margin-bottom: calc( 1em - 20px );
}

ul.img_list_ul li {
    margin: 0;
    margin-bottom: 20px;
    width: calc( 100% / 3 - 10px );
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #333333;
}

ul.img_list_ul.col2 li {
    width: calc(100% / 2 - 10px);
}

ul.img_list_ul li figure {
    margin: 0;
}

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

    ul.img_list_ul {
        margin-bottom: 0;
    }

    ul.img_list_ul li {
        margin-bottom: 1em;
        width: calc( 100% / 2 - 0.5em );
    }

    ul.img_list_ul.col2 li {
        width: 100%;
    }

}




















