﻿/*-- common --*/

* {
    margin: 0;
    padding: 0;
}

html {
    height: 100%;
}

a { 
    text-decoration: none;
    cursor: pointer;
}

li { list-style-type: none; }

img { vertical-align: bottom; }

@keyframes show {
    /* じわぁ～と表示 */
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes allowmove {
    from { 
        margin-left: 0px;
    } to { 
        margin-left: 8px;
    }
}
@keyframes allowmovey {
    from {
        margin-bottom: 0px;
    } to {
        margin-bottom: 8px;
    }
}


/*-- fonts --*/

@font-face {
    font-family: "Noto Sans JP";
    src: url("../fonts/NotoSansJP-Regular-min.otf") format("opentype");
    font-weight: normal;
    font-display: swap;
}
@font-face {
    font-family: "Noto Sans JP";
    src: url("../fonts/NotoSansJP-Bold-min.otf") format("opentype");
    font-weight: bold;
    font-display: swap;
}


/*-- body --*/

body {
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    background-attachment: fixed;
    font-family: "Noto Sans JP", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    color: #333333;
    font-size: 16px;
    line-height: 1.3em;
}

.resp_on_b, 
.resp_on_f {
    display: none !important;
}
@media screen and (max-width: 1080px){
    .resp_off {
        display: none !important;
    }
    .resp_on_b {
        display: block !important;
    }
    .resp_on_f {
        display: flex !important;
    }
}


/*-- header --*/

header {
    position: fixed;
    width: 100%;
    height: 100px;
    background: rgba(255,255,255,0.9);
    z-index: 100;
}

#header_base {
    display: flex;
    width: 1080px;
    height: 100px;
    margin: 0 auto;
}
.header_left {
    display: flex;
    width: 320px;
    height: 100px;
    justify-content: center;
    align-items: center;
}
.header_left img {
    display: block;
}
.header_center {
    display: flex;
    width: 560px;
    height: 100px;
    align-items: center;
}
.header_center nav {
    width: 100%;
}
.header_center ul {
    display: flex;
    width: 520px;
    height: 80px;
    justify-content: space-between;
    align-items: center;
    margin: 0 20px;
}
.header_center ul > li {
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    width: calc(100% / 5);
    height: 100px;
    font-weight: bold;
    text-align: center;
}
.header_center ul > li > a {
    display: block;
    width: 100%;
    color: #333333;
    transition: all 0.5s;
}
.header_center ul > li > a:hover {
    color: #998877;
}
.header_center ul > li > ul {
    display: block;
    position: absolute;
    top: 80px;
    left: 20px;
    width: 120%;
    padding: 0;
    margin: 0;
}
.header_center ul > li > ul > li {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 0;
    background-color: #665544;
    line-height: 40px;
    overflow: hidden;
    text-align: center;
    transition: all 0.3s ease-in-out;
}
.header_center ul > li:hover > ul > li {
    height: 40px;
    overflow: visible;
}
.header_center ul > li > ul > li > a {
    display: block;
    width: 100%;
    height: 100%;
    background-color: #665544;
    color: #ffffff;
    transition: all 0.3s ease-in-out;
    opacity: 0;
}
.header_center ul > li:hover > ul > li > a {
    opacity: 1;
}
.header_center ul > li > ul > li > a:hover {
    background-color: #998877;
    color: #ffffff;
}

