@charset "UTF-8";

:root {
    --primary-color: #149cb8;
    --text-color: #444;
    --btn-color: #149cb8;
    --bg-color: #F5F5F5;
    --featured-color: #cb4ab9;
    --non-color-deep: #000;
    --non-color: #F9F9F9;
    --boxMargin: 2rem;
}

@media (min-width: 768px) {
    :root {
        --boxMargin: 3rem;
    }
}

@media (min-width: 1024px) {
    :root {
        --boxMargin: 4rem;
    }
}

.mtb {
    margin-top: var(--boxMargin) !important;
    margin-bottom: var(--boxMargin) !important;
}

.mtb.x2 {
    margin-top: calc(var(--boxMargin) * 2) !important;
    margin-bottom: calc(var(--boxMargin) * 2) !important;
}

.mtb.x3 {
    margin-top: calc(var(--boxMargin) * 3) !important;
    margin-bottom: calc(var(--boxMargin) * 3) !important;
}

.mtb.x4 {
    margin-top: calc(var(--boxMargin) * 4) !important;
    margin-bottom: calc(var(--boxMargin) * 4) !important;
}

.mt {
    margin-top: var(--boxMargin) !important;
}

.mt.x2 {
    margin-top: calc(var(--boxMargin) * 2) !important;
}

.mt.x3 {
    margin-top: calc(var(--boxMargin) * 3) !important;
}

.mt.x4 {
    margin-top: calc(var(--boxMargin) * 4) !important;
}

.mb {
    margin-bottom: var(--boxMargin) !important;
}

.mb.x2 {
    margin-bottom: calc(var(--boxMargin) * 2) !important;
}

.mb.x3 {
    margin-bottom: calc(var(--boxMargin) * 3) !important;
}

.mb.x4 {
    margin-bottom: calc(var(--boxMargin) * 4) !important;
}

/*//////////////////// COMMON ////////////////////////*/

*,
*:before,
*:after {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

ul[class],
ol[class] {
    list-style: none;
    padding: 0;
    margin: 0;
}

::-moz-selection {
    color: #444;
    background: #CCC;
}

::selection {
    color: #444;
    background: #CCC;
}

*:focus {
    outline: none;
}

:-webkit-any-link {
    color: var(--text-color);
}

:-moz-any-link {
    color: var(--text-color);
}

:any-link {
    color: var(--text-color);
}

html {
    box-sizing: border-box;
    font-size: 62.5%;
    overflow-y: scroll;
    line-height: 1.15;
}

body {
    font-family: 'Lora', '游明朝', 'Yu Mincho', 'YuMincho', 'ヒラギノ明朝 ProN W3', 'HiraMinProN-W3', 'HG明朝E', 'ＭＳ Ｐ明朝', 'MS PMincho', 'MS 明朝', serif;
    font-size: 1.3rem;
    line-height: 1.5;
    font-weight: 400;
    color: var(--text-color);
    padding: 0;
    margin: 0;
    line-height: 1.6;
}

a {
    text-decoration: none;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    cursor: pointer;
}

a:hover,
a.button:hover,
a.icon:hover,
a.tag:hover,
a.shape:hover,
a.primary:hover {
    text-decoration: none;
    opacity: .75;
}

h1 {
    font-size: 2rem;
    letter-spacing: .05rem;
    line-height: 1.3;
}

h1 span {
    font-size: 1.2rem;
    display: block;
    line-height: 1.3;
}

h2 {
    font-size: 1.8rem;
    line-height: 1.4;
}

h2 span {
    font-size: 1.4rem;
    line-height: 1.4;
    letter-spacing: 0.05rem;
    display: block;
    padding: 0 0 .5rem;
}

h2.title {
    margin: 0 0 3rem;
}

h2.title span {
    font-size: 2.6rem;
    line-height: 1;
    margin: 0 0 0.5rem;
}

h3 {
    font-size: 1.8rem;
    line-height: 1.4;
    margin: 0 0 1rem;
}

h3 span {
    font-size: 1.4rem;
    line-height: 1.4;
    letter-spacing: 0.05rem;
    margin: 0 0 .3rem;
    display: block;
}

h3.title {
    margin: 0 0 3rem;
}

h3.title span {
    font-size: 2.4rem;
    margin: 0 0 0.5rem;
    line-height: 1;
}

h1,
h2,
h3 {
    font-weight: 400;
}

h4 {
    font-size: 1.6rem;
    font-weight: 400;
    margin: 2rem 0 1rem;
    line-height: 1.4;
}

.italic {
    font-style: italic;
}

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

    h1 {
        font-size: 2.8rem;
        /*text-align: left;*/
    }

    h1 span {
        font-size: 1.6rem;
        margin: 0;
    }

    h2 {
        font-size: 2.8rem;
    }

    #list h2 {
        font-size: 1.6rem;
    }

    #breadcrumbnav {
        padding: 1rem 0 4rem;
        font-size: 1.2rem;
        display: block;
    }

}

p {
    margin: 0 0 2rem;
    line-height: 2;
}

p span {
    margin: 0 0 1rem;
    display: block;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    border-style: none;
}

.responsive {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

.break {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
}

#breadcrumbnav {
    display: none;
}

hr {
    height: 0;
    margin: 4rem 0;
    padding: 0;
    border: 0;
    border-top: 1px solid #EEE;
}

.underline {
    text-decoration: none;
    border-bottom: 1px solid #CCC;
    padding-bottom: 2px;
}

.sp {
    display: block !important;
}

.pc {
    display: none !important;
}

@media (min-width: 600px) {

    .sp {
        display: none !important;
    }

    .pc {
        display: block !important;
    }

}

/*//////////////////// LOADER ////////////////////////*/

