@charset "UTF-8";

/*====================================
共通スタイル
======================================*/
.Bredcrumb {
    padding: 2em 0px;
    margin-top: 85px;
    background-color: #f5f5f5;
}
.Bredcrumb #bread {
    margin: auto;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    /*max-width: calc(1200px + ((100vw - 1200px) / 2));*/
    max-width: 1280px;
    padding: 0 2%;
    font-size: 12px;
}
.Bredcrumb #bread li {
    margin: 0 4px;
}
.Bredcrumb #bread li a {
    color: #000;
}


/*====================================
店舗一覧ページ
======================================*/
#Tenpo section#AreaChoice {
    background-color: rgb(245, 245, 245);
    /*padding: 60px 0px;*/
    background-image: url(../img/top/bg_sky.jpg);
    background-repeat: no-repeat;
    background-size: 100%;
    background-size: cover;
    background-position: center;
}
#Tenpo section#AreaChoice .Inner {
    background-color: #fff;
    padding: 3vw 0 1vw;
    border-radius: 20px;
}
#Tenpo section#AreaChoice .Inner .InnerBox {
    background: rgb(255, 255, 255);
    padding: 1vw 6vw 3.6vw;
    border-radius: 0px 0px 20px 20px;
    display: flex;
    justify-content: space-between;
}
@media screen and (max-width: 850px) {
    #Tenpo section#AreaChoice .Inner .InnerBox {
        flex-direction: column;
    }
}
#Tenpo section#AreaChoice .Inner .InnerBox .Comment {
    width: 64%;
}
@media screen and (max-width: 850px) {
    #Tenpo section#AreaChoice .Inner .InnerBox .Comment {
        width: 100%;
    }
}
#Tenpo section#AreaChoice .Inner .InnerBox .Comment .AreaTaxt {
    display: flex;
    margin-top: 16px;
    margin-bottom: 30px;
}
#Tenpo section#AreaChoice .Inner .InnerBox .Comment .CommentInner {
    padding: 30px 40px;
    background-color: #f5f5f5;
    border-radius: 14px;
}

#Tenpo section .Inner .InnerBox .Comment .AreaTaxt .tab-item {
    width: 7em;
    padding: 2px 0;
    border-radius: 50px;
    background-color: #fff;
    border: 1px solid #e82a1b;
    color: #000;
    text-align: center;
    cursor: pointer;
    transition: .4s ease-in-out;
    margin: 0 .3em;
}
#Tenpo section .Inner .InnerBox .Comment .AreaTaxt .tab-item a {
    display: block;
    width: 100%;
    height: 100%;
}
#Tenpo section .Inner .InnerBox .Comment .AreaTaxt .tab-item.is-active,
#Tenpo section .Inner .InnerBox .Comment .AreaTaxt .tab-item:hover {
    background-color: #e82a1b;
}
#Tenpo section .Inner .InnerBox .Comment .AreaTaxt .tab-item.is-active a,
#Tenpo section .Inner .InnerBox .Comment .AreaTaxt .tab-item:hover a {
    color: #fff;
    opacity: 1;
}


#Tenpo section .Inner .MapWrap {
    width: 30%;
}
@media screen and (max-width: 850px) {
    #Tenpo section .Inner .MapWrap {
        width: 50%;
        margin: 0 auto 30px;
    }
}
@media screen and (max-width: 640px) {
    #Tenpo section .Inner .MapWrap {
        width: 70%;
    }
}

#Tenpo section .Inner .MapWrap #AvgAreaMap .cls-2 {
    fill: #d6d6d6;
}

#Tenpo section .Inner .MapWrap #AvgAreaMap .cls-3 {
    fill: #fff;
}
#Tenpo section .Inner .MapWrap #AvgAreaMap a polygon ,
#Tenpo section .Inner .MapWrap #AvgAreaMap a rect ,
#Tenpo section .Inner .MapWrap #AvgAreaMap a polyline ,
#Tenpo section .Inner .MapWrap #AvgAreaMap a path {
    transition: 0.2s ease-in-out;
}
#Tenpo section .Inner .MapWrap #AvgAreaMap a:hover {
    opacity: 1;
}


#Tenpo section .Inner .MapWrap #AvgAreaMap a.is-active polygon ,
#Tenpo section .Inner .MapWrap #AvgAreaMap a.is-active rect ,
#Tenpo section .Inner .MapWrap #AvgAreaMap a.is-active polyline ,
#Tenpo section .Inner .MapWrap #AvgAreaMap a.is-active path {
    fill: #cc362b;
    fill-opacity: 1;
    transition: 0.3s ease-in-out;
  }
#Tenpo section .Inner .MapWrap #AvgAreaMap a.is-active g path {
    fill: #fff;
  }


/*====================================
店舗エリアページ
======================================*/