.header_right {
    display: flex;
    width: 200px;
    height: 100px;
    align-items: center;
}
.header_right a {
    display: flex;
    width: 200px;
    height: 40px;
    align-items: center;
    background-color: #665544;
    color: #ffffff;
    transition: all 0.3s ease-in-out;
}
.header_right a span.cont {
    display: block;
    margin-left: 18px;
}
.header_right a span.allow {
    display: block;
    width: 14px;
    height: 14px;
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    transform: rotate(45deg);
}
.header_right a:hover {
    background-color: #998877;
}
.header_right a:hover span.allow {
    animation: allowmove 0.5s ease-in-out 0s infinite alternate;
}
#header_space {
    height: 100px;
}
@media screen and (max-width: 1080px) {
    header {
        height: 60px;
    }
    #header_base {
        width: 100%;
        height: 60px;
    }
    .header_resp_left {
        width: calc(100% - 60px);
    }
    .header_center {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        height: calc(40px * 6);
        background-color: #665544;
    }
    .header_center nav {
        height: calc(40px * 6);
    }
    .header_center ul {
        flex-wrap: wrap;
        width: 90%;
        height: calc(40px * 6);
        margin: 0 auto;
    }
    .header_center ul > li {
        width: 100%;
        height: 40px;
        border-bottom: 1px solid #998877;
        box-sizing: border-box;
    }
    .header_center ul > li:last-child {
        border: none;
    }
    .header_center ul > li > a {
        color: #fff;
        font-weight: normal;
    }
    .header_center ul > li > a:hover {
        color: #fff;
    }
    .nav_toggle {
        width: 60px;
        height: 60px;
        position: relative;
    }
    .nav_toggle span {
        display: block;
        position: absolute;
        width: 60px;
        color: #665544;
        font-size: 12px;
        text-align: center;
        border-radius: 1px;
        transition: 0.5s ease-in-out;
    }
    .nav_toggle span:nth-child(1) {
        top: 0;
        left: 0;
        opacity: 1;
    }
    .nav_toggle span:nth-child(2) {
        width: 0px;
        height: 0px;
        top: 19px;
        left: 10px;
        border-top: 34.6px solid #665544;
        border-left: 20px solid transparent;
        border-right: 20px solid transparent;
        transform: rotate(0deg);
    }
    .nav_toggle span:nth-child(3) {
        bottom: 20px;
        left: 40px;
        transform: rotate(-200deg);
        opacity: 0;
    }
    .nav_toggle.active span:nth-child(1) {
        top: 20px;
        left: 40px;
        transform: rotate(200deg);
        opacity: 0;
    }
    .nav_toggle.active span:nth-child(2) {
        top: 6px;
        transform: rotate(180deg);
    }
    .nav_toggle.active span:nth-child(3) {
        bottom: 0;
        left: 0;
        transform: rotate(0deg);
        opacity: 1;
    }
    #header_space {
        height: 60px;
    }
}

/*-- slide --*/
#slidebase {
    width: 100%;
    background-color: #ffffff;
    margin-bottom: 80px;
}
#slidemain {
    position: relative;
    width: 100%;
    height: calc(100vh - 100px);
}
.swiper-wrapper {
    overflow: hidden;
}
.swiper-slide {
    display: block;
    width: 500px;
    height: 200px;
    overflow: hidden;
}
.swiper-slide img {
    width: 100%;
    height: calc(100vh - 100px);
    object-fit: cover;
}
#slidetext {
    position: absolute;
    width: 1200px;
    height: 60px;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    color: #ffffff;
    font-size: 48px;
    text-align: center;
    line-height: 60px;
    text-shadow: 0px 0px 5px rgba(0,0,0,0.7);
    margin: auto;
    z-index: 50;
}
@media screen and (max-width: 1200px){
    #slidetext {
        width: 100%;
        font-size: 5vw;
    }
}


/*-- contents --*/
#contentsbase {
    width: 100%;
}
.contentsmain {
    width: 1080px;
    padding: 0 20px;
    margin: 20px auto 100px;
    box-sizing: border-box;
}
@media screen and (max-width: 1120px){
    .contentsmain {
        width: 100%;
    }
}
@media screen and (max-width: 768px) {
    .contentsmain {
        margin: 20px auto 60px;
    }
}
.contentschip {
    display: block;
}
.parts1 p {
    display: block;
    font-size: 26px;
    text-align: center;
    line-height: 28px;
    margin: 0 auto 40px;
}
@media screen and (max-width: 1080px){
    .parts1 p {
        font-size: 18px;
        line-height: 22px;
    } 
}
.parts1 img {
    width: 100%;
    height: auto;
}