.spinner {
    align-items: center;
    background: #fff;
    bottom: 0;
    display: flex;
    justify-content: center;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 999;
}

.spinner::after {
    -webkit-animation: spinner 0.5s linear infinite;
    animation: spinner 0.5s linear infinite;
    border: 1px solid black;
    border-radius: 50%;
    border-right: 1px solid rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    content: "";
    height: 60px;
    width: 60px;
}

@-webkit-keyframes spinner {

    0% {
        transform: rotate(0);
    }

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

}

@keyframes spinner {

    0% {
        transform: rotate(0);
    }

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

}

/*//////////////////// SCL ////////////////////////*/
.scl {
    display: none;
    position: fixed;
    right: 10px;
    bottom: 10px;
    width: 48px;
    height: 48px;
    cursor: pointer;
    z-index: 3;
}

/*//////////////////// TOPICPATH ////////////////////////*/

ul.topicpath {
    display: flex;
    flex-wrap: wrap;
    font-size: 1.2rem;
    width: 100%;
    margin: 1rem 0 0;
}

ul.topicpath {
    margin: .5rem 0 !important;
}

ul.topicpath li:not(:first-of-type) {
    margin: 0 0 0 .2rem;
}

/*//////////////////// VIDEO ////////////////////////*/

video {
    width: 100%;
    height: 100%;
}

.video-wrap {
    max-width: 1000px;
    margin: 0 auto;
}

.video {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 56.25%;
}

.video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/*//////////////////// GRID ////////////////////////*/

.grid-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    column-gap: 10px;
    row-gap: 10px;
}

@media (min-width: 768px) {

    .grid-wrap {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        column-gap: 30px;
        row-gap: 30px;
    }

}

/*//////////////////// LAYOUT ////////////////////////*/

.wrapper {
    position: relative;
    /*z-index: 1;*/
    min-height: 80vh;
    box-sizing: border-box;
}

.container {
    width: 100%;
    overflow: hidden;
    margin: auto;
    padding: 0 1.5rem;
}

.contents {
    display: flex;
    flex-direction: column;
}

.contents-wrap {
    display: flex;
    flex-direction: column;
}

.contents-wrap.col2,
.contents-wrap.col3,
.contents-wrap.col4,
.contents-wrap.col5 {
    flex-direction: row;
    flex-wrap: wrap;
    /*border-bottom: 1px solid #F5F5F5;*/
    padding: 4rem 0;
    margin: 0 -2%;
}

.contents-box {
    flex: 1;
    margin: 2%;
}

.contents-wrap.col2>.contents-box {
    /*flex: 0 0 46%;*/
    flex: 0 0 calc(92% / 2);
}

.contents-wrap.col3>.contents-box {
    /*flex: 0 0 29%;*/
    flex: 0 0 calc(88% / 3);
}

.contents-wrap.col4>.contents-box {
    /*flex: 0 0 21%;*/
    flex: 0 0 calc(84% / 4);
}

.contents-wrap.col5>.contents-box {
    /*flex: 0 0 16%;*/
    flex: 0 0 calc(80% / 5);
}

.main {
    flex: 1;
    /*width: 100%;*/
    /*order: 1;*/
}

.side {
    flex: 1;
    /*width: 100%;*/
    /*order: 2;*/
    display: none;
}

.contents-bg {
    height: 200px;
    margin: 0 0 .5rem;
}

.contents-bg a {
    display: block;
    width: 100%;
    height: 100%;
}

.contents-box {
    margin-bottom: 1.5%;
}

.contents-box h2 {
    font-size: 1.4rem;
    margin: 0 0 0.8rem;
}

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

    .container {
        max-width: 1200px;
    }

    .contents {
        width: 80%;
        margin: auto;
        justify-content: center;
    }

    .contents-wrap {
        flex-direction: row;
        flex-wrap: wrap;
        /*border-bottom: 1px solid #F5F5F5;*/
        padding: 4rem 0;
        margin: 0 -2%;
    }

    .contents-bg {
        flex: 1;
    }

    #article .contents .content-bg {
        height: 600px;
    }

    #article .contents-wrap.col2 .content-bg {
        height: 400px;
    }

    #article .contents-wrap.col3 .content-bg {
        height: 280px;
    }

    .contents-img {
        flex: 1;
        margin: 0 2%;
    }

    .contents-text {
        flex: 1;
        margin: 0 2%;
    }

    .contents-box {
        flex: 1;
        margin: 2%;
    }

    .contents-wrap.right>* {
        justify-content: flex-end;
    }

    /* 交互 奇数 偶数 */
    .odd .contents-wrap:nth-child(odd),
    .even .contents-wrap:nth-child(even) {
        flex-direction: row-reverse;
    }

    .odd>.contents-wrap:not(:first-of-type),
    .even>.contents-wrap:not(:first-of-type) {
        margin-top: 10rem;
    }

    .offset {
        width: 80%;
        margin: auto;
    }

    .primary {
        min-height: calc(100vh - 300px);
        padding: 4rem 0;
    }

}

@media screen and (min-width: 1200px) {

    .content-area {
        min-height: calc(100vh - 300px);
        padding: 4rem 0;
    }

    .main {
        flex: 3;
        /*width: 80%;*/
        order: 2;
        margin: 0 1%;
    }

    .side {
        flex: 1;
        /*width: 20%;*/
        order: 1;
        display: block;
        margin: 0 1%;
    }

}

/*//////////////////// LAYOUT grid ////////////////////////*/

.grid-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 3.6%;
    row-gap: 40px;
    margin: 2rem 0;
}

.grid-wrap.jic {
    justify-items: center;
}

.grid-wrap.jcc {
    justify-content: center;
}

.grid-wrap.jac {
    justify-content: center;
    align-items: center;
}