#Tenpo {
    background-color: rgb(245, 245, 245);
}
#Tenpo section#AreaNavi {
    /*background-color: rgb(245, 245, 245);*/
    padding: 5em 0px;
    /*background-image: url(../img/top/bg_sky.jpg);*/
    /*background-repeat: no-repeat;
    background-size: 100%;*/
    position: relative;
    z-index: 1;
}
#Tenpo section#AreaNavi::before {
    content: "";
    display: block;
    width: 100%;
    height: 574px; /* 固定の高さ */
    background-image: url(../img/top/bg_sky.jpg);
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: -1;
}
@media screen and (max-width: 640px) {
    #Tenpo section#AreaNavi::before {
        background-size: contain;
    }
}
#Tenpo section#AreaNavi .Inner {
    background-color: #fff;
    padding: 3vw 0 1vw;
    border-radius: 20px;
}
#Tenpo section#AreaNavi .Inner .InnerBox .Comment .AreaTaxt {
    display: flex;
    margin-top: 16px;
    margin-bottom: 30px;
}

#Tenpo section#AreaNavi .Inner .InnerBox {
    background: rgb(255, 255, 255);
    padding: 1vw 6vw 3.6vw;
    border-radius: 0px 0px 20px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2%;
}
#Tenpo section#AreaNavi .Inner .InnerBox .Comment {
    width: auto;
}
#Tenpo section#AreaNavi .Inner .MapWrap {
    width: 18%;
}
@media screen and (max-width: 850px) {
    #Tenpo section#AreaNavi .Inner .InnerBox {
        flex-direction: column;
    }
}
@media screen and (max-width: 850px) {
    #Tenpo section#AreaNavi .Inner .MapWrap {
        width: 50%;
        margin: 0 auto 30px;
    }
}
@media screen and (max-width: 640px) {
    #Tenpo section#AreaNavi .Inner .MapWrap {
        width: 60%;
    }
}
.ShopList {
    background: rgb(255, 255, 255);
    padding: 1vw 6vw 3.6vw;
    border-radius: 0px 0px 20px 20px;
}
.ShopList h3 span {
    font-size: .6em;
    font-weight: normal;
}
    
#Tenpo .ShopList ul.ShopListNavi {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
#Tenpo .ShopList ul.ShopListNavi li {
    width: 7em;
    padding: 0;
    border-radius: 50px;
    background-color: #fff;
    border: 1px solid #009143;
    color: #000;
    text-align: center;
    cursor: pointer;
    transition: .4s ease-in-out;
    /*margin: 0 .3em;*/
    font-size: .9em;
    margin: .4em;
}
#Tenpo .ShopList ul.ShopListNavi li:hover {
    background-color: #009143;
}
#Tenpo .ShopList ul.ShopListNavi li a {
    color: #009143;
    display: block;
    width: 100%;
    height: 100%;
}
#Tenpo .ShopList ul.ShopListNavi li:hover a {
    color: #fff;
}

#Tenpo .ShopList h4.AreaName {
    margin-top: 50px;
}
#Tenpo .ShopList h4.AreaName:before {
    content: '\f3c5';
    font-family: "Font Awesome 5 Free";
    font-wigth: 400;
    color: #009143;
    margin-right: .3em;
}
    
    
#Tenpo .ShopList table {
    border-collapse: collapse;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    table-layout: fixed;
    font-size: .9em;
}

#Tenpo .ShopList table tr {
    background-color: #fff;
    border: 1px solid #bbb;
    padding: .35em;
}
#Tenpo .ShopList table th,
#Tenpo .ShopList table td {
    padding: .7em 10px .7em 1em;
    border-right: 1px solid #bbb;
    text-align: left;
    line-height: 1.7;
}
#Tenpo .ShopList table th {
    font-weight: bold;
}
#Tenpo .ShopList table thead tr{
    background-color: #feece7;
}
#Tenpo .ShopList table tbody th {
    background-color: rgb(245, 245, 245);
}

@media screen and (max-width: 850px) {
    #Tenpo .ShopList table {
        border: 0;
        width:100%;
    }
    #Tenpo .ShopList table th{
        padding: .7em 10px .7em 1em;
        background-color: #fdee8d;
        display: block;
        border-right: none;
        font-weight: bold;
    }
    #Tenpo .ShopList table thead {
        border: none;
        clip: rect(0 0 0 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px;
    }
    #Tenpo .ShopList table tr {
        display: block;
        margin-bottom: .625em;
    }
    #Tenpo .ShopList table td {
        border-bottom: 1px solid #bbb;
        display: block;
        position: relative;
        padding: .625em .625em .625em 6em;
        border-right: none;
    }
    #Tenpo .ShopList table td::before {
        content: attr(data-label);
        font-weight: bold;
        position: absolute;
        left: 1em;
    }
    #Tenpo .ShopList table td:last-child {
        border-bottom: 0;
    }
}