.parts3 {
    display: flex;
    justify-content: left;
    flex-flow: wrap;
}
.parts3 .p3 {
    width: calc(100%/3);
    padding: 0 50px;
    box-sizing: border-box;
}
@media screen and (max-width: 1120px){
    .parts3 .p3 {
        padding: 0 calc(3vw);
    }
}
@media screen and (max-width: 600px){
    .parts3 {
        justify-content: space-around;
    }
    .parts3 .p3 {
        width: calc(100%/2);
    }
}
.parts3 .p3 .image-c {
    width: 100%;
    overflow: hidden;
    border-radius: 50%;
    margin-bottom: 40px;
}
@media screen and (max-width: 1120px){
    .parts3 .p3 .image-c {
        margin-bottom: 3vw;
    }
}
.parts3 .p3 .image-c a {
    display: block;
    position: relative;
}
.parts3 .p3 .image-c a img {
    width: 100%;
    height: auto;
    transition: all 0.3s ease-in-out;
    transform: scale(1.15);
}
.parts3 .p3 .image-c a:hover img {
    transform: scale(1);
    opacity: 0.7;
}
.parts3 .p3 .image-c a p {
    display: block;
    position: absolute;
    width: 120px;
    height: 48px;
    background-color: #385566;
    color: #ffffff;
    text-align: center;
    line-height: 48px;
    top: 50%;
    left: 50%;
    margin: auto;
    transition: all 0.3s ease-in-out;
    transform: translateY(-50%) translateX(-50%);
    opacity: 0;
}
.parts3 .p3 .image-c a:hover p {
    opacity: 1;
}
.parts3 .p3 h3 {
    display: block;
    width: 100%;
    height: 42px;
    font-size: 40px;
    font-weight: normal;
    text-align: center;
    line-height: 42px;
}
@media screen and (max-width: 1120px){
    .parts3 .p3 h3 {
        font-size: 3.9vw;
        line-height: 4.1vw;
    }
}