.grid-wrap.aic {
    align-items: center;
}

.grid-wrap.pic {
    place-items: center;
}

.grid-wrap .content-img {
    border-radius: 5px;
    box-shadow: rgb(0 0 0 / 10%) 0 20px 25px -5px, rgb(0 0 0 / 4%) 0 10px 10px -5px;
}

.grid-wrap .content-text {
    margin: 1.3rem 0 0;
}

.grid-wrap .content-text a:not(:first-child) {
    margin-left: 0.5rem;
}

.grid-wrap .content-text a span {
    display: block;
}

.grid-wrap.col12,
.grid-wrap.col123,
.grid-wrap.col124,
.grid-wrap.col1234 {
    grid-template-columns: repeat(1, 1fr);
}

.grid-wrap.col23,
.grid-wrap.col24,
.grid-wrap.col235 {
    grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 600px) {

    .grid-wrap.col12 {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 5%;
    }

    .grid-wrap.col123,
    .grid-wrap.col124,
    .grid-wrap.col1234 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-wrap.col23,
    .grid-wrap.col235 {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media (min-width: 768px) {

    .grid-wrap.col1234 {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media (min-width: 980px) {

    .grid-wrap.col123 {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid-wrap.col124,
    .grid-wrap.col1234 {
        grid-template-columns: repeat(4, 1fr);
    }

    .grid-wrap.col24 {
        grid-template-columns: repeat(4, 1fr);
    }

    .grid-wrap.col235 {
        grid-template-columns: repeat(5, 1fr);
    }

    .grid-wrap.col1234 {
        column-gap: 2%;
    }

}

@media (min-width: 600px) {

    .odd .grid-wrap:nth-child(odd) .contents-img,
    .even .grid-wrap:nth-child(even) .contents-img {
        order: 1;
    }

    .odd .grid-wrap:nth-child(even) .contents-img,
    .even .grid-wrap:nth-child(odd) .contents-img {
        order: 2;
    }

}

.grid-wrap .contents-text {
    padding: 2rem;
}

.grid-wrap .contents-text .intro-text {
    line-height: 1.6;
    display: -webkit-box;
    overflow: hidden;
    height: 3.2em;
    margin-top: 1.6rem;
}

.grid-wrap article {
    overflow: hidden;
    border-radius: 4px;
    -webkit-box-shadow: var(--box-shadow);
    box-shadow: var(--box-shadow);
    -webkit-transition: var(--transition), opacity 1s;
    transition: var(--transition), opacity 1s;
}

.grid-wrap .contents-img {
    position: relative;
    overflow: hidden;
    padding-top: 62.5%;
}

.grid-wrap .contents-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% + 16px);
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform: translateY(-16px);
    transform: translateY(-16px);
}

@media (min-width: 1025px) {

    .grid-wrap article img {
        -webkit-transition: var(--transition);
        transition: var(--transition);
    }

    .grid-wrap article:hover {
        -webkit-transform: translateY(-16px);
        transform: translateY(-16px);
        -webkit-box-shadow: var(--box-shadow-hover);
        box-shadow: var(--box-shadow-hover);
    }

    .grid-wrap article:hover img {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

}

/*//////////////////// GUTTER ////////////////////////*/

.mt1 {
    margin: .5rem 0 0;
}

.mt2 {
    margin: 1rem 0 0;
}

.mt3 {
    margin: 1.5rem 0 0;
}

.mt {
    margin: 3rem 0 0;
}

.mb {
    margin: 0 0 3rem;
}

.mtb {
    margin: 3rem 0;
}

@media (min-width: 600px) {

    .mt1 {
        margin: 1rem 0 0;
    }

    .mt2 {
        margin: 2rem 0 0;
    }

    .mt3 {
        margin: 3rem 0 0;
    }

    .mt {
        margin: 6rem 0 0;
    }

    .mb {
        margin: 0 0 6rem;
    }

    .mtb {
        margin: 6rem 0;
    }

}

section.contact {
    margin-top: 6rem;
}

h2:not(:first-of-type) {
    margin-top: 4rem;
}

@media (min-width: 768px) {

    section.contact {
        margin-top: 10rem;
    }

    h2:not(:first-of-type) {
        margin-top: 4rem;
    }

}

/*//////////////////// MASONRY ////////////////////////*/

.grid-container:after {
    content: "";
    display: block;
    clear: both;
}

.grid-sizer {
    width: 100%;
}

.grid-item {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 380px;
    margin: 0 0 1.5rem;
}

.grid-item a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: #FFF;
    opacity: 0;
}

.grid-item a:hover {
    opacity: 1;
    transition: all 0.6s ease;
}

.grid-item a h2 {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
}

.grid-item.w2 a h2 {
    font-size: 1.6rem;
}

.grid-item.w3 a h2 {
    font-size: 1.8rem;
}

.grid-item.w4 a h2 {
    font-size: 2rem;
}

.grid-item.w5 a h2 {
    font-size: 2.2rem;
}

.grid-item a h2 span {
    font-size: 1.2rem;
}

.grid-item.w2 a h2 span {
    font-size: 1.3rem;
}

.grid-item.w3 a h2 span {
    font-size: 1.4rem;
}

.grid-item.w4 a h2 span {
    font-size: 1.5rem;
}

.grid-item.w5 a h2 span {
    font-size: 1.6rem;
}

@media (min-width: 768px) {

    .grid-sizer {
        width: calc(94% / 3);
        margin: 1%;
    }

    .grid-item {
        width: calc(94% / 3);
        margin: 1%;
    }

    .grid-item.w2 {
        width: 64%;
    }

    .grid-item.w3 {
        width: 98%;
    }

    .grid-item.w4 {
        width: 98%;
    }

    .grid-item.h2 {
        height: 480px;
    }

    .grid-item.h3 {
        height: 580px;
    }

    .grid-item.h4 {
        height: 680px;
    }

}

@media (min-width: 980px) {

    .grid-sizer {
        width: calc(92% / 4);
        margin: 1%;
    }

    .grid-item {
        width: calc(92% / 4);
        margin: 1%;
    }

    .grid-item.w2 {
        width: 48%;
    }

    .grid-item.w3 {
        width: 73%;
    }

    .grid-item.w4 {
        width: 98%;
    }

    .grid-item.h2 {
        height: 480px;
    }

    .grid-item.h3 {
        height: 580px;
    }

    .grid-item.h4 {
        height: 680px;
    }

}

/*//////////////////// DITTO PAGINATE ////////////////////////*/

.paginate {
    display: flex;
    justify-content: center;
    margin: 4rem 0;
}

.paginate .ditto_currentpage {
    border: 1px solid #000;
    background: #000;
    font-size: 1.4rem;
    color: #FFF;
    padding: 1rem;
    margin: 0px .5rem;
    width: 45px;
    text-align: center;
}

.paginate a,
.paginate a:link,
.paginate a:visited {
    border: 1px solid #EEE;
    font-size: 1.4rem;
    color: #CCC;
    padding: 1rem;
    margin: 0px .5rem;
    width: 45px;
    text-align: center;
}

.paginate a.ditto_next_link,
.paginate a.ditto_previous_link {
    color: #444;
    border: none;
    padding: 1rem;
}

/*//////////////////// DL DT DD ////////////////////////*/
dt {
    padding: 1rem;
    margin: 0;
    background: #f7f7f7;
    color: #222;
    text-align: center;
}

dd {
    padding: 1rem;
    margin: 0 0 1rem;
}

@media (min-width: 768px) {
    dl {
        display: flex;
        flex-wrap: wrap;
    }

    dt {
        width: 25%;
        padding: 1rem;
        margin: 0 0 1rem;
        background: none;
        color: #444;
        text-align: left;
    }

    dd {
        width: 75%;
        padding: 1rem 1rem 1rem 2rem;
        /*border-bottom: 1px solid #EEE;*/
    }
}

@media (min-width: 768px) {

    /* LINED */
    dl.lined dt {
        /*width: 70%;*/
        background: #FFF;
        color: #000;
        text-align: left;
        border: none;
        border-bottom: 1px solid #EEE;
        font-weight: 600;
    }

    dl.lined dd {
        /*width: 60%;*/
        text-align: left;
        border-bottom: 1px solid #EEE;
    }

    dl.lined>dt {
        border-bottom: 1px solid #EEE;
    }

    dl.lined>dd {
        border-bottom: 1px solid #EEE;
    }
}

/********** AC MENU **********/
dl.acMenu dt {
    position: relative;
    line-height: 1.4;
    cursor: pointer;
    padding: 2rem 8rem 2rem 2rem;
    margin: 2rem 0 0;
    font-weight: normal;
    width: 100%;
    text-align: left;
    background: #FFF;
    font-size: 1.8rem;
    color: #333;
    border-bottom: 1px solid #F2F2F2;
}

dl.acMenu dt:after {
    position: absolute;
    top: 50%;
    right: 7px;
    transform: translateY(-50%);
    transition: 0.2s;
    content: '\f063';
    font-family: 'Font Awesome 5 Free';
    font-weight: 600;
    margin-right: 1rem;
    color: #444;
}

dl.acMenu dt.selected {
    background: #DDD;
}

dl.acMenu dt.selected:after {
    transform: translateY(-50%) rotate(180deg);
    transition: 0.2s;
}

dl.acMenu.optional-inspection dt {
    display: flex;
    justify-content: space-between;
}

dl.acMenu dd {
    line-height: 2;
    display: none;
    padding: 2rem;
    width: 100%;
    background: #EEE;
}

dl.acMenu.qa dt:before {
    content: "Q";
    font-size: 2.4rem;
    margin-right: 1rem;
    font-weight: 600;
    color: #444;
    font-family: 'Inter', sans-serif;
}

dl.acMenu.qa dd:before {
    content: "A";
    font-size: 2.4rem;
    margin-right: 1rem;
    font-weight: 600;
    color: #444;
    font-family: 'Inter', sans-serif;
}

dl.acMenu.qa dt {
    font-size: 1.6rem;
    line-height: 1.4;
}

dl.acMenu.qa dd {
    line-height: 1.6;
}

/*//////////////////// LIST ////////////////////////*/
dl.lsn,
ul.lsn {
    list-style: none;
    padding: 0;
}

/*********** LIST COL2 ***********/
ul.col2 {
    list-style: none;
    padding: 0;
    margin: 0;
}

ul.col2 li {
    width: 100%;
}

ul.col2 li:nth-child(2n) {
    padding: 1rem;
    border-bottom: 1px solid #444;
}

ul.col2 li:nth-child(2n+1) {
    padding: 1rem;
    border-bottom: 3px solid #444;
}

@media (min-width: 768px) {
    ul.col2 {
        display: flex;
        flex-wrap: wrap;
    }

    ul.col2 li:nth-child(2n) {
        width: 80%;
    }

    ul.col2 li:nth-child(2n+1) {
        width: 20%;
    }
}

/*//////////////////// ICON ////////////////////////*/

.category a,
.tag a,
.archive a {
    font-size: 1.2rem;
    line-height: 2.4rem;
    font-weight: 400;
    padding: 0 .5rem 0 0;
    color: #AAA;
    /*background: #FFF;*/
}

.call,
.fax,
.mail {
    display: inline-block;
    position: relative;
    font-family: 'Inter', sans-serif;
    margin: 0 .5rem;
    font-weight: 600;
    padding-left: 1.8rem;
}

.call:before {
    position: absolute;
    left: 0;
    content: '\f095';
    font-family: 'Font Awesome 5 Free';
    font-weight: 600;
    font-size: 1.4rem;
    border: none !important;
}

.fax:before {
    position: absolute;
    left: 0;
    content: '\f1ac';
    font-family: 'Font Awesome 5 Free';
    font-weight: 600;
    font-size: 1.4rem;
    border: none !important;
}

.mail:before {
    /*position: absolute;
left: 0;*/
    content: '\f0e0';
    font-family: 'Font Awesome 5 Free';
    font-weight: 600;
    font-size: 1.4rem;
    border: none !important;
    margin-right: 0.8rem;
}

.call-large {
    font-size: 3rem;
    padding-left: 3.6rem;
    line-height: 0;
}

.call.call-large:before {
    font-size: 2.6rem;
    bottom: 0.2rem;
}

@media screen and (min-width: 600px) {
    a[href^="tel:"] {
        pointer-events: none;
    }
}

/*//////////////////// ANCHOR ////////////////////////*/

.anchor ul.contents-wrap {
    padding: 0;
    justify-content: center;
}

.anchor li {
    list-style: none;
    border: none;
    padding: .5rem 2rem;
    margin: 1rem;
    border-radius: .2rem;
    background: #444;
    color: #FFF;
    text-align: center;
}

.anchor li a {
    text-decoration: none;
    font-size: 1.4rem;
    color: #FFF;
}

.anchor li a::after {
    content: '\f0ab';
    font-family: 'Font Awesome 5 Free';
    font-weight: 600;
    margin-left: 0.8rem;
}

/*//////////////////// ANCHOR TEXT ////////////////////////*/

.anchor.text li {
    background: none;
    padding: 0 1rem 0 1rem;
    margin: 0;
    border-right: 1px solid #999;
}

.anchor.text li:first-child {
    border-left: 1px solid #999;
}

.anchor.text li a {
    color: #444;
}

.anchor.text li a::after {
    content: '\f0ab';
    font-family: 'Font Awesome 5 Free';
    font-weight: 600;
    margin-left: 0.8rem;
}

@media screen and (min-width: 480px) {
    .anchor.text li a {
        display: inline-block;
    }
}

/*//////////////////// ANCHOR BOX ////////////////////////*/

.anchor.box {
    padding: 1rem;
    margin: 0 0 2rem;
    border: 4px solid #EEE;
}

/*//////////////////// BUTTON ////////////////////////*/

.button {
    display: inline-block;
    width: 100%;
    font-size: 1.4rem;
    line-height: 2;
    text-align: center;
    background: #333;
    color: #FFF;
    padding: .5rem 2.5rem;
    border: none;
    letter-spacing: .08rem;
}

.button.white {
    background: #FFF;
    color: #333;
    border: 1px solid #333;
}

@media (min-width: 768px) {

    .button {
        width: auto;
    }

}

.button.black {
    background: #000;
    color: #FFF;
    border: 1px solid #000;
}

.button.dark {
    background: #444;
    color: #FFF;
    border: 1px solid #444;
}

.button.invert {
    border: 1px solid #020201;
    background: #FFF;
    color: #020201;
}

.button.invert.white {
    border: 1px solid #fff;
    background: none;
    color: #fff;
}

.button.small {
    font-size: 1.1rem;
    padding: .5rem 2rem;
}

.button.large {
    padding: 0.8rem 6rem;
}

.button.back {
    padding: 0.8rem 6rem;
}

.button.round {
    font-size: 1.5rem;
    padding: .7rem 5rem;
    border-radius: 100rem;
}

.button.openModal::after {
    content: '\f2d2';
    font-family: 'Font Awesome 5 Free';
    font-weight: 600;
    margin-left: 0.8 rem;
}

.button span {
    font-size: 1.4rem;
    letter-spacing: .1rem;
    line-height: 2rem;
    margin-right: 0.5rem;
}

.button.small span {
    font-size: 1.2rem;
}

.button.prev::before,
.button.back::before,
.button.reset::before {
    content: '\f053';
    font-family: 'Font Awesome 5 Free';
    font-weight: 600;
    margin-right: 0.8rem;
}

.button.next::after,
.button.go::after {
    content: '\f054';
    font-family: 'Font Awesome 5 Free';
    font-weight: 600;
    margin-left: 0.8rem;
}

/*//////////////////// TITLE-AREA ////////////////////////*/

.title-area {
    padding: 1em 0;
    /*margin-top: 100px;*/
    background: #F5F5F5;
    /*margin: 0 0 4rem;*/
}

@media (min-width: 768px) {
    .title-area {
        margin: 0rem;
    }
}

/*//////////////////// INTERNAL-LINK ////////////////////////*/

.internal-link ul {
    padding: 0;
    margin: 6rem 0 0;
}

.internal-link ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    /*margin: 3rem 0;*/
}

.internal-link ul.line-group li {
    padding: 0 .5rem;
    margin: .5rem 0;
}

.internal-link ul.button-group li {
    display: inline-block;
    width: 100%;
    padding: 1rem 0;
    margin: .5rem 0;
    font-size: 1.4rem;
    text-align: center;
    line-height: 1;
    letter-spacing: 0;
    font-family: "Crimson Text", serif;
    border: solid 1px #999;
}

.internal-link ul.line-group li {
    border-left: 1px solid #999;
    border-right: 1px solid #999;
}

.internal-link ul.line-group li+li {
    border-left: 0;
    border-right: 1px solid #999;
}

.internal-link ul.button-group li {
    margin: .5rem 0;
}

.internal-link ul.button-group a {
    display: block;
    color: #444;
}

@media (min-width: 768px) {

    .internal-link ul {
        flex-wrap: nowrap;
    }

    .internal-link ul.line-group li {
        width: auto;
        border: none;
        padding: 0 1rem;
        font-size: 1.4rem;
        border-left: 1px solid #999;
        border-right: 1px solid #999;
    }

    .internal-link ul.button-group li {
        margin: .5rem 1rem;
    }

    .title-area {
        padding: 3em 0;
    }

}

/*//////////////////// #LIST ////////////////////////*/

#list .content-text h2 {
    font-size: 1.4rem;
    margin: 1rem 0 0.5rem;
}

#list .content-text p {
    font-size: 1.2rem;
}