#AreaNavi .ShopListAtt {
    background: rgb(255, 255, 255);
    padding: 1vw 6vw 3.6vw;
    border-radius: 0px 0px 20px 20px;
}
#AreaNavi .ShopListAtt dl.OtherSales {
    display: flex;
    align-items: center;
    margin-top: 20px;
}
@media screen and (max-width: 850px) {
    #AreaNavi .ShopListAtt dl.OtherSales {
        flex-direction: column;
        align-items: flex-start;
    }
}
#AreaNavi .ShopListAtt dl.OtherSales dt {
    width: 12em;
    min-width: 220px;
    margin-right: .4em;
}
#AreaNavi .ShopListAtt dl.OtherSales dd {
    font-size: .86em;
}
#AreaNavi .ShopListAtt dl.OtherSales dt a.OtherHandling {
    min-width: 220px;
    padding: 4px 30px;
    border-radius: 50px;
    color: rgb(255, 255, 255);
    background-color: rgb(0, 145, 67);
    font-size: .9em;
    display: inline-block;
    text-align: center;
}


/*====================================
店舗詳細ページ
======================================*/

#Tenpo section#Flyer {
    background-color: #f5f5f5;
    padding: 5em 0px 0;
        background-image: url("../img/top/bg_sky.jpg");
        background-repeat: no-repeat;
        background-size: 100%;
}
#Tenpo section#Flyer .Inner {
    background-color: #fff;
    padding: 3vw 0 1vw;
    border-radius: 20px 20px 0 0;
}
#Tenpo section#Flyer .Inner h2 {
    font-size: 2em;
}
#Tenpo section#Flyer .NewsWrap {
    display: flex;
    justify-content: center;
    /*margin-left: -180px;*/
    margin-left: 0px;
}
@media screen and (max-width: 1000px) {
    #Tenpo section#Flyer .NewsWrap {
        margin-left: 10px;
    }
}
@media screen and (max-width: 850px) {
    #Tenpo section#Flyer .NewsWrap {
        flex-direction: column;
        align-items: center;
        margin-left: 0px;
    }
}

#Tenpo section#Flyer .NewsWrap .NewsLeftCont {
    width: 180px;
}
@media screen and (max-width: 850px) {
    #Tenpo section#Flyer .NewsWrap .NewsLeftCont {
        text-align: center;
    }
}
#Tenpo section#Flyer h3 {
    border: none;
}
#Tenpo section#Flyer h3 img {
    width: 130px;
    height: auto;
}

#Tenpo section#Infomation {
    padding: 0px;
    background-color: #f5f5f5;
}
#Tenpo section .Inner {
    width: 90%;
    max-width: 1280px;
    margin: auto;
}
#Tenpo section#Infomation .Inner .InnerBox {
    background: rgba(255,255,255,.7);
    padding: 3vw 6vw 3.6vw;
    /*border-radius: 0 0 20px 20px;*/
    border-radius: 0px;
}
#Tenpo section#Infomation .ShopInfo .ShopPh {
    width: 38%;
    display: flex;
    flex-direction: column;
}
#Tenpo section#Infomation .ShopInfo .ShopPh img {
    width: 100%;
    max-width: 280px;
    height: auto;
    border-radius: 8px;
}
@media screen and (max-width: 850px) {
    #Tenpo section#Infomation .ShopInfo .ShopPh {
        width: 100%;
        margin-bottom: 24px;
    }
    #Tenpo section#Infomation .ShopInfo .ShopPh img {
        margin: 0 auto 16px;
    }
}

#Tenpo section#Infomation .ShopInfo .ShopPh dl {
    display: flex;
    width: 100%;
    font-size: clamp(1rem, calc(.7rem + 0.625vw), 1.5rem);
    flex-wrap: wrap;
    margin-top: auto;
}
#Tenpo section#Infomation .ShopInfo .ShopPh dl dt {
    width: 5em;
    border-bottom: 1px #b2b2b2 solid;
    font-weight: bold;
}
#Tenpo section#Infomation .ShopInfo .ShopPh dl dd {
    width: calc(100% - 5em);
    text-align: right;
    border-bottom: 1px #b2b2b2 solid;
}
#Tenpo section#Infomation .ShopInfo .ShopMap {
    width: 60%;
}
@media screen and (max-width: 850px) {
    #Tenpo section#Infomation .ShopInfo .ShopMap {
        width: 100%;
    }
}


#Tenpo section#ShopDtail,
#Tenpo section#ShopService {
    padding: 0px 0 60px;
    background-color: #f5f5f5;
}
#Tenpo section#ShopDtail .Inner .InnerBox {
    background: #fff;
    padding: 3vw 6vw 3.6vw;
    border-radius: 0 0 20px 20px;
}
    
#Tenpo section#ShopDtail .Inner .InnerBox .ShopDetailCont {
    width: 100%;
    max-width: 880px;
    margin-left: auto;
    margin-right: 0;
    margin-bottom: 50px;
}
#Tenpo section#ShopDtail .Inner .InnerBox .ShopDetailCont:last-of-type {
    margin-bottom: 0;
}