.parts3 .p3i {
    width: calc((100% - 80px)/3);
    background-color: #f5f5f5;
    margin-right: 40px;
    margin-bottom: 40px;
}
.parts3 .p3i:nth-child(3n) {
    margin-right: 0;
}
@media screen and (max-width: 1120px){
    .parts3 .p3i {
        width: calc((100% - 6vw)/3);
        margin-right: calc(3vw);
        margin-bottom: calc(3vw);
    }
}
@media screen and (max-width: 600px){
    .parts3 .p3i {
        width: calc((100% - 3vw)/2);
    }
    .parts3 .p3i:nth-child(3n) {
        margin-right: calc(3vw);
    }
    .parts3 .p3i:nth-child(2n) {
        margin-right: 0;
    }
}
.parts3 .p3i .pic {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.parts3 .p3i .pic:before {
    content: "";
    display: block;
    padding-top: 60%;
}
.parts3 .p3i .pic a {
    opacity: 1;
}
.parts3 .p3i .pic a img {
    display: block;
    position: absolute;
    width: 100%;
    height: auto;
    top: 50%;
    left: 50%;
    transition: all 0.3s ease-in-out;
    transform: translateY(-50%) translateX(-50%) scale(1.15);
    opacity: 1;
}
.parts3 .p3i .pic a:hover img {
    transform: translateY(-50%) translateX(-50%) scale(1);
    opacity: 0.7;
}
.parts3 .p3i .pic a p {
    display: block;
    position: absolute;
    width: 120px;
    height: 48px;
    background-color: #385566;
    color: #ffffff;
    text-align: center;
    line-height: 48px;
    top: 50%;
    left: 50%;
    margin: auto;
    transition: all 0.3s ease-in-out;
    transform: translateY(-50%) translateX(-50%);
    opacity: 0;
}
.parts3 .p3i .pic a:hover p {
    opacity: 1;
}
.parts3 .p3i .dt {
    width: 100%;
    padding: 15px;
    box-sizing: border-box;
}
.parts3 .p3i .dt li {
    display: inline;
    font-size: 14px;
    padding-right: 5px;
}
.parts3 .p3i .dt li:nth-child(2) {
    border-left: 1px solid #666666;
    padding-left: 5px;
}
.parts3 .p3i .dt li i {
    font-size: 16px;
    padding-right: 6px;
}
.parts3 .p3i .dt li .date {
    font-size: 15px;
}
.parts3 .p3i .ct {
    width: 100%;
    height: 70px;
    padding: 0 15px 15px;
    box-sizing: border-box;
}
.parts3 .p3i .ct a {
    color: #333333;
    font-size: 16px;
    transition: all 0.1s ease-in-out;
}
.parts3 .p3i .ct a:hover {
    color: #666699;
    text-decoration: underline;
}



.contentstitle {
    position: relative;
    width: 100%;
    height: clamp(200px, calc(100vw * 0.22), 240px);
    border-bottom: 10px solid #665544;
    margin: 20px auto 80px;
}
.stitle01 {
    background: url(../img/tp_title01.jpg);
    background-size: cover;
    background-position: 50% 50%;
}
.stitle02 {
    
    background: url(../img/tp_title02.jpg);
    background-size: cover;
    background-position: 50% 50%;
}
.stitle03 {
    background: url(../img/tp_title03.jpg);
    background-size: cover;
    background-position: 50% 50%;
}
.stitle04 {
    position: relative;
    height: 400px;
    background: url(../img/saiyo_back.jpg);
    background-size: cover;
    background-position: 50% 50%;
    border-bottom: 0;
}
.crycry {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(102, 85, 68, 0.5);
}
.st04box {
    position: relative;
    width: 1080px;
    height: 400px;
    margin: 0 auto;
}
.st04box .textbox {
    display: flex;
    position: absolute;
    top: 50%;
    left: 50%;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    transform: translateX(-50%) translateY(-50%);
}
.st04box .textbox h2 {
    color: #ffffff;
    font-size: 48px;
    font-weight: normal;
    text-align: center;
    line-height: 48px;
    margin-bottom: 40px;
}
.st04box .textbox a {
    display: flex;
    align-items: center;
    width: 200px;
    height: 40px;
    background-color: #665544;
    color: #ffffff;
    font-size: 18px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease-in-out;
}
.st04box .textbox a span.cont {
    display: block;
    margin-left: 44px;
    margin-right: 18px;
}
.st04box .textbox a span.allow {
    display: block;
    width: 14px;
    height: 14px;
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    transform: rotate(45deg);
}
.st04box .textbox a:hover {
    background-color: #998877;
}
.st04box .textbox a:hover span.allow {
    animation: allowmove 0.5s ease-in-out 0s infinite alternate;
}
@media screen and (max-width: 1120px){
    .stitle04 {
        height: calc(100vw / 2.8);
    }
    .st04box {
        width: 100%;
        height: 100%;
    }
    .st04box .textbox {
        left: 0;
        right: 0;
        transform: translateX(0) translateY(-50%);
    }
    .st04box .textbox h2 {
        width: 100%;
        font-size: calc(100vw * 0.0358);
        line-height: calc(100vw * 0.0360);
        margin-bottom: calc(100vw * 0.035);
    }
}
@media screen and (max-width: 768px){
    .contentstitle {
        margin: 20px auto 40px;
    }
}
@media screen and (max-width: 600px){
    .st04box .textbox h2 {
        font-size: calc(100vw * 0.0600);
    }
}
.contentstitlecoverbase {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(102, 85, 68, 0.3);
    z-index: 15;
}
.contentstitlecover {
    position: absolute;
    width: 100%;
    height: 100px;
    background: rgba(0, 0, 0, 0.3);
    bottom: 0;
    z-index: 20;
}


.contentstitletext {
    display: flex;
    width: 1080px;
    height: 100px;
    align-items: center;
    margin: 0 auto;
}
.contentstitletextbox {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
}
.contentstitletext h2 {
    display: block;
    width: 100%;
    height: 40px;
    color: #ffffff;
    font-size: 36px;
    line-height: 36px;
    font-weight: normal;
}
.contentstitletext span {
    display: block;
    width: 100%;
    height: 28px;
    color: #ffffff;
    font-size: 24px;
    line-height: 28px;
}
@media screen and (max-width: 1120px){
    .contentstitletext {
        width: calc(100% - 20px);    
    }
    .contentstitletext h2 {
        height: 36px;
        font-size: 30px;
        line-height: 30px;
    }
    .contentstitletext span {
        height: 24px;
        font-size: 20px;
        line-height: 24px;
    }
}
@media screen and (max-width: 800px){
    
}


.contentstitlemain {
    position: relative;
    width: 100%;
    height: 360px;
    margin-bottom: 40px;
    
}
.contentstitlemain.mtitle01 {
    background: url(../img/title_company.jpg);
    background-size: cover;
    background-position: 50% 15%;
}
.contentstitlemain.sptitle01 {
    background: url(../img/stitle01.jpg);
    background-size: cover;
    background-position: 50% 50%;
}
.contentstitlemain.sptitle02 {
    background: url(../img/stitle02.jpg);
    background-size: cover;
    background-position: 50% 50%;
}
.contentstitlemain.sptitle03 {
    background: url(../img/stitle03.jpg);
    background-size: cover;
    background-position: 50% 50%;
}
.contentstitlemain.sptitle04 {
    background: url(../img/saiyo_back.jpg);
    background-size: cover;
    background-position: 50% 50%;
}
.contentstitlemain .cover {
    width: 100%;
    height: 100%;
    background: rgba(102,85,68,0.7);
}
.contentstitlemain h2 {
    display: block;
    position: absolute;
    width: 1080px;
    top: 50%;
    left: 50%;
    text-align: center;
    font-size: 60px;
    letter-spacing: 30px;
    text-indent: 15px;
    color: #ffffff;
    transform: translateX(-50%) translateY(-50%);
}
@media screen and (max-width: 1080px){
    .contentstitlemain {
        width: 100%;
        height: calc(100vw / 3)
    }
    .contentstitlemain h2 {
        width: 100%;
        font-size: 36px;
        line-height: 36px;
        letter-spacing: 18px;
        text-indent: 9px;
    }
}

.contentsnavi {
    width: 1080px;
    /* margin: 0 auto 100px; */
    margin: 0 auto 40px;
}
@media screen and (max-width: 1120px){
    .contentsnavi {
        width: calc(100% - 40px);
        margin : 0 20px 100px;
    }
}
.contentsnavi li {
    display: inline-block;
    color: #666666;
    font-size: 14px;
    line-height: 14px;
    padding-right: 10px;
}
.contentsnavi li:nth-child(n+2):before{
    content: "＞";
    font-size: 14px;
    line-height: 14px;
    padding-right: 10px;
}
.contentsnavi li a {
    color: #666666;
    transition: all 0.3s ease-in-out;
}
.contentsnavi li a:hover {
    color: #999999;
}

.contentsmain h3.cont_h3 {
    color: #665544;
    font-size: 24px;
    font-weight: normal;
    padding: 10px 0;
    border-bottom: 6px double #665544;
    margin-bottom: 30px;
}
.contentsmain p.cont_text {
    margin-bottom: 30px;
}
#doboku,
#jiban, 
#kaitai {
    padding-top: 100px;
    margin-top: -100px;
}
.contentsmain .cont_image_2p {
    display: flex;
    justify-content: space-between;
    width: calc(100% - 40px);
    margin: 0 auto;
}
.contentsmain .cont_image_2p .p1 {
    width: calc((100% - 20px)/2);
}
.contentsmain .cont_image_2p .p1 img,
.contentsmain .cont_image_2p .p2 img {
    width: 100%;
    height: auto;
}
.contentsmain .cont_image_2p .p2 {
    width: calc(100% - 20px);
}