#list .stack {
    align-items: center;
    margin: 10rem 0;
}

#list .stack .contents-img {
    position: relative;
    flex: 1.5;
    overflow: hidden;
}

#list .contents-box .content-bg a {
    display: block;
    width: 100%;
    height: 100%;
}

#list .contents-text {
    align-items: center;
    display: flex;
}

#list .stack .contents-text {
    position: relative;
    background: #FFF;
    padding: 2rem;
}

#list .stack .contents-text .button {
    margin: 0;
}

#list .content-bg {
    height: 350px;
}

@media (min-width: 768px) {
    #list .stack .contents-text {
        box-shadow: 0 1.2rem 2.2rem -1rem hsl(0deg 0% 20% / 20%);
    }

    #list .even .stack:nth-child(odd) .contents-text,
    #list .odd .stack:nth-child(even) .contents-text {
        margin: 0 0 0 -10%;
    }

    #list .even .stack:nth-child(even) .contents-text,
    #list .odd .stack:nth-child(odd) .contents-text {
        margin: 0 -10% 0 0;
    }

}

/*//////////////////// #ARTICLE ////////////////////////*/

#article .list-head {
    margin: 0 0 2rem;
}

#article .main-area {
    position: relative;
    width: 100%;
    overflow: hidden;
}

#article.news .main-area,
#article.note .main-area {
    margin: 4rem 0 0;
}