#Tenpo section#ShopDtail .Inner .InnerBox .ShopDetailCont ul.IconList {
    display: flex;
    flex-wrap: wrap;
}
#Tenpo section#ShopDtail .Inner .InnerBox .ShopDetailCont ul.IconList li {
    width: calc(98% / 8);
    min-width: 88px;
    margin: 1%;
    padding: .5vw .5vw 0 .5vw;
    /*background-color: #edca35;*/
    background-color: #fff;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: .8em;
    color: #d82d1e;
    font-weight: bold;
    border: #d82d1e 2px solid;
    border-radius: 50%;
    line-height: 1;
    text-align: center;
}
@media screen and (max-width: 640px) {
    #Tenpo section#ShopDtail .Inner .InnerBox .ShopDetailCont ul.IconList li {
        font-size: .48em;
    }
}
#Tenpo section#ShopDtail .Inner .InnerBox .ShopDetailCont ul.IconList li img {
    width: 84%;
    height: auto;
    margin-bottom: 5px;
}
#Tenpo section#ShopDtail .Inner .InnerBox .ShopDetailCont ul.IconList.Service_list li {
    color: #009144;
    border: #009144 2px solid;
}

#Tenpo section#ShopService .Inner .InnerBox {
    background: #fff;
    padding: 3vw 6vw 3.6vw;
    border-radius: 20px;
}
#Tenpo section#ShopService .Inner .InnerBox .ShopDetailCont {
    width: 100%;
    /*max-width: 880px;*/
    margin-left: auto;
    margin-right: 0;
    margin-bottom: 70px;
}
#Tenpo section#ShopService .Inner .InnerBox .ShopDetailCont:last-of-type {
    margin-bottom: 0;
}
#Tenpo section#ShopService .Inner .InnerBox .ShopDetailCont .NSarea {
    background-color: #fafafa;
    padding: 40px 50px;
    border-radius: 20px;
}
@media screen and (max-width: 850px) {
    #Tenpo section#ShopService .Inner .InnerBox .ShopDetailCont .NSarea {
        padding: 20px 25px;
    }
}

h4 {
    font-weight: bold;
    font-size: 1.1em;
}
    
#Tenpo section#ShopService .Inner .InnerBox .ShopDetailCont table.TokushimaruRoot {
    width: 100%;
    border-collapse: collapse;
    border: solid 2px orange;
}
#Tenpo section#ShopService .Inner .InnerBox .ShopDetailCont table.TokushimaruRoot td,
#Tenpo section#ShopService .Inner .InnerBox .ShopDetailCont table.TokushimaruRoot th {
    padding: .3em .8em;
    border: dashed 1px orange;
}
#Tenpo section#ShopService .Inner .InnerBox .ShopDetailCont table.TokushimaruRoot thead th {
    background-color: #ffece2;
    color: #e34600;
    font-weight: bold;
    text-align: center;
}

#Tenpo section#ShopService .Inner .InnerBox .ShopDetailCont table.TokushimaruRoot tbody th,
#Tenpo section#ShopService .Inner .InnerBox .ShopDetailCont table.TokushimaruRoot tbody td {
    font-size: .9em;
}

#Tenpo section#ShopService .Inner .InnerBox .ShopDetailCont table.TokushimaruRoot tbody th {
    width: 8em;
    background-color: #e38600;
    color: #fff;
    font-weight: bold;
}

#Tenpo section#ShopService .Inner .InnerBox .ShopDetailCont .TokushiBosyu {
    background-color: #fff6e8;
    padding: 30px 40px;
}
#Tenpo section#ShopService .Inner .InnerBox .ShopDetailCont .TokushiBosyu p {
    font-size: .92em;
}
#Tenpo section#ShopService .Inner .InnerBox .ShopDetailCont .TokushiBosyu a {
    font-weight: bold;
    text-decoration: underline;
}
    
    
#Tenpo section#ShopService .Inner .InnerBox .ShopDetailCont.TokushiRec {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}
@media screen and (max-width: 640px) {
    #Tenpo section#ShopService .Inner .InnerBox .ShopDetailCont.TokushiRec {
        flex-direction: column;
        align-items: center;
    }
}
#Tenpo section#ShopService .Inner .InnerBox .ShopDetailCont.TokushiRec .Logo {
    width: 18%;
}
@media screen and (max-width: 640px) {
    #Tenpo section#ShopService .Inner .InnerBox .ShopDetailCont.TokushiRec .Logo {
        width: 30%;
    }
}
#Tenpo section#ShopService .Inner .InnerBox .ShopDetailCont.TokushiRec .Content {
    width: 78%;
    max-width: 880px;
}
@media screen and (max-width: 640px) {
    #Tenpo section#ShopService .Inner .InnerBox .ShopDetailCont.TokushiRec .Content {
        width: 100%;
    }
}
#Tenpo section#ShopService .Inner .InnerBox .ShopDetailCont.TokushiRec .Content h4 {
    color: #e34600;
    font-size: 1.4em;
    border-bottom: 6px dotted orange;
    padding-bottom: 12px;
    margin-bottom: 12px;
}
@media screen and (max-width: 640px) {
    #Tenpo section#ShopService .Inner .InnerBox .ShopDetailCont.TokushiRec .Content h4 {
        font-size: 1.3em;
    }
}
#Tenpo section#ShopService .Inner .InnerBox .ShopDetailCont.TokushiRec .Content .Support {
    border: 6px solid #fff6e8;
    padding: 10px 28px;
}
#Tenpo section#ShopService .Inner .InnerBox .ShopDetailCont.TokushiRec .Content .Support li{
    position: relative;
    padding-left: 20px;
}
@media screen and (max-width: 640px) {
    #Tenpo section#ShopService .Inner .InnerBox .ShopDetailCont.TokushiRec .Content .Support li{
        font-size: .9em;
    }
}
#Tenpo section#ShopService .Inner .InnerBox .ShopDetailCont.TokushiRec .Content .Support li:before {
    content: "";
    position: absolute;
    top: .5em;
    left: 0;
    -webkit-transform: rotate(50deg);
    -ms-transform: rotate(50deg);
    transform: rotate(50deg);
    width: 10px;
    height: 14px;
    border-right: 5px solid #e34600;
    border-bottom: 5px solid #e34600;
  }