.contentsmain .inquiryarea {
    width: 100%;
}
.contentsmain .inquiryarea table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #cccccc;
}
.contentsmain .inquiryarea th {
    width: 100%;
    height: 60px;
    background-color: #665544;
    color: #ffffff;
    font-size: 24px;
    border: 1px solid #cccccc;
}
.contentsmain .inquiryarea tr.tele {
    display: none;
}
.contentsmain .inquiryarea td {
    border: 1px solid #cccccc;
    padding: 10px;
}
.contentsmain .inquiryarea td.tag {
    width: 30%;
    background-color: #ffeedd;
    text-align: center;
}
.contentsmain .inquiryarea td.tag span {
    color: #cc0000;
}
.contentsmain .inquiryarea td label {
    display: block;
    margin: 5px 0;
}
.contentsmain .inquiryarea td label input {
    color: #333333;
}
.contentsmain .inquiryarea td input.textline {
    width: 100%;
    height: 36px;
    color: #333333;
    padding: 5px;
    border: 1px solid #cccccc;
    border-radius: 5px;
    box-sizing: border-box;
    outline: none;
}
.contentsmain .inquiryarea td input.textline:focus {
    background-color: #ffeedd;
    border: 2px solid #ff9900;
}
.contentsmain .inquiryarea td textarea {
    width: 100%;
    color: #333333;
    line-height: 18px;
    resize: vertical;
    padding: 10px;
    border: 1px solid #cccccc;
    border-radius: 5px;
    box-sizing: border-box;
}
.contentsmain .inquiryarea button {
    width: 100%;
    height: 60px;
    cursor: pointer;
    background-color: #665544;
    color: #ffffff;
    font-size: 24px;
    font-weight: bold;
    border: 0;
    margin-top: 10px;
    transition: all 0.3s ease-in-out;
}
.contentsmain .inquiryarea button.sep {
    width: calc((100% - 10px) / 2);
}
.contentsmain .inquiryarea button:nth-child(2) {
    background-color: #999999;
}
.contentsmain .inquiryarea button:nth-child(3){
    margin-left: 6px;
}
.contentsmain .inquiryarea button:hover {
    background-color: #998877;
}
@media screen and (max-width: 768px) {
    .contentsmain .inquiryarea table {
        display: flex;
        flex-wrap: wrap;
        border: 0;
        border-bottom: 1px solid #cccccc;
        box-sizing: border-box;
    }
    .contentsmain .inquiryarea thead {
        display: flex;
        flex-wrap: wrap;
    }
    .contentsmain .inquiryarea tr {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
    }
    .contentsmain .inquiryarea th {
        display: block;
        width: 100%;
        height: 48px;
        font-size: 20px;
        line-height: 48px;
        border-width: 1px 1px 0;
        border-style: solid;
        border-color: #cccccc;
        box-sizing: border-box;
    }
    .contentsmain .inquiryarea td {
        display: block;
        width: 100%;
        border-width: 1px 1px 0;
        border-style: solid;
        border-color: #cccccc;
        padding: 10px;
        box-sizing: border-box;
    }
    .contentsmain .inquiryarea td.tag {
        width: 100%;
    }
    .contentsmain .inquiryarea button.sep {
        width: 100%;
        height: 48px;
        font-size: 20px;
        line-height: 48px;
    }
    .contentsmain .inquiryarea button:nth-child(3) {
        margin-left: 0;
    }
}