#article .main-area .contents-img {
    height: 50vh;
}

#article .list-container,
#article .list-container2 {
    margin: 2rem 0;
}

@media (min-width: 768px) {

    #article.news .main-area,
    #article.note .main-area {
        margin: 10rem 0 0;
    }

    #article .main-area .contents-wrap {
        flex-direction: row-reverse;
    }

    #article .main-area>.contents-img {
        height: auto;
        min-height: 500px;
    }
    
}

#article .contents-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
}

#article .contents-text .contents-inner {
    width: 90%;
    max-width: 90%;
    line-height: 2;
}

#article .contents-inner h1 {
    font-size: 2.6rem;
    line-height: 1.2;
    color: #333;
    margin: 4rem 0;
}

#article .contents-inner h1 span {
    font-size: 1.6rem;
    display: block;
    letter-spacing: .1rem;
}

#article .contents-inner span.category {
    font-family: 'Seaweed Script', cursive;
    font-weight: 400;
    font-size: 2rem;
}

#article .contents-inner span.category a:not(:first-child) {
    margin: 0 0.5rem;
}

#article .contents-inner .period {
    padding: 0 0 2rem;
    line-height: 1;
}

#article .sandwich {
    padding: 0 0 1rem;
    border-top: 1px solid #444;
    border-bottom: 1px solid #444;
}