/*決済サービス*/
#Tenpo section#ShopDtail .Inner .InnerBox .ShopDetailCont.Money {
    border: 4px solid #f5f5f5;
    padding: 30px 40px;
    border-radius: 10px;
}

#Tenpo section#ShopDtail .Inner .InnerBox .ShopDetailCont.Money ul {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px dashed #ddd;
    display: flex;
    flex-wrap: wrap;
}
#Tenpo section#ShopDtail .Inner .InnerBox .ShopDetailCont.Money ul.End {
    margin-bottom: 0;
}
#Tenpo section#ShopDtail .Inner .InnerBox .ShopDetailCont.Money ul li {
    margin-top: 10px;
    width: 85px;
}
@media screen and (max-width: 640px) {
    #Tenpo section#ShopDtail .Inner .InnerBox .ShopDetailCont.Money ul li {
        width: 82px;
    }
}
#Tenpo section#ShopDtail .Inner .InnerBox .ShopDetailCont.Money ul li img {
    width: 80px;
    height: auto;
}

#Tenpo section#ShopService .TokushiShopBnr img {
    border-radius: 14px;
}

/*====================================
プライバシー・ポリシーページ
======================================*/

#policy section#policy_contents {
    background-color: #f5f5f5;
    padding: 60px 0;
    background-image: url('../img/top/bg_sky_town.png');
    background-repeat: no-repeat;
    background-size: 100%;
}
#policy section#policy_contents .Inner {
    width: 90%;
    max-width: 1280px;
    background-color: #fff;
    padding: 1.5em 5vw;
    border-radius: 20px;
}
#policy h2, #policy h3 {
    display: block;
}
#policy h2 {
    font-size: 2em;
    margin: 1em 0 1.5em;
    border-bottom: none;
    line-height: 1.3;
}
#policy h2 span {
    padding-left: 10px;
    display: inline;
    color: #093;
    font-size: 70%;
    font-weight: 700 !important;
}
#policy h3 {
    font-size: 1.6em;
    margin: 1em 0 0.5em;
    border-bottom: none;
    font-weight: normal;
}
#policy h4 {
    font-size: 1.2em;
    font-weight: bold;
    margin: 1.5em 0 0.5em;
    border-bottom: 1px solid #EBEBEB;
}

#policy_contents .Inner div ol {
    list-style: revert;
    margin-left: 1.2em;
}

#policy_contents .Inner div ul {
    list-style: square;
    margin-left: 1.2em;
}

#policy .ol_lower {
    padding: 1em 0 1em 2em;
}

#policy .for_contact {
    margin: 2em 0 1em;
    padding: 2px 0 0 20px;
    border-left: 10px solid #D35314;
}

#policy .for_contact p b {
    color: #000000;
    font-weight: bold;
    text-decoration: underline;
}

#policy .for_contact p a b:hover {
    color: #F00;
}
@media screen and (max-width: 640px) {

    #policy h2 {
        font-size: 1.5em;
        margin-bottom: 1em;
        line-height: 1.2;
    }

    #policy h2 span {
        font-size: 0.7em;
    }

    #policy p,
    #policy_contents ul li,
    #policy .for_contact p {
        font-size: 0.8em;
        line-height: 1.8;
    }

    #policy h3 {
        font-size: 1.2em;
    }

    #policy h4 {
        font-size: 1em;
    }

    #policy_contents .Inner div ol,
    #policy_contents .Inner div ul {
        font-size: 0.8em;
        line-height: 1.8;
    }

    #policy .ol_lower li {
        font-size: 1.2em;
    }

    #policy_contents .Inner div ul li {
        font-size: 1em;
    }

    #policy .for_contact p b {
        font-size: 1.1em;
    }
}