/* gci */

.gci h2 {
    width: 100%;
    font-size: 24px;
    font-weight: normal;
    line-height: 24px;
    padding-top: 100px;
    margin-top: -100px;
    margin-bottom: 20px;
}
.gci h3 {
    width: 100%;
    background-color: #ddd9c3;
    font-size: 32px;
    text-align: center;
    line-height: 32px;
    border: 1px solid #bcbcbc;
    padding: 20px 0;
    box-sizing: border-box;
    margin-bottom: 20px;
}
.gci .exp {
    width: calc(100% - 240px);
    padding: 20px;
    border: 1px solid #bcbcbc;
    box-sizing: border-box;
    margin: 0 auto 20px;
}
.gci .expy {
    width: 100%;
    background-color: #ffff99;
    padding: 10px;
    border: 1px solid #bcbcbc;
    box-sizing: border-box;
    margin: 0 auto 20px;
}
.gci .expg {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    background-color: #eeeeee;
    padding: 10px;
    border: 1px solid #bcbcbc;
    box-sizing: border-box;
    margin: 0 auto 20px;
}
.gci .imgfld {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
}
.gci .expg p {
    font-size: 20px;
    font-weight: bold;
    line-height: 20px;
}
.gci .expg p.br {
    margin-left: 10px;
}
.gci .space {
    margin-bottom: 60px;
}
.gci .exp h4 {
    width: 100%;
    font-size: 20px;
    text-align: center;
    line-height: 20px;
    margin-bottom: 10px;
}
.gci p.ub {
    width: 100%;
    font-size: 20px;
    line-height: 20px;
    text-decoration: underline;
    margin-bottom: 10px;
}
.gci p.cm {
    font-weight: bold;
}
.gci p.ict {
    font-size: 24px;
    font-weight: bold;
    line-height: 24px;
}
.gci .expy ul {
    margin-bottom: 10px;
}
.gci .expy ul.ls {
    margin-bottom: 0;
}
.gci .expy ul li {
    list-style-type: inherit;
    margin-left: 30px;
}
.gci .expg ol {
    width: 100%;
    margin-top: 10px;
}
.gci .expg ol li {
    list-style-type: decimal;
    margin-left: 30px;
}
.gci img.fimg {
    display: block;
    margin: 0 auto 20px;
}
@media screen and (max-width: 1080px) {
    .gci .exp {
        width: 100%;
    }
    .gci img.fimg {
        width: 100%;
        height: auto;
    }
    .gci .imgfld img {
        width: 100%;
        max-width: 600px;
        height: auto;
    }
}


/* achievement */