#article .contents-inner dl {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
}

#article .contents-inner dl dt {
    width: 15%;
    padding: 0;
    margin: 0;
    font-weight: 400;
    font-size: 0.9rem;
    line-height: 1.8rem;
    background: none;
    text-align: left;
    color: #444;
}

#article .contents-inner dl dd {
    width: 85%;
    padding: 0;
    margin: 0;
    font-weight: 400;
    font-size: 1.2rem;
    line-height: 1.8rem;
}

#article .sub-area h2 {
    font-size: 3rem;
    line-height: 2;
}

#article .sub-area h2 span {
    font-size: 1.6rem;
    color: #777;
    line-height: 2;
}

#article .sub-area p {
    line-height: 1.8;
}

#article .sub-area .contents-img {
    height: 60vh;
}

#article .stack .sub-area {
    position: relative;
    max-width: 1200px;
    padding: 3rem 0;
    margin: -46rem auto 1rem;
    background: rgb(255, 255, 255);
    background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 70%, rgba(255, 255, 255, 0.4) 100%);
}

@media (min-width: 768px) {

    #article .contents-text {
        padding: 4rem 0;
    }

    #article .contents-text .contents-inner {
        width: 60%;
        max-width: 60%;
    }

    #article .container .contents-text .contents-inner {
        width: 80%;
        max-width: 80%;
    }

    #article .sub-area .contents-img {
        height: auto;
    }

    #article .contents-inner dl dt {
        width: 10%;
    }

    #article .contents-inner dl dd {
        width: 90%;
    }

    #article .stack .sub-area {
        background: rgb(255, 255, 255);
        background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 70%, rgba(255, 255, 255, 0.4) 100%);
        box-shadow: 0 1.2rem 2.2rem -1rem hsl(0deg 0% 20% / 20%);
    }

    #article .stack .sub-area .contents-wrap {
        margin: 3%;
        flex-direction: row-reverse;
    }

}

@media (min-width: 1140px) {
    #article .contents-text .contents-inner {
        width: 70%;
        max-width: 70%;
    }

}

/*//////////////////// SUB AREA ////////////////////////*/

body.default .sub-area {
    background: #F5F5F5;
}

/*//////////////////// 20220302 ////////////////////////*/