/*====================================
ご利用推奨環境ページ
======================================*/
#help section#help_contents {
    background-color: #f5f5f5;
    padding: 60px 0;
    background-image: url('../img/top/bg_sky_town.png');
    background-repeat: no-repeat;
    background-size: 100%;
}
#help section#help_contents .Inner {
    width: 90%;
    max-width: 1280px;
    background-color: #fff;
    padding: 1.5em 5vw;
    border-radius: 20px;
}
#help h2, #help h3 {
    display: block;
}
#help h2 {
    margin: 1em 0 1.5em;
    font-weight: bold;
    border-bottom: none;
    line-height: 1.2;
    font-size: 2em;
}
#help h2 span {
    padding-left: 10px;
    display: inline;
    color: #093;
    font-size: 70%;
    font-weight: 700 !important;
}
#help h3 {
    font-size: 1.2em;
    width: 100%;
    margin: 1.5em 0 0.5em;
    border-bottom: 1px solid #EBEBEB;
}
#help_contents .Inner div ul {
    list-style: square;
    margin-left: 1.2em;
}
#help .ol_lower {
    padding: 1em 0 1em 2em;
}
#help .for_contact {
    margin: 2em 0 1em;
    padding: 2px 0 0 20px;
    border-left: 10px solid #D35314;
}
#help .for_contact p b,
#help_contents ul li a {
    color: #000000;
    font-weight: bold;
    text-decoration: underline;
}
#help_contents ul li a:hover,
#help .for_contact p b:hover {
    color: #F00;
}
@media screen and (max-width: 640px) {

    #help h2 {
        font-size: 1.5em;
        margin-bottom: 1em;
    }

    #help h2 span {
        font-size: 0.6em;
    }

    #help p,
    #help_contents ul li,
    #help .for_contact p {
        font-size: 0.8em;
        line-height: 1.8;
    }

    #help h3 {
        font-size: 1.1em;
    }

    #help .for_contact p b {
        font-size: 1.1em;
    }
}




/*====================================
#Corp:会社情報CSS 
======================================*/
#Corp {
	position: relative;
}
#Corp:after {
	content: "";
    display: block;
    width: 100%;
    height: 100%;
	background: #ebf4f7;
	position: absolute;
	top: 0;
	z-index: -3;
}

/*上部ナビゲーション*/
#Corp section#CorpNavi {
    background-color: #fff;
}
#Corp section#CorpNavi ul li a {
    max-width: 150px;
}
@media screen and (max-width: 640px) {
    #Corp section#CorpNavi ul li a {
        max-width: 180px;
    }
}
#Corp section#CorpNavi ul li a p.center {
    font-size: .78em;
    padding: 4px 4px 14px;
}
@media screen and (max-width: 640px) {
    #Corp section#CorpNavi ul li a p.center {
        font-size: .7em;
    }
}
#Corp section#CorpNavi ul {
    gap: 20px;
    padding-top: 0;
}

h3.BeforeIcon {
    display: flex;
    justify-content: flex-start;
    align-items: center;
} 
h3.BeforeIcon span {
    margin-right: .4em;
}

#Corp #CorpIcon {
    width: 2.2em;
    vertical-align: bottom;
}
#Corp #CorpIcon .cls-1_Icon {
    fill: #cc3120;
}

#Corp #CorpHeadNavi ul {
    gap: 4px;
    padding-top: 0;
}
#Corp #CorpHeadNavi ul li a {
    font-size: .9em;
	width: 11em;
	padding: .3em;
	text-align: center;
	/*background-color: #d82d1e;*/
	background-color: #fff;
	color: #d82d1e;
	font-weight: bold;
	border:solid 1px #d82d1e;
	border-left: none;
	border-right: none;
}
@media screen and (max-width: 640px) {
    #Corp #CorpHeadNavi ul li a {
        font-size: .75em;
    }
}
#Corp #CorpHeadNavi ul li:first-of-type ,
#Corp #CorpHeadNavi ul li:first-of-type a {
	border-radius: 100px 0 0 100px;
}
#Corp #CorpHeadNavi ul li:first-of-type a {
	border:solid 1px #d82d1e;
	border-right: none;
}
#Corp #CorpHeadNavi ul li:last-of-type ,
#Corp #CorpHeadNavi ul li:last-of-type a {
	border-radius: 0 100px 100px 0;
}
#Corp #CorpHeadNavi ul li:last-of-type a {
	border:solid 1px #d82d1e;
	border-left: none;
}
#Corp #CorpHeadNavi ul li a:hover {
	background-color: #d82d1e;
	color: #fff;
}