.achiparent {
    margin-bottom: 60px;
}
.achibox {
    width: 1080px;
    border-bottom: 1px solid #665544;
    padding: 40px 20px;
    margin: 0 auto;
    box-sizing: border-box;
}
.achibox:last-child {
    border-bottom: 0;
}
.achibox .achitext {
    font-size: 22px;
    line-height: 22px;
    margin-bottom: 20px;
}
.achibox .achitext span {
    font-size: 18px;
    margin-left: 0.5em
}
.achibox .achipic {
    display: flex;
    flex-wrap: wrap;
}
.achibox .achipic img {
    display: block;
    width: 510px;
    height: calc(510px*0.75)
}
.achipic img:nth-child(2n){
    margin-left: 20px;
}
@media screen and (max-width: 1080px) {
    .achibox {
        width: 100%;
        padding: 20px;
    }
    .achibox .achipic img {
        width: calc((100% - 20px)/2);
        height: auto;
    }
}
@media screen and (max-width: 768px) {
    .achibox .achitext {
        font-size: 18px;
        text-align: center;
        margin-bottom: 10px;
    }
    .achibox .achitext span {
        display: block;
        font-size: 16px;
        margin-left: 0;
    }
    .achibox .achipic {
        justify-content: center;
    }
    .achibox .achipic img {
        width: calc((100% - 10px)/2);
    }
    .achipic img:nth-child(2n){
        margin-left: 10px;
    }
}


/*-- company --*/

.conmain_c {
    width: 1080px;
    margin: 0 auto 80px;
}
.contitle_c {
    width: 100%;
    text-align: center;
    padding-top: 100px;
    margin-top: -100px;
    margin-bottom: 40px;
}
.contitle_c h3 {
    font-size: min(48px,8vw);
    line-height: 48px;
    letter-spacing: 6px;
}
.conchip_c {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.ai_s {
    align-items: flex-start;
}
.ai_c {
    align-items: center;
}
.jc_sb {
    justify-content: space-between;
}
.conparts_c12 {
    display: block;
    width: 720px;
    padding: 10px 60px 10px 10px;
    box-sizing: border-box;
}
.conparts_c12 h5 {
    font-size: 16px;
    line-height: 24px;
    font-weight: normal;
    margin-bottom: 24px;
}
.conparts_c12 p {
    font-size: 20px;
    line-height: 28px;
    text-indent: 1em;
}
.conparts_c12 p:nth-child(1) {
    margin-top: 80px;
}
@media screen and (max-width: 1080px) {
    .conparts_c12 p:nth-child(1) {
        margin-top: 40px;
    }
}
p.sp1 {
    margin-bottom: 24px;
}
p.sp3 {
    margin-bottom: 72px;
}
.conparts_c12 img {
    display: block;
    float: right;
    width: 400px;
}
.conparts_c22 {
    display: block;
    width: 360px;
    padding: 10px 10px 10px 0;
    box-sizing: border-box;
}
.conparts_c22 img {
    display: block;
    width: 100%;
}
.conparts_c13 {
    display: block;
    width: calc((100% - 24px) / 3);
    border: 1px solid #ccc;
    box-sizing: border-box;
}
.conparts_c13 img {
    width: 100%;
}
.conchip_bg_c {
    display: block;
    width: 100%;
    background-size: cover;
    background-position: center;
    color: #333;
    padding: 0 40px;
    box-sizing: border-box;
}
.conchip_bg_c_m {
    display: block;
    width: 100%;
    font-size: 36px;
    line-height: 36px;
    text-align: center;
    margin: 40px 0;
}
.conchip_bg_c_m p {
    width: 100%;
}
.conchip_bg_c_b {
    display: block;
    width: 100%;
    bottom: 0;
    font-size: 22px;
    line-height: 26px;
    margin-bottom: 40px;
}
.conchip_bg_c_b ol {
    margin: 32px 60px;
}
.conchip_bg_c_b li {
    list-style-type: decimal;
}
.conchip_c dl {
    display: flex;
    flex-wrap: wrap;
    width: 640px;
    margin: 0 auto 40px;
}
.conchip_c dl dt {
    display: flex;
    align-items: center;
    width: 26%;
    padding: 10px 0 10px 16px;
    border-bottom: 1px solid #ccc;
    box-sizing: border-box;
}
.conchip_c dl dd {
    display: flex;
    align-items: center;
    width: 74%;
    min-height: 60px;
    padding: 10px 16px 10px 0;
    border-bottom: 1px solid #ccc;
    box-sizing: border-box;
}
.conchip_c dl dd.loca {
    flex-wrap: wrap;
}
.conchip_c dl dd.loca p {
    width: 100%;
}
.conchip_c dl dd.loca iframe {
    width: 100%;
    height: 480px;
    margin-top: 10px;
}
@media screen and (max-width: 1080px) {
    .conmain_c {
        width: calc(100% - 40px);
        margin: 0 20px 80px;
    }
    .conchip_c img.tg01 {
        width: 100%;
        max-width: 500px;
    }
    .conchip_c img.tg02 {
        width: 100%;
        max-width: 560px;
    }
    .jc_sb {
        justify-content: center;
    }
    .conparts_c12 {
        width: 100%;
        padding: 10px;
        box-sizing: border-box;
        order: 2;
    }
    .conparts_c22 {
        width: 100%;
        order: 1;
    }
    .conparts_c22 img {
        max-width: 360px;
        margin: 0 auto;
    }
    .conchip_bg_c {
        width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
    }
    .conchip_bg_c_m {
        width: calc(100%);
    }
    .conchip_bg_c_b {
        width: calc(100%);
        bottom: 0;
        line-height: min(32px, calc((100vw - 40px) / 22 * 1.23));
        margin-bottom: 40px;
    }
    .conchip_bg_c_b ol {
        margin: min(32px, calc((100vw - 40px) / 22 * 0.6)) 0px min(32px, calc((100vw - 40px) / 22 * 0.6)) min(32px, calc((100vw - 40px) / 22 * 1.23));
    }
    .conchip_bg_c_b li {
        list-style-type: decimal;
    }
    .conchip_c dl {
        width: 100%;
        max-width: 640px;
    }
    .conchip_c dl dt {
        width: 100%;
        justify-content: center;
        padding: 10px 0;
        border: 0;
    }
    .conchip_c dl dd {
        width: 100%;
        justify-content: center;
        padding: 10px 0;
    }
    .conchip_c dl dd.loca p {
        text-align: center;
    }
    .norp {
        display: none;
    }
}


/*-- footer --*/

footer {
    width: 100%;
}
#footer_top {
    width: 100%;
    margin-bottom: 80px;
}
#footer_top img {
    display: block;
    margin: 0 auto;
}
#footer_middle {
    width: 100%;
    height: 60px;
}
#footer_middle a {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #998877;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease-in-out;
}
#footer_middle a:hover {
    background-color: #665544;
}
#footer_middle a span {
    display: block;
    width: 20px;
    height: 20px;
    border-top: 3px solid #ffffff;
    border-left: 3px solid #ffffff;
    margin-top: 12px;
    transform: rotate(45deg);
}
#footer_middle a:hover span {
    animation: allowmovey 0.5s ease-in-out 0s infinite alternate;
}
#footer_bottom {
    width: 100%;
    background-color: #665544;
    padding: 40px 0;
}
#footer_bottom p {
    color: #ffffff;
    text-align: center;
}
@media screen and (max-width: 768px){
    #footer_top {
        margin-bottom: 40px;
    }
}