#list-container .item .content-img {
    opacity: 1;
    filter: brightness(1);
    transition: filter 0.5s;
}

#list-container .item .content-img a:hover {
    opacity: 1;
}

#list-container .item .content-img:hover {
    opacity: 1;
    filter: brightness(1.5);
    transition: filter 0.4s cubic-bezier(0, 2.5, 0.2, 2.5);
}

.sub-copy {
    font-family: "Crimson Text", serif;
    font-weight: 400;
}

.swiper-container.zoom .main-copy span {
    font-size: 3rem;
}

dd ol {
    margin-left: 0;
    padding-left: 1.5rem;
}

dd ol li {
    list-style: decimal;
    padding: 0 0 0.5rem 0.5rem;
}

/*//////////////////// MODAL ////////////////////////*/

.modal {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    /*overflow-y: auto;*/
    transition: all 0.4s;
}

.modal__inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100%;
    padding: 50px 0;
}

.modal__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    cursor: pointer;
}

.modal__cont {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 90%;
    height: 90vh;
    margin: 0 auto;
    padding: 3rem;
    background-color: #fff;
    overflow-y: auto;
}

.modal.is-show {
    opacity: 1;
    visibility: visible;
    z-index: 5;
}

.modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    cursor: pointer;
    width: 50px;
    height: 50px;
    background: #000 url(../../content/images/close.png) no-repeat center/cover;
}

.modal__cont .contents-wrap {
    width: 500px;
}

.modal__cont ul {
    list-style: none;
    padding: 0;
}

.modal__cont ul li {
    padding: 1rem 0;
}

.modal__cont ul li a span {
    margin-right: 1rem;
}

.modal__cont ul li a.button {
    display: block;
    margin: 0;
}

.modal__cont .contact {
    margin: auto;
}

.modal__cont a.logo {
    margin: auto;
    display: block;
    width: 150px;
    height: 50px;
    background: url(../../content/images/logo_en.svg) no-repeat top center /contain;
    background-size: contain;
    text-align: left;
    text-indent: -9999px;
}

/*//////////////////// SWIPER ////////////////////////*/

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after,
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
    color: #FFF;
}

.swiper-pagination-bullet-active {
    background: #666;
}

.slide-wrap img {
    box-shadow: 0px 20px 20px -15px rgb(0 0 0 / 50%);
}

/* basic */

.basic {
    width: 100%;
    /*padding: 4rem 0;*/
    margin: 0 auto;
}

.basic .swiper-slide {
    opacity: 0.4;
    overflow: hidden;
    transition: .7s;
}

.basic .swiper-slide-active {
    opacity: 1;
    z-index: 1;
    transform: scale(1);
}

.basic .slide-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    height: 40vh;
    margin: auto;
}

/*//////////////////// ARTICLE ////////////////////////*/

.article {
    width: 100%;
    padding: 0 0 4rem;
    margin: 0 auto;
    /*background: #000;*/
}

.article {
    position: relative;
    max-width: 1000px;
    /*max-width: 1200px;*/
}

.article .slide-wrap img {
    margin: 0 2rem;
}

/*//////////////////// SWIPER TEXT AREA ////////////////////////*/

.swiper-slide {
    position: relative;
}

.txt_area {
    position: absolute;
    text-align: center;
    z-index: 3;
    width: 100%;
    padding: 1rem 0;
}

.txt_area.center {
    bottom: 70px;
    left: 0;
}

.txt_area.bottom {
    bottom: 0;
    left: 50%;
    transform: translateY(0) translateX(-50%);
    width: 100%;
    padding: 5rem;
}

.txt_area {
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 1.4s;
    transform: translate3d(0, 20%, 0);
}

.swiper-slide.swiper-slide-active .txt_area {
    transform: translate3d(0, 0, 0);
    opacity: 1;
}

.main-copy {
    font-size: 1rem;
    font-weight: 400;
    /*color: #fff;*/
    text-align: center;
    line-height: 1.4;
    padding: 1rem 0;
    /*background: #F9F9F9;*/
    /*box-shadow: rgb(0 0 0 / 10%) 0 20px 25px -5px, rgb(0 0 0 / 4%) 0 10px 10px -5px;*/
}

.main-copy span {
    display: block;
}

.sub-copy {
    font-size: .6em;
    letter-spacing: .1em;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #fff;
    background: #020201;
    padding: 4px 10px;
    text-align: center;
    margin: auto;
    width: 200px;
}

/*//////////////////// FOOTER ////////////////////////*/

footer {
    width: 100%;
    background: #333;
    padding: 4rem 0;
    color: #888;
}

footer .links a {
    font-size: 12px;
    color: #888;
    margin: 0 10px;
    border-bottom: 0 !important;
}

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

    footer .container {
        display: flex;
        justify-content: space-between;
    }

}

/*//////////////////// HEADER ////////////////////////*/

header {
    position: sticky;
    width: 100%;
    top: 0;
    z-index: 3;
}

header .header-wrap {
    -webkit-transition: height .4s ease, opacity .3s ease;
    -o-transition: height .4s ease, opacity .3s ease;
    transition: height .4s ease, opacity .3s ease;
    width: 100%;
    height: 70px;
}

header.sticky .header-wrap {
    height: 60px;
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
}

header .header-wrap .logo img {
    width: 125px;
    /*height: 30px;*/
    -webkit-transition: height .4s ease, margin .4s ease, opacity .2s .2s ease;
    -o-transition: height .4s ease, margin .4s ease, opacity .2s .2s ease;
    transition: height .4s ease, margin .4s ease, opacity .2s .2s ease;
}

@media (min-width: 768px) {


    header.sticky .header-wrap .logo img {
        height: 20px;
    }

    header .header-wrap {
        height: 100px;
    }

}