#Corp .corp_bg{
    /* background-color: #f5f5f5; */
    background-color: #fff;
}
#Corp .corp_bg2{
    background-color: #f5f5f5;
    /* background-color: #fff; */
}
#Corp section.CorpHead{
    padding: 5em 0 5em;
	position: relative;
}
#Corp section.CorpHead:before {
  content: "";
  display: block;
  width: 100%;
  height: 574px; /* 固定の高さ */
	background-image: url(../img/corp/corp_img_bg.png);
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
#Corp section.CorpHead:after {
    content: "";
    display: block;
    width: 100%;
    height: 574px;
	/*background: #000;*/
    background-image: url(../img/corp/bg_headuarter.jpg);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
    /*background-attachment: fixed;*/

}
#Corp .CorpHead .Inner {
    background-color: rgba(255,255,255,.8);
    padding: 2em;
    border-radius: 20px;
}
@media screen and (max-width: 640px) {
    #Corp .CorpHead .Inner {
        padding: 10px;
    }
}
#Corp .CorpHead .Inner .InnerBox {
    background: rgb(255, 255, 255);
    padding: 2em 5em;
    border-radius: 10px;
}
@media screen and (max-width: 640px) {
    #Corp .CorpHead .Inner .InnerBox {
    padding: 1.3em;
    }
}
#Corp .width830{
    max-width: 830px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}
#Corp section ul{
    /*margin-top: 60px;*/
    padding-bottom: 60px;
    padding-top: 60px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    row-gap: 50px;
}
@media screen and (max-width: 850px) {
    #Corp section ul{
        gap: 26px;
        row-gap: 40px;
    }
}
#Corp section ul li{
    /*padding: 24px;*/
    border-radius: 18px;
    /* background-color: #fff; */
    background-color: #f5f5f5;
    transition: 0.5s ease-in-out;
}
@media screen and (max-width: 850px) {
    #Corp section ul li {
        /*width: 48%;*/
        /*padding: 20px;*/
    }
}
#Corp section ul li a{
    display: flex;
    justify-content: center;
    flex-direction: column;
    max-width: 280px;
    color: #000;
    opacity: 1;
}
#Corp section ul li a:hover{
    color: #fff;
}
#Corp section ul li a img{
    border-radius: 18px 18px 0 0;
}
#Corp section ul li a:hover img{
    opacity: 1;
}
#Corp section ul li a p{
    max-width: 300px;
    padding: 0 16px 14px;
    line-height: 1.5;
    font-size: .82em;
    text-align: justify;
}
@media screen and (max-width: 850px) {
    #Corp section ul li a p{
        padding: 0 16px 14px;
    font-size: .8em;
    }
}
#Corp section ul li a p.center{
    padding-top: 13px;
    padding-bottom: 12px;
    text-align: center;
    font-weight: bold;
    font-size: 1em;
    text-decoration: underline;
    text-decoration-color: #E82A11;
    text-decoration-thickness: 1px;
    text-underline-offset: 8px;
}
#Corp section ul li a:hover p.center{
    text-decoration: underline;
    text-decoration-color: #eee;
    text-decoration-thickness: 1px;
    text-underline-offset: 8px;
}
@media screen and (max-width: 850px) {
    #Corp ul li a p.center{
        font-size: 1em;
    }
}

#Corp section ul.ul2{
    padding-bottom: 120px;
    margin-bottom: 0;
}
#Corp section ul.ul2 li{
    /* background-color: #f5f5f5; */
    background-color: #fff;
}
#Corp section ul li:hover,
#Corp section ul.ul2 li:hover {
    background-color: #e82a1b;
}
#Corp .nopt{
    padding-top: 0;
}
#Corp .nopb{
    padding-bottom: 0;
}

/*===================
社長挨拶
=====================*/
#Corp #Greeting .GreetingBox {
	display: flex;
	justify-content: space-between;
}
@media screen and (max-width: 640px) {
	#Corp #Greeting .GreetingBox {
		flex-direction: column;
    }
}
#Corp #Greeting .GreetingBox .Photo {
	width: 20%;
}
@media screen and (max-width: 640px) {
	#Corp #Greeting .GreetingBox .Photo {
		width: 50%;
		margin: 0 auto 20px;
    }
}
#Corp #Greeting .GreetingBox .Photo img {
	border-radius: 10px;
}
#Corp #Greeting .GreetingBox .Photo .CeoName {
	line-height: 1.5;
	text-align: right;
	font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}
@media screen and (max-width: 640px) {
	#Corp #Greeting .GreetingBox .Photo .CeoName {
		text-align: center;
    }
}
#Corp #Greeting .GreetingBox .Photo .CeoName span {
	font-size: .7em;
}
@media screen and (max-width: 945px) {
	#Corp #Greeting .GreetingBox .Photo .CeoName span {
		display: block;
    }
}
@media screen and (max-width: 640px) {
	#Corp #Greeting .GreetingBox .Photo .CeoName span {
		display: inline;
    }
}
#Corp #Greeting .GreetingBox .Text {
	width: 76%;
	text-align: justify;
}
@media screen and (max-width: 640px) {
	#Corp #Greeting .GreetingBox .Text {
		width: 100%;
    }
}
#Corp #Greeting .GreetingBox .Text p {
	margin-bottom: 14px;
}
#Corp #Greeting .GreetingBox .Text .Attention {
	font-size: .7em;
	line-height: 1.5;
}