/* 仮表示 */
.contentsmain .noton {
    width: 100%;
    height: 500px;
    background-image: url(../img/noton.jpg);
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}
@media screen and (max-width: 1080px) {
    .contentsmain .noton {
        height: calc(100vw*0.46);
    }
}

/* 240823追加 お知らせ */
.newspicarea {
    width: 100%;
    max-width: 800px;
    height: 600px;
    margin: 0 auto 40px;
}
.newspicarea img {
    width: 100%;
}
@media screen and (max-width: 880px) {
    .newspicarea {
        height: calc((100vw - 80px)*0.75);
    }
}

/* 240926追加 お知らせ */
.newsarea p,
.separea p {
    font-size: 24px;
    margin-bottom: 40px;
}
.separea p.com {
    margin-top: 5px;
    margin-bottom: 0;
}
.separea p.exp {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 0;
}
.conchip_title {
    width: 100%;
    text-align: center;
    margin: 0 auto;
}
.conchip_title img {
    max-width: 100%;
}
.separea {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 800px;
    margin: 0 auto 40px;
}
.separea img {
    max-width: 100%;
}
.sepl_left {
    width: 600px;
    margin-right: 20px;
}
.sepl_right {
    width: 180px;
    text-align: left;
}
.sepr_left {
    width: 180px;
    text-align: left;
    margin-right: 20px;
}
.sepr_right {
    width: 600px;
}
@media screen and (max-width: 880px) {
    .separea p {
        margin-bottom: 0;
    }
    .separea {
        width: 100%;
    }
    .sepl_left {
        width: 100%;
        margin-bottom: 10px;
    }
    .sepl_right {
        width: 100%;
        text-align: center;
    }
    .sepr_left {
        width: 100%;
        text-align: center;
        order: 2;
    }
    .sepr_right {
        width: 100%;
        order: 1;
    }
}