header.fixed {
    position: fixed;
    /*display: block;*/
    /*opacity: 1;*/
    top: 0;
    left: 0;
    z-index: 4;
}

.header-wrap,
.inner-menu>nav ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-wrap {
    padding: 0 1rem;
    background: #fff;
    align-items: center;
}

.inner-menu nav ul {
    font-size: 1.4rem;
    font-weight: 400;
    color: #222;
    letter-spacing: 0.1rem;
}

.inner-menu nav ul li {
    margin: 0 1rem;
}

.inner-menu>nav ul li:not(.toggle_btn) {
    display: none;
}

header .header-wrap .toggle_btn span {
    background-color: #FFF;
}

header.fixed .header-wrap {
    background: #FFF;
    box-shadow: 0px 8px 20px -2px rgba(0, 0, 0, 0.2);
}

header.fixed .header-wrap a {
    color: #000;
}

header.fixed .header-wrap .toggle_btn span {
    background-color: #000;
}

header.fixed .header-logo img {
    filter: invert();
}

/*//////////////////// HEADER nav ////////////////////////*/

#navArea nav {
    display: block;
    position: fixed;
    top: 0;
    left: -300px;
    bottom: 0;
    width: 300px;
    background: #ffffff;
    overflow-x: hidden;
    overflow-y: auto;
    transition: all 0.5s;
    z-index: 3;
    opacity: 0;
}

#navArea.open nav {
    left: 0;
    opacity: 1;
}

#navArea nav .inner ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#navArea nav .inner ul li {
    position: relative;
    margin: 0;
    border-bottom: 1px solid #EEE;
}

#navArea nav .inner ul li a {
    display: block;
    color: #333;
    font-size: 14px;
    padding: 1em;
    text-decoration: none;
    transition-duration: 0.2s;
}

#navArea nav .inner ul li a:hover {
    background: #e4e4e4;
}

#navArea nav .inner ul li:after {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    transition: 0.2s;
    content: '\f054';
    font-family: 'Font Awesome 5 Free';
    font-weight: 600;
    margin-right: 1rem;
}

@media screen and (max-width: 767px) {
    #navArea nav {
        left: -220px;
        width: 220px;
    }
}

/*//////////////////// HEADER toggle_btn ////////////////////////*/

#navArea .toggle_btn {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    transition: all 0.5s;
    cursor: pointer;
    z-index: 3;
}

#navArea .toggle_btn span {
    display: block;
    position: absolute;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #333;
    border-radius: 4px;
    transition: all 0.5s;
}

#navArea .toggle_btn span:nth-child(1) {
    top: 4px;
}

#navArea .toggle_btn span:nth-child(2) {
    top: 14px;
}

#navArea .toggle_btn span:nth-child(3) {
    bottom: 4px;
}

#navArea.open .toggle_btn span {
    background-color: #fff;
}

#navArea.open .toggle_btn span:nth-child(1) {
    -webkit-transform: translateY(10px) rotate(-315deg);
    transform: translateY(10px) rotate(-315deg);
}

#navArea.open .toggle_btn span:nth-child(2) {
    opacity: 0;
}

#navArea.open .toggle_btn span:nth-child(3) {
    -webkit-transform: translateY(-10px) rotate(315deg);
    transform: translateY(-10px) rotate(315deg);
}

/*//////////////////// HEADER mask ////////////////////////*/

#navArea #mask {
    display: none;
    transition: all 0.5s;
}

#navArea.open #mask {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.8;
    z-index: 2;
    cursor: pointer;
}

/*//////////////////// HEADER main ////////////////////////*/

#navArea main {
    padding: 50px;
}

#navArea main h1 {
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    text-align: center;
}

@media (min-width: 980px) {

    header .logo {
        padding: 0 1rem;
    }

    #navArea {
        display: none;
    }

    .inner-menu nav ul li:not(.toggle_btn) {
        display: block;
    }
}

/*//////////////////// AC TABS ////////////////////////*/

dl.acTabs {
    position: relative;
}

dl.acTabs>dt {
    cursor: pointer;
    width: 100%;
    height: 50px;
    line-height: 3rem;
    background: #f2f2f2;
    border: 1px solid #f2f2f2;
    text-align: center;
    color: #000;
}

dl.acTabs>dt.active {
    background: #000;
    border: 1px solid #000;
    color: #FFF;
}

dl.acTabs>dd {
    background: #FFF;
    padding: 4rem 0 2rem;
}

dl.acTabs>.close {
    width: 100%;
    height: 50px;
    background: red;
    cursor: pointer;
}

@media (min-width: 768px) {

    dl.acTabs>dl {
        position: relative;
    }

    dl.acTabs.col2>dt {
        position: absolute;
        width: 10%;
    }

    dl.acTabs.col2>dt.tab02 {
        left: 10%;
    }

    dl.acTabs.col3>dt {
        position: absolute;
        width: 34%;
    }

    dl.acTabs.col3>dt.tab02 {
        left: 34%;
    }

    dl.acTabs.col3>dt.tab03 {
        left: 66%;
    }

    dl.acTabs.col5>dt {
        position: absolute;
        width: 20%;
    }

    dl.acTabs.col5>dt.tab02 {
        left: 20%;
    }

    dl.acTabs.col5>dt.tab03 {
        left: 40%;
    }

    dl.acTabs.col5>dt.tab04 {
        left: 60%;
    }

    dl.acTabs.col5>dt.tab05 {
        right: 0;
    }

    dl.acTabs>dd {
        width: 100%;
        margin-top: 50px;
    }

    dl.acTabs>.close {
        display: none;
    }
}

/*追加20240912*/
p.s-size {
    font-size: 1rem;
    line-height: 1.4;
}