/*===================
会社概要
=====================*/
#Corp #Overview table {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    border-collapse: collapse;
    border-spacing: 0;
    font-size: .95em;
}
#Corp #Overview table tr:nth-child(odd) {
    background-color: #F9F9FA;
}
#Corp #Overview table th,
#Corp #Overview table td {
    padding: 1em 1.8em;
}
#Corp #Overview table th {
    border-right: 1px dashed #ccc;
    text-align: right;
    font-weight: bold;
    width: 32%;
    color: #01374d;
}
#Corp #Overview table td dt {
    float: left;
    width: 4em;
    font-weight: 300 !important;
}
#Corp #Overview table td dd {
    margin: 0 0 0 4em;
}
#Corp #Overview table a {
    color: #000;
    text-decoration: underline;
}
@media (max-width: 640px){
    #Corp #Overview table{
        border-bottom:none;
        width: 100%;
        overflow: hidden;
    }
    #Corp #Overview table th{
        padding:15px 10px  5px 10px;
        width:100%;
        display:block;
        margin: 0 auto;
        border:none;
        text-align: left;
    }
    #Corp #Overview table td{
        padding: 5px 10px 15px 10px;
        width:100%;
        display: list-item;     /* リストに変換 */
        list-style:none;     /* リストに変換によるドットを非表示 */
        border-top: none !important;
        border-bottom:1px solid #d8d8d8;
    }
}
#Corp #Overview .HeadOfficePh {
    width: 60%;
    margin: 0 auto 30px;
}
#Corp #Overview .HeadOfficePh img {
    border-radius: 20px;
}
#Corp #Overview .GoogleMap iframe {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    margin-bottom: 12px;
}
#Corp #Overview p.AccessRoot {
    font-size: .9em;
    line-height: 1.8;
}

/*===================
沿革ページ
=====================*/
#Corp #History .HistoryWrap {
    position: relative;
    line-height: 1.6;
    width: 100%;
    max-width: 800px;
    margin: auto;
}
@media screen and (max-width: 850px) {
    #Corp #History .HistoryWrap {
        font-size: .85;
    }
}
#Corp #History .HistoryWrap:before {
    display: inline-block;
    position: absolute;
    top: .5em;
    left: 9.96em;
    width: 2px;
    height: calc(100% - 18px);
    background-color: #ccc;
    content: "";
}
@media screen and (max-width: 850px) {
    #Corp #History .HistoryWrap:before {
        left: 5.9em;
    }
}
#Corp #History .HistoryWrap dl {
    /* display: -webkit-box; */
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    /* flex-wrap: wrap; */
    /* -webkit-box-pack: justify; */
    -ms-flex-pack: justify;
    /* justify-content: space-between; */
    margin-bottom: 2em;
    position: relative;
}
#Corp #History .HistoryWrap dl:before {
    content: "";
    position: absolute;
    display: block;
    width: 1em;
    height: 1em;
    border-radius: 100%;
    left: 9.5em;
    top: .45em;
    z-index: 5;
}
@media screen and (max-width: 850px) {
    #Corp #History .HistoryWrap dl:before {
        left: 5.45em;
        top: .2em;
    }
}
#Corp #History .HistoryWrap dl.Taisho:before {
    background: #9d2f2f;
}
#Corp #History .HistoryWrap dl.Showa:before {
    background: #1283cb;
}
#Corp #History .HistoryWrap dl.Heisei:before {
    background: #FF7200;
}
#Corp #History .HistoryWrap dl.Reiwa:before {
    background: #009144;
}
#Corp #History .HistoryWrap dl dt {
    font-size: 1em;
    font-weight: bold;
    width: 8em;
    /* text-align: right; */
    font-family: serif;
}
@media screen and (max-width: 850px) {
    #Corp #History .HistoryWrap dl dt {
        width: 6em;
    }
}
#Corp #History .HistoryWrap dl dd {
    width: calc(100% - 13em);
    padding-left: 5em;
    /*white-space: pre-wrap;*/
    /* word-break: break-all; */
}
#Corp #History .HistoryWrap dl dd p {
    margin-bottom: 12px;
    position: relative;
}
#Corp #History .HistoryWrap dl dd p:before {
    position: absolute; /* 絶対指定 */
    content: "";
    top: .9em;     /* h2の上から50%の位置 */
    width: 2.5em;  /* 横線の幅 */
    height: 2px;  /* 横線の高さ */
    left: -3em; /* h2要素の左から-120px左へずらす */  
    background: #ccc;
}
@media screen and (max-width: 850px) {
    #Corp #History .HistoryWrap dl dd p:before {
        top: .75em;     /* h2の上から50%の位置 */
        width: 1em;  /* 横線の幅 */
        height: 2px;  /* 横線の高さ */
        left: -1.6em; /* h2要素の左から-120px左へずらす */  
        background: #ccc;
    }
}
@media screen and (max-width: 850px) {
    #Corp #History .HistoryWrap dl dd {
        width: calc(100% - 5em);
        padding-left: 1.8em;
    }
}